From cf77196c4034e945470261b5ba1304be49494fbd Mon Sep 17 00:00:00 2001 From: bvandekerkhof <66718200+bvandekerkhof@users.noreply.github.com> Date: Thu, 23 May 2024 11:03:58 +0200 Subject: [PATCH 1/6] Update README.md Signed-off-by: bvandekerkhof <66718200+bvandekerkhof@users.noreply.github.com> --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 68a271a..a66046f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ SPDX-License-Identifier: Apache-2.0 [![Supported Python versions](https://img.shields.io/pypi/pyversions/pyelq-sdk.svg?logo=python&logoColor=FFE873)](https://pypi.org/project/pyelq-sdk/) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Code Style Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) -[![Tests](https://github.com/sede-open/pyelq/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/sede-open/pyelq/actions/workflows/main.yml) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=pyelq_pyelq&metric=coverage)](https://sonarcloud.io/summary/new_code?id=pyelq_pyelq) [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=pyelq_pyelq&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=pyelq_pyelq) @@ -51,6 +50,13 @@ Use cases where the pyELQ code has been applied are described in the following p * IJzermans, R., Jones, M., Weidmann, D. et al. "Long-term continuous monitoring of methane emissions at an oil and gas facility using a multi-open-path laser dispersion spectrometer." Sci Rep 14, 623 (2024). (https://doi.org/10.1038/s41598-023-50081-9) * Weidmann, D., Hirst, B. et al. "Locating and Quantifying Methane Emissions by Inverse Analysis of Path-Integrated Concentration Data Using a Markov-Chain Monte Carlo Approach." ACS Earth and Space Chemistry 2022 6 (9), 2190-2198 (https://doi.org/10.1021/acsearthspacechem.2c00093) + +## Deployment design +The pyELQ code needs high-quality methane concentration and wind data to be able to provide reliable estimates of methane emission location and quantification. This requires that methane sensors of sufficiently high precision are used in a layout that allows the detection of relevant methane emissions. The optimal sensor layout typically depends on the prevailing meteorological conditions at the site of interest: sensors need to be placed in locations where plumes from methane emission sources are likely to occur. + +## pyELQ data interpretation +The estimates from pyELQ come with uncertainty ranges that are representative of probability density functions sampled by a Markov Chain Monte Carlo method. One should take these uncertainty ranges into account when interpreting the pyELQ output data. Remember that absence of evidence for methane emissions does not always imply evidence for absence of methane emissions; for instance, when meteorological conditions are such that there is no sensor downwind of a methane source, then it will be impossible to detect this particular source. Also, there are limitations to the forward dispersion model which is used in the analysis. For example, the performance of the Gaussian plume dispersion model will degrade at lower windspeeds. Therefore, careful interpretation of the data is always required. + *** # Installing pyELQ as a package Suppose you want to use this pyELQ package in a different project. From a3ba2308793269a487b12fef074df599aadb5e71 Mon Sep 17 00:00:00 2001 From: bvandekerkhof <66718200+bvandekerkhof@users.noreply.github.com> Date: Thu, 23 May 2024 11:05:25 +0200 Subject: [PATCH 2/6] Update index.md Signed-off-by: bvandekerkhof <66718200+bvandekerkhof@users.noreply.github.com> --- docs/index.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 86224c6..61b652b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -33,6 +33,13 @@ Use cases where the pyELQ code has been applied are described in the following p * IJzermans, R., Jones, M., Weidmann, D. et al. "Long-term continuous monitoring of methane emissions at an oil and gas facility using a multi-open-path laser dispersion spectrometer." Sci Rep 14, 623 (2024). (https://doi.org/10.1038/s41598-023-50081-9) * Weidmann, D., Hirst, B. et al. "Locating and Quantifying Methane Emissions by Inverse Analysis of Path-Integrated Concentration Data Using a Markov-Chain Monte Carlo Approach." ACS Earth and Space Chemistry 2022 6 (9), 2190-2198 (https://doi.org/10.1021/acsearthspacechem.2c00093) + +## Deployment design +The pyELQ code needs high-quality methane concentration and wind data to be able to provide reliable estimates of methane emission location and quantification. This requires that methane sensors of sufficiently high precision are used in a layout that allows the detection of relevant methane emissions. The optimal sensor layout typically depends on the prevailing meteorological conditions at the site of interest: sensors need to be placed in locations where plumes from methane emission sources are likely to occur. + +## pyELQ data interpretation +The estimates from pyELQ come with uncertainty ranges that are representative of probability density functions sampled by a Markov Chain Monte Carlo method. One should take these uncertainty ranges into account when interpreting the pyELQ output data. Remember that absence of evidence for methane emissions does not always imply evidence for absence of methane emissions; for instance, when meteorological conditions are such that there is no sensor downwind of a methane source, then it will be impossible to detect this particular source. Also, there are limitations to the forward dispersion model which is used in the analysis. For example, the performance of the Gaussian plume dispersion model will degrade at lower windspeeds. Therefore, careful interpretation of the data is always required. + *** # Installing pyELQ as a package Suppose you want to use this pyELQ package in a different project. @@ -59,4 +66,4 @@ For more details on contributing to this repository, see the [Contributing guide *** # Licensing -Distributed under the Apache License Version 2.0. See the [license file](https://github.com/sede-open/pyELQ/blob/main/LICENSE.md) for more information. \ No newline at end of file +Distributed under the Apache License Version 2.0. See the [license file](https://github.com/sede-open/pyELQ/blob/main/LICENSE.md) for more information. From 239fda597b90dd9658de53f2398e1e6e1ba4af21 Mon Sep 17 00:00:00 2001 From: bvandekerkhof <66718200+bvandekerkhof@users.noreply.github.com> Date: Thu, 23 May 2024 11:08:05 +0200 Subject: [PATCH 3/6] Update pyproject.toml version Signed-off-by: bvandekerkhof <66718200+bvandekerkhof@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4c7ee8b..1f62973 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pyelq-sdk" -version = "1.0.4" +version = "1.0.5" description = "Package for detection, localization and quantification code." authors = ["Bas van de Kerkhof", "Matthew Jones", "David Randell"] homepage = "https://sede-open.github.io/pyELQ/" From c13e1accfc4aab83ffe130e9cf948c4db07c5906 Mon Sep 17 00:00:00 2001 From: bvandekerkhof Date: Thu, 23 May 2024 16:12:15 +0200 Subject: [PATCH 4/6] Update GH tokens Signed-off-by: bvandekerkhof --- .github/workflows/code_formatting.yml | 2 +- .github/workflows/manual_release.yml | 4 +- .github/workflows/release_tagging.yml | 4 +- .github/workflows/sonarcloud_analysis.yml | 2 +- examples/example.ipynb | 619573 ++++++++++++++++++- 5 files changed, 619529 insertions(+), 56 deletions(-) diff --git a/.github/workflows/code_formatting.yml b/.github/workflows/code_formatting.yml index c85bf9e..d0dab65 100644 --- a/.github/workflows/code_formatting.yml +++ b/.github/workflows/code_formatting.yml @@ -35,7 +35,7 @@ jobs: - name: Run isort and black when required and commit back if: ${{ failure() || steps.checks.outcome == 'failure'}} env: - GITHUB_ACCESS_TOKEN: ${{ secrets.PYELQ_TOKEN }} + GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | isort . black . diff --git a/.github/workflows/manual_release.yml b/.github/workflows/manual_release.yml index 16ca501..9a28245 100644 --- a/.github/workflows/manual_release.yml +++ b/.github/workflows/manual_release.yml @@ -27,7 +27,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Get version env: - GITHUB_ACCESS_TOKEN: ${{ secrets.PYELQ_TOKEN }} + GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} id: version run: | version=$(python .github/get_version.py) @@ -36,4 +36,4 @@ jobs: - name: Create Release run: gh release create ${{ env.BUMPED_VERSION }} --generate-notes env: - GITHUB_TOKEN: ${{ secrets.PYELQ_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/release_tagging.yml b/.github/workflows/release_tagging.yml index 15aa826..7425671 100644 --- a/.github/workflows/release_tagging.yml +++ b/.github/workflows/release_tagging.yml @@ -27,7 +27,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Get version env: - GITHUB_ACCESS_TOKEN: ${{ secrets.PYELQ_TOKEN }} + GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} id: version run: | version=$(python .github/get_version.py) @@ -36,4 +36,4 @@ jobs: - name: Create Release run: gh release create ${{ env.BUMPED_VERSION }} --generate-notes env: - GITHUB_TOKEN: ${{ secrets.PYELQ_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/sonarcloud_analysis.yml b/.github/workflows/sonarcloud_analysis.yml index 2bf985d..c649468 100644 --- a/.github/workflows/sonarcloud_analysis.yml +++ b/.github/workflows/sonarcloud_analysis.yml @@ -31,7 +31,7 @@ jobs: - name: SonarCloud Scan uses: SonarSource/sonarcloud-github-action@master env: - GITHUB_TOKEN: ${{ secrets.PYELQ_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - name: Upload SonarCloud Scan Report uses: actions/upload-artifact@v4 diff --git a/examples/example.ipynb b/examples/example.ipynb index ebb3002..db9c864 100644 --- a/examples/example.ipynb +++ b/examples/example.ipynb @@ -13,10 +13,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "id": "b315a63d-29d4-4163-9d73-50ed9622eec5", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Bas.vandeKerkhof\\AppData\\Local\\Temp\\ipykernel_8872\\937541556.py:5: DeprecationWarning: \n", + "Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),\n", + "(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)\n", + "but was not found to be installed on your system.\n", + "If this would cause problems for you,\n", + "please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466\n", + " \n", + " import pandas as pd\n" + ] + } + ], "source": [ "import datetime\n", "from copy import deepcopy\n", @@ -50,7 +65,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "id": "da0c9d2b-eb55-4bc2-b03f-557a3eff352a", "metadata": {}, "outputs": [], @@ -72,7 +87,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "id": "9a813265-29eb-4737-b8a4-76e1f2733747", "metadata": {}, "outputs": [], @@ -86,10 +101,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "id": "4df901ae-fd64-4836-8120-cb02533282fd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0.00000000e+00 2.69494374e-04 5.00007055e+00]\n", + " [1.03826083e-04 2.48980336e-04 5.00007062e+00]\n", + " [1.91845586e-04 1.90561299e-04 5.00007079e+00]\n", + " [2.50658337e-04 1.03131032e-04 5.00007096e+00]\n", + " [2.71310629e-04 1.65017711e-20 5.00007103e+00]]\n" + ] + } + ], "source": [ "ENU_object = ENU(ref_latitude=reference_latitude, ref_longitude=reference_longitude, ref_altitude=reference_altitude)\n", "ENU_object.from_array(np.vstack([sensor_x, sensor_y, sensor_z]).T)\n", @@ -108,7 +135,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "id": "f3338ee8-3c47-40eb-8721-b014f1c74f88", "metadata": {}, "outputs": [], @@ -139,7 +166,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "id": "b7452c52-be86-467c-a2dd-54e57892b637", "metadata": {}, "outputs": [], @@ -169,10 +196,1058 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "id": "d23ea54d-cbf9-40a4-9fc0-bd54037991fb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + " \n", + " " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "lat": [ + 0, + 0 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00026949437396969116 + ], + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 0", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00010382608273934404 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.000248980336237809 + ], + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 1", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00019184558556765 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00019056129932629466 + ], + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 2", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00025065833707803124 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.0001031310320344517 + ], + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 3", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00027131062899166537 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 1.6501771123631796e-20 + ], + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 4", + "type": "scattermapbox" + }, + { + "lat": [ + 0.00019896125354572274 + ], + "line": { + "width": 3 + }, + "lon": [ + 4.491575716382319e-05 + ], + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 0", + "type": "scattermapbox" + }, + { + "lat": [ + 4.521846671490127e-05 + ], + "line": { + "width": 3 + }, + "lon": [ + 0.0001796630286547407 + ], + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 1", + "type": "scattermapbox" + } + ], + "layout": { + "autosize": true, + "mapbox": { + "bearing": 0, + "center": { + "lat": -2.261670381744352, + "lon": -1.1786335496311722 + }, + "pitch": 0, + "style": "open-street-map", + "zoom": 3.5012482588262603 + }, + "margin": { + "b": 0, + "l": 0, + "r": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + } + } + }, + "image/png": "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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "fig=go.Figure()\n", "fig = sensor_group.plot_sensor_location(fig=fig)\n", @@ -191,10 +1266,355 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "id": "703e57c6-246f-429b-ac5d-050539bb81fa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\plotly\\express\\_core.py:2044: FutureWarning:\n", + "\n", + "The default of observed=False is deprecated and will be changed to True in a future version of pandas. Pass observed=False to retain current behavior or observed=True to adopt the future default and silence this warning.\n", + "\n", + "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\plotly\\express\\_core.py:2065: FutureWarning:\n", + "\n", + "When grouping with a length-1 list-like, you will need to pass a length-1 tuple to get_group in a future version of pandas. Pass `(name,)` instead of `name` to silence this warning.\n", + "\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "speed=(3.709, 3.872]
%=%{r}
theta=%{theta}", + "legendgroup": "(3.709, 3.872]", + "marker": { + "color": "rgb(92, 83, 165)", + "pattern": { + "shape": "" + } + }, + "name": "(3.709, 3.872]", + "r": [ + 0, + 0.049586776859504134, + 0.024793388429752067, + 0.04132231404958678, + 0.01652892561983471, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "showlegend": true, + "subplot": "polar", + "theta": [ + -0.0004999999999997229, + 22.5, + 45, + 67.5, + 90, + 112.5, + 135, + 157.5, + 180, + 202.5, + 225, + 247.5, + 270, + 292.5, + 315, + 337.5 + ], + "type": "barpolar" + }, + { + "hovertemplate": "speed=(3.872, 4.035]
%=%{r}
theta=%{theta}", + "legendgroup": "(3.872, 4.035]", + "marker": { + "color": "rgb(160, 89, 160)", + "pattern": { + "shape": "" + } + }, + "name": "(3.872, 4.035]", + "r": [ + 0.0743801652892562, + 0.1322314049586777, + 0.11570247933884298, + 0.1487603305785124, + 0.05785123966942149, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "showlegend": true, + "subplot": "polar", + "theta": [ + -0.0004999999999997229, + 22.5, + 45, + 67.5, + 90, + 112.5, + 135, + 157.5, + 180, + 202.5, + 225, + 247.5, + 270, + 292.5, + 315, + 337.5 + ], + "type": "barpolar" + }, + { + "hovertemplate": "speed=(4.035, 4.197]
%=%{r}
theta=%{theta}", + "legendgroup": "(4.035, 4.197]", + "marker": { + "color": "rgb(206, 102, 147)", + "pattern": { + "shape": "" + } + }, + "name": "(4.035, 4.197]", + "r": [ + 0.049586776859504134, + 0.06611570247933884, + 0.09090909090909091, + 0.049586776859504134, + 0.05785123966942149, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "showlegend": true, + "subplot": "polar", + "theta": [ + -0.0004999999999997229, + 22.5, + 45, + 67.5, + 90, + 112.5, + 135, + 157.5, + 180, + 202.5, + 225, + 247.5, + 270, + 292.5, + 315, + 337.5 + ], + "type": "barpolar" + }, + { + "hovertemplate": "speed=(4.197, 4.359]
%=%{r}
theta=%{theta}", + "legendgroup": "(4.197, 4.359]", + "marker": { + "color": "rgb(235, 127, 134)", + "pattern": { + "shape": "" + } + }, + "name": "(4.197, 4.359]", + "r": [ + 0.008264462809917356, + 0, + 0.01652892561983471, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "showlegend": true, + "subplot": "polar", + "theta": [ + -0.0004999999999997229, + 22.5, + 45, + 67.5, + 90, + 112.5, + 135, + 157.5, + 180, + 202.5, + 225, + 247.5, + 270, + 292.5, + 315, + 337.5 + ], + "type": "barpolar" + } + ], + "layout": { + "annotations": [ + { + "align": "left", + "bgcolor": "#ffffff", + "bordercolor": "#000000", + "borderpad": 10, + "borderwidth": 2, + "font": { + "color": "#000000", + "size": 18 + }, + "opacity": 0.8, + "showarrow": false, + "text": "Radial Axis: Proportion
of wind measurements
in a given direction.", + "x": 1, + "xanchor": "right", + "xref": "paper", + "y": 1, + "yanchor": "top", + "yref": "paper" + } + ], + "autosize": true, + "barmode": "relative", + "legend": { + "title": { + "text": "speed" + }, + "tracegroupgap": 0 + }, + "margin": { + "l": 0, + "r": 0, + "t": 60 + }, + "polar": { + "angularaxis": { + "direction": "clockwise", + "rotation": 90, + "tickmode": "array", + "ticktext": [ + "N", + "NE", + "E", + "SE", + "S", + "SW", + "W", + "NW" + ], + "tickvals": [ + 0, + 45, + 90, + 135, + 180, + 225, + 270, + 315 + ], + "type": "linear" + }, + "domain": { + "x": [ + 0, + 1 + ], + "y": [ + 0, + 1 + ] + }, + "radialaxis": { + "angle": 90, + "autorange": true, + "range": [ + 0, + 0.26098303610265333 + ], + "tickangle": 90, + "type": "linear" + } + }, + "template": {}, + "title": { + "text": "Distribution of Wind Speeds and Directions" + } + } + }, + "image/png": "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kIAWT3r27CkTJ06UPn36KOsTiicBnCx2iQRIgARIgARIgARcEqB44hIUDyMBEiABEiABNwS0eALRBEW76ixatIhuO24A8hgSIAESIAESIAESCCABiicBnBR2iQRIgARIIH4JGMWTk046ScU/MQspjHkSv/PLnpMACZAACZAACSQmAYoniTnvHDUJkAAJkECUCBjFE6O7jnbjYcDYKIFntSRAAiRAAiRAAiQQRQIUT6IIl1WTAAmQAAkkHgGzeGIXQDbxyHDEJEACJEACJEACJBC/BCiexO/cseckQAIkQAIBJGAWT9BFBIt98MEHpX379kxVHMA5Y5dIgARIgARIgARIwIkAxRMnQnyfBEiABEiABDwQsBJP9Guohm47HmDyUBIgARIgARIgARIICAGKJwGZCHaDBEiABEiABEiABEiABEiABEiABEggmAQongRzXtgrEiABEiABEiABEiABEiABEiABEiCBgBCgeBKQiWA3SIAESIAESIAESIAESIAESIAESIAEgkmA4kkw54W9IgESIAESIAESIAESIAESIAESIAESCAgBiicBmQh2gwRIgARIoGQSGDlypPTv379kDo6jIgESIAESIAESIIEEIUDxJEEmmsMkARIgARIoHgI9evSQ7777rngaZ6skQAIkQAIkQAIkQAIRIUDxJCIYWQkJkAAJkAAJWBOgeMKVQQIkQAIkQAIkQALxT4DiSfzPIUdAAiRAAiQQYAIUTwI8OewaCZAACZAACZAACbgkQPHEJSgeRgIkQAIkQAJ+CFA88UON55AACZAACZAACZBAsAhQPAnWfLA3JEACJEACcULgyJEjkpOT4/gzf/58adu2rZQtW1b9pKenS5kyZQr+16/jd6lSpeJk9OwmCZAACZAACZAACSQWAYoniTXfHC0JkAAJkIBLAtu2bZP169fLhg0bZN26dervY8eOyfLly5Vgkp+fbymAGMUQ/P3ZZ59J3759C0SWgwcPyqFDhwqJLngd9aNAXGnevLk0bNhQ6tSpU/BTpUoV9f6qVatk0KBBsnfvXvV/3bp1Zfjw4VKpUiX1/5gxY2TEiBEhI+3du7cMHDjQ5eh5GAkkBoG//OUviTFQjpIESjiBX375pYSPkMMLAgGKJ0GYBfaBBEiABEigWAhAfIA4AmEEAon+G/9nZGQo0aJ27dpKnMDf+F2+fHklmpQu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gARIgARIgARIgARIgARIIKgJUDwJ6uPn5kmABEiABEiABEiABEiABEiABEiABOwRoHhijxDfJwESIAESIAESIAESIAESIAESIAESCGoCFE+C+vi5eRIgARIgARIgARIgARIgARIgARIgAXsEKJ7YI8T3SYAESIAESIAESIAESIAESIAESIAEgpoAxZOgPn5ungRIgARIgARIgARIgARIgARIgARIwB4Biif2CPF9EiABEiABEiABEiABEiABEiABEiCBoCZA8SSoj5+bJwESIAESIAESIAESIAESIAESIAESsEeA4ok9QnyfBEiABEiABEiABEiABEiABEiABEggqAlQPAnq4+fmSYAESIAESIAESIAESIAESIAESIAE7BH4/+3YIQEAAADCsP6tifAATKMYDudJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIl4DwpITkBAgQIECBAgAABAgQIECBwLeA8uZ5feQIECBAgQIAAAQIECBAgQKAEnCclJCdAgAABAgQIECBAgAABAgSuBZwn1/MrT4AAAQIECBAgQIAAAQIECJSA86SE5AQIECBAgAABAgQIECBAgMC1gPPken7lCRAgQIAAAQIECBAgQIAAgRJwnpSQnAABAgQIECBAgAABAgQIELgWcJ5cz688AQIECBAgQIAAAQIECBAgUALOkxKSEyBAgAABAgQIECBAgAABAtcCzpPr+ZUnQIAAAQIECBAgQIAAAQIESsB5UkJyAgQIECBAgAABAgQIECBA4FrAeXI9v/IECBAgQIAAAQIECBAgQIBACThPSkhOgAABAgQIECBAgAABAgQIXAs4T67nV54AAQIECBAgQIAAAQIECBAoAedJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIl4DwpITkBAgQIECBAgAABAgQIECBwLeA8uZ5feQIECBAgQIAAAQIECBAgQKAEnCclJCdAgAABAgQIECBAgAABAgSuBZwn1/MrT4AAAQIECBAgQIAAAQIECJSA86SE5AQIECBAgAABAgQIECBAgMC1gPPken7lCRAgQIAAAQIECBAgQIAAgRJwnpSQnAABAgQIECBAgAABAgQIELgWcJ5cz688AQIECBAgQIAAAQIECBAgUALOkxKSEyBAgAABAgQIECBAgAABAtcCzpPr+ZUnQIAAAQIECBAgQIAAAQIESsB5UkJyAgQIECBAgAABAgQIECBA4FrAeXI9v/IECBAgQIAAAQIECBAgQIBACThPSkhOgAABAgQIECBAgAABAgQIXAs4T67nV54AAQIECBAgQIAAAQIECBAoAedJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIl4DwpITkBAgQIECBAgAABAgQIECBwLeA8uZ5feQIECBAgQIAAAQIECBAgQKAEnCclJCdAgAABAgQIECBAgAABAgSuBZwn1/MrT4AAAQIECBAgQIAAAQIECJSA86SE5AQIECBAgAABAgQIECBAgMC1gPPken7lCRAgQIAAAQIECBAgQIAAgRJwnpSQnAABAgQIECBAgAABAgQIELgWcJ5cz688AQIECBAgQIAAAQIECBAgUALOkxKSEyBAgAABAgQIECBAgAABAtcCzpPr+ZUnQIAAAQIECBAgQIAAAQIESsB5UkJyAgQIECBAgAABAgQIECBA4FrAeXI9v/IECBAgQIAAAQIECBAgQIBACThPSkhOgAABAgQIECBAgAABAgQIXAs4T67nV54AAQIECBAgQIAAAQIECBAoAedJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIlMIpbgrN52RpOAAAAAElFTkSuQmCC", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "met_object = Meteorology()\n", "\n", @@ -217,10 +1637,1145 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "id": "3e5e6644-03a3-4357-904d-88f3ede974b2", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "mode": "markers", + "name": "Wind direction", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ] + } + ], + "layout": { + "autosize": true, + "margin": { + "l": 0, + "r": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Wind Direction [deg]" + }, + "xaxis": { + "autorange": true, + "range": [ + "2024-01-01 07:45:38.1953", + "2024-01-01 12:14:21.8047" + ], + "type": "date" + }, + "yaxis": { + "autorange": true, + "range": [ + -6.810431084453936, + 96.93955528856765 + ], + "type": "linear" + } + } + }, + "image/png": "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zDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDwBwpN4bqyFAAIIIIAAAggggAACCCCAAAI5ESA8yUmhGSYCCCCAAAIIIIAAAggggAACCMQTIDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDwBwpN4bqyFAAIIIIAAAggggAACCCCAAAI5ESA8yUmhGSYCCCCAAAIIIIAAAggggAACCMQTIDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDwBwpN4bqyFAAIIIIAAAggggAACCCCAAAI5ESA8yUmhGSYCCCCAAAIIIIAAAggggAACCMQTIDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDyB/wPlFucI/TsERwAAAABJRU5ErkJggg==", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "fig = go.Figure()\n", "fig.add_trace(go.Scatter(x=time_axis, y=met_object.wind_direction, mode='markers', name='Wind direction'))\n", @@ -238,7 +2793,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "id": "379f3820-ea9c-4cc0-ae94-1558e2eb21a4", "metadata": {}, "outputs": [], @@ -258,10 +2813,1044 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "id": "38504528-3537-4bd5-8f51-2bedca548fa1", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "lat": [ + 0, + 0 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00026949437396969116 + ], + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 0", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00010382608273934404 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.000248980336237809 + ], + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 1", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00019184558556765 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00019056129932629466 + ], + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 2", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00025065833707803124 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.0001031310320344517 + ], + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 3", + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00027131062899166537 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 1.6501771123631796e-20 + ], + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 4", + "type": "scattermapbox" + }, + { + "lat": [ + 0.00019896125354572274 + ], + "line": { + "width": 3 + }, + "lon": [ + 4.491575716382319e-05 + ], + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 0", + "type": "scattermapbox" + }, + { + "lat": [ + 4.521846671490127e-05 + ], + "line": { + "width": 3 + }, + "lon": [ + 0.0001796630286547407 + ], + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 1", + "type": "scattermapbox" + }, + { + "lat": [ + 0.00018087383831017834, + 0.00013565535732018927 + ], + "lon": [ + 8.983150024330824e-05, + 0.00017966297231761778 + ], + "marker": { + "color": "green", + "size": 10 + }, + "mode": "markers", + "name": "True locations", + "type": "scattermapbox" + } + ], + "layout": { + "autosize": true, + "mapbox": { + "center": { + "lat": 0, + "lon": 0 + }, + "style": "open-street-map", + "zoom": 18 + }, + "margin": { + "b": 0, + "l": 0, + "r": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + } + } + }, + "image/png": "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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "fig=go.Figure()\n", "fig = sensor_group.plot_sensor_location(fig=fig)\n", @@ -286,7 +3875,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "id": "c5c3972b-0ad4-4c83-b13c-3345350fe501", "metadata": {}, "outputs": [], @@ -304,10 +3893,2692 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "id": "734d39c9-63e1-4818-bcba-5c4f4e6eeede", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 7.890544298596149, + 7.958141328760238, + 7.997781006185826, + 7.791714050564657, + 7.782219369759696, + 7.7027693732637434, + 7.907840816891765, + 7.6700135697839205, + 7.399342586559671, + 7.718237540043255, + 7.9351367632351915, + 8.073939392618753, + 8.031656486135207, + 7.812462574982364, + 8.112189138058191, + 7.7788990519010195, + 7.988779900550802, + 8.223226698536852, + 8.46635913540058, + 8.35976039932035, + 8.172487831942838, + 8.192107075317526, + 8.417256468847048, + 8.225621150677922, + 8.21077100799815, + 8.218807731163079, + 7.951363896989119, + 8.195299007997008, + 8.185643574955071, + 8.218548320159844, + 7.9461939768467795, + 7.815597803316228, + 7.794624234656219, + 7.9645143747178935, + 7.720335130908699, + 7.7503081698494185, + 7.688706876286427, + 7.620110694793409, + 7.466715301269638, + 7.720342055147692, + 7.606163454952473, + 7.275749372954192, + 7.4163210916589275, + 7.464469357027655, + 7.083615841940639, + 7.15182294817799, + 7.029489247478757, + 7.431185471393737, + 6.935559078187955, + 7.464442803427087, + 6.990922686398541, + 6.758047623096688, + 7.134644599034315, + 7.127610122606144, + 7.005447146729908, + 6.936970029253562, + 7.1157522487129965, + 7.023155055131738, + 6.94577067240893, + 6.941399122600365, + 6.950554849446046, + 6.8035830453970085, + 6.5952572736008435, + 6.6997112326926365, + 6.4358182873601715, + 6.228512822938784, + 6.370212743602484, + 5.965197619958553, + 5.670722904331665, + 5.4092527154850565, + 5.5241648323843595, + 5.2397473974684985, + 4.91572521356592, + 4.633219256004186, + 4.5400233431839165, + 4.353943694043269, + 4.028485418614057, + 3.864464089807961, + 3.539441897942694, + 3.3939803832605677, + 3.227885487882121, + 3.119255427121228, + 2.9070995206113843, + 2.8161757615155705, + 2.6731276657632774, + 2.5984979552676566, + 2.4500032015307904, + 2.3735466759210153, + 2.2779211217947637, + 2.2405174064881272, + 2.184930658890143, + 2.157572714269137, + 2.1118349207961633, + 2.0652910880277293, + 2.0745550790102345, + 2.0549042473976273, + 2.022638972123836, + 2.029919842896592, + 2.013068496458053, + 2.0214647272413453, + 2.0071553540617373, + 1.9964920853424701, + 1.9831137410811164, + 2.0058707050002367, + 1.980511867669466, + 2.0245139084366777, + 2.000852575176608, + 1.9849020190202036, + 1.9922309396993194, + 2.005094867153131, + 2.0054485571601326, + 2.002963983022924, + 1.9932325539823295, + 1.9963126120697006, + 1.9930378327798541, + 2.0146632064409284, + 2.0050843772358333, + 2.0073227744879043, + 1.9901371591373391, + 1.9974147663996378, + 1.9955842376080692 + ] + }, + { + "legendgroup": "Beam sensor 1", + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 3.682546580145791, + 3.7480905642136455, + 3.7698680043021437, + 3.794598393144694, + 3.83274341111876, + 3.86497740501022, + 4.006802529994472, + 4.00036913392764, + 3.9481857205658546, + 4.117909378036816, + 4.282293259472804, + 4.406231144354147, + 4.447463297540425, + 4.443590076373223, + 4.629636764291417, + 4.545490134137496, + 4.762738236450896, + 4.938310570885127, + 5.111496514565832, + 5.1788582633957265, + 5.123397071785726, + 5.206004099459512, + 5.396100523576821, + 5.372742818795979, + 5.405700982902913, + 5.480551233211444, + 5.4028565673334885, + 5.603169973822201, + 5.648248603408112, + 5.7317007600106695, + 5.613196197980132, + 5.581840737042961, + 5.630356346648869, + 5.781025574448763, + 5.6593174697231685, + 5.785756959055169, + 5.7601284895891025, + 5.788230351783955, + 5.754823564902719, + 5.983036443529689, + 5.974087870474966, + 5.853581332504211, + 6.05036311395665, + 6.256640285625232, + 6.042790621566124, + 6.22990745422102, + 6.309026381181748, + 6.849153378600638, + 6.544674066514035, + 7.184503566262105, + 6.9789420581200305, + 6.886236016904894, + 7.471669563863474, + 7.762957844685767, + 7.821344822244425, + 7.922507789887316, + 8.345401921453925, + 8.472924289116735, + 8.615287303631332, + 8.809610810458969, + 9.035224680826879, + 8.957781684609735, + 8.885928390945166, + 9.246098586643537, + 8.989226600661285, + 8.826880433498385, + 9.224550490249078, + 8.666387184451414, + 8.35830797842546, + 7.9737690388247175, + 8.274314391215423, + 7.895346213420811, + 7.364134570065388, + 7.024706955714454, + 6.856057330634303, + 6.550675240375444, + 6.001026072729235, + 5.7473498709277475, + 5.179122598109574, + 4.9060020586063615, + 4.549379273020302, + 4.399405223274182, + 3.951318128653969, + 3.7854334090717483, + 3.517014058408442, + 3.3266536606027954, + 3.0158811263612737, + 2.8558150557997846, + 2.641022614794618, + 2.5635556005601003, + 2.4417459704023154, + 2.353363963316716, + 2.2918332400362815, + 2.225248550191615, + 2.167120232809512, + 2.150653627504091, + 2.1063974564304617, + 2.0572469716135755, + 2.0666323791183285, + 2.032471250117122, + 2.035065173030915, + 2.016388180351999, + 1.9884035587486506, + 1.9946275607988648, + 2.0110489861306116, + 2.007182303060239, + 2.015862772628424, + 1.9996942978841656, + 2.018956716670328, + 2.005825443548572, + 1.999172793355701, + 2.010995452542602, + 1.9924528691982193, + 1.9975634247956362, + 2.0213335526096783, + 2.001793789629492, + 2.0055065009580493, + 2.0015699208661024, + 2.0045203729281864, + 2.00267582003051, + 2.0018363198777194 + ] + }, + { + "legendgroup": "Beam sensor 2", + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 2", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 2.269245637739695, + 2.2998277822003876, + 2.351115554515013, + 2.3935431861339245, + 2.428123337836534, + 2.470719657409029, + 2.5684442525172146, + 2.608401472914582, + 2.652626621461129, + 2.748034028282946, + 2.894737262301469, + 2.9908490842834103, + 3.0978455239211984, + 3.1509667408846997, + 3.326764555050805, + 3.3330979970861074, + 3.575132425051332, + 3.759228323720947, + 3.8887196453804944, + 4.043437375808217, + 4.050506497912035, + 4.22683691104584, + 4.396473800871551, + 4.4619620709729375, + 4.532003662178585, + 4.64984731095328, + 4.622063816688261, + 4.826252324387638, + 4.885625362565224, + 4.935170844521706, + 4.862291907837204, + 4.805313759351483, + 4.775618316142517, + 4.851701500193712, + 4.691552039484218, + 4.650333511091664, + 4.549063855538922, + 4.436587569348351, + 4.266755975925206, + 4.246945653196009, + 4.105199644437734, + 3.8207443811943587, + 3.76578437913965, + 3.6432292488783906, + 3.434034318674742, + 3.358538229741471, + 3.2112062988002816, + 3.23267184871027, + 3.0798248687520866, + 3.1804620367500456, + 3.0964862033990115, + 3.0612505016338365, + 3.2115489435183475, + 3.335249324326946, + 3.417560925332592, + 3.5664929683330793, + 3.8533906642324256, + 4.1024507553633205, + 4.422140591141545, + 4.730717446434767, + 5.175269837503004, + 5.335543164479105, + 5.751446425842532, + 6.362782149520328, + 6.586851314232249, + 6.997391537873926, + 7.751036556264858, + 7.777454977371383, + 8.155740103878497, + 8.207234627855504, + 9.106795113531648, + 9.32795998520604, + 9.309637673008757, + 9.546740430963878, + 9.804248595901914, + 9.954939637426316, + 9.715272466653715, + 9.919012585224353, + 9.426146994807988, + 9.381143548952075, + 9.225444020959102, + 9.242464997880658, + 8.64771292853549, + 8.720492535923322, + 8.254609334417417, + 8.177520841410793, + 7.49575219181945, + 7.011784661177705, + 6.570573953570048, + 6.4039083492556035, + 5.881223844581611, + 5.743632683422368, + 5.32497879667636, + 5.128065711068347, + 4.771406653946123, + 4.567379970744297, + 4.2633697842224585, + 3.998274617164608, + 3.7431305087916757, + 3.5640369344307383, + 3.4232356065073786, + 3.163615878501435, + 3.0636088603740594, + 2.9268984897298744, + 2.7988888545408037, + 2.6797049743503356, + 2.6743015837582944, + 2.544122439327525, + 2.4766287477503033, + 2.4158531230124223, + 2.388839202446592, + 2.3103962951875596, + 2.2883898387773973, + 2.2656110539544514, + 2.182375903759291, + 2.192195730283244, + 2.1526966227594615, + 2.130321013931836, + 2.121387467257954, + 2.0863309225751463, + 2.080522785486708 + ] + }, + { + "legendgroup": "Beam sensor 3", + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 3", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 2.0048472363581484, + 2.0082219970582025, + 2.015800037650369, + 2.012366744598929, + 2.0111881790208708, + 2.0219622540415894, + 2.057214171269872, + 2.0487982640804923, + 2.0736473164052693, + 2.074484380099291, + 2.111416484473971, + 2.153093852426196, + 2.188017257750393, + 2.2320828234983763, + 2.3031832410600193, + 2.3288576415748485, + 2.4558843536465047, + 2.5730497336031135, + 2.6648526542934325, + 2.801412243407468, + 2.8515649705965536, + 3.025450916377702, + 3.1881448174673945, + 3.3075328329125577, + 3.4593618133667348, + 3.6503357699762815, + 3.757369896428248, + 4.037274701391412, + 4.154784623078697, + 4.364903690879912, + 4.4195768624892455, + 4.524256079262262, + 4.665464106491921, + 4.874705146875558, + 4.879133958904936, + 5.0000493179441134, + 5.021692152651062, + 5.038295909505634, + 4.97903310476586, + 5.094084807969011, + 4.98872815093238, + 4.762696631203361, + 4.759924178895062, + 4.671634607533428, + 4.3974554519641895, + 4.285269765473419, + 4.068842760611289, + 4.067903217716059, + 3.7639949942805484, + 3.8501873348849465, + 3.5186997978414905, + 3.370053762221009, + 3.347379932546897, + 3.266396938229498, + 3.206170357777176, + 3.1592126455779295, + 3.1522128502388886, + 3.1803689117834915, + 3.2328029416584583, + 3.315932694571669, + 3.462249875311364, + 3.5020447261847067, + 3.640269588368556, + 3.9197060623595643, + 4.022398781325316, + 4.229702841015361, + 4.615740838413224, + 4.65131304447365, + 4.915612214498838, + 4.999684311863299, + 5.543001149145256, + 5.770732538353119, + 5.879338834139044, + 6.1394139616632515, + 6.406597261426106, + 6.665192764365242, + 6.706639930014827, + 7.016110775439613, + 6.955765201857972, + 7.1228997204022315, + 7.239182588670879, + 7.4599481238905145, + 7.30786174425639, + 7.610740791514557, + 7.485268147762597, + 7.716168488871713, + 7.500396399116027, + 7.323188388139022, + 7.256850168550908, + 7.365357581221947, + 7.092519875730409, + 7.18067422086919, + 7.02790348186461, + 7.0845065525206525, + 6.823907782604007, + 6.9180174020276795, + 6.724945868466202, + 6.665933745756693, + 6.496744589859477, + 6.422949656642195, + 6.4635260041235965, + 6.03297051046321, + 6.1130595894210105, + 5.989518984719937, + 5.869455688512479, + 5.737087535948124, + 5.863585712595215, + 5.706087485013977, + 5.656232997437064, + 5.586352136512266, + 5.777772230577951, + 5.497138236879059, + 5.496109362261726, + 5.4281912715592755, + 5.181428028873061, + 5.470657114025242, + 5.265092624551789, + 5.251251261270487, + 5.128381042359218, + 5.008954659938972, + 4.937947653434158 + ] + }, + { + "legendgroup": "Beam sensor 4", + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 4", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 2.0051149170621545, + 2.0034643278005198, + 2.008069426224035, + 1.9849772671932653, + 2.003382534648923, + 2.023722447734518, + 2.000352514673192, + 2.03029614903509, + 2.038364567947861, + 2.044964064429174, + 2.03503177506568, + 2.0602008112587473, + 2.0659533343339285, + 2.086741386884045, + 2.118339138419928, + 2.1134645770392844, + 2.1661730767060092, + 2.2321830001956924, + 2.273634634006135, + 2.3527961480161794, + 2.3935902384764454, + 2.501668650775769, + 2.576113817190549, + 2.654032244985692, + 2.751766980314175, + 2.8712009933902998, + 2.976368887925728, + 3.1774776254317003, + 3.2875412192309295, + 3.4634409215358546, + 3.5097132659780277, + 3.664258949210175, + 3.8333056485311654, + 4.016320484607367, + 4.127739610852591, + 4.310502959611292, + 4.383383023829332, + 4.514032596658787, + 4.568620045735389, + 4.786125781625841, + 4.843115420595217, + 4.760113160740463, + 4.860452818460505, + 4.951409764544519, + 4.759584411119105, + 4.781698322616699, + 4.725514599783425, + 4.875837637340524, + 4.581161834822511, + 4.815236594403675, + 4.4918800015416265, + 4.331826904105765, + 4.430303413499499, + 4.367626925330253, + 4.280904744989299, + 4.200828866132116, + 4.243010427480616, + 4.173161369291443, + 4.145098407638647, + 4.146652374238214, + 4.225840142941879, + 4.216756738550404, + 4.220744979762471, + 4.372986967965083, + 4.381007911961047, + 4.439821681257273, + 4.709410203349204, + 4.6624983793001995, + 4.785377791404038, + 4.79402986060704, + 5.171859824263258, + 5.28230622116517, + 5.31745650673929, + 5.496571183198965, + 5.687566471624886, + 5.838544967968865, + 5.859713884878767, + 6.096679717395961, + 6.012214935379968, + 6.1511799807706415, + 6.2752971992968964, + 6.432499348479381, + 6.326462138671673, + 6.59830823800222, + 6.518283171549696, + 6.727572031695778, + 6.600118889212871, + 6.489843412399393, + 6.473240801294676, + 6.580406672112248, + 6.3926950800182105, + 6.5329878517646645, + 6.434990699783117, + 6.540461133216833, + 6.364724151465686, + 6.525799105020119, + 6.382856640265195, + 6.394242262886686, + 6.312802804839117, + 6.30475503979225, + 6.389081999363682, + 6.027710514085191, + 6.149650791980499, + 6.119280994082223, + 6.055487541341745, + 5.977948695431391, + 6.16668878191685, + 6.050103612484466, + 6.030942862360142, + 6.063084092112585, + 6.306490556445346, + 6.078589202500565, + 6.098105029960544, + 6.093142602023775, + 5.870996204245585, + 6.274303171221499, + 6.103022973479154, + 6.112850983512749, + 6.057337768301912, + 5.933769729063229, + 5.913687800179152 + ] + }, + { + "legendgroup": "Point sensor 0", + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 1.983196641913326, + 2.003338201447632, + 1.9980023680323258, + 1.9811123933986097, + 1.9981926227116058, + 2.008487986443864, + 1.99598451932004, + 2.0043234925148106, + 2.0035967771957224, + 2.00649573271151, + 1.9979019682408914, + 2.0155886946449018, + 2.010802288467447, + 1.9984739913497225, + 1.9981652211811711, + 2.007785638574461, + 2.0077414327981047, + 2.0151127155712247, + 1.9911534854438553, + 2.0071369969266817, + 2.000742257816604, + 1.9986624821149852, + 2.003986626306235, + 2.0106836025857766, + 2.0126804138249237, + 2.001351484551734, + 1.9914278509057126, + 1.999349075489228, + 1.995133425312695, + 1.981630438731792, + 1.977598106201599, + 2.0079628341573468, + 1.9948990374192408, + 2.01109993538433, + 1.9907274810474571, + 1.9938013028474497, + 2.0057822811253, + 1.9983305652392451, + 1.999463619254624, + 1.9977336254188551, + 2.0022700414196883, + 2.0072116357950387, + 1.9880021691881749, + 1.9881165019276452, + 1.9895335332960462, + 2.000013724973905, + 2.012614946202352, + 1.979602063694696, + 2.000685390515423, + 1.9858312012979076, + 2.0139014433021156, + 1.9887580556647142, + 1.9908246618062597, + 2.0141503406339583, + 2.00262051522007, + 2.0115438755995494, + 1.9904539656133688, + 1.9865144990716013, + 1.97885909950618, + 1.9940318206848535, + 1.9840486470967087, + 2.001017855471596, + 2.0034305276254143, + 1.9997480894045705, + 1.995895943170991, + 1.998653702453864, + 2.0147231215621284, + 2.0062302966166556, + 1.9930926271728273, + 1.9917376269920124, + 2.001462021131961, + 2.0102317890814967, + 1.9863118778814832, + 2.0303021698877335, + 2.017419847595157, + 2.01977857216658, + 2.0130722944932855, + 1.9900039596089119, + 2.0028124339783955, + 2.0051022026343825, + 2.0097356434257496, + 2.0186141677519647, + 2.0010857879008546, + 2.010724135150452, + 2.04083788016993, + 2.036928506027122, + 2.0633638561233907, + 2.0665207917357473, + 2.099198471338621, + 2.106268810794917, + 2.1485484922903404, + 2.153952703809359, + 2.1822155305649464, + 2.256197934175503, + 2.288037389734159, + 2.3553308865745115, + 2.4357033747252137, + 2.531255542315328, + 2.634642140106805, + 2.765935723765985, + 2.946826068636022, + 3.022266370576072, + 3.2536970594376697, + 3.4639011221589744, + 3.690445208973262, + 3.968261888766348, + 4.175319869850326, + 4.503918671611777, + 4.845715404826579, + 5.356662872626648, + 5.961129754985474, + 6.3423444738567545, + 6.951994414830769, + 7.364531396355585, + 7.801255037898933, + 9.11072067841932, + 9.597050116415245, + 10.589105061013514, + 11.265940243979086, + 11.693093890600919, + 12.714216996695951 + ] + }, + { + "legendgroup": "Point sensor 1", + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:00:00.000000000", + "2024-01-01T08:02:00.000000000", + "2024-01-01T08:04:00.000000000", + "2024-01-01T08:06:00.000000000", + "2024-01-01T08:08:00.000000000", + "2024-01-01T08:10:00.000000000", + "2024-01-01T08:12:00.000000000", + "2024-01-01T08:14:00.000000000", + "2024-01-01T08:16:00.000000000", + "2024-01-01T08:18:00.000000000", + "2024-01-01T08:20:00.000000000", + "2024-01-01T08:22:00.000000000", + "2024-01-01T08:24:00.000000000", + "2024-01-01T08:26:00.000000000", + "2024-01-01T08:28:00.000000000", + "2024-01-01T08:30:00.000000000", + "2024-01-01T08:32:00.000000000", + "2024-01-01T08:34:00.000000000", + "2024-01-01T08:36:00.000000000", + "2024-01-01T08:38:00.000000000", + "2024-01-01T08:40:00.000000000", + "2024-01-01T08:42:00.000000000", + "2024-01-01T08:44:00.000000000", + "2024-01-01T08:46:00.000000000", + "2024-01-01T08:48:00.000000000", + "2024-01-01T08:50:00.000000000", + "2024-01-01T08:52:00.000000000", + "2024-01-01T08:54:00.000000000", + "2024-01-01T08:56:00.000000000", + "2024-01-01T08:58:00.000000000", + "2024-01-01T09:00:00.000000000", + "2024-01-01T09:02:00.000000000", + "2024-01-01T09:04:00.000000000", + "2024-01-01T09:06:00.000000000", + "2024-01-01T09:08:00.000000000", + "2024-01-01T09:10:00.000000000", + "2024-01-01T09:12:00.000000000", + "2024-01-01T09:14:00.000000000", + "2024-01-01T09:16:00.000000000", + "2024-01-01T09:18:00.000000000", + "2024-01-01T09:20:00.000000000", + "2024-01-01T09:22:00.000000000", + "2024-01-01T09:24:00.000000000", + "2024-01-01T09:26:00.000000000", + "2024-01-01T09:28:00.000000000", + "2024-01-01T09:30:00.000000000", + "2024-01-01T09:32:00.000000000", + "2024-01-01T09:34:00.000000000", + "2024-01-01T09:36:00.000000000", + "2024-01-01T09:38:00.000000000", + "2024-01-01T09:40:00.000000000", + "2024-01-01T09:42:00.000000000", + "2024-01-01T09:44:00.000000000", + "2024-01-01T09:46:00.000000000", + "2024-01-01T09:48:00.000000000", + "2024-01-01T09:50:00.000000000", + "2024-01-01T09:52:00.000000000", + "2024-01-01T09:54:00.000000000", + "2024-01-01T09:56:00.000000000", + "2024-01-01T09:58:00.000000000", + "2024-01-01T10:00:00.000000000", + "2024-01-01T10:02:00.000000000", + "2024-01-01T10:04:00.000000000", + "2024-01-01T10:06:00.000000000", + "2024-01-01T10:08:00.000000000", + "2024-01-01T10:10:00.000000000", + "2024-01-01T10:12:00.000000000", + "2024-01-01T10:14:00.000000000", + "2024-01-01T10:16:00.000000000", + "2024-01-01T10:18:00.000000000", + "2024-01-01T10:20:00.000000000", + "2024-01-01T10:22:00.000000000", + "2024-01-01T10:24:00.000000000", + "2024-01-01T10:26:00.000000000", + "2024-01-01T10:28:00.000000000", + "2024-01-01T10:30:00.000000000", + "2024-01-01T10:32:00.000000000", + "2024-01-01T10:34:00.000000000", + "2024-01-01T10:36:00.000000000", + "2024-01-01T10:38:00.000000000", + "2024-01-01T10:40:00.000000000", + "2024-01-01T10:42:00.000000000", + "2024-01-01T10:44:00.000000000", + "2024-01-01T10:46:00.000000000", + "2024-01-01T10:48:00.000000000", + "2024-01-01T10:50:00.000000000", + "2024-01-01T10:52:00.000000000", + "2024-01-01T10:54:00.000000000", + "2024-01-01T10:56:00.000000000", + "2024-01-01T10:58:00.000000000", + "2024-01-01T11:00:00.000000000", + "2024-01-01T11:02:00.000000000", + "2024-01-01T11:04:00.000000000", + "2024-01-01T11:06:00.000000000", + "2024-01-01T11:08:00.000000000", + "2024-01-01T11:10:00.000000000", + "2024-01-01T11:12:00.000000000", + "2024-01-01T11:14:00.000000000", + "2024-01-01T11:16:00.000000000", + "2024-01-01T11:18:00.000000000", + "2024-01-01T11:20:00.000000000", + "2024-01-01T11:22:00.000000000", + "2024-01-01T11:24:00.000000000", + "2024-01-01T11:26:00.000000000", + "2024-01-01T11:28:00.000000000", + "2024-01-01T11:30:00.000000000", + "2024-01-01T11:32:00.000000000", + "2024-01-01T11:34:00.000000000", + "2024-01-01T11:36:00.000000000", + "2024-01-01T11:38:00.000000000", + "2024-01-01T11:40:00.000000000", + "2024-01-01T11:42:00.000000000", + "2024-01-01T11:44:00.000000000", + "2024-01-01T11:46:00.000000000", + "2024-01-01T11:48:00.000000000", + "2024-01-01T11:50:00.000000000", + "2024-01-01T11:52:00.000000000", + "2024-01-01T11:54:00.000000000", + "2024-01-01T11:56:00.000000000", + "2024-01-01T11:58:00.000000000", + "2024-01-01T12:00:00.000000000" + ], + "y": [ + 9.377246903370379, + 9.423095247460608, + 9.432571221240023, + 9.092643660712165, + 8.859556014847556, + 8.655509456619336, + 8.620473634347672, + 8.126352215892458, + 7.556216828468407, + 7.667834335181266, + 7.484190120824107, + 7.292203049043618, + 6.937437951638885, + 6.343060276778562, + 6.248695826695021, + 5.796947607048183, + 5.399953704214194, + 5.2054868573318, + 5.076692625573246, + 4.684901291936489, + 4.423084667770013, + 4.072455920825205, + 3.9769604197494375, + 3.656419322873028, + 3.4913829664245033, + 3.2564493510843198, + 3.0344355276684536, + 2.9199379657722044, + 2.807666317663072, + 2.672359086204675, + 2.555023766707416, + 2.467256334146183, + 2.3871249359278433, + 2.339827196758854, + 2.2338534465193134, + 2.224712859056882, + 2.1731663853566685, + 2.1521046455012036, + 2.116577721548318, + 2.084874706217439, + 2.0820800549053318, + 2.045610396219539, + 2.028951160874966, + 2.045072231824393, + 2.0143918030994663, + 2.0007428356046697, + 2.0090239062769557, + 2.0060044836575006, + 1.9976139058589597, + 2.004287767235816, + 2.0102327551298576, + 1.9987548156068329, + 1.9996715214342469, + 2.01091470788135, + 2.0098539878007107, + 1.998654388722279, + 1.9857268491857063, + 1.9872480126089649, + 1.9950816966568004, + 1.9997903002605422, + 2.0072942052518217, + 1.990422665446124, + 1.999643963962288, + 2.0105812666240666, + 1.9991238345493223, + 2.001857874412059, + 2.003385294941852, + 1.991970309004957, + 2.005932136381029, + 1.9885600447371912, + 2.0046024128583158, + 2.009570753907875, + 2.002457281161687, + 1.9861168732089114, + 2.0079784763024766, + 1.996053334696689, + 1.9925280084505945, + 2.00150993471972, + 2.0101932279858024, + 1.9891225610646486, + 1.9947135488689347, + 1.9951476258144036, + 1.9916435389549159, + 1.991503130184738, + 2.0030709682819654, + 2.0025755496731827, + 1.9995276219214315, + 1.9966205755763724, + 2.002706945674821, + 1.9992555315645966, + 1.9982500980993352, + 1.9999807833367864, + 2.022242743259279, + 2.0085257530060243, + 1.9866346614518706, + 1.9874241273765871, + 2.001375885801873, + 2.004705557046606, + 2.0007831822163507, + 1.9968658321913015, + 2.005643073160123, + 2.0267860575704004, + 1.9908725874788058, + 1.9866998605194408, + 1.9853418508874738, + 1.9943644828801455, + 2.000929517117784, + 2.0004653093004197, + 1.992226728917966, + 1.9912886378073245, + 1.9951980718612405, + 1.9962192149789064, + 1.9925708696350641, + 2.0173339547511038, + 2.010663212866598, + 2.0005141552597387, + 1.973358229637477, + 2.0050875397067385, + 2.003156845028036, + 1.9829852604179308, + 1.9973940468766096 + ] + } + ], + "layout": { + "autosize": true, + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 10 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "autorange": true, + "range": [ + "2024-01-01 07:45:40.0084", + "2024-01-01 12:14:19.9916" + ], + "type": "date" + }, + "yaxis": { + "autorange": true, + "range": [ + 1.3215435382628342, + 13.366031688070594 + ], + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAMgCAYAAADSp0wWAAAAAXNSR0IArs4c6QAAIABJREFUeF7svXuUZFWZp/1GZGbkPeuSdRcoCkotBAQVBe8IMqstpL/+cGSwu0dtHIbR6dUDsmBR+jku2tFiwaBM9xr5amrEyze2WD0ybdOU2i2ItrQFNFAKQqncKep+z3tmXL51gj5RJ4LMjBNxzj7nF5lP/ANZufe73/N7dkLVU/uckymVSiXjQwIkQAIkQAIkQAIkQAIkQAIkQAIkQAIkMG0CGeQJO4MESIAESIAESIAESIAESIAESIAESIAEZk4AecLuIAESIAESIAESIAESIAESIAESIAESIIFZEkCesD1IgARIgARIgARIgARIgARIgARIgARIAHnCHiABEiABEiABEiABEiABEiABEiABEiCB5hLg5ElzuTGLBEiABEiABEiABEiABEiABEiABEhgniSAPJknoLlMEiABEiABEiABEiABEiABEiABEiCB5hJAnjSXG7NIgARIgARIgARIgARIgARIgARIgATmSQLIk3kCmsskARIgARIgARIgARIgARIgARIgARJoLgHkSXO5MYsESIAESIAESIAESIAESIAESIAESGCeJBBZnuw6ONbyUQ0O5GxoNG+T+WLLX8tcvICBnnYrFM1GxvNz8fJa/pp6Otss19FmR4YnW/5a5uIFtLdlbFF/p+0/Mj4XL29OXNOqwW6bC/8vnRMwprmIpQs67fDwpOULpbl6iS19XQv7Omxismhjk4WWvo652nxfd7tlMxk7Njo1Vy+xpa+rsyNrfd0ddvDYREtfh9e89/9SPiTgOgHkiZkhT1xvs2j1kSfR8nM9G3niOuFo9ZEn0fJLYjbyJImUm18DedJ8dknMRJ4kkXLzayBPms8uiZnIkyRSZo25lADyBHkiv5+RJ9qIkCfafJAn2nz8vy3j5IkuJ+SJLhuvM+SJNh/kiTYf5Ik2H7rTSwB5gjzR25U1HSFPtBEhT7T5IE+0+SBP9PkgT7QZIU+0+SBPtPkgT7T50J1eAsgT5InerkSeyDMJNog80caFPNHmgzzR54M80WaEPNHmgzzR5oM80eZDd3oJIE+QJ3q7EnkizwR50jqIkCf6rHjmiTYj5Ik2H+SJNh/kiTYf5Ik2H7rTSwB5gjzR25XIE3kmyJPWQYQ80WeFPNFm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3fvwUXc/vvHA3VkvraT9nUd/ZKSbCF4kumlwdBw/3vUiHvzqnQbQENjzyM4n8cSjD+GCVe04cbIX3975JL7/yP3G33KvA2+9awAQOR7/6XP42j23oL622jj3gYcfw85H7sfWLRuWbmkFNLfdsJ3wJOs1gAlSASpABagAFaACVIAKUAEqQAWoABVYngIq4Yl1xkZbi/8sWHH7jZ/Czn/9mVHyVGesZDLzxC6twJQHv/XPeOiBuw0AYoc+dphivd6EJNuv2BQ3+8TMl5xrghfOPFlepebVVIAKUAEqQAWoABWgAlSAClABKkAFsqmAOngigGL3ngO4964bjXIKXOgfDBgzMnoHhozZG7dev82YpWKHGcmEyQY8scMRSVMOc8ZMsvw4/Wa93jprhfAkm1WcaVEBKkAFqAAVoAJUgApQASpABagAFVieAurgib04slTmsSeeweM/+DoCI+Nxy2TM2RxfvGNH3FIYJ0mWC0+cZo7Y00wGT+ygxT5rhfBkeRWZV1MBKkAFqAAVoAJUgApQASpABagAFciVAirhiTWQrBR888a15xSemOCktbkhLi5LqjNPrLNnzFkl9mCypsGMe5Krqs50qQAVoAJUgApQASpABagAFaACVIAKZKaAOnhiD8p6rmeeJAInIncqMU+cwImTVZx5klkF5lVUgApQASpABagAFaACVIAKUAEqQAVyrcA5hyf25TBWWCK71AhUeOb5l3My8yRREFdTdLffk+22IzNM7DNTkplJeJLrqs70qQAVoAJUgApQASpABagAFaACVIAKZKbAOYMn1i2ErUtVrFv3SpGu+eRmjI5PZgxPrPeR9Jx27zG3GrZLaG4v3DcwHPeTdYcf6xIjc3mRQB8z/snh97rirk20LIfwJLMKzKuoABWgAlSAClABKkAFqAAVoAJUgArkWoFzBk9yXbBU0hfwsf+1Q3FxTFK5judQASpABagAFaACVIAKUAEqQAWoABWgAuePAuc1PJFlNddu+4TrTj3nT3VgSakAFaACVIAKUAEqQAWoABWgAlSAClABuwL/D9cFB+s6ma9MAAAAAElFTkSuQmCC", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "fig=go.Figure()\n", "fig = sensor_group.plot_timeseries(fig=fig)\n", @@ -317,10 +6588,1901 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "id": "5e753113", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "marker": { + "color": "rgb(102, 197, 204)" + }, + "mode": "markers", + "name": "Beam sensor 0", + "r": [ + 7.890544298596149, + 7.958141328760238, + 7.997781006185826, + 7.791714050564657, + 7.782219369759696, + 7.7027693732637434, + 7.907840816891765, + 7.6700135697839205, + 7.399342586559671, + 7.718237540043255, + 7.9351367632351915, + 8.073939392618753, + 8.031656486135207, + 7.812462574982364, + 8.112189138058191, + 7.7788990519010195, + 7.988779900550802, + 8.223226698536852, + 8.46635913540058, + 8.35976039932035, + 8.172487831942838, + 8.192107075317526, + 8.417256468847048, + 8.225621150677922, + 8.21077100799815, + 8.218807731163079, + 7.951363896989119, + 8.195299007997008, + 8.185643574955071, + 8.218548320159844, + 7.9461939768467795, + 7.815597803316228, + 7.794624234656219, + 7.9645143747178935, + 7.720335130908699, + 7.7503081698494185, + 7.688706876286427, + 7.620110694793409, + 7.466715301269638, + 7.720342055147692, + 7.606163454952473, + 7.275749372954192, + 7.4163210916589275, + 7.464469357027655, + 7.083615841940639, + 7.15182294817799, + 7.029489247478757, + 7.431185471393737, + 6.935559078187955, + 7.464442803427087, + 6.990922686398541, + 6.758047623096688, + 7.134644599034315, + 7.127610122606144, + 7.005447146729908, + 6.936970029253562, + 7.1157522487129965, + 7.023155055131738, + 6.94577067240893, + 6.941399122600365, + 6.950554849446046, + 6.8035830453970085, + 6.5952572736008435, + 6.6997112326926365, + 6.4358182873601715, + 6.228512822938784, + 6.370212743602484, + 5.965197619958553, + 5.670722904331665, + 5.4092527154850565, + 5.5241648323843595, + 5.2397473974684985, + 4.91572521356592, + 4.633219256004186, + 4.5400233431839165, + 4.353943694043269, + 4.028485418614057, + 3.864464089807961, + 3.539441897942694, + 3.3939803832605677, + 3.227885487882121, + 3.119255427121228, + 2.9070995206113843, + 2.8161757615155705, + 2.6731276657632774, + 2.5984979552676566, + 2.4500032015307904, + 2.3735466759210153, + 2.2779211217947637, + 2.2405174064881272, + 2.184930658890143, + 2.157572714269137, + 2.1118349207961633, + 2.0652910880277293, + 2.0745550790102345, + 2.0549042473976273, + 2.022638972123836, + 2.029919842896592, + 2.013068496458053, + 2.0214647272413453, + 2.0071553540617373, + 1.9964920853424701, + 1.9831137410811164, + 2.0058707050002367, + 1.980511867669466, + 2.0245139084366777, + 2.000852575176608, + 1.9849020190202036, + 1.9922309396993194, + 2.005094867153131, + 2.0054485571601326, + 2.002963983022924, + 1.9932325539823295, + 1.9963126120697006, + 1.9930378327798541, + 2.0146632064409284, + 2.0050843772358333, + 2.0073227744879043, + 1.9901371591373391, + 1.9974147663996378, + 1.9955842376080692 + ], + "theta": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ], + "type": "scatterpolar" + }, + { + "marker": { + "color": "rgb(246, 207, 113)" + }, + "mode": "markers", + "name": "Beam sensor 1", + "r": [ + 3.682546580145791, + 3.7480905642136455, + 3.7698680043021437, + 3.794598393144694, + 3.83274341111876, + 3.86497740501022, + 4.006802529994472, + 4.00036913392764, + 3.9481857205658546, + 4.117909378036816, + 4.282293259472804, + 4.406231144354147, + 4.447463297540425, + 4.443590076373223, + 4.629636764291417, + 4.545490134137496, + 4.762738236450896, + 4.938310570885127, + 5.111496514565832, + 5.1788582633957265, + 5.123397071785726, + 5.206004099459512, + 5.396100523576821, + 5.372742818795979, + 5.405700982902913, + 5.480551233211444, + 5.4028565673334885, + 5.603169973822201, + 5.648248603408112, + 5.7317007600106695, + 5.613196197980132, + 5.581840737042961, + 5.630356346648869, + 5.781025574448763, + 5.6593174697231685, + 5.785756959055169, + 5.7601284895891025, + 5.788230351783955, + 5.754823564902719, + 5.983036443529689, + 5.974087870474966, + 5.853581332504211, + 6.05036311395665, + 6.256640285625232, + 6.042790621566124, + 6.22990745422102, + 6.309026381181748, + 6.849153378600638, + 6.544674066514035, + 7.184503566262105, + 6.9789420581200305, + 6.886236016904894, + 7.471669563863474, + 7.762957844685767, + 7.821344822244425, + 7.922507789887316, + 8.345401921453925, + 8.472924289116735, + 8.615287303631332, + 8.809610810458969, + 9.035224680826879, + 8.957781684609735, + 8.885928390945166, + 9.246098586643537, + 8.989226600661285, + 8.826880433498385, + 9.224550490249078, + 8.666387184451414, + 8.35830797842546, + 7.9737690388247175, + 8.274314391215423, + 7.895346213420811, + 7.364134570065388, + 7.024706955714454, + 6.856057330634303, + 6.550675240375444, + 6.001026072729235, + 5.7473498709277475, + 5.179122598109574, + 4.9060020586063615, + 4.549379273020302, + 4.399405223274182, + 3.951318128653969, + 3.7854334090717483, + 3.517014058408442, + 3.3266536606027954, + 3.0158811263612737, + 2.8558150557997846, + 2.641022614794618, + 2.5635556005601003, + 2.4417459704023154, + 2.353363963316716, + 2.2918332400362815, + 2.225248550191615, + 2.167120232809512, + 2.150653627504091, + 2.1063974564304617, + 2.0572469716135755, + 2.0666323791183285, + 2.032471250117122, + 2.035065173030915, + 2.016388180351999, + 1.9884035587486506, + 1.9946275607988648, + 2.0110489861306116, + 2.007182303060239, + 2.015862772628424, + 1.9996942978841656, + 2.018956716670328, + 2.005825443548572, + 1.999172793355701, + 2.010995452542602, + 1.9924528691982193, + 1.9975634247956362, + 2.0213335526096783, + 2.001793789629492, + 2.0055065009580493, + 2.0015699208661024, + 2.0045203729281864, + 2.00267582003051, + 2.0018363198777194 + ], + "theta": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ], + "type": "scatterpolar" + }, + { + "marker": { + "color": "rgb(248, 156, 116)" + }, + "mode": "markers", + "name": "Beam sensor 2", + "r": [ + 2.269245637739695, + 2.2998277822003876, + 2.351115554515013, + 2.3935431861339245, + 2.428123337836534, + 2.470719657409029, + 2.5684442525172146, + 2.608401472914582, + 2.652626621461129, + 2.748034028282946, + 2.894737262301469, + 2.9908490842834103, + 3.0978455239211984, + 3.1509667408846997, + 3.326764555050805, + 3.3330979970861074, + 3.575132425051332, + 3.759228323720947, + 3.8887196453804944, + 4.043437375808217, + 4.050506497912035, + 4.22683691104584, + 4.396473800871551, + 4.4619620709729375, + 4.532003662178585, + 4.64984731095328, + 4.622063816688261, + 4.826252324387638, + 4.885625362565224, + 4.935170844521706, + 4.862291907837204, + 4.805313759351483, + 4.775618316142517, + 4.851701500193712, + 4.691552039484218, + 4.650333511091664, + 4.549063855538922, + 4.436587569348351, + 4.266755975925206, + 4.246945653196009, + 4.105199644437734, + 3.8207443811943587, + 3.76578437913965, + 3.6432292488783906, + 3.434034318674742, + 3.358538229741471, + 3.2112062988002816, + 3.23267184871027, + 3.0798248687520866, + 3.1804620367500456, + 3.0964862033990115, + 3.0612505016338365, + 3.2115489435183475, + 3.335249324326946, + 3.417560925332592, + 3.5664929683330793, + 3.8533906642324256, + 4.1024507553633205, + 4.422140591141545, + 4.730717446434767, + 5.175269837503004, + 5.335543164479105, + 5.751446425842532, + 6.362782149520328, + 6.586851314232249, + 6.997391537873926, + 7.751036556264858, + 7.777454977371383, + 8.155740103878497, + 8.207234627855504, + 9.106795113531648, + 9.32795998520604, + 9.309637673008757, + 9.546740430963878, + 9.804248595901914, + 9.954939637426316, + 9.715272466653715, + 9.919012585224353, + 9.426146994807988, + 9.381143548952075, + 9.225444020959102, + 9.242464997880658, + 8.64771292853549, + 8.720492535923322, + 8.254609334417417, + 8.177520841410793, + 7.49575219181945, + 7.011784661177705, + 6.570573953570048, + 6.4039083492556035, + 5.881223844581611, + 5.743632683422368, + 5.32497879667636, + 5.128065711068347, + 4.771406653946123, + 4.567379970744297, + 4.2633697842224585, + 3.998274617164608, + 3.7431305087916757, + 3.5640369344307383, + 3.4232356065073786, + 3.163615878501435, + 3.0636088603740594, + 2.9268984897298744, + 2.7988888545408037, + 2.6797049743503356, + 2.6743015837582944, + 2.544122439327525, + 2.4766287477503033, + 2.4158531230124223, + 2.388839202446592, + 2.3103962951875596, + 2.2883898387773973, + 2.2656110539544514, + 2.182375903759291, + 2.192195730283244, + 2.1526966227594615, + 2.130321013931836, + 2.121387467257954, + 2.0863309225751463, + 2.080522785486708 + ], + "theta": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ], + "type": "scatterpolar" + }, + { + "marker": { + "color": "rgb(220, 176, 242)" + }, + "mode": "markers", + "name": "Beam sensor 3", + "r": [ + 2.0048472363581484, + 2.0082219970582025, + 2.015800037650369, + 2.012366744598929, + 2.0111881790208708, + 2.0219622540415894, + 2.057214171269872, + 2.0487982640804923, + 2.0736473164052693, + 2.074484380099291, + 2.111416484473971, + 2.153093852426196, + 2.188017257750393, + 2.2320828234983763, + 2.3031832410600193, + 2.3288576415748485, + 2.4558843536465047, + 2.5730497336031135, + 2.6648526542934325, + 2.801412243407468, + 2.8515649705965536, + 3.025450916377702, + 3.1881448174673945, + 3.3075328329125577, + 3.4593618133667348, + 3.6503357699762815, + 3.757369896428248, + 4.037274701391412, + 4.154784623078697, + 4.364903690879912, + 4.4195768624892455, + 4.524256079262262, + 4.665464106491921, + 4.874705146875558, + 4.879133958904936, + 5.0000493179441134, + 5.021692152651062, + 5.038295909505634, + 4.97903310476586, + 5.094084807969011, + 4.98872815093238, + 4.762696631203361, + 4.759924178895062, + 4.671634607533428, + 4.3974554519641895, + 4.285269765473419, + 4.068842760611289, + 4.067903217716059, + 3.7639949942805484, + 3.8501873348849465, + 3.5186997978414905, + 3.370053762221009, + 3.347379932546897, + 3.266396938229498, + 3.206170357777176, + 3.1592126455779295, + 3.1522128502388886, + 3.1803689117834915, + 3.2328029416584583, + 3.315932694571669, + 3.462249875311364, + 3.5020447261847067, + 3.640269588368556, + 3.9197060623595643, + 4.022398781325316, + 4.229702841015361, + 4.615740838413224, + 4.65131304447365, + 4.915612214498838, + 4.999684311863299, + 5.543001149145256, + 5.770732538353119, + 5.879338834139044, + 6.1394139616632515, + 6.406597261426106, + 6.665192764365242, + 6.706639930014827, + 7.016110775439613, + 6.955765201857972, + 7.1228997204022315, + 7.239182588670879, + 7.4599481238905145, + 7.30786174425639, + 7.610740791514557, + 7.485268147762597, + 7.716168488871713, + 7.500396399116027, + 7.323188388139022, + 7.256850168550908, + 7.365357581221947, + 7.092519875730409, + 7.18067422086919, + 7.02790348186461, + 7.0845065525206525, + 6.823907782604007, + 6.9180174020276795, + 6.724945868466202, + 6.665933745756693, + 6.496744589859477, + 6.422949656642195, + 6.4635260041235965, + 6.03297051046321, + 6.1130595894210105, + 5.989518984719937, + 5.869455688512479, + 5.737087535948124, + 5.863585712595215, + 5.706087485013977, + 5.656232997437064, + 5.586352136512266, + 5.777772230577951, + 5.497138236879059, + 5.496109362261726, + 5.4281912715592755, + 5.181428028873061, + 5.470657114025242, + 5.265092624551789, + 5.251251261270487, + 5.128381042359218, + 5.008954659938972, + 4.937947653434158 + ], + "theta": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ], + "type": "scatterpolar" + }, + { + "marker": { + "color": "rgb(135, 197, 95)" + }, + "mode": "markers", + "name": "Beam sensor 4", + "r": [ + 2.0051149170621545, + 2.0034643278005198, + 2.008069426224035, + 1.9849772671932653, + 2.003382534648923, + 2.023722447734518, + 2.000352514673192, + 2.03029614903509, + 2.038364567947861, + 2.044964064429174, + 2.03503177506568, + 2.0602008112587473, + 2.0659533343339285, + 2.086741386884045, + 2.118339138419928, + 2.1134645770392844, + 2.1661730767060092, + 2.2321830001956924, + 2.273634634006135, + 2.3527961480161794, + 2.3935902384764454, + 2.501668650775769, + 2.576113817190549, + 2.654032244985692, + 2.751766980314175, + 2.8712009933902998, + 2.976368887925728, + 3.1774776254317003, + 3.2875412192309295, + 3.4634409215358546, + 3.5097132659780277, + 3.664258949210175, + 3.8333056485311654, + 4.016320484607367, + 4.127739610852591, + 4.310502959611292, + 4.383383023829332, + 4.514032596658787, + 4.568620045735389, + 4.786125781625841, + 4.843115420595217, + 4.760113160740463, + 4.860452818460505, + 4.951409764544519, + 4.759584411119105, + 4.781698322616699, + 4.725514599783425, + 4.875837637340524, + 4.581161834822511, + 4.815236594403675, + 4.4918800015416265, + 4.331826904105765, + 4.430303413499499, + 4.367626925330253, + 4.280904744989299, + 4.200828866132116, + 4.243010427480616, + 4.173161369291443, + 4.145098407638647, + 4.146652374238214, + 4.225840142941879, + 4.216756738550404, + 4.220744979762471, + 4.372986967965083, + 4.381007911961047, + 4.439821681257273, + 4.709410203349204, + 4.6624983793001995, + 4.785377791404038, + 4.79402986060704, + 5.171859824263258, + 5.28230622116517, + 5.31745650673929, + 5.496571183198965, + 5.687566471624886, + 5.838544967968865, + 5.859713884878767, + 6.096679717395961, + 6.012214935379968, + 6.1511799807706415, + 6.2752971992968964, + 6.432499348479381, + 6.326462138671673, + 6.59830823800222, + 6.518283171549696, + 6.727572031695778, + 6.600118889212871, + 6.489843412399393, + 6.473240801294676, + 6.580406672112248, + 6.3926950800182105, + 6.5329878517646645, + 6.434990699783117, + 6.540461133216833, + 6.364724151465686, + 6.525799105020119, + 6.382856640265195, + 6.394242262886686, + 6.312802804839117, + 6.30475503979225, + 6.389081999363682, + 6.027710514085191, + 6.149650791980499, + 6.119280994082223, + 6.055487541341745, + 5.977948695431391, + 6.16668878191685, + 6.050103612484466, + 6.030942862360142, + 6.063084092112585, + 6.306490556445346, + 6.078589202500565, + 6.098105029960544, + 6.093142602023775, + 5.870996204245585, + 6.274303171221499, + 6.103022973479154, + 6.112850983512749, + 6.057337768301912, + 5.933769729063229, + 5.913687800179152 + ], + "theta": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ], + "type": "scatterpolar" + }, + { + "marker": { + "color": "rgb(158, 185, 243)" + }, + "mode": "markers", + "name": "Point sensor 0", + "r": [ + 1.983196641913326, + 2.003338201447632, + 1.9980023680323258, + 1.9811123933986097, + 1.9981926227116058, + 2.008487986443864, + 1.99598451932004, + 2.0043234925148106, + 2.0035967771957224, + 2.00649573271151, + 1.9979019682408914, + 2.0155886946449018, + 2.010802288467447, + 1.9984739913497225, + 1.9981652211811711, + 2.007785638574461, + 2.0077414327981047, + 2.0151127155712247, + 1.9911534854438553, + 2.0071369969266817, + 2.000742257816604, + 1.9986624821149852, + 2.003986626306235, + 2.0106836025857766, + 2.0126804138249237, + 2.001351484551734, + 1.9914278509057126, + 1.999349075489228, + 1.995133425312695, + 1.981630438731792, + 1.977598106201599, + 2.0079628341573468, + 1.9948990374192408, + 2.01109993538433, + 1.9907274810474571, + 1.9938013028474497, + 2.0057822811253, + 1.9983305652392451, + 1.999463619254624, + 1.9977336254188551, + 2.0022700414196883, + 2.0072116357950387, + 1.9880021691881749, + 1.9881165019276452, + 1.9895335332960462, + 2.000013724973905, + 2.012614946202352, + 1.979602063694696, + 2.000685390515423, + 1.9858312012979076, + 2.0139014433021156, + 1.9887580556647142, + 1.9908246618062597, + 2.0141503406339583, + 2.00262051522007, + 2.0115438755995494, + 1.9904539656133688, + 1.9865144990716013, + 1.97885909950618, + 1.9940318206848535, + 1.9840486470967087, + 2.001017855471596, + 2.0034305276254143, + 1.9997480894045705, + 1.995895943170991, + 1.998653702453864, + 2.0147231215621284, + 2.0062302966166556, + 1.9930926271728273, + 1.9917376269920124, + 2.001462021131961, + 2.0102317890814967, + 1.9863118778814832, + 2.0303021698877335, + 2.017419847595157, + 2.01977857216658, + 2.0130722944932855, + 1.9900039596089119, + 2.0028124339783955, + 2.0051022026343825, + 2.0097356434257496, + 2.0186141677519647, + 2.0010857879008546, + 2.010724135150452, + 2.04083788016993, + 2.036928506027122, + 2.0633638561233907, + 2.0665207917357473, + 2.099198471338621, + 2.106268810794917, + 2.1485484922903404, + 2.153952703809359, + 2.1822155305649464, + 2.256197934175503, + 2.288037389734159, + 2.3553308865745115, + 2.4357033747252137, + 2.531255542315328, + 2.634642140106805, + 2.765935723765985, + 2.946826068636022, + 3.022266370576072, + 3.2536970594376697, + 3.4639011221589744, + 3.690445208973262, + 3.968261888766348, + 4.175319869850326, + 4.503918671611777, + 4.845715404826579, + 5.356662872626648, + 5.961129754985474, + 6.3423444738567545, + 6.951994414830769, + 7.364531396355585, + 7.801255037898933, + 9.11072067841932, + 9.597050116415245, + 10.589105061013514, + 11.265940243979086, + 11.693093890600919, + 12.714216996695951 + ], + "theta": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ], + "type": "scatterpolar" + }, + { + "marker": { + "color": "rgb(254, 136, 177)" + }, + "mode": "markers", + "name": "Point sensor 1", + "r": [ + 9.377246903370379, + 9.423095247460608, + 9.432571221240023, + 9.092643660712165, + 8.859556014847556, + 8.655509456619336, + 8.620473634347672, + 8.126352215892458, + 7.556216828468407, + 7.667834335181266, + 7.484190120824107, + 7.292203049043618, + 6.937437951638885, + 6.343060276778562, + 6.248695826695021, + 5.796947607048183, + 5.399953704214194, + 5.2054868573318, + 5.076692625573246, + 4.684901291936489, + 4.423084667770013, + 4.072455920825205, + 3.9769604197494375, + 3.656419322873028, + 3.4913829664245033, + 3.2564493510843198, + 3.0344355276684536, + 2.9199379657722044, + 2.807666317663072, + 2.672359086204675, + 2.555023766707416, + 2.467256334146183, + 2.3871249359278433, + 2.339827196758854, + 2.2338534465193134, + 2.224712859056882, + 2.1731663853566685, + 2.1521046455012036, + 2.116577721548318, + 2.084874706217439, + 2.0820800549053318, + 2.045610396219539, + 2.028951160874966, + 2.045072231824393, + 2.0143918030994663, + 2.0007428356046697, + 2.0090239062769557, + 2.0060044836575006, + 1.9976139058589597, + 2.004287767235816, + 2.0102327551298576, + 1.9987548156068329, + 1.9996715214342469, + 2.01091470788135, + 2.0098539878007107, + 1.998654388722279, + 1.9857268491857063, + 1.9872480126089649, + 1.9950816966568004, + 1.9997903002605422, + 2.0072942052518217, + 1.990422665446124, + 1.999643963962288, + 2.0105812666240666, + 1.9991238345493223, + 2.001857874412059, + 2.003385294941852, + 1.991970309004957, + 2.005932136381029, + 1.9885600447371912, + 2.0046024128583158, + 2.009570753907875, + 2.002457281161687, + 1.9861168732089114, + 2.0079784763024766, + 1.996053334696689, + 1.9925280084505945, + 2.00150993471972, + 2.0101932279858024, + 1.9891225610646486, + 1.9947135488689347, + 1.9951476258144036, + 1.9916435389549159, + 1.991503130184738, + 2.0030709682819654, + 2.0025755496731827, + 1.9995276219214315, + 1.9966205755763724, + 2.002706945674821, + 1.9992555315645966, + 1.9982500980993352, + 1.9999807833367864, + 2.022242743259279, + 2.0085257530060243, + 1.9866346614518706, + 1.9874241273765871, + 2.001375885801873, + 2.004705557046606, + 2.0007831822163507, + 1.9968658321913015, + 2.005643073160123, + 2.0267860575704004, + 1.9908725874788058, + 1.9866998605194408, + 1.9853418508874738, + 1.9943644828801455, + 2.000929517117784, + 2.0004653093004197, + 1.992226728917966, + 1.9912886378073245, + 1.9951980718612405, + 1.9962192149789064, + 1.9925708696350641, + 2.0173339547511038, + 2.010663212866598, + 2.0005141552597387, + 1.973358229637477, + 2.0050875397067385, + 2.003156845028036, + 1.9829852604179308, + 1.9973940468766096 + ], + "theta": [ + 0.14553391101001198, + 0.9004618512205194, + 1.3532448944496627, + 2.159853577101172, + 3.133120112931349, + 3.5886374124281812, + 4.612419303538212, + 5.277948700025175, + 6.0819907218665525, + 6.6591003175066605, + 7.606734925560073, + 8.27900706562739, + 8.991554749650987, + 9.88884460343021, + 10.527993737817486, + 11.093308255053149, + 12.241492797829673, + 12.997084951223302, + 13.563913775003549, + 14.445502002073614, + 14.89368217617486, + 15.890447884876883, + 16.411258435356423, + 17.19107117576573, + 17.808978643129578, + 18.66615619368165, + 19.437607428165308, + 20.376848714641017, + 20.92352113556074, + 21.765869477506325, + 22.37710665878229, + 23.161978354092756, + 24.025982150051266, + 24.647724773636252, + 25.564679768540557, + 26.35646403660762, + 26.927513351085608, + 27.71952835260014, + 28.51760440111661, + 29.14236074693277, + 29.84411556975196, + 30.8223552796183, + 31.425325916455698, + 32.34531543719872, + 32.8979527312836, + 33.67496098941528, + 34.511274266569835, + 35.375520795794905, + 36.01980138689915, + 36.5844445829464, + 37.57980329808829, + 38.10126016895215, + 38.92441418547995, + 39.896026352544844, + 40.486833857253316, + 41.15950028958604, + 41.892483269424176, + 42.728778874500385, + 43.57253681948142, + 44.29053884396273, + 45.103224211582315, + 45.616141827828436, + 46.51969185124082, + 47.29338980509273, + 47.92742678806554, + 48.78635721387836, + 49.49199788881203, + 50.16445944145628, + 51.09611358131349, + 51.695140916873825, + 52.447643447622745, + 53.20886176622811, + 53.985975193216, + 54.86790119642262, + 55.45555434283686, + 56.13449699009592, + 56.971442619783694, + 57.72753962906793, + 58.6419812070953, + 59.29513152653327, + 60.07312902285544, + 60.65714640948324, + 61.54377456006648, + 62.214826206366524, + 62.866162078706274, + 63.631591668088895, + 64.61947588566889, + 65.29386923848332, + 66.20710743550266, + 66.79736676991406, + 67.56022155295413, + 68.12363023533648, + 68.95047831416454, + 69.67946239259291, + 70.3487368395747, + 71.12930767356578, + 71.91337256871368, + 72.75930156087382, + 73.54564164648642, + 74.24361254032016, + 75.04889332646606, + 75.76023336380648, + 76.54701846949533, + 77.37291242208914, + 78.13092281097695, + 78.96129738101195, + 79.33421128475345, + 80.2091968420322, + 80.88712718434465, + 81.7962895614659, + 82.40355493043485, + 83.27086960196368, + 84.06958564941178, + 84.62487808827107, + 85.48170922852778, + 86.22869828148961, + 87.00490437384741, + 87.84478808160831, + 88.56308367469047, + 89.17337924966628, + 89.9835902931037 + ], + "type": "scatterpolar" + } + ], + "layout": { + "annotations": [ + { + "align": "left", + "bgcolor": "#ffffff", + "bordercolor": "#000000", + "borderpad": 10, + "borderwidth": 2, + "font": { + "color": "#000000", + "size": 18 + }, + "opacity": 0.8, + "showarrow": false, + "text": "Radial Axis: Wind
speed in m/s.", + "x": 1, + "xanchor": "right", + "xref": "paper", + "y": 1, + "yanchor": "top", + "yref": "paper" + } + ], + "autosize": true, + "margin": { + "l": 0, + "r": 0 + }, + "polar": { + "angularaxis": { + "direction": "clockwise", + "rotation": 90, + "tickmode": "array", + "ticktext": [ + "N", + "NE", + "E", + "SE", + "S", + "SW", + "W", + "NW" + ], + "tickvals": [ + 0, + 45, + 90, + 135, + 180, + 225, + 270, + 315 + ], + "type": "linear" + }, + "radialaxis": { + "angle": 0, + "autorange": false, + "range": [ + 0, + 12.84135916666291 + ], + "tickangle": 0, + "type": "linear" + } + }, + "template": {}, + "title": { + "text": "Measured Concentration against Wind Direction." + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAGQCAYAAABf8k5KAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQecFOX9/7+712lH71IFaYogIoIiCgqKjZ/GXqJRSUzRaKKxkJgYS9QYSzTFWCKKsXcFVLABioCAiFKk996Pazv//+fZffZm52Z2Z3dn9/Z2P8/rtdxxO/OU9zPt+cy3+AzDMISFBEiABEiABEiABEiABEiABEiABEiABEjAloCP4gmPDBIgARIgARIgARIgARIgARIgARIgARJwJkDxhEcHCZAACZAACZAACZAACZAACZAACZAACUQhQPGEhwcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUDzhMUACJEACJEACJEACJEACJEACJEACJEACiRGg5Uli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA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B7tsO27cdrQgYBVwzAIQtoE7wPfff1/rrT/Gi2KOT2GNA2M3V/G8/Y4mbNkdL9g+nvrdcvVCPLFbSOu/uc14g3TCbrIZwSUs1nEfj3hijfHj9hx0cyFzmkfsG+07p7l2K55Eyyxk5ew0jlhipV098Yonup+xzkG7Y9kamyia4GbHzSrwus38o3nZHWNO11g3xwq3IQESIAESiJ8AxZP4mXEPEiABEoiLQDLiCRqyix9iTT9rjaOAxR5SlCJVqdkNw64u8wLS/KCORaMu2AbFreWJdaGOdMbmYm3TGvgT369ZsyYivaob6E6xVpxiqiDujC52Io/bmCdO3KzxZLCdXZBT83bxWJ7YHR96rNHiLLg9XhKp3xqrx8oVdbpdlEebc+tco51hw4bVSsFrjXWBcwdiGo5va7Ydu+PQzXHvVjxxOp9jnYN26abt2JjH6pSmFyKE3fmQjNsO+hIPZ7u+28WC0ds5iajxiidO5yn+bneuWo9laz+sfdbHerTj23xdtRtXPOcGxRM3dwVuQwIkQALeEaB44h1L1kQCJEACJEACJFAPCLiNyVMPhsIukgAJkAAJkAAJpIkAxZM0gWYzJEACJEACJEAC6SeAN/mwSEHWGV3iiaeT/h6zRRIgARIgARIggUwkQPEkE2eFfSIBEiABEiABEvCEgNX1ApXauRJ50hgrIQESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIggbogcPDgQbnzzjtl9uzZcs8998igQYNUN+bMmSOvv/66TJgwQYqLi+uia2yTBEiABEiABEiABEggQQIUTxIEx91IgARIgARIwI6AFk9at24tW7ZsCYslFE94vJAACZAACZAACZBA/SVA8aT+zh17TgIkQAIkkIEEtHgyZswYmTx5sowbN05Zn1A8ycDJYpdIgARIgARIgARIwCUBiicuQXEzEiABEiABEnBDQIsnEE1QtKvOokWL6LbjBiC3IQESIAESIAESIIEMJEDxJAMnhV0iARIgARKovwTM4km/fv1U/BOrkMKYJ/V3ftlzEiABEiABEiCB3CRA8SQ3552jJgESIAESSBEBs3hidtfRbjwMGJsi8KyWBEiABEiABEiABFJIgOJJCuGyahIgARIggdwjYBVPnALI5h4ZjpgESIAESIAESIAE6i8Biif1d+7YcxIgARIggQwkYBVP0EUEi73llltk8ODBTFWcgXPGLpEACZAACZAACZBALAIUT2IR4vckQAIkQAIkEAcBO/FE/w3V0G0nDpjclARIgARIgARIgAQyhADFkwyZCHaDBEiABEiABEiABEiABEiABEiABEggMwlQPMnMeWGvSIAESIAESIAESIAESIAESIAESIAEMoQAxZMMmQh2gwRIgARIgARIgARIgARIgARIgARIIDMJUDzJzHlhr0iABEiABEiABEiABEiABEiABEiABDKEAMWTDJkIdoMESIAESCA7CUycOFEuvfTS7BwcR0UCJEACJEACJEACOUKA4kmOTDSHSQIkQAIkUDcETj75ZPnggw/qpnG2SgIkQAIkQAIkQAIk4AkBiieeYGQlJEACJEACJGBPgOIJjwwSIAESIAESIAESqP8EKJ7U/znkCEiABEiABDKYAMWTDJ4cdo0ESIAESIAESIAEXBKgeOISFDcjARIgARIggUQIUDxJhBr3IQESIAESIAESIIHMIkDxJLPmg70hARIgARKoJwT2798vBw8elAMHDkhZWZn6mH/Xf1u0aJH069dPSkpKwp8GDRrY/h9/ZyEBEiABEiABEiABEsg8AhRPMm9O2CMSIAESIIEMIbB9+3ZZt26drF+/Xv3Un4YNG8qaNWukuLhYzEKIVRSBYLJhwwZp3759WGCxE1m06NKpUye1XYcOHaRjx44Rn+bNm2cIFXaDBEggUwgcddRRmdIV9oME6pTA3Llz67R9Np4bBCie5MY8c5QkQAIkQAJRCEC8WLBggSxfvlyJIlokgRgCEcNOzPD7/a6YvvvuuzJ27FhX2wYCAVm7dm0tsQb9gZWL7kvnzp3l0EMPlf79+ysLFhYSIIHcJEDxJDfnnaOuTYDiCY+KdBCgeJIOymyDBEiABEggowhosQSCCT6wLIEQcdhhh0UIJV4IE/GIJ9Egoc/aCmbjxo2yePFi1fdDDjlE9V1/vOhzRk0WO0MCJOBIQIsnXDjyIMlVAjwHcnXm62bcFE/qhjtbJQESIAESSCMBJ7FECw49evRIWW+8Ek+cOrh06VIlougPxZSUTSUrJoGMI8CFY8ZNCTuUZgI8B9IMPMebo3iS4wcAh08CJEAC2Upg9+7d8tFHHwnEhZkzZ0ZYZ6RSLLHyTLV4Ym3PKqYMGzZMWdSMHDlSmjRpkq3TzXGRQE4S4MIxJ6edgzYR4DnAwyGdBCiepJM22yIBEiABEkg5gQ8//FDwWbZsmRIMTjnlFBUfpK5KusUT6zjBYerUqUpI6tWrl2KCDwsJkED9J8CFY/2fQ44gOQI8B5Ljx73jI0DxJD5e3JoESIAESCADCcyePVsJJtOnT1fCwKhRo2TQoEFp7Wl1dbVUVVWJ/ql/R98GDx4seXl5kp+frz76d/xMZ0FfIKJMmzatzjilc7xsiwSynQAXjtk+wxxfLAI8B2IR4vdeEqB44iVN1kUCJEACJJA2AkuWLFGCibaogGBy0kknpaR9pA/ev39/+LNv3z4lgOzcuTMsliD7jlkY0b9v27ZNWrZsWUtUgbiC7Dp6u2bNmqltGjVqJEiFrD+pCgCrLXTg5gN2J598sqTTnSklE8VKSSDHCHDhmGMTzuHWIsBzgAdFOglQPEknbbZFAiRAAiSQNIE5c+bICy+8IK1atfI8lgcCy+7atUv27t0rEEi0YFJYWBghaGiBAwKKtiLx+Xy2Y4vmtmMYRthaBcIJ2jO3i/9XVFRECCqNGzcWCC1eiSp79uxRIhREFAg9F110kQwcODDpeWIFJEACqSfAhWPqGbOFzCbAcyCz5yfbekfxJNtmlOMhARIggSwl8OmnnyrRpLS0VC688EIVADbZArFkx44dsn37dvVBadeunbIGMVuAJONek2zME4gqZkEFFisbNmwQiDUtWrQIf7wQU+bPny+TJk1S7UFEOe6445JFzP1JgARSSIALxxTCZdX1ggDPgXoxTVnTSYonWTOVHAgJkAAJZCeBKVOmqAV99+7dlWiSjGuJnVjSvHnzsADRoEEDzyEmK544dQhj0aIPfnoppsAKBcxXrVqlRBQE3WUhARLIPAJcOGbenLBH6SWQi+fAwYMH5c477xTEMdMF2fTuu+8+9azEEh+B119/XR5//HG1E2LUTZgwQYqLi20roXgSH1tuTQIkQAIkkCYCr732mrI0wY0MC/gOHTok1DJcX9avXy9IXQx3nFSLJdZOpko8sbZjFVNgoYMPuCUqCq1bt06JKHPnzlXC1dlnn53QHHAnEiCB1BDIxYVjakiy1vpKIJPPgc0Hy+X7XXsU2t5Nm0jr4iJPMGvxBIHxx40bp+qEAAC35mgLf08az7JKwAzCyV//+lflEv3www+rEV533XUUT7JsrjkcEiABEshKAm+++ab8+9//lrFjx6oFO25m8ZbKykolmOCDmCEQEPBBENZ0l3SJJ9ZxQTSC+AEGRUVFYQYFBQVxI4BlC4QsWAFdffXVcuaZZ8ZdB3cgARLwnkAmLxy9Hy1rJIHaBDL1HPhi63Z5ZtkqMUJd9ovIT3p2k0Et43+msY7aTjyxigBaULGzqPjhhx/kpptuEsQ8Qzn99NPDYgFEmI8//lj9ffHixernPffcIzNmzJB33nkn/H+njIYIpH/jjTfK2rVr1bZmSw7rd6gX9aA/f/7zn1Xw+meeeaZWn6LVaR6L2fpG74MMjHgZh2JnmQOxpFOnTmERyo6jmT8tT3gVIgESIAESyAgCsG7429/+phbmZ511llrwx1sQCwSCAW6aWjBJRHyJt91o29eVeGLuE3hoMQmWN2DTvn37uIeJrENvvfWWYEy//vWvZcCAAXHXwR1IgAS8I5CpC0fvRsiaSCA6gUw9B/7w9beyqexgROc7NiyRCf37JD2lTpYna9asiRBB3n777QiLCi0S4EXIoYceqlx8tPhwyy23KCED4slzzz0XFhq0S4sWOmJZuFjFCFivnnrqqWrMEFXOOOMMJVSg3UceeUTuuOMOFXsOYs7w4cNV/7Xwce2116o+xapTbwfhA/2ESIJnHbSHOHZO1jh2HLWQc/vtt9u6QFE8SfrwZQUkQAIkQALJEMCbD4gmcDvBgrxt27ZxVQd3HDww4IObZMeOHaV169Zx1ZHKjTNBPDGPb/PmzUpI2bRpk3rbcsghhyj3nngKRCrMGd7yYM4QXJeFBEgg/QQydeGYfhJsMVcJZOI5UB4IyHVffB22OtFzU5KXJw8dc2TSU2UX8wSVagsSJ8sUCB9WIcG6rVUcsVpiRLPM0HXhGczq9mLdT28LIQUvuWB5ogUL83f9+vVT8V3iqROCy4gRI5R4ooUVO+jmdrQlDcWTpA9PVkACJEACJJAqAnAFefnll9UC/Pjjj4+rGbiSLF++XLnldOvWTVlSOKULjqtijzfONPFEDy8QCMjGjRtlxYoVysoHb6CQvSee8sknnygRBe5V559/fjy7clsSIAEPCGTiwtGDYbEKEnBNIFPPgXRbnphFEFh6WAPKAqh2ocHv1u8hMkDISEY8Qb1WFxtdL8QTWLdYCyxFooknEDWi1WkVhLSVSjziiTl2DMUT16ceNyQBEiABEkgXAdxEH3roITnxxBPlJz/5SVzNwnICoonf71dmp61atYpr/3RvnKniiZnDli1blAmtYRiKabyWO0888YQglfQNN9xAV550H2BsL6cJZOrCMdqk7Nq1S71hnjVrlvTs2VOZ2Xfp0kWw+HvwwQfl1VdfVbv/9Kc/VTGWEim4Jv3zn/9Uu+KNtnYbSKQuL/dBOnh9zzOP3cs26mtdyO6GxfVll10W13xl6jmQ7pgnmHcICbDCHT9+vBJHIIZYY5NYrUO8tDyxHntmIQICiJ3lC/axChZ2FiG6bmud5mCv5rG4EU9QJ2Oe1NdNrYbHAAAgAElEQVQrBvtNAiRAAjlAAC42EE0QO+P666+Py0UHriYQTZA5Bgv8uo5l4na66oN4oscCv2MwxgMILFHiyXAEKxYsfODKg7lt3LixW0TcjgRIIEECiSwczQt4a7MIqt2/f38VsBuLD6d0nQl2V+2W6eIJAo4/+uij8vzzz4eHef/998tJJ52UzLDVvnUlnkCQQiB23H979+4dMQ58d/fdd6vr9wknnBDx3RdffCE///nP5bHHHpMhQ4aE5w4bQZRq2rRp0kx0BdkmnmBc6cy2YyeCmGOe4HvMNc5tHM/a2kJbdehYJMlYnug2zjnnHHXtMAsdOgaJbgd88CINJZbbDvrtpk67mCfR3HZ0H5htx7PTmBWRAAmQAAl4RWDatGkydepUdeOOx0Vn9erVakGPGy9Ek/q2KK9P4omea8ShwUMPHqrAHLFR3Ba48rz//vsyZswYtfhiIQESSB0Br8UTc09/9KMfqbgFJSUlng7ASTzxspFkLE8g1N96662yaNGicJew4Lv55ps9Z+HlmKPV9d133ylRGx+zFU55eblyvYT77BVXXCE/+9nPJC8vL1wVBKSPPvpI7rrrLhVTTM8dxZN0zZx9O04xT7SLjN5LB3vV/7dzocELD3wQrN8Ltx1YcuisPGhXB5rF71b3G8RcQ4pgvLhxinmiA8Y61Rkr204s8QT9MnMyZweyo8+AsXV77LN1EiABEvCEgL7wm9PN4SaFKOa/+tWvwlHHzTcRu6BfVvNFTzonom6OeEjDA6nbsnXrVvnmm2+UWw4W8F4/wLvtR7Lb1UfxRI8ZQXwREwVzcfjhh0vLli1d48CDEN5iI56Nl0U/fMGKyZx2UJsrmyP161SJuv1YD0Ve9pN1kUA6CCQrnhx77LFhC4KqqiqZOXOmOq9gSYbz94EHHlBxErwsmS6eQPyFW5G5QEAGlx49eniJIm114br5+9//Xrp27Sq//OUvRaesx7UdY4WVAD74Xb+ggIUo5h9iClwyU2GFZAaQjZYnaZtgNpQ2AhRP0oaaDZEACZBA6ghoM8t9+/YpsQQuF2bxBP+3CiP4P+JU6AWoNTWcF71FRpff/va3ctFFF7n2YUYAWIgmeJDHgh1uOvW51GfxRHPfv3+/mpPCwkI1J/rBO9a8YOwvvfSSMhGON46KU936uG7Tpo1a3OmI/nbiiZs3TrHGwO9JIJMJeCmeYJw41//yl7+odOQo5nghiKWA82zx4sWybNkygYCJgmsC3D3OPvvsWu6UWIDjjTE+sORA5ozjjjtOPv/8c/V/a9wPJ4sRXH/QJ1ghLl26VPUT53/fvn2VOw1eHJgF9kQtT9BfjB/uDhCLkUkMi3oUCMEXX3xxODA5gpbD3eXjjz9W30OUuOSSSyQ/P1+5puIeC4sO83fr1q1TcT0wBrNwhW0gKiGFLOr79ttv1Rhh7QFmI0eOVIxxDTaLT9jvySeflCOPjJ7BRbsirVy5Uv70pz+F5wluRP/4xz9U0O9//etf6jstEEFAu+2225S1KFwmUHRcGvyuBRXdH7h7oY8IBA8LRNy7YbEDJpgrc8F1HNu99957SqiDQDdw4ED1/2uuucb18wLqTOQcyORzmn3LbAIUTzJ7ftg7EiABEnBFQC8c8XYMD7j67bu2PIF4Yl5c4gEID0p4uMEDIkw1Yfr4yCOPKGsVL+KJ4O0dTH6xcMYDoJuCB2NYOuBh3O0+buqty22yQTzR/JCiGIsYWALhmHJTYAIPAe3yyy+X0aNHu9kl6jZaPLn00ktl4sSJYbGQ4knSaFlBPSSQyMLRHHfDuoDfu3evEkw+/PBDRUPHusDv0WKl4Hss4BGkEpnPUCAuQJzXddnhdSue2FmDmOsbNWqUWujD/QAlUfEEotBNN92k7qOoE6KFzhCCAOew3tBtoB2IEbhnQgjCvRTs4GbwxhtvqN9RzH3T1hVW8QR/BzswtivmeUpEPEGdYIiYJ+a4J4glgTHj+oz2kTVNxz2ZN2+ecvPBc4EWZ6KJJ2AB0UiLanocv/jFL1QQWO0OZBWdrOONN8BvIudAPTzV2eUMIUDxJEMmgt0gARIggWQI6IUjHlDMrjpm8cQsjsC/9MUXX1SxR/CABLEFbjxOkdDj7RvexiH97Y033uhqV+2ig4fuXr16udqnvmyUTeKJZg7/ebwtPOKII1y78kBEq66ult/97ndJTZ3ZomrhwoVhsZDiSVJYuXM9JZDIwtFJPMHCd/LkySoGBqweIBZAkNBiOs43fA+xHe4fyHgGkQHbw5IE5Y9//KOyAkHmrv/973/K7QMFwUZxP8B+27ZtUyLE7NmzXVuewCIDbSFeB+4TSLUOCxi4hOrYJBBMYL2QqHiCPkPwx3hQYFlxyimnyB/+8Af58ssvHd2Y0DfEBAEziAywwMHLCVwjYTWC+zDGjWInnpSWlirrEViAoMBSA5mGYEmDOYFg/dlnn6ksPQjQmqh4ooUhbdmhhZDDDjtMxbtAkFxYtui4J2AB61SIGTqrXTTxBPOBPsLaBAITxo/5xxjAB8cR7gEIXAurE2RSwrEE6x5YxiA4LYLW0vKknl6McqTbFE9yZKI5TBIggewmYF442gkpVjceLEARDwIBPfFw85vf/EaeffZZFRgUDzOJFgR3hZUBHvzcZCZAHBQ8+GaLi47mhgd7jAmf6dOnq0UITLnxwYIjGwrioWAxBRceWArhoTtWwRvo//znP8oaCYHiEinWWD5aIDQLKdagdLodxjxJhDj3yWQCyYonTmPDNQtihxsLQLjkQGBA0emFdYwNxFBBMWeriRbzJB6LEYgdWIjjg2K2WIinHs3A3Gcd46Rbt26qfly3UK666iq1uDcHVcV1/rnnnlPig7mAHcQkPUf4zk48gUiig7ZiGwhNcA+CqAFhBfcNL4q2KoLLI1yM9DzAMgTXcFimwGUIcU/QJp4N4G5jjpESy23Hmloali2vvPJKOB21jrEC60W8tDHfNxjzxItZZh2pJkDxJNWEWT8JkAAJpIGA9a07FpRWtwZ0Q8c9wRu8YcOGqbdieNNz1llnyaRJk5RwApPjRMoHH3yg3jTiIRmZcWIVuHPA/xsPqW4e0GPVl47v8XYMcWXwhlF/8DeIQFoswZs1PNRrsQRv3fBwrL/3+XzqwVt/jyB8+B0PqXgDh5/4uI0rko5xR2sDbxdxPEEM0eb60bbHW2cIbDg+3Qhs1rqssXycXNaw8GPMk7o+Oth+qgmkQjzBwvbee+8NW0uYx7BlyxZlBTF37lzllmOOfYLttHhiFgms9SUinuCaCnEeYgzahmuIjn2i+5eseAJLGLxIwLUdcT6QXQfXYvPfEddDZ54xc8F1HlYwuB7pgrouuOCCcIwU/N3JbQeiBaxx0La5oH0IWbBGSTZYLRjCwmXBggUqtgl4wtpFW5bAohB/xwf3Imu8E/QrXvEEggxezCDjSpcuXcLjh5WsOeuPmY3dd9HOo0TOgVSfl6w/ewlQPMneueXISIAEcoiAWTzBsO0CyOq/4wEJD2R4QIEZLbbFghYPdXjYSyTeCYQXCAhIdeimwEoAIsOAAQPcbF4n2+DhHAt1/NSCCR4+zQIHOEIYMYsh+N38VtLqtoNx42MWW/DgjYdmszADCxUtpODtI+YFPzO1wP1LW6G46SPeDCOrAxYX8RSreGIXQDYVwY/j6SO3JYF0EUhk4WjntgOLAMT2QNwKFGuaYlz7kGoewVStMS3MY7UTT6xxTeIVT3CtxD0G1h9WccHcdjLiCa7JEBKefvrpmFNntqLRG9uJJ+YAsno7J/EEY0RKYIzTnCJZ74cXHYhJEk/aeLuBIJAr3GoR90QH/kUgXLjZasubc889V91rYIGCsfbu3TtcFcWTmIcHN8hyAhRPsnyCOTwSIIHcIGAVT5zSuSLuCYLhIa7IhAkTVOpBxDrBQ3OiLg0wVcYi/8orr4wJG64e8GvGm8hkHwJjNhbnBlgQ4E2q/mBMMG+GOKIFEzeuKRHN7jsoGyZ+IO2kSMT4/1EMOzQX34g+IqWxMwhBjNLWLeCGN774CaueFi1aqE+miSl4k4mAvzA7d5NaGoshZFeChYjbYhVPsJ81VTfFE7c0uV19J+CVeIJrCeKZwEJACxRwq4D7CMRgnXkFVgsIjApXD2TNgQAKq0Od2leLJ9o9A/cXFHM8knjFEwj+CFwKkR+xQxCLBGICrsuwpPjnP/+p2khGPIEl5K233morXFiPEWSeMafudXLbwT0E1hvmQNlO4oluAyIVRHQE5wY7xAYBexTMDWKwJFN0+xDHvv/+e+UapDPp6Iw8uM8hZslXX30VkZkH7SYrnujjaOjQoSo+CiwxdaHbTjIzy33TRYDiSbpIsx0SIAESSCEBq3iiF5Tww9apiPE3vaiE6bFO8ar/hiBv8cY7gXkv6oLbT6yCGCsw8cbCOhPSD2PRjlTKmzdvVoIJHnS1KIGfSfuZz10pxoff1MZSWCC+a08WKYrfjx0Ptwj2qwUeLHLQV4g8bdu2dRV3JNY8Jfs9+gSBDA/lHTt2jFnda6+9JlgcYZHhptiJJ9bjmjFP3JDkNtlAwCvxBIFIsTBGZhUEE0cxx+wwL/phSaJT2sLiAjEtYMmAosUTvRBH0FEUWDP8/Oc/V4IHLCsgBMDtxk22HbOlDAQbiBy45u3Zs0cJJ7q/yYgn06ZNU+6EKLgXwmXHLACjD7/61a+UsAQBBxY4iCUGscMsOiGOGIKvwmLDbcBYvMSAuIT4KniJgWs6LA/h1goX3K+//lrdn3TWm0QDxmJsOhU17iF4YYBxIt6JLnCzQaYgtIf+6OCx+vtkxROdChrCEF7kQERBgcUTnlcQP4fZdrLhypS9Y6B4kr1zy5GRAAmQQFIE8LCIBxlYpZjdUHSlMPWF2DJ8+PCY7eDhDw+DEFrquuhYK3hwxEMw3rB5IpaYB7a/XIzHpgStTWyK7/8Gi/RomzQKvPHEQzAWEXj4xAKoQ4cO6lPXRafc1Ckuo/UHQXXh3qQzc5i3hTk9Flo41vr27VvXw2L7JJBRBLwUTzAwWLjBKlFbjOhsMRBSzMKKEwQtnugFsU7j67S9G/EEYijijOA6Ea0kKp7oBf3bb7+tqsf4kTHHXHCNhWCk+wDLE1jl4IWAdnfC/QTXKlhWQoRAPSgQVCD44D5jZ3kC8QSxxxBc1alceOGFSnyCoJOMeIL6IWihPcQ3M2fSwXfmVM12Ikay4gnaQMwaBBjWFjV6zBDbMdfgaY2HEm3eEzkHMuokZmfqFQGKJ/VquthZEiABEkgfAbw5hCk2HtbwEGgWUH784x+rTAzmN1Z2PUN0f6R4hM90XS7osSCAaAJTaAQ1xUOaTr2YEqJrtonxwoz/n7gzZJKsRJSQkuLziW9oT5HjvU/JbB6nFlFSOs4Y8PDmdMmSJXLMMceoN87RCsQWLM6eeuqp8GYQTuDnj8UNHuTrSxDdlBxTrJQEbAgksnB0SlWsq7cubnX8E1jrYeH93nvvqYUvXH3wHUQBWGKgmMUT/B/nP87pWbNmKWu+Y489VqUynjhxoro3uBFPUA+sBOHmBwsRCN8Qcy6//HJlOajjlCQqnsCdFRYYEKCt/dFMrGmMEcQVrktwW0WwV1hqYNE/ZswY5YqCaxYCtL/88suqCgR8hfiBexC2g9UNWKDPcH1CzCjEPIErDVITo2CMmF9YsiA+mM7Ulqx4oq1oTjvtNNHxTvQ4ddwTXLthtWoNUuuFeAKWEOdwXCAYLwQ6HBP4CYGKAWNjX+owD7g3gp8ueBFktjSOXQu3MBPAdQDPIBB8o8X+o3jC44YESIAESMCRgFVAgaXDeeedJ4899lhMlwws5BEDAwIL3qylu6DveMtXJxYZW3aL8dTHIiZ/7ojxFxeI76eJue644YiHU4hF+OCNKbIc4FMX4gMWETDTR/uxhBxk7YE7GRYcGAPeNlM4cTPj3CZXCSQinuQqK447Owlk8jlglG+V6r3LFPi8xj3FV9TSk0nQ4gmsh7S7tU4UoOPZedJQDlRidvNF1kBkzaJ4kgMTzyGSAAmQQKoIQITAzRguN/BJfumll9RbtmgF8U3wZhL+2+kuWGwvX75cveFD3A1YmsQd6DXZThuGGE9OF9m+R8Twhw1QwtUahvhO6icyuHuyLcXcH4FnMRd4AwxrFPjpuwnmGrPiODfAW2a0HysOCqyV8Db7oosuUtkg8HatLkSfOIfHzUmgTghk8sKxToCw0ZwjkKnnQPXOOVKx+oUaq1PxS2GXiyWvafJZBu3EE1jzPP744xGLfx1MHQeFOSmATh6AlysosPzRcfCwD6ypUHAPRoE72owZM5Qrt/4/hBu7Yo05Zm7X+h3qRT3oD6ywRo0aJc8880ytPkWr0zwWs/WN3mfkyJGC2Goo0SxzaHmSc5cODpgESIAEUkcAQUrh4w2T2lhZciBcIChduuOb4CEANz/0FT7nnTt3Th0QNzUfqBBj3kopm71ESiptdvCJ+K48UaRlYze1ebINLHHACBl7wAjm4uksMBdHmxBwohVYLP3+979XZu+I48JCAiRgTyBTF46cLxJIF4FMPQcOfnevGOVbIjD4StpL8WG/SRqNk+WJtt5EAxBBEMdHW1LgfornN1iqTJkyRT0D4F6sxQe4k0HIwH7mZANagNFCRywLF3M76AfSb+sYNnD31skJzGIFntsQQBgx9CDiWDPmxaoTGfvQdwhI6CdEEjznoD24v7mxxqF4kvRhyQpIgARIgAQ0AaRahJ87bi4o8Au3K3DPgF87UiGnq+CmC8EGDxN4EKjL2Cp2Y57zwjty1JrqmvgngUDInccn0q21+M49RsRfk64xHdzgzgNmyHqEB6hoJqpe9weZdQKBgGPwV1jIwLcf4heCNuK4YyEBEqB4wmOABOwIZKR4EiiXsoW3mqxOQj33F0vJEXcnPZF2MU9QqbYgcbJMgfBhFRKs21rFEatFi52Fix6Qrqt169ZhSxb9nXU/vS3EHDyDwPIEcfbwHGf+DrFwYIEaT50QUhCoGeKJFlZiQad4EosQvycBEiABEnBF4IILLpC///3v0rJl0FcXge7sBBQEGUTgQMS2SEeBOwoC62EhjjZxY83Egiwyp+1oIrJhZzBmrE/9U9PVdk3Fd+nxzvFRUjgoBFuElQeCASM2TbrcmxCHBm+WBg4cGDE6LZzoIIXoHyyedLrTFKJg1SRQLwlk5MKxXpJkp+srgUw9B9JteWIWQWDpYQ0oi/nVLjT43fo9RAYIGcmIJ6jX6mKj64V4AusWa4GlSDTxBEJItDqtgpC2UqF4Ul/PaPabBEiABOoxAdz0rr/++lqWJlYBZebMmSrtL8wj01GQThEuKFjwt22bfMrfVPYZ4snYYSPE+OeHIc2ktpWJ77whIl3rTvxBTBQIUd26dVOWKOkoiEkD4QYZJ1CswonuAyxV4MeNrBYsJEACkQQydeHIeSKBdBHI1HMg3TFPwBtCAlx3xo8fr8QRiCHW2CRW6xAvLU+sc65jmcCiBAKIneUL9jFvZ7U8sfbfWqc5zot5LBRP0nUGsh0SIAESIAFF4LbbblMpEpFm1q5oAQUuIIhvAv/SVBdk8MEiH0FHEQy2PhQlnowdK8bjU0X2HrTtsm9kP5FB3Wp9V20Y8u2uPbKp7KC0LSmWPk2bSL5TBh8PYCBNJkQNiFKxMuN40Jxs375dzSdEN7jqWNNi6jYgzk2ePFnF3GEhARKoIZCpC0fOEQmki0AmnwPpzLZjJ4KYY57g+1dffVU9j9x///1KVIG4oq06dCySZCxPdBvnnHOOyrJoFjp0DBLdDo4PWKOgxHLbQb/d1GkX84RuO+k6E9kOCZAACeQwAQQY69OnTzjIlxOK6dOnK9Ek1cFhzS46WNjXRbaYRA+HsHjy6Xcis+Dy5Au67+iCwLE2lidVhiF3L/hO1h8oE8MIGq20aVAoV/bsLg3z8qRVcVGiXYq634EDB5Sggdg16XDlQRBZPLydeOKJUfuFKP+I0wJLKBYSIIEggUxeOHKOSCAdBHLxHHCKeaJdZDR3c7Yd/M3OhQYZavDByzIv3HbgNqOz8qBNHWgWv1vdb3RqYMSuc4p5ApEnWp2xsu3EEk+sfUI/zdmHrMewzzDwSMZCAiRAAiRAAkECTz31lHpjgFSx0cpnn32mFtewBkFxCiKbLFe458BNpz646NiN9YX3p0iDvodLg4AhQxZtkkbfbogMIpefJ9+NGyDrivKkfYNiaV1SLAerq2X+9l3y7rqNgtu0z8bapF1JsfyiTw9pWVSYLGLb/bUrDyx8UpW5SLvqIJ7Ot99+K8cdd1zUsUycOFHFuLn88stTMmZWSgL1jUAuLhzr2xyxv6klwHMgtXxZeyQBiic8IkiABEiABMIE3nzzTeUv+8tf/jIqldmzZ0cEaXUKIpssWphgNmzYUHr37p1sVWnfH28m/vbtUvl+915zeFh5cO5WaXCgIqI/X7Uslv/0bi5i+AQ6ibI0CYVG0W84dKQUIxh1VgkwQ1u1lB/3SG2AXogaeMulH1C9AmkXHBbH3tFHHx21iYceekjFZcGbIRYSyHUCXDjm+hHA8fMc4DGQTgIUT9JJm22RAAmQQAYTQLacDz74QH73u99F7eWCBQuUqw7MLc3FSwFl165d8sUXX8iRRx6Z8QFhnWBp4UQZeCqtwycl1QF5aNbGWrtsL8qTWwe3DUkiQbnEJz4JKKuT4Ob4P4STGksUn8pwfG6XjnJi29aSl8JYKLBCWbhwoQwZMkRKS0uTPoqdgsNCPMHcH3HEEVHbuPvuu5VL2YABA5LuCysggfpMIBcXjrhGIAAl3EWvvvrq+jx9tn3Hywm4zuI6h+CZLNEJ5OI5wGOi7ghQPKk79myZBEiABDKGQFVVlXqTj6Cc0QoCiiIWhlNGFi8EFPivYrGOhTraysRSWVkp+/btk/3796tPRUWF+gmO1dXVsqM6IO8XNYnISAzRwy+GPD5jo/i1OUno58rGBXLvgFahoQbVEvwbMEQJJMraRFulhO1OIMgEK2iQly/tGzWQE9q2lAHNm0qh3+85NowZglaHDh1UVp5Ei5NwouuDixZcc2IFBD755JNl6tSpti5NifaN+5FAfSOQiwvHeMQTvS3mFTEVmjZtmtFTjPvHv//9bxUbAmna4ULLQvGEx0DmEKB4kjlzwZ6QAAmQQJ0RQBDOq666Svr16+fYh5UrVwqCifbt2zdqPxMVUCAufPXVV9K4ceOMctOBaICsMPhAIMHDOPraqFEj5VKED/oMoQefvLw8Wbh3vzy7ar3ipJ1sAiHR4+rvdsigbWURDMvzfPKvXs1lcfPi4PahnSLinQT1kxphRSDG+CJcfPBl08ICub1/H2lckBrhafHixUo4Gjx4cNzHayzhRFe4aNEixbdLF2eXJFhAPfvss+oNLQsJ5CoBiifRLU/qm3iCFwfIdHfJJZfISSedlKuHdVzjzsVzIC5A3NhTAhRPPMXJykiABEig/hH473//q9LEXnrppY6dR/raTZs2ycCBA10NMF4BBaIMTJWR4ad169au2kjVRrAiQeR3LZiUlZVJixYt1AdvLSGWFBZGD9KK1MK//3qRGEbQtQbCCWxBAmJIw6qA3DV7izSoDoQsR4KKyM5Cv9wypF1YbAkKL4Zy19G/R5iyhMQYOw7jOneQMR3apgqRChL83XffKQHFbeYjt8KJ7jTcyNq3b6/SGDuVZ555RglWWGiwkEAuEsjFhWM8lif17ZiYNm2a4J4Mlx1Y+bHEJpCL50BsKtwiVQQonqSKLOslARIggXpAwM3be4gIq1evdi2c6GG7FVBgnvz111/LiBEjlIhTVwUC0fr165XLCKxHtGCCFH6JlH8tWSHztu+McLlBPcM27ZdLl+2qEU5qIsHK84eWymftG4WbCwaHDcU7CQWRjfibyYUnGEI2KLYc26pFygPJwrz8448/VoFkY5nCxyucaADz5s1T1ieIseNU3FhNJTJ/3IcE6gOBRBaOuMZBnPzf//6nrP1QEKh57NixMnToUOUqgiDRDz74oPruggsukDfeeEOwsIfQfcYZZyixHVmyzAWZ0Z5//nmZNWuWcr2EuHrllVcKUo2aM4bBog7p0F988UW1Ldwdjz32WLWt1V0P4jXafuWVVwT1wzoSWbk+//xz9TNWzBPzOLQbTLSxwR0QdVrHZncsaBEHmeDwYkHzxD3jRz/6kZx77rlKaEa6WLDbs2ePGufPf/5z6dSpU60qIdwjJSsE6Z/97GfqPoTiZr7qw7Gaqj4mcg6kqi+sN/sJUDzJ/jnmCEmABEjAkcApp5yi4pw4iRZYICOuBIJzJlJiCSiwZkGMk2HDhiVSfdL7bN26VQkm+MDCAW/62rRpk3S9qACyx9I9e+WNOfNlXYNGUhGA3YnIxct3yvAN+2tkD1Og161FeXL7YN1+UFXp37xUzunSUZbu3itLd++Tudt2KEsWFe7EF7JFgUtPyGYF1RX5/XJ0q+byf507SsP84AN4qgoWMT169HDklqhwovv77rvvymmnneYY2wRuVWeeeaa8//77qRoi6yWBjCWQyMJxypQpctdddyk3RGt58sknVaBuLTBMnz5dysvLa2174oknKveSZs2aqSogxvzhD39Qoom5wFIP240ePVr9GcIJ7jn33HNPrTpxDUZcErSPAuEEYsLLL79sy/+nP/1pUuLJJ598ourdtm1bRP3nnHOOq3gjWjyBAGRXIBrBQs/KedSoUYqJVZjHvfDWW2+VG2+8McIt0s18ZewBmoaOJXIOpKFbbCJLCVA8ydKJ5bBIgARIIBaBm266Sb1RjOaKM3PmTOnVq1fUN/+x2nESUGDNAvECD5jpLnhIxRtBiEYQTPAxvxn1sj9q8T92rDz3w2qZsWW7nLVil4xZuzfUhFY/alr8zTHtZF9h0AJnYItmMv6wyOCsDy9eJot37QnZpKjlSNiBR439CXIAACAASURBVBux6NqGt2klF3ev/YbTy/GhLry9huhkfZuarHCCumH5hGMIb2ydCtp/7bXX1IKMhQRyiUC8C0cs5P/yl7+owNawxICFHSw/IHpA1ECgblhSaPEEosj5558vY8aMUYt9xDuCdQmCmsIy5YQTTlDXcQgnuIZee+21ynoEVhMQpf/xj38o8eX3v/+92h/X3ptvvlltM378eOnYsaOaLgQjf+yxx5Sl2XXXXadcI2Fxcueddyorl4svvlhatWql+orrAcaQrOUJxgsLEYwPde/du1f1Yf78+XLvvfdK165dox5KWjxBHKif/OQnyiIH8a+WL1+uRCDEbkIgdnyHcUIMeuSRR5TFHlKu9+7dO6J+jPejjz6SP/3pT2FRyu185dIxbx1rvOdALrPi2JMnQPEkeYasgQRIgATqHYEXXnhBmV/joc6peLHw1XVbBRTUDRNlPKSnq+ChGw+1eHhHthikgIwVu8SLvkE8gTk8SnkgIJO+/FYu+2yl+HUEWUsjq47vKcu7NJNOjRpIzyaNQxFPajb6atsO+c/SleoPypYlFEVWZeUJB5oNWqSUFhXI/YOip/31YoyoA6mMYW4OKxQUL48fN3VhMQf3ofPOO8+rIbEeEsh4AvEuHLGAf+CBB2Tz5s1KxLCmnNcDtnN30d9BLEGqYAjv11xzjXz55ZdKPEHwZmvQcbje3XLLLWGx4NVXX5W33nrLNqbHO++8o0RQWMVAaIFAgvuUFl50+/HEPInltmPNaIOMYnCr0RY40Q4Ap35AmIJohCDrd9xxhxJUdAEPuAVZ64dwA8EF90QIRVrMdztfGX+gprCD8Z4DKewKq84BAhRPcmCSOUQSIAESMBOAGfFzzz2nHlCdipu3/fFS1QIKHmbNi+x464l3e7QH0WTdunUqxTJEk1RZmdj1zSye4PuPNm6RLxf+IOO/2yHNy6uDhiMowaAlIkMOFd+IPlGHuXDnbhVPZc2+Mll34EBo21B8FMMnRihdj08MOb9TBzmpo3PQ1Xh5Rttei2IQpWDVo4UUL9pwYwWFRdoVV1whPXv29KJJ1kECGU8gkYWj2cUGi3VYF8J1csCAASrLFUo08UQv6GFdAvEBrj0QU6IVLRY88cQT8s9//tNxU5y7sCCDEIo6+/fvX8s1J5XiCaxO8FIhGfEEg8M4EVPMmh7ZqX5YqUCAwvZWixQ385XxB2oKO5jIOZDC7qSlapyfsMpCoH1dIDjed9996hmHxT2BOXPmKIFXF8RqmjBhgmOacIon7tlySxIgARLICgIwgcYNNloWk1hxJhIFAfcKxKhAUMJ0FAhFyJwDt5xoaW9T2RereFJlGPLO2g2yc8l6+fE8xAeIdLbxDe0pcnwvV12CJct1X36tLE4QSyAYBCX4E//1hX4/vChfTu3RXQ5tUhOM1lUDCWw0Y8YMKSoq8twdy038HQhkWHAhCw8LCeQCgUQXjrgu4nqMYN0I3gq3GcQagaUErFGiiSfalaRBgwby61//WgVDpXgSmTI5HvEE126INbh+wRrILoNZrPnKhWPdaYyJngPpYGbs3iqBDctVU/4OPcTXJDLIcqJ90OIJ3J7HjRunqkFgYggB0Rb+ibaXzfuBG655YKm5Iusj3AftCsWTbD4aODYSIAESsBBAdgNE/I+WoQAm2HBrgQ+4lwV+4VhUYxGMkkrrAGTOwYJAW5p4OY5467KKJ+H995eL8fcptavr0VZ8/zfYdTOvrFonU9dvFgSK1dFPdGrkoIBSY9xyVbuWMrhrZ9d1x7uhdq+BZQ9EMusb1Hjrs26PODXIuIE3Q07lX//6l4rRg1gGLCSQ7QS8WDhi8Y432HCPueyyy5TbSDTxBOcg3tQinge2hasLXGwgyseyNoPbDoKQw8Ii2j1Gu7GUlpbWCt6abZYnOmYMArifffbZMQ9Zu/mKuVMWb+DFOZAKPIHlc6XykxdDJqV4p+GXghEXir9bMCByMsVOPIFw8vjjjyv3OR3IGcIA/oZitqiA+zLi3uF5EAXnshYLsA/i8qDguQ0F1mB4MQLXOv1/p3h1yKCIoMdr166t1a71O9SLetAfXBMQTFm//DD3KVqd5rGYrW/0PiNHjlTugChuLHNiiVAUT5I5crkvCZAACdQjAgj0d8kll6ggfE4FNyHEIvF60WutN1YWnkSxwj8esTfgNgJz9IKCgkSr8mw/R/FkzTYxXphZu53WTcR3xYi42v9s8zZ5ceXacEYf2LJoLyBTJmQ5xGfIKf5qxQZvjb0s1rgkeOhCylMIcV4WN/UicONLL71k+wbXy76wLhKoawLxLhwhPEycOFEFW8V1HucoUuHimvzHP/4xLIho8WT37t1qUdW2bVvl7qiDwMIlBQuRPn36hAPG4rp71VVXqWCwuPZCQEVgcIgrCCyLt7s6YGzfvn1VamJYBebn5yuxBu6VsIZBthtk6UEcI8TngnULMr6hfgjjSFuMxRCsKJNNVWyNeVIXbjsQruDKBDcM8DAXt/OFfZBxDBZAbrIQ1fVx62X78Z4DXrYdra6KV+4TWJ6Yi695eykc9+uku+BkebJmzZoIEeTtt98OiynIXIWg7rBUQQYn/XJJiw8QRCFkQDyAa7cWGrQAo4WOWOKCuR0MdNKkSeGMjRBVcH9GH9AuAijD2g2WVRBzhg8frvqvhQ8EoEafYtWpt4OAhH6i73iJgvZgZR2PNQ7aQqHlSdKHKSsgARIggfpNAA9muDHhIdau4CENC+BjjjnG04HiYRsWA/CnNxevBRTciPGgfsQRR0jLlt6YxnoBwlE8qQqI8ffJIuVVkc0M6ia+kf3ibnrdgTK5d8ESqTCqQ8KJIT6470BIUamMRRrk58lt3Tooq5zOnTsn7Bsd2L9CqnfMlUDlbvE36Cird7UVI69hrbfOCI6IRVf79u3jHk+0HbAYw8IPb6XtCtwIsA3SfrKQQDYTiHfhGC29LoK94j6BBZYWT2ApYld++ctfKjEewgeKU6pifKfjmMB1MlqqYmyLrFo6TogOuIp4IOaCawrirlx44YX1XjyBwPToo48qi0ydZcg8VrfzhX0onszNnFO9slzKJ04IRXE3daugWIouuzPpftrFPEGl2lrDyTIFwodVSLBuaxVHrBYtdhYuekDR3F6s++ltIaTAUgbnPcQ/xGwxf6evS3auNE51QnAZMWKEEk+0sOIGerSx6f1peeKGJLchARIggXpOAH7tUP/vv/9+x5Eg6B/MOvHGz6uybds29TYR6S/tihcCCh4+sVDGAz8EgUwrjuIJOrp4vRiT54tUVAX9a1o1Ed/5x4o0LEpoGJWGIb+YNU9l4QlanNTEU1G/GYac0bmDnNaxnaxZtUr52GNu9ALI2qhRuUsEn0CFVJdtlOrdiyRwcINIVTBIbSi6igR8JZLfuLv4C0olr/lR4m9YY20ya9YstXhCSlSvCqyo8JCDhyOngocmuCAg4CQLCWQrgXjFE1iZQCSH+T2um3DBgagBSxSk7NVCpxZPIHzj/EUKXe0yB5c4CPHW6wasQuAa+vnnn6tt8cYXYv3JJ5+ssvDo7SGgLFu2TG0LN1GkSUYfYLKPbWGthoDTKOjrU089JbiOwM0Hi0Oc93BNsAsma53neLPtpNvyBC8XIPL+7Gc/s71Pup0vjJviSQaJJyKSbssTswgCSy1rQFkcI9p1B79bv4fIACEjGfEE9VpdbHS91sCs+lyFpUg08QRCSLQ6rYKQtlKJVzwxW61EC7pL8SRb76YcFwmQAAmYCGARee+99zpaAKTCXQc+67A8cLJ00d1LRkDBQzfcdCAAOFkh1PWBEE08MT79TmTm0qBwAinC7xffj44V6ZK45czNcxbKzoqK0LCDAU9U9aZyRY8uMqRVC8FbTSygECgSb3PDpWq/lK98UgL7V4USIsOGxVKJUk8CocojvyvqeZ34G9QIWfCfxgOQzuThxZzEct+BvzViODz99NNeNMc6SCAjCcQrnrgdRLSYJ27r4HaxCUDwgGsFXKa8jjMWu/Xs2CJV50CydNId8wT9hZAA153x48crcQRiiDU2idU6xEvLEyszHcsEFiUQQOwsX7CPeTur5Ym1/9Y6zXFezGOJRzxxK5ygrxRPkj0zuD8JkAAJZDgBxH7AIvmaa66x7SksN+DmMHr0aM9GUl5eLniD59YFKBEBBabcaEc/OHnWeY8rchRPKqvF+Nu7NdFcdbslheL71ZiEezF5/SZ5bfW64P6GL0I4MZRFCv7mk/YlxcoCZVDLZsqKA7EP8HYYpXLDO1K15SNL5BQdjlZVHPoOoWlDEVa0f5CI5DcfLAWdLowYA0SagQMHqrgFXpXJkyert9VOljP/+Mc/BKa+iKHAQgLZSCBVC0eKJ6k/WuB6hEC7HTt2VOmRcV1miZ9Aqs6B+HtSe490ZtuxE0HMMU/wPdzwxo4dq6yQdaYebdWhY5EkY3mi28A9F88UZqFDxyDR7YAWnj1QYrntoN9u6rSLeRLLbceNq455ZimeeHFmsA4SIAESyFACSCl50UUXyZtvvunYw1TEpUjE0sCtgAIz5k8//VSZeddV+uF4pttRPNmyW4ynP7GtynfVSSItEksrDA3jkcXLZPGuPSpdscpebJI7zBIIGu/ftFiuarRQqrbPE58PmZAsKXrCPdR72okoWlDBz+ACIK/ZQCnsfBESNKr/u7VEioetUzwdcx0w80eASTzIsZBAthFI1cKR4knqjxS4LsE67rbbbgsL16lvNftaSNU5kMmknGKeaBcZ3Xdzth38zc6FBhlq8DnzzDM9cduB24zOyoM2daBZ/G51v0EQabjgIWCsU8wTHTDWqc5Y2XZiiSfW/qKf5qw91uOA4kkmnxnsGwmQAAkkSQA3I/iyO8WGiBWTJJHmEYwUN55E4o/EElDwpg6xWeBv76ULSCLjdLtPVMuTB9+1rUalKu5hcqNx21hou083b5Xnf1ijxBOVqjikd5T6yqSXf6OU+MtlU1WpdM3fJkflr5JWsrdGNFF1YAcUa84e/V3o70ZImQlbokR2tLDL5ZLXtCbmCOIgIF6JtnCJc1i2m8eKqYJYDchmgUwCLCSQbQRStXCkeJJtR0r2jidV50D2EuPIkiFA8SQZetyXBEiABDKYAALtPfPMM0r1dypeB4lFDBIEDUzGlcZJQIHrETI6jBw5MmOowwoGiwy4D+Fj9/uePXuUmFRUVKSsH/BT/95i8hLJ37Q7mA5HixXQI647VaQo8TTLZdXVcuvcb+RAVXVYQDnEv01+WfShFGrrErM4EhZB7NDC2Ufbk0A0gauOP6jIKCMTO4ElWE9+65OkoP3pEZXCRBZm6hExVpKYUTfBY3/7298qH3CkZmQhgWwiwIVjNs0mx5IIAZ4DiVDjPokSoHiSKDnuRwIkQAIZTuCOO+5Q8SBgeWJXvA4SW1FRIXDXOeWUU5ImYxVQNm/erLIzOI0l6QZdVgCxBH3BB+OF5Y5VEDGLI/gdmSfQbztxpfWynXLImrKI1ivaNJKCy0aEs0247Fqtzd5dt1HeWr1BWvn3yND8ZTIwb7WU+g6YEvBo/3rkMdYWJOZqgvmN/cWtlEByoCJPqvOaSfPOw6Vq13yp3v6FKZuPyZWnWsS3R0T2+8Tvaye+gubiK20leb2GiK+0pQQ2rpCln0+V7h3aiL9BqfjadBF/u+6JDlPtFyt47CeffKJcvZCikYUEsokAF47ZNJscSyIEeA4kQo37JEqA4kmi5LgfCZAACWQwAaSgRXRzWJ7YlVQEicXiFFlbYGXhRdECSklJiWzatEmOPvpoL6qNuw64CmnBZPv27dKmTZvwp6AgtnVI1Gw7T0wT2bEvok/V+T6Z2jtPWrZsGW4nkXgdK/ftl0cXzpfbS96UEl9VKMartnBBk6bghOrPtdPyHDSayIHWVytXG6QO7dGjR7iv5csfk8C+5ZH1VAXEtzhffJWmIZk9gHywWIHlSmT7/q79peCkS+KeG/MOsYLHXnrppXLfffep9KksJJAtBLhwzJaZ5DgSJcBzIFFy3C8RAhRPEqHGfUiABEggwwkgkvoRRxzhmEEHb+pbtGihFudelG+//VYaNGggXbt29aK6cB1IQ4xAYk4xWzxtzFQZXIQgmGzZskVZmGjBJJFUklHFkwfeEakOiQkmNxjfL0bLlv27g33YvEE6NNoszRr5pUGzrtK47UCRvBLHoRsVO0WqD4ivuK3MWTZF+u7/MKRVxIhjotpHcFf8zBN/o+5S2OFs+XjW90rIOfzwwyParFz3slRtmxXxN98mn/jWa5eekDijA6/oLSOi2Ib65BMpPPdmZaGSaIHLGOatd+/etlW899578v3338sNN9yQaBPcjwQyjgAXjhk3JexQmgnwHEgz8BxvjuJJjh8AHD4JkED2EYDY8NOf/lSQotiuIAMPAmieeOKJngx+69atyjLEurhOtnLETkG9OjBsz549k60y5v4QS1asWCFVVVVKMEGa29LS0pj7Rdsgqnjy4hciq7bU7A4toXGxGFf0FKN8i1Rt/kgCB7eaqg+6xxj+fMkrbCH+pocLxJLAgfUi/iIxKveIQDxBDBVfnvh8BWIEDpr2N1ubmGOWiCytbitVnS6Vo1rVWGYgbg4sThC3pX379jVWG0a1lC9/XAL7V5hinoj4VvjFtzMkwKiuWvP8oCuhCLbheCnB7uX1HCT5x5+fFGuk3B4yZIgS8uwKUh0+9dRTSc9pUp3kziTgIQEuHD2EyarqJQGeA/Vy2uptpyme1NupY8dJgARIwJ7AY489pha648aNs90A1hxNmzaVTp06eYIQ2UyGDh0qcK/xqsA9Bm47xx57rKoyVhaeZNtF+jxYJeTl5SnLhcaNGydbZXj/aOKJTFskxuwVpoCx2C0gB0fMEiky+75oEcJkPRIOM6K/M+UjNrvkRBkJEhP/7eAY2WM0kN2BEin0++ThIQMkz+cTLZwoVx3DkHkfT1WWRc06dpHKuc9L9apvxRcwxGgkYrSvFvH7xbc5ZHmCNsMWJ9bkyOZ+mjvnk6ILbxNpkLhYtXr1aiX0OAl5SFmMODUQF1lIIBsIcOGYDbPIMSRDgOdAMvS4b7wEKJ7ES4zbkwAJkEAGE0C2l3PPPVfeeecd214iaClik5x88smejAJBXBFE9bDDDvOkPlTilD0lFQIK2oJoAi69evVSrkxel6iWJ298JfL9xqB4oi01DJGKAQsl0GZ7ZCYbJUZoIcIqSJgElLBwYt2mtoixNtBcHjh4akTinJv6HSbVG9eHY5wYW1ZLxbRnRfbvCQoifr9IIBCyKgnR8hsS6FctvqJm4lskImVIfRwqZredaIKKiBSMulz8nfslNQVTpkyRk046SZzi0Zx66qny1ltvOX6fVOPcmQTSTIALxzQDZ3MZR4DnQMZNSVZ3iOJJVk8vB0cCJJBrBJ5++mkpLCyUiy++2HbosbKSxMPLayEGbccKZOuVgIK+QzSBxQlEE6/S5trxiyqevPKlyA+bQ8JJzd5V3VdI1aGrQ38ICSM2BhyRO+rtdOYcO/EEVQZdd6rFL/8oP1GWVrURn88XTDhsGNIy3y9XNG8cDg5b8eYjYmxb4+huE9ZI2gckr/9wKWg1RgLrvhdj52ap3viDGDs3iVTDMgUTXB7MdKziqug9a1yJCs/4hfhad47nMKy1bawsUv/973+VMIQAsiwkUN8JcOFY32eQ/U+WAM+BZAly/3gIUDyJhxa3JQESIIEMJzB69GhBYEy4n1hLdXW1TJ06VfDm3YsyZ84c6dixo6fCwxdffCGDBw+OmqY3WQEFAtL69euVaHLIIYd4gSJqHdEtTz4W+X53pBUHHHea7ZCKwQtN9ZotTqA9QCCx/C0of1jSB9eIJfit3PDLh5X9ZI+UyHdVbWWn0Ujt5QvXFRQ2xh/WXY5q0Uxlxil/6uaaftgKOMGvjWYB8Q/sL4VdLrPlYWxdIxVvPRLaWPerJu5KeXETaXLRbaGgtclNC5ifdtppShSyFgQAPvvss9V5wkIC9Z0AF471fQbZ/2QJ8BxIliD3j4cAxZN4aHFbEiABEshgAq+++qpyebn88stte5ms6GCuFIFVV61apYQOrwqC2Hbp0kUFaY1VEhkLFs0zZ85UsV66desWqwnPvncWTwypfOMJyV/StlZbgdLdUjFknvjKRYxqQ6QEZhtQOexSDeNv+OgsN1qYCFVrGOIrbi2BRr1kaX4/2Wo0kU0HDsrnm7cpIxC/SV/wGYb02r9Rjs2vkqO79RD/IYdJ+fN/DFqMhIu9gmLA8uSI46Wgw9m27KpnvytVC6bVCEWhgLG+Rs3E32OQzD9QKF169VOZfZItEfFabCp78sknVTtnnXVWsk1xfxKoUwJ64VinnWDjJJABBObOnZsBvUhPF+Cifeedd6rg/7o0adJE7rvvPunevXt6OpElrcBa9aabblLx0lDwXDthwgQpLi62HSHFkyyZeA6DBEiABCCa3H333dKhQwdbGO+//76ccsoptlYp8dLzOkgsMtzgYaBPnz6uuxKPgIIAtHiwGj58uOMN0XXDcW5oJ54EDqyRitWTRLbsl6JZgyItTwxDqks3SnXh8lBLsDLxSVnH7lKe31V8vipp2HiW+PP321iaIJNNUGQJSJ4EGh0ljTqeIL7i9rV6vXr/AblrwXfhv0PLuH7VB9KtDLFWgsXXqLn423eX6iVfmdxszMFgQxvmBWOeFPW5XvwN7N1uKt96VAKbV0eqNUZA/F0Ol4JRP5YDBw4ILI8QryTZEsvKas2aNXLHHXeozDssJFCfCVA8qc+zx757SSATxZPKfQEp24bQ7CIlrfKkoGHoRUiSA9fiyaBBg8LJAV5//XWBRXC0hX+SzWbl7uAGK2SwRHn44YfVz+uuu852vBRPsvIw4KBIgARyjcB3330njz/+uDz66KO2Q09EnHBiuHLlShUbwyvrjd27dwsyAB1//PFxT5sbAQX9Rcpjnbkn7kaS3MEqnhhla+Tg0r+LGFUiBwuk+JOhJleboB5S2eQbMQp3SHVec9nZ8DQpK+wedEExGX34fAFp3HqpNC79SKR6nxiBavEXtxZ/o25KwMgr7SszZ32lMi/Bosda9lZWyY2zF0ing9tlyO6VcsjBXdKlbFut7fKHjpPAphUSWLkwGDAWpXFAAs0M8VXgidAn0qqpFHa7WPwNnS16Kp6bIEZ5WeRYxZC8w46R/ON+pKrFGyC4nNn1N95pWLRokUpz7VTXtddeK9dff72kIwV2vH3n9iRAAiRAAvWbwN61lbJl3sGaQfhE2hxVIo065Cc9MDvxBMIJngP/+te/SrNmzVQbEAbwNxSzRYXV2uL0008PiwXY5+OPP1b7wM0Z5Z577pEZM2aEkxHg/1pssA4GseRuvPFGWbt2ba12rd/petCfP//5zzJq1Ch55pln1H7mPkWr0zwWs/WN3mfkyJHy2muvqTrdWObEEqEoniR9+LICEiABEqh7AhBN4I7i5Ibw5ZdfyoABA1Qw2WSLlxYs6Eus7Cix+htNQIEog8V43759Y1WTsu/N4kn1znlSsXpisC3DJ3kb2krBol41bYfEkeqGy6S6eKNsbjpeKgraBmOrWrxldOKaVocXS5NuBY79h4iAjEhHHHFExDbfzJ8hDRdNlw7lu0zBYGvHCMnrNUR8fbpK5aZpYuzaIpJfKVIQuV1Bu9Mkv80oZ4aInfL0zcExWEpev+GSf8wZ6q9VVVXy4YcfypgxY5KeDzxcYv6dXMvwMAVRDSIKCwmQAAmQAAl4SWDNR/sFlifmUljql0NGNEy6GSfLE1hVaosJiABvv/12WEyBRQWeE8eNG6eeuw499FDl4qPFh1tuuUUJItjvueeeCwsNWoDRQkcsccHcDgY6adKkcKw9iCpnnHGG6gPafeSRR5QV6I4dO5TrDKyD0X8tfOD+jD7FqlNvBwEJ/YRI0rx5cyXitGvXzrU1juYK93FaniR9mLICEiABEshcAgiAiZsd3rRbi5fxSWDFAfcKr8SIr7/+WgWcxc0tmWInoHz++efqQQGfuixh8cSokrKFt4gYlSHrC5/kL+op+evaW1xiRKoabJZN7Y6XioKQC5YhsrNgrXzV5HnZm7dZAlIt+VIojavaSBcZKCceN0YK8+z9czF2PFDhLdCwYcMUCmPfDil76S+SZ0Q+2Nlxyht8slRWTwmpN7W3CPhKZKVxhvQ7cog95qoKJbpUvP8vkQrTW7jQ1nl9j5P8ITWxR2JZjMQzlxANYSHVqlWrWrvB4unKK68UxApiIQESIAESIAGvCMCwdMW7e2tV588X6Tq2cdLN2MU8QaXaWsPJMgXCh9Wtx7qtVRyxWrTYWbjoAUUTH6z76W0hpMBSBpYnt99+uxJ0zN/169dPxXexEzSc6oTgMmLECCWeaGElFnQINO+88w5jnsQCxe9JgARIoL4TwALxrbfekrvuust2KBAocNNxioUSz/g/+OAD9WagqKgont1st924caNs2LBBvPLZ1wIKMgDB5HTo0KHStGnTpPuZbAVaPKlYNVGqd82LyJRTMK+f5G2tHSB1c7vesr9x26Co4hPZnr9SpjX7mxgGfKf9KjtO0IPGh3Ao0rVpPzm/z2+idhVvchBTBA8UO+Z8KC2Xfhp0w7HJSKMrQjBXY0BzqT6wpCazcOg3uAXlNR0oeaW9Zc68RbaZl6rnfyRV86aorD0RViemNgtOvUb87XuE+46HJghfMN9Ntqxbt062bdsmRx55pG1Vv/vd7+Tcc891ND9Otn3uTwIkQAIkkJsE0m15YhZBkFXRGlAWs6Bdd/C79XuIDBAykhFPUK/VxUbXC6ED1i3WAkuRaOIJhJBodVoFIW2lEq94ovsVy7KGbju5eT5z1CRAAllEAEFihwwZYhtoE7FJkJJ17NixSY8Ylgswrezfv3/SdaGCZN117DoB/1wIMgg66vd7E5gt2cFOee8NdGe6bgAAIABJREFUOaHrt2KUbw1bnGgfnKJZR4pvT22BZ0OnI+Vgg2ZSLdXycdOHZEf+ilBmHJ8EDMRc9YW0CENVBY3l2EPOlBM6nWPfXSMgVfOmSuCH+VK1f7dUFDWUkrLdNr5AwWCzeYefJP7WHaXiwLtiVGwJ1Wlx1elwluS3OkF9h0xGEKwQkFgXY892qXj5Xgd/I2zlE7gE5Q+r3ef58+erbDgQwpIpsY5/uAjhgQ4iCgsJkAAJkAAJeEUg3TFP0G8s/GFpOn78eCWOQAyxxiaxWod4aXliZadjmcCiBAKIneUL9jFvZ7U8sfbfWqc5zot5LImKJ2Z3Ih07xjwuiidenSGshwRIgATqgABiWSA+xNSpU21bX79+vcBtB/FOki3Tp09Xby0aNkzeXxcBbhF/xcuUepWVlTJt2jTp2rWrGmqmBALdNuc2aZh3wOSaExIhdhhS+PWR4q80iyfIrGPI6kOPk51F2+TDZvdLla9KIJXohMRIJ6xNUmCBgtgp2McwfDK6+yUysG1ti43q77+Qqhlm9xRr8JFgnwLik6mt+slZZ14mVds+lcq1b0S6FKmtgu0X97pJfMU1aZaXL1+uYpb06hWM4RJY8qVUfvayrWVLXu+hkj/oVJFCe1cjpNyGqIGHn2TLvHnzlGsYAudaC8QVCD6wqGIhARIgARIgAS8JpDPbjp0IYo55gu/hpoqXaffff78SVSCuaKsOHYskGcsT3cY555yjMhuahQ4dg0S3A864z6PEcttBv93UaRfzJJbbzhNPPKFeuOnnUViu4LnZKWsRxRMvzxDWRQIkQAJpJoBFHxaHN998s23Ls2fPVtlG4LaTTPHSxWb//v2Cfp144onJdKnWvub0yW6y8HjZOEQsLPjLy8vVBw8QxsHN0qHqVVOw1xrBwlcu4luUJ4U7BosEIgUEbPVV3y7ySbNHpNpXCV1E6SPm4lO1WiLIikijwqbyi0EPBTetPChVM9+QwMblYhzYG3SdiSiGbChqKi0r9sn2goaysElH+aBFH2nesJH8sX8f2T7zVSk70EnEyBdk9qmqaiHVlY0lv2iHlHYVKT2sp1SVGVJdYUhRYz+8iZR4NeSYwVLw1VsS+OHrUGu1++nvcZQUDL8g6hTgIQiWJxA+kimbN29Wb+KOPvpo22qiWW4l0y73JQESIAESIIFUEHCKeaJdZHSb5mw7+JudCw0y1OBz5plneuK2o2OH6D6YM/NY3W+QIhjZgWDV7BTzRAeMRTwSuzpjZduJJZ5Y3YnMWYns5o7iSSqOaNZJAiRAAmkiANHkvPPOs40bYudKkWi3PvvsM5WtpbS0NNEqwvsh7gaivMMtw6vy1VdfqcCwbdq0CVeZagEFDy9YmONTVlamUgkjFgw+eOPSqfw/4lMxSpBiOORbo6xERPyLfSJlPincepyIz+peZMhDQ96R8oIKpY8YvqBUEjACyl0nIIb4DOxj1MQhUeJKUGG5eehTYqxbKpUfPitSjeC0tjqL+vNfuo6W9cXBlIZFgTzpVd5IRkozyd+XhyTCpjgnIakmpIPo4egNfHkiDdsViNF8v+xeNl26rP2yRtvR6Y3NcU5OvFj83ezjkOgJ3LVrlyB47HHHHZf0YRLNRQxC3htvvCEQUVhIgARIgARIgARIwIkAxRMeGyRAAiRQTwlgcXnVVVfJK6+8YjsCrzLj4I3AqlWrZODAgUmTggUL6vMqWw869P3330t+fr4SZKzFawEFGVq0YAILE4g1+FgtewJ7l0j5D/8yZagxWYrsD4j/uwKldQTFE21WEoxfgi+eGDRVdjTYq1xxYHoS3MIXDBirtsfvwdH6oc0E/4IoInLT0Cel4sV7RPYhBbFz2VbUVia3PUtaVBVL6+oiaVNVHKxHG8iEulXbbiRUp/5CCyqqfZ8UVX8nrXa+bGm4plJ/9wFScMIFNqJR7b7OnTtXZcux8zuO52CMlcEHpsvPPvusNG6cfBaEePrFbUmABEiABEiABOoPAYon9Weu2FMSIAESiCDw/vvvy7Jly+RXv/qVLRlkLEGKt2QzzixcuFDV4UXK308++USJMF4tUhEcdtOmTVGFHS8EFLjkQKTJy8tTMV8gmESzwqna+olUrn/D5FljilOyxC8+ZDA0fFK4A6mDg1YkwdglIlX+KvnrsLdUBBKTbYnaxC950qKim2wtWC7iDwoSECyCEVFEOlc3lXNWNBKpqrA9Jgwpkh2NRsqBor4iRolq2iTdRFiaRFRgElQitBXzf0wqS2HlOmm5Z5L4jZrUxHl9jpf8gaNEihq4PpMh2oE9juNkCkyFEUxYp2q21vW3v/1N+vTpI6NHj06mGe5LAiRAAiRAAiSQxQQonmTx5HJoJEAC2U0gWqwGL+OKQKRBUE0IB8kUiBxIHWuNnJ5onXv37lXxXk44IZjxJVpJVECBdQlEEyy+EQjVbfyNGssTpOiFKALzkID4dvnE90OeUix8VQ2kYOegyICshiEbG+2S/w6cpkSRgGGIH8FgxSdNq9vJ8J3XybIGH8l3JR8E67DEQzlzbRM5dJ9OI20JlCIi65uMEaNwsEJV5t8ty0o+lk2Fi6XKVy5+I08CvoCU+/ZKSaBUOpUfLX0OjImFNvi9OeVxSERpcuATwUeXwtOvFV+bYDBftwUBaJERB0GRky0qHsuQIdKgQW3xJlbsoGTb5v4kQAIkQAIkQAL1nwDFk/o/hxwBCZBAjhI4//zzBSnaWrRoUYvAihUrpLq6Wnr06JEUHS8Dxc6YMUO93U/WBUMPCCmYsah2m5I4HgEF7JYsWSLIVgTRBEHN4i3lSx6UQNnakCsOfvglb36+SHVAqR6V1UdIw52lYVcdHQN2e4Pd8p9BHwkywSirEp9Ix4OdZMjeG5TlydeNXpFlxdPF5/OLoYLABi1WsGGfXYUyZhPqNGR3QbWU5RdIsQyUdY38MrvpLNmdvzOodUCOUe4/IdMRkwijXXcMpCxGsFjxSePq1tLh4ADpefAEKTBM4oONT49OBtSgfIm02PtiEFvDJlJ03q0i/vgFOLt4NvHOBbbHfCLDk87GZK4DkfWvv/56mTRpUiJVcx8SIAESIAESIIEcIEDxJAcmmUMkARLIPgKw4Lj99tvlmWeesR2cV1l2vMp4sm3bNkEqW7z596LMnz9fLYLjDWDrRkCBlQkW2ohjgngbiRdDAnu+l2+/ni59jjxejC++lOq1S5TQEfCVyD7/RdJy89LI6g2RjY13yLMDpodEDpFD9xTKoLK71D7Yd3HD9+Sb4ndD2Yp9yvpEGbaIIUXVIoftLpXVjUV25e8OxkMJBDPhQFCBYBK0Y9GpiQPiF4gw0F5qnIT0VsHOBZUVtY/PkBaV3WTAvvOkWVXH2vl+TGJKccUCaXHgfclr3VmlJfa1il+AQuteCXixsu5ceumlct9990m7du0Sn3LuSQIkQAIkQAIkkLUEKJ5k7dRyYCRAAtlMAFYXcCe54YYbbIfphasNrC+mTp0qp556atIov/zySyVEtGrVKum6knX/iSagIKXt2rVrHWNjJNL5d999V047up9UvPVo2EpkW+PzpMGeQmm6fXXI+COUjUd88k3rVfJez7kqy07z8jw5d20f2VV6Tbjp3fkbZXKzPwcDu5oDloQDmOALLZBABgmW4G8hWUT9qnL4BGOuRLjdBPcPZwEKm6LofYL19d13uvQpGx2xq6kxKeldIet2/SBI+5dsidfKyK69WC5A999/v8ooxbgnyc4W9ycBEiABEiCB7CRA8SQ755WjIgESyHIC0eKdxAqO6RYNhARk9MGCMpmCOmB14lWsk+nTp6sFOQK3JlrsBBRkZAkEAkmP19oniCcn7/1ajP3B7DfV/oaysfmN0mL9Aindu72WePFZ58Uys9P3khcQuXxFczEKR8u+kqER1b7Z/BYpz9sbtCJB2uJQipya4LEQT4IpkO3EE7PqErRCiVRigv+rsVLRAWnN+xUE8uWs7Q+G2zHrOI2b75E2x3cQuNwcdthh0qRJk0SnSu23YMECad68eULuU+aGo6XcZtyTpKaIO5MACZAACZBA1hOgeJL1U8wBkgAJZCOBaPFOfvjhB6moqJDevXsnNfSZM2eqeB9YtCZTvvnmG7V47ty5czLVqH1hFYJUx/3790+6LrOAMmvWLOWu0aVLl6TrtVbw+esvyNE75gX/DLec5tdJRX4DabFqijQvswpAhrzU93NZ2WyrXLiqibQ9WCQbmt0ggbxGYX0DwsbXjV6SH0o+DUkekdYkiJWCEoxpEjQqMXyBkHuPP+y2A0EkGFfFH3L7CXawRkqBz48RzPnjq5FY1DZGMBbL2B1/lIZVzcPplrUBS6vDC6RJt2KV4tqLbDleuX0h405xcbGtOxbjnnh+6LNCEiABEiABEsgqAhRPsmo6ORgSIIFcIJCOeCcQXyAouMlkE4v55MmTZdSoUZKfnx9r05jfw41oxIgRKvCnFwUCCgSZI4880jbwbtJtGAEpe/J34kdgV5/InoajZE/JMJnc4k65+oshUlCFzDuRWXGeGfCRnLq3iTTbWSYHC7vJtiaXBmOWhJQQuPMEjEp5rdUNoTglFvFEbRgIW4TUjAEyiD8kjgQFlgIRaZ2XLyXil42BKjlgYJtQjBMVHyVYV9AJSEdKCQoy6NL/bXtY/P+vvTMBj6o82/+ThYR932TflcUFsFXBFQWXonWrX2tra61LP7/WvS7fZ63+tWpdq7bWrdaqtXVfaxHEHUUFQahgCwpSFRRQlkAIJJn/db/JCSeTmTkzc05CMvN7rytXMHPe7feemDn3PM/9uMiX+rErnYeXWLdRpbZt2zZTlZsoUmFeeeUVl07VqpVWnV3D9yQ7bvSCAAQgAAEIQECBvt5HVNCAAAQgAIEWQaAp/E6ayqQzE+CqILRlyxZXsSeq9uqrr7rqP4pGGDFiRFTD1o1TOfN+q1q20KXVxKyVfdr9Enu7w59tRes5duEbx1hhtYST2mo5tb0WHVpow+e/abHKClvd8Qe2pWRYjb7i5d/UXre89dv2Tof7a9J+Cmqq7myXN7YLHt5iVIr4e8WDrE3JWiuLVVvXgkJr5QYusML2Q6ygqJ1ta9vPNrQdZMuWrbD3yv9uZVVfOaVEUSae9UmNz0rNTEeu+bW1jtWm5Ph8U/pMbGttutdU1mlO5sX4nkR+izMgBCAAAQg0MQG9F7ryyivd31evKcJXpudDhw5t4tXkznQqknDJJZfYNddckzTVHPEkd86bnUAAAnlCoCn8TuT/0b59+9BpLHPnzrU+ffpEUsHEGa8ecURdOkrY437vvfesd+/ebn3pVOHJdL7qxbNt26zHaroVFNjqDifaZ22L7eWuN7gfXfjacVYgrxLPvNVFpxRawRmHWMVjl7lrPu12sVlBqRMvavWR7bYjZlZRuMneaXe/fVn6b6uybbWShkvEsdKqnhazrrapcJv1aVVgR7f60loXeiEs3m5q3E1KBv/YijrtWrfF6uoqe/W5J22PvUbanUuvs2pXicdfg0cVemI2ceOp1q9ijzrDWY1W2rHQ+h+0PR1J5Z6VEjN27NhMEda7ftmyZbZ582YbPXp0qHHwPQmFj84QgAAEIJAmga+2rLJP1i1yVw/qPNq6tO6VZs/Ul3niibzkjjnmGHfxk08+aXr4/+Uvf+k+EKJlRsATTtQL8SQzdlwNAQhAoFkTuOyyy+ycc85J6EUSld+JIjLGjRtnHTp0yJqFzFeVsiPBI2xTZSGl/QwbNizsUK7/kiVLnDmszEy9FqmAEqu2insvrMtlKSsdZ//ptI9N63ZFTcng6gK7cNYxrgSwa77MnYKLj7KKey5wP/6s2/9ZrKC45vXtzq91a/bbvPo9Xz9tVW5PdvzMuhSvtbNbT7NSq4rj5puwsNTajPo/s+L27prYVytt24w/WazsK7ewW3debZWFEnlqihw7+aU2padfxVibsOGU7WPHzLqOKrUuI+qnVUUhfK1fv94WLFhg++23X6h7IJXvyerVq+13v/udXXHFFaHmoDMEIAABCOQ3gX+unmXPLbmn7o+3/noeNeIMG9l9r9BgEoknevi//fbb7cYbb3QRtWoSVPQzNRnte8KK3iteeOGFtmHDBvfa1KlT7eyzz67rozRZNf29VJOYMGvWLHvuuefq/jtZEQAVLTj//PNdSnT8vPGveSKF1nPVVVe5FO/77ruvwZpSjenfiz/6xutz8MEH2xNPPOHGTBaZozFuvfVWx0DrOPPMM4k8CX2XMgAEIACBZkCgvLzcTjjhBHv22WcTrkbVTWR6GqYksPxO9IdzypQpoXYclblrlL4Z2lAq34uoBJTqj+fbtpcesPUlbe3VHmNtdela21DynsUKNrvImW6b2tupcyc38DvR+gouOsoq/vy/Ztu22WfdL7ZYQa0QESeeuCwZV1K41hjWzFYXVdj09l/aZyXl1t622GVtnrLSgu3CSY384bOELelsJf3/ywo71IpIm9ZbxePXm22rqD37mN079CtbX1JZU+a4Vq3xRmgVa23HrKmJpPFarz3bWPu+9f1t5s+fb927d7d+/fqFuqdeeOEFmzRpUmjfE/kGjR8/PuFaJPY99dRTkfnqhNownSEAAQhAoEUSuGveJfZV+cp6a+/ZboCdsvv/C72fZJEnqpLoF0H0XtETU2655RYbMGCAi1TR31J9GKUUH098ULqKBBEJLg8++GCd0OAJMJ7QERTh4p9HG33ooYfs8MMPd3uWqHLkkUe6NXiCxeWXX+4KAUjM2X///d36PeHDEzGCxvSuk4CkdUokUbEDzadiAKmicTzh5tJLL63rg3gS+hZlAAhAAALNg4AiJm666Sb7wx/+kHBBKreqPz6lpaVZLzgqvxOlxehhuWfPnlmvRR0laCgEVX/0wzalfShHWKazyVoUAkrlW0/bfWW9raB6tD+opC54pN/G1TZl6YKaJXiGsV7azkVHWeUbj1nVh2/bqi5nWmVx95rr/OJJvZATs9YDi+035R9ahcYws04Fm+zgVh/Y/sX/rh/W4o0j9aO4g7XZ5Rc1ESdlX1vVZ/+26iVzrHrVsnqizku9Ntj7XSqckWysoMZy1m8he9iay6xDrEfN+grNBk5ub8Vt6pvgrlq1yvQlY94wTeKg7oNevbIPfdabzjfeeMN9wpWonX766XbxxRcnrMgTZu30hQAEIACB/CCwtXqL3Tz7v2sM2H2ttKiNnbtX4vdvmZBJ5Hmi/l4ESbLIFAkf8UJC/LXx4kh8REuiCBdv7d5Yet/niTjea/H9vGslpChSRhEfEjAk6PhfGzNmjPN3yWRMiUB6nyfxJJUQIpFG4s1ZZ53l5o0XbRKdCZ4nmdypXAsBCEBgBxN4+eWXTSWE/+///q/BSqKK0IjK7ySKKAFtUntWuGm7dvFlfTM/DD006w9x586dU3YOK6DMmzvL5q3Z3QknivuQtYm/qM6QtSvtgOWLzJQO45dXdN0l3zaLVdu2f9xtZWtL7asOx9V4nngr9nVp1a7QYjubPbr+U1uyocza2FY7rfRlG1K0pvbquPFrxZOSAd+xoi7jzApLrXrZ+7bt5YfcnDXN58NiZmtKK+2BwV/XmN66NCOVLtZ1Nf+esOF061uxm+vZvn8r6zWuYa51VNFMUZkGp6oA9f/+3/9zb7okQtIgAAEIQAAC2RBo6sgTvwiiSI94Q1ntwUvd0b/jX5fIICEjjHiiceNTbLxx/Z4ifp6KFEklnkgISTVmvCDkRamkI57Epy/FrytRahLiSTa/DfSBAAQgsIMIPPDAA86r40c/+lGDFaxbt84kfOy7776hVvfaa6+5CAHljmbbovKnKCsrcwZoqSJF0l1jphE12QooSq164u0FVrG11tjUL5xIl6g261X2lR2xdP52F1jfh1NOPPFa1TZbM3e9rV9ZoorBZoU1EkqbHkWm9JhFmzfa7xYtcT8rskr7WeuZNrhwdW1vf/THdhFFxrAyiFWrWvSGVc5+psbw1bWGxioVhVX2+xEas6YksWccq6s1g8STPhW7uX8PnNIw6sTbSnO6r1KZxt57770u0unEE09M99biOghAAAIQgEA9Ak3teaLJJSQodeeMM85w4ojEkHgBID46JMrIk/hbwJ8SIwEkUeSL+vivi488iV9//Jh+nxf/XtIRT+LXS+QJv8QQgAAEcoyAFHp9ciADrPgWRVUTRa8oNWLChAmhyEVVGSUqA1xtJpsIlnQFFP3B1hsW+akoymJ1QRfbXFlb+tinS8SkP8hUdfMG+/aH7243gvXVIq4uKLTCC6ZaQVGN+JFsDf/esNFu+uDfVh0zG1L4hR1dMs8GFK7xxbFs9zbxDrOw3WArHfY/VqX0nE8WWfWKD2oFk/ppNtuFlALb2qaT3TPoM9tim+sMcL2RY9UF9u2vrrHWsfbWf/92VtIlvprP9tsoqogmmdbtvffeVlRUUwo5m+avtBTff/r06SaPFuVf0yAAAQhAAALZEmjKajuJRBC/54lef/zxx+1b3/qWXX/99U5UkbjiCQaeF0mYyBNvjuOOO859CJHIT8SbR0z14ZhaUNqO1p3OmIk8T1Kl7cSfK+JJtnc6/SAAAQg0UwI/+9nPTF+77LJLgxX+61//ssLCQhs+fHjWq48qYkR/wOR3olLAYZpSlLRXGX+FaRI2FJmz22416SWZtFQCSlVVlakSkErx9u3b13lxdOrUydasL7dn3qpy6S3VtSk3XlVizS3x4eR5L9ZU23FKRMxMZYRrU2dk61p17pG27JOlbqkjRtQKMbUL/+fXG+y2D5daQazSjmi10Ca3+qdvS/GleWJW3HOSFXUYYQXVXWzbK3+z2JoaF3w3rz+fyPtZcYkV9h1uhb0G24r2ve2JlbfY1oJNtXazdTV33BBHrrnGOnftbH33bZMSa6aRP8kGiyKCJdXvygcffGB33XWXKfSXBgEIQAACEGhuBJJ5nngpMt56/dV29LNEKTSKMtbXUUcdFUnajv52elV5NKe/7G98+k3//v2doa0MY5N5nkjkSTVmULUdxJPmdveyHghAAAJNSODoo492Lujt29eUlfW3VJ+mp7vEzz//3Bl7qkxxmBaF30lUHi7ah6IJFMJZUlK/hG66e0wkoKhiy8KFC524M3jw4AZDzZz3mS3/sqNLc6murtFGJGso+0bffzx/5vZSxfqpe8FvblJgS48YbsN3G1lv7KUbN9mN//zQqmJmR7aaZ4e0qikluL15KTo13wtb97XSXc43W/u5VTz3O7NtW32Cid/Mzos+iVnxPsdY0aiJVl5Rbne8+wvbUrihVmeprdVTK/rUpO2cZhMOmNDAJDYeSFS+J3PnzrU+ffo4B/1sW6ooLQmIp5xyivuEjgYBCEAAAhCAAAQ8AniecC9AAAIQaCEEFDlx6qmn2mOPPZZwxal8HNLdoqr5yFNl551rS9em29F33YYNG2zp0qWhBRiJE2vWrAldoUUpRHpwD7Mnbc8voCxatMgk7uy+++6BhP7+97+7MNmycrNX3i+3L9bXlA7e89MltpsiQKpqlRVPVvEUFleG2MwuOrouOOSxTz616Z99Yf0L19ixJXOdv0mN5FHgiyKpFU9iZlWFrW2jHWHdPn7HYl/Vlkz01xtWV8/vpDYCpdUB37PCYTXi2bwlb9q01XfVmsgWWIFMY+v66L8LbN/Np9u+h6SX5iWBT5FRHTp0COSW7AJF+hQXF7syi9m2IH8ghTLff//9odaZ7droBwEIQAACEIBA8ySAeNI8z4VVQQACEGhAQJ4R99xzj/32t79NSCdVBZF0cc6bN8+Vg1MKSrYtCu8VzR1FhIHGeeWVV1xub6JonUz3KAFFgo7Sc2Rqlk7zxBP/tVurzP72Spl9/92ZsmGt9R1R2k7tVa5scU0USrWiRy46yv7w4Uc2/+t1dkjxB3ZkyXzfcLWdnGayPXqksHSIxT7YbAXrfZV3/NfUpezEzErbWdHg3axo2Dgr6LU9iub51x+xBQXPWcwZ1crttta0pdY2tjjWxr7b6SrrN6a2nHIAkCjONApRLSiq6ec//7kLbx45sn7UTzrnzTUQgAAEIAABCOQmAcST3DxXdgUBCOQgAaXCLFiwwH7xi1802J3yX1WG95BDDgm183RL+aaaJIroFY3//PPP22GHHeZ8XLJtUVbr0RokLlVUVDgPlngfkmRrTCSeeNdu2BSzdrc8a4VFMXPOr06j8HxQtlcx/qRjV7t3j632P21mWoeC8tpoEy89J84Yttqs6KvBFvtslVnl1vqRJf7Kxd6/W7ezkkNPtYLu/ept4cu5W+yTlUvtxS7X19ZJVqli6TO1Ak2swA7v/t+2x4i96lVbTnVWUUSNKGdakT8TJ07M9rZw/WbMmOHKEZeWljYY59prr3WCW9jfp1ALpDMEIAABCEAAAs2KAOJJszoOFgMBCEAgOYFHHnnEvXjCCSc0uGjt2rUuVWavvfYKhTAKr5IooldWr15tSrdRZaEw7eOPPzYJS6NGjQozjOvrHyvdKjzql0o88RZVdsPz1q5qW60His+zxAWV1OTxLD/wP9a7zce1XWrTdGpqB9e1gjVtrOA/lWbVSg1KkMqjK30CStGQ3a34wO83MI2tqojZsn+U2ebitfb3rr9yYxXEYhZzwklVjXFsrMCOHflz27nrnmmzjSJqJCrvlLffftulECUyI/7b3/7mUoOOP/74tPfGhRCAAAQgAAEI5DYBxJPcPl92BwEI5BCBO++80z3ofec732mwqyiMXhVRoUomkydPDkUtiugVCUGVlZUJqwplsri33nrLRYh069Ytk24NrlWqjqrF7LrrrnWvpSugpCOeaKyuz62wbls319QyVokeeaDUCSMFVl5QbA+P3dfaF66z1kVl1qpgi5UWlFuRbbPSLZusXdkW21ZVbBVFba1VrMKqrNBaVW+z4thWq7YiKy/qYEWxSutU+aUVtOuns3D3AAAgAElEQVRsFaMPtQ4dagx0N26utk7tCq1f9yJbv6naln5YYVtWVVpl0RJ7q9Ot1rpyDyut3NUKrLVtK1xiW1rNs6JYZysoXmffGXWm9e+4s7NuWVdWba1LCqxd60Slj82VRIwiaiSsAbD2nCqF6OGHHzZ595x22mmh7hs6QwACEIAABCCQOwQQT3LnLNkJBCCQ4wTkdSKTzKlTpzbYaZhSvN5gKhX3n//8Jy0T1FSoo4hekb+LPEoGDRqU9akG+VpkMnAyM950BJQg8cQ/xrbrnrFi+Z1IPHHliz0RokZM+fPuk6y6aLs3igsEqV9cp15kSYNKxJ6nSuLAFWtTWmDlFdsr8EjHKWv1qrWrPGA7Ln/qjwSeNnNswuD97J1/VVhljReuE0+UbaWxuncssnHDSqxt60IrL99q8+e8ZlOmpBbotmyNWdmWmHVuV2jFRQ1Pav78+e7e6Ny5cybHWO9ajdG9e3dXUju+Pf3006bfKXmf0CAAAQhAAAIQgIAIIJ5wH0AAAhBoIQSuueYal8Zy8MEHN1ixUlw2b95so0ePzno3X375pS1fvjxUqkxU0StRGItGZVyriBNF9owfPz4h2yABJZV4Et83Jt+T656uMWaViFIklcOriFNg64vb2hO77+OCU1xLHOBR89r2ojvbL6snfKR7q2w1s5oIlWTdpfFo6cmap/Ho9UKrtP13bW2Dd2rd4HJFr7z8frn9Z3WNCiNxaOzQEhs9sMTWbaq29q0LXGSLUm6GDBliPXr0SHcTDa5LJdDJD0WVgS666KKsx6cjBCAAAQhAAAK5RQDxJLfOk91AAAI5TOCyyy5zBqoTJjQsCxuFSWsUqT8qAStvkHHjakrdZtvefPNNl7KTyI8i3TGVHqLIhD59+qTbJeF1EnK0lnbt2iUdJ5WAkkw8Sdbn6ycXWucPP64vjLgQkprp7xtbYwrcwFc2SQRKIo/YzIAEKC5ZvNy21Oy/DmjfYBn//nSbzVpUUf/n2rq0pFpxpn+PIutctcj69u1jO+20k7t2c0XMPltTaduqzHp3KbKuHYJNhlOZ1yr17MUXX7TLL788M1RcDQEIQAACEIBAzhJAPMnZo2VjEIBArhFQlZ0TTzzRxo4d22BrixcvtpKSkrTL5yZiE0Xqj7xB5Fey9957h8L/0ksvuTHatm2b9ThRRCdkUq0nmRiSSDwJilaJXf20QjTqt1oblL/utp9VFJfUiSdJAUUUeVJVsNGKYh1qBJuAYJdEa4nFYtsr9Pgu+P6k9lZSXL/Hm4sq7F+fbqv7YbK+AzuttuF9iq1///628qsqm/FeufNc8ZrShHYfUmIbNsfs87WV7sd9uhVbx7bbQ3VSCY4SzGTQ/Jvf/Cbr+4+OEIAABCAAgeZEQAb6V155pasmd8wxxzSnpbWYtSCetJijYqEQgEBLJPDkk0/anDlz7Je//KW1bt3aVX6J/8P10Ucf2a233uo+5e7SpUvSbcp/4cwzz7SRI0c2uCYKj5AoKtOsWrXKVFFFf5jDtH/84x82ZcoUKypKYHiR5sAyv91jjz2sY8eOafZoeJnORtVdEjFPNGgiUSRePAkSTty4f3vTYstW18gVElEUZuKq51Tb/F4DbV7f4e4l53ni6QHxkSe12T5eZWE3boDnSUm12VafaKMKO+ta/9XabT3IimM71XT35q0FECsosx4dOtqaDT71IoC4lvyjye1r1u9rc5ZstYXLlCZU05KJNb3abbCRfSps8ODBNn1uuX22ttZspbaffFL22aW1vf7BlrqxNNdug0qspFWBtW9TYNvKPrWtWzYlTHWTGHn77bfbbbfdlnIn+t2+5JJLGlyj31PemGb9a0dHCEAAAhBIQcB7L/nOO+/UXSU/vLPPPjslt0zEExm8n3/++e59Z9j3dM3pMOPZZfr3GvGkOZ0ma4EABHKOQLwwov++8MILbf/996/7IxcvsCSD8JOf/MSUujNw4MAGl6Qyv0wXaloP9QGDReEzEpXRaxQVWVR2WcakqUSteCTxHP3iSSaMY9c8UzO0Exi2qx5bCwts+i5DrFVsqxVXV9qm4k5WVVBobas2WqdWW6144Ehr1aaNVVfHrLiowFoVmW3dVmn//ug/NnTIIOvSvtCpLpvKq61D2xqlZO0XlVa5fJt1rY5ZeYHZOl1iZtuKltjbnW61WKzaiqp7WIGVuuvbbptgRbHuVln4uZW3mmU/Hvu/9tkXHWz1+iprXVKTY/PFuiqXTtO2pNA2lNcXVnp32maH79VQKJSvyVOzNtftNpl60r/zRhvYpcyVGn7ktU22aUtDwxXtTVWEkrWSomrbpesKGz92TINL5CF09dVX2913353yjpd4IpHlxhtvzOgeSfd3kusgAAEIQKDlEkgV/RhmV/EiiPffPXv2DBRQ0p03V8WTW265xSGQ0JTNHhFP0r2DuA4CEIBAFgT0P2ZFlJx11lkupUYPW3oglzHrBRdc4B649D/yAQMGBH5SrZQdVdzRH8f4FoXBqjxCFB0jI85s2yeffOJKvPpL+mY61saNG51Z5wEH+Cq8ZDhIdXW1TZs2zY444ogMe9a/XL4X++67r+OSSfOLJJ54kolworli1zxVE1rixBNfeZyY2daer7pKxjWpPYVWUNLGWh12qhX0GJB0mVqHeBTEhXts+araPp+12YktdTpNrU/t1oJN9ly3y6y6oCYaJLZd1qj9b7PSwlI7b+87rKBBntH2pSz/otJWfFnpqvFUl39hw/oU2qCB/ROuVREsSz7bZmXl1da5fZF9vGqbbfaJI1rjuP5rrKRgi/OiSRZ5UlW1XXJKFsGyU9vVdti+g+vWoZShxSu22ecrV9mLf73Ubr79fhvYMy63yLdqxJNMfiu4FgIQgED+EPjo80p77Z/1ox8PkFl67+R/U9KlkyiCRH+P9GGcIp3Ly8td1IgqKKqp4ICiR+L7eR/eydPt5Zdfrnet3ps+99xzdUtKFqGhMfQhgte8ufTf/tdU8MCLwk41b3w///r1b/+6/NE28WMmisSJf0/ujafvQVE73v4QT9K9S7kOAhCAQJYE/OKI/i0zVZW+/a//+i/r27evS+NRiH9QWOSxxx5r9913X8I0lCj8PRYuXOjGThTZku7WM01zSTRuFL4peuMg09lElYnS3YuuSyY4pDOGJ5bIW0MREmojRoxIp6u7xkWe+NNyvJ6xmG3t/nrdOEW7fNOKJx5f46qaoiUTgpa/UGZVCSI3vKGmdbnSNhZ/WW/kGhGlpobOAQOOtwn9jkx7X5mKdIpekaDx1cYqa9+m0Ib3bWVlX60w+dGMGTMmqeeJBJiN5TURKcnEk04lG+zYA2sMhb/4usqef7fc/buifKM9e8+ZdsJZD9jx+7VzpZcTNcSTtI+dCyEAAQjkFYEnZm229ZvqRz/KzPzb+2Tv5eYBTCSeeOKB/PGuv/76Ol8TL+JZKab6m+lPHffEDU/w8P9N01xBaTuJoqvle3fooYc64eTZZ5+ti8z0vxdONe9XX31VL5Vdc/jH9FLhtT7txYu2iR8z0c2msa666iq79NJL6zwC043+9sZDPMmrX2M2CwEI7AgC+h+zzFjPOOMMu/POO+2HP/yhvfLKK24pu+22W0K/kwceeKDBUv/yl7/YzTffbMXFDT+10Pgq29qmTZust6iSvPr0IYxHiIQPRTZ069Yt63UocmXTpk11lVSyGUjiyerVq11ET7atsrLSFEmjiKFs29q1a23BggWm75ma33ZdLM+TBC1mVtX2EycJbOo13CrbdE5reaqE1L59+/r3T1WBFXzVsIqQX2xY3Ha6VVuN6aq/6ZoORV1tQOuGaS+pFqSS2mqZ8vCPqZLY8qLp0KHGyLayusC2bCsyxc6UFleZUnI2VRTb2s01EUPJxJPWBRusZ+ca0Wldealt2NLK/bs6Vm2LZj9uY/b5jvuUsFO77cLUSSedVLcUPE/SuvW4CAIQgEBeEVCU5YMzy+JiNc1aFZv9YFLDSnOZwokXT7z0kyOPPNK9r4wXCLxUFb0PjRdP/L58fjFEawoST9RXwst1111X771SUGSMfO2Szas1ZDKmlzqr99X+MRMxTeQxiHiS6d3H9RCAAAQamYD3P2s9dMmH47zzzjMZvM6aNcsmTpxYF2bpTw25//77G6zqoYcesptuuimheKLQzO7du4cST2T2qgfaMOKJRAK1sOKJHrB79+6d9cnoD/eXX34ZWjyRKBUmjUk8/va3v7lPRjIVCzp8vMpaVdQIZYvXr7Kh7btbSZH+u9qq2n5qZb1HWFVp+m/CFAkjpvXON4l4Uge+pNKWlLxu22I1oceb1myz4tJCK+1Q5NJ0hrf5phUV1AgO6TaVxFZaVb9+/dLt0uA6cZXIJsPYVG1bVaFtqawxHS7fVmxbKrcLj1Vby6zi63/ZLjvXRAOt31Ji67fUeLrEqqts8TtP2qi9j7dBvYprfGJqm8RPrxF5kvUR0hECEIBAThNoisgTv2Gsl1aTTCDwPsSLUjzRAfpTc1QBTx5g+iBP8/jXp2u91J1U4onS2VON6Y/U9u81XfGEyJOc/rVjcxCAQC4Q8HIs9UdDD9D6H79+dsMNNzgzUoke6VTmIG0n/buhOaXt/M///I/9/ve/d4vPJG1n9YpPrPtD77vsmJPeuM+uH3+M9W7TySrbLbFWR0wxG7Jr+kDMTIbDP/3pT+0b3/hGvX4rXtpk2zbGGasWmvUa28ba9yu211Y8bm9++qzrs/jpr61jv1Y26Jvd7Iyxv7H2JelFvfgnVPSU2rnnnpvR+v0XP/roo+5NmUKTM2mfr62yrzZWu2o7K5a8Y3/64932pz/9yQ2x6usq+wdpO5ng5FoIQAACEEhCoKk9T7xlJEpNaazIk/itx8+TLCU9PtojVdXJZGvX3P4PMNIRT/A84dcVAhCAQAsh4BlcxZt26QHQb66VajsYxqZ/2M3JMHby5Mk2Y8YMy9QwVrv9bOZ022neRvvhq3+x68cfZd27lVvx4XtZwbBx6cOovfLHP/6xM0RT+WZ/27qh2tZ+UGHlayutoKjA2nYvtp7jW9dZqGyr3mqvr3jCPlz7jr3zyDIbOLSf/ewHF1mPttlFjuhTKZWgPuecczLeg9dB0TwyFVaocLZNpazlIXTvvffWDYFhbLY06QcBCEAAAvEEmqrajn/e+Mo7QZ4nydJnvOgR+fEl+4BPfdU8zz5/JZt4zxOt6/HHH7fjjjvOgtJ20hnTW5/f8yQobUfjUm2H31MIQAACLYCA/og8+OCD9fJC4/+wBG2jsUsVy9hUosPOO+8ctJSkr+diqWKlhnTunH6ERbxI4okngpaNgCLzNEWM3HrrrVmnMulNiyJgVPVp9913z/p8lXJ20EEHmfKqs22KFiktLXVrybbJ/0cGx9dee222Q7jKAvqd/OMf/9hgjExKFcuEL74lq0qQ9WLpCAEIQAACEKglkMhTxA/H80BJt9qOVwUnPgLE7+uV6O+aJ8wojVbNX1FH/x1ficcbI1Xkid7zXHjhhS41N9GYQdV2vL0ku1k8dl5KUaZ/rzGM5dcQAhCAQAsh8POf/9z0P/mRI0c2WLE8VGQGqjSgbNvHH3/sytiNGjUq2yFMvimffvppYOWgoAn0qcSUKVNchEK2TZEFirII4+GSKZNE4ohfPNFeMhVQPvjgA5c7rDLV2frArF+/3pXG/tnPfpa1eCIDXb2hOeSQQ0KVgP7Nb37jjIm1lmybDJVVtUdRW9m2mTNn2l//+le75557GgyxePFiV3rxtttuy3Z4+kEAAhCAAAQgkGMEEE9y7EDZDgQgkLsEVH5OqTtjx45N+LBXUlISqjKMzMRUkUVO7dm2KMoMa+6XXnrJ9t5774xNVv3rjqJ8s6r+6NMJRVsEtWSiiD4Fkfjhb5kIKGIh89upU6c6gSybpv5PPPGEHX300VkLMCoNLNNisfBKL2ezFgkWffr0sQMOOCCb7q7PCy+84CoyyQco2/buu++66JVTTjmlwRBz5861Rx55xCT00CAAAQhAAAIQgIAIIJ5wH0AAAhBoIQQuu+wyO+yww2zChAkNVhxFyo2qoChyZNy4zP00vAVJfFG0RpgxNNabb75pu+yyi3Xt2jXr01FkgtJt9KAepulBWqlMqYSLVGLI3//+d/vWt77VYAnpCCgbN240nW1Ynkqn0lhimm1ThRuteZ999sl2CNdPPIcNG2adOnXKehyNoXPdaaedsh5D0SXJBMc33njDXnzxRbv88suzHp+OEIAABCAAAQjkFgHEk9w6T3YDAQjkMAGlKCif9OCDD26wS3k0qLzv6NGjsyag6ITly5e7ObJtFRUVpnQZpaqEaVE8HEfhv6I9rFy50iQsjR8/PuGWgkSQZOKJBgvqq+iIAQMGWK9evcLgdOaqSvkJIyRFIa5pE4oamTRpkrVqlVmJYz+AKKKKUqW6yeBXzC666KJQ3OkMAQhAAAIQgEDuEEA8yZ2zZCcQgECOE5DnhT6xV/pGfIsi5UYmXTIXC2MoGtXDcRQeLtu2bXPpP4ceemjoO0ORCGPGjGlgHBskfmjiVOJJKgFFhm+Knpk4cWLo9UfhIZOp/0uiRW/dutVUTlB+NmHa/Pnznb9PJka+8fNpDJUJ79evYdWgp59+2vQ7JZ8hGgQgAAEIQAACEBABxBPuAwhAAAIthMCdd97p0li+853vNFhxFFEBUUWNJBMaMsG8dOlSk0FpmDQTzffWW2/ZiBEjrFu3bplM3+BapawoksXvB5OOcJKOeJJMQHn//fdd1EmXLl1CrT0qHxoJOa1bt7YhQ4ZkvZ6oBKEooldSRTc9/PDDzun/tNNOy3qvdIQABCAAAQhAILcIIJ7k1nmyGwhAIIcJyMBS7YQTTkj4cC/BYa+99gpFIIqH0nnz5lnPnj2tb9++Wa9l9erVplSkMClEmjyKaAlvE/6x0hVO0hVP4gWUKCJvvHWrWk/btm1NJZfDtNmzZ7vIJ0VrZNtUiUlijqogZduiil5R6o+MbxP56vztb3+z4uJiO/7447NdJv0gAAEIQAACEMgxAognOXagbAcCEMhdAhI2FixYYKq6E99UYlgRHyojG6ZFETUShXmt9hBFqkkm1XLS4aZoEHnLKJJFES2pmqIszj//fJcKpSbPmj333DNlH4kyinJRKV+Nryo9qvbjtXTGiJ/AX7nolltuMe3hxhtvzCiiRVFAqrSjdBZFZKj883XXXZdxdacrrrjC3adq/fv3T3sdYinz1rPOOsuJHf50pieffNKVFVaT2KbqRoqQSdS0f0XzHHPMMSZfk/33399V3LnkkkvqLtcYEpskRIb9fUrnnuIaCEAAAhCAAARaBgHEk5ZxTqwSAhCAgCmC4K677jI9ACZq06ZNcw97+sQ82xZF1EgUKURafxSmsRpHHhsSLbIt8+tn6Ykbir5IVa5XYpaED82rii5KP7rqqqvs0ksvTSk4aHx5z0gg6NGjh91///12xhlnODFgzpw5ToDJRLRQhR0Zn6ossO6b5557LiPRwtu70p9uu+02t6ehQ4dmdXtJ5Jg5c6ZdcMEFzq9E/609pRI7PI4SkDzBRjzFSN486i/hxBODvN+Ns88+u94a/QLLmWee6XyDPD8cvSYhR2flzfevf/3LnVfYtLGsQNEJAhCAAAQgAIFmSQDxpFkeC4uCAAQg0JCAygCfeuqp9thjjyXE8/rrrztPjjAlYKOIGlFkglKIwpbXjSLFQ6CU/qNUD5UbDtP8qToffvihlZeX29ixYxMO+dFHH9mtt97qoiVUdlkVkjwxRVEPiZpEDkWcaJ2J0oK8SBY9/AdFsHjjqxxvmzZtTKKYDFBlPusXG9LhIUFB0U4qt6xS2dk2CRtKx1IFmw4dOjQQPlKN6488kRGwBEKlEPkjSdQ/XkyJH9O7/qCDDjKlRu27774NppWYIn+hBx54wAlYNAhAAAIQgEAuEPB/sJPsvUgu7LMx94B40ph0GRsCEIBAxASOPvpoe/DBBxNGUeRaOdooq+V4KRqlpaVZnUgiMUMGskqBUXRCvImq/yFe4omEh2RRERJaJMZIiPGXEo6fU9elE73ibdBL5VL0iRfhIcEgU/FEwsVPf/pTF+3htaD0mESQtccLL7zQCUmKDIkXPtIVTyQiipOMdOMFqSBG3pxav0pzJxK/rr/+env55Zft+eefz+peoRMEIAABCECgMQn4ozK9eRRRGR91Gb+GTMSTbD6wacw9Rz22PijRh0pBzOLnRTyJ+iQYDwIQgEAjEvjZz35m+kqUTqBUg8LCwpTpJEFLW79+vfNV2W+//YIuTfm6HtZVArZ3796hxpHwoL0mMvXMZGD5jnipHpn007WpzGGrq6ud8LFq1SpnkNurVy9XPlf71x9mpaQoVSVePJEAoD4SYCQEaI8FBQUNlubNLZ+OoMiV+M4qxas5FJHkpcYERWYkYhPfx3vzJVPgTN50LF++3G644QZ3jyoiJlvPEzGT4azSd8REn555kTjpiiejRo1K+Luivd58883uDH//+99neqtwPQQgAAEIQGA7ga/KzD5ZU/Pfg3qYdWkXCZ14ESTbv8upFpOr4on+zns+Z+kITognkdyyDAIBCEBgxxC49tpr3YNiIiNLPVQm+zQ93dUq2uPdd9+1CRMmpNsl4XVKlZGx6ujRo0ONE2W1nGy8T9KtqqMyz/oE44svvnC+GXrT8dRTTznD2JUrV7pUHKWBxGIxJ0wplUbCkkQRiQCpmgxN//jHP7pqOemKFZ7XiQQjz0zVP0cmwsX06dPtiSeecH4rXtnkbESYX/3qV26/P/nJT9xSJC49++yzaZnG+tN2JAjtvffepns128iTgQMHOv7+SB/PU0bRXZojkTFzqJuZzhCAAAQgkD8E/vkfi/193vb9FhRYwZHjzEZmX4nQGyxRBIn/QxulFScyrI/v53mPKWVYEZdqnjG955PmzamU4USpPn5PMX9/7+98IkP3VPPG94sf078uv/gRP2aQMELkSf78KrJTCEAgjwkoZUeVT04++eQGFBTNkMzHIRNkr732mvtkXwad2baoIljKyspcFMeBBx6Y7VLq+umBWD4q6fqFpCucxC9Mb04U9XHffffZKaec4nw+FIXz5z//2Zmcfve737V004e8Nzq6Xv2CKvx4a5EAJqFCkTD+lo3oIYFDAso555xTZxbrf5OWrLKNf17t49xzz7Xvfe97rsKNWlCUiL+/J578+Mc/NglDXmRUtp4nMvz1+wP5zXglsqnajtZKgwAEIAABCGRDIHb3S2aKPPG3nh2t4Mfh388kEk888UDCv9JP9V5HYof+1iplVtEWY8aMqfehgyd8eIKJ/z2Cli0BJpXPmt/fTR+u6L/leXfooYc2+IDE//c61bz60MfzjEs0ppeGrPXpAxQvCjZ+zKAzQzwJIsTrEIAABHKAgB7sVOpVVVviW1QeIarqo4dHRTqEaSqtPGnSJGvVqlWYYSKtljNr1ixTyoYXQZFsYdkKJ9542VbbiRcc/JEV6a5JbzyUSpQoeihT8cSLYJEYpKgmpf94b1i8N2bpHK4Me//3f//XiUZeClE2kSfHHnusM3HVGaqlW23HW6P35k2Cz5QpU6yoqKjBGCqnrPs2bOpaOly4BgIQgAAEcpDA1kqL/fZ5s1jc3kqLreCcI0JvOF488VJsjjzySPfBQLw/mue5pup9/vcV8VXv/GJIOuJJsiqAQZEx//jHP+pV2/PPq38nqiyYbEzPx03vj4Mq+PnBI56Evg0ZAAIQgEDzJyBFX74Rd9xxR8LFhjVG1aCZRmgko6YKL0qLiI9+yJSyKgDpoVuRFGGbUonefvttU7WVZC1dkSJoLd6bGfmtqHmf7AT18173Pi1S9SJ/00P9ZZddlnQYeaxIOFFqUHzLVDz55JNPXHqMImf0hkslg9WCwmHj59U9pbSmp59+um6MdFKHEpniKXpHbwy9iBd/yHAyI9v4sGKxkbeJyi7HhyZr7Sprrd+zbMsyp3vGXAcBCEAAArlJoCkiT7y/ySLopdXER4PoNU8oiFo88cb2UnO8v+v6G+t/z+CdsPc3OpV4og+3/H+z48eM9znzolQQT3Lz94hdQQACEAhFQHmsJ5xwgvOKSNT0cCw/hzAlVqOKYAlj0urfm9KUXnzxxVBlcv3jKYJC5qX6Ix7fohJO/OP+/e9/d4axUbVUa5QwpMo/Yc7fv069wfEiNMKsX0KaQmtlqhumTZs2zfn9qFRxtk2+NErfGj9+fMIhjjjiCOdXE+RFk+389IMABCAAgTwg0MSeJx7RRCmxjRV5En+K8fP4hQ7/takiXuIjg5OtXeP5PxBCPMmD3ym2CAEIQCAbAoo6kHFot27dGnTXH02lSIwcOTKboev6ROF7oko0etjVw2jYFkUlIf8aFMEjUcZftagxhBPNGbV4ojETrXXRokUuGiO+bHK27KPkEQWDqHx0UnGSP83vfvc7U+oODQIQgAAEIBCKQBNV2/GvMb7yTpDniT/VxR+14kWPpErRVV81z0vOEzr0HjU+NVfrevzxx+24446zoLSddMb01uf3PCFtJ9TdSmcIQAACuUlA6R+Kmjj44IMbbDAq01gZzyp1YdCgQaEgvvfeew2qmmQ74PPPP++iT1TqNormj4aQOKNSwekasmYyfxTCQaL5/OKGIinWrFnjjH6jaFVVVc4k9vDDDw89XBRVoLSIqCovqXSz3yzWv0HtWf4uMtejQQACEIAABJojgUT+H/51JksbTlZtx/Mii0/58Zf1TVRtJz69OD51Nj5l1hsjVeSJfNv0N9hLWY4fM6jajreXZOfm35N3TSZp1QUx1U2kQQACEIBAiyEgEUGGoOedd17CNUeRaqHyup9//nnS1IZ0YSlFQl4X3/jGN9LtkvS6qB6e/RO8+uqr1qlTJ1OZvuHDh4deY6IBGks80VwSUOTj4q9AE8UmojIN1lqUk6MVAZcAACAASURBVC0RTp8OhWnJKghlMmZQCpgqFEhYUaUAGgQgAAEIQAACEPATQDzhfoAABCDQwgjok3xVLlHp20QtiofViooKZ6zqlZUNgyiqqjtaQxSGuP69KOJEPPXArPK1jdEaUzxRmomihOQlElXUjD6ZUkUneYuEbUohUx6yfFPCNgldMsINU70pSMz7wQ9+4Ixie/fuHXa59IcABCAAAQhAIMcIIJ7k2IGyHQhAID8IfPe733XeDIke+KPyPXnrrbfcA3kib5VMKEeVAqQ5ozKh1Vh+H5XZs2e7yIio/EL8fBpLPFEkjsSTvfbaK6EHSiZn5L82KnNXjbls2TIXGTN69Ohsl+P6KSVJPjV77713qHFS+Z1IWFE011/+8pdQc9AZAhCAAAQgAIHcJIB4kpvnyq4gAIEcJ9AUvidKt5GHiqIywjQZfarcsGcoFmYs9VUkg8aSJ0u2LZEBrR6sVWlIpXCjbI0hnsiXQ9VgRo0aVbfUKAxelf4jn5oDDjggEgSKgpIpb8eOHUON9/7771vXrl1NJQvDNPxOwtCjLwQgAAEIQCC/CSCe5Pf5s3sIQKCFEmgK35MoTUOjLKG7atUqV2o2WzEmVeUeRbaojPF+++0X2Z0RtXgiAWDw4MHWr1+/BmsMK6BEkfLlLSpVSehM4UZhFozfSabUuR4CEIAABCAAAT8BxBPuBwhAAAItkEBT+J4Iy9y5c61Pnz620047haK0du1al1qyzz77hBrH66zIi4EDB1qXLl0yGi+dkseKlFEUitJ4hg4dmtH4iS6OSjxROpYECUWbyOQ2WctWQJE7v6KNooq8efPNN13UiSJGwjQZF0swGzduXJhhDL+TUPjoDAEIQAACEMh7AogneX8LAAACEGipBFL5nsgPQ5+0hzURDRvl4Wc7a9Ys9+CfqeCR7HwyrSqUjnDizVVdXe08URSJIgFgwIABWd8mYcUTCRqLFy92axg5cmRa68hUQAmKykhrUt9FKjWoilAyeA3boqiyozWIiVKdEpXfxu8k7CnRHwIQgAAEIJD7BBBPcv+M2SEEIJCjBFL5nmzatMmViD3ooINC737atGmu8kpxcXGosYI++c908LKyMpszZ44deOCBgV0zEU78g6lajEQARc5IRMkmAidb8UTloiWayBRYokmmVWYyEVBeeuklZ8batm3bQJbpXBBV+o88aLS2KEoHp9rj9OnTTdFMF154YTrb4xoIQAACEIAABPKQAOJJHh46W4YABHKDgEQNPSCfddZZCTcUVaTHwoULneGn0mTCNpWbVfpFhw4dwg7l+ktgUFrH+PHjk46XrXDiH1BilESUgoICa9eunfXq1cs6d+6c1h4yEU+UOiORSRVqYrGYE03CCBrpCCgSoOSfElV53g0bNjghIooy1/KfkUg2ZsyYtFgnuygoEubmm292c0yePDnUPHSGAAQgAAEIQCB3CSCe5O7ZsjMIQCDHCcib45RTTrHHH3884U6jfPDUWGE9J7RIpQGp7GzYh2H/hlOJI1EIJ/65JAxI3NBXeXm5E1G8r2S3W5B4IibyMtGYEkq88aISmFIJKFHzEQOJbfKL0T7CNnnuqHx02FSvIAHw6KOPtgcffDBUBaewe6U/BCAAAQhAAALNmwDiSfM+H1YHAQhAICWBiy++2I4//viElWeiTHl44403nOCRbrRFqkVHWXnHmydR9ERjCAP+fVVUVNQJKYpMUVRKaWlp3Vfr1q3dvxWFsccee5iu37Jli/vu/VvRJRJJPLFB1zdGSySgpBO1k+laoqywoygcGfdOnDgx02U0uD5V6pnux2eeecZ+/etfh56HASAAAQhAAAIQyF0CiCe5e7bsDAIQyAMCL774ovP9kIiSqEXlPRHlg7ZSUmbPnm2TJk2K9IT8nhaNLZzEL1wiiNJLPGHEL5QorUgViySMeIKK92+lAEl0aYrmF1Ci9MTxr33mzJnOJLZNmzahtxSVUWyQ145EE605Cn+g0JtmAAhAAAIQgAAEmi0BxJNmezQsDAIQgEAwAT20T5kyxWbMmJHwYpU0VjTA2LFjgwcLuOKVV15xES7t27cPPZb8Q2RAO2zYsNBjeQN4FWMGDx5shYWFNnz48MjGDjNQUNpOmLEz7esJKCp7rPumqKgo0yGSXr9kyRJTlaKdd9459JgbN2609957zw444IDQY2kc+blIwIpvWu9hhx1mMoylQQACEIAABCAAgVQEEE+4PyAAAQi0cAJXX321q5SSLJIjqod3le2V8ebuu+8eCTE9sKpSjsrHRtWU5qFID0URRCkMhFlfVPzDrMHrq1QuiWAyiE237HE68yrS5rXXXovMcHXevHkulalv377pTJ/0GokjStk54ogjEl4j0VHiykUXXRRqHjpDAAIQgAAEIJD7BBBPcv+M2SEEIJDjBJSa89RTT5lElEQtqgdRja00oX333deln4RtUaYCaS1eqo6EAQkEEpTCGo2G3aP6NxfxRMKXUmEUzbFixQq3tREjRkSxRTfugAEDIjGJlRHvm2++aQcffHDotX366afOoFieM4maRJMTTjghZbWm0ItgAAhAAAIQgAAEcoIA4klOHCObgAAE8p3Asccea/fdd58rKRzfojTxXLZsmSujO3r06EiQS9hRSsVOO+0UarxEHicq1SwhJYoSy2EW1xzEE1VLUkSOvD28lk4Z43T2rXF1jyUTKNIZw3/NP//5T5caNmjQoEy7Nrg+lTmxDGlPP/10e/TRR0PPwwAQgAAEIAABCOQ+AcST3D9jdggBCOQBgd/97ndOKFDJ1URND5HyPYkiReYf//hHpH4ZYdN3UpnDqkStDFmjLI2c6e20o8WTVAzCCiiqHqRKTIccckimWBJeH2WFKKUSqdLRXnvtlXAulfiW6PPf//3fkaydQSAAAQhAAAIQyG0CiCe5fb7sDgIQyBMCMmCVgKKvRC3KiBFFMVRVVdnQoUMjobthwwb3kLv//vtnPF46VXUSRV1kPFGIDjtSPEkn+iaMgPLqq6/auHHjXLnlKNrSpUudkXAUUSdBESwSTc4777xmYywcBT/GgAAEIAABCECg8QggnjQeW0aGAAQg0KQETj75ZLvqqqtcBEqiFmXEiL8scBSbzEbcSUc48dbm+X1IoImijG4me94R4olSq2TgqqiLdHxfshFQgsSJTBjp2ijLJ3uVl1RJJ1GT58vll19u9957b6bL5HoIQAACEIAABPKUAOJJnh4824YABHKPwJNPPmnycTjllFMSbi7KUrKrV6+2jz/+OGlKRDZ0MzEdzUQ48dailBAZkUpciipqJp19NrV4ougNlaieOHGii+JIt2UioKxatcpkxqrS1VG12bNnu9LV3bt3Dz1kUCnsu+66y3ntHHXUUaHnYgAIQAACEIAABPKDAOJJfpwzu4QABPKEgD5pf+655xI+NAeVbc0U0dy5c61Pnz6hzV7988qbZfz48Skf+rMRTvxzLF682FWbUaleVYhp7NZU4sknn3xiEg1kkLvLLrtkta10BBSJUCrvm8xLJJuJZTorQUYpQFE0MVd5YvndxDd5ochgWdfQIAABCEAAAhCAQLoEEE/SJcV1EIAABFoAgT//+c9WWFhoJ510UsLVLlq0yJUZHjJkSOjdbN261ZUEnjJlSuixvAGC0i3CCifePBIAJKKsXbvWCQ1hq/2kAtDY4omEB4kmPXr0cHtp1apVqPMIElCiTP/yFvrCCy/YpEmTQq9d43300Ueme1PiWKKmqlSKyPnBD34QihOdIQABCEAAAhDILwKIJ/l13uwWAhDIcQJ6aFTFneeffz7hTqMWPJQiIsEj20iHRItM5n0RlXDin1NzSXgoLy93e4giZSR+T40lnqxZs8YJQO3atXNrb9u2bWR3dzIBJWqvGy1Ye1AVqKhSqYKEmEMPPdT9fhQVFUXGi4EgAAEIQAACEMh9AognuX/G7BACEMgzArfffrvzc1BqQqK2YMEC69y5c2QpKzNnzrQJEyZEasQqg1eJGhpXrTGEEz+bdevWufmU5jFq1KjIqsdojqjFk/Xr1zvBQU3RFZ06dWqUOzxeQFHlHrFJx4A23QXJ2FZeJ4o6iaIpdUnVm3bdddeEwz366KOme+uMM86IYjrGgAAEIAABCEAgjwggnuTRYbNVCEAgPwjINPb00083PSgmalE/sMo8Vn4VyR5Ys6W+cuVKU0pK+/btXSrS8OHDsx0q7X6eEa4idHr27Gm9evVyQlOYFoV4InHniy++cF+lpaUuSqMxomTi9+kJKBIkZLQrUS7KtnDhQueb061bt0iGDRLyJCgqbadjx46RzMcgEIAABCAAAQjkDwHEk/w5a3YKAQjkEYEbbrjBxowZY8lKtSpyQREEUT0MR+ml4j8mRckoUuDAAw9s0tNTdMeXX37pxIotW7Y4IUWs9D3Tlq144okl+q7yyhJy9NXUD/4vv/yyE2qiFseCvEky5SyxTSJTMq8TnYPEoHPPPTfTobkeAhCAAAQgAAEIGOIJNwEEIACBHCSgMrKXXnqp+5Q9UQsyZs0Gyeuvv2677bZbZGkkXqqOhANFoHzzm9/MZlmh+0g8kZCi6BpFpkjA8KJSFAUS1NIVT1QFxhNMNJ83h+ZLZ56gdWTzuqof9e/f38rKylz3ESNGZDNMgz4SOf75z3/avvvuG8l4GiTIyFYmytddd12jmgNHthkGggAEIAABCECg2RFAPGl2R8KCIAABCERD4IorrnBeEvvtt1/CAT/++GMXVSEfiyiaKtjIUFSGnGFbvMeJxAT9LNlews6Xbv9YLOYEDq1HYoe+S9hQBSN99//b+5m8QiZOnOiuF+9E3/UziSXq70WYpLumxrru1VdfdfeGqvioBVXhyWQd06ZNs0MOOSRlSepMxvvggw+cYe7gwYMTdlNVqDfeeMMJijQIQAACEIAABCCQDQHEk2yo0QcCEIBACyCwZMkS++Mf/2jXXntt0tUqJUMRHarYEkVTdIaiXvbcc8+sh0tmDqtUmnfffdc9dDeXJjHFL4YkEka0bpm6JhJW/KKLzGqbQ9OeZsyYYfvss08D49woBBSd4YABA5xIFEXbuHGjvffee3bAAQckHe6iiy5yPkBRVfSJYt2MAQEIQAACEIBAyyKAeNKyzovVQgACEMiIwNVXX21777130moma9eudREFelCOqikdQyavgwYNynjIoKo6ityQKej+++8faUWcjBeaQYd003YyGLLRLpUxrNKvJk+e7MoHJ2phBJRly5aZDItHjx4d2R7efPNNV6q5a9euCceUECRxRQIKDQIQgAAEIAABCGRLAPEkW3L0gwAEINACCJSXl9sJJ5xgzz77bNLVzps3z6WM9O3bN7IdKeVj3LhxGQkcQcKJf3Gvvfaa8+JIlqYR2UYiGKiliCdK4/rss8/SSo3KRkCRMDN//nwnfEXVFOW0Zs0a22OPPZIOecQRR9hTTz2VVAyKai2MAwEIQAACEIBAbhNAPMnt82V3EIAABFzJYlWsOeOMMxLSaAzzWJX61af9inpJp2UinHjjyedCUQzf+MY30plih13TEsSTd955x0ULZeJ/k6mA8tZbb7l0rlatWkV2FkEmsbfffrurkqQSxTQIQAACEIAABCAQhgDiSRh69IUABCDQQgicfPLJdtVVV1m/fv0Srjhq81hNogotc+bMCSwznI1w4m1C5q2KnJFI07lz52Z5Gs1ZPPn6669t9uzZNn78+KzKMKcroETtraODDjKJXbFihV1++eV27733Nsv7gkVBAAIQgAAEINCyCCCetKzzYrUQgAAEsiLw/vvv2/3332833nhj0v6qSKLIAEUgRNWCPFXCCCfeGhU5IwFAwlA2PitR7TXZOM1VPJH/iEpAS3gqKirKGkOQgBLkSZLNxOmYxJ5zzjl26qmn2pgxY7KZgj4QgAAEIAABCECgHgHEE24ICEAAAnlC4Ne//rVNmDDBDjrooIQ7VlWYxYsXp51qky42+WiopO/YsWPrdYlCOPEP+NFHH9ny5cttt912qyuvm+4aG/O65iae6CwWLFhgQ4YMcV9RtGQCyty5c61Pnz620047RTFN3RhKAZLpbMeOHROO++KLL7qop4svvjjSeRkMAhCAAAQgAIH8JYB4kr9nz84hAIE8I7Bp0yY78cQT7emnn06688ZI39Fk8eNGLZx4G5JBroSB4uJi23XXXZuFSWhzEU9URnnhwoVWXV3tBCaVSY6yxQsoYaoupVpXULqO+k6dOtUee+yxyPcYJS/GggAEIAABCECgZRFAPGlZ58VqIQABCIQi8Mgjj9i6devs9NNPTzqOzEOV/qIKPFE2RbXILLSqqsoKCwtt+PDhUQ5fb6yVK1c6oUCRFcOGDWu0edIZuDmIJ0uWLHFRORKUZKDaWM0TUAoKCtw5q4RwlE0eN/IySWUS/Ic//MHdu8cdd1yUUzMWBCAAAQhAAAJ5TgDxJM9vALYPAQjkH4Ef/ehHdvXVV6csTfz888/bYYcd5kSOKJuEGXmUKH2oKdqHH37oStkqdSSqFJVM170jxRNF/MjXpEePHrbzzjtnuvSsrp81a5aL+Im6CpLEmOnTp9vhhx+edF2YxGZ1ZHSCAAQgAAEIQCANAognaUDiEghAAAK5REDRAapAcu211ybdlkobS3iIUuTwUnWUPqIIlKZ6mNd88kP55JNPXBTK0KFDIxeFUt0fTS2eSGTQfpcuXeoiiLTf0tLSJrmFdc9IHJN4ojZixIjI5pUoo1LKXbp0STrmL37xC1eSe0dHG0W2aQaCAAQgAAEIQKDZEEA8aTZHwUIgAAEINB2Bhx9+2DZs2GCnnXZa0kmV6iF/jChEjniPE40tfxJ5bzRVk6ggQUHCgkQFRaJE7fuRaC9NJZ5s2bLFectIJJJgIgEh6sihVGelik7t2rWrEy6CqvBkcu4SZeRjk0oUueOOO6x79+52/PHHZzI010IAAhCAAAQgAIG0CCCepIWJiyAAAQjkHgFVItGDpsoTJ2uqaqLogW7dumUNIJk5rFIs5GERdXpHOguVyKCqM2pK6enbt2+ocr2p5mxM8USCkKoZ6Us+I/L62BHpSUrHUkWd/v3710MRhYCitCuJXiqpnKy9/fbb9swzz5gqStEgAAEIQAACEIBAYxBAPGkMqowJAQhAoIUQkK/Jc8895z7VT9QUeTJt2jQ74ogjstpRUFUdiSeKQtl3332zGj9sJz2YyxNE4oOEB4koURuqNoZ4smrVKrdmCUBas77CCFxhOL7++usuOimZwXBYASWIn9Kyjj32WNN1NAhAAAIQgAAEINBYBBBPGoss40IAAhBoAQRUTvaee+6x3/72t0lXK/8TVWoZN25cRjsKEk68wVT9Z86cOXbQQQc1WvRHOgtXhR4JEvLsKCoqcmKEvjp16pRO96TXBD38pzP4+vXrbe3ate5L0SYSuySYKNpjRzWt4+WXX3aRQ0GMshVQdF8oBSmVz8nPf/5zO/PMM23kyJE7CgXzQgACEIAABCCQBwQQT/LgkNkiBCAAgVQEHnjgAedtoio8yZqEBUVojB8/Pi2Y6Qon3mDy61DqhUrb9urVK605GusiiSeeUKHvmzZtqhNSOnfu7Hw9MjFgzVQ8EYvNmze7ktKKjJF4pTk9MUffk0UKNRaT+HEV+SJB5Jvf/GbavjGZCijvvvuuDRgwIOX9IONj+daceOKJTbV15oEABCAAAQhAIE8JIJ7k6cGzbQhAAAJ+Aueff7798Ic/tN133z0pGEWflJWV2ZgxY1LCy1Q48Q+mB2YJBaqq0lyaX0yRkCJRQ1EXWmf79u3d9w4dOjhBQ1+KWvF/V9qT0qM0jvr5v+vfMu6VWCK2Gl99JdK0bdvWGaB27dp1h4sl/rP44IMPnNlvKq+cZGeXroCyYMECx0DiSbI2b948e+ihh+z6669vLrcK64AABCAAAQhAIIcJIJ7k8OGyNQhAAALpElDkiR7wp0+fHkoYCSOceBPLzFXpMzIIVUnj5tgkekjo8ASPrVu3uv9OJJCIrareJBJWvCgWCSWeELOjo0qS8dYeZ8+e7UxhBw8enPWxBAko6dxDsVjMpkyZYjNmzMh6HXSEAAQgAAEIQAACmRBAPMmEFtdCAAIQyGEC7733nr3wwgt2ySWXpNxlsqiAdB5608Unjw89qKuU8Y709Uh3vamuyzRtJ4o5ox5DKVvyx5Gg1bFjx9DDJxNQVGZZkTi77rpryjlUVWfq1KkpI6VCL5IBIAABCEAAAhCAgI8A4gm3AwQgAAEI1BFQ5R2VhT3nnHNSUon3o4hSOPFPPHfuXGvTpk2zSuPJ9HZp6eKJ0nRU0SZTw+AgTvECinxUPv3008B0oJtuusl542RbASpoXbwOAQhAAAIQgAAEEhFAPOG+gAAEIACBegT+/Oc/uzSTk046KSWZN954w0aPHu3K5er64cOHNwpJRSNInFE0QkuMQmmp4omiTRYuXOiq2KTyHglz6J6AIm+XxYsX28SJE1MO96c//clKSkrs+9//fphp6QsBCEAAAhCAAAQyJoB4kjEyOkAAAhDIfQIqXTxs2DCXGpGqqVStqr8ovaYxm/w29CAvTxGJKPIIaSmtpYkn8m4Ra4kUYt3YvjPz5893JrwHHnhgyiN9+umnbcWKFabSxDQIQAACEIAABCDQ1AQQT5qaOPNBAAIQaCEELrvsMmciO2HChIQr9lJ1ZO6qCjyKHmjstnr1avdg36dPH5e60RJaSxJPFP2h9BmJJk1xnirFrLQgL6JoxIgRCY/09ddft5deesl+9atftYQjZ40QgAAEIAABCOQgAcSTHDxUtgQBCEAgKgL6lP/MM890qRv+Fu9x4lVh6du3b1RTpxxHviwfffRRizCUbQniiZeio2ijoUOHNskZSnT7z3/+40xo1ZKZyMqo9p577jFFQ9EgAAEIQAACEIDAjiKAeLKjyDMvBCAAgRZCQP4SMuns1auXW3Eyc9h58+ZZp06dbMiQIU2ys23btpkq/yiVZ+DAgda7d+8mmTfTSZqzeKIoE3nKKDWnKVJ0PHYqR62KSmPHjq2HM15Akahz8cUX2/33358pdq6HAAQgAAEIQAACkRJAPIkUJ4NBAAIQyE0Cqmzy1FNP2bJly1Kawy5atMgKCgoaRKo0JpWvv/7aRaHIq0NRE/369WvM6TIeuzmKJ6pqo+id9u3bO2+bzp07Z7yvbDvoHlEbNWpUwiE8AaV///52wgkn2LPPPpvtVPSDAAQgAAEIQAACkRFAPIkMJQNBAAIQyF0CihI477zzXBRAUFUdCRkbN260PfbYo0mBaE7NLR8NCQKDBg1q0vmTTdacxBOJX2IkPxMxknjSlC3d6CQZw8pz57bbbrMOHTo05RKZCwIQgAAEIAABCCQkgHjCjQEBCEAAAikJKD3ml7/8pYsUeOihh+yRRx6xjh07puyjyAZ5Wuy1115NTnfLli0uqkJr2HnnnZ0ZaevWrZt8Hd6EO1o8EQ+lvyjdSiWHFZ2zI3ik64ujyjvf+c537OSTT3bmwFdeeWWjV/zZYTcHE0MAAhCAAAQg0GIIIJ60mKNioRCAAASanoCEk0svvdTatGnjBJRYLOZSKWTeqQfxVE2VcRTpIC8N9W/qJi+U5cuXuy9FWCidR4a2SitqyrYjxJPq6monXumrrKzMBg8e7CJxioqKmnLrbq7NmzebTF/lhRNUwUf3yy9+8Qt79NFHTXuQcFJeXm5XXXUVAkqTnxwTQgACEIAABCDgJ4B4wv0AAQhAAAIJCeih9fLLL68TTvwP3qeccoqdddZZgak5enB/++23XQTIjvQiUSqPFw2jSBStpWfPnk1y8k0pnnzxxRdOMJERrIQifQUJFo0JQdV0lixZ4irqtG3bNuVUc+fOtTvuuMPuvvvuuuuqqqoQUBrzgBgbAhCAAAQgAIG0CSCepI2KCyEAAQjkFwFVsnnmmWfskksuSRixcMEFF9i3vvUtO+iggwLBzJ8/313T1D4oiRamFBYJKTKaVTSEPDW6devWaJENjSmeKDJo7dq1tmHDBhfl07VrVyeY9OnTJ/BMGvsC+ZsUFhba7rvvHjjViy++aDNmzLDf/OY3Da6VgHLNNdfYsccem9RkNnACLoAABCAAAQhAAAIhCSCehARIdwhAAAL5TODXv/61q6yjB9ugJsFCvhuKQmjXrl3Q5Y3+uoSHlStX2pdffukECKUWSUTxvlS+N4oWpXiydetWt9avvvrKfVd0kNarMtIq1RzVmsPsW9FG8jfRfSEhJ6gpRUcmtjIjpkEAAhCAAAQgAIHmSgDxpLmeDOuCAAQg0EII3H777e6h/bTTTgtcsR729WCtiI+BAwcGXt+UFyh6Q4KE9yUxRaKEvkvs0Vc2RqvZiicyelX5ZX2Jm1Jy9DOJJYow0fcg496m5Ke5PI8ZCWTpsLrzzjvdEs8444ymXirzQQACEIAABCAAgYwIIJ5khIuLIQABCEAgEYGHH37YlSc+9dRT0wKkKiqKohg/fnxa1++IiySmqPKLvjwRQya0ElFkQOsJKhJX5AdTXFxc913/9lq8eKIx9KV0FO/fEkUUseHNo+8aw5ujc+fOpq/mJpb4z0WeJaWlpTZmzJi0juuuu+6yLl26uMo6NAhAAAIQgAAEINDcCSCeNPcTYn0QgAAEWgiBmTNn2gMPPGDXX3+99ejRI3DVSplZsWKF9e/fv1l4dAQu2MyJHRI2/EKH0n8qKirqCSISRjwxRa9JVPDEknihRa8pcscvyEg08Qsw6axtR10jg1oZwyqSSGa8QU0RNKqoI9PhAw88MOhyXocABCAAAQhAAALNggDiSbM4BhYBAQhAIDwBGaCef/757kHWa9/85jddiWGlfei1M8880/bcc0/38pw5c0wpNzfeeKOLAFC75ZZbXAniY445JqsFydfEezCePHly4BiKPlEZW31XSePm4IUSvIBh8QAAE5ZJREFUuOg0LlBJZy+6RKLSwQcfXBeV0tSlktNYblaXSEBSBJHScxRtko7fygsvvGD333+/E9jCmNrKI+XCCy90Rrlemzp1qp199tkutUkljt955516+5JI57/Xs9o0nSAAAQhAAAIQyFsCiCd5e/RsHAIQyCUC3gOjhBG/8KGyr5MmTbKhQ4c2EEYklLz22mt23XXXudc98cUvsGTLSFVTJBLoATedplLCehCXx8ioUaPS6dJirsnW86Q5b3DRokXOaFeCl7xX0mnXXnutE5AkroVpie5T3f/yT/nhD3/oPGoknsT/LoSZk74QgAAEIAABCEAA8YR7AAIQgEAOENAn8VdddZVdeumlTghJ1J588kmXJuN9Oq+HzbZt21r37t2d4KIxbr31Vrv88svrIlHCoJk+fbr96U9/clEG/fr1S2uojz/+2JYsWeIeysNEJqQ1WRNdlEviiVJ0JHKNGDHCmf6m03TPSTCRofAhhxySTpeU1ySKmPJ3SCYkhp6YASAAAQhAAAIQyGsCiCd5ffxsHgIQyBUC3qfx8pxQmk6iSid+cUSlbmXyut9++9l7773nBBU9lEpgSdY/G1arV692D87HH3+8Ka0inSYPEc9QNhdSeXJBPPGn6OhM0vVjeeaZZ+ypp55yAlq6ESpB94iXsrP//vu7+za+IZ4EEeR1CEAAAhCAAASyIYB4kg01+kAAAhBohgQSeZ4oBcdL49Hriio566yzXIqOvFFk2HnDDTfYBRdc4LwowvidpELy29/+1lXjkTCTbvNSefTQPWzYMBcl0xJbSxZPZI6raCCVb84kRUfndMUVV7gIJt1vUbdEnifXXHONS9XB8yRq2owHAQhAAAIQgIAIIJ5wH0AAAhDIUQKKJLnkkkvMe6jUNj1DWKVSTJw40Rl93nTTTfbtb3/bHnroISe0eIayUWN59dVX7fnnn7fDDz88oyorEnmUyqNSvRJRmnO53kTMWqJ4sn79elu6dKkzZBVzma2m21566SWbNm2aHXnkkS6yqSmaIqYefPBB59/Tt29fPE+aAjpzQAACEIAABPKMAOJJnh0424UABPKHQKL0BT1kLl682FW1kbmmIgP0M0V5LF++3EWgeJV3GoOUok8k4Ojh/JxzznEPuum2zz//3D3QKyVJD/Rdu3ZNt+sOva4liSeKMBFjVT8S43RKD3twVWnp5ptvduk5SqdpyspJfhNZCYIYxu7QW57JIQABCEAAAjlJAPEkJ4+VTUEAAvlGQGkM8jA577zz6vxOEpnIeukOu+yyS523iReh4pU1TuSXEjXPefPmmVJ5FP1y+umnZzS8qrzoAV9ND/g9e/bMqH9TX9wSxJMvvvjCMS0sLHRMe/TokRGmO+64w2bPnm3nnnuu7b777hn1zfRi3a+zZs2q53fiN5Gl2k6mRLkeAhCAAAQgAIF0CCCepEOJayAAAQg0cwKJfB6U3uKVIfaW731Crwdcz2zT+5nSLPxljptiy4888oj95S9/cQ/d8l/JpMn0Vg/82rsqvyhKQqVwm1trruJJVVWVrVy50lVZkp+MRJNMo46UoqNokx/96EfOFLgpWiJvH6UV3XjjjW79eJ40xSkwBwQgAAEIQCD/CCCe5N+Zs2MIQAACzYqATEn1AL5u3TonomSSyqONyJdDvijycVEUivr37t272eyxuYknq1atMpUcVgSPDIL11aFDh4x4ibcih5SiozNTtAcNAhCAAAQgAAEI5DIBxJNcPl32BgEIQKAFEZg/f74TUWQoe9RRR2VVXUeRFBIG5OEiEUVfO9obpTmIJ4rSkSeJ2CglR1wy8TPxbiMJXU8//bTNmDHDedY0dopOC7p9WSoEIAABCEAAAjlOAPEkxw+Y7UEAAhBoaQSeffZZu/vuu23y5Mn2ve99z7p3757xFiorK51QoC+lcXhCSvv27TMeK2yHHSWelJWV1Qkmigzp16+f45BNapOiVP7617+a0nROO+00mzp1algs9IcABCAAAQhAAAItigDiSYs6LhYLAQhAIH8IKMJBD+x77LGHnXjiiS69JJu2efNmJ6Kowo9Sg5Rq4n01RUWYphJPFBWiajnel/w/OnXq5ASTbNNqPvnkE1fCeuHChU7Iki8ODQIQgAAEIAABCOQjAcSTfDx19gwBCECgBRF48cUX3QO8TEH1AK9KQdk2RaH4BQaZpja2mNJY4km8WKKIEv9ewlRNUjlrMVd5aAlXBx98cLbI6QcBCEAAAhCAAARyggDiSU4cI5uAAAQgkPsEVJ5WkSiKopCIMm7cuNCbTiSmeKktikpRmo++FxcXZz1XWPFEKUhKwZFYoi8JPoqkiVIs8TY3d+5cJ5ps3brViSb77LNP1vumIwQgAAEIQAACEMglAognuXSa7AUCEIBAHhCYN2+eE1FkBKvyuoqKyLTEbjJMElNUCnfjxo1OqPBEC4knElH8XxJWJGDoS68XFhYmHDaVeFJdXW0SRySI6LsnkPi/6+eeiKP5VRlH+w0TWeJfqPar6J4lS5a41CaJJhjB5sEvEluEAAQgAAEIQCAjAognGeHiYghAAAIQaC4Eli5d6h76Z86caUOGDLFDDjnEJk2alJUhatCeJKrECxsSSyQ8eMKHxpCI4okp3r+VJqR0Gu86v1ji7yNBRGJKvEgTlUji36PWInb6Wr58uWMng15xpEEAAhCAAAQgAAEINCSAeMJdAQEIQAACLZ6A0k0kBKgazP777+/EgL322qtJ9xUfReKJJG+//bZbS7yokipapbEW/tZbbzmx6fXXX3eM9DV27NjGmo5xIQABCEAAAhCAQM4QQDzJmaNkIxCAAAQgIAIvv/yyE1I++OADl9Jz6KGH2ogRI3YYnLCeJ2EX/uGHH9r06dOdaLLbbrs5JgceeGDYYekPAQhAAAIQgAAE8ooA4kleHTebhQAEIJA/BORXIsHg3//+t73yyivOx8P7ClOxJ1OCTS2eqFLOggULbP78+fb+++87oUT7lWjSFKWZM+XD9RCAAAQgAAEIQKAlEEA8aQmnxBohAAEIQCAUgYqKCickeF/Lli1rMjGlscWTeLFk6NChLsJkjz32cHssKSkJxY7OEIAABCAAAQhAAAJmiCfcBRCAAAQgkHcEkokpI0eOtJ122sn69evnvlTlJmyLSjxRBaBPP/3UlSletWqVS0uSGIRYEvaE6A8BCEAAAhCAAASCCSCeBDPiCghAAAIQyHECnpiiCj4rVqxwIoW+ZOoqEaVv3751gor+e8CAAWlX9clEPJHJrOaXQOKtwfsuQ1pvLZp/+PDhRJbk+H3J9iAAAQhAAAIQaD4EEE+az1mwEghAAAIQaGYE1q1bVxft4Rcz2rRpYx9//LHpu/+rbdu2DX6mKJHevXtbeXl53dfmzZvr/bde088URaKyyPFijUSTTp06NTM6LAcCEIAABCAAAQjkDwHEk/w5a3YKAQhAAAIREpDI4RdEPAEk/mcyb5UHSZDIIuGltLQ0whUyFAQgAAEIQAACEIBAVAQQT6IiyTgQgAAEIACBBAQmT55sM2bMgA0EIAABCEAAAhCAQAsmgHjSgg+PpUMAAhCAQPMngHjS/M+IFUIAAhCAAAQgAIEgAognQYR4HQIQgAAEIBCCAOJJCHh0hQAEIAABCEAAAs2EAOJJMzkIlgEBCEAAArlJAPEkN8+VXUEAAhCAAAQgkF8EEE/y67zZLQQgAAEINDGBBx54wE466aQmnpXpIAABCEAAAhCAAASiJIB4EiVNxoIABCAAAQhAAAIQgAAEIAABCEAg5wggnuTckbIhCEAAAhCAAAQgAAEIQAACEIAABKIkgHgSJU3GggAEIAABCEAAAhCAAAQgAAEIQCDnCCCe5NyRsiEIQAACEIAABCAAAQhAAAIQgAAEoiSAeBIlTcaCAAQgAAEIQAACEIAABCAAAQhAIOcIIJ7k3JGyIQhAAAIQaA4EnnzySbv99tvrLeWaa66xPffcszksjzVAAAIQgAAEIAABCGRAAPEkA1hcCgEIQAACEEiHwJw5c5xwcuONN1qXLl1cl48++sheeuklO+2009IZgmsgAAEIQAACEIAABJoRAcSTZnQYLAUCEIAABHKDwC233OI2cvbZZ+fGhtgFBCAAAQhAAAIQyHMCiCd5fgOwfQhAAAIQiJ6Al7JDmk70bBkRAhCAAAQgAAEI7AgCiCc7gjpzQgACEIBAzhOI9zzp379/vTSenAfABiEAAQhAAAIQgEAOEUA8yaHDZCsQgAAEINA8CWzZssWuvPJKt7hf/vKX1rp16+a5UFYFAQhAAAIQgAAEIJCQAOIJNwYEIAABCECgCQgkMpFtgmmZAgIQgAAEIAABCEAgAgKIJxFAZAgIQAACEICAn4AMYydOnFivLDEmstwjEIAABCAAAQhAoOUSQDxpuWfHyiEAAQhAoJkSUJTJJZdcUm91U6dOpfpOMz0vlgUBCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCCCeBBHidQhAAAIQgAAEIAABCEAAAhCAAATymgDiSV4fP5uHAAQgAAEIQAACEIAABCAAAQhAIIgA4kkQIV6HAAQgAAEIQAACEIAABCAAAQhAIK8JIJ7k9fGzeQhAAAIQgAAEIAABCEAAAhCAAASCCPx/m6zcShweLg4AAAAASUVORK5CYII=", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "fig = go.Figure()\n", "fig = met_object.plot_polar_scatter(fig=fig, sensor_object=sensor_group)\n", @@ -338,7 +8500,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "id": "625bf435-57c5-4688-a858-335d7a551acb", "metadata": {}, "outputs": [], @@ -358,10 +8520,1334 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "id": "0cd96e2d-2f35-464a-b088-1b8f3f704316", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.791714050564657, + 7.718237540043255, + 8.031656486135207, + 8.223226698536852, + 8.218807731163079, + 8.185643574955071, + 7.794624234656219, + 7.620110694793409, + 7.275749372954192, + 7.029489247478757, + 7.005447146729908, + 6.950554849446046, + 6.5952572736008435, + 5.670722904331665, + 4.633219256004186, + 3.539441897942694, + 2.8161757615155705, + 2.2779211217947637, + 2.0745550790102345, + 2.0214647272413453, + 1.9964920853424701, + 2.000852575176608, + 1.9963126120697006, + 1.9974147663996378 + ] + }, + { + "legendgroup": "Beam sensor 1", + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.794598393144694, + 4.006802529994472, + 4.447463297540425, + 5.111496514565832, + 5.396100523576821, + 5.613196197980132, + 5.6593174697231685, + 5.788230351783955, + 6.05036311395665, + 6.849153378600638, + 7.762957844685767, + 8.615287303631332, + 8.957781684609735, + 8.35830797842546, + 7.024706955714454, + 5.179122598109574, + 3.7854334090717483, + 2.641022614794618, + 2.225248550191615, + 2.0572469716135755, + 2.007182303060239, + 2.005825443548572, + 2.001793789629492, + 2.00267582003051 + ] + }, + { + "legendgroup": "Beam sensor 2", + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 2", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.3935431861339245, + 2.652626621461129, + 3.1509667408846997, + 3.8887196453804944, + 4.4619620709729375, + 4.862291907837204, + 4.775618316142517, + 4.266755975925206, + 3.6432292488783906, + 3.1804620367500456, + 3.335249324326946, + 4.422140591141545, + 6.362782149520328, + 8.155740103878497, + 9.546740430963878, + 9.426146994807988, + 8.64771292853549, + 6.570573953570048, + 5.128065711068347, + 3.7431305087916757, + 2.9268984897298744, + 2.4766287477503033, + 2.2656110539544514, + 2.121387467257954 + ] + }, + { + "legendgroup": "Beam sensor 3", + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 3", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.012366744598929, + 2.0736473164052693, + 2.2320828234983763, + 2.6648526542934325, + 3.3075328329125577, + 4.154784623078697, + 4.874705146875558, + 5.021692152651062, + 4.671634607533428, + 3.8501873348849465, + 3.266396938229498, + 3.2328029416584583, + 3.9197060623595643, + 4.915612214498838, + 6.1394139616632515, + 7.016110775439613, + 7.485268147762597, + 7.323188388139022, + 7.02790348186461, + 6.496744589859477, + 5.989518984719937, + 5.706087485013977, + 5.470657114025242, + 5.128381042359218 + ] + }, + { + "legendgroup": "Beam sensor 4", + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 4", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0034643278005198, + 2.03503177506568, + 2.086741386884045, + 2.273634634006135, + 2.654032244985692, + 3.2875412192309295, + 4.016320484607367, + 4.568620045735389, + 4.781698322616699, + 4.725514599783425, + 4.331826904105765, + 4.173161369291443, + 4.372986967965083, + 4.785377791404038, + 5.496571183198965, + 6.096679717395961, + 6.518283171549696, + 6.489843412399393, + 6.525799105020119, + 6.382856640265195, + 6.055487541341745, + 6.063084092112585, + 6.093142602023775, + 6.057337768301912 + ] + }, + { + "legendgroup": "Point sensor 0", + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 1.9981926227116058, + 2.0035967771957224, + 2.007785638574461, + 2.0071369969266817, + 2.003986626306235, + 1.9914278509057126, + 1.9948990374192408, + 1.999463619254624, + 1.9895335332960462, + 2.000685390515423, + 2.00262051522007, + 1.9865144990716013, + 1.9997480894045705, + 2.001462021131961, + 2.017419847595157, + 2.0051022026343825, + 2.0186141677519647, + 2.099198471338621, + 2.256197934175503, + 2.634642140106805, + 3.4639011221589744, + 4.845715404826579, + 7.364531396355585, + 11.265940243979086 + ] + }, + { + "legendgroup": "Point sensor 1", + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.092643660712165, + 7.667834335181266, + 6.343060276778562, + 5.076692625573246, + 3.656419322873028, + 2.807666317663072, + 2.339827196758854, + 2.116577721548318, + 2.028951160874966, + 2.0060044836575006, + 1.9996715214342469, + 1.9950816966568004, + 1.999643963962288, + 2.003385294941852, + 2.002457281161687, + 1.9947135488689347, + 1.9951476258144036, + 1.9992555315645966, + 1.9999807833367864, + 2.001375885801873, + 1.9908725874788058, + 1.9951980718612405, + 2.0005141552597387, + 1.9973940468766096 + ] + } + ], + "layout": { + "autosize": true, + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "autorange": true, + "range": [ + "2024-01-01 07:51:15.8414", + "2024-01-01 12:08:44.1586" + ], + "type": "date" + }, + "yaxis": { + "autorange": true, + "range": [ + 1.42401231150212, + 11.828442431548568 + ], + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAMgCAYAAADSp0wWAAAAAXNSR0IArs4c6QAAIABJREFUeF7svQu0pWV55/mc+zl1r6Kom1yLIgERwRiF1lYJyEwsZDqDCa1JVsbGYWo0phtlYFG6HJcxWjQ0SrfTGoaRGDtGrEQmLkKpMRA0sVNgQCIEUKGKa1EX6n4593Nm3o3fZu9d55y9n3d/3/s9zzm/s5YLiv287/vfv/+HUD++b++OycnJSWnjZ8fewTZWt7d0xZJ+2Xd4WMbG23oL7YVgdcsEurs6ZNnCPtl9YKjlNQyWS2B+f7eE3g4eHS03CKe3TOCERX1yZHBUhkcnWl7DYLkE1pwwIGX+s7Tcd+/v9P7eLpnX1yX7Do/4Cz9HEy+e3yOj45NybGhsjhLw97ZXLu2Xlw8Oy/gE/47vob2erk5ZsrBH9hwYLi1u+GcpPxAomkAH8qRoxOyfEUCe+LsWkCf+OkOe+OsMeeKrM+SJr75CWuSJv86QJ746Q5746ou08QSQJ/HsWKkkgDxRAjMwjjwxUIIyAvJECczAOPLEQAmKCMgTBSwjo8gTI0UoYiBPFLAMjCJPDJRAhCQEkCdJMHNIIIA88XcdIE/8dYY88dcZ8sRXZ8gTX32FtMgTf50hT3x1hjzx1Rdp4wkgT+LZsVJJAHmiBGZgHHlioARlBOSJEpiBceSJgRIUEZAnClhGRpEnRopQxECeKGAZGEWeGCiBCEkIIE+SYOaQQAB54u86QJ746wx54q8z5ImvzpAnvvoKaZEn/jpDnvjqDHniqy/SxhNAnsSzY6WSAPJECczAOPLEQAnKCMgTJTAD48gTAyUoIiBPFLCMjCJPjBShiIE8UcAyMIo8MVACEZIQQJ4kwcwhgQDyxN91gDzx1xnyxF9nyBNfnSFPfPUV0iJP/HWGPPHVGfLEV1+kjSeAPIlnx0olAeSJEpiBceSJgRKUEZAnSmAGxpEnBkpQRECeKGAZGUWeGClCEQN5ooBlYBR5YqAEIiQhgDxJgplDAgHkib/rAHnirzPkib/OkCe+OkOe+OorpEWe+OsMeeKrM+SJr75IG08AeRLPjpVKAsgTJTAD48gTAyUoIyBPlMAMjCNPDJSgiIA8UcAyMoo8MVKEIgbyRAHLwCjyJG0J+w8elg/e8Hl59Ilt1YPPPXutfOnGj8jSxQvThnF+2uDQiHzy5jvknnu3Vt7Jp6+/Sq5Y//Zp3xXyxHnhnuIjTzy19UpW5Im/zpAn/jpDnvjqDHniq6+QFnnirzPkia/OkCdp+8rkybUbrpQ3nX9W5fDP3ba58sePbrgybRjnp9Vym4pr49tDnjgv3FN85ImntpAn/tp6JTHyxF9zyBNfnSFPfPWFPPHXV0iMPPHVG/Lk+L6OjI3Jnz39rDxx4JCsHOiX95x6kvxyTneFTPWb/Lu2/EC2PvS4fOq6q2Sgv1dmuqMizH7ipjuqob9y6w11Embn7n3y3I7dlTtbVq88QW79ww/LVzd/t3J3Rvj1bTddK2ecumbKi/TpZ3fIhutvkZd27a28/oH3ra8KnR898qS8/5obK3+99k6ZLPuCBfPkG9+6r/J6baaZ9qx9L5ddcmH1/Yc1H990u7z70rfIpi98re68LHjguPGzt8t1H3pv9f00k1DIE1//3+Q6LfLEX33ceeKvM+SJv86QJ746Q5746gt54q8v5Im/zpAnx3f2lZ8/I/+45xWBEH7md3fJ5958fi7lTnfnyWknr6o8cpKJk1UrllXERa0kWLNyuXzznu/Ley57R0WyBPmw+e77q4/8BHnw4CNP1v16y30PVIXJTHIhO/e3Lr+oImPCr7OzHntym2zcdHt1n3DuM8/vrOTLBEgmTIJkueW2zZUM/X19lcdqptszmwuPK4VsQfwEgbRj18sVibP+4gumvRsnEyyf2Xh1VZ40SqjGwpAnuVzCbNIKAeRJK5RszSBPbPXRShrkSSuUbM0gT2z10SwN8qQZIXuv89iOvU6aJeLOk2aEbL2OPDm+j//z4cdk19Bw3QufesM5smqgv+3ypvrMk7Bp9nkdU0mBIBYyuVIboHG2UY40yoSZ5EKW68rLLzruc0Ma9w3n3vzFO2XTx66Wv/vhj+vumql9LWQNn+/S6p7hbpMgQ8JP9ucz3SWTZcg+KwZ50vblyQZ5EUCe5EUy3T7Ik3Ss8zoJeZIXyXT7IE/Ssc7jJORJHhTT7oE8Scs7j9OQJ3lQTLcH8uR41l/+2XZ58OV91RcGurrk1guKu/Ok9m6UZUsX1T06k4WolSu1j9bUPorTjjwJ5zQ+YpPdTRL2/fLXt9SByh7dmUmeBKkx0561Qqj2DptW5UmjYEGepPv/DU5qQgB54u8SQZ746wx54q8z5ImvzpAnvvoKaZEn/jpDnvjqDHlyfF8vDQ7J5u3Py7bDR2RFf7/82uoV8pYVJ+RS7HQfbJrdXXLeOeuqd3U0fvtOJiI2bby68mhNnneeNL652sdv/uTOb09550tY0ygsau88aczfuGdYn31Ibu17aUWe8JknuVyObFIUAeRJUWSL2xd5UhzbonZGnhRFtrh9kSfFsS1iZ+RJEVSL3RN5UizfInZHnhRBtbg9kSfFsZ1q56nkSe1fe91ZayufE5J95knYI4iFp7a/IOtOP6nucZYgI2o/i6SdO09Chi33bpXfueLSSuxa0fHU9hfrzgmvf+2u78n6Sy5s+thOq3s2fuZJs8d2Qga+bSfttctpCgLIEwUsI6PIEyNFKGIgTxSwjIwiT4wU0WIM5EmLoAyNIU8MldFiFORJi6CMjCFP0hYx3Wee1H5DTeO37TQ+mpM9QnPuWadXwmcfmtqOPJnpzEymZN+2E36dfRPPTHeeZB8YG77pJ/w0fttPs2/bqf0w2Klamulbiaaa5wNj017rc/o05Im/+pEn/jpDnvjrDHniqzPkia++Qlrkib/OkCe+OkOe+OqLtPEEkCfx7FipJIA8UQIzMI48MVCCMgLyRAnMwDjyxEAJigjIEwUsI6PIEyNFKGIgTxSwDIwiTwyUQIQkBJAnSTBzSCCAPPF3HSBP/HWGPPHXGfLEV2fIE199hbTIE3+dIU98dYY88dUXaeMJIE/i2bFSSQB5ogRmYBx5YqAEZQTkiRKYgXHkiYESFBGQJwpYRkaRJ0aKUMRAnihgGRhFnhgogQhJCCBPkmDmkEAAeeLvOkCe+OsMeeKvM+SJr86QJ776CmmRJ/46Q5746gx54qsv0sYTQJ7Es2OlkgDyRAnMwDjyxEAJygjIEyUwA+PIEwMlKCIgTxSwjIwiT4wUoYiBPFHAMjCKPDFQAhGSEECeJMHMIYEA8sTfdYA88dcZ8sRfZ8gTX50hT3z1FdIiT/x1hjzx1RnyxFdfpI0ngDyJZ8dKJQHkiRKYgXHkiYESlBGQJ0pgBsaRJwZKUERAnihgGRlFnhgpQhEDeaKAZWAUeWKgBCIkIYA8SYKZQwIB5Im/6wB54q8z5Im/zpAnvjpDnvjqK6RFnvjrDHniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIiAPFHAMjKKPDFShCIG8kQBy8Ao8sRACURIQgB5kgQzhwQCyBN/1wHyxF9nyBN/nSFPfHWGPPHVV0iLPPHXGfLEV2fIE199kTaeAPIknh0rlQSQJ0pgBsaRJwZKUEZAniiBGRhHnhgoQREBeaKAZWQUeWKkCEUM5IkCloFR5ImBEoiQhADyJAlmDgkEkCf+rgPkib/OkCf+OkOe+OoMeeKrr5AWeeKvM+SJr86QJ776Im08AeRJPDtWKgkgT5TADIwjTwyUoIyAPFECMzCOPDFQgiIC8kQBy8go8sRIEYoYyBMFLAOjyBMDJRAhCQHkSRLMHBIIIE/8XQfIE3+dIU/8dYY88dUZ8sRXXyEt8sRfZ8gTX50hT3z1Rdp4AsiTeHasVBJAniiBGRhHnhgoQRkBeaIEZmAceWKgBEUE5IkClpFR5ImRIhQxkCcKWAZGkScGSiBCEgLIkySYOSQQQJ74uw6QJ/46Q5746wx54qsz5ImvvkJa5Im/zpAnvjpDnvjqi7TxBJAn8exYqSSAPFECMzCOPDFQgjIC8kQJzMA48sRACYoIyBMFLCOjyBMjRShiIE8UsAyMIk8MlECEJASQJ0kwc0gggDzxdx0gT/x1hjzx1xnyxFdnyBNffYW0yBN/nSFPfHWGPPHVF2njCSBP4tmxUkkAeaIEZmAceWKgBGUE5IkSmIFx5ImBEhQRkCcKWEZGkSdGilDEQJ4oYBkYRZ4YKIEISQggT5Jg5pBAAHni7zpAnvjrDHnirzPkia/OkCe++gppkSf+OkOeFN/ZnoMiP3thQoZGJ2Xl0g456+RO6e6MOxd5EsctdtX+g4flgzd8Xh59Ylt1i3PPXitfuvEjsnTxwtht5/S6u7b8QJ55fqd8dMOVM3JAnszpyyTtm0eepOWdx2nIkzwopt0DeZKWdx6nIU/yoJhuD+RJOtZ5nYQ8yYtkun2QJ8WyHh6dlB88OiETk6+ec8aaTlm3uiPqYORJFLboRZk8uXbDlfKm88+q7PO52zZX/tjsN//Rh87ShT965El5/zU3Vt7dB963vik/5MksvRAsvi3kicVWZs6EPPHXGfLEX2fIE1+dIU989RXSIk/8dYY8Kbazlw9OykNPTdQdsnxRh7zxzLhbT5AnU/Q1dlRGnv8LGT/8U+nsXyE9ay6XzgXrcil2KnkS7pzY+tDj8qnrrpKB/l4ZHBqRT958h9xz79bKmZ++/iq5Yv3bK38eZj9x0x3VLF+59YY6CbNz9z55bsfuyp0tq1eeILf+4Yflq5u/W9kr/Pq2m66VM05dM+V7efrZHbLh+lvkpV17jxMStaKi9k6ZLPuCBfPkG9+6r7KuNtNMe9a+l8suubD6/sOaj2+6Xd596Vtk0xe+Js3uzOHOk1wuTTbJkwDyJE+aafZCnqThnOcpyJM8aabZC3mShnNepyBP8iKZbh/kSTrWeZ2EPMmL5NT7hDtPvv+TCam58UTWru6UM9dw50le5Eee+7qM7/vRq9t1zZOBc/8ol+2nu/PktJNXVQRJJk5WrVhWuZMizG/87O1y3YfeK2tWLpdv3vN9ec9l76hIliANNt99f/WRn3AHy4OPPFn36y33PVAVJjPd4ZKd+1uXX1SRMeHX2VmPPblNNm66vbpPrazIBEgmTIJkueW2zZUM/X19FQk03Z7ZXHhcKWQL4icIpB27Xq5InPUXX9D0bpJMKPHYTi6XJ5vkRQB5khfJdPsgT9Kxzusk5EleJNPtgzxJxzqPk5AneVBMuwfyJC3vPE5DnuRBceY9nt01KS+8PFn5zJNlCzrkrFM6ZaA37lzuPDme29ATm2RyeE/dC/1n3yAdfSviINesmuozT8LL2d0l2V0Xn9l4dfUOkSAWMrlSG6BxtlGONN7R0vjr2r2yXFdeflH1Lpfs9cZ9w7k3f/FO2fSxq+Xvfvjjurtmal8L68Pnu7S6Z7jbJLzv8JP9+XR3ydRm586Tti9LNsibAPIkb6LF74c8KZ5x3icgT/ImWvx+yJPiGed5AvIkT5pp9kKepOGc5ynIkzxpFr8X8uR4xiPP/pmM73/41Rc6+2Xg9Z/NpYyp7jyp/WvLli6qe3QmO7RWrtQ+WlP7KE478iSc0/iITXY3Sdj3y1/fUvf+s0dpZpIn4Y6SmfasFUK1d9ggT6a41FYs6Zd9h4dlbLz2prNcrkk2KYAA8qQAqAVviTwpGHAB2yNPCoBa8JbIk4IB57w98iRnoAm2Q54kgJzzEciTnIEWvB3y5HjAk0O7ZOTFv5KJo89IR99y6TnxbdK17M25NDGVPAkbZ3eXnHfOuupdHY3fvpOJiE0br648WpPnnSeNb6728Zs/ufPbU975EtY03s1Se+dJY/7GPcP67ENya98L8gR5ksvfbGVugjwpk37c2ciTOG5lrkKelEk/7mzkSRy3slYhT8oiH38u8iSeXVkrkSdlkY87F3kSxy12VbM7T1531trK54Rkn3kSzgli4antL8i600+qe5wlyIjazyJp586TkGvLvVvld664tPLWakXHU9tfrDsnvP61u74n6y+5sOljO63u2fiZJzy203CFcedJ7N9y5axDnpTDvZ1TkSft0CtnLfKkHO7tnIo8aYde+rXIk/TM2z0RedIuwfTrkSfpmbdzIvKkHXr6tdN95kntN9Q0fttO46M52SM05551eiVA9vko7ciTmc7MZEr2tcDh19lXA89050n2gbHZtwY1fttPs2/bqf3cl6lI134DUPZ6LcfGNXxVsf56ZUUkAeRJJLgSlyFPSoQfeTTyJBJcicuQJyXCjzgaeRIBreQlyJOSC4g4HnkSAa3EJciTEuFzdFICyJOkuOf2YcgTf/0jT/x1hjzx1xnyxFdnyBNffYW0yBN/nSFPfHWGPPHVF2njCSBP4tmxUkkAeaIEZmAceWKgBGUE5IkSmIFx5ImBEhQRkCcKWEZGkSdGilDEQJ4oYBkYRZ4YKIEISQggT5Jg5pBAAHni7zpAnvjrDHnirzPkia/OkCe++gppkSf+OkOe+OoMeeKrL9LGE0CexLNjpZIA8kQJzMA48sRACcoIyBMlMAPjyBMDJSgiIE8UsIyMIk+MFKGIgTxRwDIwijwxUAIRkhBAniTBzCGBAPLE33WAPPHXGfLEX2fIE1+dIU989RXSIk/8dYY88dUZ8sRXX6SNJ4A8iWfHSiUB5IkSmIFx5ImBEpQRkCdKYAbGkScGSlBEQJ4oYBkZRZ4YKUIRA3migGVgFHlioAQiJCGAPEmCmUMCAeSJv+sAeeKvM+SJv86QJ746Q5746iukRZ746wx54qsz5ImvvkgbTwB5Es+OlUoCyBMlMAPjyBMDJSgjIE+UwAyMI08MlKCIgDxRwDIyijwxUoQiBvJEAcvAKPLEQAlESEIAeZIEM4cEAsgTf9cB8sRfZ8gTf50hT3x1hjzx1VdIizzx1xnyxFdnyBNffZE2ngDyJJ4dK5UEkCdKYAbGkScGSlBGQJ4ogRkYR54YKEERAXmigGVkFHlipAhFDOSJApaBUeSJgRKIkIQA8iQJZg4JBJAn/q4D5Im/zpAn/jpDnvjqDHniq6+QFnnirzPkia/OkCe++iJtPAHkSTw7VioJIE+UwAyMI08MlKCMgDxRAjMwjjwxUIIiAvJEAcvIKPLESBGKGMgTBSwDo8gTAyUQIQkB5EkSzBwSCCBP/F0HyBN/nSFP/HWGPPHVGfLEV18hLfLEX2fIE1+dIU989UXaeALIk3h2rFQSQJ4ogRkYR54YKEEZAXmiBGZgHHlioARFBOSJApaRUeSJkSIUMZAnClgGRpEnBkogQhICyJMkmDkkEECe+LsOkCf+OkOe+OsMeeKrM+SJr75CWuSJv86QJ746Q5746ou08QSQJ/HsWKkkgDxRAjMwjjwxUIIyAvJECczAOPLEQAmKCMgTBSwjo8gTI0UoYiBPFLAMjCJPDJRAhCQEkCdJMHNIIIA88XcdIE/8dYY88dcZ8sRXZ8gTX32FtMgTf50hT3x1hjzx1Rdp4wkgT+LZsVJJAHmiBGZgHHlioARlBOSJEpiBceSJgRIUEZAnClhGRpEnRopQxECeKGAZGEWeGCiBCEkIIE+SYOaQQAB54u86QJ746wx54q8z5ImvzpAnvvoKaZEn/jpDnvjqDHniqy/SxhNAnsSzY6WSAPJECczAOPLEQAnKCMgTJTAD48gTAyUoIiBPFLCMjCJPjBShiIE8UcAyMIo8SVvC/oOH5YM3fF4efWJb9eBzz14rX7rxI7J08cK0YZyf9rnbNsuXv76l+i4+ff1VcsX6t0/7rpAnzgv3FB954qmtV7IiT/x1hjzx1xnyxFdnyBNffYW0yBN/nSFPfHWGPEnbVyZPrt1wpbzp/LMqhwcJEH4+uuHKtGEcnzY4NCJf+tO/kn/33ndVpNPTz+6QDdffIps2Xl3l2vj2kCeOC/cWHXnirTHkib/GRJAn/lpDnvjqDHniqy/kib++QmLkia/ekCdT9DV0VEZ/+E2ZePFn0rH4ROl+82XSuXpdLsVOJU/u2vID2frQ4/Kp666Sgf5eCWLgkzffIffcu7VyZu0dFWH2EzfdUc3ylVtvqJMwO3fvk+d27K7c2bJ65Qly6x9+WL66+buVvcKvb7vpWjnj1DVTvpdMQLy0a2/l9Q+8b31V6PzokSfl/dfcWPnrtXfKZNkXLJgn3/jWfZXXazPNtGfte7nskgur7z+s+fim2+Xdl75FNn3ha3XnTVdCxuzCN7522rtPkCe5XMJs0goB5EkrlGzNcOeJrT5aSYM8aYWSrRnkia0+mqVBnjQjZO917jyx10mzRMiTZoRsvY48Ob6P0R/cKRM/f+jVF/rmSd/vfiqX4qa78+S0k1dVftOfSYBVK5ZVxEWY3/jZ2+W6D71X1qxcLt+85/vynsveUZEsQT5svvv+6iM/4Q6WBx95su7XW+57oCpMZrrDJTv3ty6/qCJjwq+zsx57cpts3HR7dZ9w7jPP76zkywRIJkyCZLnlts2VDP19fRUJNN2e2Vy4cyRkC+InCKQdu16u3EWy/uILWr4bZyqujYUhT3K5hNmkFQLIk1Yo2ZpBntjqo5U0yJNWKNmaQZ7Y6qNZGuRJM0L2Xkee2OukWSLkSTNCtl5Hnhzfx8hf3iSTB/fUvdD7nuukY8mKtsub6jNPwqbZ3SXZXRef2Xh19Q6RIBYyuVIboHG2UY403tHS+OvavbJcV15+0XF3bjTuG869+Yt3yqaPXS1/98Mf1901U/ta2D98vkure4a7TcL7Dj/Zn093l0xjEa08+oQ8afvyZYNWCSBPWiVlZw55YqeLVpMgT1olZWcOeWKni1aSIE9aoWRrBnliq49W0iBPWqFkZwZ5cnwXo/f/uUw8/eNXX+jpl77f+3QupU11h0TtX1u2dFHlrovs0Zns0Fq5Uvt67aM47ciTcE7jIzbZ3SSNH8waZrNHd2aSJ7WfRZK9n9o9a4VQ7R02WnlSe9dKuCNnuh/kSS6XMJu0QgB50golWzPIE1t9tJIGedIKJVszyBNbfTRLgzxpRsje68gTe500S4Q8aUbI1uvIk+P7mDywW8a2fksmdj8rHYuWS9c5b5WuM9+US3HTPV6S3V1y3jnrqnd1NH77TuOHouZ550njm6t9/OZP7vz2lHe+hDWNd7PU3nnSmL9xz7A++5Dc2veikSetipOwJ/Ikl0uYTVohgDxphZKtGeSJrT5aSYM8aYWSrRnkia0+mqVBnjQjZO915Im9TpolQp40I2TrdeRJ2j6a3XnyurPWVj4nJPvMk5AuiIWntr8g604/qe5xliAjaj+LpJ07T0KuLfduld+54tIKkFrR8dT2F+vOCa9/7a7vyfpLLmz62E6rezZ+5kkrj+208qhObbvIk7TX+pw+DXnir37kib/OkCf+OkOe+OoMeeKrr5AWeeKvM+SJr86QJ2n7mu4zT2q/oabx23YaH8358te3VEKfe9bplT9mn4/SjjyZ6cxMpmTfthN+nX0Tz0x3nmQfGJt9a1Djt/00+7ad2s99aWxpOo6139rTuAZ5kvZan9OnIU/81Y888dcZ8sRfZ8gTX50hT3z1hTzx11dIjDzx1RvyxFdfpI0ngDyJZ8dKJQHkiRKYgXHkiYESlBGQJ0pgBsaRJwZKUERAnihgGRnlzhMjRShiIE8UsAyMIk8MlECEJASQJ0kwc0gggDzxdx0gT/x1hjzx1xnyxFdnyBNffYW0yBN/nSFPfHWGPPHVF2njCSBP4tmxUkkAeaIEZmAceWKgBGUE5IkSmIFx5ImBEhQRkCcKWEZGkSdGilDEQJ4oYBkYRZ4YKIEISQggT5Jg5pBAAHni7zpAnvjrDHnirzPkia/OkCe++gppkSf+OkOe+OoMeeKrL9LGE0CexLNjpZIA8kQJzMA48sRACcoIyBMlMAPjyBMDJSgiIE8UsIyMIk+MFKGIgTxRwDIwijwxUAIRkhBAniTBzCGBAPLE33WAPPHXGfLEX2fIE1+dIU989RXSIk/8dYY88dUZ8sRXX6SNJ4A8iWfHSiUB5IkSmIFx5ImBEpQRkCdKYAbGkScGSlBEQJ4oYBkZRZ4YKUIRA3migGVgFHlioAQiJCGAPEmCmUMCAeSJv+sAeeKvM+SJv86QJ746Q5746iukRZ746wx54qsz5ImvvkgbTwB5Es+OlUoCyBMlMAPjyBMDJSgjIE+UwAyMI08MlKCIgDxRwDIyijwxUoQiBvJEAcvAKPLEQAlESEIAeZIEM4cEAsgTf9cB8sRfZ8gTf50hT3x1hjzx1VdIizzx1xnyxFdnyBNffZE2ngDyJJ4dK5UEkCdKYAbGkScGSlBGQJ4ogRkYR54YKEERAXmigGVkFHlipAhFDOSJApaBUeSJgRKIkIQA8iQJZg4JBJAn/q4D5Im/zpAn/jpDnvjqDHniq6+QFnnirzPkia/OkCe++iJtPAHkSTw7VioJIE+UwAyMI08MlKCMgDxRAjMwjjwxUIIiAvJEAcvIKPLESBGKGMgTBSwDo8gTAyUQIQkB5EkSzBwSCCBP/F0HyBN/nSFP/HWGPPHVGfLEV18hLfLEX2fIE1+dIU989UXaeALIk3h2rFQSQJ4ogRkYR54YKEEZAXmiBGZgHHlioARFBOSJApaRUeSJkSIUMZAnClgGRpEnBkogQhICyJMkmDkkEECe+LsOkCf+OkOe+OsMeeKrM+SJr75CWuSJv86QJ746Q5746ou08QSQJ/HsWKkkgDxRAjMwjjwxUIIyAvJECczAOPLEQAmKCMgTBSwjo8gTI0UoYiBPFLAMjCJPDJRAhCQEkCdJMHNIIIA88XcdIE/8dYY88dcZ8sRXZ8gTX32FtMgTf50hT3x1hjzx1Rdp4wkgT+LZsVJJAHmiBGZgHHlioARlBOSJEpiBceSJgRIUEZAnClhGRpEnRopQxECeKGBNxeNsAAAgAElEQVQZGEWeGCiBCEkIIE+SYOaQQAB54u86QJ746wx54q8z5ImvzpAnvvoKaZEn/jpDnvjqDHmStq/9Bw/LB2/4vDz6xLbqweeevVa+dONHZOnihWnDOD/tri0/kE/cdEf1XXz6+qvkivVvn/ZdIU+cF+4pPvLEU1uvZEWe+OsMeeKvM+SJr86QJ776Qp746yskRp746g15kravTJ5cu+FKedP5Z1UO/9xtmyt//OiGK9OGcXza4NCIfOlP/0r+3XvfVZFOU3FtfHvIE8eFe4uOPPHWGPLEX2MiyBN/rSFPfHWGPPHVF/LEX1/IE3+dIU+O72xiZFJ2PzIkx/aMSe+CTjnhnH4ZWN6VS7lT/SY/3EGx9aHH5VPXXSUD/b0SxMAnb75D7rl3a+XM2jsqGu+2+MqtN9RJmJ2798lzO3ZX7mxZvfIEufUPPyxf3fzdyl7h17fddK2cceqaKd/L08/ukA3X3yIv7dpbef0D71tfFTo/euRJef81N1b+eu2dMln2BQvmyTe+dV/l9dpMM+1Z+14uu+TC6vsPaz6+6XZ596VvkU1f+FrdedOVkDG78I2vnfbuE+RJLpcwm7RCAHnSCiVbM9x5YquPVtIgT1qhZGsGeWKrj2ZpkCfNCNl7ncd27HXSLBF3njQjZOt15Mnxfex+eEgOPz9afaGzp0NOX78gl+Kmu/PktJNXVX7Tn0mAVSuWVcRFmN/42dvlug+9V9asXC7fvOf78p7L3lGRLEE+bL77/uojP+EOlgcfebLu11vue6AqTGa6wyU797cuv6giY8Kvs7Mee3KbbNx0e3WfcO4zz++s5MsESCZMgmS55bbNlQz9fX0VCTTdntlcuHMkZAviJwikHbterkic9Rdf0PLdOJmk2bTx6qpMaiwMeZLLJcwmrRBAnrRCydYM8sRWH62kQZ60QsnWDPLEVh/N0iBPmhGy9zryxF4nzRIhT5oRsvU68uT4Pp6796iMHpmoe+GUS+ZLz4LOtsub6jNPwqbZ3SXZXRef2Xh19Q6RIBYyuVIboHG2UY403tHS+OvavbJcV15+0XF3bjTuG869+Yt3yqaPXS1/98Mf1901U/ta2D98vkure4a7TcL7Dj/Zn093l0yWvZYnn3nS9uXJBnkRQJ7kRTLdPsiTdKzzOgl5khfJdPsgT9KxzuMk5EkeFNPugTxJyzuP05AneVBMtwfy5HjWux4alCMvjFVf6OwWOf2yfD7Mdao7T2r/2rKli+oenclC1MqV2kdrah/FaUeehHMaH7HJ7iYJ+37561vqQGWP7swkT8IdJTPtWSuEau+w0ciTLBSP7aT7/wxOaoEA8qQFSMZGkCfGCmkhDvKkBUjGRpAnxgppEgd54quvkBZ54q8z5ImvzpAnx/c1enhC9jw6JEP7x6V3fqcsXtsrC0/pyaXY6T7YNLu75Lxz1lXv6mj89p3GR1PyvPOk8c3VPn7zJ3d+e8o7X8KaxrtZau88aczfuGdYn31Ibu17iZEnWZbscaKpyuKxnVwuYTZphQDypBVKtmaQJ7b6aCUN8qQVSrZmkCe2+miWBnnSjJC915En9jpplgh50oyQrdeRJ2n7aHbnyevOWlv5nJDsM09CuiAWntr+gqw7/aS6x1mCjKj9LJJ27jwJubbcu1V+54pLK0BqRcdT21+sOye8/rW7vifrL7mw6WM7re7Z+JknzR7bCXmD1Png//Iblc9/memxo6xh5Enaa31On4Y88Vc/8sRfZ8gTf50hT3x1hjzx1VdIizzx1xnyxFdnyJO0fU33mSe131DT+G07jY/mZI/QnHvW6ZXw2eejtCNPZjozkynZt+2EX2ffxDPTnSfZB8Zm3xrU+G0/zb5tp/ZzX6ZqqfFxIj7zJO21zGkzEECe+Ls8kCf+OkOe+OsMeeKrM+SJr76QJ/76ComRJ756Q5746ou08QS48ySeHSuVBJAnSmAGxpEnBkpQRkCeKIEZGEeeGChBEQF5ooBlZJQ7T4wUoYiBPFHAMjCKPDFQAhGSEECeJMHMIYEA8sTfdYA88dcZ8sRfZ8gTX50hT3z1FdIiT/x1hjzx1RnyxFdfpI0ngDyJZ8dKJQHkiRKYgXHkiYESlBGQJ0pgBsaRJwZKUERAnihgGRlFnhgpQhEDeaKAZWAUeWKgBCIkIYA8SYKZQwIB5Im/6wB54q8z5Im/zpAnvjpDnvjqK6RFnvjrDHniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIiAPFHAMjKKPDFShCIG8kQBy8Ao8sRACURIQgB5kgQzhwQCyBN/1wHyxF9nyBN/nSFPfHWGPPHVV0iLPPHXGfLEV2fIE199kTaeAPIknh0rlQSQJ0pgBsaRJwZKUEZAniiBGRhHnhgoQREBeaKAZWQUeWKkCEUM5IkCloFR5ImBEoiQhADyJAlmDgkEkCf+rgPkib/OkCf+OkOe+OoMeeKrr5AWeeKvM+SJr86QJ776Im08AeRJPDtWKgkgT5TADIwjTwyUoIyAPFECMzCOPDFQgiIC8kQBy8go8sRIEYoYyBMFLAOjyBMDJRAhCQHkSRLMHBIIIE/8XQfIE3+dIU/8dYY88dUZ8sRXXyEt8sRfZ8gTX50hT3z1Rdp4AsiTeHasVBJAniiBGRhHnhgoQRkBeaIEZmAceWKgBEUE5IkClpFR5ImRIhQxkCcKWAZGkScGSiBCEgLIkySYOSQQQJ74uw6QJ/46Q5746wx54qsz5ImvvkJa5Im/zpAnvjpDnvjqi7TxBJAn8exYqSSAPFECMzCOPDFQgjIC8kQJzMA48sRACYoIyBMFLCOjyBMjRShiIE8UsAyMIk8MlECEJASQJ0kwc0gggDzxdx0gT/x1hjzx1xnyxFdnyBNffYW0yBN/nSFPfHWGPPHVF2njCSBP4tmxUkkAeaIEZmAceWKgBGUE5IkSmIFx5ImBEhQRkCcKWEZGkSdGilDEQJ4oYBkYRZ4YKIEISQggT5Jg5pBAAHni7zpAnvjrDHnirzPkia/OkCe++gppkSf+OkOe+OoMeeKrL9LGE0CexLNjpZIA8kQJzMA48sRACcoIyBMlMAPjyBMDJSgiIE8UsIyMIk+MFKGIgTxRwDIwijwxUAIRkhBAniTBzCGBAPLE33WAPPHXGfLEX2fIE1+dIU989RXSIk/8dYY88dUZ8sRXX6SNJ4A8iWfHSiUB5IkSmIFx5ImBEpQRkCdKYAbGkScGSlBEQJ4oYBkZRZ4YKUIRA3migGVgFHlioAQiJCGAPEmCmUMCAeSJv+sAeeKvM+SJv86QJ746Q5746iukRZ746wx54qsz5EnavvYfPCwfvOHz8ugT26oHn3v2WvnSjR+RpYsXpg0zi0773G2b5cFHnpyRI/JkFhVu/a0gT6w3dHw+5Im/zpAn/jpDnvjqDHniqy/kib++QmLkia/ekCdp+8rkybUbrpQ3nX9W5fDwG//w89ENV6YNM0tOC/y+/PUt0kxCIU9mSeEe3gbyxENL9RnnD3RLd0eHHDw26i/8HE2MPPFXPPLEV2fIE199IU/89YU88ddZT3enLJnfI3sODpcWPvyz1NLP4Nhh+c7TfyrbDzwmJwyslotOvVJOXXx2LhGnkid3bfmBbH3ocfnUdVfJQH+vDA6NyCdvvkPuuXdr5cxPX3+VXLH+7ZU/D7OfuOmOapav3HpDnYTZuXufPLdjd+XOltUrT5Bb//DD8tXN363sFX59203XyhmnrpnyvTz97A7ZcP0t8tKuvZXXP/C+9VWh86NHnpT3X3Nj5a/XSoos+4IF8+Qb37qv8nptppn2rH0vl11yYfX9hzUf33S7vPvSt8imL3xtRikS9njm+Z3ytgteL7fctpk7T3K5StmkbQLIk7YRJt8AeZIcedsHIk/aRph8A+RJcuRtHYg8aQtfKYt5bKcU7G0dyp0nbeFLvhh5cjzyv/757fLYnh9WX+jvni/XvPm/5tLNdHeenHbyqoogycTJqhXLKuIizG/87O1y3YfeK2tWLpdv3vN9ec9l76hIliAONt99f1UYND66En695b4HqsJkpjtcsnN/6/KLKjIm/Do767Ent8nGTbdX98mERciXCZBMmATJkkmM/r6+igSabs9a2RGyBfETBNKOXS9XJM76iy+Y8W6cWukUMqrkSTgwg17b7HRGJ8zs2DuYy0UQs8mKJf2y7/CwjI1PxixnTWICyJPEwHM4DnmSA8TEWyBPEgPP4TjkSQ4QE26BPEkIO6ejkCc5gUy4DfIkIewcjkKeHA/x/374Btk3tLPuhavfsKlyF0q7P1N95knYM7u7JLvr4jMbr67eITLd7/MbZxvlSOMdLY2/rn0vWa4rL7+oepdL9nrjvuHcm794p2z62NXydz/8cd1dM7WvhfXh811a3TPcbRLed/jJ/ny6u2SCpPmLu++v3q1SK22m++yYymM7tXKk9paecGjjJo1vHHnS7uU/d9YjT/x1jTzx1xnyxF9nyBNfnSFPfPUV0iJP/HWGPPHVGfLk+L7u/tlt8i8v/2P1hb6uAfnIBV/Kpdip7jyp/WvLli6qe3QmO7RWrtQ+WlP7KE478iSc0/iITXY3SfaZIrUAskd3ZpInQWLMtGftjR+1d9i0Ik8aH1/Kss30uSd1n3kylZFq/GuNMgV5ksvfA3NiE+SJv5qRJ/46Q5746wx54qsz5ImvvpAn/voKiZEnvnpDnhzf197BHfK32/9cXjz8lCztXym/uvqdcu6Kt+VS7FTyJGyc/b79vHPWVe/qaLyDIhMRmzZeXXm0Js87TxrfXK03+JM7vz3lEy5hTePdLLV3njTmb9wzrM8+JLf2vbQiT2bKO+OdJ9nCRlGSPbd04RtfW731phEw8iSXvwfmxCbIE381I0/8dYY88dcZ8sRXZ8gTX30hT/z1hTzx1xnyJG1nze48ed1ZayufE5J95klIF34P/9T2F2Td6SfVPc4SZETtZ5G0c+dJyLXl3q3yO1dcWgFSKzqe2v5i3Tnh9a/d9T1Zf8mFTR/baXXPxs88afbYTmHyJPuAlgx8bZADR8r7Fo5F83rk6NCojE+kvWA5LY5AV6fI/P4eOcQ3t8QBLGFVX2+ndHZ0yODweAmnc2QMgQUD3TI0Oi5jY3wWVAy/MtYsWdAjZf6ztIz37PnM8JuE3p4OOTrI/y966XGgr0vGJyZlZJR/YfTS2aL5PXJkcFQmqMxFZV1dHTKvr0sOHxsrLW/4Z+lc+ZnuM09qv6Gm8dt2Gh/NCV/LG37OPev0yh+zz0dpR57MdGYmU7Jv2wm/zr6JZ6Y7T7IPjM2+Najx236afdtO7ee+NLs+Wv7Mk2yjmDtPjg2X9zdJ+K8/w6MTMjnJbxKaXQwWXu/o6JC+nk4ZGuFfOC300UqG7q5O6RSREQxlK7hMzPT1dMnY2ISM8/+LJvpoJcS8vm4p85+lrWRk5lUCXZ0d0t3ZKcNj/LPMy3XR290pE5MiY/yzzEtlMtDbJUMjEzIp/Du+h9LCf2gLf5+F/3hT1k/4Zyk/ECiaAJ95UjRh9q8S4LEdfxcDj+3464zHdvx1xmM7vjrjsR1ffYW0fGCsv874zBNfnfHYjq++SBtPoKk84dt24uGysp4A8sTfFYE88dcZ8sRfZ8gTX50hT3z1hTzx11dIjDzx1RvyxFdfpI0ncNxXFYetWn2WKMzygbHx8OfaSuSJv8aRJ/46Q5746wx54qsz5ImvvpAn/vpCnvjrDHnirzMSxxGou/MkZgvkSQy1ubkGeeKvd+SJv86QJ/46Q5746gx54qsv5Im/vpAn/jpDnvjrjMRxBJAncdxYFUEAeRIBreQlyJOSC4g4HnkSAa3kJciTkgtQHo88UQIzMM5nnhgoQRmBx3aUwEoeR56UXADHJyOAPEmGmoOQJ/6uAeSJv86QJ/46Q5746gx54quvkBZ54q8z5ImvzpAnvvoibTwB5Ek8O1YqCSBPlMAMjCNPDJSgjIA8UQIzMI48MVCCIgLyRAHLyCjyxEgRihjIEwUsA6PIEwMlECEJAeRJEswcEgggT/xdB8gTf50hT/x1hjzx1RnyxFdfIS3yxF9nyBNfnSFPfPVF2ngCyJN4dqxUEkCeKIEZGEeeGChBGQF5ogRmYBx5YqAERQTkiQKWkVHkiZEiFDGQJwpYBkaRJwZKIEISAsiTJJg5JBBAnvi7DpAn/jpDnvjrDHniqzPkia++Qlrkib/OkCe+OkOe+OqLtPEEkCfx7FipJIA8UQIzMI48MVCCMgLyRAnMwDjyxEAJigjIEwUsI6PIEyNFKGIgTxSwDIwiTwyUQIQkBJAnSTBzSCCAPPF3HSBP/HWGPPHXGfLEV2fIE199hbTIE3+dIU98dYY88dUXaeMJIE/i2bFSSQB5ogRmYBx5YqAEZQTkiRKYgXHkiYESFBGQJwpYRkaRJ0aKUMRAnihgGRhFnhgogQhJCCBPkmDmkEAAeeLvOkCe+OsMeeKvM+SJr86QJ776CmmRJ/46Q5746gx54qsv0sYTQJ7Es2OlkgDyRAnMwDjyxEAJygjIEyUwA+PIEwMlKCIgTxSwjIwiT4wUoYiBPFHAMjCKPDFQAhGSEECeJMHMIYEA8sTfdYA88dcZ8sRfZ8gTX50hT3z1FdIiT/x1hjzx1RnyxFdfpI0ngDyJZ8dKJQHkiRKYgXHkiYESlBGQJ0pgBsaRJwZKUERAnihgGRlFnhgpQhEDeaKAZWAUeWKgBCIkIYA8SYKZQwIB5Im/6wB54q8z5Im/zpAnvjpDnvjqK6RFnvjrDHniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIiAPFHAMjKKPDFShCIG8kQBy8Ao8sRACS1EePrZHfLxTbfLZzZeLWecuqaFFYw0EkCecE0kI4A8SYY6t4OQJ7mhTLYR8iQZ6twOQp7khjLJRsiTJJhzPQR5kivOJJshT5Jgzu0Q5EluKFvaaP/Bw/LBGz4vjz6xrTr/6euvkivWv33G9Rp5opltKbSRoR898qS8/5obK2nOPXutfOnGj8jSxQtbToc8aRkVg+0SQJ60SzD9euRJeubtnog8aZdg+vXIk/TM2zkRedIOvXLWIk/K4d7OqciTduilX4s8Scs8kyfXbrhS3nT+WZL9+srLL2oqUFpNOhvlSeN7umvLD2TrQ4/Lp667Sgb6e1tCgzxpCRNDeRBAnuRBMe0eyJO0vPM4DXmSB8W0eyBP0vJu9zTkSbsE069HnqRn3u6JyJN2CaZdjzw5nvfQ6KT898eHZcfLY7J4fqf86i/1yeplXbkU0yhPwqZBBDzz/E756IYrK3/+iZvuqJx12SUXVuVAozz43G2b5cixITly5Jjcc+9WWb3yBLntpmtlzcrl8smb76j8teznK7feUBE1jT9hjy9/fUvlL2frwyNBg0MjdXtkd8Zk2d/9zn8lX9n8HXlp1966jGGf6fZsvOOmNlPje5nqTpxaRuGcGEGEPMnlEmaTVgggT1qhZGsGeWKrj1bSIE9aoWRrBnliq49maZAnzQjZex15Yq+TZomQJ80I2XodeXJ8H3//2JA8tWOs+kJfj8hv/9qCXIqbSp4EeRB+3nbB6+WW2zZXH0cJf33n7n0VgbJj18t1n3kSXtty3wMVYRKER+2dGI2zUwUPj8D8xd33V+VM+HX4ed1ZayviZNWKZRWZE/Ju/Oztct2H3ivLliysPHJ0ypoVlXXhJ8xe+MbXVu6aabZnNhfEx4brb5FNG6+uSJ3G9zJV3oxRyBR+puLYrCDkSTNCvJ4bAeRJbiiTbYQ8SYY6t4OQJ7mhTLYR8iQZ6lwOQp7kgjHpJsiTpLhzOQx5kgvGZJsgT45H/c1/OCqHjk3WvXDFW+dV7kJp96fxN/21IuHvH/hJZftMENTeXRH+eu0HxjbKhFpx0Yo8CbJl8933H/e5IVPd0RHOOu3kVfJrb31DRZ5kjxyFTNlrQZ5o98zea+N7mU6ehAzZZ8MgT9q9EllfKAHkSaF4C9kceVII1kI3RZ4UireQzZEnhWAtbFPkSWFoC9sYeVIY2sI2Rp4UhraQjZEnx2P9/qNDsu2lV+886ekW+d2L873zpPYDY7NHWGpFREhVe9dH3vIkEx/ZYzvZI0JBvIS7QsIjObU/4VGaZvJkpj1v/uKdsuljV1c/4LX2MZxW5UmtWEKeFPJ/B2yaFwHkSV4k0+2DPEnHOq+TkCd5kUy3D/IkHes8TkKe5EEx7R7Ik7S88zgNeZIHxXR7IE+OZ33g6IQ88OSw7DkwLovmdcrZp/bKmWu6cyllpt/0N0qEIu88qX0z2WechMdqzjtnnTSKjmx2ukeOau8IyWYb92z8muXa99qKPOEzT5b0y77DwzI2Xn9LVC5XJZvkTgB5kjvSwjdEnhSOOPcDkCe5Iy18Q+RJ4YhzPQB5kivOJJshT5JgzvUQ5EmuOAvfDHlSOOK6A2aSJ+HRm42bbq9+jkmzzzwJG2eP+NQ+tjM0PHzc4zWN7/K79z8o604/qfJ5KbWi410XX1j3mSdhXZA4T21/Qd78hrNnfGyn1T2n+syT2vcyVSN82w7yJO3fqW2ehjxpE2AJy5EnJUBv80jkSZsAS1iOPCkBehtHIk/agFfSUuRJSeDbOBZ50ga8EpYiT9JCb/a4iebbdqaTJ+Gre2v3merbdoJsef81N1bf/Afet74qYhq/bSf7Jp7sA2On+8yTmfZs9m07zeRJeL12/3PPXnvc57U0a5IPjG1GiNdzI4A8yQ1lso2QJ8lQ53YQ8iQ3lMk2Qp4kQ53LQciTXDAm3QR5khR3LochT3LBmGwT5Eky1BxUMgHkSckFzKXjkSf+2kae+OsMeeKvM+SJr86QJ776CmmRJ/46Q5746gx54qsv0sYTQJ7Es2OlkgDyRAnMwDjyxEAJygjIEyUwA+PIk+JL6D6wQ/q3/0hkbFiGT3mDjK48M/pQ5Ek0utIWIk9KQx99MPIkGl0pC5EnpWDn0BIIIE9KgD5Xj0Se+GseeeKvM+SJv86QJ8V21nXsoCz521tFJsarBx16y+/J6Ip1UQcjT6KwlboIeVIq/qjDkSdR2EpbhDwpDT0HJyaAPEkMfC4fhzzx1z7yxF9nyBN/nSFPiu2s77mHZcHDf1V3yNAZF8rRc9dHHYw8icJW6iLkSan4ow5HnkRhK20R8qQ09BycmADyJDHwuXwc8sRf+8gTf50hT/x1hjwptrOeXT+XRf/43+oOOXbOpTJ45tuiDkaeRGErdRHypFT8UYcjT6KwlbYIeVIaeg5OTAB5khj4XD4OeeKvfeSJv86QJ/46Q54U3NnkhCy+/4+l++DOykHjA4vk0Ds2yET/wqiDkSdR2EpdhDwpFX/U4ciTKGylLUKelIaegxMTQJ4kBj6Xj0Oe+GsfeeKvM+SJv86QJ2k66xw8JB1jwzK+8MS2DkSetIWvlMXIk1Kwt3Uo8qQtfMkXI0+SI+fAkgggT0oCPxePRZ74ax154q8z5Im/zpAnvjpDnvjqK6RFnvjrDHniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIiAPFHAMjKKPDFShCIG8kQBy8Ao8sRACURIQgB5kgQzhwQCyBN/1wHyxF9nyBN/nSFPfHWGPPHVV0iLPPHXGfLEV2fIE199kTaeAPIknh0rlQSQJ0pgBsaRJwZKUEZAniiBGRhHnhgoQREhD3nS/fI2mf/Y30jXkb0yuuIMOXre5TLRN1+RglENAeSJhpaNWeSJjR5aTYE8aZUUc94JIE+8N+goP/LEUVm/iIo88dcZ8sRfZ8gTX521LU8mJ2Tpt2+SzpFj1Tc+dMr5cvRXrvAFwlFa5Imjsn4RFXniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIjQrjzpOrxHltz7hboTxxcslwPv/PeKFIxqCCBPNLRszCJPbPTQagrkSaukmPNOAHnivUFH+ZEnjsr6RVTkib/OkCf+OkOe+OqsXXkikxOy7J4bpWNsqPrGh096vRz51d/0BcJRWuSJo7J+ERV54qsz5ImvvkgbTwB5Es+OlUoCyBMlMAPjyBMDJSgjIE+UwAyMI08MlKCI0LY8EZG+5x6W/m0PVj7zZGzZyXL03HfJ+MITFSkY1RBAnmho2ZhFntjoodUUyJNWSTHnnQDyxHuDjvIjTxyV9YuoyBN/nSFP/HWGPPHVWR7yxNc79p8WeeKvQ+SJr86QJ776Im08AeRJPDtWKgkgT5TADIwjTwyUoIyAPFECMzCOPDFQgiIC8kQBy8go8sRIEYoYyBMFLAOjyBMDJRAhCQHkSRLMHBIIIE/8XQfIE3+dIU/8dYY88dUZ8sRXXyEt8sRfZ8gTX50hT3z1Rdp4AsiTeHasVBJAniiBGRhHnhgoQRkBeaIEZmAceWKgBEUE5IkClpFR5ImRIhQxkCcKWAZGkScGSmghwtPP7pCPb7pdPrPxajnj1DUtrGCkkQDyhGsiGQHkSTLUuR2EPMkNZbKNkCfJUOd2EPIkN5RJNkKeJMGc6yHIk1xxJtkMeZIEc26HIE9yQ9nSRvsPHpYP3vB5efSJbdX5T19/lVyx/u0zrtfIE81sS6ENDQV+Gz97u1z3ofeqJRLyxFCRsz0K8sRfw8gTf50hT/x1hjzx1RnyxFdfIS3yxF9nyBNfnSFP0vaVyZNrN1wpbzr/LMl+feXlFzUVKK0mnY3yZHBoRD558x1yz71bZfXKE+S2m65FnrR6QTCXngDyJD3zdk9EnrRLMP165El65u2eiDxpl2Da9ciTtLzzOA15kgfFtHsgT9Lybvc05MkUBAdHZPI7/yzyzB6RZQuk49deK3LK8nZRV9Y3ypPw1+7a8gN55vmd8tENV1b+/BM33VGZveySC+VT110lA/290mKHZKMAACAASURBVChEPnfbZjlybEiOHDlWJxTWrFxelQxZ4K/cekNF1DT+hD2+/PUtlb9cKyRqRUV4LbszJsv+7nf+K/nK5u/IS7v21mUMs9Pt2XjHTW2mxvcy05043HkyPpnLhcgmxRJAnhTLt4jdkSdFUC12T+RJsXyL2B15UgTV4vZEnhTHtqidkSdFkS1uX+RJcWyL2Bl5cjzVyXt+LPLY86++0N8jHf/hXbngn0qeBHkQft52wevllts2y5du/IgsXbywIiJ27t5XESg7dr1c95kn4bUt9z1QvQMjSJetDz0+5exUwX/0yJPyF3ffX5Uz4dfh53Vnra3Il1UrllVkTq2sWLZkYeWRo1PWrKisCz9h9sI3vrZy10yzPbO5III2XH+LbNp4dUXqNL6XmUAjT5AnufyNWPQmyJOiCee/P/Ikf6ZF74g8KZpw/vsjT/JnWuSOyJMi6RazN/KkGK5F7oo8KZJu/nsjT6aQJ7ffJ7LvSN0LHf/rxSInLGi7gEZ5UisS/v6Bn1T2D9Ii/NTebRJ+XfuBsZlwyWZrxUWjaJkqdJAtm+++vypqspmpHvkJZ5128ir5tbe+oSJPskeOwprstSBPtHtm77XxvSBPpiCwYkm/7Ds8LGPIk7b/JkyxAfIkBeV8z0Ce5MszxW7IkxSU8z0DeZIvz6J3Q54UTTj//ZEn+TMtekfkSdGE890feTKFPLn7YZHHX3j1hb5u6bhmfS7gp/rA2OwRlloREQ6rvcsib3mSiY/ssZ3sEaEgXsJdIeGRnNqf8ChNM3ky0543f/FO2fSxqyt31ISf2keVkCctXFrIkxYgGRpBnhgqo8UoyJMWQRkaQ54YKqPFKMiTFkEZGUOeGClCEQN5ooBlZBR5YqSIFmMgT6YAtfeITP7toyI79ossnS8db1wrcu7JLRKdeWyqx3ayFY0Socg7T2pTZp9xEh6rOe+cddIoOrLZ6R45CnelNH5bUOOejV+zXPtekSctXFrIkxYgGRpBnhgqo8UoyJMWQRkaQ54YKqPFKMiTFkEZGUOeGClCEQN5ooBlZBR5YqSIFmMgT1oEldPYTPIkPHqzcdPt1c8xafaZJyHSVI/tDA0PH/d4TWP8797/oKw7/aTKN9bUio53XXxh3WeehHVB4jy1/QV58xvOnvGxnVb3nOozT2rfy0yo+cwTHtvJ6W/FYrdBnhTLt4jdkSdFUC12T+RJsXyL2B15UgTV4vZEnhTHtqidkSdFkS1uX+RJcWyL2Bl5UgTV6fecSZ6EVZpv25lOnoRv56ndZ6pv2wmi5v3X3FgN+oH3ra+KmMZv28m+iSf7wNjpPvNkpj2bfdtOM3nSmCnM134bUSstdkxOTrb1VTU79g62ck4hM9x5UgjWwjZFnhSGtrCNkSeFoS1sY+RJYWgL2xh5UhjaQjZGnhSCtdBNkSeF4i1kc+RJIVgL2xR5UhhaNjZGAHlirJDZHAd54q9d5Im/zpAn/jpDnvjqDHniq6+QFnnirzPkia/OkCe++iJtPAHkSTw7VioJIE+UwAyMI08MlKCMgDxRAjMwjjwxUIIiAvJEAcvIKPLESBGKGMgTBSwDo8gTAyUQIQkB5EkSzBwSCCBP/F0HyBN/nSFP/HWGPPHVGfLEV18hLfLEX2fIE1+dIU989UXaeALIk3h2rFQSQJ4ogRkYR54YKEEZAXmiBGZgHHlioARFBOSJApaRUeSJkSIUMZAnClgGRpEnBkogQhICyJMkmDkkEECe+LsOkCf+OkOe+OsMeeKrM+SJr75CWuSJv86QJ746Q5746ou08QSQJ5MiPfsOyfi8fpkY6I0nycqmBJAnTRGZG0CemKukaSDkSVNE5gaQJ+YqmTEQ8sRXX8gTf32FxMgTX70hT3z1Rdp4AnNannQdPCYnfPfH0nXoWIXg4TeslSNvPCOeJitnJIA88XeBIE/8dYY88dcZ8sRXZ8gTX30hT/z1hTzx1xnyxF9nJI4jMKflyaJ/eELmP/lCHbk9v/kWGVsyP44mq5Ans+waQJ74KxR54q8z5ImvzpAnvvpCnvjrC3nirzPkib/OSBxHYE7Lk+XfekB69hyqI7f/0vNl6NQT42iyCnkyy64B5Im/QpEn/jpDnvjqDHniqy/kib++kCf+OkOe+OuMxHEE5rQ8WfCTZ2Xhgz+rkpvs7ZFd7/3XMtnbHUeTVciTWXYNIE/8FYo88dcZ8sRXZ8gTX30hT/z1hTzx1xnyxF9nJI4jMKflScfImMz72Q7pfWmfjM/rk6EzVsvIqiVxJFnVlACfedIUkbkB5Im5SpoGQp40RWRuAHlirpIZAyFPfPWFPPHXF/LEX2fIE3+dkTiOwJyWJ3HIWBVLAHkSS668dciT8tjHnow8iSVX3jrkSXnsY05GnsRQK3cNX1VcLv+Y0/m2nRhq5a1BnpTHnpPTEkCepOU9p09DnvirH3nirzPkib/OkCe+OkOe+OorpEWe+OsMeeKrM+SJr75IG08AeRLPjpVKAsgTJTAD48gTAyUoIyBPlMAMjCNPDJSgiIA8UcAyMoo8MVKEIgbyRAHLwCjyxEAJREhCAHmSBDOHBALIE3/XAfLEX2fIE3+dIU98dYY88dVXSIs88dcZ8sRXZ8gTX32RNp4A8iSeHSuVBJAnSmAGxpEnBkpQRkCeKIEZGM9FnkyOSdfoTpnoOVEmO/oMvKvZGwF54q9b5Im/zpAnvjpDnvjqi7TxBJAn8exYqSSAPFECMzCOPDFQgjIC8kQJzMB4u/Kke/g5mf/yf5POiWMiHV1ydMm7ZWTBmw28s9kZAXnir1fkib/OkCe+OkOe+OqLtPEEkCfx7FipJIA8UQIzMI48MVCCMgLyRAnMwHi78mTh7v9Huoe3V9/JZGevHHjNJ0Sk08C7m30RkCf+OkWe+OsMeeKrM+SJr75IG08AeRLPjpVKAsgTJTAD48gTAyUoIyBPlMAMjLcrTxbv2CSd40fq3smh1dfIePeJBt7d7IuAPPHXKfLEX2fIE1+dIU989UXaeALIk3h2rFQSQJ4ogRkYR54YKEEZAXmiBGZgvF15Mm///yt9R/6p+k7Ge1bKoVX/3sA7m50RkCf+ekWe+OsMeeKrM+SJr75IG08AeRLPjpVKAsgTJTAD48gTAyUoIyBPlMAMjLcrT8JdJ31HHpTOkRdkomeFjMw/T8Z7Vht4Z7MzAvLEX6/IE3+dIU98dYY88dUXaeMJIE/i2bFSSQB5ogRmYBx5YqAEZQTkiRKYgfF25YmBtzCnIiBP/NWNPPHXGfLEV2fIE199kTaeAPIknh0rlQSQJ0pgBsaRJwZKUEZAniiBGRhHnhgoQREBeaKAZWQUeWKkCEUM5IkCloFR5ImBEoiQhADyJAlmDgkEkCf+rgPkib/OkCf+OkOe+OoMeeKrr5AWeeKvM+SJr86QJ776Im08AeRJPDtWKgkgT5TADIwjTwyUoIyAPFECMzCOPDFQgiIC8kQBy8go8sRIEYoYyBMFLAOjyBMDJRAhCQHkSRLMHBIIIE/8XQfIE3+dIU/8dYY88dUZ8sRXXyEt8sRfZ8gTX50hT3z1Rdp4AsiTeHasVBJAniiBGRhHnhgoQRkBeaIEZmAceWKgBEUE5IkClpFR5ImRIhQxkCcKWAZGkScGSiBCEgLIkySYOSQQQJ74uw6QJ/46Q5746wx54qsz5ImvvkJa5Im/zpAnvjpDnvjqi7TxBJAn8exYqSSAPFECMzCOPDFQgjIC8kQJzMA48sRACYoIyBMFLCOjyBMjRShiIE8UsAyMIk8MlECEJASQJ0kwc0gggDzxdx0gT/x1hjzx1xnyxFdnyBNffYW0yBN/nSFPfHWGPPHVF2njCSBP4tmxUkkAeaIEZmAceWKgBGUE5IkSmIFx5ImBEhQRkCcKWEZGkSdGilDEQJ4oYBkYRZ4YKIEISQggT5Jg5pBAAHni7zpAnvjrDHnirzPkia/OkCe++gppkSf+OkOe+OoMeeKrL9LGE0CexLNjpZIA8kQJzMA48sRACcoIyBMlMAPjyBMDJSgiIE8UsIyMIk+MFKGIgTxRwDIwijwxUAIRkhBAniTBzCGBAPLE33WAPPHXGfLEX2fIE1+dIU989RXSIk/8dYY88dUZ8sRXX6SNJ4A8iWfHSiUB5IkSmIFx5ImBEpQRkCdKYAbGkScGSlBEQJ4oYBkZRZ4YKUIRA3migGVgFHlioAQiJCGAPEmCmUMCAeSJv+sAeeKvM+SJv86QJ746Q5746iukRZ746wx54qsz5ImvvkgbTwB5Es+OlUoCyBMlMAPjyBMDJSgjIE+UwAyMI08MlKCIgDxRwDIyijwxUoQiBvJEAcvAKPLEQAlESEIAeZIEM4cEAsgTf9cB8sRfZ8gTf50hT3x1hjzx1VdIizzx1xnyxFdnyBNffZE2ngDyJJ4dK5UEkCdKYAbGkScGSlBGQJ4ogRkYR54YKEERYbbKk+79L0rPy8/I2OKVMrpinYKI/VHkif2OGhMiT3x1hjzx1Rdp4wkgT+LZsVJJAHmiBGZgHHlioARlBOSJEpiBceSJgRIUEWajPOnf9oDM/8k9VQpDay+Qo6+/TEHF9ijyxHY/U6VDnvjqDHniqy/SxhNAnsSzY6WSAPJECczAOPLEQAnKCMgTJTAD48gTAyUoIsxGebLkb/+LdB15+VUKHR2y93/6pEhHp4KM3VHkid1upkuGPPHVGfLEV1+kjSeAPIlnx0olAeSJEpiBceSJgRKUEZAnSmAR410jz8u8/fdI1+guGe07XY4t+w2Z7FoUsdMrS5An0ehKWYg8KQV7W4ciT9rCV8pi5Ekp2KMPRZ5Eo2OhMwLIE2eFeY6LPPHXHvLEX2fIk6I7m5DFO/6TdI4frB40OnC2HFn+u9EHI0+i0ZWycDbKk3n/8j0Z+PnfV3mOrDpLDl/426XwLeJQ5EkRVIvdE3lSLN+8d0ee5E2U/awSQJ5YbWYW5kKe+CsVeeKvM+RJsZ11ju2XxS/9p7pDJrqWyME110UfjDyJRlfKwtkoT2RyQnr2Pi/d+1+QsYXLZfTEM0S6ukvhW8ShyJMiqBa7J/KkWL557448yZso+1klgDyx2swszIU88Vcq8sRfZ8iTojsLd578R+kcP1I9aGTgl+Xo8t+LPhh5Eo2ulIWzUp6UQjLdociTdKzzOgl5khfJNPsgT9Jw5pTyCSBPyu9gziRAnvirGnnirzPkSfGd9R77Z+k//EPpHN0jY70nydCSX5ex3tdEH4w8iUZXykLkSSnY2zoUedIWvlIWI09KwR59KPIkGh0LnRFAnjgrzHNc5Im/9pAn/jpDnvjrDHniqzPkia++Qlrkib/OkCe+OkOe+OqLtPEEkCfx7FipJIA8UQIzMI48MVCCMgLyRAnMwDjyxEAJigjIEwUsI6PIEyNFKGIgTxSwDIwiTwyUQIQkBJAnSTBzSCCAPPF3HSBP/HWGPPHXGfLEV2fIE199hbTIE3+dIU98dYY88dUXaeMJIE/i2bFSSQB5ogRmYBx5YqAEZQTkiRKYgXHkiYESFBGQJwpYRkaRJ0aKUMRAnihgGRhFnhgogQhJCCBPkmDmkEAAeeLvOkCe+OsMeeKvM+SJr86QJ776CmmRJ/46Q5746gx54qsv0sYTQJ7Es2OlkgDyRAnMwDjyxEAJygjIEyUwA+PIEwMlKCIgTxSwjIwiT4wUoYiBPFHAMjCKPDFQAhGSEECeJMHMIYEA8sTfdYA88dcZ8sRfZ8gTX50hT3z1FdIiT/x1hjzx1RnyxFdfpI0ngDyJZ8dKJQHkiRKYgXHkiYESlBGQJ0pgBsaRJwZKUERAnihgGRlFnhgpQhEDeaKAZWAUeWKgBCIkIYA8SYKZQwIB5Im/6wB54q8z5Im/zpAnvjpDnvjqK6RFnvjrDHniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIiAPFHAMjKKPDFShCIG8kQBy8Ao8sRACURIQgB5kgQzhwQCyBN/1wHyxF9nyBN/nSFPfHWGPPHVV0iLPPHXGfLEV2fIE199kTaeAPIknh0rlQSQJ0pgBsaRJwZKUEZAniiBGRhHnhgoQREBeaKAZWQUeWKkCEUM5IkCloFR5ImBEoiQhADyJAlmDgkEkCf+rgPkib/OkCf+OkOe+OoMeeKrr5AWeeKvM+SJr86QJ776Im08AeRJPDtWKgkgT5TADIwjTwyUoIyAPFECMzCOPDFQgiIC8kQBy8go8sRIEYoYyBMFLAOjyBMDJRAhCQHkSRLMHBIIIE/8XQfIE3+dIU/8dTbr5MnkuMw7+G3pOfoTmewckOFFb5fh+W/0V8w0iZEn/qpEnvjrDHniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIzPNnnSd/iHMu/AlhqyHXJo9X+Q8e4TDdBuPwLypH2GqXdAnqQm3v55yJP2GabcAXmSkjZnlUkAeVIm/Tl2NvLEX+ELBrqls6NDDh0b9Rd+jiZGnvgrfrbJk3n7vil9Rx+uK+LYsitmzd0nyBN/f48hT/x1hjzx1RnyxFdfpI0ngDyJZ8dKJQHkiRKYgXHkiYESlBGQJ0pgBsZnmzzpP/z3MnDgO3VkD636AxnvWWWAdvsRkCftM0y9A/IkNfH2z0OetM8w5Q7Ik5S0OatMAsiTMunPsbORJ/4KR5746wx54q+z2SZPOiYGZd7+b0n30LbKZ56MzjtHBhf/D/6KmSYx8sRflcgTf50hT3x1hjzx1Rdp4wkgT+LZsVJJAHmiBGZgHHlioARlBOSJEpiB8dkmTwwgLTQC8qRQvIVsjjwpBGuhmyJPCsWb++bIk9yRsqFRAsgTo8XMxljIE3+tIk/8dYY88dcZ8sRXZ8gTX32FtMgTf50hT3x1hjzx1Rdp4wkgT+LZsVJJAHmiBGZgHHlioARlBOSJEpiBceSJgRIUEZAnClhGRpEnRopQxECeKGAZGEWeGCiBCEkIIE+SYOaQQAB54u86QJ746wx54q8z5ImvzpAnvvoKaZEn/jpDnvjqDHniqy/SxhNAnsSzY6WSAPJECczAOPLEQAnKCMgTJTAD48gTAyUoIiBPFLCMjCJPjBShiIE8UcAyMIo8MVACEZIQQJ4kwcwhgUAe8mTPyLBs2blTdgwNysnz5smvr1gpy3v7SgM8KSI/PrBffnb0iCzp6ZELl55Q+eNs+UGe+GsSeeKvM+SJr86QJ776CmmRJ/46Q5746gx54qsv0sYTQJ7Es2OlkkAe8uSPn9kmu4aHqiefPDAgV51yujJJfuP/uG+v/M2eXdUNF3V3yx+sPVO6OzryO6TEnZAnJcKPPBp5EgmuxGXIkxLhRxyNPImAVvIS5EnJBUQcjzyJgFbiEuRJifA5OikB5ElS3HP7sHblycT/f/fKH/30cQl3e2Q/QVJ8/JfOLg3sV55/Rp49dqzu/A2nrpVV/f2lZQoHvzwyLN0dnW3fBYM8KbXGqMORJ1HYSl2EPCkVv/pw5IkaWekLkCelV6AOgDxRIyt1AfKkVPwcnpAA8iQh7Ll+VLvyJPD74vanJTy6k/2s7uuX/+20taWh/cuXXpB/OXSo7vyPnnGmLOwu59GdkYkJ+bMXnpXnBwcrmX5p/gL5tyedIp2RhJAnkeBKXIY8KRF+5NHIk0hwJS1DnpQEvo1jkSdtwCtpKfKkJPCRxyJPIsGxzB0B5Im7yvwGzkOePH30iNy/d4/sHhqW1QP98rZly+WM+QtKg/Lc4DH5+gvPy9DEeCXDuQsXyxVrXlNann86uF/u2flS3fm/ueYkOWfhoqhMyJMobKUuQp6Uij/qcORJFLbSFiFPSkMffTDyJBpdaQuRJ6WhjzoYeRKFjUUOCSBPHJbmNXIe8sTiew+PE+0eGpJFPT0yr6ur1Ih/vXOHPHTwQF2Gdyw/US464cSoXMiTKGylLkKelIo/6vBZJ08mxmX+Y9+V3hd+IpO982TwzH8tw6f+ShQbi4uQJxZbmTkT8sRfZ8gTX50hT3z1Rdp4AsiTeHasVBKYrfJEiaHQ8e3HjspXn3+27owNp62VVX1xn8GCPCm0rkI2R54UgrXQTWebPOl/6h9l/mPfrmHWIQfe+QcyvmB5oRxTbY48SUU6v3OQJ/mxTLUT8iQV6XzOQZ7kw5Fd7BNAntjvaNYkRJ4UX2X4MN1/PnhAnjp2RLqlU85csCD6kZ2QFnlSfGd5n4A8yZto8fvNNnky/+G7pP+5R+rAHfmV35DhU2bH3SfIk+L/nsj7BORJ3kSL3w95UjzjPE9AnuRJk70sE0CeWG5nlmVDnvgrFHnirzPkib/OZps8GXjqhzLvse/WFXHg4t+X8UUr/ZUzRWLkib8akSf+OkOe+OoMeeKrL9LGE0CexLNjpZIA8kQJzMA48sRACcoIyBMlMAPjs02edIwOyvxH7paePdsqn3kysua1cuy17zRAOp8IyJN8OKbcBXmSknY+ZyFP8uGYahfkSSrSnFM2AeRJ2Q3MofORJ/7KRp746wx54q+z2SZP/DWgS4w80fGyMI08sdCCLgPyRMer7GnkSdkNcH4qAsiTVKQ5R5An/i4C5Im/zpAn/jpDnvjqDHniq6+QFnnirzPkia/OkCe++iJtPAHkSTw7VioJIE+UwAyMI08MlKCMgDxRAjMwjjwxUIIiAvJEAcvIKPLESBGKGMgTBSwDo8gTAyUQIQkB5EkSzBwSCCBP/F0HyBN/nSFP/HWGPPHVGfLEV18hLfLEX2fIE1+dIU989UXaeAItyZPP3bZZvvz1LZVTzj17rXzpxo/I0sULK7/esXcw/vQ2V65Y0i/7Dg/L2Hj4glZ+iiDwsyOH5b6X98jB0VE5c/4CuWzVaunr7Iw6CnkSha3URciTUvFHHY48icJW6iLkSan41YcjT9TISl+APCm9AnUA5IkaWakLkCel4ufwhASaypO7tvxAtj70uHzquqtkoL9XGn+NPEnYVuKjBifG5fNP/1xGJyaqJ7912XJ554kropIgT6KwlboIeVIq/qjDkSdR2EpdhDwpFb/6cOSJGlnpC5AnpVegDoA8USMrdQHypFT8HJ6QQFN5Eu46CT8f3XBl5Y8/euRJueW2zdW7T5AnCdtKfNT2waPy1eeerTv11Hnz5P0nnxaVBHkSha3URciTUvFHHY48icJW6iLkSan41YcjT9TISl+APCm9AnUA5IkaWakLkCel4ufwhASaypOnn90hG66/RdZffEFFoASZctrJq+SK9W+vxESeJGwr8VGD4+Ny81M/ldqHot60ZKmsX7k6KgnyJApbqYuQJ6XijzoceRKFrdRFyJNS8asPR56okZW+AHlSegXqAMgTNbJSFyBPSsXP4QkJNJUng0Mj8smb75CDh4/KPzz46HGfeXJkcDRh3Pqj5vV1y9DIuExM8pknRZXwgz0vy4N798mBkVE5fcF8+Z9PWiPLenujjuvs6JDwL53Hhsei1rMoPYHwD8MO6ZCRsfFpDu9IH4oTZyQQ/h4bHRuX8VeftoOYcQJBUh4Z5P8XjddUjRf+Q0D439AIf5N56ayvp1PGJydlbMzivy9azFR+s/P6u2VweFwm+Xf88stoIUFnZ4f09XTJYIn/jr9goKeFpIxAoD0CTeVJ450m4TNPNt99f/WxnYNHy5Mn4V84w2/Eaz6Soz0arC6UQPic2SC8+E1CoZhz3Tz8C2dHh8zwmwT+pS9X4DlsNr+/W4ZHJ2QMe5IDzTRbLJ7fKwePjqQ5jFPaJtDd1Sm93Z38h4C2SabbIEjl8O+K0/+HgHRZjj+J/wgxFf2FA91ydGhMJvjXjDIvzpbP7urskIHeTjkyNN1/bGt5q+jBcIcZPxAomsCM8iS76+S3Lr9I3nT+WZUs4TGej2+6XT6z8Wo549Q1PLZTdEOzaH8e2/FXJo/t+OuMx3b8dcZjO74647EdX32FtDy2468zHtvx1RmP7fjqi7TxBFq682Tn7n1137ZTe+cJn3kSD3+urUSe+GsceeKvM+SJv86QJ746Q5746gt54q+vkBh54qs35ImvvkgbT6CpPMnuPrnn3q2VU849e231kZ3wa+RJPPy5thJ54q9x5Im/zpAn/jpDnvjqDHniqy/kib++kCf+OkOe+OuMxHEEmsqTZtsiT5oR4vWMAPLE37WAPPHXGfLEX2fIE1+dIU989YU88dcX8sRfZ8gTf52ROI4A8iSOG6siCCBPIqCVvAR5UnIBEccjTyKglbwEeVJyAcrjkSdKYAbG+cwTAyUoI/DYjhJYyePIk5IL4PhkBJAnyVBzEPLE3zWAPPHXGfLEX2fIE1+dIU989RXSIk/8dYY88dUZ8sRXX6SNJ4A8iWfHSiUB5IkSmIFx5ImBEpQRkCdKYAbGkScGSlBEQJ4oYBkZRZ4YKUIRA3migGVgFHlioAQiJCGAPEmCmUMCAeSJv+sAeeKvM+SJv86QJ746Q5746iukRZ746wx54qsz5ImvvkgbTwB5Es+OlUoCyBMlMAPjyBMDJSgjIE+UwAyMI08MlKCIgDxRwDIyijwxUoQiBvJEAcvAKPLEQAlESEIAeZIEM4cEAsgTf9cB8sRfZ8gTf50hT3x1hjzx1VdIizzx1xnyxFdnyBNffZE2ngDyJJ4dK5UEkCdKYAbGkScGSlBGQJ4ogRkYR54YKEERAXmigGVkFHlipAhFDOSJApaBUeSJgRKIkITAnJcnkyKya2hIFnZ3y/zu7iTQ5+ohyBN/zeclT46Ojcnh8TFZ2dcvHf4wuEqMPHFVVyUs8sRXZ8gTX32FtMgTf50hT3x1hjzx1Rdp4wnMaXmyd2RE/vzF52TfyEiF4NtOOFEuXn5iPE1WzkgAeeLvAslDnnxn9055YP++yptf1tsrv3fyabIYUVnYxYA8KQxtYRsjTwpDW8jGyJNCsBa6KfKkULyFbI48KQRrYZsiTwpDy8bGCMxp94flfAAAIABJREFUefLXO1+Shw7ur6vkw6evkxN6e43VNDviIE/89diuPHl5ZFj+6/an6974ry5ZKpetXO0PhpPEyBMnRdXERJ746gx54quvkBZ54q8z5ImvzpAnvvoibTyBOS1PvvzsdnlhaLCO3r99zcly1oKF8URZOS0B5Im/i6NdefLYoYPyzZderHvjp86bJ+8/+TR/MJwkno3ypO/oQ9J36AfSMTEoo/NfL8cWv0uko8tJI81jIk+aM7I0gTyx1EZrWZAnrXGyNIU8sdRG8yzIk+aMmJgdBOa0PPnHfXvlb/bsqjY50Nkl15xxpvR2ds6Odo29C+SJsUJaiNOuPBmaGJdbnv6ZjE2ETxd65Wf9ytXypiVLWzidkRgCs02edI3tkUUv/WcRefUaOrZkvQwvfGsMHpNrkCcma5k2FPLEV18hLfLEX2fIE1+dIU989UXaeAJzWp6MTEzIwwcOyDODRysfGHvuosVyysC8eJqsnJEA8sTfBdKuPAnveNuxo/LE4UNyZGxMTh2YL29cslR6OvnY2KKuhtkmT8JdJ/P23VWHa3j+r8ixZe8pCmHyfZEnyZG3dSDypC18pSxGnpSCva1DkSdt4Uu+GHmSHDkHlkRgTsuTkpjPeOxzx47JPx145XNY3rB0iZw+MN9izKhMyJMobKUuykOelPoG5uDhs02edI3ulEU7v1DX5OCSX5ehhW+bNe0iT3xViTzx1VdIizzx1xnyxFdnyBNffZE2ngDyJJ5d7iv3jAzLl7Y/Xb05Pfy3+Q+culZe09+f+1llbIg8KYN6e2ciT9rjV8bq2SZPAsOBg38jPcf+pfKZJ2P9a+XY0n8jk50DZeAt5EzkSSFYC9sUeVIY2sI2Rp4UhrawjZEnhaEtZGPkSSFY2dQgAeSJoVK27tsn392zsy7RJSeukH+9bLmhlPFRkCfx7MpaiTwpi3z8ubNRnsTT8LESeeKjpywl8sRXXyEt8sRfZ8gTX50hT3z1Rdp4AsiTeHa5r/yXQ4fkL196oW7fy1atll9dPDs+XBN5kvslU/iGyJPCEed+APIkd6SFb4g8KRxxrgcgT3LFmWQz5EkSzLkegjzJFWfhmyFPCkfMAUYIIE+MFBFihA+wffL7D8sFzx+qpPqn1yyStRe9QQa6ZsdXciJPDF1sLUZBnrQIytAY8sRQGS1GQZ60CMrIGPLESBGKGMgTBSwjo8gTI0W0GAN50iIoxtwTQJ4YqrDvxb2y7NsP1yXaf+n5MnTqiYZSxkdBnsSzK2sl8qQs8vHnIk/i2ZW1EnlSFvm4c5EncdzKXIU8KZN+3NnIkzhuZa1CnpRFnnNTE0CepCY+w3kLHt4mCx9+um7i8K+cIUd+Za2hlPFRkCfx7MpaiTwpi3z8uciTeHZlrUSelEU+7lzkSRy3MlchT8qkH3c28iSOW1mrkCdlkefc1ASQJ6mJz3Be/7N7ZOn3Hqmb2H/J62Xo9JWGUsZHQZ7Esytr5WyVJ08fPSK7h4fllHnzZ823WWXXCPKkrL9b4s9FnsSzK2Ml8qQM6u2diTxpj18Zq5EnZVCPPxN5Es+Olb4IIE8s9TUxKYv/+5PS/9yeSqqhk5fLwbeeLdIZvrTY/w/yxF+Hs1GebNn1kvzowP5qGe9asUrevHSZv3KmSYw88Vcl8sRXZ8gTX32FtMgTf50hT3x1hjzx1Rdp4wkgT+LZsVJJAHmiBGZgfLbJkwkR+aOfPi6TNWxP6OmVD69dZ4B2PhGQJ/lwTLkL8iQl7fbPQp60zzD1DsiT1MTbPw950j7DlDsgT1LS5qwyCSBPyqQ/x85GnvgrHHnirzPkib/OkCe+OkOe+OorpEWe+OsMeeKrM+SJr75IG08AeRLPjpVKAsgTJTAD47NNngSkd774vPz0yOEq3bcuWy7vPHGFAdr5RECe5MMx5S7Ik5S02z8LedI+w9Q7IE9SE2//PORJ+wxT7oA8SUmbs8okgDwpk/4cOxt54q/w2ShPxiYnZdvRI7J3ZETW9A/IyfPmSae/aqZNjDzxVybyxFdnyBNffYW0yBN/nSFPfHWGPPHVF2njCSBP4tmxUkkAeaIEZmB8NsoTA1gLjYA8KRRvIZsjTwrBWtimyJPC0Ba2MfKkMLSFbYw8KQxtIRsjTwrByqYGCSBPDJYyWyMhT/w1izzx1xnyxF9nyBNfnSFPfPUV0iJP/HWGPPHVGfLEV1+kjSeAPIlnx0olAeSJEpiBceSJgRKUEZAnSmAGxpEnBkpQRECeKGAZGUWeGClCEQN5ooBlYBR5YqAEIiQhgDxJgplDAgHkib/rAHnirzPkib/OkCe+OkOe+OorpEWe+OsMeeKrM+SJr75IG08AeRLPjpVKAsgTJTAD48gTAyUoIyBPlMAMjCNPDJSgiDBb5cnEEZGJAxPSOb9DOpd2KIjYH0We2O+oMSHyxFdnyBNffZE2ngDyJJ4dK5UEkCdKYAbGkScGSlBGQJ4ogRkYR54YKEERYTbKk7EdkzK6bbxKoXt1h/Sc0aWgYnsUeWK7n6nSIU98dYY88dUXaeMJIE/i2bFSSQB5ogRmYBx5YqAEZQTkiRKYgXHkiYESFBFmozwZemhcJgcn6ygMvLVbZJbcgII8UVzgRkaRJ0aKaDEG8qRFUIy5J4A8cV+hnzeAPPHTVZYUeeKvM+SJv86QJ746Q5746iukRZ746wx54qsz5ImvvkgbTwB5Es+OlUoCyBMlMAPjyBMDJSgjIE+UwAyMI08MlKCIMBvlyegzEzL2wkSVQteyDul9LY/tKC4LRnMmgDzJGWjB2yFPCgbM9mYIIE/MVDH7gyBP/HWMPPHXGfLEX2fIE1+dzUZ5IpMiE4cmZeLwpHTME+lc0ikdnb56mSktd5746xJ54qsz5ImvvkgbTwB5Es+OlUoCyBMlMAPjyBMDJSgjIE+UwAyMI08MlKCIMCvlieL9exxFnvhrDXniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIiAPFHAMjKKPDFShCIG8kQBy8Ao8sRACURIQgB5kgQzhwQCyBN/1wHyxF9nyBN/nSFPfHWGPPHVV0iLPPHXGfLEV2fIE199kTaeAPIknh0rlQSQJ0pgBsaRJwZKUEZAniiBGRhHnhgoQREBeaKAZWQUeWKkCEWM2ShPRsYmZff+V74SfMXSTuntVgAxPoo8MV4Q8XIjgDzJDSUbNSOAPGlGyN7ryBN7nTRLhDxpRsje68gTe53MlAh54quvkBZ54q+z2SZPBkdEtj45ISOjr8iT3p4OeetrO6S3u8NfOVMkRp7Mihp5Ey0QQJ60AImRfAggT/LhmHIX5ElK2vmchTzJh2PKXZAnKWm3fxbypH2GqXdAnqQm3v55s02ePLNrUn5a83XggdDZp3TKKSciT9q/Wl7ZIfyzlB8IFE0AeVI0YfavEkCe+LsYkCf+OkOe+OsMeeKrM+RJmr4mh0TG901IR2+HdC7raOurk5EnaTrL8xTkSZ40i9+LO0+KZ8wJNgggT2z0MCdSIE/81Yw88dcZ8sRfZ8gTX50hT4rva+LQpAw/Ni4y8cpZnQtE+s7rFon8j/TIk+I7y/uE2SZPjg2J/MPj4zL5ylM70tEh8vZzu6S/J29y5eyHPCmHO6emJ4A8Sc98zp6IPPFXPfLEX2fIE3+dIU98dYY8Kb6vkZ9NyPjuX5iTXxzXe16XdC2MsyfIk+I7y/uE2SZPAp/BYZG9h165rpcv7pT+3ryplbcf8qQ89pyclgDyJC3vOX0a8sRf/cgTf50hT/x1hjzx1RnypPi+kCfFM7Z+wmyUJ9aZt5MPedIOPdZ6IoA88dSW86zIE38FIk+K7+zY+Jj89a6XZNvRo3JCb6+888SVcvq8+dEHI0+i0ZW2EHlSGvqog5EnUdhUi8b3TsrIE+PVNR29Iv1v4rEdFUTnw8gTXwUiT3z1Rdp4AsiTeHasVBJAniiBGRhHnhRfwl+9tEP++dCB6kEDXV1y7Rm/JF3hgeiIH+RJBLSSlyBPSi5AeTzyRAkscnzyyKSMH5oU6e2QriUiHW18pSuP7USWUOIy5EmJ8COORp5EQGOJSwLIE5e1+QyNPPHXG/Kk+M7+r21Pyd7RkbqDfv/0M2R5b1/U4ciTKGylLkKelIpffTjyRI2s9AXIk9IrUAdAnqiRlboAeVIqfg5PSAB5khD2XD8KeeLvCkCeFN/ZXTtelEcPH6we1N/ZJf/HOu48KZ68nROQJ3a6aCUJ8qQVSrZmkCe2+mglDfKkFUp2ZpAndrogSbEEkCfF8mX3GgLIE3+XA/Kk+M72jAzLd3fvkhcGj8my3j5585Klcv7iJdEHc+dJNLrSFiJPSkMfdTDyJApbqYuQJ6XijzoceRKFrbRFyJPS0HNwYgLIk8TA5/JxyBN/7SNP/HWGPPHXGfLEV2fIE199hbTIE3+dIU98dYY88dUXaeMJIE/i2bFSSQB5ogRmYBx5YqAEZQTkiRKYgXHkiYESFBGQJwpYRkaRJ0aKUMRAnihgGRhFnhgogQhJCCBPkmDmkEAAeeLvOkCe+OsMeeKvM+SJr86QJ776CmmRJ/46Q5746gx54qsv0sYTQJ7Es2OlkgDyRAnMwDjyxEAJygjIEyUwA+PIEwMlKCIgTxSwjIwiT4wUoYiBPFHAMjCKPDFQAhGSEECeJMHMIYEA8sTfdYA88dcZ8sRfZ8gTX50hT3z1FdIiT/x1hjzx1RnyxFdfpI0ngDyJZ8dKJQHkiRKYgXHkiYESlBGQJ0pgBsaRJwZKUERAnihgGRlFnhgpQhEDeaKAZWAUeWKgBCIkIYA8SYKZQwIB5Im/6wB54q8z5Im/zpAnvjpDnvjqK6RFnvjrDHniqzPkia++SBtPAHkSz46VSgLIEyUwA+PIEwMlKCMgT5TADIwjTwyUoIiAPFHAMjKKPDFShCIG8kQBy8Ao8sRACURIQgB5kgQzhwQCyBN/1wHyxF9nyBN/nSFPfHWGPPHVV0iLPPHXGfLEV2fIE199kTaeAPIknh0rlQSQJ0pgBsaRJwZKUEZAniiBGRhHnhgoQREBeaKAZWQUeWKkCEUM5IkCloFR5ImBEoiQhADyJAlmDgkEkCf+rgPkib/OkCf+OkOe+OoMeeKrr5AWeeKvM+SJr86QJ776Im08AeRJPDtWKgkgT5TADIwjTwyUoIyAPFECMzCOPDFQgiIC8kQBy8go8sRIEYoYyBMFLAOjyBMDJRAhCQHkSRLMHBIIIE/8XQfIE3+dIU/8dYY88dUZ8sRXXyEt8sRfZ8gTX50hT3z1Rdp4AsiTeHasVBJAniiBGRhHnhgoQRkhD3ny1NEj8sihA9Lb0SW/umSprOnvV6ZgXEMAeaKhFTfbMTEsPUNPiEyMyNjA2TLRtTBuIxFBnkSjK21hHvJk/PCkjL80KTI5Kd0rO6VzSUdp72cuHIw88dUy8sRXX6SNJ4A8iWfHSiUB5IkSmIFx5ImBEpQR2pUnTx89In/2wnPVU7s7OuT3T18nS3p6lEkYb5UA8qRVUnFzQZws2vUF6RzbX9lgsrNfDq/832W8+8SoDfOQJ5PDkzK2Y1ImBiela0mndK/hN+JRZbS4qF15Mjk4KUM/HheZePXAvvO6pHMhvbVYgXoMeaJGVuoC5Emp+Dk8IQHkSULYc/0o5Im/KwB54q+zduXJd3bvlAf276t74/9m1Ro5f/GS0mA8cvCA/MPel2VwYkLOXbRI3nniSglSZ7b8IE+KbbL36E9k/r5v1B0yuPhiGVp0SdTBeciToYfHZfLYZPX8nlM6pfuUzqg8LGpOoF15MrZzUkafGq87KPQVeuOnGALIk2K4FrUr8qQosuxrjQDyxFojszgP8sRfucgTf521K0/+Yd/Lcu+e3XVv/HdOOkXWzV9QCoyXR4bli9uflld/mynyP564Si5ctqyUPEUcijwpguqre1qTJ5NDIkP/NFb3psMdDOFOBn6KIdCuPBnfMykjP62XJz3ruqR71eyRuMWQj98VeRLProyVyJMyqHNmGQSQJ2VQn6NnIk/8FY888ddZu/Lk0NiYfPnZbRL+GH5W9vXL1aeeLl0l3ekR7jr51s4ddUWct2iJ/MbqNf7KmSYx8qTYKjsmjsniHTdJx+Ro9aBDKz8k472viTq47TtPxkUGt45JrRHsWtohvecgT6IKaWFRu/Jkclxk5CfjMnH0FY3b0SfS94Zu6ehu4XBGogggT6KwlbYIeVIaeg5OTAB5khj4XD4OeeKvfeSJv87alSfZOw53fPR0dsni7nJ/d7BreEj++JltdUVcumKlvGXpCf7KQZ6U1lnH+CHpGd72ygfG9p0hEz3x10/b8kRERp4ef+XDR8NPp0jv2V0SBAo/xRBoV55kqcJdQ+EDYzsG6KqYpl7dFXlSNOF890ee5MuT3ewSQJ7Y7WbWJUOe+KsUeeKvs7zkiaV3Hh4jeuLwocpnnpw2b568e9VqGegs77/SPz84KH+zZ6fsHhqWUyt51siiNiQTd55YutqaZ8lDnoRTwt0M4YNIO+d3iPB78ebg25jIS560EYGlSgLIEyWwkseRJyUXwPHJCCBPkqHmIOSJv2sAeeKvs9koTyy1EL5s4788/XM5OPbqIyC/vGChvPc1J0fHRJ5EoytlYV7ypJTwc/RQ5Im/4pEnvjpDnvjqi7TxBJAn8exYqSSAPFECMzCOPDFQgjIC8kQJTDl+YHRU/vO2n9etWtzTI9esPVO506vjyJNodKUsRJ6Ugr2tQ5EnbeErZTHypBTs0YciT6LRsdAZAeSJs8I8x0We+GsPeeKvM+RJsZ2FO08+9/TP5OgvPlA3nHbmgoXy29x5Uix4Q7sjTwyV0WIU5EmLoAyNIU8MldFCFORJC5AYmRUEkCezokYfb+L/Y+/Nw+y6yjvdb5+p5lJVqTRYgy3PlsGWDdhmdgiEBAMmE8SEJLefTJDczsiFACHdSScBAt0Z+uGBJDS5GTqQgSTNTEKMMaMNtmNjjGVsDbam0lSquepMe9+7S3LJByzXWWsPa3273von6c631vfb7+/Ikl6dOoU80dHTE1MiT/R1hjzJvrP7Z6fljsmTcqLekC19ffLSDRvlvN4+68W888QanZODyBMn2BMtRZ4kwufkMPLECXbrpcgTa3QcVEYAeaKsMM1xkSf62kOe6OsMeaKvM+SJrs6QJ7r6itMiT/R1hjzR1RnyRFdfpLUngDyxZ8dJQwLIE0NgHowjTzwowTAC8sQQmAfjyBMPSjCIgDwxgOXJKPLEkyIMYiBPDGB5MIo88aAEIuRCAHmSC2aWxASQJ/peB8gTfZ2lIU9K7VmpLD4oUqpJs3enRKUefSAUJUaeKCpLRJAnuvqK0yJP9HWGPNHVGfJEV1+ktSeAPLFnx0lDAsgTQ2AejCNPPCjBMEJSeVJuHZeho38qQbi0vDmsjMrM5l+SKECgGFbR9TjypGtUXgwiT7yowSgE8sQIlxfDyBMvaug6BPKka1QMKieAPFFeoKb4yBNNbZ3OijzR11lSedI7c6v0TX+u48Hnx35MGgNX64OhJDHyRElRZ2IiT3T1FadFnujrDHmiqzPkia6+SGtPAHliz46ThgSQJ4bAPBhHnnhQgmEE5IkhMA/GkScelGAQAXliAMuTUeSJJ0UYxECeGMDyYBR54kEJRMiFAPIkF8wsiQkgT/S9DpAn+jpLKk/KjUMyfPR9Kw8eBVWZ3vJmiUr9+mAoSYw8UVLUmZjIE119xWmRJ/o6Q57o6gx5oqsv0toTQJ7Ys+OkIQHkiSEwD8aRJx6UYBghqTyJ15WaJ6VS33P6A2N7LpKoPGyYgnETAsgTE1ruZ5En7jswTYA8MSXmfh554r4DkwTIExNazGomgDzR3J6y7MgTZYXxmSf6ChORNOSJygdXHBp5oqs85ImuvuK0yBN9nSFPdHWGPNHVF2ntCSBP7Nlx0pAA8sQQmAfjvPPEgxIMIyBPDIF5MI488aAEgwjIEwNYnowiTzwpwiAG8sQAlgejyBMPSiBCLgSQJ7lgZklMAHmi73WAPNHXGfJEX2fIE12dIU909RWnRZ7o6wx5oqsz5ImuvkhrTwB5Ys+Ok4YEkCeGwDwYR554UIJhBOSJITAPxpEnHpRgEAF5YgDLk1HkiSdFGMRAnhjA8mAUeeJBCUTIhQDyJBfMLIkJIE/0vQ6QJ/o6Q57o6wx5oqsz5ImuvuK0yBN9nSFPdHWGPNHVF2ntCSBP7Nlx0pAA8sQQmAfjyBMPSjCMgDwxBObBOPLEgxIMIiBPDGB5Moo88aQIgxjIEwNYHowiTzwogQi5EECe5IKZJTEB5Im+1wHyRF9nyBN9nSFPdHWGPNHVV5wWeaKvM+SJrs6QJ7r6Iq09AeSJPTtOGhJAnhgC82AceeJBCYYRkCeGwDwYR554UIJBBOSJASxPRpEnnhRhEAN5YgDLg1HkiQclECEXAsiTXDCzJCaAPNH3OkCe6OsMeaKvM+SJrs6QJ7r6itMiT/R1hjzR1RnyRFdfpLUngDyxZ8dJQwLIE0NgHowjTzwowTAC8sQQmAfjyBMPSjCIgDwxgOXJKPLEkyIMYiBPDGB5MIo88aAEIuRCAHmSC2aWxASQJ/peB8gTfZ0hT/R1hjzR1RnyRFdfcVrkib7OkCe6OkOe6OqLtPYEkCf27DhpSAB5YgjMg3HkiQclGEZAnhgC82AceeJBCQYRkCcGsDwZRZ54UoRBDOSJASwPRpEnHpRAhFwIIE9ywcySmADyRN/rAHmirzPkib7OkCe6OkOe6OorTos80dcZ8kRXZ8gTXX2R1p6AankyOlSTmfmGtEN7AJzMj0ClVJLhgapMztbzW8qmRAQGeipSKgcyu9BMdA+H8yMQ/yVhsd6WRov/MOZHPdmm9cM1OTnTsL6kHUXytVOTsm9hXjb19Mpzxsakv1yxvo+DT00glic91ZJMz/PfRS2vlfgfAtphtPzfRr50EIj/jD8935CQ38pUFFaplGS4ryKTs/a/lyV90PgfIviCQNYEVMuTjSO9y38Rb7WjrDlxfwoEKuWSjA1V5dgU8iQFnLlcwTtPcsGc6hLeeZIqzlwuS/rOk389NiF3nJpcybq1t09+9oILc8m+FpfwzhN9rfPOE32d8c4TXZ3xzhNdfZHWngDyxJ4dJw0JIE8MgXkwjjzxoATDCMgTQ2AejCeVJ+/d+4icbHb+a9+vX3ypDFWqHjxd8SIgT7LvNGg1ZOD+T0nt8IMS9g7JwhXfI42tT7dejDyxRufsIPLEGXqrxcgTK2wcUkgAeaKwNK2RkSf6mkOe6OsMeaKvs6Ty5C8P7JdHFxZWHrxSCuStl+6Ukj4UKhIjT7KvqW/3bdK/+7azi0plOfXSX5Owd9hqOfLECpvTQ8gTp/iNlyNPjJFxQCkB5InS4jTGRp7oaw15oq8z5Im+zpLKkwdmZ+SjE4elGYYSiMgNY+vl+zds0gdCSWLkSfZFDd3xIalN7O5YNHvDa6Vx3k6r5cgTK2xODyFPnOI3Xo48MUbGAaUEkCdKi9MYG3mirzXkib7OkCf6OksqT+InbkWRHKsvyfpaj/SUeM9Jlq8C5EmWdE/f3ffgrdL/0O0di059//8jYZ+7d57UwwU5OHuvtKKW7Bi6VnrKQ9mDWMMbkCe6ykee6OqLtPYEkCf27DhpSAB5YgjMg3HkiQclGEZAnhgC82A8DXniwWOsmQhFlCdzzZNy59G/k6MLD8tI7xZ59sZbZKz3fGedlpZmZeDej0v15KMS9g5KfdvVsnj5jdZ5kr7zpN6ek088+k6Zb57+YOZaeUBeueM3ZaAyap2Jg09NAHmi6xWCPNHVF2ntCSBP7Nlx0pAA8sQQmAfjyBMPSjCMgDwxBObBOPLEgxIMIhRRntx66H1yaO7+FQoD1TH5kYt+34CK36NJ5cme6a/Ilyf+puMhr93wKrlq7AecPnj7ZCTRUiTlsUCCvvib9orzhTzR1SXyRFdfpLUngDyxZ8dJQwLIE0NgHowjTzwowTAC8sQQmAfjyBMPSjCIUER58ncP/7o0wsUOCj926f+QnlK/AZn0RlthQ7527O/lwOy90lcZkavHb5IdQ8+0XlBEeVK/vy3hdHSaSSBSu7Is5dHiCBTkifXL3clB5IkT7Cx1QAB54gD6Wl2JPNHXPPJEX2fIE32dIU90dVZEefJvB/5EJhbOfkBrf2Wd/OjF73JWzH0nPyH3nfjkyv5SUJYfuuj3ZKAyYpUpqTxZaE3Lv+z7LWmHzZX9P3jhb8twzc0HM0eLkSzd3e5gEb/7JBYoRflCnuhqEnmiqy/S2hNAntiz46QhAeSJITAPxpEnHpRgGAF5YgjMg3HkiQclGEQoojw5trhH7j3xcTmxuF9GejbLVetfJtsHdxlQSXf0tkPvlwNz3+i49Hu2vkHOt8yUVJ7EQeZbp2Ri/sHlD4zd0r9Thmob0n1og9uQJwawGM2FAPIkF8ws8YAA8sSDEtZKBOSJvqaRJ/o6Q57o6wx5oquzIsoT3xr4jxMfk/tPfroj1o9c/A7rD2hNQ574xmjprvby5508/lW7tCTlTcX5SVu888S3V9xT50Ge6OqLtPYEkCf27DhpSAB5YgjMg3HkiQclGEZAnhgC82AceeJBCQYRkCcGsCxHF1vTcsfRD8mxhUekt7JOLhy+Tq5e/zLL20SKKE+itkg4dfoDY0vrSlIatMbj5UHkiZe1nDMU8kRXX6S1J4A8sWfHSUMCyBNDYB6MI088KMEwAvLEEJgH48gTD0owiIA8MYDlyWgR5YknaDOLgTzJDG0mFyNPMsHKpR4SQJ54WEpRIyFP9DWLPNHXGfJEX2fIE12dIU909RWnRZ7o6wx5oqsz5ImuvkhrTwB5Ys+Ok4YEkCeGwDwYR554UIJhBOSJITAPxpEnHpRgEAF5YgDLk1HkiSdFGMRAnhjA8mAUeeJBCUTIhQB84PxwAAAgAElEQVTyJBfMLIkJIE/0vQ6QJ/o6Q57o6wx5oqsz5ImuvuK0RZQnB+ful/iDdeebJ2XbwFVy/eYfk1qpX18550iMPNFVJfJEV1+ktSeAPLFnx0lDAsgTQ2AejCNPPCjBMALyxBCYB+NpyJPKqUNSPbFfWus2SXPjxSISePBkxYyAPNHXa9HkSTNckn/c8xvSChsrZewcfZFct/E1+spBnhSiM+RJIWrkIboggDzpAhIj6RBAnqTDMc9bkCd50k5nF/IkHY553pJUnvTsv0sG7/3YSuT6Bc+QuWt/MM9HWFO7kCf66i6aPDm+uE8+/di7O4oY790hN13wG/rKQZ4UojPkSSFq5CG6IIA86QLSWh7peey4DN29Ryqzi7K0fYNMP/8KiaoVKyTIEytsTg8hT5zit1qOPLHC5vRQUnmy7rb3SWV64uwzBIFM3vQ2iao9Tp+rqMuRJ/qaLZo8id958g+PvFnaUXOljMtHbpQbNt2irxzkSSE6Q54UokYeogsCyJMuIK3VkaDRlE0f/qIEzfYKgrmrd8js9ZdaIUGeWGFzegh54hS/1XLkiRU2p4eQJ07xGy9Hnhgjc36gaPIkBrp76nZ5eOqLMt+clA39l8gNG39MBqvrnbNOKwCfeZIWyXzuQZ7kw5kt7gkgT9x34G2C2pFJWf/JuzvyNc4blZMvf5ZVZuSJFTanh5AnTvFbLUeeWGFzeiipPOnbfZv0775t5RmaGy+Rmef+lNNnKvJy5Im+dosoT/S1YJYYeWLGy/U08sR1A+zPiwDyJC/SCvcE9aZs/t+fF4nOhp+/crvMPPcKq6dBnlhhc3oIeeIUv9Vy5IkVNqeHksoTiSKpnnxMKqcOSmtoXFrjF0pUqTl9piIvR57oaxd5oq8z5ImuzpAnuvoirT0B5Ik9uzVxcuCbj0n/tw9LeW5R6ptHZeY5l0t7qM/q2ZEnVticHkKeOMVvtRx5YoXN6aHE8sRp+rW3HHmir3Pkib7OkCe6OkOe6OqLtPYEkCf27DhpSAB5YgjMg3HkiQclGEZAnhgC82AceeJBCQYRkCcGsDwZRZ54UoRBDOSJASwPRpEnHpRAhFwIIE9ywcySmADyRN/rAHmirzPkib7OkCe6OkOe6OorTos80dcZ8kRXZ8gTXX2R1p4A8sSeHScNCSBPDIF5MI488aAEwwjIE0NgHowjTzwowSAC8sQAliejyBNPijCIgTwxgOXBKPLEgxKIkAsB5EkumFkSE0Ce6HsdIE/0dYY80dcZ8kRXZ8gTXX3FaZEn+jpDnujqDHmiqy/S2hNAntiz46QhAeSJITAPxpEnHpRgGAF5YgjMg3HkiQclGERAnhjA8mQUeeJJEQYxkCcGsDwYRZ54UAIRciGAPMkFM0tiAsgTfa8D5Im+zpAn+jpDnujqDHmiq684LfJEX2fIE12dIU909UVaewLIE3t2nDQkgDwxBObBOPLEgxIMIyBPDIF5MI488aAEgwjIEwNYnowiTzwpwiAG8sQAlgejyBMPSiBCLgSQJ7lgZklMAHmi73WAPNHXGfJEX2fIE12dIU909RWnRZ7o6wx5oqsz5ImuvkhrTwB5Ys+Ok4YEkCeGwDwYR554UIJhBOSJITAPxpEnHpRgEAF5YgDLk1HkiSdFGMRAnhjA8mAUeeJBCUTIhQDyJBfMLIkJIE/0vQ6QJ/o6Q57o6wx5oqsz5ImuvuK0yBN9nSFPdHWGPNHVF2ntCSBP7Nlx0pAA8sQQmAfjyBMPSjCMgDwxBObBOPIk+xJahyNpHW6LhIGUNwZSvaAkEtjtRZ7YcXN5Cnnikr7dbuSJHTdXp5AnrsizN28CyJO8ia/hfcgTfeUjT/R1hjzR1xnyJNvOorlIlu5tdyypXVqS8qaS1WLkiRU2p4eQJ07xWy1Hnlhhc3YIeeIMPYtzJoA8yRn4Wl6HPNHXPvJEX2fIE32dIU+y7aw1EUnzkU55UtkcSPWSstVi5IkVNqeHkCdO8VstR55YYXN2CHniDD2LcyaAPMkZ+FpehzzR1z7yRF9nyBN9nSFPsu0snBOp39vqWFK9pCSVze7eebLQmpIHJz8n042jsmVgp1w+eqMEtt9HlC2+QtyOPNFXYxHlSb09K4/N3rdcxvlD10pPeUBfMedIjDwpTJU8yCoEkCe8RHIjgDzJDXVqi5AnqaHM7SLkSW6oU1uEPEkN5TkvauwLJTwZLn/mSWld/K6TkgR2bzyRpO88iSSSj+37XZluHFnJu2v9y2XX+CuyB7FGNyBP9BVfNHky3zoln3z0XbLUmlkuo7cyLK/a8XbpKQ/pK+dJEiNPClEjD9EFAeRJF5AYSYcA8iQdjnnegjzJk3Y6u5An6XDM8xbkSZ60k+9KKk/mmifln/e+vSPIeO8OuemC30gejhuelADyRN8LIw15MtM4Jgfn7pf+6qicP7hLSrbGNAV835q8Ve46/pGOm27Y9Fq5fOSFKdzu/grkifsOSJAPAeRJPpzZwo8qVvkaQJ7kU1u5OSGVpT0SVsal2XeZWP8YEBFBnuTTWZpbkCdp0sz+rqTypBXW5cMP/7pEEq6E3TrwNHnxtv+cffg1ugF5kn3x8ev6wVO3yfHFvbK+93x52tj3SaXUY704qTw5srBbbj34Xgmj0593tLnvMnnp+b9mnSfpQR/lycH5b8g9xz4qC61Ty99GdN3GV0u11Gv1qMgTK2wcUkgAeaKwNK2ReeeJvuaQJ9l3Vl24XwZP/r2IRMvLmv1Pk7n1P269GHlijc7ZQeSJM/RWi5PKk3jpnUc/LA9NfXH5130l6JEbt/6cxAKFr2wIIE+y4frEW79w5IOyf+aulf+v7YO75EVb32C9OKk8+cKR/yX7Z+7u2P+KC94mY73brTMlOTjTOCof3fffVqRpICX5kYvfIf2VdUmutT672JqWf9r7mytyKb5o1/jLZdd6u28fRJ5YV8FBZQS6kieLSw35r+/5C/nkrXcsP97vvvmn5YdvOv02s8MnF5098saRXpmcrUurffovHXz5TQB54nc/T5YOeZJ9Z0PH/5dUlvZ1LJre8hYJLb8PGnmSfWdpb0CepE002/vSkCdxwka4IHONEzLSs9XptxNkS8uP25En2ffwdw//ujTCs38niKXgay/7Q4klgc1X0eRJzCD+lr0j8w8u49gycKUMVMds0KRy5tD8A8vvzHniV5zpJdt+yep+5IkVNg4pJLCqPHlcnDz7mVeuCJMnPifyRGHrjiIjTxyBT7AWeZIAXpdHkSddgirwGPJEV7lpyRNdT607LfIk+/7+z77fkZnGxMqivso6efXF77JenFSe7Ju5S7545IMr+4eqG+VVF/4XROUZIvE7Tz6y560Sf4D1419XrX+ZXDt+s1VnyBMrbBxSSGBVefLPn/qC7D8wIb/++tc86eMhTxS27igy8sQR+ARrkScJ4HV5tGf2y9I/9amV6XZtm8xs+oUuT3/3GO88sUbn7CDyxBl6q8XIEytsTg8hT7LH/9DU7XLXsY9IO2otC4pnjP+QXDn2YuvFSeVJvHhy6YBMLHxb+qsjyz8SvFbqt85TxIMPnvqcfHvqS7LYmpJN/ZfK9ZtukYHKqNWjIk+ssHFIIYFV5ckf/tk/yAc/fPYP9udtWi9/9u43ysUXbFl+XOSJwtYdRUaeOAKfYC3yJAG8ro9GUqkfkHLjgITV9dKqXShRgg/ZQ550Dd6bQeSJN1V0FQR50hUmr4aQJ9nXES1GsrinLlOLh2Wk9zzpu7hXgv7AenEa8sR6OQeNCSBPjJFxQCmBp5Qnj3/Lzqtf+T1y3TVXLD9i/E6Uf/j45+X97/o1GV03JPXm6U+xdvEV/0JttcInvOHMRQp2dksgkEAqlUCarbM/YaDbs8y5IVAunf6DTzvkc4XcNGC+tVouLfcVRnRmTs/NiZ5q2envpW6eWu/WUhBI/N/GZpvfy7S0WCkFyz/bKOT3sswqO/7VutRPnf07QXWoJJteYPeTW+KQtUpp+c+L/E6WWWWpXhwEgcS/zlz+dzH+vZQvCGRNwFienJqelV94yx/JG1//mmWhcmK6nnXGc94/OliTmcWmtPnAWGcdmCwulwMZ7qvIqbmmyTFmHRLo6ylL/BeF+aWWwxSsNiEwPFCVxXpLmi3+yGnCzeXs+Loep7+Xunx2jbtr1ZL0Vksys8B/F7X0N9BXWf6z4lLD3T/4aWFlm3P6Cw15wk/fXr5m3Y01Ecs3n4wO1WR6vonwsi0k53OVciDxu5WnHP4ZP/69lC8IZE2gq2/b2bF988qHxcby5K3v+IC86RdvWf7WHb5tJ+uKinM/37ajr0u+bUdfZ3zbjr7O+LYdXZ3xbTu6+lr+S/xAVZrtSBb4h4DMyqv/R0vC+bPXl/oD6XmG/TsB+LadzKrK5GK+bScTrFzqIYFV5cnX790tb33nB1Y+5yT+tp077v6W/M6bflr6emvIEw9L9TUS8sTXZs6dC3mirzPkib7OkCe6OkOe6OoLeZJPX+FUJM0DoYRzkZQGAqmeX5LSiOXbTkQEeZJPb2ltQZ6kRZJ7fCewqjyJHyAWJr/17r9Yfpardl608nkn8f+bd574XrE/+ZAn/nTRbRLkSbek/JlDnvjTRbdJkCfdkvJjDnniRw8mKXjniQktP2aRJ3700G0K5Em3pJjTTqArefJUD4k80f4SyC8/8iQ/1mltQp6kRTK/e5An+bFOaxPyJC2S+dyDPMmHc5pbkCdp0sznLuRJPpzT2oI8SYsk9/hOAHnie0MFyoc80Vcm8kRfZ8gTfZ0hT3R1hjzR1VecFnmirzPkia7OkCe6+iKtPQHkiT07ThoSQJ4YAvNgHHniQQmGEZAnhsA8GEeeeFCCQQTkiQEsT0aRJ54UYRADeWIAy4NR5IkHJRAhFwLIk1wwsyQmgDzR9zpAnujrDHmirzPkia7OkCe6+orTIk/0dYY80dUZ8kRXX6S1J4A8sWfHSUMCyBNDYB6MI088KMEwAvLEEJgH48gTD0owiIA8MYDlySjyxJMiDGIgTwxgeTCKPPGgBCLkQgB5kgtmlsQEkCf6XgfIE32dIU/0dYY80dUZ8kRXX3Fa5Im+zpAnujpDnujqi7T2BJAn9uw4aUgAeWIIzINx5IkHJRhGQJ4YAvNgHHniQQkGEZAnBrA8GUWeeFKEQQzkiQEsD0aRJx6UQIRcCCBPcsHMkpgA8kTf6wB5oq8z5Im+zpAnujpDnujqK06LPNHXGfJEV2fIE119kdaeAPLEnh0nDQkgTwyBeTCOPPGgBMMIyBNDYB6MI088KMEgAvLEAJYno8gTT4owiIE8MYDlwSjyxIMSiJALAeRJLphZEhNAnuh7HRRRnlQah6Xv1Mek3DwqzZ4LZXH0ZgkrI/rKOUdi5Im+KpEnujpDnujqK06LPNHXGfJEV2fIE119kdaeAPLEnh0nDQkgTwyBeTBeRHmy7vB7pNSeWqHb6Ltc5sd/ygPa6URAnqTDMc9bkCd50k6+C3mSnGHeNyBP8iaefB/yJDnDPG9AnuRJm10uCSBPXNJfY7uRJ/oKL5o8CcJFGTn0ex1FREGvTG37LX3lnCMx8kRflcgTXZ0hT3T1FadFnujrDHmiqzPkia6+SGtPAHliz46ThgSQJ4bAPBgvmjyJkY4c/gMJ2jMrdJs9F8vcxp/2gHY6EZAn6XDM8xbkSZ60k+9CniRnmPcNyJO8iSffhzxJzjDPG5AnedJml0sCyBOX9NfYbuSJvsKLKE+qiw9K38xtUmoel1Ztmyyte4m0ei7QV845EiNP9FWJPNHVGfJEV19xWuSJvs6QJ7o6Q57o6ou09gSQJ/bsOGlIAHliCMyD8SLKEw+wZhoBeZIp3kwuR55kgjWzS5EnmaHN7GLkSWZoM7sYeZIZ2kwuRp5kgpVLPSSAPPGwlKJGQp7oaxZ5oq8z5Im+zpAnujpDnujqK06LPNHXWWJ50hZp7A0lPBFK0BNIZUcg5bGSPhBKEiNPlBRFzMQEkCeJEXJBtwSQJ92S8mcOeeJPF90mQZ50S8qfOeSJP110kwR50g0lv2aQJ3710U2apPKk+WgorQPh2VUlkb7ryiLVoJv1zBgSQJ4YAmNcLQHkidrq9AVHnujrDHmirzPkib7OiihPpltN+fbcnPSVSnLZ4JDUSsX5F1/kib5fY8gTfZ0llSf1+9sSTkcdD167qizldciTLF4NyJMsqHKnjwSQJz62UtBMyBN9xaYiT6KWVBd3S6k9I82+KySsjOkDoSgx8kRRWWeiFk2eTCwtyf/72H5pRKf/1Xe81iOv33GRVIJi/KUFeaLv1xjyRF9nSeVJc28orcNPeOeJiPReX5agVoz/DvnWKPLEt0bIkxUB5ElWZLn3uwggT/S9KJLLk1CGJt4vlebh0w8flGV2w88U6qfb+NYq8sS3RlbPUzR58pljE3LnqcmOB3/dtvPlkoHB1WEomECeKCjpOyIiT/R1llSeREsizb1n3n0Sf+bJ5kAqW4rzDjjfGkWe+NYIebIigDzJiiz3Ik8K8BpIKk/KjQMyfPRPO0jUB54hC2M/UgA6fj4C8sTPXp4qFfJEV2fIE119xWmRJ/o6SypP9D2x7sTIE939kb57AsiT7lkxmZAA7zxJCNDgeLl1XCKpSFgZNTj13aPIk0T4nBxGnjjBnmhp0eTJvsV5+evHHl1h0lcqy69efGlhPvcEeZLo5e7kMPLECfZES5EnifDlfhh5kjtyFjoigDxxBH4trkWeZN96ENZl8MRfSqX+2PKyZu8VMrfhdSJi91bVpPJEJJSRQ++WIJxdefi58ddJs+/K7GGs0Q3IE33FF02exA0cb9Rl/8LC8gfGXtg/IAOVir5izpEYeaKvSuSJvs6QJ7o6Q57o6ou09gSQJ/bsOGlIAHliCMxivDb/NRmY/GjHybn1t0iz/yqL20SSyxORIFyQytIeKbVnpd2zQ1q1LVZZONQdAeRJd5x8miqiPPGJb9pZkCdpE83+PuRJ9ozT3oA8SZtotvchT7Lly+3+EECe+NNF4ZMgT7KveGDy/0ht/usdixbXfa8sDb/Yanka8sRqMYesCSBPrNE5O4g8cYbeajHyxAqb00PIE6f4rZYjT6ywOTuEPHGGnsU5E0Ce5Ax8La9DnmTffnVpjwwe/4uORTOb/7O0q+dZLUeeWGFzegh54hS/1XLkiRU2Z4eQJ87QWy9Gnlijc3YQeeIMvdVi5IkVNg4pJIA8UVia1sjIkzyai6Rn/h6pLD0sUVCVZu/l0ux/uvVi5Ik1OmcHkSfO0FsvRp5Yo3NyEHniBHuipciTRPicHEaeOMFuvRR5Yo2Og8oIIE+UFaY5LvJEX3vIE32dIU/0dYY80dUZ8kRXX3Fa5Im+zpAnujpDnujqi7T2BJAn9uw4aUgAeWIIzINx5IkHJRhGQJ4YAvNgHHniQQkGEZAnBrA8GUWeeFKEQQzkiQEsD0aRJx6UQIRcCCBPcsHMkpgA8kTf6wB5oq8z5Im+zpAnujpDnujqK06LPNHXGfJEV2fIE119kdaeAPLEnh0nDQkgTwyBeTCOPPGgBMMIyBNDYB6MI0+yL6EZLsmBufukGdbl/MFd0ldZZ70UeWKNztlB5Ikz9NaLkSfW6JwcRJ44wc5SBwSQJw6gr9WVyBN9zSNP9HWGPNHXGfIk285icfLx/b8nc82Ty4tqpX656YI3yXBts9Vi5IkVNqeHkCdO8VstR55YYXN2CHniDD2LcyaAPMkZ+FpehzzR1z7yRF9nyBN9nSFPsu1s38xd8sUjH+xYsmv85bJr/SusFiNPrLA5PYQ8cYrfankh5UkzktbJaJlHeTyQoBJYsfHxEPLEx1bIlAUB5EkWVLnzSQkgT/S9MJAn+jpDnujrDHmSbWfIk2z5argdeaKhpc6MRZMnYV2kcV9bosZpeRLUAum9tiRSLYZAQZ7o+zVGYjsCyBM7bpyyIIA8sYDm+AjyxHEBFuuRJxbQHB9BnmRbQL09Lx/Z+1Zph82VRTdd8BYZ773AajHvPLHC5vQQ8sQpfqvlRZMnrUOhNPeFHSyql5Slshl5YvUCeZJD8e+lfEEgawLIk6wJc/8KAeSJvhcD8kRfZ8gTfZ0hT7LvbKE1LRMLu5c/MPa8/itkuLbReinyxBqds4PIE2forRcjT6zROTnIO0+cYGepAwLIEwfQ1+pK5Im+5pEn+jpDnujrDHmiqzPkia6+4rTIE32dFU2eRAuRLP1HW+T0d+2IBCK911UkqOnr5skSI0+K0SNPsToB5MnqjJhIiQDyJCWQOV6DPMkRdkqrkCcpgczxGuRJjrBTWIU8SQFizlcgT3IGnsK6osmTGEm0JNKeOv2tO+XRkgQ9KYDy5ArkiSdFECNzAsiTzBGz4HECRZQnQbgk/ac+JtXFh6RdGZWldS+RZt8VhSkdeaKvSuSJvs6QJ7o6Q57o6itOizzR11kR5Ym+FrpPjDzpnhWTugkgT3T3pyp9EeVJ/9QnpWf2Kys9REFNpre8RaJSMf45AXmi6pfYcljkib7OkCe6OkOe6OoLeaKvrzgx8kRXb8gTXX2R1p4A8sSeHScNCRRRngwffb+UGwc7SMxseoO0a9sN6fg5jjzxs5enSoU80dcZ8kRXZ8gTXX0hT/T1hTzR1xnyRF9nJLYjgDyx48YpCwJFlCfxt+z0zN15lkZQkamtb5OoIN/IijyxeKE7PoI8cVyAxXrkiQU0h0eQJw7hW67m23YswTk8xjtPHMK3WI08sYDGEZUEkCcqa9MZuojypNQ6JX1TH5fq0qMSVkakPnid1AefrbOgJ0mNPNFXJfJEX2fIE12dIU909RWnRZ7o6wx5oqsz5ImuvkhrTwB5Ys+Ok4YEiihPDBGoG0eeqKuMzzzRV5kgT3SVhjzR1RfyRF9fcWLkia7ekCe6+iKtPQHkiT07ThoSQJ4YAvNgHHniQQmGEXjniSEwD8aRJx6UYBABeWIAy5NR3nniSREGMZAnBrA8GEWeeFACEXIhgDzJBTNLYgLIE32vA+SJvs6QJ/o6Q57o6gx5oquvOC3yRF9nyBNdnSFPdPVFWnsCyBN7dpw0JIA8MQTmwTjyxIMSDCMgTwyBeTCOPPGgBIMIyBMDWJ6MIk88KcIgBvLEAJYHo8gTD0ogQi4EkCe5YGZJTAB5ou91gDzR1xnyRF9nyBNdnSFPdPUVp0We6OsMeaKrM+SJrr5Ia08AeWLPjpOGBJAnhsA8GEeeeFCCYQTkiSEwD8aRJx6UYBABeWIAy5NR5IknRRjEQJ4YwPJgFHniQQlEyIUA8iQXzCyJCSBP9L0OkCf6OkOe6OsMeaKrM+SJrr7itMgTfZ0hT3R1hjzR1Rdp7QkgT+zZcdKQAPLEEJgH48gTD0owjIA8MQTmwTjyxIMSDCIgTwxgeTKKPPGkCIMYyBMDWB6MIk88KIEIuRBAnuSCmSUxAeSJvtcB8kRfZ8gTfZ0hT3R1hjzR1VecFnmirzPkia7OkCe6+iKtPQHkiT07ThoSQJ4YAvNgHHniQQmGEZAnhsA8GEeeeFCCQQTkiQEsT0aRJ54UYRADeWIAy4NR5IkHJRAhFwLIk1wwsyQmgDzR9zpAnujrDHmirzPkia7OkCe6+orTIk/0dYY80dUZ8kRXX6S1J4A8sWfHSUMCyBNDYB6MI088KMEwAvLEEJgH48gTD0owiJCGPKnU90r/1Gek1Dwhrd5LZGH0VRKWBwxSMGpCAHliQsuPWeSJHz10mwJ50i0p5rQTQJ5ob1BRfuSJorLOREWe6OsMeaKvM+SJrs6Sy5NQ1h16p5TChZUHrw88QxbGfkQXCEVpkSeKyjoTFXmiqzPkia6+SGtPAHliz46ThgSQJ4bAPBhHnnhQgmEE5IkhMA/GkScelGAQIak8KbeOy/CRP+7Y2K6My8x5v2aQglETAsgTE1p+zCJP/Oih2xTIk25JMaedAPJEe4OK8iNPFJV1JiryRF9nyBN9nSFPdHWWVJ6IhDJy8PcliJZWHrzRv0vm179GFwhFadOSJ6WFUxK0W9Ie2qDo6XVGRZ7k01vUjETqIsFgkGgh8iQRPg4rIoA8UVSW9qjIE30NIk/0dYY80dcZ8kRXZ8nliUjP/N1Sm7tDys2T0uo5XxZHbpJ2daMuEIrSJpYnUShDd35YahMPLT91c/35Mvucn5So0qOIgq6oyJPs+2o+GkrrQLi8qNQnUr2yLKU+O4mCPMm+Lzb4QQB54kcPayJFGvKk3Dwm/ac+JuXG4dN/4Bx9ubQr/AtQVi8g5ElWZLO7F3mSHdusbkaeZEU2m3vTkCfZJOPWcxFIKk9qh74pQ1//h47r5665Weo7ngX0jAggTzICe+baaCGSpXvaHUvKmwOpXVK2Wow8scLGIYUEkCcKS9MaOQ15MjTxXqk0j6wgiAXK7MbXa0XifW7kifcVfVdA5Im+zpAnujpDnujqK06bVJ707b5N+nff1vHgsTiJBQpf2RBAnmTD9fFb2ycjaTzYKU9KQ4H07EKeZEue27UTQJ5ob1BR/uTyJJTRA/9FSpPDUpoZknBkRsLReTm17b8poqArKvJEV19xWuSJvs6QJ7o6Q57o6isNeVKenpCR297X8eAzz/u/pLnhYn0wlCRGnmRcVEtk6a6WRK2ze6o7SlLZVrJazDtPrLBxSCEB5InC0rRGTi5PRNbf/mGpPTy+gqBx2Uk5+cJbtCLxPjfyxPuKvisg8kRfZ8gTXZ0hT3T1lYY8ie+oHXpAqkcfWv7A2ObGS6R+wbUiYvf5EPoI5p8YeZI983AmktbxcPkDY0vrAqlsKolU7PYiT+y4cUofAeSJvs7UJk5Dnmz+61slaJz+cKv4K+wty9Gf+F61THwPjjzxvaHvzoc80dcZ8kRXZ8gTXX2lJU/0PbXuxMgTXf0hT3T1RVp7AsgTe3acNCSQjjy5TYLG2fcYhn09cvR1LzRMwni3BJAn3ZLyZ0bGOXkAACAASURBVA554k8X3SZBnnRLyo855IkfPZikSPqZJya7mE2HAPIkHY553YI8yYs0e1wTQJ64bmAN7U9Dnqy7/QHpf/jwCrWFK7bK9POvXEMU833UosqT8FQk4XwkpZGSlAbzZZr1NuRJ1oTTvx95kj7TLG9EnmRJN5u7kSfZcM3yVuRJlnTTvxt5kj5TbvSTAPLEz14KmSoNeSJhJD1HJqU6OSeN8SFpbBoVKfE9x1m9YIooT5p72tI6Eq0gq15UlsqW4ryGkCdZ/WrI7l7kSXZss7gZeZIF1WzvRJ5kyzeL25EnWVDN7k7kSXZsudkvAsgTv/oodJpU5EmhCfn3cIWTJ5HI4pef8NHy8cf99QXS+0y7H83nX2P8tB0fO1ktE/JkNUJ+/d+RJ3710U0a5Ek3lPyaQZ741cdqaZAnqxHi/14UAsiTojSp4DmQJwpK+o6IyBN9nfHOE32dIU90dYY80dVXnBZ5oq8z5ImuzpAnuvoirT0B5Ik9O04aEkCeGALzYLxw8kREGt9qS3vy7LftVLaVpLqj5AHtdCIgT9LhmOctyJM8aSffhTxJzjDvG5AneRNPvg95kpxhnjcgT/KkzS6XBJAnLumvsd3IE32FF1GeRKFIOBVKtCBSGgqkNByIFOcjTwR5ou/XGfJEV2fIE1198c4TfX3FiZEnunpDnujqi7T2BJAn9uw4aUgAeWIIzIPxIsoTD7BmGgF5kineTC5HnmSCNbNLkSeZoc3sYt55khnazC5GnmSGNpOLkSeZYOVSDwkgTzwspaiRkCf6mkWe6OsMeaKvM+SJrs6QJ7r6itMiT/R1hjzR1RnyRFdfpLUngDyxZ8dJQwLIE0NgHowjTzwowTAC8sQQmAfjRZQnUV2WP1soqIiUxwKR4vxAK0GeePCLxjAC8sQQmAfjyBMPSjCIgDwxgMWoagLIE9X16QqPPNHVV5wWeaKvM+SJvs6KJk/C+Ujq97VFwtNdxD8OvOfasgQF+Vxm5Im+X2PIE32dIU90dYY80dUXae0JIE/s2XHSkADyxBCYB+PIEw9KMIyAPDEE5sF40eRJc28orcNnzMkZvrWnlaU8WoxPZkaeePCLxjAC8sQQmAfjyBMPSjCIgDwxgMWoagLIE9X16QqPPNHVV5w2DXmy/NNtJiOJGpGUx0oS9OrjoCkx8kRTW6ezIk90dYY80dVXnBZ5oq8z5ImuzpAnuvoirT0B5Ik9O04aEqiUAxkb6pFjU0uGJxk3IVA9vkd69t8tUbki9R3XSWtsu8nxjtnE8iQSqd/bknD+zLUlkZ6nl0//eGC+MiGAPMkEa6aXFk2etKcjadzfXmEWf+5Jz3UVCQryuSfIk0x/OWRyOfIkE6yZXoo8yRRv6pcjT1JHyoWeEkCeeFpMEWMhT7JvtXLqoKy7/c/PLiqVZepFvyjtoQ1Wy5PKk/ZsJI34sw+e8FXeWJLaZQX58AMrqtkeQp5kyzeL24smT2JG0UIk7WlZ/sDY0jqRoFYcYYo8yeJXQbZ3Ik+y5ZvF7WnIk/klkePTkfTWRDaOBFIqzn+GskCe6E7kSSJ8HFZEAHmiqCztUZEn2TfYt/s26d99W8eiuV2vlPqF11ktR55YYXN6CHniFL/V8iLKEysQSg4hT5QU9YSYyBN9nSWVJydnI7n74VCi6PSzjw0Fch3/cJPZCwF5khlaLvaMAPLEs0KKHAd5kn27PfvvksF7P9YpT571aqlvu8pqeVJ5IpHI0tdbEjXOrq/tLEt5Pf/8Y1VIF4eQJ11A8mwEeeJZIavEQZ7o6itOizzR11lSeXLfvlAmJs+YkzOP/9ydJRnq588fWbwakCdZUOVOHwkgT3xspaCZkCfZFxs0FmXd598n5YXp5WXt4U0ydePPi5SrVssTy5P47futSNpTIhJ/YOxwIMEgf3CxKqPLQ8iTLkF5NIY88aiMLqIgT7qA5NkI8sSzQrqIgzzpApJHI8gTj8ogSqYEkCeZ4uXyJxJAnuT3eijPHl/+wNiwfzTR0jTkSaIAHDYmgDwxRub8APLEeQVGAZAnRri8GEaeeFGDUYik8uTIZCTf2Hf2R6b394g8/2llCfj3G6Meuh1GnnRLijntBJAn2htUlB95oqisM1HTkiel+pwES3PL74ThTy6dr4NIInno1O1yeP5BWVfbJDvHvlf6KyPWLxbkiTU6ZweLJk/aUUvuPv7Psm/m69JTGpCnr3+pXLLuuc74pr0YeZI20ezvQ55kzzjtDUnlSZxndiGSk7Oy/IGx64cDqRbkJ36lzTqN+5AnaVDkDg0EkCcaWipIRuSJviLTkCcD3/iU9O69Y/nhw8ExmX7eT0vYN6wPRkaJ7zvxCbnv5CdXbl9XO09uvvC3JBC7fx5DnmRUVIbXFk2efGvyVrnr+EeeQCyQH7zwv8hwbXOGFPO7GnmSH+u0NiFP0iKZ3z1pyJP80rIJecJrYK0QQJ6slaY9eE7kiQclGEZIKk/Kcydk5N//Z8fWpQuvk/ldrzRMUtzxTz36B3JiaX/HA/7wRb8ng9X1Vg+NPLHC5vRQ0eTJl478leydOS1MH/963uaflIsL8u4T5InTXy5Wy5EnVticHkKeOMVvvBx5YoyMA0oJIE+UFqcxNvJEX2tJ5UnPwftl8K5/7Hjw5vgOmXn+T+uDkVHiWw++Vw7NP7ByeyAlee2lfyiVUo/VRuSJFTanh4omTx449Vm5+9g/dzB95Y63y2jPVqec01qOPEmLZH73IE/yY53WJuRJWiTzuQd5kg9ntrgngDxx38GaSYA80Vd1UnkStJZk9NPvlqDdWnn4+atfLksX3aAPRkaJY3Fy+6EPSCuqi0ggl4+8QG7Y9FrrbWnIk8XWtDw2d59USz2yfXCXVEu91nk4uDqBosmTerggd0x8SCYWHlr+zJMLhq6Vaze8anUQSiaQJ0qKekJM5Im+zpAnujpDnujqi7T2BJAn9uw4aUgAeWIIzIPxpPIkfoTK8b3Sc/gBKS3NSXP9Dom/bUfKFQ+ezp8IYdSWqfohGayNS63UnyhYUnky05iQTz36HmmEC8s54m8fit81gEBJVMtTHi6aPMmOlB83I0/86MEkBfLEhJYfs8gTP3roNgXypFtSzGkngDzR3qCi/MgTRWWdiZqGPNH31LoTJ5Un9538hNx34uwH2MY0XnDez8iFw8/SDcbj9MgTj8t5kmjIE119xWmRJ/o6Q57o6gx5oqsv0toTQJ7Ys+OkIQHkiSEwD8aRJx6UYBgBeWIIzINx5IkHJRhEQJ4YwPJkFHniSREGMZAnBrA8GEWeeFACEXIhgDzJBTNLYgLIE32vA+RJPp2F85G0pyIp9YmUx0qJliaVJyeWHpVPPfqulQzlUlV+9KJ3Sk95IFEuDp+bAPJE16sDeaKrrzgt8kRfZ8gTXZ0hT3T1RVp7AsgTe3acNCSAPDEE5sE48iT7ElonImnubp+VFeOB1K4oWy9OKk/ixTONY3JkYffyB8Zu7r9C+ivrrPNwcHUCyJPVGfk0gTzxqY3usiBPuuPk0xTyxKc2Vs+CPFmdERPFIIA8KUaPKp4CeaKipo6QyJPsO6vf35ZwOupY1Ht9WYJaYLU8DXlitZhD1gSQJ9bonBxEnjjBnmgp8iQRPieHkSdOsFsvRZ5Yo+OgMgLIE2WFaY6LPNHXHvIk+86QJ9kz9n0D8iT7hg4vLcldU6ekEbXlmuERuWRg0Hop8sQanbODyBNn6K0XI0+s0Tk5iDxxgp2lDgggTxxAX6srkSf6mkeeZN9Z61AozX3hyqLSUCA9u9x+2072T82GJxJAnmT7ephuNuW9+x6RVnT2HV4/se18udhSoCBPsu0ri9uRJ1lQzfZO5Em2fNO+HXmSNlHu85UA8sTXZgqYC3mir1TkST6dhTORtGcjKfcFUhoORCr2e/m2HXt2rk4iT7Ilf+/0lHx04nDHkhtGx+QHNm62Wow8scLm9BDyxCl+q+XIEytszg4hT5yhZ3HOBJAnOQNfy+uQJ/raR57o6wx5oq8z5Em2nT0yPyd/e/CxjiUv3rBRnj82brUYeWKFzekh5IlT/FbLkSdW2JwdQp44Q8/inAkgT3IGvpbXIU/0tY880dcZ8kRfZ8iTbDtrR5F84NF9crS+tLxouFKRn7ngouX/afOFPLGh5vYM8sQtf5vtyBMbau7OIE/csWdzvgSQJ/nyXtPbkCf66i+iPJlcekzuOPZ3MrV0WDb1Xyo3bLpFBqvr9ZVzjsTIE31VIk/y6Wy61ZJm2JbxWk+ihciTRPicHEaeOMGeaCnyJBG+3A8jT3JHzkJHBJAnjsCvxbXIE32tF1Ge/NPe35T55uRKGVsHr5IXb/1FfeUgTwrTGfJEV5XIE119xWmRJ/o6Q57o6gx5oqsv0toTQJ7Ys+OkIQHkiSEwD8aLJk/q4YL8/cNv7CBbK/XJLZf+oQe004nAO0/S4ZjnLciTPGkn34U8Sc4w7xuQJ3kTT74PeZKcYZ43IE/ypM0ulwSQJy7pr7HdyBN9hRdNnsQNfGTPW2ShNb1Sxub+K+Sl239FXznnSIw80Vcl8kRXZ8gTXX3FaZEn+jpDnujqDHmiqy/S2hNAntiz46QhAeSJITAPxosoTw7M3Sf3n/y0TNUnZLxvh1wz/krZ2HexB7TTiYA8SYdjnrcgT/KknXwX8iQ5w7xvQJ7kTTz5PuRJcoZ53oA8yZM2u1wSQJ64pL/GdiNP9BVeRHmirwWzxMgTM14+TCNPfGih+wzIk+5Z+TKJPPGlie5zIE+6Z+XDJPLEhxbIkAcB5EkelNmxTAB5ou+FgDzR1xnyRF9nyBNdnSFPdPUVp0We6OsMeaKrM+SJrr5Ia08AeWLPjpOGBJAnhsA8GEeeeFCCYQTkiSEwD8aRJx6UYBABeWIAy5NR5IknRRjEQJ4YwPJgFHniQQlEyIUA8iQXzCyJCRRRngTNJRm47xNSm/i2tAdGZGHni6W5+fLCFI480Vcl8kRfZ8gTXZ0hT3T1FadFnujrDHmiqzPkia6+SGtPAHliz25NnKwu7pbe6X+XcuuUNPsul4WxV0kU9Fg9exHlycD9n5LePXes8IjKNTn1A2+SqGrHyApshoeQJxnCzehq5ElGYDO8FnmSIdwMrkaeZAA14yuRJxkDzuB65EkGUDO8EnmSIVyu9ooA8sSrOvwKE4SLsu7IuyUIGyvBloZeKIsj328VtIjyZN3tfy6VUwc7eEy/8OekNbbdipFvh5AnvjWyeh7kyeqMfJtAnvjWyFPnQZ7o6itOizzR1xnyRFdnyBNdfZHWngDyxJ5d4U9W6ntl6NgHO56z1XuhzG74WatnL6I8ib9lp3ff187yKFdk8mW/IVGFd55YvUg4lJgA8iQxwlUvqEwekP5vfkYq00elOb5D5q+9WcLe4VXPnWsAeWKNzslB5IkT7ImWIk8S4XNyGHniBLv1UuSJNToOKiOAPFFWWJ5xg3BBRg69Q0SilbX1wRtkYfRmqxhFlCelhVMy8I1PSfXEoxL2j8jSjmfK0kU3WPHx8RDvPPGxlafOhDzJuLMolJF/+yMpL06vLGpsvkJmn/3j1ouRJ9bonBxEnjjBnmgp8iQRPieHkSdOsFsvRZ5Yo+OgMgLIE2WF5R23Z/Yr0jN/t5RaU9LsvUAWR14pYWXUKkYR5YkVCEWHkCeKyjoTFXmSbWexMB39tz/qWNLuXydTL32j9WLkiTU6JweRJ06wJ1qKPEmEz8lh5IkT7NZLkSfW6DiojADyRFlhmuMiT/S1hzzR1xnyJOPOolBGP/PfpVSfW1nU2Hy5zD77ddaL05AnJ5celaMLD8tIzxbZMrBTRALrPBx8agLIE32vEOSJvs6QJ7o6Q57o6ou09gSQJ/bsOGlIAHliCMyDceSJByUYRkCeGAKzGO85+A3pfeQrUp49Ia3RbbLw9JdKa2SLxU2njySVJw9PfUm+evRvV/Zfsu658tzNP2mdh4PIk6K9BpAn+hpFnujqDHmiqy/S2hNAntiz46QhAeSJITAPxpEnHpRgGAF5YgjMg/Gk8uTj+39fTtXP/tSvQAK55dI/lGqp14OnK14E3nmir1Pkib7OkCe6OkOe6OqLtPYEkCf27DhpSAB5YgjMg3HkiQclGEYoojxphXU5MHe/1MN52T54tQxYfu6SIcrcxpEnuaFOZRHyJBWMuV6CPMkVdyrLkCepYMztEuRJbqhZ5JgA8sRxAWtpPfJEX9vIE32dFU2etKOmfHz/O2SmMbFcRiXokR84/40y1rtdXznnSJxUntx38hNy34lPrty+ZeBKecm2XyoMH98eBHniWyOr50GerM7ItwnkiW+NPHUe5ImuvkhrTwB5Ys+Ok4YEkCeGwDwYR554UIJhhKLJk0PzD8itB9/bQWHn6Ivkuo2vMSTj73hSeRJJJMcW9sjJpf0yXNskm/svl0qp5u8DK0+GPNFXIPJEX2fIE12dIU909UVaewLIE3t2nDQkgDwxBObBOPLEgxIMIyBPDIF5MJ5UnnjwCGsqAvJEX93IE32dIU90dYY80dUXae0JIE/s2XHSkADyxBCYB+PIEw9KMIxQNHnSChvyT3veKvVwYYXES8//Ndncd5khGX/HkSf+dvNkyZAnuvqK0yJP9HWGPNHVGfJEV1+ktSeAPLFnx0lDAsgTQ2AejBdVnlSPPSKV6aPSHN8hrdGtHpBOL0LR5ElMZqk1I0cWvr38gbHn9V8m62rnpQfMg5uQJx6UYBABeWIAy5NR5IknRRjEQJ4YwPJgFHniQQlEyIUA8iQXzCyJCSBP9L0OiihPBr7xSende+dKGfNXv1yWLrpBXznnSFxEeVKYcs7xIMgTXQ0jT3T1FadFnujrDHmiqzPkia6+SGtPAHliz46ThgSQJ4bAPBgvnDyJQln/sd8RiaIVuu3BcZl6yS97QDudCMiTdDjmeQvyJE/ayXchT5IzzPsG5EnexJPvQ54kZ5jnDciTPGmzyyUB5IlL+mtsN/JEX+HIE32dIU/0dYY80dUZ8kRXX3Fa5Im+zpAnujpDnujqi7T2BJAn9uw4aUgAeWIIzIPxwskTERm640NSm9i9Qnfx0hfIwtO+zwPa6URAnqTDMc9bkCd50k6+C3mSnGHeNyBP8iaefB/yJDnDPG9AnuRJm10uCSBPXNJfY7uRJ/oKL6I8kXZLqsf3SGX2hLRGt0lz/XaRoKSvnHMkRp7oqxJ5oqsz5ImuvuK0yBN9nSFPdHWGPNHVF2ntCSBP7Nlx0pAA8sQQmAfjhZQnHnDNMgLyJEu62dyNPMmGa1a3Ik+yIpvdvciT7NhmdTPyJCuy2dyLPMmGK7f6RwB54l8nhU2EPNFXLfJEX2fIk+w7q7dn5VuTn5PJ+kE5r/9yuWL0RVIKytaLkSfW6JwcRJ44wZ5oKfIkET4nh5EnTrBbL0WeWKPjoDICyBNlhWmOizzJr71oMRIJAgl6k+1EniTj5+I08iR76p969N1yYmnfyqKdo98r1218tfVi5Ik1OicHkSdOsCdaijxJhM/JYeSJE+zWS5En1ug4qIwA8kRZYZrjIk9yaK8lUv9WW8KZ0z+KtzQWSM/Oskhgtxt5YsfN5SnkSbb0F1vT8o973tKxZLi6SX7wot+2Xow8sUbn5CDyxAn2REuRJ4nwOTmMPHGC3Xop8sQaHQeVEUCeKCtMc1zkSfbttSYiaT7S7lhUvaIslXE7e4I8yb6ztDcgT9Im2nlfJKF86OFflXbYXPk/bOq/RL5/+xutFyNPrNE5OYg8cYI90VLkSSJ8Tg4jT5xgt16KPLFGx0FlBJAnygrTHBd5kn17sTiJBcoTvyrnl6R6vt1Pk0GeZN9Z2huQJ2kT/e77vn78I7J78nMSSSTlUk2et/mnZMfQM60XI0+s0Tk5iDxxgj3RUuRJInxODiNPnGC3Xoo8sUbHQWUEkCfKCtMcF3mSfXvhVCT1b3a+86Tn2rKUBnjnSfb0/diAPMmnh2a4JDONozLSs0XKQTXRUuRJIny5H0ae5I488ULkSWKEuV+APMkdeaKFyJNE+DisiADyRFFZ2qMiT/JpsH00lPbU6Q+MLY8FUrb8lp04Le88yaezNLcgT9Kkmc9dyJN8OKe1BXmSFsn87kGe5Mc6rU3Ik7RI5nMP8iQfzmxxTwB54r6DNZMAeaKvauSJvs6QJ/o6Q57o6gx5oquvOC3yRF9nyBNdnSFPdPVFWnsCyBN7dpw0JIA8MQTmwTjyxIMSDCMgTwyBeTCOPPGgBIMIyBMDWJ6MIk88KcIgBvLEAJYHo8gTD0ogQi4EkCe5YGZJTAB5ou91gDzR1xnyRF9nyBNdnSFPdPUVp0We6OsMeaKrM+SJrr5Ia08AeWLPjpOGBJAnhsA8GEeeeFCCYQTkiSEwD8aRJx6UYBABeWIAy5NR5IknRRjEQJ4YwPJgFHniQQlEyIWAkTz5+r275T/96rvkL//4LXLdNVcsBzx8cjGXoE+2ZONIr0zO1qXV7vzRrM4CsfgpCSBP9L1AkCf6OkOe6OsMeaKrM+SJrr7itMgTfZ0hT3R1hjzR1Rdp7Ql0LU8eFyfxKuSJPfDVTgbhgtQWHlgea/ZdKWF5YLUjav7vyBM1Va0ETUOe7J+9W75x4lOy2JqS7UPXyPUbf0wqpZo+GEoSI0+UFPWEmMgTXZ0hT3T1hTzR11ecGHmiqzfkia6+SGtPoCt5sufRw/Ke9/2dvPn/fq287Z0fkDe+/jW888Se+TlPlsJ5GZr4n1Jqzy3PhOVBmd30ixKW12WwLf8rkSf5M0+6Mak8mW9Nyb/sfbuEUXslyq7xl8uu9a9IGo3z5yCAPNH30kCe6OoMeaKrL+SJvr6QJ/o6Q57o64zEdgRWlSexOPnNd35Afv+tPydjI0PyC2/5I+SJHetVT9XmviYDpz7aMbcwcpPUh5636lkNA8gTDS11ZkwqTx6bu08+f+hPOy7dPni1vGjrL+iDoSQx8kRJUU+IiTzR1RnyRFdfyBN9fSFP9HWGPNHXGYntCDylPDk1PStvfccH5E2/eItcfMEWif/f3ylP2g4/b6RUEgnjjzspyEeetE9+RdqH/6mjyfJ5N0t5/Ea7dvM4FZgtKQVnOjM7xrQjAsv1BiKR5a+x2cak/Ok9b+xI/5ytr5Tnb/9hR09U/LXxr7G4L8vKig/IwycslwJpL/9mxpcGAvF/FwN+L9NQ1UrGuK/4P4r8KtNT25r582JRXpSByHJnobvXWLls+JcSd1HZrJjAU8qT+F0nr3/z/5AjR09+1yM+/rknE6fcfWDs+HCvTM3VpVWQP3QGrRkZPvSe+Bt2zvAuyeyWX5GwOu7vS8zgP/rxO09GBnvkxPSSv89Dsg4CA30VKUkgs4tNazL3nfy07J3+uiy1pmXTwCXynE0/Ln2VYnwrmjWUDA+ODvXI/FJTGk2Hf4LJ8PmKePXmsT6ZmHT3e2kRmWb5TD21svTVyjI118hyDXenSGC4vyrNMJLFpVaKt3JVlgQ2xD8UYqZefLFckL/vV8sliX+dnZytZ/myeMq7N4/2OdvN4rVDYNVv23kiiid75wk/bSfdF0upPSXVxYeXL232XiJhZTTdBQ5v49t2HMK3XJ3023Ys13IsAQG+bScBPEdH+bYdR+At1/JtO5bgHB7jp+04hG+5mg+MtQTn6BjftuMIPGtzJ4A8yR352l2IPNHXPfJEX2fIE32dIU90dYY80dVXnBZ5oq8z5ImuzpAnuvoirT0B5Ik9O04aEkCeGALzYBx54kEJhhGQJ4bAPBhPKk+ihkjj4baE05GUBgKpXFSS8lBB3gvuQT/fGQF54mEpq0RCnujrDHmiqzPkia6+SGtPwEiePNkavm3HHv5aO4k80dc48kRfZ8gTfZ0llSeNb7WlPXn2A6iCHpHeZ1WWP+yZr/QJIE/SZ5r1jciTrAmnfz/yJH2mWd6IPMmSLnf7RAB54lMbBc+ShjwJWg3pe+TLUp46LK2x7bJ00bMlqtQKTs7d4yFP3LG33Yw8sSXn7lxSebL09ZZE3/EZfbE8CXrdPVORNyNP9LWLPNHXGfJEV2fIE119kdaeAPLEnh0nDQmkIU+G7vyQ1I7sXtlc33aVzD3r1YZJGO+WAPKkW1L+zCFP/Omi2yRJ5Un9W6GEk2d/ulJQDaT3+jLvPOm2AMM55IkhMA/GkScelGAYAXliCMzxOPLEcQGsz40A8iQ31CxKLE+iUMY+8Q4J2md/PGRU6ZXJV7wNuBkRQJ5kBDbDa5EnGcLN6Oqk8iSci6S5L5RwNpJSv0hla1nKG/ienYzqEuRJVmSzuxd5kh3brG5GnmRFNpt7kSfZcOVW/wggT/zrpLCJEssTERn9zHuktDS7wqg9OC5TL/nlwjJz/WDIE9cNmO9PQ560T0XSPhaKlAKpnFeS0qB5Dk50TyCpPOl+E5NpEECepEEx3zuQJ/nyTmMb8iQNivndgTzJjzWb3BJAnrjlv6a2pyFPeh/5qgw88K8iUfwXu7LMX/UyWbrw+jXFMc+HRZ7kSTudXUnlSTgVSf2b7bNhSiK9z6xI/CGkfGVDAHmSDdesbkWeZEU2u3uRJ9mxzepm5ElWZLO5F3mSDVdu9Y8A8sS/TgqbKA15EsOJPzS2PHdCWkMbRcqVwvLy4cGQJz60YJYhqTxp7g2ldfjs52fE22uXlqS8qWQWhOmuCSBPukblxSDyxIsajEIgT4xweTGMPPGihq5DIE+6RsWgcgLIE+UFaoqfljzR9MzasyJP9DWYVJ60DobS3P8d8uRpZSmP8hkaWb0akCdZkc3mXuRJNlyzvBV5kiXdbO5GnmTDNatbkSdZkeVe3wiscXkSSW3hXqktPCBheViWhl4oYWXEt44Kkwd5oq9K5Im+zpLKk6ghUr/v7I++DQYC6b2Gn9yS5SsBeZIl3fTvRp6kzzTrG5EnWRNO/37kSfpMs7wReZIlXe72icCalie1+a/JwORHDZQ5qwAAIABJREFUV/oIy+tkZvOvSlSq+dRRYbIgT/RViTzR11lSefL4E0eLkUSlQEp81knmLwLkSeaIU11QRHlSak1J36mPSbW+T9rVTbI4erO0altS5ebyMuSJS/p2u5EndtxcnUKeuCLP3rwJrGl5Mnjif0t18cEO5jOb3iDt2va8e1gT+5An+mpGnujrLC15ou/J9SZGnujqrojyZODEX0tt8aEn/GPSiExveZOuYp4iLfJEX5XIE12dIU909UVaewJrWp70T35Ueua/1ilPzvtVaVc22BPl5DkJIE/0vTiQJ/o6Q57o6wx5oquzIsqTkYO/K0G01FHE1Na3S1Tq01XOOdIiT/TViDzR1RnyRFdfpLUnsKblSblxUAaP/5WUwoVlgo3+p8v8+tfa0+TkUxJAnuh7gSBP9HWGPNHXGfJEV2dFlCeDx/5CqvU9K0VE5WGZ2vIbuop5irRFlCfViYek/8FbpTw/JY3Nl8n8rldIVO0tTGfIE11VIk909UVaewJrWp6cxhZJpXFk+QNjw/KgPUlOrkoAebIqIu8GkCfeVbJqIOTJqoi8G0CeeFfJUwYqojyp1B+V3ul/l0rjoITVDbI4/CJp9u3UVcwakidBsy6j//oeCVqNladeuvjZMn/VTYXpDHmiq0rkia6+SGtPAHliz46ThgSQJ4bAPBhHnnhQgmEE5IkhMA/GkScelGAQoYjyxODxVY4W7Z0nlckDsu4LH+joojW6TaZv/HmV/TxZaOSJriqRJ7r6Iq09AeSJPTtOGhJAnhgC82AceeJBCYYRkCeGwDwYR554UIJBBOSJASxPRosmT4JWXcY+/Qci7dYK4aULr1/+1p2ifCFPdDWJPNHVF2ntCSBP7Nlx0pAA8sQQmAfjyBMPSjCMgDwxBObBOPLEgxIMIiBPDGB5Mlo0eRJj7d17p/Tuv1tKC1PSHL9A5q++ScL+UU+IJ4+BPEnOMM8bkCd50maXSwLIE5f019hu5Im+wpEn+jpDnujrDHmiqzPkia6+4rRFlCf6WjBLjDwx4+V6GnniugH250UAeZIXafZIUeVJZXpeeg6clPZQnyydv0EkKE7ZyBN9XSJP9HWGPNHVGfJEV1/IE319xYmRJ7p6Q57o6ou09gSQJ/bsOGlIoIjypOfACRn77L0iYbRMo75lTCZveqYhGX/HkSf5dFOemZDqsb3SHlwvzc2XSRIDhzzJp7M0tyBP0qSZ/V3Ik+wZp72Bd56kTTT7+5An2TNOcwPyJE2a3OUzAeSJz+0ULFsR5cnoZ++V3kePdzR1/EefK62RgUK0hzzJvsbaoW/K0Nf/cfnHpsdfjS1Xyuz1t1gvRp5Yo3N2EHniDL3VYuSJFTanh5AnTvFbLUeeWGFzdgh54gw9i3MmgDzJGfhaXoc80dc+8iT7zoa/9BdSPbG/Y9GpH3iThL1DVsuRJ1bYnB5CnjjFb7wceWKMzPkB5InzCowDIE+MkTk9gDxxip/lORJAnuQIe62vKqI86f/2YVn3hQdWqm0N98vx1zyvMFUjT7KvEnmSPWPfNyBPfG+oMx/yRFdfcVrkib7OkCe6OkOe6OqLtPYEkCf27DhpSKCI8iRGUD0xI7WJKWkP9i5/5klUqxiS8XcceZJ9N72PfFUGvvnpswJudJtM3/jz1ot554k1OmcHkSfO0FstRp5YYXN6CHniFL/VcuSJFTZnh5AnztCzOGcCyJOcga/ldUWVJ0XuFHmSR7uRVCcPSnnygITxB8au3yFRtcd6MfLEGp2zg8gTZ+itFiNPrLA5PYQ8cYrfajnyxAqbs0PIE2foWZwzAeRJzsDX8jrkib72kSf6OkOe6OsMeaKrM+SJrr7itMgTfZ0hT3R1hjzR1Rdp7QkgT+zZcdKQAPLEEJgH48gTD0owjIA8MQTmwTjyxIMSDCIgTwxgeTKKPPGkCIMYyBMDWB6MIk88KIEIuRBAnuSCmSUxAeSJvtcB8kRfZ8gTfZ0hT3R1loY8mW015Y7JSTnRqMvFA4Ny3eiYBLowqEqLPFFV13JY5ImuzpAnuvoirT0B5Ik9O04aEkCeGALzYBx54kEJhhGQJ4bAPBhHnnhQgkGEpPIk+v//Yvj+fXvkeKO+svV71m+QG8c3GKRg1IQA8sSElh+zyBM/eug2BfKkW1LMaSeAPNHeoKL8yBNFZZ2JijzR1xnyRF9nyBNdnSWVJ1PNpvzJ3oc7Hnpbb5/8zAUX6gKhKC3yRFFZZ6IiT3R1hjzR1Rdp7QkgT+zZcdKQAPLEEJgH48gTD0owjIA8MQTmwTjyxIMSDCIklSeNMJQ/eHi3hE/YecnAoLxu2/kGKRg1IYA8MaHlxyzyxI8euk2BPOmWFHPaCSBPtDeoKD/yRFFZZ6IiT/R1hjzR1xnyRFdnSeVJ/LSfPHpE7p46JfG38NSCkrx66zaJBQpf2RBAnmTDNctbkSdZ0k3/buRJ+ky50U8CyBM/eylkKuSJvlqRJ/o6Q57o6wx5oquzNORJ/MRLYVtONRqysadXygEfF5vlqwB5kiXds3e3Q5H5xUgGegMpl5PtRJ4k45f3aeRJ3sTZ54oA8sQV+TW4F3mir3Tkib7OkCf6OkOe6OosLXmi66l1p0WeZN/fsalI7t8XSisUKZVEdl1Yko0j9lIQeZJ9Z2luQJ6kSZO7fCaAPPG5nYJlQ57oKxR5oq8z5Im+zpAnujpDnujqK06LPMm+sy89EMr8UvyNaKe/eqoi33O1/dtPkCfZd5bmBuRJmjS5y2cCyBOf2ylYNuSJvkKRJ/o6Q57o6wx5oqsz5ImuvpAn+fT12XvaEp51J8tLv/easlQt/QnyJJ/e0tqCPEmLJPf4TgB54ntDBcqHPNFXJvJEX2fIE32dIU90dYY80dUX8iSfvu55pC3Hp8/uWj8UyLMuK1kvR55Yo3NyEHniBDtLHRBAnjiAvlZXIk/0NY880dcZ8kRfZ8gTXZ0hT3T1hTzJp6+Fusjhk5HMLIQy1FeSreOB9PfY70ae2LNzcRJ54oI6O10QQJ64oL5GdyJP9BWPPNHXGfJEX2fIE12dIU909YU80ddXnBh5oqs35ImuvkhrTwB5Ys+Ok4YEkCeGwDwYR554UIJhBOSJITAPxpEnHpRgEAF5YgDLk1E+MNaTIgxiIE8MYHkwijzxoAQi5EIAeZILZpbEBJAn+l4HyBN9nSFP9HWGPNHVGfJEV19xWuSJvs6QJ7o6Q57o6ou09gSQJ/bsOGlIAHliCMyDceSJByUYRkCeGALzYBx54kEJBhGQJwawPBlFnnhShEEM5IkBLA9GkScelECEXAggT3LBzJKYAPJE3+sAeaKvsyLKk/LMhPTt/ZoEjQWpb9sljS079RXzFImRJ7rqRJ7o6itOizzR1xnyRFdnyBNdfZHWngDyxJ4dJw0JIE8MgXkwjjzxoATDCEWTJ6X6nIz82x9L0G6skJi94celcd4VhmT8HUee+NvNkyVDnujqC3mir684MfJEV2/IE119kdaeAPLEnh0nDQkUVZ60JkIJJyMJegOpbC1JkOBH8xkizXwceZI54tQXFE2e1I48KEN3friDU33Hs2TumptTZ+fqQuSJK/J2e5EndtxcnuKdJy7p2+1Gnthxc3UKeeKKPHvzJoA8yZv4Gt5XRHnSPBRKa1+40mosTnqfWREpuS16ujEh5aAqg9X1iYIgTxLhc3K4aPKkcuqgrLv9zztYLl76All42vc54ZvFUuRJFlSzuxN5kh3brG5GnmRFNrt7kSfZsc3iZuRJFlS500cCyBMfWylopiLKk/r9bQmno47Geq8pSzAYOGmxGS7Jvx98rxxf3LO8f9vA1fKiba+XwNLmIE+c1JhoadHkiUgkw1/8oFRPPrbMJewdkunn/4yEg2OJOPl0GHniUxurZ0GerM7ItwnkiW+NrJ4HebI6I58mkCc+tUGWLAkgT7Kky90dBIooTxoPtaV9/DvkyfVlCWpu5MlD01+UOyc+1MH9hVt+VnYMPdPq1Yg8scLm9FDx5IlIOB9J+2BdpBFKaUuvlNc7fmtXyg0jT1IGmvF1yJOMAWdwPfIkA6gZX4k8yRhwytcjT1IGynXeEkCeeFtN8YIVUZ6EM5E0HmhL1D7dV3lDILXLy87Ku2Pib+Xb01/q2L9r/OWya/0rrDIhT6ywOT1UNHkSNSNZ+npb5Ox3x0ntyrKUx9wIyizKRZ5kQTW7O5En2bHN6mbkSVZks7sXeZId2yxuRp5kQZU7fSSAPPGxlYJmKqI8Wa4qEonmI5FekaDi9i90RxZ2y2cP/EnHK+gVO35Txnq2Wb2qkCdW2JweKpo8aZ+MpPHgGTt5hmxlcyDVS9xJyuUYsc9ZiCQYCCRI+EYY5InTXzLGy5EnxsicH0CeOK/AOADyxBiZ0wPIE6f4WZ4jAeRJjrDX+qrCyhOvio3kkemvyuGFb0lJqrJt8CrZMfQM64TIE2t0zg4WTZ6Es5HU7/sOebKtJNUdCY1FgoZaE5E097SXxalUAum5siSlYXtxijxJUIaDo8gTB9ATrkSeJATo4DjyxAH0BCuRJwngcVQVAeSJqrp0h0We6OsPeaKvs6LJk7iB+jfaEn+LXPwVf55Q7aqylPocdROJLN7RWn7nyeNf5XWnM9l+IU9sybk5hzxxwz3JVuRJEnpuziJP3HC33Yo8sSXHOW0EkCfaGlOcF3mirzzkib7OiihP4haiRiRRS6TUb/8OjzTajBYjWbq7850wsdDpvR55kgZfDXcgTzS01JkReaKvM+SJrs6QJ7r6Iq09AeSJPTtOGhJAnhgC82AceeJBCYYR0pIn5dnjElV6JOwbNkxQ/PH6Pe3lzzt5/KuyuSTVS+y/jYh3nuh6zSBPdPUVp0We6OsMeaKrM+SJrr5Ia08AeWLPjpOGBJAnhsA8GEeeeFCCYYSk8iRo1mX4K38llVMHlzc3tuyU2etfa5ii2OPLPzr5WLQsUMpDgZQ3B4l+PDnyRNfrBXmiqy/kib6+4sTIE129IU909UVaewLIE3t2a+Zk0FiQ8sK0tNZtkiQ/VgJ5ou8lgzzR11lSedL38Jek/4F/63jwmef+lDQ3XqIPhpLEyBMlRZ2JiTzR1RfyRF9fyBN9nSFP9HVGYjsCyBM7bmvmVN+Dt0r/Q7cvP2+7b53MPO8/STi43ur5kSdW2JweQp44xW+1PKk8Gbjnn6X3sXs7ds8//WWydMlzrPJwaHUCyJPVGfk0gTzxqY3usvBtO91x8mmKd5741MbqWZAnqzNiohgEkCfF6DGTpygtzcroZ97TcXf9gmfI3LU/aLUPeWKFzemhgb6KVIJApheaTnOwvHsCSeVJbeIhGbrjb88uDEpy6sW/LOHgWPchmDQigDwxwuV8GHnivALjAMgTY2TODyBPnFdgFAB5YoSLYcUEkCeKy8s6evXowzL81b/pWNMa3SbTN/681WrkiRU2p4eQJ07xWy1PKk9EIunZf49Uj+8RqfRIY/Nl0jhvp1UWDnVHAHnSHSdfppAnvjTRfQ7kSfesfJlEnvjSRHc5kCfdcWJKPwHkif4Os3uCdkvGPvMeCZqLKzsWdr5YFi+/0Won8sQKm9NDyBOn+K2WJ5cnVms5lIAA8iQBPAdHkScOoCdciTxJCNDBceSJA+gJViJPEsDjqCoCyBNVdeUftnryMakd+qaUFqakNX6BLF3wLImqPVZBkCdW2JweQp44xW+1HHlihc3pIeSJU/zGy5EnxsicH0CeOK/AOADyxBiZ0wPIE6f4WZ4jAeRJjrDX+irkib5XAPJEX2fIE32dIU90dYY80dVXnBZ5oq8z5ImuzpAnuvoirT0B5Ik9O04aEkCeGALzYBx54kEJhhGQJ4bAPBhHnnhQgkEE5IkBLE9GkSeeFGEQA3liAMuDUeSJByUQIRcCyJNcMLMkJoA80fc6QJ7o6wx5oq8z5ImuzpAnuvqK0yJP9HWGPNHVGfJEV1+ktSeAPLFnx0lDAsgTQ2AejCNPPCjBMALyxBCYB+PIEw9KMIiAPDGA5cko8sSTIgxiIE8MYHkwijzxoAQi5EIAeZILZpbEBJAn+l4HyBN9nSFP9HWGPNHVGfJEV19xWuSJvs6QJ7o6Q57o6ou09gSQJ/bsOGlIAHliCMyDceSJByUYRkCeGALzYBx54kEJBhGQJwawPBlFnnhShEEM5IkBLA9GkScelECEXAggT3LBzJKYAPJE3+sAeaKvM+SJvs6QJ7o6Q57o6itOizzR1xnyRFdnyBNdfZHWngDyxJ4dJw0JIE8MgXkwjjzxoATDCMgTQ2AejCNPPCjBIALyxACWJ6PIE0+KMIiBPDGA5cEo8sSDEoiQCwHkSS6YWRITQJ7oex0gT/R1hjzR1xnyRFdnyBNdfcVpkSf6OkOe6OoMeaKrL9LaE0Ce2LPjpCEB5IkhMA/GkScelGAYAXliCMyDceSJByUYRECeGMDyZBR54kkRBjGQJwawPBhFnnhQAhFyIYA8yQUzS2ICyBN9rwPkib7OkCf6OkOe6OoMeaKrrzgt8kRfZ8gTXZ0hT3T1RVp7AsgTe3acNCSAPDEE5sE48sSDEgwjIE8MgXkwjjzxoASDCMgTA1iejCJP8imievIxqZw6KK2RLdIc35FoKfIkEb7cDyNPckfOQkcEkCeOwK/FtcgTfa0jT/R1hjzR1xnyRFdnyBNdfcVpkSfZd9a/+/PSt/tzK4sWLr9RFne+2Hox8sQanZODyBMn2FnqgADyxAH0tboSeaKveeSJvs6QJ/o6Q57o6gx5oqsv5Ek+fY1++t1Sqs+tLIsqvTL5irdZL0eeWKNzchB54gQ7Sx0QQJ44gL5WVyJP9DWPPNHXGfJEX2fIE12dIU909YU8yacv5Ek+nH3dgjzxtRlypU0AeZI2Ue47JwHkib4XB/JEX2fIE32dIU90dYY80dUX8iSfvgbv/Zj07L9rZdnS+dfI/DN+2Ho57zyxRufkIPLECXaWOiCAPHEAfa2uRJ7oax55oq8z5Im+zpAnujpDnujqC3mSU19hWyqTj0p1akJawxulOX6hSKlsvRx5Yo3OyUHkiRPsLHVAAHniAPpaXYk80dc88kRfZ8gTfZ0hT3R1hjzR1RfyRF9fcWLkia7ekCe6+iKtPQHkiT07ThoSQJ4YAvNgHHniQQmGEZAnhsA8GEeeeFCCQQTkiQEsT0b5aTueFGEQA3liAMuDUeSJByUQIRcCyJNcMLMkJoA80fc6QJ7o6wx5oq8z5ImuzooqTw4tLcljC/OysadHLh4Y1FXKKmmRJ/rqRJ7o6gx5oqsv0toTQJ7Ys+OkIQHkiSEwy/GeQyel76FDEpXLsrBzmzQ3rrO8SQR5Yo3O2UHkiTP01ouRJ9bonBwsojz52qlJ+fSxiRWe142Myk2bznPCN4ulyJMsqGZ7J/IkW75p3448SZso9/lKAHniazMFzIU8yb7U6vEZGf/onWcXlUty/IeeLa2RAavlyBMrbE4PIU+c4rdajjyxwubsUBHlyXv3PiInm40VpoGIvP3yK6XkjHK6i5En6fLM4zbkSR6U09uBPEmPJTf5TQB54nc/hUqHPMm+zsF79srQPXs6Fk0/b+fyO1BsvpAnNtTcnkGeuOVvsx15YkPN3RnkiTv2tpuRJ7bk3J1Dnrhjb7MZeWJDjTMaCSBPNLamNDPyJPvi+ncflHVferBj0dSLrpLFizdbLUeeWGFzegh54hS/1XLkiRU2Z4eKKE/+/fgx+fLkiRWmlw8OyS1btztjnPZi5EnaRLO/D3mSPeM0NyBP0qTJXT4TQJ743E7BsiFPsi80qDdlw7/cIeW5peVlrbFBOX7z9fGn9VotR55YYXN6CHniFL/VcuSJFTZnh4ooT0IRObCwIIeXFmV9rSYXDQxKJYi/eacYX8gTfT0iT3R1hjzR1Rdp7QkgT+zZcdKQAPLEEFiC8crUvETlkrSH+hLcwgfGJoLn6DDyxBH4BGuRJwngOThaRHniAGOuK5EnueJOZRnyJBWMuV2CPMkNNYscE0CeOC5gLa1Hnuhrm3ee6OsMeaKvM+SJrs6QJ7r6itMiT/R1hjzR1RnyRFdfpLUngDyxZ8dJQwLIE0NgHowjTzwowTAC8sQQmAfjyBMPSjCIgDwxgOXJKPLEkyIMYiBPDGB5MIo88aAEIuRCAHmSC2aWxASQJ/peB8gTfZ0hT/R1hjzR1RnyRFdfcVrkib7OkCe6OkOe6OqLtPYEkCf27DhpSAB5YgjMg3HkiQclGEZAnhgC82AceeJBCQYRkCcGsDwZRZ54UoRBDOSJASwPRpEnHpRAhFwIIE9ywcySmEBq8qQtEi5GEvQHEpRgmyUB5EmWdLO5G3mSDdcsb0WeZEk3/buRJ+kzzfpG5EnWhNO/H3mSPtMsb0SeZEmXu30igDzxqY0zWUpzJ5f/t3BwvYfp7COlIU/ak5E0HmqLtEWkLFK7vCzlMbc/TnGmMSEH5x6Qwdq4bB+8WgJxm8e+oe8+iTxJk2Y+dyFP8uGc5hbkSZo0s78LeZI947Q3IE/SJpr9fciT7BmnuQF5kiZN7vKZAPLEp3baLRm+80NSPfbIcqrm+EUy85yfEClXfEppnSUNebL0tZZEjbMRgr5Aep9Zts6U9OCh+QfktkPvlzCKbY7I5v4r5KXbfyXptd6cR554U0XXQZAnXaPyZhB54k0VXQVBnnSFKfFQqTUp1cXdEpaHpdl3hUhg/2ch5EniOnK/AHmSO/JEC5EnifBxWBEB5IlHZfUcvF8G7/rHjkRz19ws9R3P8iilfZSk8iRqiSzd0eoMUBLpe679H6jsn+b0yVicHJj7Rsc1r7rwv8q62uakV3txHnniRQ1GIZAnRri8GEaeeFFD1yGQJ12jsh6s1B+VoeMfFDnzDxPt6laZ2fwGEbH7Xt0iypNjU5E8fCSSpXokG9YFsvP8klTd/VuSddfnOog8SR1pphciTzLFy+UeEUCeeFRG/wOflb6Hv9iRaOniZ8v8VTd5lNI+SlJ5Em+uf7Mt4VS0EqI0GkjP09z9aQF5Yv964GQ2BJAn2XDN8lbkSZZ0078beZI+0++8sX/yn6Rn/p6O/++ZTW+Qdm271fKiyZN2W+S2+9sS/8/Hvy7YGMgV2+3kkhXUjA8hTzIGnPL1yJOUgXKdtwSQJx5VUzl1SNbd/medf1h4wc9Kc/35HqW0j5KGPImWRNpHQ2nPR1IaDKSysSRBr32mpCf3TH9FvjzxNyvXDFU3yg9d9NsiBfncE955kvQVkv955En+zJNuRJ4kJZjveeRJ9ryRJ0/NeGpe5M7dTzAnIjIyIHLDFe7+MSntVwXyJG2i2d6HPMmWL7f7QwB54k8Xy0l6Dn5DqhPfXv7fm5sulfr2XZ4ltI+Thjyx357dyRNLj8qxhUdksLZeNvdfJrVSf3bLcr4ZeZIz8BTWIU9SgJjzFciTnIEnXIc8SQiwi+PVxW/J4Im/XZmMSkMytfXNfNvOGSKtUOTz97WlHZ6FuX1DIFeezztPunh5MZIBAeRJBlC50ksCyBMvaylmqKLKk2K2dfqpkCf62kWe6OsMeaKrM+RJPn1VGoelXN8vYXlIWr0XS5TgHyaK9m07cQOPHY/k4PFIFhuRjAwGcuX2kvT15NNNHlt450kelNPbgTxJjyU3+U0AeeJ3P4VKhzzRVyfyRF9nyBN9nSFPdHWGPNHVV5y2iPJEXwtmiZEnZrxcTyNPXDfA/rwIIE/yIs0eQZ7oexEgT/R1hjzR1xnyRFdnyBNdfSFP9PUVJ0ae6OoNeaKrL9LaE0Ce2LPjpCEB5IkhMA/GkScelGAYAXliCMyDceSJByUYRECeGMDyZJR3nnhShEEM5IkBLA9GkScelECEXAggT3LBzJKYAPJE3+sAeaKvM+SJvs6QJ7o6Q57o6itOizzR1xnyRFdnyBNdfZHWngDyxJ4dJw0JIE8MgXkwjjzxoATDCMgTQ2AejCNPPCjBIALyxACWJ6PIE0+KMIiBPDGA5cEo8sSDEoiQCwHkSS6YWRITQJ7oex0gT/R1hjzR1xnyRFdnyBNdfcVpkSf6OkOe6OoMeaKrL9LaE0Ce2LPjpCEB5IkhMA/GkScelGAYAXliCMyDceSJByUYRECeGMDyZBR54kkRBjFSkSdRJJXpCQn7hiTsGTTYzqgpAeSJKTHmtRJAnmhtTmFu5Im+0pAn+jpDnujrDHmiqzPkyf/X3pkAyVHdaf6ro+9T3Wp1t6TWDTpAiEtI5kYa4wHG4yPCBF6vL7wOFtsxa5uAMDux4XU4ZmDttT0zjlgWE7aH9c4Y8Aw+WOPAGDCHQdxgISQh1DpaUrekvu+6N161qrsqVV1Z72Vm5XvVX0U4wqLf8X+/Lysr65dHmZWXqJbyxLzMnMqT4PgAmnb9DMHxwfTiJ9dfg6mNO80DYUjFlCeGBMUyHROgPHGMkAMUS4DypFhS+rSjPNEni2IroTwplpQ+7ShP9MmimEooT4qhpFcbyhO98iimGqfypO6t36D68Gs5Uw1/6A4kapqKmZ5tJAlQnkgCY3NjCVCeGBudeYVTnpiXGeWJeZlRnpiXGeWJWZlRnpiVl6iW8sS8zJzKk6Znf4Tw0LGchY9+4NOItZ9jHgwDKqY8MSAklugKAcoTVzBykGIIUJ4UQ0mvNpQneuVRTDWUJ8VQ0qsN5YleedhVQ3liR0i/v1Oe6JeJXUVO5UnNgT+hds8Ts9OkKmowdP3Xkaqospuaf1cgQHmiAI1djCRAeWJkbGYWTXliXm6UJ+ZlRnliXmaUJ2ZlRnliVl6iWsoT8zJzKk8CsQiqjryBiv5D6QfGRpdvQax1hXkgDKmY8sSQoFimYwKUJ3wSt+ONqNgBKE+KJaVPO8oTfbIothLKk2JJ6dOO8kSfLIqphPKkGEp6taE80SuPYqpxKk+KmYNt3CNAeeIeS46kN4EFLU/4JO7SbpyUJ6Xl7cZslCduUCztGJQnpeX2OvDzAAAgAElEQVTtxmyUJ25QLN0YlCelY+3WTJQnbpEs3TiUJ6Vj7cZMlCduUOQYJhBY0PIk75O4d/4NEg2LTcjOuBopT4yLDJQn5mVGeWJeZpQnZmVGeWJWXqJayhPzMqM8MSszyhOz8mK16gQWtDzJ9yTusW2fRLRzozpR9pyXAOWJeRsH5Yl5mVGemJcZ5YlZmVGemJUX5Yl5eYmKKU/Myo3yxKy8WK06gQUtT/gkbvUNR6Un5YkKNX/7uCVPglNRBCcjiLc0AAF/11Tus1OemJcw5YlZmVGemJUX5Yl5eVGemJcZ5Yl5mbFiNQILWp7wSdxqG41qL8oTVXL+9XNDnjS+tA91e3rSi0g01qL/pkuRrONPBXqVKuWJV2S9G5fyxDu2XoxMeeIFVW/H5G073vL1YnReeeIFVe/GpDzxji1H1ovAgpYnekVR/tVQnpiXsVN5Eh6ZQNsvXsxZ+MTG5Ri9grfGebU1UJ54Rda7cSlPvGPrxciUJ15Q9XZMyhNv+XoxOuWJF1S9G5PyxDu2HFkvApQneuVR1tVQnpgXr1N5UnOwD83P7M5ZeLRzEQZuutQ8GIZUTHliSFBZZVKemJUZ5YlZeYlqKU/My4zyxKzMKE/MyovVqhOgPFFnx56SBChPJIFp0NypPAlE42j/12cRiCdnVzN6+QZMbOrSYHXlWQLliXm5Up6YlRnliVl5UZ6Yl5eomPLErNwoT8zKi9WqE6A8UWfHnpIE3JIn8WQUI9FeNFUuRThYIVkFm8sQcCpPxFyVJwZRfegkQpMRRDtbMLFhORAOypTBthIEKE8kYGnSlPJEkyCKLIPypEhQDpsNRqM4MDGO+nAY6+sbEA6oP22cV544DMOH7pQnPkB3MCXliQN47GoUAcoTo+Iyu1g35EnP+Nt4rvcnSCSjqAhW48rOz6GrfovZYDSu3g15ovHyyrI0yhPzYqU8MSszyhPv8zo6NYmf9RxBPJVKT7a0qhpfWLUGqtqd8sT7zNyeoRzlSbj/EKoPv55GFVm9FbHWlW5j8208yhPf0HPiEhOgPCkx8IU8nRvy5N/e/wYmEyOzGBsrO/DR1d9cyFg9XTvliad4PRmc8sQTrJ4OSnniKV7XB6c8cR3pWQP+qvcE3h4dzvnvt65Yja6aGqXJ3ZAnh0+mcORUEslUAMsXB3DOUvUrYZQWscA6lZs8CQ+fQNOz9wNnhCACAQzv+DISDUvKIlnKk7KIkYsoggDlSRGQFnqTVDwFTAOBugDg4FjBqTyJJCfx8IE7cuIIBcL41Lk/XOgRebZ+yhPP0Ho2MOWJZ2g9G5jyxDO0ngxMeeIJ1pxBdZMng2MpvPre3LO7RLEXrg2ivdnBQZH3GI2eodzkSc17z6H23T/kZDJx/g2YXvcBo3PKFE95UhYxchFFEKA8KQLSQm4SO5JEvGfmgCFQBVSeH0KwRu1gwak8ETU82fOP6J3cNxvJsrrzsXP5lxdyRJ6unfLEU7yeDE554glWTwelPPEUr+uDU564jvSsAfeNj+Hh4z2z/70hFMZ/WXsOQorPPXF65Ul3XxIHjs/cQpR5re4I4txlasdD3hM0f4ZykydVh19D/Vu/yQlm/NJPILJ8s/lhAaA8KYsYuYgiCFCeFAFpoTZJRVOYfiWRs/xQexCV56jddeyGPBmL9eP9kT9haPo4WmpWYG3jdjRULF6oEXm+bsoTzxG7PgHlietIPR+Q8sRzxK5OQHniKs55B+ubnsaRqcn0A2NX19ahNhRSntipPBkaGsYr3Q0581+0YhBL2tqUa2LHwgTKTZ4EolNofu5+BMcH0wtP1LVieMeXgFB5/PAB5Qnf0QuFAOXJQklaYZ2JoRSie3LlSbAhgKotagcwbsgThWWwiwMClCcO4PnUlfLEJ/AOpqU8cQDPh66UJz5AdzilU3lSOf4K9h2N43hkPZIIo6PyAC5YPopI0w6HlbH7fATKTZ5k1hkcH0j/32R9a1mFT3lSVnFyMQUIUJ5w85iXQCoJRF6JIxWfaxJeGURFl39XnjCu0hKgPCktbzdmozxxg2Jpx6A8KS1vp7NRnjglWPr+juXJ5J9RN/BwTuETLR9BtO6y0i9mgcxYrvKkXOOjPCnXZLkuKwHKE24TBQkkR1NI9KeQmk4h2BRAuD0IhNWg8coTNW5+9qI88ZO+2tyUJ2rc/OxFeeInffm5KU/kmfndw6k8QSqGxpP/G6FYX3opyVAzRju+jFSw1u+lle38lCdmRUt5YlZerFadAOWJOjv2lCRAeSIJTIPmlCcahCBZAuWJJDANmlOeaBCCRAmUJxKwNGnqWJ6cWUcwPoQA4kiE+awTr6OlPPGasLvjU564y5Oj6UuA8kTfbMquMsoT8yKlPDEvM8oT8zKjPDErM8oTs/IS1bolT8xbubkVU56YlR3liVl5sVp1ApQn6uzYU5IA5YkkMA2aU55oEIJkCZQnksA0aE55okEIEiVQnkjA0qQp5YkmQUiUQXkiAUuDppQnGoTAEkpCgPKkJJg5iSBAeWLedlCO8iQQjaP+7cMID44h1tmC8fO6gJDaQ5B1TJTyRMdUCtdEeWJWZpQnZuUlqqU8MS8zyhPvM6vs24/aPU8iODWK6LJNmNh8A1LhKqWJKU+UsLGTgQQoTwwMzdSSKU/MS64c5Unrb19DZe/QbBgTG5Zj9MqN5oUzT8WUJ+ZFSXliVmaUJ6XJazICnB5JoaoCaGsKOHLclCelyczNWShP3KR59ljB6TEs+v33gWRi9o+TG67D1IbrlCamPFHCxk4GEqA8MTC0UpacTCVwbOIdjEf7sbz+PDRWdihPT3mijM63juUmT8RVJx0/ewZIzSFN1lTh5Keu9o2x2xNTnrhN1PvxKE+8Z+zmDJQnbtLMP9bweAqvvpdE8sy+urEW2L4hhEBAbW7KEzVufvaiPPGWfsXJA2h86Wc5k8SWrMPo5Z9RmpjyRAkbOxlIgPJEs9BS8ZmfBhavcGsAqFA8UnBpXb8/+gP0Tb2XHi0YCGHn8q+gs3aD0uiUJ0rYfO1UbvJEwOx48BkEYvFZrrG2RvR/ZJuvnN2cnPLETZqlGYvypDSc3ZqF8sQtkvOPs/twEicGsiw3gG0bQmiuU5vbDXkylUxg/9gYYqkUzmtoQG0orFYMexVFgPKkKEzKjdJXnjzxP4HU3Ptscv01mNq4U2lMyhMlbOxkIAHKE51Ci6Uw/WYSqejMjixQGUDVlhACarcfOl7ZSLQPvz70rZxxuuovwHXLblcam/JECZuvncpRnjS8cRD1b3anrz5JhUMY/cB6TK5f5itnNyenPHGTZmnGojwpDWe3ZqE8cYukOfJkMhHHj44cwkgsli66OhTCf161Bk3hCu9hFJghkJxEKD6MePqq4PJ5dpdYMuWJ95tW9cGXUH34NQSnxhBbvAoTW/4KyZpGpYkpT5SwsZOBBChPNAot3pdC7P25ew9FaRWrgwgv8+cDkfJEo43Dp1LKUZ6kxWQsjvDwBGItDWX1sFixNsoTn94sDqalPHEAz4eulCfeQz85nMJbB5OzE4nnnlyz2b/bdt4aGcav+07kLHxn2xJc2bLYexjzzFA98gfUjD6T/msy1ISxtluRrPCvHrdBUJ64TdTb8ShPvOXL0fUhQHmiTxYQ8qT38HvornkhXdXqyOVYumy9b/JEnJr/Zfd/x1js1CylKzo+jbVNlytR45UnSth87VSu8sRXqPkmT6ZQMTiGeGMtUpXOLgWnPNEuXduCKE9sEWnVgPKkNHGMTaYwOI70A2NbGgJwsmt0etuObvIkmBhD04l7c4KI1m7BROvNpQmnBLNQnpQAsotTUJ64CJNDaU3AVp68+tY+fO6rczvom3Zux7fuvBU11ZXphZ0YmPJtgUuaqzE4FkE8kXtfrG8FOZx4eKIXj/V8G6nAmdt2UgH8ZcddaGte5XBk9e7R5CT6Jt/DeHQAS2rXYXH1SuXBKE+U0fnWkfLEe/ThgTG0PvEmguKnJQIBjG1dh/EL1N/zlCfeZ+b2DJQnbhPNP95UFEgmU6irdvYssXKVJyOTwNBoCvW1wOJGZ4xKk2jxsziVJ6PxOH546ADimSfYAvjK6nVorZw5Fi71KxzpRsOpH+dMG6/oxFjHV0pdimfzUZ54htaTgSlPPMHKQTUkYCtPHn38OXQtXYKtF27A1HQU3/zuT9CxpAVfv23GbhstTxJApDuBwaEe1IYXoWFVI4It/h0wvDv4FF47/W8IJdvSbBPB07io7SPY3PKXvm064mDzyMkkpiLipwKB5W3qtxC5JU8Gx1IYnQSa6wJorvcNzezE4llb41MpVFU6OzPm/0rOroDyxPtUWp54E1U9/XMTBQLo+8x1SFWElCZ3Q54IkVN95HS6hukVbY6vhlFaiKVTJJaCeM5vfY1/+2g31pFvjHKVJ9HeMQTrKhFu9OnBXWdgi330291JjJ2aRkUygUBrLS45N4Sw4seZW/JE/AzvxLS41Q5o8Hm7Pnoqhb09c7fJrGgLYOMKRUBevVEcjOtUnoipR+JxHJoYTz8wdm1tHVp8Eieilngyhupj/wMN8TgC05VI1U/gQOXlWNxxkwNKzruGI0ch/hevXIZ49WpHA7ohTwKxAUTGdyMcXoRg/flAQO1z1dFCLJ2DsYH0f0lWtLo5rPJYwcQ4golRxCs7xU3NyuNQniijY0fDCNjKE+t6hEzZ9fq7s1efmCxPTh8+iZdHjiKU2IAkRrAIx/CB87elH9Tqx6t7+HW8c7gKVYmN6emjof1Yt3IQGxdd6Uc56Z8IfG53ApGZ56OlX5tWBNHVpsbHDXly4EQK3b1zB3jrlgawttO/Azxx4PvagQSmozN81nUGsHapf/Wkt5t4Cn1DM4/yWNIcgOJ38PR63JAngtGRU0lEYzP1LBW/IuXja3QyhXePJjE+JS4FBzauCKHGn5OHaQpLHnoeofHpHCL9f30ZYkualCg5lSeh4Qm0/OoVhOMzv0gUqa3B0Ce2I1Xh7HYipcWc6TTw4jF0HTyCqkQMPW3tqPyLc1FZ5d9BcHA6irrdRxEeHEOsswXj568QP0emvESn8iQ2HEHVM++idWgIo3X1GN2+HlUr1bYf5UVkdYyPR9Dw2BtonhhP/9cTnZ0I3HS+G0MrjdE/kkTj7/+MlSOn0/1P1zai+5qLsWKZ2sM+3ZAn+/ZOYfGBHjRFJtBb34LKbSvQ4ePJmz/9OYZVx46hfXwYQzV1eKd9Ja7dWqX808BKQWV1CsQSaHxpP2oOn0KirgpjF63B9Jp25WHdkCf1u4+gds9RBBIpTKxfivFL1ynX47Rj3/Q0Jp9/EVccmXlO3mR1Ej/fuhw3rj/P6dDK/SuHn0JDz2sIDjci2TiG0ZUXIdb8QeXxnMqTyfH9WP7OEwifakOqOoJTa+IIrPtPyvU47piKo+n5R1FzpHYms9VTGL3iY0DAv8/WwO7foX1PBIHpKky1j2Dg6msQqhMSRf5FeSLPjD3MJCAtT75//yPplWauPOkb9O+2ncVN1RgajyCheNvOU2+/jWhs7oAuhTgu6RpBe/sSX9I8NhDD7kO5X7zXd8Wwpr3al3qGJ4CX9uY+wFZcyrv1XDU5EAoFsKi+Cv0juV8UZRb35JsJxLNKqqwIYOcWtXpk5p2vrTibeWJw7rYx8fXpui1BVPn0E9PiSqE/7UkgdoaRuLvu8k1BVIXVvtjVVocREreSTGUZNAlwIqtndycQnftlYFywOohlPgqUZ/48J7vEUtqaArj0HP+2ocoX9mPR3qOzVCM11Rj+1FXKJ4AWNVRhYjqGaGxOMkpEhsQLB7F0b3dOl94rzkdwk9oBlczc+dpO9k5g1f97Med8WPfGc1F3pfothE5ravzlK6jpH5kdZnTTCkxdsV552I6WGjj6LP3lW2jvnxED6YPyqmqM/scrEXAgdJQXI4Tb0wew4uDhnCGOXH8Zqn0SOkO7+7Fh15s59RxYtw6N16mdGa+qFMI1hOHxM9ZcElYkmkLjwy+ieXpytuf+lavRfL1/X8bHf/Mu1p48PltPX30zcMtW3+RJ3evdqH/j4BzZYACnb7kKyTq1q5gaaivSt3hPRbI+jCRyqzwxiEW/fT2nx/AHL0Rk1cyVwqV+TY5NYPVDL+ZMu39ZI5pv3FbqUmbna3z6p6g5uHz239Nrj2Fkx+eV62lrrsbAaCR9q53KK/XiI+jYs2i2a6p6Gkc+egFqGvz57AjseR5LXsw9/j15TQNw7naV5TnuEx06hq5/3wOk5o5/+s+ZQuLav1YaOxwOoqm2Ip2ZXy/xWcoXCXhNQEqeiOeffO/+R3DfvV/DoqaGdG0JxZ2aGwsTx4Xicly13Srw4B/3IBDPfbbAhtU9uGztBjfKkx7jjfdjeOdw7sHYxq4KbF3vz2nxqUgKv3h+7uBOLGhNZxhXnqd28CK+vgcCSF/Rovr6+R8n0pfuZ17VlQHcfPWMxffj9djLUxgay/2S+qGLq9He4s9Z8d2Ho3jz/VzRcfl5VVjXqXZmQ+QlclPN7ORgAk+8kXuwsKo9jKs3q21DTjMWEuehP07kDCMuqPjktXVOh1bu/+yrY2ja34PFkyMYrarF4ZYluP7GToQVNyGn+8Xjv96Lrvfez1nP8cu3oPOKFcprdNLx5HOH0fny7pwhepcuRfunLnEyrHLf1HgEoft+n9N/sq4O1V/aoTxmKBhw9Fk6/U9PojaS+z4b/8wO1Lb7s10PPPgy2k7NPWhcgOm7dBOWXLdWmZGTjtFd3ah+fk/OEBPrlqPmYxcpDev0s2y6fwK1P306Z+7hxkY03naNUj1udEr80+9REZn70pMSx1d/cwMcPaXVQWGBX72KwIG+nBFSH92K1DniJ3nlX+n9ImaOGVVegZcPIPDcvtx6LluH1DUzVwqX+hU42o/Awy/lTBtZXI+Kz19X6lLm5vvHRxGMzl3NlQrHkfjax5R/QNnpZ9nETx9BQ3/ul+meG1dg2XlbfGE0/Ni/o2Vf7vH84IY4mj/8MV/qOfXa8+h4Zjhn7unFY6j8/H9QqsfpflFpUksn8VnKFwl4TaBoeSLEyd33PID7v3MH1q5cOluXybftvPR+N0ZHsg10ElduTqCu0p8rPUYnUnhpX+4X8W3rg2iu929n8FZ3EieHZo42xJe5S9ap1+PGbTu7DydxYmDu6KdrcQCbVvp31cDB3iTePzFXj/hVgKvOD6VvmfHj1d2XxIHjuUeH569Sv9LD6W07E9MpvLAnd5tevjiA83zM7Flx5UmWXxK/4qB6NZUbGYsrczK3fWXG27YhhGbF771Ob9sZOjCMTc++Oru0RDCIgx+7Gg2L1G5xcMooeWoMy36zK2eY45vXIbhN7aoBp/VMTaew8l+fRig5t12famxG4uatykM7vW0n+Ms30T4w99yc6YoKDH76Gt+uPJl+6wRWvzYnK1II4NjNVyLc6M9na2h0Ekt+8WLON+eh6y9MP89H5eX0th1xS0r7g88gkHXqZ7itFVMfuVilHFf6tP76ZVSeHp0dS9ym1/dZ/76I17/2PhreOpSztpOfvFr5yhOnt+1UHR9Ay+/eyKlnaOcFmF6tfiuRo+ASSbQ//MLMg8bPvMYvXouxi9c4GtZJ58X/5wlUROcOfhLhJE597kPKQzq9bSf45DNoP5J7pdHxT2xH8MzJX+XCFDsO734VG1/OlRX7PtCGpvMuVBzRWbep0SGs+cUrOVeeHF+XRPBatcx4246zPNjbHAJFyZP5xIlYpsnyZGx6Gm8eGsHUdANCwQg6W+M4b7nawZRbkfcOpiAeIidei5sCWOrjPdCZNYmz9eIyY/GgRnElgurLDXkiroAYGkthbApoqAUW1QecPGpAdSmz/RIJoKc/la6ppgroWCTkkuNhlQeYnAae3zN3X1MwOCNzqhW/9zqVJ2Ihb7yfwOkzdzgIASdERWOtgw1Jmc5Mx1PDM8/NEY8ZaaoL4Jyl4sHD/tWz/1gSh0/OCS9xq9XVm0PKj21zKk8SSeDw3nFUnRhEsiKE+PIWrFnn76WwoRcOoL7nNMLRGMaWLEJ0x8aZ3y/14SXOXI/8dj829B1NZxQPhPD2xo1Yern6bU1O5Un02CjqXnoPzWOjGKutw8jGLlRtmTvJUWpMqUQK0dePobpvEPHKCsRWtaF6g7+freIByFVHTyMQiyO6rBWT65cpY3EqT8TEDS/sRf2+Y+kakuEQhndegEjXYuWanHas3X88/YyRgLjXMgCMX7QGYxf7c6WQWIuQAk1/2ouq3mEkaisxta4T4xeqC1On8kTU1PjiPlSLbSiRwvTyVoxctcnRs46cZlZ5cgTV3b3pZ2bFOpoxsX65rw/3jjz1BlYdmnkYqngdXdGCiuvVrxB0Kk8CvYNoffJNVERnRPdg1yJEPnSpU+zK/adicaT+8DS6+meO0Y62hlFx/Q5Uql5mqlzJXMeJl3dhafcgqiJBDLYGMHrVZahtnrvVSWYKyhMZWmxrMgFbeZLvVp3sBZssT0wOzsTa3ZAnJq671DWLE1H9o6n01S/iqgonD0N1Q56I9UdjqfSDh+trA8pSoNQcSzWfeD5Nz+kkhsdTqK0OoLNF3DesPrtTeaI+88LpKST38RNRBIcnkVrcgHO6QmisUxdwTuXJwiGvx0rdkCdiJYFoHOHRScTEk6t1uNw8kUTF4BjizXW+PiDai5TdkCde1FVWYyZTCPUOInZqCBWLm5FY1upou3YqT9JsU0DF4CgStdVIOjkYcjGogejM7fl+/cy1i0vJGYryxCuyHFc3ArbyRDwg9sc/fzyn7s721tnbdyhPdItU33ooT/TNZr7K3JIn5q3c3IopT8zLjvLErMzckidmrdrsailPzMvPFXli3rKNrZjyxNjoWLgkAVt5Yjce5YkdIf49Q4DyxLxtgfLEvMwoT8zLjPLErMwoT8zKS1RLeWJeZpQnZmVGeWJWXqxWnQDliTo79pQkQHkiCUyD5pQnGoQgWQLliSQwDZpTnmgQgkQJlCcSsDRpSnmiSRASZVCeSMDSoCnliQYhsISSEKA8KQlmTiIIUJ6Ytx1QnpiXGeWJeZlRnpiVGeWJWXmJailPzMuM8sSszChPzMqL1aoToDxRZ8eekgQoTySBadCc8kSDECRLoDyRBKZBc8oTDUKQKIHyRAKWJk0pTzQJQqIMyhMJWBo0pTzRIASWUBIClCclwcxJBAHKE/O2A8oT8zKjPDEvM8oTszKjPDErL1Et5Yl5mVGemJUZ5YlZebFadQKUJ+rs2FOSAOWJJDANmlOeaBCCZAmUJ5LANGhOeaJBCBIlUJ5IwNKkKeWJJkFIlEF5IgFLg6aUJxqEwBJKQoDypCSYOYkgQHli3nZAeWJeZpQn5mVGeWJWZpQnZuUlqqU8MS8zyhOzMqM8MSsvVqtOgPJEnR17ShKgPJEEpkFzyhMNQpAsgfJEEpgGzSlPNAhBogTKEwlYmjSlPNEkCIkyKE8kYGnQlPJEgxBYQkkIUJ6UBDMnEQQoT8zbDihPzMuM8sS8zChPzMqM8sSsvES1lCfmZUZ5YlZmlCdm5cVq1QlQnqizY09JApQnksA0aE55okEIkiVQnkgC06A55YkGIUiUQHkiAUuTppQnmgQhUQbliQQsDZpSnmgQAksoCQHKk5Jg5iSCAOWJedsB5Yl5mVGemJcZ5YlZmVGemJWXqJbyxLzMKE/MyozyxKy8WK06AcoTdXbsKUmA8kQSmAbNKU80CEGyBMoTSWAaNKc80SAEiRIoTyRgadKU8kSTICTKoDyRgKVBU8oTDUJgCSUhQHlSEsycRBCgPDFvO6A8MS8zyhPzMqM8MSszyhOz8hLVUp6YlxnliVmZUZ6YlRerVSdAeaLOjj0lCVCeSALToDnliQYhSJZAeSIJTIPmlCcahCBRAuWJBCxNmlKeaBKERBmUJxKwNGhKeaJBCCyhJAQoT0qCmZMIApQn5m0HlCfmZUZ5Yl5mlCdmZUZ5YlZeolrKE/MyozwxKzPKE7PyYrXqBChP1NmxpyQByhNJYBo0pzzRIATJEihPJIFp0JzyRIMQJEqgPJGApUlTyhNNgpAog/JEApYGTSlPNAiBJZSEAOVJSTBzEkGA8sS87YDyxLzMKE/My4zyxKzMKE/MyktUS3liXmaUJ2ZlRnliVl6sVp0A5Yk6O/aUJEB5IglMg+aUJxqEIFkC5YkkMA2aU55oEIJECZQnErA0aUp5okkQEmVQnkjA0qAp5YkGIbCEkhCgPCkJZk4iCFCemLcdUJ6YlxnliXmZUZ6YlRnliVl5iWopT8zLjPLErMwoT8zKi9WqE6A8UWfHnpIEKE8kgWnQnPJEgxAkS6A8kQSmQXPKEw1CkCiB8kQCliZNKU80CUKiDMoTCVgaNKU80SAEllASApQnJcHMSQQByhPztgPKE/MyozwxLzPKE7MyozwxKy9RLeWJeZlRnpiVGeWJWXmxWnUClCfq7NhTkgDliSQwDZpTnmgQgmQJlCeSwDRoTnmiQQgSJVCeSMDSpCnliSZBSJRBeSIBS4OmlCcahMASSkKA8qQkmDmJIEB5Yt52QHliXmaUJ+ZlRnliVmaUJ2blJaqlPDEvM8oTszKjPDErL1arToDyRJ0de0oSoDyRBKZBc8oTDUKQLIHyRBKYBs0pTzQIQaIEyhMJWJo0pTzRJAiJMihPJGBp0JTyRIMQWEJJCFCelAQzJxEEKE/M2w4oT8zLjPLEvMwoT8zKjPLErLxEtZQn5mVGeWJWZpQnZuXFatUJUJ6os2NPSQKUJ5LANGhOeaJBCJIlUJ5IAtOgOeWJBiFIlEB5IgFLk6aUJ5oEIVEG5YkELA2aUp5oEAJLKAkBypOSYOYkggDliXnbAeWJeZlRnpiXGeWJWZlRnpiVl6iW8sS8zChPzMqM8sSsvFitOgHKE3V27ClJgPJEEpgGzSlPNAhBsgTKE0lgGjSnPNEgBIkSKE8kYGnSlH8uMgAAAA9iSURBVPJEkyAkyqA8kYClQVPKEw1CYAklIUB5UhLMnEQQoDwxbzugPDEvM8oT8zKjPDErM8oTs/IS1VKemJcZ5YlZmVGemJUXq1UnQHmizo49JQlQnkgC06A55YkGIUiWQHkiCUyD5pQnGoQgUQLliQQsTZpSnmgShEQZlCcSsDRoSnmiQQgsoSQEKE9KgpmTCAKUJ+ZtB5Qn5mVGeWJeZpQnZmVGeWJWXqJayhPzMqM8MSszyhOz8mK16gQoT9TZsackAcoTSWAaNKc80SAEyRIoTySBadCc8kSDECRKoDyRgKVJU8oTTYKQKIPyRAKWBk0pTzQIgSWUhADlSUkwcxJBgPLEvO2A8sS8zChPzMuM8sSszChPzMpLVEt5Yl5mlCdmZUZ5YlZerFadAOWJOjv2lCRAeSIJTIPmlCcahCBZAuWJJDANmlOeaBCCRAmUJxKwNGlKeaJJEBJlUJ5IwNKgKeWJBiGwhJIQoDwpCWZOIghQnpi3HVCemJcZ5Yl5mVGemJUZ5YlZeYlqKU/My4zyxKzMKE/MyovVqhOgPFFnx56SBChPJIFp0JzyRIMQJEugPJEEpkFzyhMNQpAogfJEApYmTSlPNAlCogzKEwlYGjSlPNEgBJZQEgKUJyXBzEkEAcoT87YDyhPzMqM8MS8zyhOzMqM8MSsvUS3liXmZUZ6YlRnliVl5sVp1ApQn6uzYU5IA5YkkMA2a11WH09JrZCKmQTUsoRgClCfFUNKrDeWJXnnYVUN5YkdIv79TnuiXiV1FlCd2hPT6e0UoiOaGCpwejvhWmPgs5YsEvCbgWJ54XSDHJwESIAESIAESIAESIAESIAESIAESIAE/CVCe+Emfc5MACZAACZAACZAACZAACZAACZAACWhPgPJE+4hYIAmQAAmQAAmQAAmQAAmQAAmQAAmQgJ8EKE/8pM+5SYAESIAESIAESIAESIAESIAESIAEtCfgqzwZGhnD7d/4AXbv7U6D+ud/+Aa2XrhhFtr3738EP/754+l/b964Bvfd+zUsamooCPXVt/bhc1+9N2+fqekovvndn+C3T+1K//3bd92Kj994tfYh6VRgIb7WPL/wyRvx9dtuLlj+o48/h//2nZ/MtrFmYreN6MRGx1rstvmDR07gtru+h96TA3nfg/nWZJdJoW1ER0a61WTHN/s9U8x+0Tpevj7ZY960czu+deetqKmu1A2N1vUIznf//QO480u3YO3KpTm1qvAt1MduG9EalEbFif3fd//XQ7jnv34x59hCha/dZxn3i+4ELzgf7unLe2xR6D2o8lmm8r51Z5XlNYo4ll/V1ZH3eHu+92A+AtbjFetnld3xTnlR9W4182WS/Z2s2O9Qdpmo7Gu9WzlHJoHiCPgmTzJvqO2XbErvUMWb9W/veQB/d/cX0wee4kNr1+vvzh7EW/8934610BjijS9e4gt95g17x2035wib4rAtzFaFMhJEhJjK5GnNNx8x0ea+B3+Fz99yQ/rA1ZqJ3TayMFOQW3Whbd7KWxzc333PA7j/O3ec9eUvM6tdJnbvY7nqF15rO74io+/d/8isSBb59p0aLCg7RJ+eE6dmD1yt+9J8Y2b2kwsvAfkVZx8cdra3nvX+UeFbqI/dNiK/goXXI/uA3SoTVfjafZZxv+h8G8uWT9YTM3bvwfmOP7KPWawZqbxvna+yvEbIlk+FTowVcxJAkBHjdS1dMnvMnn18I/7OY3xn24/dfjH7eD0jsu65+4sFv0MVykRlX+tshexNAu4Q8E2eWM2m9U1k3SlaP8gyb/KbP3xtzpeC7DMS2R+GLc0NZ50VtM7hDtLyHcV6xsfKV1xFlC2jrHztdrb5dqTZZwWLETLlS19+ZfnOwmVnYv0SnY+v9cu53fu20DZiPRsvv6Ly71GI7w07tucISkHDesCfb79opZbvS0H2WUHr38ufujsrnO+st/Wsq5Vvvv1ioT6Dw2M5V0twv6ieX74zrHb7uMyXuEce++O8V8NaM+F+UT0ja0/VK09kP8vs3rfuraj8R1K58qSYz7LsY5jpSITH+C5tSsVcDZTvc0fkkb1ftDsGLWZf69KSOAwJuErAN3mS7wA9+4td5oDyxh3b0leKWHe++Xas1i/r2WfWWxY15lzZkjkAyr66xVWyZThYIb7idqvMWQZx+9W61cvO+iCzkyfWv9ttI2WI2NUlWb9YW7f53z29K+fqLvH3fGdysq9ssMvEbhtxdYFlOFghvrd/9qNnyRPr1UPFHHBmf4kQCLPPvuYTMmWI2ZMl5TtQzHeAaX1fWvd7dn0Gh0Zzrj7K9771ZIFlOGi+Lwl2+7hi5Ik1U+4X3dt43JInsvvafJ+n7q2qvEfyQp5k9pMdS1rS3xHsjnd4G2rx21gx8iTf1ftWeWKXyTv7uvlZVnwsbKkRAV/lyS8e+2PO5ebZBxiZHePI2AReeGV3Uc88mU+wiKshhDyx3ttczK1AGmXleymF+Ap5ktlRikJ37zuEYp55ItpmXyqYfWmnOLgptI34DkTzAvJ9AGZv8ydO9p8lFO2uxrLLxG4b0RyZ7+XZ8bXus2RuP8zIzexLpDP72U98+NrZS2/5JUFtMygkT2T42mUi5An3i2oZWXvNJ09U+c73Wcb9ojt5ZcSVG888KbSvzYhqmfeteyssv5FU5EkhCmI88TzE7Gee2B3vUJ4Uv10VI0/sjhUzJ2IKfe8S8kR1X1v8atiSBNwn4Ks8yb53Xywt+81o3dlajWY+FLzyxP0NJHvEQnytV5pYzwoUU5n1jGsxZwCLGXehtrGz/uJgwvqQQ8Gq0IOU7TLhGVZnW5sdX+vD18Rs+Z6zUaiK7Dmqq6p45YmzyGZ7q155Yp2eV564FEgRw6heeWI3tN1tyDLS026uhfZ31StPrJx45Unpthy35UmmcruTQTxBqpaxnTyx3gI33yx2x6C88kQtH/byn4Bv8qSYe/tlrb/dMzmsv4RQjDn1PyJ9KijEV1TpxpU92XPwfkhn2dvdb5rvS9t373sIn/r4X8z7wFi7THhvv7PM7PhaRxft/+XRP+DO228p+tdxrNsF7+13llmmt+ozT/LNzmeeuJOJ3SiqzzyxG1f8PXtfyP1iMcSKa+OWPLHb13K/WFwexbTySp5kZyjq4DF+MWnYtykkT4oVJ2IWu2NQu/egfaVsQQL+EPBNntg9Zdn6Bs33ICLxgNLsB8ZaLafVOmfLEp75kd/gCvEVD+vKziPflSfW+8BFBj996HcQl8iKqyCsz2uw20bkV7Dweshs8/lkovV9aJeJ3Xtw4SUgt2I7vtmj5duHzfcg7exfKLDuS/mrEnIZzdd6Pnlix9e6XxTj89d23MnEbpR8XxKKeQ/mOx4p9FnG/aJdEsX/XVWeyH6W2b1vi6+YLVXkSb7Psh/938ew86pLZk/uWDOVOd5hKvMTmE+e2J1wzneHQKFMitnXMicS0JGAb/IkYyXFF+7de7vTbMSDRsWzM8TLenm69afM5nswYvbP2c33E4S/fWpXeo5CtyfoGJYONRXim/kS0HtyIF2q9Zkn+b4kZO5dzayt0M/ZWbcRHXjoXoP1fWTlm80/3/sh31mG7Pv682VSaBvRnZcO9RXim/23fLfr5NsvWt+X+X4WMvv2rez7yHXgoXsN+W6lsjIsxDffflGsuVAfu/eg7sz8rs/Kz/p5Zcd3vi8J4jkM832Wcb/oLPVsfpmRMseMxbwHVT7LuF90lpn1tuDsz6xi34PZJ0it24B1P2t3vONsNeXfu1Am+f4miGRnkG+/aJeJ3b62/KlzhSYS8FWemAiMNZMACZAACZAACZAACZAACZAACZAACSwsApQnCytvrpYESIAESIAESIAESIAESIAESIAESECSAOWJJDA2JwESIAESIAESIAESIAESIAESIAESWFgEKE8WVt5cLQmQAAmQAAmQAAmQAAmQAAmQAAmQgCQByhNJYGxOAiRAAiRAAiRAAiRAAiRAAiRAAiSwsAhQniysvLlaEiABEiABEiABEiABEiABEiABEiABSQKUJ5LA2JwESIAESIAESIAESIAESIAESIAESGBhEVCSJ9+//xH8+OePp0n98z98A1sv3OAJNfH733f//QO480u3YO3KpUXPYf1d8Xx1Zv9e/OaNa3DfvV/DoqaG9BzZ6xP//vZdt+LjN1591vyZecQfvnXnraipriy6RjYkARIgARIgARIgARIgARIgARIgARIwg4CSPBFLy4iDT3z4WtflSbb86Gxvxf3fuUNKngjp8tOHfofbP/vRtNAQouTuex6YHefgkRP423sewN/d/cX0uI8+/hx2vf5uWoCI130P/gqfv+WGtEwRbW+763u45+4v5qwzu8abdm6nPDFje2eVJEACJEACJEACJEACJEACJEACJCBNwDV5IoTF7d/4AXbv7U4XkS0UMrLirz54Oe754b+k//6FT96Ir992c8GCVa88sQ6aqe2O225OCxAhSw739M3Ob5Up2f0zkmT7JZtyrj4RV6es6upIN82IF155Ir39sQMJkAAJkAAJkAAJkAAJkAAJkAAJaE/ANXkiru4QLyEnMrLi5g9fmxYOmas3btyxLS0srDJjPkpuyROrHBHiQ7wy8qZQPfn+lt0/+6oVyhPtt3cWSAIkQAIkQAIkQAIkQAIkQAIkQALSBFyTJ9aZswWDVV4Ue8uPG/Ik35UjmatGMs8xKSRPrKLFetUK5Yn0NscOJEACJEACJEACJEACJEACJEACJGAUAVflifVBq5lbc/ySJxlx0rGkJecWoWKvPBHt+k4N5jzPxLrGTNp87olR2z2LJQESIAESIAESIAESIAESIAESIIGiCbgmT6yiwe8rT+YTJ4JMMc88ySdO8lHllSdFb2tsSAIkQAIkQAIkQAIkQAIkQAIkQAJGElCWJ4WeI2IVF25feTLfQ1wzCdj9vdCv7YjnllivTCmULOWJkds9iyYBEiABEiABEiABEiABEiABEiCBoglIyZPsn+cVM3z7rltnf4Em81DY3pMDED8vvHhRIy67aGP6dhlZeWKdR8yV79d7Mj81bF1tdi3Zf8v+hR/xgNvPffXe9J83b1yD++79Wvqnia2/GpTpP99tOZQnRW9rbEgCJEACJEACJEACJEACJEACJEACRhKQkie6rFCIj+df/rPtTx3rUi/rIAESIAESIAESIAESIAESIAESIAESMJeAkfJE3FZz1bYL0j+LzBcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJeEng/wMekZMdldN5yQAAAABJRU5ErkJggg==", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "fig=go.Figure()\n", "fig = prepocessor_object.sensor_object.plot_timeseries(fig=fig)\n", @@ -379,7 +9865,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "id": "1e1d54a0-f3da-4cd4-a171-f12941ba6e3a", "metadata": {}, "outputs": [], @@ -424,10 +9910,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "id": "241d1ea1-9935-417b-b1d2-296983aca7b8", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 5000/5000 [04:46<00:00, 17.47it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "z_src: Acceptance rate 1%\n", + "n_src: Acceptance rate 1%\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], "source": [ "elq_model = ELQModel(sensor_object=prepocessor_object.sensor_object, meteorology=prepocessor_object.met_object,\n", " gas_species=gas_object, background=background, source_model=source_model,\n", @@ -451,10 +9960,36 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "id": "259ea88c-086b-4b4a-bbc3-d49761c22fdb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Summary results:\n", + " latitude longitude altitude height median_estimate quantile_025 quantile_975 iqr_estimate absolute_count_iterations blob_likelihood\n", + "source_ID \n", + "0 0.0001809 0.0000898 2.0000394 2.0000000 14.9978133 14.9017498 15.0901801 0.0631084 1000 1.0000000\n", + "1 0.0001357 0.0001797 3.0000491 3.0000000 9.9505837 9.9024024 9.9936016 0.0313674 1000 1.0000000\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\numpy\\lib\\nanfunctions.py:1217: RuntimeWarning:\n", + "\n", + "All-NaN slice encountered\n", + "\n", + "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\numpy\\lib\\nanfunctions.py:1563: RuntimeWarning:\n", + "\n", + "All-NaN slice encountered\n", + "\n" + ] + } + ], "source": [ "burn_in = elq_model.n_iter-1000\n", "\n", @@ -471,10 +10006,2471 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "id": "82c1288e-4610-4b4c-946c-0a420d4358ee", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.7775124500673005, + 7.682422893151921, + 8.03516548537397, + 8.199836612619476, + 8.211681895544416, + 8.133498368796353, + 7.825545066198956, + 7.572912203843689, + 7.31418090679373, + 7.109378065744779, + 6.988034107064822, + 6.921676743237326, + 6.48262753738407, + 5.8992439319455094, + 4.807637999691945, + 3.4755898118227657, + 2.8120572679651348, + 2.2825687679781117, + 2.0784743993692594, + 2.0116882502760065, + 1.9931913052158658, + 1.9909187148997025, + 1.9912023348956174, + 1.9913471609213862 + ] + }, + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgba(102, 197, 204, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.7616547494635455, + 7.666338703629646, + 8.018380317772577, + 8.182193949582246, + 8.194407862930966, + 8.116787312284094, + 7.808487123978765, + 7.554449148580396, + 7.296523992885672, + 7.090329607383164, + 6.967846090306108, + 6.900822979229808, + 6.463316602002197, + 5.879094832499429, + 4.790007690372129, + 3.4569431605311784, + 2.794313571457822, + 2.264040584713106, + 2.0607830397417697, + 1.9940109906199153, + 1.9740660322385757, + 1.9720627016524483, + 1.9710612290895224, + 1.9698017840281183 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(102, 197, 204, 0.3)", + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgba(102, 197, 204, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.792397560877715, + 7.697049028821605, + 8.050614091681915, + 8.216592692034792, + 8.230221372540074, + 8.150201631315042, + 7.8423758828981445, + 7.590110624724046, + 7.332149203365458, + 7.12783752808823, + 7.00608024027095, + 6.939209915536372, + 6.500820655119452, + 5.91633497834365, + 4.825294584995957, + 3.491349751662174, + 2.829467785798972, + 2.300507169889309, + 2.096758652096541, + 2.0306735512027085, + 2.0120831796711163, + 2.01218682176755, + 2.013083963701504, + 2.014052292134691 + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgb(246, 207, 113)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.783251675817577, + 4.082308399786676, + 4.585036123264181, + 4.948063409079042, + 5.361676785667489, + 5.623772049225469, + 5.687056153142228, + 5.774001637819954, + 6.061471373303148, + 6.588273826217893, + 7.755097402789431, + 8.586994339327415, + 8.993608609393995, + 8.606335714825033, + 7.263354711633953, + 5.045201013010813, + 3.7914124822561357, + 2.680678895778721, + 2.217781162569192, + 2.0549799254099175, + 2.005382214497355, + 2.000169979503385, + 1.9996991040093337, + 1.9995218992936432 + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgba(246, 207, 113, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.7726112177936066, + 4.070171853612785, + 4.5720766984603225, + 4.933204466781338, + 5.346912866426113, + 5.608775996141329, + 5.6726198867322974, + 5.759251004678564, + 6.046556286357734, + 6.571140309546626, + 7.734471676586719, + 8.564474697481344, + 8.970698234690156, + 8.585735247564163, + 7.243949880621786, + 5.027509630552106, + 3.7749770654538217, + 2.663998377930485, + 2.2011319902809983, + 2.0378668521064265, + 1.9889048527164457, + 1.9827119119113534, + 1.9810916884418666, + 1.9796271967763575 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(246, 207, 113, 0.3)", + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgba(246, 207, 113, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.793292164627075, + 4.094357610339846, + 4.598870031613887, + 4.962489229286815, + 5.377826329505441, + 5.6387011410514445, + 5.7024092506105655, + 5.7882897958909645, + 6.076025709223912, + 6.603352592416066, + 7.772207980889215, + 8.60568331244701, + 9.013666658732957, + 8.626827439590011, + 7.282317118732897, + 5.0610568438565045, + 3.8076833073669225, + 2.699052216136112, + 2.2366189026425007, + 2.074474250785352, + 2.0252105300934367, + 2.0203218429236602, + 2.020787773491454, + 2.0220154239796275 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgb(248, 156, 116)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 2", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.384332354701816, + 2.7192934903502257, + 3.2714573732543073, + 3.768392414443034, + 4.457396809959219, + 4.862288979134049, + 4.807133787871306, + 4.4043562410378385, + 3.672781137559157, + 3.1612808279049354, + 3.4103471369415708, + 4.406424905733587, + 6.43342365392728, + 7.873066502180767, + 9.483805089414096, + 9.421381897155621, + 8.701472910183233, + 6.6559742478711375, + 5.055548418171832, + 3.849639567908155, + 2.88433021899919, + 2.5009796439301315, + 2.253779566395895, + 2.116663368860496 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgba(248, 156, 116, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.376360597124462, + 2.7086083550386273, + 3.259140766783494, + 3.75490777159207, + 4.44254477816366, + 4.846517888824612, + 4.791850823030353, + 4.390255280581705, + 3.658333032293467, + 3.147126034700499, + 3.3962078793309103, + 4.39260278362924, + 6.417817095302779, + 7.855351657617575, + 9.462073569445002, + 9.400510256088335, + 8.681608652282602, + 6.63896318632313, + 5.04060785258736, + 3.834381325910568, + 2.8685200569308638, + 2.4852692968613557, + 2.2360000271614946, + 2.0975191646794715 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(248, 156, 116, 0.3)", + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgba(248, 156, 116, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.3927829688197066, + 2.7298530260356593, + 3.282673481634771, + 3.781515930953796, + 4.4734811474376555, + 4.877308459435754, + 4.823420315277171, + 4.420133457432816, + 3.6871837868308805, + 3.176033503845686, + 3.423905911542321, + 4.420906620448399, + 6.449611768764002, + 7.891527333906811, + 9.503995794173427, + 9.442550154398706, + 8.720769104356917, + 6.672444685374746, + 5.071959909543078, + 3.866481810275379, + 2.9025198377126276, + 2.520158081420695, + 2.274463589598265, + 2.139396201331 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgb(220, 176, 242)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 3", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0155636397801224, + 2.077342438561284, + 2.281521717360527, + 2.5901715428872274, + 3.317460761937962, + 4.146106193622158, + 4.79750502194198, + 5.034729090347614, + 4.67003371616101, + 3.944897460677653, + 3.2075762166663813, + 3.2395848464813133, + 3.9550612244841545, + 4.73570343444195, + 6.048335423006358, + 7.038810970943178, + 7.590361251210885, + 7.293406113381113, + 7.023561393888615, + 6.5948038081310285, + 5.915587049540726, + 5.664038884947696, + 5.429306348191206, + 5.138627419734364 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgba(220, 176, 242, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.007404049868726, + 2.067486876683118, + 2.269565001029892, + 2.5780433119326207, + 3.30429392909919, + 4.1316805334222035, + 4.7815117122340665, + 5.018228174608708, + 4.654418737911723, + 3.9294470839049906, + 3.193582786895597, + 3.226321516706786, + 3.942000868480325, + 4.721152772541035, + 6.033610837135705, + 7.02182461729145, + 7.574303384155734, + 7.277104489346749, + 7.007885008250342, + 6.578761081850246, + 5.899766799763508, + 5.647815653583092, + 5.412510479763049, + 5.1200155297713446 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(220, 176, 242, 0.3)", + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgba(220, 176, 242, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.023916009643667, + 2.088143804593163, + 2.2929116462892223, + 2.6027081388646245, + 3.3311939812214284, + 4.160166468726176, + 4.812696690303802, + 5.050928487097701, + 4.685582926281352, + 3.9596285865697376, + 3.221166155220159, + 3.2530739060173564, + 3.9691495188733183, + 4.74994088807524, + 6.062913206866294, + 7.053821106408849, + 7.607512455803909, + 7.310314834940737, + 7.040293705338979, + 6.610460659285998, + 5.931079247824498, + 5.680734851481486, + 5.447447088324287, + 5.157627050699161 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgb(135, 197, 95)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 4", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.00504815619205, + 2.02477648546101, + 2.1065465597226565, + 2.2508799449361474, + 2.664162715983304, + 3.2657865039981537, + 3.9554519785323174, + 4.537301560694424, + 4.871352211401282, + 4.73456964122761, + 4.295864839344491, + 4.167399452170388, + 4.363886640597712, + 4.713628138990343, + 5.450028276763003, + 6.094436579529315, + 6.579817911229776, + 6.499980558924083, + 6.506772510988288, + 6.380831822456644, + 6.052428042914718, + 6.055135350414334, + 6.097433315882331, + 6.058706643440703 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgba(135, 197, 95, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 1.9968391044757898, + 2.0144271129677325, + 2.0943610329834987, + 2.239526930671096, + 2.651219377900077, + 3.2526682247596312, + 3.9400735375148606, + 4.521114048887831, + 4.854662364337493, + 4.718529067629117, + 4.279969660869456, + 4.153511036033734, + 4.349306797159298, + 4.698173283302874, + 5.436262399031823, + 6.079804315133738, + 6.56397072822578, + 6.4836589849036725, + 6.48987057461346, + 6.363964685779271, + 6.034972440365318, + 6.0376111516412205, + 6.079136435421588, + 6.039181071025644 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(135, 197, 95, 0.3)", + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgba(135, 197, 95, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0136286257668696, + 2.03551406688887, + 2.117732440220332, + 2.2637576667466957, + 2.677089353948156, + 3.278641853876476, + 3.9688314612519893, + 4.5518463834889475, + 4.887245764512449, + 4.750541884869287, + 4.3109865959130556, + 4.181556813779349, + 4.377359273286049, + 4.727899086511943, + 5.465203741550347, + 6.109461570398638, + 6.595703315154341, + 6.515427903309976, + 6.522282915235225, + 6.397466977213423, + 6.068521392887679, + 6.07166581599392, + 6.116293293438079, + 6.079296603724898 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgb(158, 185, 243)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Point sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.000666212043779, + 1.9990113410595252, + 1.9991230294957703, + 1.999626267692718, + 1.9999275133055519, + 1.9998100283746525, + 1.9992200235243667, + 1.998026399013494, + 1.9969205557509135, + 1.9986018347259464, + 2.0010348007537555, + 2.0013357942440146, + 2.0024020650580723, + 2.0032845406438087, + 2.002429188350589, + 2.00598918879618, + 2.019743825466133, + 2.081208912125925, + 2.2519207227772977, + 2.6162183100781835, + 3.493399412999077, + 4.844621978449012, + 7.37738019107636, + 11.257683945323935 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgba(158, 185, 243, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 1.9918892950564422, + 1.9885595880098674, + 1.9885252711193278, + 1.9885609217185478, + 1.9885031563903368, + 1.9886916117230695, + 1.9888833411056075, + 1.9868121186329, + 1.9851461027080834, + 1.9868731979992047, + 1.9886098565857857, + 1.9891745858448864, + 1.9903764961859345, + 1.9909341720910982, + 1.9908187202674517, + 1.9944378624819779, + 2.0082592754713673, + 2.0698847950581416, + 2.2411847358245724, + 2.605041957048331, + 3.481032214588492, + 4.8316713763782815, + 7.35654106309402, + 11.224586714340678 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(158, 185, 243, 0.3)", + "legendgroup": "Point sensor 0", + "line": { + "color": "rgba(158, 185, 243, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.008947425870537, + 2.0096342331311736, + 2.010828778969616, + 2.011299897376911, + 2.0108586286426053, + 2.011928908677718, + 2.012330984022633, + 2.0108119701254266, + 2.0089003855562426, + 2.0100544620635525, + 2.0127058465683123, + 2.012906212990334, + 2.0137245473282586, + 2.014568506861753, + 2.014143649414111, + 2.0171712583503245, + 2.031194117659771, + 2.0930414096083867, + 2.264573880955624, + 2.628921953131454, + 3.505755167080985, + 4.859380080755669, + 7.39701552584019, + 11.290031816583861 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgb(254, 136, 177)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Point sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.04691591335226, + 7.718810132563073, + 6.310354959735022, + 5.1387272937745445, + 3.6586804494130023, + 2.8124482265364037, + 2.334986250802311, + 2.12700948611425, + 2.031006297345544, + 2.006696319256687, + 2.001707073886375, + 2.0012787901580125, + 2.0024384941614635, + 2.0033758582526504, + 2.0015783656889385, + 2.000745799900142, + 1.9982541751525407, + 1.999404197026101, + 1.9991958500714186, + 1.9985116474958198, + 1.9984426716066221, + 1.9987954574176303, + 1.9987952621117393, + 1.9991482919729648 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgba(254, 136, 177, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.024122198970614, + 7.700738559963982, + 6.295325433830099, + 5.125540946037389, + 3.6472349624137292, + 2.8016173731131366, + 2.3246985703694065, + 2.115806422907009, + 2.019335822203599, + 1.9949068556765457, + 1.9897787663060702, + 1.9891588969223215, + 1.9902546865340873, + 1.990922177188045, + 1.9902021713325786, + 1.9894725849661257, + 1.986802335695116, + 1.9882008939795017, + 1.9879910372079486, + 1.9868603684807162, + 1.9856602682229918, + 1.9858363876914105, + 1.9845331313008878, + 1.982227599052926 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(254, 136, 177, 0.3)", + "legendgroup": "Point sensor 1", + "line": { + "color": "rgba(254, 136, 177, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.068491099448307, + 7.736811545460263, + 6.32505247213344, + 5.152161686536546, + 3.6698647155834228, + 2.82362596117428, + 2.3480630172792556, + 2.1391612854351543, + 2.042589038359397, + 2.0177134393396714, + 2.01355466393002, + 2.0132334792451916, + 2.0139554198605563, + 2.0144204719159595, + 2.0133551199144657, + 2.0123953498890095, + 2.009914571347806, + 2.0114445115762187, + 2.0119817206986963, + 2.0116516128241937, + 2.012298192262004, + 2.0131390438429957, + 2.015040543423236, + 2.017180467547803 + ] + }, + { + "legendgroup": "Beam sensor 0", + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.791714050564657, + 7.718237540043255, + 8.031656486135207, + 8.223226698536852, + 8.218807731163079, + 8.185643574955071, + 7.794624234656219, + 7.620110694793409, + 7.275749372954192, + 7.029489247478757, + 7.005447146729908, + 6.950554849446046, + 6.5952572736008435, + 5.670722904331665, + 4.633219256004186, + 3.539441897942694, + 2.8161757615155705, + 2.2779211217947637, + 2.0745550790102345, + 2.0214647272413453, + 1.9964920853424701, + 2.000852575176608, + 1.9963126120697006, + 1.9974147663996378 + ] + }, + { + "legendgroup": "Beam sensor 1", + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.794598393144694, + 4.006802529994472, + 4.447463297540425, + 5.111496514565832, + 5.396100523576821, + 5.613196197980132, + 5.6593174697231685, + 5.788230351783955, + 6.05036311395665, + 6.849153378600638, + 7.762957844685767, + 8.615287303631332, + 8.957781684609735, + 8.35830797842546, + 7.024706955714454, + 5.179122598109574, + 3.7854334090717483, + 2.641022614794618, + 2.225248550191615, + 2.0572469716135755, + 2.007182303060239, + 2.005825443548572, + 2.001793789629492, + 2.00267582003051 + ] + }, + { + "legendgroup": "Beam sensor 2", + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 2", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.3935431861339245, + 2.652626621461129, + 3.1509667408846997, + 3.8887196453804944, + 4.4619620709729375, + 4.862291907837204, + 4.775618316142517, + 4.266755975925206, + 3.6432292488783906, + 3.1804620367500456, + 3.335249324326946, + 4.422140591141545, + 6.362782149520328, + 8.155740103878497, + 9.546740430963878, + 9.426146994807988, + 8.64771292853549, + 6.570573953570048, + 5.128065711068347, + 3.7431305087916757, + 2.9268984897298744, + 2.4766287477503033, + 2.2656110539544514, + 2.121387467257954 + ] + }, + { + "legendgroup": "Beam sensor 3", + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 3", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.012366744598929, + 2.0736473164052693, + 2.2320828234983763, + 2.6648526542934325, + 3.3075328329125577, + 4.154784623078697, + 4.874705146875558, + 5.021692152651062, + 4.671634607533428, + 3.8501873348849465, + 3.266396938229498, + 3.2328029416584583, + 3.9197060623595643, + 4.915612214498838, + 6.1394139616632515, + 7.016110775439613, + 7.485268147762597, + 7.323188388139022, + 7.02790348186461, + 6.496744589859477, + 5.989518984719937, + 5.706087485013977, + 5.470657114025242, + 5.128381042359218 + ] + }, + { + "legendgroup": "Beam sensor 4", + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 4", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0034643278005198, + 2.03503177506568, + 2.086741386884045, + 2.273634634006135, + 2.654032244985692, + 3.2875412192309295, + 4.016320484607367, + 4.568620045735389, + 4.781698322616699, + 4.725514599783425, + 4.331826904105765, + 4.173161369291443, + 4.372986967965083, + 4.785377791404038, + 5.496571183198965, + 6.096679717395961, + 6.518283171549696, + 6.489843412399393, + 6.525799105020119, + 6.382856640265195, + 6.055487541341745, + 6.063084092112585, + 6.093142602023775, + 6.057337768301912 + ] + }, + { + "legendgroup": "Point sensor 0", + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 1.9981926227116058, + 2.0035967771957224, + 2.007785638574461, + 2.0071369969266817, + 2.003986626306235, + 1.9914278509057126, + 1.9948990374192408, + 1.999463619254624, + 1.9895335332960462, + 2.000685390515423, + 2.00262051522007, + 1.9865144990716013, + 1.9997480894045705, + 2.001462021131961, + 2.017419847595157, + 2.0051022026343825, + 2.0186141677519647, + 2.099198471338621, + 2.256197934175503, + 2.634642140106805, + 3.4639011221589744, + 4.845715404826579, + 7.364531396355585, + 11.265940243979086 + ] + }, + { + "legendgroup": "Point sensor 1", + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.092643660712165, + 7.667834335181266, + 6.343060276778562, + 5.076692625573246, + 3.656419322873028, + 2.807666317663072, + 2.339827196758854, + 2.116577721548318, + 2.028951160874966, + 2.0060044836575006, + 1.9996715214342469, + 1.9950816966568004, + 1.999643963962288, + 2.003385294941852, + 2.002457281161687, + 1.9947135488689347, + 1.9951476258144036, + 1.9992555315645966, + 1.9999807833367864, + 2.001375885801873, + 1.9908725874788058, + 1.9951980718612405, + 2.0005141552597387, + 1.9973940468766096 + ] + } + ], + "layout": { + "annotations": [ + { + "align": "left", + "bgcolor": "#ffffff", + "bordercolor": "#000000", + "borderpad": 10, + "borderwidth": 2, + "font": { + "color": "#000000", + "size": 12 + }, + "opacity": 0.8, + "showarrow": false, + "text": "Point: Real observation
Line: Predicted Value
Shading: Quantiles 10-90", + "x": 1, + "xanchor": "left", + "xref": "paper", + "y": 1.1, + "yanchor": "top", + "yref": "paper" + } + ], + "autosize": true, + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 50 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Observations and Predicted Model Values Against Time" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + "2024-01-01 07:51:11.1402", + "2024-01-01 12:08:48.8598" + ], + "title": { + "standoff": 20, + "text": "Time" + }, + "type": "date" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + 1.4154913576766828, + 11.836963385374005 + ], + "title": { + "standoff": 20, + "text": "Concentration (ppm)" + }, + "type": "linear" + } + } + }, + "image/png": "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e/HFF61+/fp2+umn2xFHHGGbbbZZ5mnr1q2z119/3SoqKmzBggX2gx/8wDp37mxnnnmmtWjRouhbdf9rr71mt956qy1evNg6duxo559//nr3hqYr+sIUJ1i1apU98MAD9tRTT9natWvt2GOPtZNPPtk233zzSqV6//337a677rI5c+a43zt06GC/+93vrG3btkVL7zmPGzfOPvvsM2eHvn372l577WWbbLJJpftD6kfRF6Y8wbvvvmvjx4+3Dz/80HbaaSf7wx/+YLvttlulUn377bf2zDPP2MSJE23p0qW24447OnvoO8llmg9HqN1D06UceZXZD6mTquOy2y233OLsttVWW7lv6be//e1631Ihe0yYMMGeeOIJ9x126tTJ+vXrZ82aNVsveUj9KGV7qGxi9NZbb9mjjz5qZ599trVu3Xq9Ite0fQ+xu14amq6UbfL999+7en/nnXfa8ccf79r2fFdN6q4433777fb888+78cIvfvEL6927tzVo0KDSq2pq91KxU8g3Emq3fExCOYemKxXuVZXjiy++sMcff9y1X3369Mmb9Ouvv7apU6faBx98YBdeeGFQ/6EHqa+mD0lWi4rZQ9+H2hvNRfzY9ZRTTnFtT7169Yq+LLTuh6Yr+kISQCAFBBBPEhrpv//9rw0fPtxatWrlBrzLly93/6+J+FlnnZURUN544w276aabbMCAAU740ERRHc6rr75qI0aMsCZNmlT55unTp7vG7qKLLnLPnjRpkj388MM2cuRIa9OmTebe0HQJi5ma5OJ63XXXmewycOBA++EPf2ijR492k+/Bgwe7CaAuCVh/+tOfrFevXnbwwQe731544QW79957nT00ca/qkhAm1t26dXNi1kMPPeSSX3311ZUmPaH1IzWAq5FRiVOqp/o+xHrmzJk2ZswYV5e7dOninqiB12233WYLFy50dmvYsKE9++yzbuJy3nnnWffu3at8c6jdQ9NVo5ipuSW0TspOEgc12FWb89FHH9moUaNsl112ce2YhOJCl+x5zz33mAZQ7dq1czafNm2aE1AuueSSSoPnkPqRGrjVzOiXX35pc+fOdYLv/Pnz12tH/GNr0r6H2j00XTWLmorbVqxYYe+884797W9/c+286r3qbu5Vk7qrd9x88822ww47WPPmzd33oX7lmGOOsXPOOcc23XRT+vUs4CHfSKjd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AAIQCCBQkuLJ/PnzbdCgQbZ8+fJKCPr06WPHHntsAJaaJ1m7dq299dZb9uijj9rZZ59trVu3rvZDP/vsM7vtttvslVdesc0228y6du1qvXv3tmbNmlV65rp16+y1116zW2+91RYvXmwdO3a0888/31q0aFEpXejzsm/Ss++66y77+OOP7ZJLLrHNN9+82uXhRghAAAIQgAAEIAABCEAAAhCAQJoIlKR4IgN8//339thjjznRYa+99rJhw4ZZgwYNNoptvvzyS5s7d6499dRTJiHn6quvrrZ4snTpUrviiits1113tXbt2tkbb7xhU6dOtR122MEuv/xya9q0aaZM06dPt4qKCrvooousQ4cONmnSJHv44Ydt5MiR1qZNG5cuyfOyYc2cOdM9R4IM4slGqUa8BAIQgAAEIAABCEAAAhCAAAQiIVCy4on4vvnmmzZkyBDr2bOn9e/ff6Mjf+mll+zGG2+skXjy7LPPWsuWLW333Xd3+dcOkCeffNLGjx9vvXr1spNPPtn9rp0m2m3TvXt3O+WUU2yTTTaxFStW2PDhw61hw4bub/Xr17fQ52XDWrBggdtBs3r1alu5ciXiyUavSbwQAhCAAAQgAAEIQAACEIAABOqSAOJJLdKXeDNq1Khqiydr1qwxCTAHHXSQbbrpppmcLlmyxAYOHGidOnXKiEJPPPGE3X777TZ69Gi368Rf2n1z3333uTzsuOOOwc/z90uAueOOO+z444+3hx56yOTyw86TWqw0PBoCEIAABCAAAQhAAAIQgAAEoiNQduJJdlyQf//7306UkAhxwQUXWJMmTWzVqlUuVolEhwMOOMD23Xdfu/76691vcp0ZOnRoJVeZqixaU/Gk0LO/+uoru/DCC+2oo45yMVwkskg0mTNnjl1zzTXOpcdfr7/+unNZkivPYYcdlveRuc/zib777jvnBrTbbrtZly5d3C4axJPovmEyBAEIQAACEIAABCAAAQhAAAK1TKDsxBMJDHJlGTBggO233372wQcf2KWXXupEkr59+zrXlHfeecdGjBhh+++/v4tVor8tWrTICRT6t4KwZu8EKWSj2hJP3nvvPbv22mtdOeTSI1eayy67zAkbY8aMscaNG2ey5F2XTj/99IyLT25+c5+XLbx8/vnnduSRRzo3IMSTWv4aeTwEIAABCEAAAhCAAAQgAAEIREmg7MST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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter.figure_dict[\"fitted_values\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}).show()" ] @@ -490,10 +12486,2471 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "id": "46563585-d29e-4133-85be-810750da7d33", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.777413978543755, + 7.682247616053499, + 8.035447475620815, + 8.200143617223443, + 8.212642950409188, + 8.134197663247132, + 7.826128223868668, + 7.573457251653712, + 7.314612719845881, + 7.109335416599933, + 6.987578640176645, + 6.921220404314102, + 6.482609686247809, + 5.898902787357072, + 4.808216086780574, + 3.475562264686157, + 2.812825395657265, + 2.2829871797844055, + 2.079080534744885, + 2.0125622545615154, + 1.9938348161204429, + 1.9919770056045751, + 1.9917323211370577, + 1.991823465001601 + ] + }, + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgba(102, 197, 204, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.76174717224724, + 7.6658738450458275, + 8.018487290446677, + 8.182043044790293, + 8.194590474533555, + 8.116401357521813, + 7.808494780021966, + 7.555069677274258, + 7.2961469464719775, + 7.090902180702989, + 6.968346237582824, + 6.901538017751563, + 6.463753678616581, + 5.880481694979706, + 4.790763823512455, + 3.458135394190191, + 2.795590501332784, + 2.264556282869633, + 2.0606494316373523, + 1.9934795540775956, + 1.9743391933825163, + 1.9719309747444926, + 1.9709727204202747, + 1.9698993102908897 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(102, 197, 204, 0.3)", + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgba(102, 197, 204, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.792506357183844, + 7.697757193046007, + 8.052110902775365, + 8.217746689636765, + 8.230569583061925, + 8.1519597545976, + 7.844261426766104, + 7.591913084892476, + 7.333460801515409, + 7.128620059119351, + 7.00676339346989, + 6.939984635744579, + 6.50132007197033, + 5.916769412653717, + 4.825808029049151, + 3.4922769302034506, + 2.829973652633411, + 2.3005654632583514, + 2.09699465868502, + 2.030754602448548, + 2.0123233048244913, + 2.011706481334106, + 2.012844818824194, + 2.0142227556587793 + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgb(246, 207, 113)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.7831907670616056, + 4.082585023906236, + 4.585610965486822, + 4.948894309879077, + 5.3625919732893585, + 5.6242652363938115, + 5.687928571069401, + 5.774235182167557, + 6.061940215040801, + 6.587899105589992, + 7.753876703416621, + 8.586174674830911, + 8.992538923906718, + 8.605865084285526, + 7.263161415990802, + 5.045004079031223, + 3.791849490636033, + 2.6811396599091437, + 2.218248508949195, + 2.055747601607164, + 2.0060975497319937, + 2.0003477958219005, + 1.9995844564282628, + 1.9998439901477323 + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgba(246, 207, 113, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.7731208665914537, + 4.070190628117046, + 4.572055471768339, + 4.934287342585001, + 5.347531509180206, + 5.609221344002946, + 5.673122736374901, + 5.7591138091601355, + 6.046363400170655, + 6.571608939625658, + 7.734637583096761, + 8.565116414351545, + 8.970475282472854, + 8.584393570524183, + 7.2442617843933, + 5.0286342507512645, + 3.7759473317776133, + 2.6642732884345124, + 2.2009165652091003, + 2.037875839844712, + 1.9880102812117728, + 1.9818131228839744, + 1.9804088020886428, + 1.9788504242922893 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(246, 207, 113, 0.3)", + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgba(246, 207, 113, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.7936365762299893, + 4.094783530789114, + 4.599744902320219, + 4.963872540335072, + 5.378170252647049, + 5.6397506399719965, + 5.703452172089962, + 5.789650493260195, + 6.077132222947889, + 6.604691456839536, + 7.7728035114065275, + 8.606798728192338, + 9.014511302585142, + 8.627179869669728, + 7.282297992145843, + 5.061256591798069, + 3.807867276178816, + 2.697841716008494, + 2.2354038831728356, + 2.073595337171928, + 2.0249976923280597, + 2.020233142331551, + 2.02019753731482, + 2.021845640459105 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgb(248, 156, 116)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 2", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.3842629123448194, + 2.719512086186568, + 3.271695884514551, + 3.7687769495959813, + 4.458163140681288, + 4.862785801928592, + 4.8075493399457025, + 4.405108169569898, + 3.6732522300096933, + 3.161322830562731, + 3.4103025581683943, + 4.406558280116271, + 6.433232283709787, + 7.87284499787995, + 9.483032060275656, + 9.420993452714844, + 8.701161027025003, + 6.655175631699616, + 5.05534464693009, + 3.85010836319329, + 2.8844742699415287, + 2.5008048194720778, + 2.2537406058749614, + 2.116787010882584 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgba(248, 156, 116, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.376234662476255, + 2.708875693529509, + 3.2594113200816834, + 3.7556152943697008, + 4.443695976826312, + 4.847215566456671, + 4.792088368185933, + 4.390255280581705, + 3.6584863308768627, + 3.147334312574462, + 3.396070933399129, + 4.392191722734618, + 6.417203831075697, + 7.854219828772812, + 9.460655295769739, + 9.39947718846939, + 8.681255646953934, + 6.638839940511681, + 5.040051569423087, + 3.8339648601053953, + 2.8676074202014155, + 2.483268167646932, + 2.234885119289638, + 2.0969241876207927 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(248, 156, 116, 0.3)", + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgba(248, 156, 116, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.392933571461605, + 2.730035761868369, + 3.283586718138565, + 3.7823258592594913, + 4.472993195188744, + 4.8784222449393875, + 4.823633836391889, + 4.420774818991754, + 3.6878558616300716, + 3.1763030002702437, + 3.4248573009663668, + 4.4211838773080805, + 6.449541389433557, + 7.891412484799281, + 9.504574658700442, + 9.44266860757187, + 8.720842747903031, + 6.67147122946742, + 5.070600907833136, + 3.8656750134256024, + 2.901959950885637, + 2.519150110600395, + 2.273207625663766, + 2.138407758735404 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgb(220, 176, 242)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 3", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.015640632287532, + 2.0775357421760106, + 2.281668499093955, + 2.590577254715259, + 3.3178590172764357, + 4.146665506402833, + 4.79752450260502, + 5.034872730264199, + 4.670032875013457, + 3.9446300193722683, + 3.207433166743682, + 3.239502396424019, + 3.9551925287304117, + 4.735683167708814, + 6.048065326340876, + 7.037940238217271, + 7.590068726019778, + 7.29276215317444, + 7.022771884452913, + 6.593952560435129, + 5.915054349618537, + 5.663269935517681, + 5.42879444254398, + 5.13768086608982 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgba(220, 176, 242, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0074617269579984, + 2.067158486790972, + 2.270160935170276, + 2.578413894383557, + 3.30527506285169, + 4.132279824047024, + 4.782030708087574, + 5.019096128212928, + 4.654930436987502, + 3.9300666013161103, + 3.1931544036772985, + 3.2254718360709416, + 3.9415278724995026, + 4.72120260297936, + 6.033144138419112, + 7.021934014009101, + 7.573331903556522, + 7.276290178854289, + 7.006752950939073, + 6.577850557187707, + 5.898654877062911, + 5.6470700505458895, + 5.411844561296723, + 5.118993859324232 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(220, 176, 242, 0.3)", + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgba(220, 176, 242, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0240943048184246, + 2.088049065653544, + 2.2930075367165386, + 2.602874876360185, + 3.331013007822788, + 4.160537387340181, + 4.812425754951611, + 5.050928334651311, + 4.685716131246843, + 3.959312243185096, + 3.2214961589928013, + 3.253625717038416, + 3.96942056844417, + 4.750098097539471, + 6.063260453701407, + 7.05406036859143, + 7.606882856467987, + 7.308886619567647, + 7.039220764614316, + 6.60993190283686, + 5.930518528898162, + 5.679345686479526, + 5.446264917693887, + 5.156441028301548 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgb(135, 197, 95)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Beam sensor 4", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0052070356315514, + 2.0249194005410454, + 2.1064583708514615, + 2.251265820466787, + 2.6643003522735995, + 3.2661975089073616, + 3.954874988761339, + 4.536839124202368, + 4.8710499195145776, + 4.73412747533087, + 4.295763294690807, + 4.1672592099626415, + 4.363454555738274, + 4.713278996853488, + 5.4500651373707, + 6.094213734593328, + 6.579532153765347, + 6.499346451288613, + 6.505778738808332, + 6.380138505695801, + 6.05173132035736, + 6.053771886762469, + 6.096473309032602, + 6.057702628303163 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgba(135, 197, 95, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 1.996895080682777, + 2.0146127651753427, + 2.0947838495671047, + 2.2391974952124585, + 2.652086972671722, + 3.2529139398242997, + 3.9403832971576414, + 4.521813660964053, + 4.855159926137164, + 4.718570372198596, + 4.280154707306009, + 4.152347541332638, + 4.3490697410445796, + 4.698432854403537, + 5.435660207810994, + 6.079788526084825, + 6.564222882147529, + 6.483556028310939, + 6.489785366929569, + 6.36379167986516, + 6.035216708524278, + 6.037107564429907, + 6.078851559574522, + 6.038699939948653 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(135, 197, 95, 0.3)", + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgba(135, 197, 95, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0134998128987323, + 2.0356199870544085, + 2.1177954004013593, + 2.2635994649942996, + 2.6771258446420383, + 3.279159412460179, + 3.968908996012999, + 4.551842404997769, + 4.886781089125853, + 4.749956804109351, + 4.310547297297446, + 4.181909381835842, + 4.377635267244333, + 4.728287819375853, + 5.4654691287197625, + 6.109450971776132, + 6.59519665611077, + 6.514679994319775, + 6.521406212890323, + 6.396150989601384, + 6.0677979185645805, + 6.070885195250195, + 6.114912780169626, + 6.077718043690143 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgb(158, 185, 243)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Point sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.000287454669283, + 1.998847011153417, + 1.9993977494408388, + 2.000031912268298, + 2.0000512311323804, + 2.0003413595480524, + 1.9999770742328682, + 1.9983892223104582, + 1.9970418760035478, + 1.9983539414682607, + 2.0003632972391268, + 2.0009029831188476, + 2.001862805408092, + 2.0031857189276643, + 2.0026783964033665, + 2.0061329940055703, + 2.019950207599825, + 2.0812816512938346, + 2.2523653332453746, + 2.6167041781391465, + 3.4935372341164106, + 4.845185084502411, + 7.37802983347852, + 11.259238366782903 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgba(158, 185, 243, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 1.9920748292247032, + 1.9887694533595324, + 1.9885653934817273, + 1.988502767567105, + 1.9886775871409077, + 1.9887776242486, + 1.988670578832634, + 1.986850492080359, + 1.9851388415528184, + 1.9870316974585598, + 1.988672442440576, + 1.9894054615165089, + 1.9905442040820553, + 1.9911399509483712, + 1.9908326724827534, + 1.9941721865746902, + 2.008458786626908, + 2.0693853814204903, + 2.240751057028548, + 2.6048338415910477, + 3.481188751710039, + 4.830898504831401, + 7.357459085201448, + 11.226232441695709 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(158, 185, 243, 0.3)", + "legendgroup": "Point sensor 0", + "line": { + "color": "rgba(158, 185, 243, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0086410232369785, + 2.009154102057293, + 2.0103144904254653, + 2.0112620663669953, + 2.0116112832664896, + 2.012034063076919, + 2.01183136103228, + 2.0103813144748592, + 2.008389870532708, + 2.010072258881579, + 2.0123040343339538, + 2.012534503667641, + 2.0137034288443045, + 2.0148324973149094, + 2.0145330171078553, + 2.0177532993064276, + 2.0320996462574836, + 2.093105213906087, + 2.264225721936059, + 2.629008421105756, + 3.505905512143047, + 4.859515437187343, + 7.398000999084465, + 11.291085878134517 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgb(254, 136, 177)", + "width": 3 + }, + "mode": "lines", + "name": "Median for Point sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.04564143426174, + 7.718255432593205, + 6.309812526615065, + 5.1386553363256775, + 3.658655289596367, + 2.8128376411840255, + 2.3356339083759847, + 2.1271162766064613, + 2.031049035802394, + 2.006578054176223, + 2.00104160766655, + 2.0010066569250515, + 2.0018124928396683, + 2.003121721626832, + 2.0021818831248925, + 2.0010828271194314, + 1.998680755308444, + 1.999554653339222, + 1.999763511667148, + 1.9991432087918133, + 1.9990074673108857, + 1.9993047583751804, + 1.9994096648910216, + 1.9996547506665356 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgba(254, 136, 177, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "10% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.023022614848573, + 7.699117874228742, + 6.29419353942124, + 5.125261669150252, + 3.647174198079254, + 2.801451199328385, + 2.3246152799404047, + 2.1156124907999363, + 2.0191354624638502, + 1.995195547904172, + 1.9895088943513597, + 1.989314425749959, + 1.9904669597479596, + 1.9911059951198784, + 1.9901846187479362, + 1.9890138741694152, + 1.9871281638793903, + 1.9874996774277518, + 1.9878076426237774, + 1.9869626395171542, + 1.985766790581137, + 1.985338971542492, + 1.984291904781224, + 1.982933660102998 + ] + }, + { + "fill": "tonexty", + "fillcolor": "rgba(254, 136, 177, 0.3)", + "legendgroup": "Point sensor 1", + "line": { + "color": "rgba(254, 136, 177, 0.3)", + "width": 0 + }, + "mode": "lines", + "name": "90% quantile", + "showlegend": false, + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.06806866120696, + 7.736362233721338, + 6.3250478164359585, + 5.152738443234237, + 3.6704806522831674, + 2.8242256197783866, + 2.3476520492507142, + 2.1391695882518014, + 2.042473243563558, + 2.018358647155963, + 2.0130504500552884, + 2.0127998943505414, + 2.013766489437985, + 2.0147745498273055, + 2.014140071876861, + 2.012742677119394, + 2.0106311631080422, + 2.011554143172989, + 2.011924766258054, + 2.011575204171482, + 2.0120102002449993, + 2.0131914577713976, + 2.0148476008960645, + 2.0166727047726583 + ] + }, + { + "legendgroup": "Beam sensor 0", + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 7.791714050564657, + 7.718237540043255, + 8.031656486135207, + 8.223226698536852, + 8.218807731163079, + 8.185643574955071, + 7.794624234656219, + 7.620110694793409, + 7.275749372954192, + 7.029489247478757, + 7.005447146729908, + 6.950554849446046, + 6.5952572736008435, + 5.670722904331665, + 4.633219256004186, + 3.539441897942694, + 2.8161757615155705, + 2.2779211217947637, + 2.0745550790102345, + 2.0214647272413453, + 1.9964920853424701, + 2.000852575176608, + 1.9963126120697006, + 1.9974147663996378 + ] + }, + { + "legendgroup": "Beam sensor 1", + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 3.794598393144694, + 4.006802529994472, + 4.447463297540425, + 5.111496514565832, + 5.396100523576821, + 5.613196197980132, + 5.6593174697231685, + 5.788230351783955, + 6.05036311395665, + 6.849153378600638, + 7.762957844685767, + 8.615287303631332, + 8.957781684609735, + 8.35830797842546, + 7.024706955714454, + 5.179122598109574, + 3.7854334090717483, + 2.641022614794618, + 2.225248550191615, + 2.0572469716135755, + 2.007182303060239, + 2.005825443548572, + 2.001793789629492, + 2.00267582003051 + ] + }, + { + "legendgroup": "Beam sensor 2", + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 2", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.3935431861339245, + 2.652626621461129, + 3.1509667408846997, + 3.8887196453804944, + 4.4619620709729375, + 4.862291907837204, + 4.775618316142517, + 4.266755975925206, + 3.6432292488783906, + 3.1804620367500456, + 3.335249324326946, + 4.422140591141545, + 6.362782149520328, + 8.155740103878497, + 9.546740430963878, + 9.426146994807988, + 8.64771292853549, + 6.570573953570048, + 5.128065711068347, + 3.7431305087916757, + 2.9268984897298744, + 2.4766287477503033, + 2.2656110539544514, + 2.121387467257954 + ] + }, + { + "legendgroup": "Beam sensor 3", + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 3", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.012366744598929, + 2.0736473164052693, + 2.2320828234983763, + 2.6648526542934325, + 3.3075328329125577, + 4.154784623078697, + 4.874705146875558, + 5.021692152651062, + 4.671634607533428, + 3.8501873348849465, + 3.266396938229498, + 3.2328029416584583, + 3.9197060623595643, + 4.915612214498838, + 6.1394139616632515, + 7.016110775439613, + 7.485268147762597, + 7.323188388139022, + 7.02790348186461, + 6.496744589859477, + 5.989518984719937, + 5.706087485013977, + 5.470657114025242, + 5.128381042359218 + ] + }, + { + "legendgroup": "Beam sensor 4", + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Beam sensor 4", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 2.0034643278005198, + 2.03503177506568, + 2.086741386884045, + 2.273634634006135, + 2.654032244985692, + 3.2875412192309295, + 4.016320484607367, + 4.568620045735389, + 4.781698322616699, + 4.725514599783425, + 4.331826904105765, + 4.173161369291443, + 4.372986967965083, + 4.785377791404038, + 5.496571183198965, + 6.096679717395961, + 6.518283171549696, + 6.489843412399393, + 6.525799105020119, + 6.382856640265195, + 6.055487541341745, + 6.063084092112585, + 6.093142602023775, + 6.057337768301912 + ] + }, + { + "legendgroup": "Point sensor 0", + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 0", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 1.9981926227116058, + 2.0035967771957224, + 2.007785638574461, + 2.0071369969266817, + 2.003986626306235, + 1.9914278509057126, + 1.9948990374192408, + 1.999463619254624, + 1.9895335332960462, + 2.000685390515423, + 2.00262051522007, + 1.9865144990716013, + 1.9997480894045705, + 2.001462021131961, + 2.017419847595157, + 2.0051022026343825, + 2.0186141677519647, + 2.099198471338621, + 2.256197934175503, + 2.634642140106805, + 3.4639011221589744, + 4.845715404826579, + 7.364531396355585, + 11.265940243979086 + ] + }, + { + "legendgroup": "Point sensor 1", + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 1, + "size": 5 + }, + "mode": "markers", + "name": "Point sensor 1", + "type": "scatter", + "x": [ + "2024-01-01T08:05:00.000000000", + "2024-01-01T08:15:00.000000000", + "2024-01-01T08:25:00.000000000", + "2024-01-01T08:35:00.000000000", + "2024-01-01T08:45:00.000000000", + "2024-01-01T08:55:00.000000000", + "2024-01-01T09:05:00.000000000", + "2024-01-01T09:15:00.000000000", + "2024-01-01T09:25:00.000000000", + "2024-01-01T09:35:00.000000000", + "2024-01-01T09:45:00.000000000", + "2024-01-01T09:55:00.000000000", + "2024-01-01T10:05:00.000000000", + "2024-01-01T10:15:00.000000000", + "2024-01-01T10:25:00.000000000", + "2024-01-01T10:35:00.000000000", + "2024-01-01T10:45:00.000000000", + "2024-01-01T10:55:00.000000000", + "2024-01-01T11:05:00.000000000", + "2024-01-01T11:15:00.000000000", + "2024-01-01T11:25:00.000000000", + "2024-01-01T11:35:00.000000000", + "2024-01-01T11:45:00.000000000", + "2024-01-01T11:55:00.000000000" + ], + "y": [ + 9.092643660712165, + 7.667834335181266, + 6.343060276778562, + 5.076692625573246, + 3.656419322873028, + 2.807666317663072, + 2.339827196758854, + 2.116577721548318, + 2.028951160874966, + 2.0060044836575006, + 1.9996715214342469, + 1.9950816966568004, + 1.999643963962288, + 2.003385294941852, + 2.002457281161687, + 1.9947135488689347, + 1.9951476258144036, + 1.9992555315645966, + 1.9999807833367864, + 2.001375885801873, + 1.9908725874788058, + 1.9951980718612405, + 2.0005141552597387, + 1.9973940468766096 + ] + } + ], + "layout": { + "annotations": [ + { + "align": "left", + "bgcolor": "#ffffff", + "bordercolor": "#000000", + "borderpad": 10, + "borderwidth": 2, + "font": { + "color": "#000000", + "size": 12 + }, + "opacity": 0.8, + "showarrow": false, + "text": "Point: Real observation
Line: Predicted Value
Shading: Quantiles 10-90", + "x": 1, + "xanchor": "left", + "xref": "paper", + "y": 1.1, + "yanchor": "top", + "yref": "paper" + } + ], + "autosize": true, + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 50 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Observations and Predicted Model Values Against Time" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + "2024-01-01 07:51:11.1402", + "2024-01-01 12:08:48.8598" + ], + "title": { + "standoff": 20, + "text": "Time" + }, + "type": "date" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + 1.4154913576766828, + 11.836963385374005 + ], + "title": { + "standoff": 20, + "text": "Concentration (ppm)" + }, + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAMgCAYAAADSp0wWAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQe4HkW9/3/vacnJSYGESO/SAwQB6VIDKChdUQSxcq/KRUVF/5aLV71WFC9FsQMKiihdkRB6qKGXQCDUEFoS0k5Of/f/fPcwYbLZfXd233d3f+/Z7z5PniTnzM7Mfr+zuzOf/c1MxfM8T3hQASpABagAFaACVIAKUAEqQAWoABXISYGdd97ZL+n+++9PVOJvfvMbefjhh+V73/ueLF68WL7+9a/L9ttvL1/60pdk9OjRoXn961//kgcffLBmGnPi3XffLVtvvbWsscYakfV66KGH5J///KefH46f/exn/t+16hCVGeo2b948+fSnP+2kA9LjeO973+uUvtGJrrjiCtl///1r6tPoMl3zS9umXPOvEJ64SsV0VIAKUAEqQAWoABWgAlSAClABKtAIBdIOdG14gnp885vf9KsDmFILeLjU+fnnn5df//rX8tWvftUZngDYAKb89re/TVWHZoIngFXnn3++fPazn61baxc/kqZJ26ZcyyE8cVWK6agAFaACVIAKUAEqQAWoABWgAlSgIQqkHejWijx59dVX/UiUOXPmyDHHHONHgjz55JPyyU9+UvbYYw8fivz4xz+WhQsXynHHHSff//73V6azz91yyy3lBz/4gUyfPt2/1mBUiB150tvb6wOcHXfccWU6QAb87K677pL/+I//8H+OdIhQ+fvf/y4m/0022USi4ImdB+pu4BDSL1q0yM8bf373u9/J1KlT/XwuuugiOeWUU/w677fffgIYZPTA+euuu66vxUknnSSIsNl3330Fepr6oEz83k6LvHAN0MtcE9Kfeuqpcs4558gBBxzgX19YfVE+8vvGN77h+4BrN/VtSCMKZJK2TbnWhfDEVSmmowJUgApQASpABagAFaACVIAKUIGGKJB2oIvB/q9+9auVdTCQBD8AnJg8efLKgb4BGjZwAXAABAAQ2GCDDXzgAFCCqJULL7xQnn766dgIEsATQAFz2EAAkOSCCy6QI444QtZZZx2/Tu973/v8pPfdd58PGuypN1Hw5M9//rPstddeYgCLmXZ08803y3XXXefXEXACES/f+ta3ZObMmT7IQGTITjvt5MMiEyWCsgGNPvOZz8js2bNXmcIUnAaEa8O0JXMN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CoGKE0+002LmzJl2/fXX289//nPnknLHHXfYuuuuG714IhcaHT2sE3Y22WSTXAXxMU/kgiR3npYtW+b+poCz2llTKOZJsed5V5+aamBDnWC0Vr4KXgIBCEAAAhCAAAQgAAEIQAACEEgQqAjxRK4n2kWha9q0ae5UGsU0adeuXY1uOzHtPNGuEgWxPfzww11g2/xLu1HuvPNOu/zyy619+/a5P48fP94effTR1U78qel5X3zxhb377rurvWPixInORah3797WqlUr22677fiYIAABCEAAAhCAAAQgAAEIQAACZU+gIsQTubR07949dyqN3FwUJHaDDTbIhHgioeP+++9fzY0mWTvnz59v5513njuB5+ijj3Z/UjkVVLZp06Y2ePDgXOySkOcVqvm47ZR9e0ABIQABCEAAAhCAAAQgAAEIQKAAgbIST3S0rnaVaHeJTp/xbikjRoxwuzXksjNmzBibOnWqnXHGGdahQwf378mTJ7udFCeccIJtttlm9s0339j5559vu+66q3N3UcDUxYsXOyHi888/t5EjR7pgszVdCix777332rhx45yosf/++7vgrv6Sa4yC1urEn9NPP93WX3/9go9btGiROyq5a9eutvnmm+fS6PlvvPGGE4U6duzoyvb44487kUVl32abbdyOkwkTJpjK37ZtW3dv6PMQT2gvIAABCEAAAhCAAAQgAAEIQAAC/0+grMQTFej55593YoMEEAWBlUjSokWLnL0lqEi0mDNnju2+++7ueOJJkyaZXFJOOeUUJ7IMGTIkl15HAffv398JJhJQdG288carucEkK9TcuXPdTg+fXn/bbbfdqp3SI4HnhhtucKKJ3icBJP+S0DF06FB38k2hS0cpS+Txp+FIUHnmmWesqqrKiSTdunWzvn37OmHICydpnpf/Tnae0GxAAAIQgAAEIAABCEAAAhCAQCUSKDvxJGtG1M6QbbfdtqB4krWykF8IQAACEIAABCAAAQhAAAIQgEA5EkA8aUCraheMAr326dOnqNtOA2aPV0MAAhCAAAQgAAEIQAACEIAABCBQjm47WbHqrFmzbN68edajRw+Ek6wYjXxCAAIQgAAEIAABCEAAAhCAQEUSYOdJRZqdQkMAAhCAAAQgAAEIQAACEIAABCAQSgDxJJQU6SAAAQhAAAIQgAAEIAABCEAAAhCoSAKIJxVpdgoN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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter = elq_model.plot_fitted_values(plot=plotter)\n", "plotter.figure_dict[\"fitted_values\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}).show()" @@ -501,10 +14958,1201 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "id": "6bd52d03-4af7-4726-b3be-ec140bd0b2db", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "showlegend": true, + "type": "scattermapbox" + }, + { + "colorbar": { + "orientation": "h", + "title": { + "text": "Normalized Count" + } + }, + "colorscale": [ + [ + 0, + "rgb(0,0,255)" + ], + [ + 1, + "rgb(255,0,0)" + ] + ], + "featureidkey": "id_value", + "geojson": { + "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + 9.9e-05, + 0.000181 + ], + [ + 9.9e-05, + 0.00019 + ], + [ + 9e-05, + 0.00019 + ], + [ + 9e-05, + 0.000181 + ], + [ + 9.9e-05, + 0.000181 + ] + ] + ], + "type": "Polygon" + }, + "id_value": 0, + "properties": {}, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.000189, + 0.000136 + ], + [ + 0.000189, + 0.000145 + ], + [ + 0.00018, + 0.000145 + ], + [ + 0.00018, + 0.000136 + ], + [ + 0.000189, + 0.000136 + ] + ] + ], + "type": "Polygon" + }, + "id_value": 1, + "properties": {}, + "type": "Feature" + } + ], + "type": "FeatureCollection" + }, + "hoverinfo": "text", + "locations": [ + 0, + 1 + ], + "marker": { + "line": { + "width": 0 + }, + "opacity": 0.8 + }, + "name": "normalized_count", + "showlegend": true, + "text": [ + "Polygon ID: 0
Center (lon, lat): (0.0001, 0.0002)
Value: 1.000000
", + "Polygon ID: 1
Center (lon, lat): (0.0002, 0.0001)
Value: 1.000000
" + ], + "type": "choroplethmapbox", + "z": [ + 1, + 1 + ] + }, + { + "lat": [ + 0, + 0 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00026949437396969116 + ], + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 0", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00010382608273934404 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.000248980336237809 + ], + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 1", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00019184558556765 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00019056129932629466 + ], + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 2", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00025065833707803124 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.0001031310320344517 + ], + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 3", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00027131062899166537 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 1.6501771123631796e-20 + ], + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 4", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0.00019896125354572274 + ], + "line": { + "width": 3 + }, + "lon": [ + 4.491575716382319e-05 + ], + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 0", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 4.521846671490127e-05 + ], + "line": { + "width": 3 + }, + "lon": [ + 0.0001796630286547407 + ], + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 1", + "showlegend": true, + "type": "scattermapbox" + }, + { + "hoverinfo": "text", + "lat": [ + 0.00018087383831017834, + 0.00013565535732018927 + ], + "lon": [ + 8.983150024330824e-05, + 0.00017966297231761778 + ], + "marker": { + "color": "black", + "size": 14 + }, + "mode": "markers", + "name": "Summary", + "showlegend": true, + "text": [ + "Source ID: 0
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0000898, 0.0001809, 2.000)
Height: 2.000 [m]
Median emission rate: 14.9978 [kg/hr]
2.5% quantile: 14.902 [kg/hr]
97.5% quantile: 15.090 [kg/hr]
IQR: 0.0631 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
", + "Source ID: 1
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0001797, 0.0001357, 3.000)
Height: 3.000 [m]
Median emission rate: 9.9506 [kg/hr]
2.5% quantile: 9.902 [kg/hr]
97.5% quantile: 9.994 [kg/hr]
IQR: 0.0314 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
" + ], + "type": "scattermapbox" + }, + { + "lat": [ + 0.00018087383831017834, + 0.00013565535732018927 + ], + "lon": [ + 8.983150024330824e-05, + 0.00017966297231761778 + ], + "marker": { + "color": "green", + "size": 10 + }, + "mode": "markers", + "name": "True locations", + "showlegend": true, + "type": "scattermapbox", + "visible": "legendonly" + } + ], + "layout": { + "autosize": true, + "font": { + "family": "Futura", + "size": 15 + }, + "mapbox": { + "accesstoken": "empty", + "bearing": 0, + "center": { + "lat": 0.0001408600876118271, + "lon": 4.649030938708165e-05 + }, + "pitch": 0, + "style": "carto-positron", + "zoom": 19.806783362277656 + }, + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 50 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Source location probability (>=0.1) for 01-Jan-2024, 08:05:00 to 01-Jan-2024, 11:55:00" + } + } + }, + "image/png": "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yntIPJ6ly/9E7VrVIYGOE+GQ4LPbd+1G106Hc7KbCB3KNpAACZAACZAACZAACSQdAYonSdflbDAJkAAJkAAJkAAJkAAJkAAJkAAJkIAdAhRP7NBiWRIgARIgARIgARIgARIgARIgARIggaQjQPEk6bqcDSYBEiABEiABEiABEiABEiABEiABErBDgOKJHVosSwIkQAIkQAIkQAIkQAIkQAIkQAIkkHQEKJ4kXZezwSRAAiRAAiRAAiRAAiRAAiRAAiRAAnYIUDyxQ4tlSYAESIAESIAESIAESIAESIAESIAEko4AxZOk63I2mARIgARIgARIgARIgARIgARIgARIwA4Biid2aLEsCZAACZAACZAACZAACZAACZAACZBA0hGgeJJ0Xc4GkwAJkAAJkAAJkAAJkAAJkAAJkAAJ2CFA8cQOLZYlARIgARIgARIgARIgARIgARIgARJIOgIUT5Kuy9lgEiABEiABEiABEiABEiABEiABEiABOwQontihxbIkQAIkQAIkQAIkQAIkQAIkQAIkQAJJR4DiSdJ1ORtMAiRAAiRAAiRAAiRAAiRAAiRAAiRghwDFEzu0WJYESIAESIAESIAESIAESIAESIAESCDpCFA8SbouZ4NJgARIgARIgARIgARIgARIgARIgATsEKB4YocWy5IACZAACZAACZAACZAACZAACZAACSQdAYonSdflbDAJkAAJkAAJkAAJkAAJkAAJkAAJkIAdAhRP7NBiWRIgARIgARIgARIgARIgARIgARIggaQjQPEk6bqcDSYBEiABEiABEiABEiABEiABEiABErBDgOKJHVosSwIkQAIkQAIkQAIkQAIkQAIkQAIkkHQEKJ4kXZdXboN37dqF8ePHIzu7Ytd1qNM9FTNSiWc74qiudrDEXz/E17ix2hfsB6ukIl8unu71eBs39nrPg5L2xccRT+PGHtH46gf5roincWO9L+KtXfFWX+s9EV/3esX74byrrsJ5551nHRBLkkCcEaB4EmcdFm/V3bJlC4YNG4ZPPrlHfaB4DB8qpR/yJX8x+3v5y4u9Urul3EoFGN/rVVZ5t0+9pDa+H266fro+FS1f+iIsaa++nv5f/vYrq3xJ+6R/nab18h8PFS0fqn/97Ve8vP/4KiFvbJf8O1D/6v4Jd/lE7V//cR1q/PhyKPt88O3/kudQsOeJ2fgpEe6M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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter.figure_dict[\"count_map\"].add_trace(true_source_location_trace).update_traces(showlegend=True)\n", "plotter.figure_dict[\"count_map\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}, mapbox_zoom=19)\n", @@ -513,10 +16161,1198 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "id": "e0577aa7-6560-4bff-bb8a-25146eca36ff", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "showlegend": true, + "type": "scattermapbox" + }, + { + "colorbar": { + "orientation": "h", + "title": { + "text": "IQR" + } + }, + "colorscale": [ + [ + 0, + "rgb(0,0,255)" + ], + [ + 1, + "rgb(255,0,0)" + ] + ], + "featureidkey": "id_value", + "geojson": { + "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + 9.9e-05, + 0.000181 + ], + [ + 9.9e-05, + 0.00019 + ], + [ + 9e-05, + 0.00019 + ], + [ + 9e-05, + 0.000181 + ], + [ + 9.9e-05, + 0.000181 + ] + ] + ], + "type": "Polygon" + }, + "id_value": 0, + "properties": {}, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.000189, + 0.000136 + ], + [ + 0.000189, + 0.000145 + ], + [ + 0.00018, + 0.000145 + ], + [ + 0.00018, + 0.000136 + ], + [ + 0.000189, + 0.000136 + ] + ] + ], + "type": "Polygon" + }, + "id_value": 1, + "properties": {}, + "type": "Feature" + } + ], + "type": "FeatureCollection" + }, + "hoverinfo": "text", + "locations": [ + 0, + 1 + ], + "marker": { + "line": { + "width": 0 + }, + "opacity": 0.8 + }, + "name": "iqr_emission", + "showlegend": true, + "text": [ + "Polygon ID: 0
Center (lon, lat): (0.0001, 0.0002)
Value: 0.063108
", + "Polygon ID: 1
Center (lon, lat): (0.0002, 0.0001)
Value: 0.031367
" + ], + "type": "choroplethmapbox", + "z": [ + 0.06310844945419625, + 0.03136741477453242 + ] + }, + { + "lat": [ + 0, + 0 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00026949437396969116 + ], + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 0", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00010382608273934404 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.000248980336237809 + ], + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 1", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00019184558556765 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00019056129932629466 + ], + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 2", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00025065833707803124 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.0001031310320344517 + ], + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 3", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00027131062899166537 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 1.6501771123631796e-20 + ], + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 4", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0.00019896125354572274 + ], + "line": { + "width": 3 + }, + "lon": [ + 4.491575716382319e-05 + ], + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 0", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 4.521846671490127e-05 + ], + "line": { + "width": 3 + }, + "lon": [ + 0.0001796630286547407 + ], + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 1", + "showlegend": true, + "type": "scattermapbox" + }, + { + "hoverinfo": "text", + "lat": [ + 0.00018087383831017834, + 0.00013565535732018927 + ], + "lon": [ + 8.983150024330824e-05, + 0.00017966297231761778 + ], + "marker": { + "color": "black", + "size": 14 + }, + "mode": "markers", + "name": "Summary", + "showlegend": true, + "text": [ + "Source ID: 0
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0000898, 0.0001809, 2.000)
Height: 2.000 [m]
Median emission rate: 14.9978 [kg/hr]
2.5% quantile: 14.902 [kg/hr]
97.5% quantile: 15.090 [kg/hr]
IQR: 0.0631 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
", + "Source ID: 1
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0001797, 0.0001357, 3.000)
Height: 3.000 [m]
Median emission rate: 9.9506 [kg/hr]
2.5% quantile: 9.902 [kg/hr]
97.5% quantile: 9.994 [kg/hr]
IQR: 0.0314 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
" + ], + "type": "scattermapbox" + }, + { + "lat": [ + 0.00018087383831017834, + 0.00013565535732018927 + ], + "lon": [ + 8.983150024330824e-05, + 0.00017966297231761778 + ], + "marker": { + "color": "green", + "size": 10 + }, + "mode": "markers", + "name": "True locations", + "showlegend": true, + "type": "scattermapbox" + } + ], + "layout": { + "autosize": true, + "font": { + "family": "Futura", + "size": 15 + }, + "mapbox": { + "accesstoken": "empty", + "center": { + "lat": 0, + "lon": 0 + }, + "style": "carto-positron", + "zoom": 19 + }, + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 50 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Inter Quartile range (25%-75%) of emission rate estimate for 01-Jan-2024, 08:05:00 to 01-Jan-2024, 11:55:00" + } + } + }, + "image/png": "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AAECBAgQIECAAAECTQHhiXnIISA8yaFsDwIECBAgQIAAAQIECBBIIiA8ScJq0ZaA8MRIECBAgAABAgQIECBAgECxAsKTYltXVOHCk6LapVgCBAgQIECAAAECBAgQaAoIT8xDDgHhSQ5lexAgQIAAAQIECBAgQIBAEgHhSRJWi7YEhCdGggABAgQIECBAgAABAgSKFRCeFNu6ogoXnhTVLsUSIECAAAECBAgQIECAQFNAeGIecggIT3Io24MAAQIECBAgQIAAAQIEkggIT5KwWrQlIDwxEgQIECBAgAABAgQyCNx8+FCGXWxBYPcJHD1yePddtCvOLiA8yU5uQwIECBAgQIAAgd0m0Ol04q5jt+22y3a9BLII7N2zJ8s+NtndAsKT3d1/V0+AAAECBAgQIJBBYKPw5C/+4i/iDa9//WoVb37zm+N9739/7FnnC+HCwkK84+1vj49+9KP173zvG94QH/3t344jR45s6UoeeOCB+NX3vCd+/QMf2PLvvu+9741f+eVfXt2v2v9f/OAPrrv/9ap5Kxf433/v9+LNP/Zja9ZY/d3x48fjHT//81tZcsPPVib33HNP7TD2+eNPfSpe85rXrP7euNe/8Iu/eF33vl4XsdFMNP+u+u+/97GPbTin7ZrOnDkTP/O2t8U73/WueMlLXnK9Sq7XEZ5cV06LrSMgPDEaBAgQIECAAAECBBILrBeeVF/i//wzn7niS2j1BfvX3ve+NQORcQhx2+23r3753ujzG13WtYQn4/2/+7WvvSIsqcKC6metMKL60lyFGD/0Qz+0+jtVzW9761vjd373d6/7F+mqjsr14x//+Kphu4Yc4cn9998f99133xUmldNaf554/Da9/GZnouqf8GTTrD64QwSEJzukkS6DAAECBAgQIEBg+wqsFZ5UX1R/93d+J971C78Q/+VDH6pPcrzila+sA4Xqy/7/+ZM/eU4YsV5Q0jz10D7JMj79UP159bknn3wyXvmKV8TJkyfj05/+9OrJlWrPH/2RH4m//fKX1z3NUoUO1U912qUKRD75x38c45My1TX8o+/5nitOWoyDjLVOeTQDjKquffv2xSc/+cl6zebJjPaplfH1jL/oH5ibWz2FM/67tcKccVD1z970pvgn3//99XVU+/zzN70p/t3P/mz9z5snvt0AAAdlSURBVFWfqlM0G1k0T92MT9w0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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter.figure_dict[\"iqr_map\"].add_trace(true_source_location_trace).update_traces(showlegend=True)\n", "plotter.figure_dict[\"iqr_map\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}, mapbox_zoom=19)\n", @@ -525,10 +17361,1198 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 24, "id": "458e0125-e64f-45a4-ba6d-c1a07f9d43ea", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "showlegend": true, + "type": "scattermapbox" + }, + { + "colorbar": { + "orientation": "h", + "title": { + "text": "Median Emission" + } + }, + "colorscale": [ + [ + 0, + "rgb(0,0,255)" + ], + [ + 1, + "rgb(255,0,0)" + ] + ], + "featureidkey": "id_value", + "geojson": { + "features": [ + { + "geometry": { + "coordinates": [ + [ + [ + 9.9e-05, + 0.000181 + ], + [ + 9.9e-05, + 0.00019 + ], + [ + 9e-05, + 0.00019 + ], + [ + 9e-05, + 0.000181 + ], + [ + 9.9e-05, + 0.000181 + ] + ] + ], + "type": "Polygon" + }, + "id_value": 0, + "properties": {}, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + 0.000189, + 0.000136 + ], + [ + 0.000189, + 0.000145 + ], + [ + 0.00018, + 0.000145 + ], + [ + 0.00018, + 0.000136 + ], + [ + 0.000189, + 0.000136 + ] + ] + ], + "type": "Polygon" + }, + "id_value": 1, + "properties": {}, + "type": "Feature" + } + ], + "type": "FeatureCollection" + }, + "hoverinfo": "text", + "locations": [ + 0, + 1 + ], + "marker": { + "line": { + "width": 0 + }, + "opacity": 0.8 + }, + "name": "median_emission", + "showlegend": true, + "text": [ + "Polygon ID: 0
Center (lon, lat): (0.0001, 0.0002)
Value: 14.997813
", + "Polygon ID: 1
Center (lon, lat): (0.0002, 0.0001)
Value: 9.950584
" + ], + "type": "choroplethmapbox", + "z": [ + 14.997813267414728, + 9.950583716648215 + ] + }, + { + "lat": [ + 0, + 0 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00026949437396969116 + ], + "marker": { + "color": "rgb(102, 197, 204)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 0", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00010382608273934404 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.000248980336237809 + ], + "marker": { + "color": "rgb(246, 207, 113)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 1", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00019184558556765 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.00019056129932629466 + ], + "marker": { + "color": "rgb(248, 156, 116)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 2", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00025065833707803124 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 0.0001031310320344517 + ], + "marker": { + "color": "rgb(220, 176, 242)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 3", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0, + 0.00027131062899166537 + ], + "line": { + "width": 3 + }, + "lon": [ + 0, + 1.6501771123631796e-20 + ], + "marker": { + "color": "rgb(135, 197, 95)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Beam sensor 4", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 0.00019896125354572274 + ], + "line": { + "width": 3 + }, + "lon": [ + 4.491575716382319e-05 + ], + "marker": { + "color": "rgb(158, 185, 243)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 0", + "showlegend": true, + "type": "scattermapbox" + }, + { + "lat": [ + 4.521846671490127e-05 + ], + "line": { + "width": 3 + }, + "lon": [ + 0.0001796630286547407 + ], + "marker": { + "color": "rgb(254, 136, 177)", + "opacity": 0.8, + "size": 10 + }, + "mode": "markers+lines", + "name": "Point sensor 1", + "showlegend": true, + "type": "scattermapbox" + }, + { + "hoverinfo": "text", + "lat": [ + 0.00018087383831017834, + 0.00013565535732018927 + ], + "lon": [ + 8.983150024330824e-05, + 0.00017966297231761778 + ], + "marker": { + "color": "black", + "size": 14 + }, + "mode": "markers", + "name": "Summary", + "showlegend": true, + "text": [ + "Source ID: 0
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0000898, 0.0001809, 2.000)
Height: 2.000 [m]
Median emission rate: 14.9978 [kg/hr]
2.5% quantile: 14.902 [kg/hr]
97.5% quantile: 15.090 [kg/hr]
IQR: 0.0631 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
", + "Source ID: 1
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0001797, 0.0001357, 3.000)
Height: 3.000 [m]
Median emission rate: 9.9506 [kg/hr]
2.5% quantile: 9.902 [kg/hr]
97.5% quantile: 9.994 [kg/hr]
IQR: 0.0314 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
" + ], + "type": "scattermapbox" + }, + { + "lat": [ + 0.00018087383831017834, + 0.00013565535732018927 + ], + "lon": [ + 8.983150024330824e-05, + 0.00017966297231761778 + ], + "marker": { + "color": "green", + "size": 10 + }, + "mode": "markers", + "name": "True locations", + "showlegend": true, + "type": "scattermapbox" + } + ], + "layout": { + "autosize": true, + "font": { + "family": "Futura", + "size": 15 + }, + "mapbox": { + "accesstoken": "empty", + "center": { + "lat": 0, + "lon": 0 + }, + "style": "carto-positron", + "zoom": 19 + }, + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 50 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Median emission rate estimate for 01-Jan-2024, 08:05:00 to 01-Jan-2024, 11:55:00" + } + } + }, + "image/png": "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RiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wCI017AAAgAElEQVQUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQn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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter.figure_dict[\"median_map\"].add_trace(true_source_location_trace).update_traces(showlegend=True)\n", "plotter.figure_dict[\"median_map\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}, mapbox_zoom=19)\n", @@ -537,10 +18561,10725 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "id": "4b3ddc5e-d0f1-4570-a37d-5399249b85d0", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Log Posterior", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Log Posterior", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + -7150.631897993312, + 986.6796359280617, + 1115.9407687637777, + 1149.3684222329623, + 1164.4498737922481, + 1159.9790371016798, + 1142.1212731691944, + 1164.4597589938976, + 1150.7454876206732, + 1159.0616364189448, + 1147.3607470311576, + 1146.0973664640353, + 1155.7854420651045, + 1148.6715878380417, + 1148.7710144257583, + 1134.8317818002304, + 1169.66895600269, + 1145.046958388386, + 1165.8150811520982, + 1131.4038490902192, + 1159.7942185140837, + 1145.9511792169205, + 1168.504593361149, + 1154.3283615359053, + 1150.0548349113787, + 1161.1121614909835, + 1144.1196365307421, + 1153.3258053488992, + 1140.6996518446324, + 1136.9131508322691, + 1142.4983957896181, + 1134.7134794965498, + 1143.960318651711, + 1148.11117415432, + 1138.3333125109089, + 1149.2045532824513, + 1135.2745511753774, + 1152.0482283733218, + 1157.6474831655078, + 1133.757640333564, + 1160.6146685177978, + 1155.7481372746995, + 1154.8731830082684, + 1159.866562561771, + 1131.7437924764763, + 1138.0788352601699, + 1146.878910185488, + 1149.1559640821972, + 1132.129159016179, + 1167.263922600478, + 1150.1783117985715, + 1157.5773149751963, + 1148.246404849831, + 1149.3201775112204, + 1141.2243483792959, + 1154.2559048262344, + 1128.1285380737777, + 1156.024066509102, + 1148.1845322167771, + 1152.109023694306, + 1167.1078181605346, + 1131.5681829865696, + 1137.5411421564363, + 1150.0692273696634, + 1160.052627823417, + 1159.103846709992, + 1155.5733702646144, + 1136.0191467618642, + 1159.0448379142115, + 1162.792342743249, + 1159.9743289339067, + 1163.5039825932913, + 1146.64136943185, + 1146.391719961819, + 1148.566034240243, + 1152.4895358426263, + 1153.2680847665279, + 1133.7707401375094, + 1158.803479312247, + 1136.6825952935965, + 1135.662228748901, + 1159.3885594183312, + 1147.108956811786, + 1156.2865004885853, + 1124.3398663993064, + 1151.7620058133386, + 1144.6232957301363, + 1160.281207043417, + 1146.0447315173153, + 1149.079768842337, + 1147.3453606992994, + 1148.0985025967543, + 1149.787972370644, + 1151.7690392502013, + 1157.1711106462556, + 1155.650122875767, + 1143.5855718820847, + 1175.5709557025157, + 1157.2380754209912, + 1158.6300445381496, + 1154.4036523662558, + 1155.7977695705313, + 1161.0539330684326, + 1152.8781093484004, + 1145.8646832153947, + 1157.3449747780485, + 1151.9869709519796, + 1165.6760698034627, + 1144.121728544085, + 1164.5880539624034, + 1148.7442650609248, + 1154.2594785787062, + 1153.3812110000395, + 1157.4064975122253, + 1150.8598321517416, + 1141.563520439574, + 1148.3973516260926, + 1159.119484394837, + 1157.1956096165477, + 1160.380397746393, + 1158.1622399886114, + 1147.5253490819775, + 1161.1299686936325, + 1145.8987797656396, + 1157.0286426256407, + 1145.9517345618694, + 1156.086569473389, + 1166.021674734906, + 1133.6172731321478, + 1161.275330551096, + 1145.7707032278622, + 1164.6934840502945, + 1159.8475608550311, + 1142.4828865217664, + 1139.9333422860504, + 1147.6906140753126, + 1149.0816074970312, + 1150.5262511510232, + 1148.197000083935, + 1146.178982469868, + 1154.6888578938006, + 1140.7238481807997, + 1161.0854403139238, + 1145.641673065307, + 1162.5943850335063, + 1142.6205606351439, + 1150.6432608437572, + 1143.7199545748713, + 1160.4781370964, + 1135.0166721982303, + 1159.9272080128228, + 1144.095862590888, + 1168.0434768747505, + 1150.8968924447279, + 1146.206210922403, + 1163.4448761397555, + 1156.5497399482958, + 1160.429043761286, + 1152.1025232356028, + 1161.696604644817, + 1135.4958752203986, + 1143.1902727414338, + 1158.2499094200427, + 1144.0227416221169, + 1157.6781188245143, + 1147.435472647248, + 1148.308563476283, + 1146.334290976276, + 1141.8763121567033, + 1140.3529167457696, + 1157.0204097120513, + 1148.0381276757576, + 1152.814237063561, + 1160.6830891615398, + 1146.8485697556698, + 1155.9724216980678, + 1151.1172740322793, + 1159.0373788495574, + 1168.8330737826182, + 1161.9296117191616, + 1170.3590929108177, + 1146.3988324738068, + 1157.0230787958467, + 1159.5821826696517, + 1144.7830646743428, + 1153.474839736666, + 1139.0921803730016, + 1145.7285788435954, + 1153.9240460880192, + 1143.0448452395717, + 1137.7678707138996, + 1158.9490584044304, + 1154.2316123079347, + 1156.9652068431596, + 1150.9456422138162, + 1162.7338110287974, + 1148.1519691753344, + 1164.8855983984574, + 1153.3137789204675, + 1132.875132242316, + 1139.2211610667375, + 1159.8982743190616, + 1144.8215816765305, + 1143.009980242183, + 1144.4655489005988, + 1145.6058584138127, + 1144.1476162865545, + 1155.3260950499216, + 1146.5570068886398, + 1149.6349189188782, + 1140.110216258523, + 1150.5861726411192, + 1140.5994768400117, + 1150.0071239154597, + 1162.4741699178735, + 1143.238015191948, + 1144.115966229833, + 1153.7216654547526, + 1153.8494965182203, + 1146.7418127176222, + 1128.5868117802224, + 1156.004040284938, + 1154.9852807261814, + 1152.6754632775467, + 1160.4342610016847, + 1155.3458327050196, + 1163.9318626737177, + 1157.962741812927, + 1152.6510459841174, + 1144.016525789809, + 1158.3949346467296, + 1159.969456151542, + 1174.273894098883, + 1146.7389431125196, + 1152.3699544298456, + 1154.79608912682, + 1168.0000092683613, + 1166.4933848356288, + 1149.8201767242667, + 1134.6035682827494, + 1134.0438532159696, + 1135.9513935681182, + 1145.0300130292471, + 1171.4033704923659, + 1141.5150306550552, + 1143.5880124960324, + 1139.460990153056, + 1143.313292913556, + 1152.5222247141596, + 1155.1297952101272, + 1152.064573902662, + 1149.2377219289651, + 1150.0536525852142, + 1159.961651148118, + 1142.6526155980046, + 1162.989318554615, + 1150.470377878064, + 1133.441858379028, + 1163.2411029306343, + 1149.0254910405602, + 1148.2640506222087, + 1169.077095839915, + 1152.7070529126847, + 1150.0209334945182, + 1146.849162834549, + 1139.500923796251, + 1145.37111406959, + 1147.2561559826327, + 1130.6174672863906, + 1171.4629832354556, + 1149.620901339931, + 1152.5420560181994, + 1161.7244093485938, + 1136.5325900691462, + 1158.742896518963, + 1176.9376872903822, + 1135.8484530752207, + 1146.5926601898714, + 1136.180863192409, + 1173.5529126366241, + 1151.657766924345, + 1137.670918970685, + 1139.5165979851797, + 1153.018586366128, + 1156.2111871650416, + 1150.5089184052858, + 1148.613972774032, + 1146.3813542039413, + 1140.5617523854762, + 1143.966397910096, + 1154.4137123573212, + 1146.850309864841, + 1152.7599738373415, + 1134.8480355185209, + 1130.2749624460198, + 1137.796103785724, + 1150.901673430507, + 1156.9422759625252, + 1141.8732993098108, + 1136.084124489049, + 1153.0736509364076, + 1148.8704804692075, + 1147.9535058869446, + 1148.3368030503775, + 1129.3754611818406, + 1141.5827934304812, + 1148.6390273631862, + 1156.0151195927676, + 1166.3017440037993, + 1157.08422729021, + 1154.7034659260084, + 1138.6831750384288, + 1149.1171907528417, + 1142.3229623362238, + 1134.97258658884, + 1154.519685589448, + 1154.9175492602249, + 1118.9284766830465, + 1159.2245404334699, + 1144.3099540109736, + 1154.3523630479756, + 1154.1908860697272, + 1137.5888488824176, + 1147.167486276299, + 1150.56117920852, + 1151.0594321481185, + 1159.9503312995507, + 1128.8298869351695, + 1128.5849490519377, + 1160.0351701235056, + 1157.1304456819526, + 1147.5818899170536, + 1162.4017118156132, + 1157.2458446800297, + 1144.996400709262, + 1154.9492684716506, + 1168.3186135644503, + 1147.3877308316296, + 1170.1860391524938, + 1135.983064146837, + 1158.288323756832, + 1152.3567182159236, + 1161.834261331083, + 1150.715240890769, + 1145.31710215816, + 1131.4812228370502, + 1144.929399399223, + 1148.8416709086762, + 1150.1056233997126, + 1149.5292395936897, + 1158.194248397555, + 1155.583590980105, + 1163.7649390853348, + 1146.1239828427579, + 1150.3603972754663, + 1158.8766811755825, + 1150.9425409337625, + 1149.9237984154197, + 1167.4631122072055, + 1157.1182060043593, + 1151.3038301260735, + 1151.9470149974024, + 1152.5384534584427, + 1130.701517681269, + 1154.5240753656328, + 1146.9134948854114, + 1143.8806017750483, + 1156.6068990247643, + 1158.6742067845976, + 1153.5254861025003, + 1147.2526989388357, + 1139.595871899845, + 1163.5210519379539, + 1143.142946127185, + 1158.264032014346, + 1152.3715147729301, + 1151.2309828248292, + 1138.9675564559045, + 1152.0313921739903, + 1158.9826868380417, + 1152.6298142611056, + 1161.2537682212512, + 1164.642121527863, + 1149.347566487969, + 1155.4893311686258, + 1140.690959082022, + 1158.6939560228338, + 1149.2328484547847, + 1147.7860075507494, + 1146.6352691932093, + 1169.4716740235615, + 1160.759255778132, + 1162.9774186008283, + 1142.6920134850552, + 1143.9698451713575, + 1154.3118443882254, + 1154.1713868584277, + 1141.2463472819427, + 1147.122191059758, + 1139.202580923675, + 1159.6329524052014, + 1146.7134673156966, + 1140.0534092111473, + 1159.3801398585379, + 1166.101500820952, + 1145.2252042068608, + 1167.8585154174798, + 1149.0443922382344, + 1147.4513181397601, + 1155.1964695068739, + 1154.3267641280265, + 1160.0815828828795, + 1148.9957162100861, + 1155.7683322873831, + 1151.6857917856455, + 1159.0812827501388, + 1162.0360008268597, + 1162.7122513025843, + 1158.2082889843186, + 1150.3891851138012, + 1157.832803401545, + 1148.9849790664312, + 1160.358070791745, + 1140.7969949556932, + 1148.391708671095, + 1155.5680410677523, + 1146.5782736722344, + 1148.0435135466928, + 1153.6785707881013, + 1148.7758272247745, + 1165.7227765748469, + 1144.245631097689, + 1172.0883780669976, + 1158.02422606093, + 1160.772493306259, + 1145.8693124070578, + 1152.3864671112879, + 1145.7073810439383, + 1148.05805202263, + 1138.584538202217, + 1147.4994504989272, + 1155.5969991344728, + 1139.815034217715, + 1158.1537266585867, + 1162.8932747379101, + 1143.472473722664, + 1136.8296604496402, + 1154.169356165449, + 1163.4282140150665, + 1147.4678180821002, + 1150.5988767988886, + 1138.6778388148784, + 1149.7622497029733, + 1153.273270986915, + 1151.7207375137157, + 1130.6499427870535, + 1152.232765226411, + 1154.2257807091087, + 1157.9277423253152, + 1148.961373726578, + 1146.0083685155048, + 1157.8801703972142, + 1153.0704123499834, + 1152.461296080685, + 1129.5891865250035, + 1144.0541978076326, + 1133.553258466837, + 1142.2008191122495, + 1163.1698788813792, + 1158.7756125318313, + 1151.1487813048625, + 1146.816215126479, + 1156.9756840179612, + 1146.124639288794, + 1141.729583707158, + 1157.4097395640433, + 1149.5137314242347, + 1155.2302126004747, + 1142.8485865511298, + 1154.2768842737262, + 1135.2821841521866, + 1131.527298241836, + 1159.436002287294, + 1153.86886253365, + 1164.468185586859, + 1140.4807951670641, + 1153.8037011358942, + 1152.3766217543114, + 1134.060694566336, + 1156.942543524922, + 1145.86216363783, + 1151.5187007709915, + 1136.252993140988, + 1138.061956614867, + 1157.453830747513, + 1156.6917560017791, + 1138.0577789851454, + 1126.7664420717877, + 1145.853789805325, + 1150.582386832093, + 1155.6624377516569, + 1159.752778964802, + 1153.1481331100224, + 1129.1210163535916, + 1154.5349512933642, + 1144.7246520511885, + 1174.237747976529, + 1148.0633415792531, + 1134.1202468222998, + 1137.8338308726607, + 1141.6535407193849, + 1143.135181221045, + 1151.8153948339802, + 1163.8950070113194, + 1156.2504241556, + 1138.0654584155939, + 1140.8695216333888, + 1157.6873319448925, + 1150.2251368593463, + 1150.3051801486788, + 1134.3497343537626, + 1169.124021870288, + 1157.7786570190895, + 1149.6902486288461, + 1159.965737469563, + 1179.2068329346853, + 1148.7077401021668, + 1148.6713449115389, + 1147.153385405245, + 1167.1460711967288, + 1143.083371839215, + 1149.7093833722108, + 1152.5730139314758, + 1139.122656756076, + 1155.0010837820455, + 1144.0224057274115, + 1166.382761559351, + 1165.672793435218, + 1154.1942598350913, + 1140.7744110521828, + 1155.5428211552464, + 1152.3685246835498, + 1144.8696705395644, + 1165.6340241560695, + 1137.639577177243, + 1139.7526514925344, + 1160.9218218230283, + 1130.1456280850657, + 1147.5776110467636, + 1147.6215964148485, + 1161.587829891195, + 1162.2007397267664, + 1152.3391826211052, + 1155.676595399435, + 1139.7490242990016, + 1139.7238628597695, + 1157.3983035019965, + 1148.6984161165367, + 1141.5750627789375, + 1141.152502773535, + 1144.0574136809266, + 1167.741520755786, + 1150.5682611270386, + 1159.906745751091, + 1142.0308336701132, + 1157.5219486406068, + 1134.3991837063916, + 1159.1670783545726, + 1153.1872879699179, + 1161.6939770282536, + 1159.0593010674804, + 1136.3693931656253, + 1152.218417862331, + 1169.0586973116751, + 1149.2028937161595, + 1149.2880510364919, + 1153.7323662276801, + 1149.894726715572, + 1159.1061481697704, + 1141.8232363786972, + 1144.6586435146253, + 1155.2152645842996, + 1145.6498221232623, + 1153.2758057032697, + 1120.8986407000639, + 1164.6936965913928, + 1154.7767147401673, + 1119.8921815505316, + 1155.3580299733526, + 1144.6400504514806, + 1150.4871940409982, + 1165.9392553953867, + 1146.162284044029, + 1153.6774736681127, + 1146.5324594796868, + 1136.5505968228197, + 1154.3182392641318, + 1162.2882431387334, + 1139.386951509282, + 1151.9136942230614, + 1141.888177208522, + 1152.6461968063556, + 1149.5853904551193, + 1159.7132684254698, + 1149.8801623110649, + 1137.2722105449413, + 1156.6051592453498, + 1141.54599782882, + 1146.5744262694147, + 1151.5783829802258, + 1155.3041041311567, + 1132.4434054484764, + 1158.1358935839228, + 1145.53009022688, + 1157.4026503698271, + 1156.2970639105783, + 1140.596270671717, + 1161.4408040653789, + 1159.497383642183, + 1142.6069060210402, + 1143.8460675757049, + 1130.342423754028, + 1146.1081714325583, + 1157.6981090506602, + 1154.766138569832, + 1139.7766568584818, + 1143.6276325933422, + 1142.5416739054847, + 1148.2099690276127, + 1144.877074936023, + 1157.9086285899657, + 1149.2004323079718, + 1152.4294462643688, + 1148.6728790523705, + 1162.540679136611, + 1160.1871292076319, + 1142.7362449004165, + 1158.176334791751, + 1130.0476226751148, + 1146.886394604803, + 1144.8195500619643, + 1147.0041244599986, + 1147.8025066860641, + 1163.1226807835676, + 1138.7650468336615, + 1146.3135327804368, + 1146.8217710720612, + 1155.0764431490045, + 1140.256616443424, + 1142.26578226636, + 1144.922438323321, + 1139.8080124134822, + 1149.2416702911644, + 1152.3447733737748, + 1151.9043415155986, + 1144.1461164094035, + 1138.9996759268838, + 1151.6717133733775, + 1152.4185230651678, + 1155.8899789598654, + 1164.9039899234288, + 1149.3776023154896, + 1129.2692419487892, + 1150.1276860000587, + 1150.664997875686, + 1146.5911549331138, + 1135.9190709258553, + 1158.308278723271, + 1154.6588442226214, + 1162.7783962851881, + 1146.3124741727906, + 1141.321945517478, + 1147.3980860667514, + 1167.4787855009351, + 1153.2392640503463, + 1168.3179041688272, + 1164.2679542999924, + 1149.352004991214, + 1150.0461903785742, + 1158.7010526579945, + 1131.881329294736, + 1140.606424821498, + 1151.460608019956, + 1158.0999834649378, + 1152.868506367474, + 1149.7691773732613, + 1140.5843109481686, + 1143.0514607331093, + 1144.7019404857565, + 1147.6253246178248, + 1156.1925895421584, + 1149.4837450060854, + 1156.2114533485562, + 1141.7769552230852, + 1164.6253709017578, + 1148.8569038268893, + 1153.8742365385062, + 1156.2471170482247, + 1153.761620566367, + 1151.2731654375339, + 1159.2470581279167, + 1149.4009586064653, + 1147.6249881051026, + 1150.7331532920127, + 1127.3873995708743, + 1146.784823181836, + 1151.3251300103377, + 1168.7485616853203, + 1154.980348070099, + 1142.3536543963469, + 1150.7787664606115, + 1136.7262708891453, + 1145.4116057634185, + 1139.1328548746985, + 1142.785229698929, + 1153.7426877335079, + 1147.3262598649358, + 1152.5700707907458, + 1147.8622470886048, + 1157.279107152469, + 1149.6553936881687, + 1156.3545890922128, + 1154.829542072944, + 1151.1799860311307, + 1144.0088514212875, + 1149.5991474990922, + 1149.7744563290105, + 1152.2373266166487, + 1146.7262680612544, + 1160.9703816629037, + 1164.8933986571733, + 1145.2451127684233, + 1148.2870198659307, + 1148.8103031821838, + 1156.355692280537, + 1158.2102493414072, + 1140.5576623767197, + 1163.7013508694224, + 1144.7675749376192, + 1144.2174070467738, + 1170.1716148988867, + 1166.5344242998794, + 1150.1261979550357, + 1157.9121007862882, + 1140.5460560504669, + 1155.4001034728813, + 1157.532765426519, + 1154.1748193433857, + 1155.6688138802926, + 1150.3545060071224, + 1149.2942810332681, + 1142.483371935551, + 1152.3672582247266, + 1142.827986625738, + 1143.530917086619, + 1148.1898727956102, + 1158.0076074744027, + 1142.0804315628095, + 1148.7320312712284, + 1152.1001068068101, + 1133.7897501415355, + 1164.6976688169475, + 1143.6537600603474, + 1166.7053747280065, + 1157.0445213161925, + 1141.6466646795047, + 1145.8195655250877, + 1148.9855217982174, + 1142.8952325489133, + 1164.4902126879792, + 1162.6179988061717, + 1155.0479543279603, + 1136.471273159418, + 1149.9465279812348, + 1134.2767814955005, + 1161.5309739650302, + 1135.266290783461, + 1152.6964317330767, + 1168.8997209237125, + 1146.3735889592626, + 1157.3545341260499, + 1151.6448875050405, + 1160.5879722757068, + 1149.3433734857706, + 1152.1780800765473, + 1149.765426827635, + 1140.288484599404, + 1142.4447685817565, + 1150.4742010828563, + 1141.5273775564003, + 1134.6999059724787, + 1166.4080363688436, + 1137.2368250726793, + 1147.8554370828713, + 1155.036584418229, + 1149.3258248356315, + 1167.072219041901, + 1137.6641959822873, + 1148.7853781432616, + 1149.11222615746, + 1159.2453820756948, + 1154.5445990520404, + 1161.2288695812874, + 1163.4486899998547, + 1151.8459106657617, + 1153.91061015017, + 1147.7465876860674, + 1154.520764438426, + 1160.2638990486566, + 1158.4336038081128, + 1156.9174330727842, + 1144.864779562853, + 1163.9742600301206, + 1144.3869055361336, + 1162.1543300827745, + 1160.9706026813824, + 1145.763743819086, + 1123.82436655201, + 1162.1092435645076, + 1140.2159969366921, + 1153.7404364024137, + 1160.7096061903767, + 1155.7947132155869, + 1125.3050682372327, + 1171.78517160622, + 1156.492243544839, + 1164.7059088477806, + 1150.3131312412286, + 1156.6187944024814, + 1155.2915117564514, + 1154.4709116903987, + 1143.016553322333, + 1154.5817300338094, + 1156.4539660848263, + 1155.5409006224445, + 1146.0105239484963, + 1145.2256270121013, + 1134.0997679879486, + 1146.347658570724, + 1146.6115624273084, + 1179.438398155313, + 1150.899882054027, + 1170.738258229257, + 1150.9484452962824, + 1146.5844170844084, + 1165.5067036565215, + 1154.7660565068763, + 1144.143492412663, + 1136.5561623908573, + 1154.0733158840064, + 1142.9993773788683, + 1146.5750479157762, + 1133.6122466365675, + 1155.199839587917, + 1153.7919940936702, + 1141.1768670301244, + 1151.1963760975411, + 1151.7261212921894, + 1152.4506379000509, + 1151.7012619350594, + 1159.7310705940772, + 1156.4648760802063, + 1145.299226114082, + 1159.9756965870563, + 1136.2900247849368, + 1131.4694507761035, + 1163.5167882741453, + 1140.3709844382045, + 1131.4200928400123, + 1150.6059763244857, + 1161.5444200339289, + 1122.0999158478933, + 1148.5459443463908, + 1143.4415187442464, + 1144.970856875647, + 1153.7727754646908, + 1154.459892445762, + 1137.416298132983, + 1145.2817782014083, + 1152.3110458801727, + 1150.779603061307, + 1165.6294757288408, + 1157.90560971014, + 1164.4003065292532, + 1146.774591165518, + 1146.4039783901335, + 1152.5894046036476, + 1153.1446529180082, + 1160.4887441190426, + 1150.2557199851576, + 1154.2458691858815, + 1151.9647763504174, + 1162.129928598149, + 1165.3301470994443, + 1153.7972405278301, + 1145.1329915099188, + 1139.7138160573613, + 1150.0863058243467, + 1153.9116965559206, + 1136.9150322306618, + 1148.5483327254083, + 1140.7678192051346, + 1155.571887111847, + 1149.9691453580313, + 1151.9597592380815, + 1154.337017551366, + 1155.730787341678, + 1146.4923985874818, + 1146.8795621912977, + 1158.7613549805624, + 1168.5524405405847, + 1142.6035176381579, + 1156.373103621845, + 1149.524246901122, + 1147.804164076084, + 1171.5569480334582, + 1168.6212665571466, + 1156.1442562558798, + 1159.5850269656223, + 1161.77961526, + 1142.0043443003897, + 1147.233906459992, + 1147.9199711980018, + 1148.59104352318, + 1148.5139588027205, + 1148.131420617957, + 1150.4056193393656, + 1157.8632871366226, + 1155.6878867558694, + 1153.0198392403229, + 1152.8486349446991, + 1152.1572963970762, + 1161.177331938604, + 1160.4499452375478, + 1136.0999652355238, + 1140.0821642637027, + 1148.3161886737646, + 1163.8131244982944, + 1145.78882460236, + 1160.3905413472296, + 1162.926950099952, + 1149.667767295947, + 1157.8772075529685, + 1153.5605015478334, + 1162.448678717999, + 1169.6576338448676, + 1154.6539381383263, + 1154.3783874110534, + 1133.3050159724867, + 1132.4368041639684, + 1156.8705615296344, + 1156.3721468531958, + 1145.8382788726215, + 1162.3573248975176, + 1156.5278325387028, + 1149.0616017703906, + 1164.3931093348403, + 1171.759222371844, + 1158.922784593568, + 1140.1000008701815, + 1156.7904653513656, + 1156.886917319267, + 1159.7723576108187, + 1156.815515406263, + 1148.1964637173458, + 1164.915027138695, + 1140.457342566394, + 1163.597274299036, + 1149.7604470573458, + 1157.5085384216968, + 1151.4921108254964, + 1151.4560298511433, + 1146.1497479713319, + 1155.0418017355037, + 1151.7659568699448, + 1154.4028587942455, + 1147.1139841185077, + 1137.3617149523454, + 1152.8824943378224, + 1167.289268084232, + 1142.077727231779, + 1135.1386775720205, + 1139.789572803, + 1157.3771399920822, + 1142.5686451718025, + 1140.0160535549871, + 1152.5461348018023, + 1160.2038257477752, + 1159.3858527443726, + 1144.834872565505, + 1151.9216799000467, + 1149.3052477625586, + 1138.4166473624666, + 1167.2282536852165, + 1155.8767471903855, + 1159.7870622977925, + 1147.7845056228323, + 1151.8148016414348, + 1173.9164385128865, + 1135.8037643713478, + 1134.1031918108877, + 1157.1226723288971, + 1143.3504215314204, + 1140.3971177887438, + 1171.95572812135, + 1157.792749446211, + 1162.4917390046699, + 1157.6876916880822, + 1157.4196765898673, + 1159.6020245209859, + 1148.5111077323531, + 1146.8543120461784, + 1138.9392664211537, + 1140.2031668272277, + 1139.1985522902103, + 1146.4213236065261, + 1155.3618442419645, + 1156.0107299699575, + 1163.5556076301132, + 1170.0151126657538, + 1148.0209263448564, + 1149.926645265731, + 1149.328509708733, + 1135.0081559140626, + 1152.9143288133366, + 1140.5109927951453, + 1163.1046344519355, + 1153.7039748599564, + 1145.7694736509, + 1145.3393332463138, + 1145.8598589004882, + 1143.1705005851447, + 1127.88052695523, + 1155.2468215940291, + 1147.9213339142318, + 1143.5743403531358, + 1147.3895929551197, + 1156.7867662672454, + 1142.1385409668655, + 1150.0106123445228, + 1153.8163242960743, + 1147.6846381631308, + 1140.363165678938, + 1138.512736350715, + 1141.443019786594, + 1151.7511564871365, + 1157.1303713051561, + 1156.0970946623793, + 1155.5570623666824, + 1153.1968414309442, + 1139.0714306426623, + 1152.1004560894182, + 1166.1440184899693, + 1162.5349126658841, + 1146.3407353808648, + 1152.039265350714, + 1148.6365084630384, + 1157.1430994610512, + 1137.7715077899795, + 1150.2851234395482, + 1150.3897252466863, + 1154.3686659782493, + 1174.3394180178454, + 1161.2892655130124, + 1135.7698115606297, + 1138.7509312911347, + 1148.3647015951478, + 1165.080194753794, + 1124.668748928051, + 1164.065834311399, + 1148.834671279336, + 1148.9614689423631, + 1144.635839407211, + 1153.8796574528417, + 1158.1051621524657, + 1153.5393190830528, + 1142.2279209473904, + 1139.7475935065072, + 1143.5269591432686, + 1143.909716430215, + 1144.8893356285544, + 1130.921177694477, + 1146.2839754384363, + 1143.2028984677859, + 1160.2109464034656, + 1147.072433142865, + 1130.6744286597525, + 1153.0742436289656, + 1141.7851938545095, + 1160.1300920852761, + 1159.1700111261673, + 1149.1140103642738, + 1148.0141593556652, + 1156.182520787634, + 1140.9376006591772, + 1147.4467705543525, + 1156.6858048126255, + 1154.5723621130778, + 1164.0904677099322, + 1151.462977945583, + 1152.206169076967, + 1142.6924667047485, + 1142.055543052795, + 1141.9776031563517, + 1165.69214571594, + 1151.4192674465532, + 1150.438689870829, + 1147.2146568004164, + 1158.6107695610115, + 1151.6436087646282, + 1166.1602133474878, + 1154.5751398593172, + 1157.4963863616802, + 1145.2641025912758, + 1159.8482703302377, + 1162.4456362435133, + 1129.1255363573214, + 1144.7996157519135, + 1149.052151499025, + 1157.940672169815, + 1150.323946956985, + 1148.4363824514205, + 1136.8018369889671, + 1155.2848591090308, + 1154.5775138660922, + 1158.5334518052289, + 1154.4028656521539, + 1147.523231818576, + 1146.4399251106033, + 1139.996818531654, + 1146.7243186435176, + 1134.2589043481466, + 1147.6480295446408, + 1160.206260323377, + 1152.1658001183928, + 1147.7944720649411, + 1162.2221137616864, + 1152.4777697009358, + 1161.1671202062616, + 1139.555156448172, + 1152.8715932476903, + 1149.7546191406893, + 1140.77894557246, + 1131.0729779366598, + 1150.7363801311096, + 1150.101068786346, + 1152.5778525154612, + 1158.494235319512, + 1163.6073587528172, + 1153.6979120602252, + 1166.1738559219477, + 1140.1015376000103, + 1156.042860419209, + 1146.0638885601318, + 1157.6340686403178, + 1152.884616924612, + 1148.0880235483583, + 1142.666116580825, + 1147.9713668062554, + 1145.7278130846773, + 1151.445367818047, + 1152.4520646983144, + 1156.0688975825838, + 1148.6826908723517, + 1160.7695302011266, + 1150.3052741079505, + 1145.8904713530983, + 1157.6461432064723, + 1141.869888546732, + 1155.5811247867946, + 1139.9426535087964, + 1129.7378009503336, + 1151.960594950302, + 1159.3493022811072, + 1142.1519087493848, + 1143.4800825060643, + 1130.3700195889119, + 1143.492228790458, + 1137.8173953315115, + 1146.0136155038967, + 1133.2512578180347, + 1139.4773680516976, + 1141.0070452515467, + 1150.124689053405, + 1160.788005121525, + 1148.3938541427701, + 1159.017634128554, + 1149.8549360810368, + 1161.0926783574173, + 1152.8986385586522, + 1157.073411229257, + 1146.4513351573341, + 1163.9755748043026, + 1161.3356816426103, + 1135.5319274017243, + 1157.70202678471, + 1158.5173221136629, + 1150.9011553400503, + 1169.0107014622238, + 1167.5237410882828, + 1159.6346011849776, + 1136.2370238567607, + 1153.7226668024234, + 1146.5924817891969, + 1162.6033423004376, + 1144.9461819810006, + 1156.3734069714671, + 1141.5129816797212, + 1146.065789009417, + 1153.1567749750996, + 1134.623947011393, + 1144.772482878031, + 1154.8746687118637, + 1154.7880065544118, + 1156.2579369775922, + 1157.0663177053534, + 1146.5713160951423, + 1150.934518011384, + 1147.6853949656313, + 1161.4997691482795, + 1154.2427369193472, + 1143.770364634695, + 1164.4408259726035, + 1154.5758106817323, + 1155.7828999239337, + 1145.8474823168688, + 1152.153206965765, + 1146.6572320088221, + 1131.728315115221, + 1139.4047009807111, + 1151.9601156751648, + 1148.3934640260225, + 1148.3614144955854, + 1165.0358772323468, + 1152.9346397110255, + 1158.7747488199248, + 1150.17145528401, + 1157.818299936601, + 1146.6679760632965, + 1157.5155316647547, + 1137.829799888731, + 1155.5098001502863, + 1157.0209700333387, + 1142.7831899906307, + 1153.4702447673676, + 1156.4407081131503, + 1157.368684736417, + 1167.9307328378063, + 1145.9575227154623, + 1167.6079363163428, + 1156.2590523374076, + 1159.0472408809762, + 1148.2366296540688, + 1155.8940185372298, + 1147.2745516863222, + 1151.06010746137, + 1155.1369060942181, + 1149.5191646245894, + 1162.1247732721858, + 1156.8317779497463, + 1153.4199456366111, + 1145.878496117395, + 1129.061946230953, + 1146.0474028424123, + 1162.8505494763183, + 1142.3749209986602, + 1152.5454376084213, + 1136.9721570527777, + 1149.6096089962136, + 1159.1609650409807, + 1156.5944560919484, + 1142.9148290011735, + 1155.1392485768451, + 1171.579510844677, + 1135.1887999639166, + 1143.0145603293113, + 1151.7596076576297, + 1152.125703102802, + 1158.061520101678, + 1138.9713781710468, + 1163.0661532090264, + 1160.1562432231292, + 1159.6393865870568, + 1161.4279986733031, + 1154.2250023445338, + 1155.660856890302, + 1142.1723534271573, + 1146.9579330861154, + 1155.4442165322532, + 1153.5954398464562, + 1136.3936358486098, + 1157.0766305726158, + 1135.575418451421, + 1148.996504321507, + 1145.0981097734436, + 1145.2236205446347, + 1160.2671538771644, + 1148.5652278110613, + 1152.6094075890003, + 1148.6862278513267, + 1152.4913782883318, + 1141.5340496449348, + 1140.256357328581, + 1126.6935047014802, + 1164.9620359992512, + 1131.9496531345458, + 1141.592979487795, + 1128.2951549567763, + 1136.2330899580586, + 1136.1714604314445, + 1160.124180348917, + 1144.4438579246255, + 1135.62044524127, + 1156.9154899598236, + 1139.0650661467425, + 1142.4732373476375, + 1160.7183648645112, + 1149.434203241597, + 1150.3263806362038, + 1161.4767022407025, + 1155.7603514566647, + 1160.6141732020285, + 1160.8925892172867, + 1159.2778386729333, + 1154.028952868077, + 1154.3323185625152, + 1164.482487752219, + 1157.6230665398027, + 1132.7259375056929, + 1137.2719105430688, + 1150.8730309237249, + 1159.9747623216783, + 1147.1318424135686, + 1150.6478545338312, + 1153.0589028102863, + 1121.3890074473102, + 1136.5982941325362, + 1157.4555123531268, + 1148.2945809323946, + 1158.2347306665504, + 1157.2096437468217, + 1151.9807604091218, + 1161.8301618515934, + 1149.4948658909402, + 1161.7951852334045, + 1142.3128184778798, + 1150.7565420507437, + 1161.4961110077215, + 1155.1488176562993, + 1135.3514469866655, + 1143.7139249738195, + 1140.8968680449686, + 1174.6393696717496, + 1151.1589690831852, + 1151.314433222809, + 1165.1779007158655, + 1156.670245740428, + 1155.7986933821094, + 1165.4768212493832, + 1156.8422660747156, + 1153.028160618058, + 1152.486150258313, + 1150.4097519351994, + 1135.9954987373408, + 1138.55813005312, + 1145.978927327455, + 1139.398674667356, + 1153.4096206590962, + 1147.5513531584918, + 1160.0658450989529, + 1170.453801436221, + 1155.2222865810531, + 1149.720705546369, + 1146.7385341418349, + 1145.7458674058548, + 1162.5378268704326, + 1152.0174980495535, + 1134.8543459800624, + 1153.7958243235532, + 1143.557247599691, + 1151.8374913321713, + 1151.259137328238, + 1164.99178958439, + 1143.778752221697, + 1159.7582716203046, + 1154.5596127379204, + 1158.054341694453, + 1163.9974745459958, + 1174.5938665672986, + 1164.8982363111036, + 1152.7091793938898, + 1162.2168065117621, + 1158.976956502162, + 1169.9950793547446, + 1146.175264547805, + 1150.7436726829221, + 1165.711976933624, + 1148.5375702581118, + 1160.953411349547, + 1151.942504842466, + 1157.7809731179352, + 1153.9045056831062, + 1157.9347236815647, + 1153.880335051817, + 1166.2575982225517, + 1153.754795592159, + 1152.9105468713806, + 1148.7062404085452, + 1149.4332121988416, + 1162.8239027280672, + 1150.5032106012532, + 1155.3067035447712, + 1144.1468778217509, + 1148.2989390766224, + 1153.4829684764081, + 1142.934032578671, + 1144.4143799878693, + 1156.7240427964034, + 1138.3646787792882, + 1143.3889688731467, + 1141.3693507691275, + 1134.8184276153931, + 1151.5493953989883, + 1138.3018409073231, + 1154.515420874281, + 1135.1435998545533, + 1152.014088873851, + 1152.4536396222388, + 1150.0436574959472, + 1157.687012938781, + 1141.3410831761996, + 1156.2343423736595, + 1140.1529675081217, + 1165.7981078043226, + 1146.7030329068155, + 1155.0700087432135, + 1153.5164673228555, + 1143.4662730516502, + 1136.2718832750816, + 1151.33717029121, + 1150.5630705776402, + 1146.7408141883975, + 1156.4589563201348, + 1145.6028466000532, + 1159.4775304029988, + 1138.1662845496967, + 1151.2966553987155, + 1142.024574908644, + 1152.2053262152833, + 1167.2138769518947, + 1146.926632513664, + 1154.0003698583341, + 1156.1214238023867, + 1138.7108050679349, + 1158.4479417685206, + 1143.2692742173926, + 1143.488921268792, + 1137.7312635807527, + 1156.8151791608711, + 1158.0731820162246, + 1144.2681469858778, + 1161.145433085934, + 1169.4103154096115, + 1140.8427023413494, + 1149.515420753599, + 1144.0905775902631, + 1153.2893485746686, + 1149.4982990266835, + 1167.8470634780094, + 1168.1659103438594, + 1146.34410193915, + 1154.3810221591802, + 1164.8140213453069, + 1146.5352080993384, + 1159.8328807255148, + 1152.9389812768184, + 1133.709467490686, + 1163.6374657092265, + 1135.9054974435849, + 1136.2393755043443, + 1149.176770496308, + 1153.1775152286023, + 1135.2942631505177, + 1162.4581855388972, + 1146.5975121581712, + 1136.6304689542924, + 1152.4916337417872, + 1142.1200809459128, + 1159.9316745423382, + 1143.036898119569, + 1148.409348985499, + 1147.1073924830666, + 1155.976474892776, + 1150.0767549682284, + 1169.7221793675435, + 1164.0339959311714, + 1136.5722955946987, + 1146.3344349307351, + 1161.3662580618782, + 1153.5891427338966, + 1147.452793414734, + 1154.177388317327, + 1149.0109115684097, + 1143.6903780608823, + 1157.779152927313, + 1161.0560183192501, + 1153.1373849125355, + 1134.901354112241, + 1150.1836748593998, + 1152.3171080837271, + 1151.493546005414, + 1152.4440133588355, + 1151.0094540219745, + 1152.3639184635883, + 1154.5188323962152, + 1165.71825171932, + 1146.947830701578, + 1144.6571865069736, + 1145.8772953773605, + 1145.2956686559653, + 1150.3712717341302, + 1127.6253864646947, + 1158.9069474602957, + 1155.800351780543, + 1144.399752414259, + 1162.1307197918825, + 1152.6720490310904, + 1164.7492832253115, + 1154.4304946600137, + 1150.1940089944624, + 1165.2927935611779, + 1156.4168949757657, + 1163.0987275259167, + 1159.948708713859, + 1156.1223622544746, + 1153.9422479624966, + 1146.4526572030447, + 1149.4402863439723, + 1143.727613475457, + 1150.5257012164323, + 1145.433235786489, + 1139.7078461359222, + 1155.067312872583, + 1127.5859347851867, + 1142.4854637356927, + 1166.9671951042096, + 1148.9300929924277, + 1142.0849496589947, + 1147.0088717927115, + 1151.3961332751296, + 1151.9436309483065, + 1144.5972840058948, + 1140.1918510193343, + 1143.8484679742398, + 1132.5128617520875, + 1153.9960696393373, + 1146.823636110923, + 1160.3194653321214, + 1150.4194853221236, + 1164.5904414392778, + 1164.1437383525536, + 1152.1848181914806, + 1151.2513699117935, + 1143.5514404756043, + 1146.014394098599, + 1155.4633924310924, + 1138.8182931546853, + 1159.8308540254611, + 1157.883688093381, + 1145.0561583074127, + 1159.047419336535, + 1136.6062612113242, + 1151.1568145537558, + 1160.2799764299007, + 1165.363570510729, + 1158.5619468686755, + 1157.4873476660373, + 1156.9686735141927, + 1163.8408864291973, + 1173.4024045964009, + 1158.0384886107422, + 1151.5312773615997, + 1160.218307075837, + 1155.5895804675927, + 1158.092062431616, + 1136.1060612052906, + 1148.1130522665533, + 1159.768446940414, + 1130.8044392177262, + 1133.5456977428692, + 1152.8109790402984, + 1149.9221772077638, + 1171.3234064169142, + 1149.5887266041616, + 1151.3003667899975, + 1147.1457462687365, + 1168.9674563763526, + 1155.3307741718863, + 1152.9019010901354, + 1142.5017850504948, + 1134.9927824089737, + 1168.2227786657163, + 1134.0446835267157, + 1159.3629705458372, + 1154.7379715225566, + 1156.138077626839, + 1154.1922795134715, + 1161.6830776468946, + 1131.2719792201167, + 1151.744043480628, + 1148.3412887108943, + 1168.5310900800039, + 1141.5142225431766, + 1157.4848379004798, + 1145.1057480414352, + 1149.7197766513573, + 1141.4639362355658, + 1138.8443493177465, + 1141.9308284496326, + 1164.4113843104346, + 1163.429544931873, + 1146.3329813246446, + 1152.7720646676328, + 1150.2814680806575, + 1149.7877954562912, + 1132.3488519105904, + 1144.9433249673739, + 1150.634601494964, + 1148.245347958344, + 1159.0022646618036, + 1152.9355729249924, + 1160.4237005438836, + 1149.9010596555577, + 1149.2453473887294, + 1156.1393841742054, + 1153.8258182296565, + 1146.996321297061, + 1147.3719765003507, + 1156.1184023122632, + 1166.6385685404416, + 1134.4100424079404, + 1130.172512505762, + 1137.5178028286841, + 1146.243939839001, + 1162.948771059013, + 1154.0750465318145, + 1156.2036299320475, + 1137.474366958549, + 1145.6193842169316, + 1150.959728870247, + 1153.7784481734163, + 1161.5899773906697, + 1150.6365864908641, + 1149.316556859918, + 1138.1172047784291, + 1139.5586072040528, + 1159.2661220182233, + 1143.1393635591512, + 1165.9745328714134, + 1159.20906628267, + 1148.3112949699284, + 1164.9575996006247, + 1142.9988445229023, + 1147.6081379753095, + 1157.2732506628374, + 1155.8054508273465, + 1146.8647649244813, + 1138.4631983317352, + 1136.9522753778936, + 1134.3866549192342, + 1139.2623835757877, + 1149.957859613258, + 1155.7868676778508, + 1155.9668752323785, + 1140.1371813003402, + 1158.8065224955196, + 1156.077966566748, + 1145.0114150146176, + 1145.8570608558784, + 1165.5089846203923, + 1156.7208682008754, + 1151.4250942231897, + 1142.8149747807597, + 1152.546095445487, + 1144.7222326707279, + 1146.3029621367655, + 1152.521535668435, + 1119.386664019032, + 1165.7384403275173, + 1156.8428369100739, + 1164.577908656803, + 1139.867141661742, + 1159.7220203228544, + 1180.2260907149073, + 1167.1299052830905, + 1158.9981582627686, + 1131.1714402013245, + 1154.953262440795, + 1149.99276213443, + 1168.0407579329321, + 1143.3381680291482, + 1144.3577082714437, + 1157.8183473279732, + 1142.566183090595, + 1143.8800619835279, + 1141.1132801345084, + 1153.0429985639685, + 1158.0048618171966, + 1143.5715809045605, + 1159.4464513115377, + 1149.193161435731, + 1161.808106340094, + 1159.8551913339604, + 1156.0757988997877, + 1151.684488260441, + 1161.7243875482243, + 1146.894945551365, + 1134.754265413679, + 1165.3872666205987, + 1129.10411864054, + 1155.9396862086683, + 1155.1668045753327, + 1142.4540265353946, + 1145.6664627552398, + 1139.912034514692, + 1147.3942181403763, + 1152.258988104672, + 1164.297107998509, + 1147.9607767187, + 1141.01691804233, + 1146.2770468809395, + 1156.7893100246504, + 1158.524310082256, + 1153.2642588039455, + 1156.6939073643346, + 1158.7750497590798, + 1138.0344343538168, + 1145.7675224119575, + 1162.4509491951553, + 1158.0207346776485, + 1158.2829827997746, + 1150.7187237032826, + 1161.6448210131798, + 1151.0194388293623, + 1148.2658634868492, + 1140.091002751372, + 1141.854850843313, + 1160.2303892703828, + 1155.7140922838641, + 1160.3512329583673, + 1141.9583200585828, + 1149.7205397940781, + 1148.9209815880204, + 1142.4138293318586, + 1156.5740022866007, + 1145.3439521150162, + 1143.6516125129529, + 1154.1244751237186, + 1151.481012446463, + 1132.500221337283, + 1155.0935135572183, + 1159.5825738655483, + 1158.3065528966815, + 1150.108862070912, + 1147.2292038903756, + 1155.9504949088696, + 1142.661343309969, + 1148.2233527121264, + 1157.8621962812665, + 1162.5467491108159, + 1169.3463410966988, + 1144.3709529381929, + 1159.41014018068, + 1149.1957033553306, + 1151.6214227719643, + 1138.701469534885, + 1161.9694871270706, + 1148.6389217479061, + 1161.6906145578253, + 1163.5401131369372, + 1149.754533374389, + 1153.654026972557, + 1152.2098795674726, + 1127.277782378545, + 1158.9115285568423, + 1153.7500765423895, + 1144.9617781651957, + 1147.4895255062422, + 1147.1403159134707, + 1137.6359121357823, + 1145.6888572721366, + 1133.8765980137644, + 1138.6495232570396, + 1131.2110423880367, + 1148.4590185120617, + 1168.9054991329062, + 1146.6260986486354, + 1159.1897261112344, + 1138.3938145248521, + 1149.9946024331896, + 1155.356921542002, + 1154.1239889427793, + 1150.691054907354, + 1171.5115806151107, + 1127.0637665857807, + 1157.7952796722661, + 1154.706906251317, + 1158.1639229481643, + 1156.4985597101336, + 1143.1039894043272, + 1125.9692140983746, + 1150.1236482596128, + 1148.5947058004958, + 1143.4181482050408, + 1147.379809331946, + 1160.9121689035867, + 1147.5225991781144, + 1151.042693183476, + 1154.5355781860374, + 1153.9727178534051, + 1159.9428181092499, + 1157.3225399205612, + 1139.8082055680813, + 1134.4208777211757, + 1150.6589300057178, + 1145.787543757798, + 1154.317894257576, + 1155.609529188125, + 1157.5501040149093, + 1152.1726095703918, + 1149.8451200719103, + 1156.5343466766321, + 1138.704025162603, + 1143.2729682416011, + 1140.0096452388996, + 1167.5507479882335, + 1150.3124609038953, + 1163.9250150745168, + 1159.732761306893, + 1143.1792104123267, + 1131.9797550672195, + 1152.794866642308, + 1148.7143368802126, + 1157.2677930822933, + 1165.3988241329619, + 1148.0808805767458, + 1152.9117376078677, + 1164.1295044369178, + 1147.536270047531, + 1142.492480387832, + 1148.7283750759382, + 1158.540724029563, + 1149.2204860834447, + 1161.1862070276304, + 1136.123976811969, + 1165.7206354531015, + 1157.5985014381276, + 1136.9308915617003, + 1146.9278102029716, + 1154.3075499728832, + 1144.9493972180137, + 1159.7306747220912, + 1157.9061951019426, + 1138.4792862534835, + 1149.5873774246377, + 1169.0519249053395, + 1151.94725005067, + 1152.1477144244202, + 1162.9362643862914, + 1158.0479974983846, + 1165.1750831580925, + 1145.5057214398269, + 1154.534032713923, + 1147.0926469785763, + 1168.4967639395154, + 1151.0918906903346, + 1171.5261592725403, + 1164.013679889032, + 1149.319757727, + 1136.547202266867, + 1128.4797231888908, + 1156.1835524504036, + 1146.9009744918849, + 1132.038081660466, + 1172.1674369979094, + 1151.6849680299347, + 1158.3978251750184, + 1155.6959946709715, + 1161.9159573645284, + 1140.801508471327, + 1146.4512910439826, + 1153.0138615913202, + 1133.9625661466866, + 1151.8597514381395, + 1162.7480289731448, + 1161.8840295935347, + 1153.2768159099473, + 1154.2600114249512, + 1136.0484755864504, + 1134.0829319295844, + 1145.3940450608297, + 1160.984288454035, + 1155.788270155092, + 1142.5518630415731, + 1150.6620680205283, + 1149.3081523665023, + 1145.8905839304966, + 1145.8112268333678, + 1145.6841210940665, + 1155.1210325524942, + 1161.4687167208083, + 1163.0616567651778, + 1140.0999618125593, + 1165.1027584381436, + 1161.119732420556, + 1154.7894023626573, + 1165.8058548582349, + 1151.9175221268035, + 1154.012685765148, + 1151.2853841653207, + 1141.7255037324262, + 1151.55753881564, + 1165.0620108063783, + 1145.8591615597268, + 1150.3647033049656, + 1138.2318022388731, + 1159.9382524025436, + 1149.6004293755393, + 1157.7873496095544, + 1133.845128007757, + 1149.6776745914126, + 1147.0663481512515, + 1142.4155224458846, + 1150.9710678450133, + 1158.7368791969636, + 1154.5647731030456, + 1157.9392717851672, + 1146.7414139214002, + 1156.6514936328838, + 1147.1218073271177, + 1150.1735341620586, + 1148.650664854858, + 1155.883638934799, + 1157.2534015708136, + 1158.535598431926, + 1144.3352516329708, + 1153.1927751023836, + 1157.748250327034, + 1152.318038593602, + 1140.038647193571, + 1141.6852314314417, + 1128.3771071399567, + 1161.415552746533, + 1171.8970468240145, + 1151.135593694607, + 1154.942148906969, + 1153.172866271143, + 1150.0456358462031, + 1158.891768423352, + 1151.2946592941141, + 1137.8837193788763, + 1153.8081055086896, + 1151.339033410215, + 1174.6103100463326, + 1140.5590490725908, + 1134.3719976336863, + 1146.219902497755, + 1142.4969080829328, + 1137.6173322912136, + 1147.5350364195203, + 1147.5857171736643, + 1148.241425400464, + 1157.980953145823, + 1160.172647964874, + 1134.1626122514242, + 1157.0699622484465, + 1139.6210819571015, + 1136.1485025672591, + 1163.4261203139613, + 1141.21589490065, + 1149.381856706385, + 1136.506052066434, + 1156.9843323257844, + 1153.5900712096, + 1151.0898190003538, + 1148.3961866140821, + 1156.354385057053, + 1132.6575931169905, + 1125.9439262260853, + 1139.5334116949125, + 1145.111215812314, + 1153.139705678469, + 1144.5335641196489, + 1134.6964799986345, + 1129.323416065194, + 1145.2637324473483, + 1147.676533377212, + 1144.8033700680273, + 1147.9535451991994, + 1142.3818357004918, + 1142.5607952102685, + 1141.2415721856282, + 1126.7878728895096, + 1148.1902250997882, + 1156.6106913392941, + 1145.7480389016075, + 1137.8472295587085, + 1150.760643657235, + 1136.6485042344157, + 1131.7280864326094, + 1146.661999403271, + 1142.3494633804144, + 1143.764328297257, + 1161.7968720208091, + 1151.5152343009001, + 1162.1554372060855, + 1156.7841256911988, + 1138.6645974263547, + 1154.9246644364066, + 1141.5531493095887, + 1163.830773283696, + 1135.5390845891366, + 1133.9687073311632, + 1150.4095786196121, + 1152.999954794014, + 1150.6703821831154, + 1160.6124116706915, + 1139.097495619947, + 1156.7260979355967, + 1165.7670986192024, + 1148.5068728131873, + 1169.6986838251726, + 1164.4959699684132, + 1141.051017277328, + 1145.6376662771797, + 1134.671793313805, + 1148.295233401966, + 1153.8393647253622, + 1154.6752504404355, + 1152.0492796386166, + 1163.1278958708278, + 1151.7225479063527, + 1148.8524159746164, + 1159.1308008101353, + 1147.0491204687287, + 1153.7847913634719, + 1155.6257201218248, + 1146.0778187852593, + 1155.0522948411876, + 1146.1322696469674, + 1142.9484773606146, + 1148.773873129233, + 1132.7210456472892, + 1130.5878452450215, + 1142.3190363966773, + 1159.2602720333193, + 1149.0371290300159, + 1141.7159647554263, + 1149.572267562349, + 1150.4833032049971, + 1148.3034184257106, + 1161.148003872978, + 1155.782553129037, + 1155.5415269315804, + 1145.9965874171116, + 1167.3933801316991, + 1161.5594017387248, + 1159.115781391696, + 1156.828526290919, + 1152.581229128527, + 1159.0055072156108, + 1147.2347952044724, + 1155.0691385039217, + 1160.3541720492456, + 1154.651289841447, + 1134.9986023542874, + 1152.4229310186336, + 1163.8215692915192, + 1146.0562829981668, + 1159.8882765267158, + 1152.8491709014145, + 1151.763793826492, + 1154.7341474378775, + 1148.6580376123004, + 1143.3992182188656, + 1160.9830648928837, + 1147.1881866981641, + 1168.7675673520944, + 1151.2678331704442, + 1160.822360212713, + 1148.8373291460698, + 1152.8128574047294, + 1158.8345000563227, + 1139.1986796740323, + 1173.7982994162003, + 1149.6339607275756, + 1147.3013065573214, + 1155.416682580312, + 1143.9733073236885, + 1143.1315734610523, + 1143.053131604075, + 1145.771558813593, + 1153.682882465133, + 1170.0091972390933, + 1144.5333093330921, + 1145.0129962119804, + 1156.7800091224346, + 1151.9913813714904, + 1152.6974631771955, + 1161.6190500538905, + 1149.7265069363852, + 1153.9402290578846, + 1139.521127345723, + 1159.6641098353991, + 1140.3393865475482, + 1166.8856350968367, + 1140.7018126610005, + 1157.8517098335456, + 1152.0918125237908, + 1149.5002969166492, + 1149.5048951568806, + 1153.6740329398801, + 1126.0641367795383, + 1143.127210441913, + 1165.2261104332697, + 1160.0488178653388, + 1160.472082981728, + 1123.8703263281761, + 1166.7066208520705, + 1159.6902527797934, + 1144.6269681256647, + 1161.4221514338653, + 1147.2091859392506, + 1159.4959590733663, + 1176.91100523367, + 1133.7124656495548, + 1153.101276740234, + 1139.002968175218, + 1152.519020950516, + 1133.4537817326393, + 1159.0544443855206, + 1147.8427711781258, + 1156.67727203763, + 1147.0879889471444, + 1145.5277268525206, + 1135.6393852485196, + 1144.2390360503682, + 1139.6792350902413, + 1124.427473593651, + 1133.4174999256763, + 1140.6817025110622, + 1134.6613233384808, + 1145.1621775828423, + 1135.034367880214, + 1145.5099339413564, + 1144.028787760971, + 1134.7013061085142, + 1161.6336199640639, + 1158.888447044353, + 1159.9688406004523, + 1176.5725865330994, + 1152.8888622850386, + 1148.5867681037162, + 1147.0037304927218, + 1145.7768600411123, + 1148.2109845854739, + 1134.973511278632, + 1165.5506292519026, + 1167.0716993350197, + 1152.9510166498394, + 1141.7024449846958, + 1140.192000028921, + 1147.978616875939, + 1139.3771682851605, + 1145.8305784367944, + 1149.4179707632013, + 1154.675499550457, + 1138.405612718692, + 1146.1941677912278, + 1154.47008196338, + 1138.943489084108, + 1159.090183584091, + 1148.8090733009287, + 1134.893077879048, + 1154.6704946998225, + 1152.7180980874903, + 1144.2362459480287, + 1153.4428487712148, + 1128.3101644094606, + 1160.0765218408897, + 1166.1429127581061, + 1152.055704661932, + 1149.5885823483695, + 1156.2647440974797, + 1147.339074371917, + 1144.4950577395196, + 1155.473674846143, + 1145.8873046048568, + 1155.558940586656, + 1154.813499383544, + 1159.9485606498552, + 1147.8069276013691, + 1155.6643140648482, + 1161.5280290699684, + 1165.255549409819, + 1155.3298228392996, + 1161.3437231434666, + 1146.7936548211412, + 1151.5685176384172, + 1169.2830386686803, + 1128.0488289072844, + 1157.5163298205543, + 1155.1257685795965, + 1151.79152290626, + 1141.2867747910414, + 1149.10711653677, + 1131.6064755901048, + 1141.8351224226192, + 1140.6319894992316, + 1149.3695275488467, + 1147.9799571901954, + 1146.5938437628693, + 1149.0107224432363, + 1166.724082202521, + 1143.378116011206, + 1147.941189642851, + 1156.3885970133854, + 1158.3009222107587, + 1159.4696770902924, + 1152.5340014516285, + 1151.0469508452, + 1169.4484958067906, + 1147.257814861169, + 1150.823858736883, + 1146.3782464129447, + 1155.1505766078265, + 1138.4877965168168, + 1149.8228013925186, + 1151.8849736171965, + 1151.1183611731137, + 1145.7769432126008, + 1153.128534206787, + 1156.8967682613734, + 1146.2163201741266, + 1142.4984697479633, + 1152.5402375097738, + 1154.6288258375525, + 1152.788913379317, + 1153.8356440710763, + 1173.4094571499368, + 1164.3312988073067, + 1141.7682277905249, + 1141.0977023425012, + 1139.0279759903258, + 1158.0350152699139, + 1146.5983138764543, + 1137.8894234917473, + 1152.7436208004292, + 1145.61013701898, + 1151.7808627539926, + 1138.5683650041476, + 1148.0565217336111, + 1159.3752393515492, + 1144.5539223721357, + 1142.6418418979804, + 1168.744585255312, + 1145.5738605093711, + 1150.9019478428538, + 1138.5059750346827, + 1149.7964391041935, + 1152.774114066529, + 1140.5225490494583, + 1138.5715455308793, + 1149.4921480546693, + 1154.2593054912084, + 1160.3052061165283, + 1162.9655923784123, + 1162.1488851421216, + 1157.2525327021926, + 1152.9318613592977, + 1165.024607873685, + 1145.8571785804434, + 1141.2055163988477, + 1155.206074985351, + 1141.0856108115668, + 1148.5723564193117, + 1137.6148595196996, + 1164.7720219235064, + 1140.9579333236868, + 1155.5580607048278, + 1149.123802716543, + 1149.6840101396758, + 1149.09163071982, + 1160.6093677841961, + 1169.6218918352936, + 1152.578637014413, + 1150.4155625649219, + 1148.1870297303135, + 1144.6469868491206, + 1143.2542667380715, + 1163.5102505907416, + 1131.5825326892746, + 1146.0887907666004, + 1168.8832585299924, + 1143.1953442574097, + 1142.4654796649465, + 1142.6000227840182, + 1153.7967158452109, + 1156.779564770501, + 1147.5988583058179, + 1147.7248548171615, + 1147.5593023796143, + 1134.8856805313665, + 1159.6466947077604, + 1150.9632636070041, + 1147.6286806149192, + 1140.1149076145464, + 1160.3425153988505, + 1148.8120529519842, + 1147.6803703179382, + 1128.4126248242276, + 1154.159681980869, + 1155.8889078252416, + 1150.0030697412685, + 1157.5098883133583, + 1153.219205246911, + 1141.5396018815231, + 1151.8610173486345, + 1146.4682592401182, + 1148.1147114184341, + 1161.7465085165004, + 1130.4617130292077, + 1136.163297701146, + 1155.1162657236475, + 1145.9577241452168, + 1152.6995248534306, + 1147.5415513701557, + 1145.7820358137349, + 1160.6569441551771, + 1156.8832519629982, + 1147.615287562807, + 1144.2036338164564, + 1130.3833541396968, + 1140.3443688617926, + 1148.0306588967744, + 1139.0671892011676, + 1147.3573634341785, + 1150.1481761128823, + 1155.6017834102743, + 1159.9197091053443, + 1150.9373033338916, + 1146.1696521289273, + 1150.5184873750231, + 1149.5328137594347, + 1158.6562519088577, + 1158.0984993098725, + 1150.5333571232375, + 1154.847462540751, + 1156.137347081578, + 1154.022569178059, + 1141.9381541026335, + 1166.3267218619856, + 1136.0251845714288, + 1161.2739368074422, + 1154.7192334626295, + 1165.6047607840162, + 1131.7975459075585, + 1141.441810916669, + 1153.0184044921982, + 1160.5372414442081, + 1134.4049342297455, + 1159.9701858470182, + 1142.560736996514, + 1160.7815480142806, + 1146.33339998127, + 1149.0752118349262, + 1153.3167908858522, + 1136.3088477637846, + 1158.2468437043256, + 1157.681040541027, + 1163.1152895988048, + 1141.1133347745088, + 1158.99894093831, + 1142.4824515265987, + 1150.7573223364288, + 1156.2835240844297, + 1155.8124906041278, + 1152.0030506492046, + 1149.9658303224278, + 1150.9669713098428, + 1147.0294336349464, + 1147.0806375783104, + 1139.790764827335, + 1148.5582963388845, + 1142.3667843445148, + 1152.01165332922, + 1162.0616664611816, + 1149.274826337039, + 1131.9664640520257, + 1124.8637312094106, + 1150.856417700932, + 1157.8674201760095, + 1134.4529343297909, + 1162.4792714866576, + 1158.709012710433, + 1133.9403736902427, + 1163.0137401841953, + 1143.0703597014879, + 1134.5698539581813, + 1138.0558602463823, + 1177.279115611842, + 1142.4218952300625, + 1174.2322948248616, + 1147.5474113369796, + 1140.3100752471992, + 1129.5162034835107, + 1164.2710188524284, + 1141.313957985468, + 1148.9633987855004, + 1133.0780006551738, + 1155.9839005210022, + 1173.7423431367024, + 1135.5903503900633, + 1166.9317860165013, + 1157.244479058756, + 1150.6101882165437, + 1138.7427439906185, + 1156.5868706732188, + 1158.8275366726316, + 1156.020252866844, + 1141.248920343293, + 1150.8463873799426, + 1138.0407903728944, + 1141.9585953982905, + 1162.466600915855, + 1152.1828222810025, + 1160.7385114770652, + 1150.6369879334793, + 1140.9924337833488, + 1158.8970273680081, + 1151.0732205629824, + 1152.8004922561024, + 1148.0079895951178, + 1146.7387819416952, + 1152.5642466027377, + 1168.4661198433712, + 1161.0450710500415, + 1150.2118791707505, + 1153.8477444725077, + 1156.0644543587036, + 1140.8181792490734, + 1152.9711487094683, + 1155.357146932388, + 1148.031942454866, + 1158.7751017872836, + 1145.9342179346766, + 1154.9638417400745, + 1157.3664194173691, + 1159.6640717104465, + 1159.2127290797837, + 1145.6405805292316, + 1142.350721541614, + 1152.4894546409562, + 1147.466205787001, + 1159.569584189366, + 1155.22910392178, + 1138.3972329435567, + 1141.8456844512873, + 1158.8981568305771, + 1143.381706546469, + 1146.6839365532173, + 1154.316880512843, + 1151.933237763175, + 1149.8741066130253, + 1151.0825195775342, + 1151.9548129359084, + 1128.1502246137559, + 1151.279296070134, + 1152.9912389887604, + 1158.8325725925524, + 1150.6772143806786, + 1149.1192720679092, + 1138.577693295987, + 1148.318327936747, + 1157.6121436554517, + 1156.7826501655088, + 1146.5040800710456, + 1160.295349919406, + 1153.066690717448, + 1148.1383622683777, + 1137.2092775600336, + 1164.448081377917, + 1138.8928640614602, + 1151.2516017650773, + 1155.155696648912, + 1136.7641392398434, + 1159.988630419374, + 1155.5622244497217, + 1156.5349721137943, + 1146.9247299398785, + 1160.2722274429068, + 1141.9194484628913, + 1141.6321962312413, + 1155.7457046009886, + 1158.6093979788018, + 1157.0656151133967, + 1138.5553404758705, + 1148.0308780900366, + 1156.5894095336891, + 1132.7306929483354, + 1155.0158707905691, + 1156.514760693708, + 1152.7929920387323, + 1154.7970394739702, + 1155.6147584561472, + 1139.65809418829, + 1145.6694331328345, + 1131.935738473423, + 1136.9646341313235, + 1146.9699415213129, + 1163.8613079428033, + 1149.0734784828253, + 1134.9416575460084, + 1142.3736259790903, + 1143.9147590182902, + 1163.4621574455057, + 1159.9218583238917, + 1152.6568521520019, + 1157.0825039710317, + 1139.5985826880346, + 1156.6224964268076, + 1147.4636731072283, + 1150.573647231551, + 1169.7927193705957, + 1161.1353440876512, + 1144.2041102089506, + 1146.6007763401788, + 1160.0249544754547, + 1148.278904244331, + 1145.2876473482156, + 1139.3602910218904, + 1139.061595407522, + 1167.6279858714163, + 1162.200982300193, + 1155.7430777308743, + 1160.9774319305884, + 1142.634008972015, + 1153.455293338517, + 1151.1728647031628, + 1164.6085340410739, + 1156.628984797176, + 1144.0181193698777, + 1166.0874045424068, + 1141.0675247410147, + 1143.6892026609778, + 1137.3321065626028, + 1147.6167134291156, + 1150.8706437599976, + 1151.5780889781788, + 1146.6477901099431, + 1131.622995152634, + 1150.601647712217, + 1151.0195907532109, + 1161.4782176695269, + 1145.2312834380225, + 1171.6573821169743, + 1153.5026126638018, + 1136.6816553891722, + 1145.6504846186897, + 1136.734924662459, + 1151.933187644456, + 1139.4598838881736, + 1154.5912971976811, + 1159.2721331395044, + 1142.2201264112584, + 1138.3635891158444, + 1151.5434025928987, + 1145.3898371873263, + 1132.3481130823602, + 1151.8344621314739, + 1147.953461070532, + 1174.2523971497412, + 1147.1534620640023, + 1149.4216590110925, + 1157.5568945940684, + 1159.2293531644746, + 1173.5830400010552, + 1156.3776541027783, + 1162.137197962491, + 1159.3368038799038, + 1154.763476252822, + 1154.6217563225996, + 1151.6474087023118, + 1160.879881255124, + 1148.5118023434434, + 1157.2882599277107, + 1157.9047413532094, + 1170.352786353748, + 1147.3136491606006, + 1142.1239740026072, + 1154.6104071660643, + 1143.8191970449643, + 1156.2836825400684, + 1149.8694535366126, + 1153.7548370063512, + 1131.3912517216756, + 1162.251371345287, + 1143.2479336866313, + 1141.398399238009, + 1138.5401031708095, + 1158.3270531215826, + 1156.251043928847, + 1142.9614450430604, + 1144.763404485912, + 1167.6707921803488, + 1147.89985855502, + 1142.6774057064808, + 1150.2774354192388, + 1151.3669046409857, + 1155.6861064216573, + 1153.2733163899068, + 1144.1201124853346, + 1153.1254208999303, + 1139.7474471503272, + 1128.0306142494912, + 1154.3740074515836, + 1138.8599621090725, + 1152.0911535912328, + 1157.3930388895371, + 1161.3085367925362, + 1165.5581416657749, + 1151.2362565908738, + 1159.3339881026316, + 1163.609758289597, + 1143.4438686112107, + 1151.7429723585044, + 1152.5429927413304, + 1148.3736813689711, + 1149.1782397532209, + 1156.21582922753, + 1154.531875037082, + 1162.1240527955142, + 1127.383917600199, + 1153.812132458841, + 1147.4649086089007, + 1156.2010775483661, + 1141.9850646188438, + 1142.1158033784118, + 1141.7605365165098, + 1154.4780804519514, + 1146.929475346445, + 1159.1501517444528, + 1154.6058787209768, + 1158.7967925784508, + 1145.9269196589994, + 1151.3653723124628, + 1155.7924211634254, + 1147.367897665098, + 1155.695488772137, + 1141.1710774873693, + 1159.9709082034906, + 1160.3786824427555, + 1146.7571096399076, + 1149.061330691358, + 1148.339278312757, + 1154.940371673324, + 1144.4596914461797, + 1168.6793628278303, + 1138.6269440874512, + 1158.3374245202363, + 1159.6158786826215, + 1135.8814464766067, + 1138.8158604808168, + 1157.0764199318232, + 1131.5738357044108, + 1152.0584991985413, + 1129.3545673565602, + 1161.36185023072, + 1137.3698458395625, + 1143.5076836692674, + 1144.0030457576113, + 1141.97325890515, + 1156.1207965508097, + 1132.781544818212, + 1152.6434639743327, + 1154.3130425591878, + 1153.4778429748255, + 1152.8602808084927, + 1152.734448517386, + 1147.1883075165683, + 1147.0708448295327, + 1157.6811401078855, + 1164.8873050670568, + 1159.1763409629125, + 1163.0101078506207, + 1148.4548426744775, + 1151.825131144739, + 1142.0859959134257, + 1162.1691914656155, + 1140.1765585305407, + 1150.831051185469, + 1148.8935134749597, + 1141.9991255252799, + 1165.349173273574, + 1147.1067012408562, + 1151.35604656437, + 1145.9978283266482, + 1168.0882842717012, + 1141.9815394721552, + 1167.543502439634, + 1174.8709737083727, + 1144.493924661573, + 1149.3654396218276, + 1143.641112567098, + 1162.8120938564086, + 1145.0015687969037, + 1146.1363856162473, + 1153.583828042614, + 1154.7388328784439, + 1138.7659506224873, + 1152.2637282211087, + 1136.2752873258553, + 1157.5166763902764, + 1162.743553394749, + 1156.0889174865447, + 1154.8434717905634, + 1165.951091181991, + 1152.3133735803108, + 1152.6217639608378, + 1148.0636826853613, + 1149.5005263507169, + 1153.528993368995, + 1147.0594988404425, + 1164.7986816249017, + 1154.8333479086025, + 1126.5441196570625, + 1160.6066835232787, + 1155.2840327127747, + 1148.553981257673, + 1150.4611999932963, + 1144.9054861310185, + 1142.698259755089, + 1144.1149964126976, + 1144.7865830900512, + 1154.261956634817, + 1142.7093964303842, + 1128.8183785573144, + 1145.0832699906346, + 1154.2886664562343, + 1155.523828193477, + 1155.905080758875, + 1143.912499454526, + 1137.8135925413244, + 1142.0452054922105, + 1145.4668207731904, + 1148.3880519637646, + 1151.8454512084152, + 1150.5831663322608, + 1171.4622056578946, + 1152.84054006415, + 1156.617024816327, + 1138.9261516210368, + 1158.3404996613187, + 1151.0804851547077, + 1135.177959187662, + 1160.5971456933123, + 1154.3127437430273, + 1148.9225687764074, + 1141.2439769390119, + 1137.6804195610496, + 1158.6753330349086, + 1161.4693655572787, + 1164.376713920722, + 1148.015807348029, + 1162.6220916642371, + 1161.758879808732, + 1160.606335907076, + 1152.2445319797396, + 1145.7154758359898, + 1150.5206900015744, + 1169.4157212854982, + 1150.09328637023, + 1151.689155129026, + 1144.876172006709, + 1169.4561679985516, + 1138.1710388839156, + 1151.447313778343, + 1145.5370994951813, + 1145.829733716673, + 1147.420426043274, + 1149.3424449379168, + 1154.7781729695478, + 1159.1997656740173, + 1172.7562716006323, + 1154.5194401301312, + 1156.74489979095, + 1138.4728046466653, + 1160.2586775359505, + 1151.2511286292518, + 1149.8745115096337, + 1159.1150690160919, + 1169.2239502412951, + 1143.0966317599605, + 1158.3363484087383, + 1163.0490837427078, + 1147.6540735521007, + 1175.7442102255607, + 1144.485884123146, + 1129.7215036497362, + 1137.3890059023436, + 1142.413425343475, + 1123.743057355583, + 1159.051945380694, + 1142.6023668760195, + 1149.7325866993137, + 1149.3341964130748, + 1158.3093291258542, + 1148.589582988382, + 1158.1780429446296, + 1150.2198550636554, + 1141.2660862162425, + 1162.418474759192, + 1132.7941316278416, + 1157.374243512006, + 1147.5382498806619, + 1156.5788510384382, + 1157.184667335804, + 1150.5190843032901, + 1154.744808031719, + 1145.1113279171593, + 1145.2759681242483, + 1153.5236129743944, + 1129.4192432980474, + 1146.9368916375902, + 1160.120149098676, + 1161.9881976705615, + 1153.812430572495, + 1139.4826584393786, + 1140.5764735270222, + 1157.2038073516023, + 1151.951942196433, + 1142.7166002027059, + 1140.5670517345325, + 1156.6796656848796, + 1137.8276410434664, + 1152.9733233287368, + 1151.6997077919605, + 1156.4592764088352, + 1136.3121171784474, + 1144.2444928337468, + 1158.1955841533409, + 1149.5482435779347, + 1155.1152365611138, + 1170.029068306345, + 1139.6417966841614, + 1151.085426066648, + 1146.4719381303285, + 1144.0279202194272, + 1159.8545057092347, + 1136.562866006618, + 1159.4339862393822, + 1153.1639094021486, + 1145.0446101071404, + 1134.4186681318397, + 1142.8425997330949, + 1155.1302176999297, + 1145.2640737767347, + 1144.991177386038, + 1164.0925936476438, + 1160.4945113674032, + 1148.7705253108802, + 1151.3525835353435, + 1149.4751023072176, + 1155.6324905095632, + 1136.5316481198727, + 1157.9109946334731, + 1134.0269261850044, + 1152.593831926559, + 1146.5945176220355, + 1165.974441639286, + 1156.586630337946, + 1149.4941377931164, + 1164.7538743830196, + 1146.321385757738, + 1156.3303650413022, + 1162.4569207891304, + 1154.2934383688557, + 1145.1102937668581, + 1141.4738488523537, + 1142.4655184555547, + 1143.9306587248984, + 1157.3697160013023, + 1145.3614104471815, + 1150.7289174785315, + 1148.0237266183779, + 1153.080151816187, + 1156.7485188858313, + 1149.3483107288928, + 1152.028958589308, + 1152.1935270029653, + 1128.7320724127787, + 1164.4742768198028, + 1155.2596888896767, + 1139.4311442484952, + 1146.3135368492515, + 1166.363384977505, + 1148.4473303127252, + 1154.523550082654, + 1152.081265467362, + 1132.4374084282151, + 1148.4558995568334, + 1136.6940002999238, + 1160.6378982533038, + 1142.8911708351393, + 1152.187061303377, + 1136.1118000085125, + 1146.433968585743, + 1148.1267572782067, + 1152.808267563165, + 1161.484648548875, + 1153.2163552705472, + 1157.472114213817, + 1154.225813097447, + 1152.2480084466729, + 1147.449332273938, + 1141.0915051486581, + 1149.7783040358736, + 1140.3874285489003, + 1139.2826698218369, + 1150.025904501132, + 1148.8484900106218, + 1159.5751555264656, + 1160.4706359021934, + 1153.1920898252115, + 1164.9173455487655, + 1158.4524332432616, + 1141.1335673097467, + 1147.3960551460655, + 1150.4101650456566, + 1167.691454753384, + 1144.9253779347853, + 1155.1692497527224, + 1155.492241544089, + 1148.2666344819315, + 1140.208604116765, + 1118.1102473313902, + 1152.4952318614617, + 1164.3196048272366, + 1154.4931337160979, + 1148.2466878917126, + 1146.2237014131383, + 1164.9434478996636, + 1137.985149086401, + 1157.5648541496275, + 1146.3602304901895, + 1154.7457703796858, + 1151.327358273629, + 1152.9944742555867, + 1151.5297549649515, + 1155.1322654292119, + 1157.1809278219512, + 1163.7789202222436, + 1154.3098002155082, + 1140.1199471718353, + 1144.5316754989353, + 1126.0095923529784, + 1143.5147225361625, + 1136.7272893227248, + 1139.2705871900587, + 1148.7018554132103, + 1145.7249897273668, + 1145.7802386414892, + 1137.9880907812667, + 1160.2093175809364, + 1164.2621744136138, + 1143.8523438804827, + 1150.5417478885538, + 1162.8875553277903, + 1167.1385526780962, + 1165.8868351845283, + 1151.5692756400965, + 1142.3518095462632, + 1154.6772164575168, + 1140.0543496636046, + 1153.7037981579103, + 1148.3684224187434, + 1161.9665733378872, + 1156.8564050309674, + 1155.1368754080363, + 1153.8459944948377, + 1150.4529007872509, + 1167.123464193391, + 1153.269822411985, + 1165.4442900895615, + 1161.3961919363082, + 1156.7168295490183, + 1154.5860066008495, + 1151.0377194293692, + 1155.528583960322, + 1160.8234915607077, + 1148.6985820275074, + 1162.5345412476725, + 1164.4926208226225, + 1155.9401156663043, + 1154.396309991001, + 1159.1292479013384, + 1138.8574091402675, + 1136.5160675093462, + 1124.315996617926, + 1155.1256944903073, + 1163.6807824160373, + 1153.7367035099826, + 1153.492668906299, + 1151.037211106586, + 1145.2745602620737, + 1157.7671187532387, + 1145.4167402050457, + 1161.3129438692192, + 1159.9637240973166, + 1153.8728216406191, + 1155.6792665755333, + 1135.7849561959322, + 1152.2956986525426, + 1157.2204674731588, + 1146.0884468350096, + 1136.317300276649, + 1159.5607042922945, + 1141.0696607015743, + 1139.245535287107, + 1134.2681040140453, + 1153.8246535723379, + 1147.8852144588882, + 1164.1682990241063, + 1138.287043676745, + 1135.7314353457484, + 1160.5786793427048, + 1164.2792750112105, + 1163.8426451205296, + 1155.379942317531, + 1167.7498107035, + 1148.23711787207, + 1146.1184883695973, + 1145.7732101044903, + 1156.4529119268097, + 1162.5050798987454, + 1168.7559438259461, + 1158.739748488724, + 1159.120494546205, + 1134.309704973635, + 1161.1555503376446, + 1129.8710474251557, + 1151.836671929941, + 1155.3277244724195, + 1138.443160175539, + 1162.0140666679683, + 1147.5831066948108, + 1154.2043027141578, + 1152.2552480502195, + 1154.878801162212, + 1156.7143350183878, + 1165.0857880265553, + 1156.8506450648206, + 1143.9097750633453, + 1151.4086761781489, + 1152.0415660922226, + 1154.672040635609, + 1150.508418010486, + 1154.6602866490282, + 1158.2825951405725, + 1149.6118062268747, + 1161.8669013107005, + 1138.8229475778123, + 1153.2176646042906, + 1141.8248474187642, + 1149.0138798232863, + 1158.8530357513873, + 1155.1211016946195, + 1163.4837680407165, + 1173.8834955327436, + 1146.2543332266675, + 1156.0391456727086, + 1149.6424892540574, + 1155.9460150408722, + 1142.7066417996116, + 1150.499106903309, + 1149.7760540771721, + 1137.417721012079, + 1143.9886348821626, + 1161.3207142822237, + 1147.1450597740056, + 1141.575730591118, + 1155.135146903765, + 1144.3847673952127, + 1147.5739998323554, + 1155.7354297780498, + 1138.1370930946991, + 1146.2735273989501, + 1167.0170938413082, + 1159.1252275482577, + 1136.4237217426619, + 1151.7107473726885, + 1152.639268666191, + 1140.2694990738994, + 1160.2804539970161, + 1147.6161940582128, + 1145.1724707463875, + 1135.942914403176, + 1142.8602208626776, + 1158.1931649923015, + 1150.3341068116797, + 1129.1775994627126, + 1140.6577193328158, + 1155.1938439267308, + 1151.9441589671399, + 1126.9884773097117, + 1144.7226680999381, + 1138.396071577308, + 1136.3070701340068, + 1165.598283362772, + 1152.9284884422277, + 1144.5731381539006, + 1131.7413778828054, + 1151.5250077767266, + 1156.6596535639467, + 1142.9399998153708, + 1147.2196204675647, + 1140.276179839858, + 1148.4045791532085, + 1164.8008242279143, + 1151.9978265809902, + 1142.8891684795778, + 1143.7415486427856, + 1147.184583975602, + 1175.8846246852358, + 1160.9636459167875, + 1164.6560267546154, + 1154.5385581004568, + 1153.4562963298697, + 1135.0840336749118, + 1167.9645197335146, + 1126.8595799663806, + 1128.7659287533563, + 1160.5523632925244, + 1170.0715204793785, + 1158.1373728260253, + 1150.6167688519083, + 1152.8670054042561, + 1144.6740878982023, + 1143.3951291116553, + 1151.2844590548586, + 1139.1366314583743, + 1144.2381738370264, + 1147.0267062601956, + 1159.0232657155434, + 1151.2408338435002, + 1146.275538262597, + 1158.1255833357638, + 1153.8550954805346, + 1146.8203893892112, + 1140.5402720053737, + 1154.4593048660442, + 1149.7442517258896, + 1144.1177028347586, + 1142.8092301594932, + 1155.6083112335957, + 1144.9865359330136, + 1153.3693782256998, + 1144.3932297895833, + 1147.1494833730721, + 1141.9940212765803, + 1164.3813873861072, + 1144.077090464023, + 1135.1939940414495, + 1153.450002421423, + 1151.1056887675313, + 1152.9476103547017, + 1146.2535314669753, + 1143.7673789026492, + 1149.34401924704, + 1147.8316747519054, + 1148.245067801824, + 1149.7320980378265, + 1145.5245414010367, + 1168.1868768473869, + 1159.1393906238552, + 1159.745053609969, + 1147.274418686528, + 1154.097207487535, + 1145.3911596420426, + 1171.2383390064456, + 1150.4192345931367, + 1136.2142240083535, + 1140.452147002381, + 1156.1978556285856, + 1143.9862505126787, + 1138.4225926754696, + 1149.551728811234, + 1146.4918101918693, + 1158.4466968376996, + 1145.8661391789713, + 1138.2902840704035, + 1138.3719347948347, + 1154.4488630075962, + 1144.6670373583863, + 1155.5912990188754, + 1147.0994745759126, + 1150.174613739101, + 1145.7235465791423, + 1141.0986112891023, + 1145.6800288574136, + 1137.6610795513132, + 1140.5530120038322, + 1150.8956486330626, + 1143.6813261625493, + 1149.7361466097134, + 1149.4888917536641, + 1137.9223100510078, + 1148.4015772300093, + 1158.2116153489656, + 1158.497399660681, + 1153.0931811910611, + 1151.4049220001893, + 1155.9419133845406, + 1145.3544688268269, + 1141.1255550995902, + 1146.9358113845783, + 1162.3540944445344, + 1156.3610314266305, + 1149.2889450934638, + 1164.9793220422487, + 1163.6632616260622, + 1163.8632071794102, + 1149.8088034298705, + 1136.7898351371562, + 1158.6641054969707, + 1162.1827851325227, + 1155.900371730333, + 1157.4785908136735, + 1144.8605085763543, + 1158.9861223825758, + 1161.3407937658012, + 1154.5527557766832, + 1124.8176022622804, + 1147.4726852576277, + 1142.0237874109791, + 1157.6537214533048, + 1149.6075227630765, + 1147.709415603198, + 1162.1488811575152, + 1165.6552248315704, + 1155.931734654713, + 1144.6309990681862, + 1155.6090887213334, + 1161.701062607134, + 1155.779175618098, + 1146.5929778911716, + 1148.7223045491899, + 1159.1079595085596, + 1165.7018196603055, + 1159.455907156763, + 1150.2149493897907, + 1145.1044993306366, + 1154.8909394999844, + 1152.8315606140386, + 1154.3170804304623, + 1149.0905026395696, + 1146.0346613646273, + 1140.6931493701438, + 1149.0913510945663, + 1154.1036980742504, + 1121.3404434564386, + 1134.539679897211, + 1168.1057837350263, + 1155.0061880000926, + 1141.8433169751574, + 1144.1611811217745, + 1151.3785705967753, + 1142.5290834010318, + 1168.1389598713388, + 1154.3408622249895, + 1144.048080730528, + 1131.3740464595446, + 1153.3944870738976, + 1151.2903744755165, + 1163.9937203006803, + 1171.7090317820227, + 1162.3612279271567, + 1148.0824818903568, + 1166.911083071812, + 1149.6677415765887, + 1158.2640529671633, + 1157.5490570415072, + 1155.9737959133552, + 1161.1480555407957, + 1150.1431730057498, + 1153.3033250494386, + 1151.8026939421532, + 1143.5890346371732, + 1173.1769903865033, + 1160.0634587620361, + 1152.851188674096, + 1147.8858554643657, + 1144.8960364153857, + 1132.6487857770712, + 1148.0238210862099, + 1140.9730693063862, + 1135.9276529679787, + 1151.0499210213848, + 1141.8416123569953, + 1142.350914653649, + 1153.5093582594136, + 1149.7103319985274, + 1136.3606677217476, + 1145.5168157834025, + 1154.7795416610463, + 1152.777589253334, + 1136.9621469232632, + 1129.3029339375782, + 1157.172485863735, + 1159.6313245646259, + 1144.7867048074845, + 1160.1838082723766, + 1157.6689658407056, + 1146.5554360130716, + 1167.7644437343222, + 1148.2720302324776, + 1159.064684649959, + 1152.08648982265, + 1158.6983817845523, + 1144.8458518545062, + 1146.1777524810332, + 1148.2865190398509, + 1150.5814844020463, + 1153.7793315661984, + 1151.5047126530617, + 1144.3823451118276, + 1162.2192050741826, + 1180.3721957336588, + 1161.669452243318, + 1161.9430767583447, + 1155.8822960047933, + 1162.0711007999296, + 1142.5420930728724, + 1157.1602849119352, + 1161.530653673001, + 1154.0293828910144, + 1160.6057472270327, + 1122.3378892211294, + 1152.3493710667003, + 1137.2859304551434, + 1153.934589101718, + 1154.1399705481242, + 1152.79020551407, + 1146.4868108429753, + 1169.345472692454, + 1136.5676429801226, + 1154.6411880186733, + 1128.2809210949254, + 1145.4814462951936, + 1137.6629609993506, + 1139.6574550983753, + 1160.1561572482187, + 1145.1740404982736, + 1133.569873442279, + 1169.912480542254, + 1159.9493468357714, + 1143.3384650958164, + 1162.499101889883, + 1152.5254536856405, + 1161.4640827062788, + 1156.0494355595313, + 1154.7242562291744, + 1151.0920938642341, + 1143.0942054203524, + 1149.9181038260524, + 1165.5715170894175, + 1170.866359305803, + 1153.466536235315, + 1148.2503776175895, + 1170.9852912933572, + 1151.5600548949185, + 1157.5993922512948, + 1135.3712028858372, + 1153.3986631672938, + 1155.79805300718, + 1161.4272706133554, + 1162.6803682117886, + 1154.347774731906, + 1150.28606342906, + 1152.8010150951998, + 1148.0796821253978, + 1158.950350925224, + 1145.6382328388106, + 1149.8380025563563, + 1155.711585926051, + 1153.0278764168052, + 1139.0895878789315, + 1137.3165626029995, + 1150.7835138861308, + 1132.594497515806, + 1149.5109929526843, + 1147.4305921976922, + 1154.2002155658506, + 1140.200602735305, + 1164.5205405378676, + 1142.5871418044073, + 1140.6884254436031, + 1125.625811097891, + 1154.907712981263, + 1156.1558230380717, + 1156.0987994478648, + 1150.940543468977, + 1161.6135987068571, + 1144.348042536454, + 1144.0654090542578, + 1158.9324306812039, + 1170.7266314138556, + 1147.142187884184, + 1156.2003533648829, + 1149.4010246735447, + 1163.2427519636976, + 1160.7041014490612, + 1141.7056510119253, + 1162.2235826117953, + 1147.3642152259542, + 1144.486359510954, + 1151.9421477723458, + 1155.6727718300835, + 1153.291629191525, + 1168.0544435571903, + 1167.136294266144, + 1144.6283114518396, + 1162.6695378875088, + 1150.766743230749, + 1169.1422764364247, + 1136.6353290556885, + 1159.4336211709572, + 1160.2829539913034, + 1149.8089809683472, + 1161.0031257913333, + 1155.8173775375271, + 1143.353798081242, + 1140.8449955263045, + 1136.0207209962346, + 1158.872261042767, + 1146.6124744848007, + 1146.5196804177936, + 1143.1086302007539, + 1147.4420412657457, + 1140.743565124579, + 1141.8943305885177, + 1151.7213596693114, + 1154.596219374358, + 1147.1218851001315, + 1163.6534933934743, + 1136.5262830188346, + 1141.815756945808, + 1144.3830375279647, + 1165.1204886474866, + 1160.0365834570048, + 1154.0800077333977, + 1145.4529162512674, + 1136.0388627918703, + 1155.989184687495, + 1146.2832036503212, + 1143.469218693908, + 1157.3718354289128, + 1162.0548572339455, + 1136.7533668090205, + 1142.5202782881208, + 1155.6080308637497, + 1147.9932772917161, + 1159.1963648617866, + 1161.6906326536407, + 1156.47952332333, + 1145.1141737747203, + 1159.5526958591404, + 1154.7958860171834, + 1163.1405063218028, + 1133.7128976038512, + 1162.7552795061774, + 1147.2443394786417, + 1157.806782774295, + 1138.9453226051041, + 1142.719019109704, + 1164.2003804147726, + 1155.0275658846672, + 1148.6903355127122, + 1165.2757453809957, + 1151.4030289094874, + 1144.866234565118, + 1158.7537978887342, + 1165.074727168612, + 1153.2251123360636, + 1142.3274319159618, + 1146.7527651777048, + 1163.7330007829203, + 1140.6740467454542, + 1142.9261610298427, + 1157.0901939262894, + 1126.113314596915, + 1143.4468655889398, + 1165.8450999948257, + 1148.3058931356618, + 1147.6237302747763, + 1161.4583676979548, + 1164.3627029149754, + 1144.9745905095708, + 1151.5706921803696, + 1152.7597421770317, + 1152.9708596622977, + 1121.617193565622, + 1144.2416057333335, + 1157.8667603555075, + 1159.8761793249228, + 1150.930461724648, + 1146.5300645867173, + 1147.5218159525411, + 1143.9792406048402, + 1130.2398106502294, + 1155.9501108527636, + 1138.4288608871402, + 1158.6922421361558, + 1143.3347560903635, + 1136.7619296080002, + 1147.7738075805344, + 1152.2881329022416, + 1161.1984242892045, + 1138.7140373155041, + 1147.8678230616933, + 1155.9779184891713, + 1151.2884466847497, + 1155.820071327556, + 1154.6920494928156, + 1147.0545973909511, + 1157.266823830137, + 1146.202892938911, + 1159.9232845430533, + 1146.5043026025746, + 1170.737944386362, + 1158.3418049468783, + 1163.4334708839563, + 1160.615987127566, + 1157.5571632640238, + 1155.575254661198, + 1145.859997625214, + 1153.7877444576911, + 1152.3683480700224, + 1155.2682991198067, + 1155.3780718548633, + 1149.30257158231, + 1141.0369530398555, + 1156.409439880838, + 1146.312542937937, + 1155.4231404887246, + 1154.7204644512922, + 1148.3978408362098, + 1176.9713922418534, + 1158.0478489460982, + 1156.9238565460766, + 1159.061081294634, + 1149.3300664977637, + 1154.77167713862, + 1164.1183057186618, + 1158.3438398914961, + 1157.7034563694042, + 1160.616687317448, + 1169.2099678780355, + 1158.0713441012388, + 1161.1319735182974, + 1159.248292946026, + 1149.7899581012844, + 1153.2972099824644, + 1163.2654766617793, + 1139.4649178948487, + 1145.912084276344, + 1143.2267156023263, + 1136.8633556973687, + 1167.3169874087714, + 1158.3518898226914, + 1173.5258726384702, + 1137.3072563569506, + 1155.9203191514273, + 1168.1811295762298, + 1167.0373663631337, + 1141.9928145604806, + 1151.3887876868785, + 1148.0217388425629, + 1153.094179413408, + 1154.7738314947944, + 1169.4734279764643, + 1152.5830940729388, + 1159.8508083857757, + 1153.13089300533, + 1140.6855184180376, + 1149.5855733633748, + 1152.3061831189752, + 1160.809133285348, + 1153.2537665347384, + 1152.6965015827527, + 1137.2050405782622, + 1124.5655886286886, + 1158.84261111921, + 1141.1371258233673, + 1164.2360837344145, + 1157.6470111228628, + 1140.0014340410564, + 1145.0472132522384, + 1150.2191632046515, + 1152.9870737225992, + 1157.5363018723642, + 1142.4077454025353, + 1128.7075305021622, + 1141.9486302979644, + 1136.7990504437785, + 1137.985372945902, + 1156.325646394527, + 1153.809283846528, + 1164.9752434599473, + 1155.8546885606495, + 1167.7026742883922, + 1159.8365473658002, + 1148.7268514331, + 1160.7388352667563, + 1163.9307596857277, + 1143.6089503107546, + 1147.1752550835727, + 1145.2002414610743, + 1170.206995287996, + 1166.1634613713707, + 1142.997018630879, + 1146.718721930858, + 1165.688392434346, + 1149.739069942922, + 1148.5282874146442, + 1139.7067014684628, + 1150.871347302093, + 1149.588395595241, + 1156.6443705733739, + 1145.270403057537, + 1149.156192413343, + 1144.588053532914, + 1165.484213741074, + 1151.8842101474054, + 1138.0576562950646, + 1140.355401716705, + 1144.356029219033, + 1146.9474584147265, + 1148.5644872740716, + 1142.9827606508147, + 1152.933249313394, + 1162.4462193110817, + 1152.6086275912146, + 1134.9701855396665, + 1156.5337997663837, + 1146.4716400388472, + 1148.2546271361164, + 1167.947060609198, + 1147.436890310413, + 1160.1286326711822, + 1161.9660745086821, + 1151.1679831960007, + 1152.41664744895, + 1157.070643901706, + 1160.129859019652, + 1144.1221475989316, + 1150.6923451785083, + 1139.1766420291535, + 1151.4357823963678, + 1138.4400789659196, + 1155.3593334894638, + 1160.4048885505752, + 1154.408523273472, + 1165.369041046295, + 1162.3283492395524, + 1151.3042778805655, + 1152.2066460896565, + 1140.0608978188848, + 1142.6617679996234, + 1151.013914214401, + 1161.4935839686298, + 1141.2081231622599, + 1136.5189899286488, + 1150.8370652533256, + 1154.7591360972506, + 1146.6993186972966, + 1147.3978835807732, + 1159.4961340264647, + 1155.913096041882, + 1155.9875220865572, + 1143.2203207266368, + 1147.4073608958356, + 1159.9205552709943, + 1153.9839658066342, + 1161.7308329672217, + 1155.826255098201, + 1150.2983598256046, + 1153.8890327741894, + 1149.3854829172903, + 1143.0543132512942, + 1150.9663354252973, + 1155.4625265425404, + 1134.1849965783692, + 1139.1421563221659, + 1144.3839790849058, + 1142.8518379917227, + 1151.180342429113, + 1148.828442672533, + 1150.931893544973, + 1145.3575739558642, + 1147.4542135384395, + 1158.9731756876756, + 1168.3849313979576, + 1152.3786482144712, + 1147.7213350288287, + 1139.6060133961125, + 1154.5778379321373, + 1156.4702639154868, + 1146.7031395540885, + 1130.5430218850488, + 1130.8640495733027, + 1162.69241105478, + 1148.844418200458, + 1150.46396925323, + 1148.6551369936162, + 1149.203907974406, + 1132.9310847039537, + 1154.8501542171498, + 1133.2286729196378, + 1169.8803613427026, + 1176.1798465387678, + 1143.4925647858443, + 1135.0538870117555, + 1152.8413390210208, + 1151.197198032099, + 1146.9390159256297, + 1148.3589545856557, + 1150.0658725179424, + 1146.7676300144767, + 1163.5964048020955, + 1159.181296235734, + 1141.6768316423897, + 1159.8488202320086, + 1160.2461939849013, + 1144.3356279114312, + 1145.3813291554102, + 1143.379140470433, + 1150.42949327241, + 1161.2455779316015, + 1156.309481223974, + 1147.180244845323, + 1157.8002100044073, + 1134.6337802197568, + 1144.3199675113278, + 1138.9165757960552, + 1129.9874240342713, + 1133.9844066534292, + 1152.7526053668325, + 1145.0073137382567, + 1132.6329079504294, + 1155.7539067263322, + 1125.01257047766, + 1154.3179277472002, + 1146.6957060929822, + 1149.1102774174974, + 1133.7930095990307, + 1144.9046269714067, + 1129.6011777222543, + 1149.2941363365696, + 1152.9930263468555, + 1157.7038418038182, + 1151.4248467897628, + 1143.4060865802292, + 1156.7564515700951, + 1146.2348987325452, + 1153.347313152294, + 1144.7743838883446, + 1141.5863677735288, + 1154.1594462112967, + 1155.3307637194755, + 1156.141330086618, + 1162.4169314228182, + 1155.8089156702777, + 1138.770220078021, + 1143.5378242134773, + 1153.9416939893626, + 1145.6130224061899, + 1163.445413511443, + 1140.4532001818218, + 1165.6490168032215, + 1160.9508245805775, + 1161.9321831921743, + 1147.782465751538, + 1169.670853193252, + 1155.8655158186946, + 1142.7429952702971, + 1158.7630172683541, + 1144.5005450121382, + 1155.6688933762644, + 1167.7640948018186, + 1140.1233229669854, + 1131.4130323631284, + 1154.1952961187321, + 1156.8329489980997, + 1153.892198226472, + 1150.3737031757796, + 1138.343080760937, + 1140.0923361421123, + 1137.80228329063, + 1162.9913350750671, + 1138.7352818144238, + 1146.845966444391, + 1154.0146919232131, + 1151.7122506323474, + 1162.6789079725322, + 1142.9412228201004, + 1157.2054455909717, + 1133.0494743789125, + 1149.128641614225, + 1147.6277312956454, + 1144.226849000624, + 1157.8174910376558, + 1149.5566071977578, + 1146.5976779368946, + 1139.8339113072284, + 1151.3093633552508, + 1151.8636508141751, + 1164.7299474247773, + 1155.7524344925878, + 1145.8977849375042, + 1163.7953867530298, + 1143.788405632243, + 1156.367605226515, + 1144.805735497438, + 1155.5657339762192, + 1147.7867521898536, + 1157.8668148514, + 1160.8706860983384, + 1155.7316659201956, + 1154.9011310410692, + 1160.773365098744, + 1154.009302489434, + 1142.89760460303, + 1147.233015293729, + 1151.148199341332, + 1156.663466144589, + 1133.1463691899269, + 1141.925210908851, + 1150.1906161283232, + 1168.0458923857225, + 1161.6225455140045, + 1146.458506457085, + 1148.7862755247752, + 1160.0717853720896, + 1155.3877476607431, + 1164.3847326678615, + 1146.1694502654213, + 1159.2664872892806, + 1163.2913421051828, + 1149.3728383230673, + 1145.3847110159616, + 1153.736443442715, + 1152.4748975505681, + 1165.281161408417, + 1154.5871122600124, + 1164.3983866623535, + 1150.205410326507, + 1147.1733499285187, + 1146.0820826055203, + 1161.9021847516478, + 1145.478040331541, + 1148.805828708835, + 1148.2193803578332, + 1130.6715796831302, + 1159.7050484425858, + 1154.3077682794922, + 1151.4425732374493, + 1156.2763840602042, + 1171.2257996408216, + 1154.689222989695, + 1155.4058819742477, + 1155.7681039498398, + 1152.9275080427112, + 1143.8657488866857, + 1138.8018679509476, + 1142.2073115789672, + 1168.196337496383, + 1155.940248091884, + 1155.8236554873388, + 1142.3169142096258, + 1158.1567062361153, + 1148.8434445449548, + 1160.7657531982827, + 1130.2101916766494, + 1150.3461227544296, + 1157.1462078314246, + 1146.0992592664031, + 1148.4472593227417, + 1142.4936160752698, + 1146.8318250790057, + 1160.542205667781, + 1157.259911503959, + 1161.646058103562, + 1144.5738645280796, + 1142.520710670233, + 1141.68028036262, + 1161.2617268243819, + 1144.9121175716336, + 1160.700967395207, + 1136.4244751957817, + 1146.0084577559646, + 1155.2980949127743, + 1161.189512179718, + 1150.9296555924332, + 1152.9204171343538, + 1139.40007935059, + 1150.1231282483657, + 1152.12884121379, + 1151.0694694979404, + 1143.6404284996402, + 1148.7205124997088, + 1160.0944191709875, + 1149.613727357216, + 1150.360969761676, + 1144.2281787850668, + 1148.5924214160736, + 1156.7129633964983, + 1145.5449125640564, + 1155.3968488815735, + 1156.8242675581414, + 1157.1126290558673, + 1152.3485949419726, + 1147.4206644220515, + 1159.5135561331304, + 1166.5212495698754, + 1159.3034300634172, + 1161.9300450503445, + 1154.4691464308985, + 1165.6428140580078, + 1157.3775850688712, + 1159.938359139141, + 1153.8981634396764, + 1163.7457377469052, + 1156.8852898819018, + 1147.4190785414833, + 1150.6038279315976, + 1166.1095001529031, + 1148.1551298384084, + 1173.2320227774014, + 1162.824916987777, + 1138.2988214299055, + 1162.0575950660836, + 1160.8120048170042, + 1159.595510454872, + 1145.084038666972, + 1155.2335936245543, + 1137.0617129885304, + 1166.4208718923248, + 1157.3629850081288, + 1156.3118809489044, + 1153.9365205115523, + 1149.4778678730086, + 1164.3745033384814, + 1159.407048937311, + 1160.225087503131, + 1159.9799171329712, + 1144.003813895955, + 1163.7506798509723, + 1143.6259941552314, + 1147.8967660886162, + 1137.8479616068844, + 1155.0818623548153, + 1158.5788015166695, + 1158.7584070843702, + 1164.4376241092416, + 1155.56343691062, + 1155.6721796049624, + 1147.88588858027, + 1143.5927134425287, + 1150.8124697592905, + 1125.3636966820607, + 1150.8489474282455, + 1145.685943331262, + 1158.0628628818476, + 1158.9611135636535, + 1154.5728060190845, + 1152.435306282604, + 1139.7408695466368, + 1149.9386271762353, + 1157.2941026889084, + 1152.2025292899655, + 1151.0267141886718, + 1158.5888685781133, + 1155.5542448821182, + 1136.9300641400669, + 1168.1804622628213, + 1162.4729052470584, + 1149.8276763663764, + 1167.491130825539, + 1142.494359750143, + 1159.8812221739743 + ] + }, + { + "legendgroup": "Log Posterior", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Log Posterior", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 1159.8812221739743, + 1144.1016242065668, + 1140.709462633825, + 1139.6502353635174, + 1144.5014884392638, + 1156.642703103214, + 1162.294792258023, + 1152.6746665165315, + 1154.4790018976178, + 1153.7226141709948, + 1162.375195099732, + 1153.5633307383273, + 1139.519778845545, + 1143.785981490218, + 1130.5842108731765, + 1154.3762187250363, + 1167.6545496161555, + 1162.6089413765644, + 1167.5999041759162, + 1156.4303670216811, + 1133.3504662307973, + 1153.074342807342, + 1156.5015770672592, + 1148.6467942531447, + 1152.9040666523708, + 1153.758421583615, + 1165.3483803710217, + 1159.4800516145128, + 1159.3091905698388, + 1148.1306394851713, + 1161.337295528154, + 1159.9730297574727, + 1144.5957123850176, + 1152.959312724916, + 1150.4129746163524, + 1163.1211776505083, + 1151.6044552343003, + 1167.1836519875546, + 1132.8891618194803, + 1141.0315915023268, + 1151.1366890506467, + 1158.6281258363017, + 1154.3330970264913, + 1131.6410829122817, + 1139.2870307760886, + 1150.270049957825, + 1145.381111082111, + 1154.9372349377998, + 1149.7748997646268, + 1152.9290406060752, + 1146.8216890099648, + 1150.9272465909496, + 1150.9323667956703, + 1158.810057536662, + 1152.512896123692, + 1148.7023601698008, + 1153.5523433624942, + 1162.7912211058979, + 1129.8381820508675, + 1158.368256852362, + 1148.2259743073462, + 1154.963100500506, + 1153.6204848186362, + 1157.5965075026065, + 1136.0314025526093, + 1159.5163581468673, + 1152.9757060567624, + 1159.7470264013368, + 1149.120812310631, + 1156.5448024013886, + 1145.7002149624675, + 1117.978092247119, + 1167.3421348913018, + 1156.4741836184023, + 1162.15973459756, + 1159.4563344412657, + 1167.6853061938448, + 1141.6916776374312, + 1164.1420736505906, + 1147.7432699884246, + 1129.9684166894938, + 1155.5227904633668, + 1156.4255521236853, + 1153.5957931088706, + 1142.912060031708, + 1145.1439774674334, + 1140.3140490339645, + 1165.6835744696918, + 1154.804060063677, + 1141.0683707796259, + 1150.3365960426786, + 1131.222657962636, + 1145.9414363778765, + 1164.3000267084872, + 1158.2494233327382, + 1166.3337061334626, + 1146.173990882558, + 1154.0806299764022, + 1152.1426484945378, + 1150.6011361559092, + 1152.9962601229004, + 1144.880999902019, + 1155.6330952276246, + 1132.684306552859, + 1174.9331358686845, + 1152.3827464347846, + 1140.849381370505, + 1146.1491985500395, + 1144.2606055811216, + 1165.9731052795757, + 1154.751650851612, + 1136.3995794865943, + 1135.3256555254022, + 1128.5059579813899, + 1149.7374957204386, + 1142.5996522255243, + 1157.9319350306994, + 1145.0694204151282, + 1155.2765487026807, + 1157.7411159055034, + 1160.4539726726775, + 1147.24732612081, + 1139.707895239822, + 1145.6067775266777, + 1147.2737559543955, + 1134.8751236254734, + 1150.041830397234, + 1160.1454725240533, + 1147.0850389746677, + 1152.3038363602473, + 1144.732931782136, + 1154.280497897104, + 1147.4793699524143, + 1133.907825602426, + 1154.5732210626506, + 1154.8270534313192, + 1151.7846030965204, + 1168.16103479896, + 1145.4715269752032, + 1156.0539787010468, + 1164.2309077315506, + 1145.9709265250547, + 1156.687409115711, + 1138.317008999573, + 1137.7335099721738, + 1151.305184196046, + 1165.595323318498, + 1162.9074760211545, + 1126.3014205341544, + 1157.3972404389117, + 1165.3547376293018, + 1161.1509167714976, + 1153.54782586053, + 1145.2123284817776, + 1143.4324451672935, + 1155.3525023210427, + 1155.700403827741, + 1160.4719824865708, + 1161.971977437904, + 1154.0168939917548, + 1144.6870875867992, + 1146.5309528415553, + 1150.5465305813211, + 1153.9104413043085, + 1154.147405515035, + 1146.669602828167, + 1144.3878652936687, + 1157.5720662891401, + 1147.8459848293028, + 1143.7664368087942, + 1151.475215005268, + 1155.7276494045752, + 1158.4356619551413, + 1148.6008138761406, + 1161.7701047551254, + 1146.9876634764473, + 1154.2508703792723, + 1146.4250115297825, + 1156.6090407052159, + 1157.6560017461575, + 1156.2367621343942, + 1167.0814581371708, + 1159.393869418862, + 1155.3849477188583, + 1165.93445108206, + 1146.4604859489184, + 1154.2838037718384, + 1144.0253556937791, + 1162.0146703331857, + 1152.5254684784036, + 1148.2082830056713, + 1146.121848068763, + 1161.0909616860922, + 1140.1962843054582, + 1143.2877677833758, + 1171.898521078501, + 1152.9806984594904, + 1155.8881766222294, + 1131.8147911542737, + 1147.2271266696876, + 1152.2504994121948, + 1147.2503102407718, + 1141.4789654519566, + 1149.2822984852196, + 1152.981771563709, + 1134.7270778399377, + 1144.1311690805735, + 1147.7648599270942, + 1157.6112677419671, + 1152.6720940051334, + 1142.8591845700878, + 1147.2703171138994, + 1148.3952859823914, + 1161.1468206910934, + 1158.651092753619, + 1154.1990731356425, + 1164.0871395937395, + 1149.0899301345921, + 1155.4750617351972, + 1160.3014200763419, + 1152.9829782836166, + 1129.9130835344247, + 1140.409946284302, + 1158.5211533830677, + 1146.6278333256366, + 1154.7583747218848, + 1146.6198648399454, + 1158.5265185678645, + 1162.4216894879253, + 1164.1246866970462, + 1149.817698626375, + 1158.0449028818414, + 1143.5598143667805, + 1155.7956184325294, + 1144.0104373552056, + 1143.6005638465763, + 1158.5356907280416, + 1149.7334839254215, + 1146.7549271480727, + 1137.5484588943325, + 1152.001138266736, + 1153.4296916633075, + 1129.2023881414493, + 1146.1408853205057, + 1150.9645681540148, + 1129.863896514632, + 1143.5329885396795, + 1140.3413293384633, + 1156.0840331091783, + 1132.776184747954, + 1117.191138529862, + 1158.6910833465383, + 1158.1666325735548, + 1152.4796991919527, + 1160.5629285333102, + 1152.8171318804557, + 1127.0951603006945, + 1141.0932690602892, + 1145.6708149065198, + 1150.9082358579465, + 1159.3075530024714, + 1160.2293687907138, + 1139.9558488484106, + 1138.0502623722996, + 1156.274314051672, + 1167.6157496492176, + 1146.1780091450673, + 1153.9760788097133, + 1145.944777694536, + 1145.5084510036172, + 1163.5563899901374, + 1159.2264740331489, + 1142.7213124787097, + 1146.129047873358, + 1150.7617859787974, + 1156.0141480107698, + 1147.9848335569645, + 1150.2859838217423, + 1152.1795959600206, + 1145.4674852755493, + 1155.911511274735, + 1141.5316073902416, + 1139.443252820079, + 1134.3047135324136, + 1163.74000991056, + 1133.7395102854466, + 1161.7312807993624, + 1157.2423420667249, + 1155.304772512204, + 1143.6976357355945, + 1134.9337538623904, + 1150.5243037452544, + 1145.5986659604453, + 1149.9917722370635, + 1153.5377950678878, + 1171.539202576615, + 1167.8061220102936, + 1157.4160743413245, + 1155.95524553434, + 1156.1910980903156, + 1138.1185187997305, + 1139.8446977692904, + 1148.7744278535424, + 1149.4225251683886, + 1164.6404519821733, + 1142.9909365303845, + 1147.951609718544, + 1144.2253848046166, + 1144.8493096321001, + 1146.3167916781808, + 1149.1946702956525, + 1141.608285233448, + 1149.1228653185447, + 1154.9328658657635, + 1160.0884692697937, + 1157.0533399974718, + 1162.9907842928694, + 1147.2672120423906, + 1148.0522796557102, + 1150.8739467249457, + 1164.1552549165835, + 1140.294701589159, + 1165.647179955923, + 1145.4267305570447, + 1153.4039231766096, + 1137.8331001576066, + 1140.425573664439, + 1149.9937098473981, + 1146.2229596992474, + 1146.0497514934245, + 1159.469224106408, + 1153.6874585439912, + 1141.3868357806807, + 1141.0410579579855, + 1144.647153615161, + 1164.2233390762408, + 1154.8756112519563, + 1158.0888714751657, + 1163.7074699663544, + 1144.4224059647165, + 1148.4102517121225, + 1159.4202909087705, + 1156.7835531668231, + 1153.1346511721772, + 1155.132806129987, + 1151.123100008386, + 1159.031254607296, + 1162.2943070370277, + 1131.763884796543, + 1165.5444980304974, + 1154.6371528696502, + 1154.6289575635192, + 1155.6134030018623, + 1150.3995026861317, + 1148.2507445232227, + 1145.4769497340847, + 1133.6259273786359, + 1151.7066729478902, + 1163.0779445118783, + 1159.6888025575063, + 1139.5807292960963, + 1156.1268169842779, + 1137.8841153337291, + 1144.709085447384, + 1161.548399047388, + 1140.9002979134693, + 1156.9120299470508, + 1155.8891377977723, + 1149.3748241528865, + 1149.3661476418113, + 1156.9930232864426, + 1145.6136546110602, + 1161.9819322621524, + 1146.2130182219714, + 1136.649435147818, + 1165.158163024463, + 1150.4166242201027, + 1164.9342407369693, + 1143.0942593499628, + 1167.1593564194288, + 1152.6733766365778, + 1140.2204775527598, + 1155.5792338553201, + 1152.9597723093818, + 1143.1773494562142, + 1158.5367595789153, + 1154.5613527916933, + 1149.5200122406152, + 1154.4582236773483, + 1152.631052352462, + 1159.7794093906627, + 1163.2652715580668, + 1138.63394547696, + 1145.001243016581, + 1162.2263946567564, + 1130.7820199495163, + 1160.6762183150227, + 1138.391410872006, + 1157.0408952968487, + 1156.0407734192595, + 1155.279617011711, + 1159.735173206114, + 1150.428336580529, + 1137.5516210945698, + 1158.5869528337555, + 1157.2308008685925, + 1149.7490508197343, + 1143.295512980866, + 1145.1323311083486, + 1152.7114409494175, + 1153.3952872424193, + 1133.1815439445636, + 1155.6092413949834, + 1153.1527218641493, + 1167.4793778198402, + 1164.8284140455903, + 1131.0106847221311, + 1126.6672855021898, + 1148.7436994609925, + 1158.4139987087162, + 1171.3219759147883, + 1166.9748882529027, + 1140.5338442364475, + 1146.2519020780678, + 1165.3679375836948, + 1136.3317511002, + 1139.9993263104773, + 1157.8764920970912, + 1151.5137450593195, + 1127.2127974959, + 1141.522824689831, + 1151.6224321788488, + 1156.563155170064, + 1148.9280564236537, + 1157.7100122048107, + 1139.087687919318, + 1155.0762879062297, + 1159.1308398307572, + 1168.2771595796037, + 1165.754210348071, + 1157.7389496221297, + 1165.2396937076956, + 1161.483318012432, + 1140.0016787355282, + 1139.6171118293203, + 1154.091521662015, + 1147.205952044821, + 1148.3937457053567, + 1127.1691274478976, + 1151.8595693722875, + 1135.7476635329488, + 1154.877475639645, + 1160.5849538518523, + 1151.8139883222893, + 1166.7365725126044, + 1150.1511538021323, + 1143.6375045700022, + 1154.9454998298404, + 1156.1435064551963, + 1162.493262128971, + 1159.6636425481677, + 1155.2532240403605, + 1164.9230497630745, + 1154.4773958158544, + 1149.3054903813204, + 1161.3720774958101, + 1147.8446787319986, + 1144.6524644123078, + 1147.511332478238, + 1164.0709765617069, + 1166.0667364256922, + 1145.4442451873954, + 1148.6531693837862, + 1147.8711841121435, + 1170.0718101379737, + 1152.7000960107764, + 1140.8731850122472, + 1149.0446919396775, + 1150.0781578004182, + 1154.5866014515202, + 1155.4878685469387, + 1137.553390903609, + 1172.0060198158956, + 1140.796063037049, + 1150.5169660499118, + 1136.2833724189575, + 1144.9929810201118, + 1158.6891054919909, + 1159.2989900890116, + 1137.5195816001872, + 1151.0497055606638, + 1150.812865704471, + 1170.5917322750627, + 1165.0001277590982, + 1156.8552702023817, + 1155.2180550897701, + 1145.1648435307889, + 1147.004700553329, + 1140.807962712034, + 1160.0527095162697, + 1160.1350282593412, + 1160.8375552519112, + 1152.9702659084107, + 1136.7852624469874, + 1142.2764832442185, + 1144.1558415935083, + 1156.722940464206, + 1161.7425059851198, + 1166.331521125256, + 1135.8998996771293, + 1134.6372376035183, + 1169.5470352845168, + 1160.7589776204468, + 1158.782168559666, + 1151.213748311961, + 1137.8956730878613, + 1152.9508040940716, + 1149.847321294615, + 1169.4330722703955, + 1164.297948381841, + 1138.497887780837, + 1163.4088886481045, + 1160.856454281481, + 1146.405585158014, + 1154.6261060336549, + 1153.5295079133975, + 1154.960828733097, + 1159.0084294731034, + 1158.276356044846, + 1152.0830714115373, + 1132.8310197881249, + 1143.2652332046785, + 1142.85087466583, + 1148.2390278762111, + 1155.053297374903, + 1160.0119821097758, + 1150.354046359674, + 1163.6686000444365, + 1158.9455682143118, + 1169.3545519264983, + 1147.8969781563312, + 1149.8062717197208, + 1138.2164856429897, + 1158.679161595537, + 1152.2246230746625, + 1162.5218147239373, + 1142.4867069038012, + 1147.409582879499, + 1158.9115817622474, + 1156.3736680850525, + 1151.3706477326723, + 1141.8204083998112, + 1157.7387324223573, + 1159.3940455222294, + 1145.2355318450702, + 1140.256503485679, + 1144.6960593806186, + 1147.5954633942367, + 1140.4013259379265, + 1154.4215174606434, + 1163.698845182595, + 1162.9764298210068, + 1147.8362249793652, + 1144.3348198331096, + 1143.7779442748588, + 1148.9904182368996, + 1164.2063033947902, + 1166.5606955202547, + 1160.9971446775464, + 1144.148129615748, + 1146.340214080131, + 1160.8168352524415, + 1158.9912503939715, + 1149.796649682542, + 1146.7665402188861, + 1164.2719973691574, + 1156.3083038739044, + 1148.4125165606695, + 1159.6576519516484, + 1156.1618305085628, + 1154.4792309918146, + 1173.1369607802637, + 1157.9503990850296, + 1165.9473469173506, + 1142.825556180931, + 1149.4518227466947, + 1164.707796682882, + 1143.054689537542, + 1159.5286928449757, + 1149.9178807753121, + 1153.3066107029922, + 1158.1926104250313, + 1159.2025257037503, + 1153.2812328915518, + 1157.1621116363265, + 1147.1788687821763, + 1159.246295237071, + 1159.7268310019363, + 1145.0624167834312, + 1148.9876115629684, + 1167.3761849507182, + 1142.4094957526145, + 1155.9473764080021, + 1150.1048630665935, + 1165.3835102648027, + 1126.6977944882922, + 1140.626187879668, + 1151.983047740812, + 1145.2960618801262, + 1152.425456924319, + 1159.6921928944157, + 1152.4262274397533, + 1157.2417527016385, + 1146.5048283762064, + 1149.6904267180569, + 1139.0004694753095, + 1122.95695182171, + 1143.27001000095, + 1135.509632155115, + 1150.831575966486, + 1149.3727634549787, + 1143.4235994140356, + 1151.3994429240531, + 1157.1095749292513, + 1157.104501836815, + 1155.8027768989155, + 1155.378433204461, + 1137.2661375441974, + 1138.0363624486858, + 1130.5616753090626, + 1144.2303198116194, + 1152.2112481485551, + 1144.8902866388105, + 1139.8286088569992, + 1158.5299770337792, + 1149.7235427780638, + 1169.580015969545, + 1159.5939209475694, + 1158.6772018166423, + 1147.281574691693, + 1145.1962947201341, + 1135.463856579887, + 1156.223778812525, + 1171.0398036281708, + 1146.4840449896458, + 1159.635151092125, + 1156.8685057937716, + 1132.3242603425597, + 1149.1431147228498, + 1144.4818813673405, + 1144.2501681555673, + 1147.3433342532742, + 1124.342089513983, + 1161.3447361985666, + 1142.3598388669805, + 1145.9411946023145, + 1126.8601576998894, + 1168.3202543247287, + 1138.2270627428513, + 1139.4509535048967, + 1136.8931511375029, + 1154.4127355492726, + 1147.8556683983395, + 1149.6485164937883, + 1153.9209062345055, + 1156.0308704078227, + 1161.1721014288285, + 1147.4951627956468, + 1161.3006624009392, + 1127.9105971753065, + 1141.4793819421184, + 1143.0975861618042, + 1140.147175116443, + 1154.9243164231482, + 1166.1976448983557, + 1134.2350930703585, + 1144.9569016297523, + 1143.0437291104583, + 1160.1698036316382, + 1134.0708282384137, + 1157.8073011403337, + 1165.6679451980692, + 1134.5740755420827, + 1139.2802501666256, + 1140.1040671312662, + 1152.336459907058, + 1156.7789308227798, + 1143.449030672042, + 1148.762828737167, + 1139.5971303529716, + 1158.1785065184074, + 1152.234473238663, + 1153.7289063343953, + 1143.971011250082, + 1159.448166301821, + 1151.6188409531428, + 1146.291893212012, + 1159.7449020520376, + 1144.5445615924205, + 1158.9330512821443, + 1152.4419177704779, + 1153.0375033794005, + 1136.4850590203848, + 1137.7912845861028, + 1125.260667112063, + 1165.4851084334225, + 1160.3079343081279, + 1162.790438358681, + 1150.4514438264337, + 1158.4930353763052, + 1158.716665046738, + 1141.6223747546737, + 1151.7788621587777, + 1154.5053994074426, + 1141.3530257365978, + 1147.109718113499, + 1148.4866358184872, + 1150.5854905632355, + 1145.6669675768135, + 1154.5902970514824, + 1158.16199438344, + 1159.2783354558528, + 1145.6698338791612, + 1143.7876858135223, + 1157.9433950815217, + 1148.9404806551472, + 1162.8505215976122, + 1159.8811777130848, + 1148.6700497120917, + 1151.5654525796488, + 1159.9990862272286, + 1150.0767150769673, + 1144.2452031053385, + 1149.7657373011737, + 1156.7343063257276, + 1157.0118176594929, + 1146.9481147322272, + 1155.3480093815137, + 1168.7792295131583, + 1149.23450942639, + 1145.3450230239157, + 1156.9643231460975, + 1149.9113215189498, + 1136.0124235210374, + 1129.875758455184, + 1139.1233623453256, + 1143.9266806240191, + 1159.7165588912817, + 1141.7857153221305, + 1161.776608854945, + 1155.2490280952852, + 1136.062445754403, + 1140.1546762571056, + 1140.533030137014, + 1134.2457059695798, + 1145.603444580874, + 1149.1477126070859, + 1149.2483747014226, + 1143.0933119199549, + 1146.2306090152192, + 1164.8641122754102, + 1146.3644331725009, + 1141.3019661369788, + 1133.3572183414149, + 1159.189029128789, + 1149.1887654733703, + 1154.908359976441, + 1158.1401498247485, + 1154.1623779936617, + 1170.6524279710527, + 1160.4838004660082, + 1148.0648535444059, + 1138.0388986060534, + 1152.4507947311677, + 1150.540800969268, + 1154.1432316252324, + 1166.839819183871, + 1146.1544643796612, + 1125.6377837145142, + 1160.8681318706756, + 1163.6445950105867, + 1150.091154695554, + 1142.1841731104794, + 1164.1893537637025, + 1142.1411881847516, + 1165.8547042523157, + 1150.630748546213, + 1139.0030361028078, + 1142.745410441239, + 1158.7921402087668, + 1156.9276396278722, + 1149.3184741095029, + 1162.656396983291, + 1142.9972067583947, + 1164.1961764286536, + 1140.3707808275497, + 1155.0725656083791, + 1140.1940750397137, + 1146.9613470732247, + 1146.2938718445166, + 1149.4595323597312, + 1157.770207877358, + 1141.0196869484837, + 1136.7522055865536, + 1163.7794167200075, + 1133.330895551683, + 1134.731135224522, + 1145.1541846548332, + 1151.983085822677, + 1141.6518944254562, + 1154.4053422710958, + 1149.5746933293892, + 1163.4926960317468, + 1130.264344841163, + 1151.9080134689727, + 1154.4704447458976, + 1154.2621814294816, + 1140.6542394504118, + 1141.4891583484025, + 1157.004800595801, + 1155.20463519007, + 1147.2973853797048, + 1163.6383580493666, + 1159.108438491276, + 1162.5369239540612, + 1155.3774172537574, + 1151.5480392722955, + 1156.2174842988231, + 1158.4548954601828, + 1146.6083956266573, + 1159.5668142064612, + 1150.9081875382055, + 1132.7462883082462, + 1148.845289948952, + 1144.674277200399, + 1136.6255362691707, + 1155.7669202420532, + 1161.9167302727733, + 1162.9073719086475, + 1158.821063980338, + 1154.1378225702172, + 1143.447729494818, + 1138.565421428154, + 1158.8318676760293, + 1142.5566994143526, + 1136.1744463768316, + 1153.5552391546248, + 1131.956780856413, + 1148.7575283846686, + 1154.4455244203348, + 1150.754431076875, + 1151.186819292963, + 1163.8136408009013, + 1151.2560312902324, + 1163.8304015127967, + 1165.368909255392, + 1139.9854050135082, + 1151.0360080351484, + 1158.340686289729, + 1142.685657032334, + 1153.9923959004818, + 1157.74382871421, + 1170.3363329043277, + 1143.9799106657917, + 1147.6273167468892, + 1147.4309581856103, + 1159.7110926323573, + 1142.2793959974285, + 1144.6179073935411, + 1141.513075074124, + 1147.761979519914, + 1137.8266287303065, + 1145.414469684301, + 1148.8211315199553, + 1152.129498404719, + 1150.0408678271397, + 1162.145776355094, + 1155.7151372347132, + 1151.3340743266722, + 1152.9233948070612, + 1149.6014109896948, + 1176.030003108103, + 1164.2036390059263, + 1139.5775688448487, + 1155.555423717816, + 1142.8140887677116, + 1143.9138460450815, + 1134.132256285864, + 1142.6707114741744, + 1143.2412461524352, + 1154.1333445748025, + 1142.1156759448031, + 1165.423343610612, + 1156.1814307702218, + 1155.195449608646, + 1159.3395354566726, + 1161.8250686866622, + 1141.3013732492932, + 1126.4663547440955, + 1163.935087393157, + 1167.028562240768, + 1159.5371878972858, + 1133.609538353634, + 1156.2927862167305, + 1142.672460427386, + 1141.1868559866207, + 1152.2948698195921, + 1150.3380009308983, + 1159.8734644997203, + 1148.4829352233305, + 1160.8973068741363, + 1154.1082246979904, + 1148.8849516492473, + 1141.5320154840508, + 1149.452144499494, + 1145.177546009737, + 1127.6401237132397, + 1157.2117873024847, + 1125.6627981477875, + 1168.8414904658061, + 1165.4791736469824, + 1153.2865085213193, + 1155.3963819592902, + 1142.064950417399, + 1155.440196306906, + 1149.1989035706968, + 1139.200711301798, + 1152.4834732270917, + 1135.3032027013135, + 1159.0727062669337, + 1150.1925712246787, + 1167.8004375840333, + 1160.2272630606003, + 1137.3702966519002, + 1160.807084340219, + 1145.5212794798986, + 1143.5988684055328, + 1133.8643243179354, + 1158.941093480302, + 1149.9673278994012, + 1161.8951010331398, + 1149.9480403563355, + 1133.9192498862437, + 1148.1840109897971, + 1149.1646108137008, + 1158.5789124356063, + 1151.4824006015347, + 1151.7829986015706, + 1154.1640881377825, + 1151.4266823666956, + 1151.7106985026855, + 1145.23209867472, + 1159.8067968032763, + 1133.4060400821027, + 1143.0470974999932, + 1145.4223704364938, + 1158.8659805476764, + 1137.7935258894631, + 1144.384017092496, + 1151.5368479879035, + 1151.0254507231195, + 1163.1908706205716, + 1162.308491248641, + 1150.8404943832043, + 1140.9412849578182, + 1147.9329572416145, + 1144.432566644521, + 1142.9233175315571, + 1160.9415346933445, + 1147.969433301013, + 1150.3306800664398, + 1137.8702381587332, + 1154.5184932751588, + 1154.6522850622978, + 1150.3871986918912, + 1141.9038006315693, + 1121.106085634505, + 1150.5573884665162, + 1155.2321040199133, + 1154.7474419534265, + 1156.4295329102085, + 1155.5141869332983, + 1162.1753940745966, + 1162.0338479175196, + 1135.8561573316385, + 1155.8462760595598, + 1159.450025833936, + 1141.0869440182482, + 1164.2294711094762, + 1161.1528808407384, + 1160.7213760525456, + 1155.83980448591, + 1134.5341693344478, + 1157.5853822220452, + 1164.5270382755725, + 1158.6623634597113, + 1144.1374607794146, + 1153.3124336894064, + 1150.7015060645972, + 1148.4823376519266 + ] + } + ], + "layout": { + "annotations": [ + { + "showarrow": false, + "text": "\tBurn in: 4000", + "x": 4000, + "xanchor": "left", + "xref": "x", + "y": 1, + "yanchor": "top", + "yref": "y domain" + } + ], + "autosize": true, + "shapes": [ + { + "line": { + "color": "black", + "dash": "dash", + "width": 3 + }, + "type": "line", + "x0": 4000, + "x1": 4000, + "xref": "x", + "y0": 0, + "y1": 1, + "yref": "y domain" + } + ], + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Log posterior values against MCMC iterations" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0, + 4999 + ], + "title": { + "standoff": 20, + "text": "MCMC Iteration Number" + }, + "type": "linear" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + -7613.465458755922, + 1643.2057564962684 + ], + "title": { + "standoff": 20, + "text": "Log Posterior
Value" + }, + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQecHkX9/7+5y6VX0kijBUL9USQUI6FLqCJNEFAEhCBq6B2kKj2UUEVAQBCk92booFJDh9BLgPRyqZdL7v9/D865t3nK7uzzJHnuPsOLV5K7nd2Z98zus/N+Zr7TqqGhocGUREAEREAEREAEREAEREAEREAEREAEREAEchJoJXminiECIiACIiACIiACIiACIiACIiACIiAC+QlInqh3iIAIiIAIiIAIiIAIiIAIiIAIiIAIiEABApIn6h4iIAIiIAIiIAIiIAIiIAIiIAIiIAIiIHmiPiACIiACIiACIiACIiACIiACIiACIiACYQQ08ySMm3KJgAiIgAiIgAiIgAiIgAiIgAiIgAi0EAKSJy2koVVNERABERABERABERABERABERABERCBMAKSJ2HclEsEREAEREAEREAEREAEREAEREAERKCFEJA8aSENrWqKgAiIgAiIgAiIgAiIgAiIgAiIgAiEEZA8CeOmXCIgAiIgAiIgAiIgAiIgAiIgAiIgAi2EgORJC2loVVMEREAEREAEREAEREAEREAEREAERCCMgORJGDflEgEREAEREAEREAEREAEREAEREAERaCEEJE9aSEOrmiIgAiIgAiIgAiIgAiIgAiIgAiIgAmEEJE/CuCmXCIiACIiACIiACIiACIiACIiACIhACyEgedJCGlrVFAEREAEREAEREAEREAEREAEREAERCCMgeRLGTblEQAREQAREQAREQAREQAREQAREQARaCAHJkxbS0KqmCIiACIiACIiACIiACIiACIiACIhAGAHJkzBuyiUCIiACIiACIiACIiACIiACIiACItBCCEietJCGVjVFQAREQAREQAREQAREQAREQAREQATCCEiehHFTLhEQAREQAREQAREQAREQAREQAREQgRZCQPKkhTS0qikCIiACIiACIiACIiACIiACIiACIhBGQPIkjJtyiYAIiIAIiIAIiIAIiIAIiIAIiIAItBACkictpKFVTREQAREQAREQAREQAREQAREQAREQgTACkidh3JRLBERABERABERABERABERABERABESghRCQPGkhDa1qioAIiIAIiIAIiIAIiIAIiIAIiIAIhBGQPAnjplwiIAIiIAIiIAIiIAIiIAIiIAIiIAIthIDkSQtpaFVTBERABERABERABERABERABERABEQgjIDkSRg35RIBERABERABERABERABERABERABEWghBCRPWkhDq5oiIAIiIAIiIAIiIAIiIAIiIAIiIAJhBCRPwrgplwiIgAiIQITAvHnz7Morr7QXX3zRDjvsMNtuu+1aPJ9FixbZRx99ZLfffrvV19fbKaecYu3atWvxXJY0gGnTptl5551nn332mZ166qm27rrrLuki6HrNmMBbb71l55xzjq288sp24oknWvfu3Ztxbb+vmp73zb6JVUEREIE8BCRP1DVEQASCCbz66qt20kknFcy/88472xFHHBF8DWWsDAKffPKJHX/88TZz5kzbeOON7bTTTmvRouDpp5+2W2+91b744gvXgGKy9Ppx9DlVic+j2bNn2z333GMffPCBvfbaa7Zw4UIHc/3117czzjjDOnbsmAru2LFj7eSTT7YFCxY0yXf44YfbbrvtlvNcDQ0N9u2339qYMWPs+eefty+//NKVo7q62vr16+fKgjAdNGiQ/ec//7Ha2lrbYYcdbOLEifbggw/a22+/be+//74hFEnbb7+9HXnkkS5/mvToo4/aqFGjFsty7rnn2pAhQ3KeCnH57rvv2pNPPmn0hSlTprjj4LbiiivaD3/4Q9t6662ta9eu9re//c222WYbW2mllRIX67LLLrOHHnrIHV+oHIlPWAEH6nlfAY2kIoqACJSFgORJWbDqpCLQcgjwUs03unzz9tVXX7mK8+LJN3B8E1dVVdVyYLTgmtbV1dk111xjzzzzjGae/LcfMGi78MIL7amnnpI8WYr3BgN5Zp4wC6iSZ57wrL333nvt6quvdjRramrsT3/6kxMXSRP36QUXXGDPPvusy9K2bVv3rB46dGjeZzWy4c9//rO7t9dcc03bb7/97P/+7/+cHEWGMLMHoXLbbbe5v5PiIoZ74aqrrnIihdSjRw9XjhVWWCFp0W3GjBlu9taHH37YeI7TTz/d1lhjDWvVqtVi54EX0uTyyy93sgdhgxzq37+/tW7d2smj8ePH23333WePPfaYk0FdunRx5UICJU1IrT/84Q8tauaJnvdJe4eOEwERaG4EJE+aW4uqPiKwlAiwZIOXUBIiZZNNNllKJWnZl33hhResffv2tuGGG7ZsEMtI7Zl98te/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m+7KOloEREAEREAEREAEshOQPMnOUGcQARFYBgiwHIddZtiWku2Q47tBsGPJVltttdgOJPmKXijyf64dLpYBBCqCCCzzBBCSH330kT344INupxq/Iwa7PrFTDluBMyMl6Vbiy3yFVUAREAEREAEREIFmQ0DypNk0pSoiAiIgAiIgAiIgAiIgAiIgAiIgAiJQDgKSJ+WgqnOKgAiIgAiIgAiIgAiIgAiIgAiIgAg0GwKSJ82mKVURERABERABERABERABERABERABERCBchCQPCkHVZ1TBERABERABERABERABERABERABESg2RCQPGk2TamKiIAIiIAIiIAIiIAIiIAIiIAIiIAIlIOA5Ek5qOqcIiACIiACIiACIiACIiACIiACIiACzYaA5EmzaUpVRAREQAREQAREQAREQAREQAREQAREoBwEJE/KQVXnFAEREAEREAEREAEREAEREAEREAERaDYEJE+aTVOqIiIgAiIgAiIgAiIgAiIgAiIgAiIgAuUgIHlSDqo6pwiIgAiIgAiIgAiIgAiIgAiIgAiIQLMhIHnSbJpSFREBERABERABERABERABERABERABESgHAcmTclDVOUVABERABERABERABERABERABERABJoNAcmTZtOUqogIiIAIiIAIiIAIiIAIiIAIiIAIiEA5CEielIOqzikCIiACIiACIiACIiACIiACIiACItBsCEieNJumVEVEQAREQAREQAREQAREQAREQAREQATKQUDypBxUdU4REAEREAEREAEREAEREAEREAEREIFmQ0DypNk0pSoiAiIgAiIgAiIgAiIgAiIgAiIgAiJQDgKSJ+WgqnOKgAiIgAiIgAiIgAiIgAiIgAiIgAg0GwKSJ82mKVURERABERABERABERABERABERABERCBchCQPCkHVZ1TBERABERABERABERABERABERABESg2RCQPGk2TamKiIAIiIAIiIAIiIAIiIAIiIAIiIAIlIOA5Ek5qOqcIiACIiACIiACIiACIiACIiACIiACzYaA5EmzaUpVRAREQAREQAREQAREQAREQAREQAREoBwEJE/KQVXnFAEREAEREAEREAEREAEREAEREAERaDYEJE+aTVOqIiIgAiIgAiIgAiIgAiIgAiIgAiIgAuUgIHlSDqo6pwiIgAiIgAiIgAiIgAiIgAiIgAiIQLMhIHnSbJpSFREBERABERABERABERABERABERABESgHAcmTclDVOUVABERABERABERABERABERABERABJoNAcmTZtOUqogIiIAIiIAIiIAIiIAIiIAIiIAIiEA5CEielIOqzikCIiACIiACIiACIiACIiACIiACItBsCEieNJumVEVEQAREQAREQAREQAREQAREQAREQATKQUDypBxUdU4REAEREAEREAEREAEREAEREAEREIFmQ0DypNk0pSoiAiIgAiIgAiIgAiIgAiIgAiIgAiJQDgKSJ+WgqnOKgAiIgAiIgAiIgAiIgAiIgAiIgAg0GwKSJ82mKVURERABERABERABERABERABERABERCBchCQPCkHVZ1TBERABERABERABERABERABERABESg2RCQPGk2TamKiIAIiIAIiIAIiIAIiIAIiIAIiIAIlIOA5Ek5qOqcIiACIiACIiACIiACIiACIiACIiACzYaA5EmzaUpVRAREQAREQAREQAREQAREQAREQAREoBwEJE/KQVXnFAEREAEREAEREAEREAEREAEREAERaDYEJE+aTVOqIiIgAiIgAiIgAiIgAiIgAiIgAiIgAuUgIHlSDqo6pwiIgAiIgAiIgAiIgAiIgAiIgAiIQLMhIHnSbJpSFREBERABERABERABERABERABERABESgHAcmTclDVOUVABERABERABERABERABERABERABJoNAcmTZtOUS6YiP/7xj92FnnzyySVzwWZ2lfnz51t9fb117NixmdWs/NVZsGCBzZs3zzp37lz+izWzKyxatMhqa2uta9euzaxmS6Y606ZNs+7duy+ZizWzq0yfPt31u1atWjWzmpW/OjNnznSfFdXV1eW/WDO7wqxZs6xt27ZWU1PTzGpW/urMmTPH9Tn4KaUjwDtKQ0ODtW/fPl1GHS0CIlAxBCRPKqaplo2CSp5kawfJk3B+kifh7CRPwtmRU/IknJ/kSTg7yZNwdpIn4ewkT8LZSZ6Es1NOEagUApInldJSy0g5JU+yNYTkSTg/yZNwdpIn4ewkT7KxkzwJ5yd5Es5O8iScneRJODvJk3B2yikClUJA8qRSWmoZKafkSbaGkDwJ5yd5Es5O8iScneRJNnaSJ+H8JE/C2UmehLOTPAlnJ3kSzk45RaBSCEieVEpLLSPllDzJ1hCSJ+H8JE/C2UmehLOT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IAABCEAAAhCAAAQgAAEIQAACW4UA8mSrYOeiEIAABCAAAQhAAAIQgAAEIAABCKSFAPIkLT1FOyEAAQhAAAIQgAAEIAABCEAAAhDYKgSQJ1sFOxeFAAQgAAEIQAACEIAABCAAAQhAIC0EkCdp6SnaCQEIQAACEIAABCAAAQhAAAIQgMBWIYA82SrYuSgEIAABCEAAAhCAAAQgAAEIQAACaSGAPElLT9FOCEAAAhCAAAQgAAEIQAACEIAABLYKAeTJVsHORSEAAQhAAAIQgAAEIAABCEAAAhBICwHkSVp6inZCAAIQgAAEIAABCEAAAhCAAAQgsFUIIE+2CnYuCgEIQAACEIAABCAAAQhAAAIQgEBaCCBP0tJTtBMCEIAABCAAAQhAAAIQgAAEIACBrUIAebJVsKfzot98842bM2eOe/zxx913333nTj31VHf22We7Ro0apfOGEmr1Sy+95K6++mr3r3/9q/KMl112mTvxxBMrfy6WXbHlEmp6jZ5GY2blypVu3rx5buDAgW7vvffe4vqbN292y5Ytc1OnTnUfffSRO+igg9yll17qdt1114yySZerURCGixXDTqf99NNP3ZVXXunee++9yqscffTR7oorrnANGjTwv6tL7P75z3+62bNnu0WLFvn3rAMPPNBdfPHFbs8999yiF15//XV35513urVr17q99trLDR482P3whz+s9nKG4VAjVUphp/eta6+91i1fvryybe3bt3fjxo1zLVq0qPxd0oxrBIThIuE1dvvtt7tPPvnEv3/993//tzvkkEPcNttsk3HGf/zjH2769Onuueee86/Rn//85+6nP/2pq1+/frWWM9xWjVQphZ0a9Oijj7o77rijsm3bbbedu+GGG1znzp0rf5c04xoBkcBFvvjiC/950KNHD/+8Fj2KfdZIulwCt1UjpyjETg3gua9GuoGLQKAsCSBPyrJbyq9RmzZtcrfccovTB8rw4cNdw4YN3Y033ugfBC+//HLXpEmT8mt0DbToq6++cr/+9a9ds2bN3LbbbuuvqP/v3bu3/1dHseyKLVcDt5X4Jf7+97+7N954w4u3devWuZtuuimnPFmyZIm755573IgRI/xE97HHHnMPPvigu+6665wmY+FIulziN5zgCYtlp0mHxNSf/vQn17Rp08oW9OzZM4N1XWGnh/7x48e75s2bu0MPPdS9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yJPq5cvZIQABCEAAAhCAAAQgAAEIQAACEEg5AeRJyjuQ5kMAAhCAAAQgAAEIQAACEIAABCBQvQSQJ9XLl7NDAAIQgAAEIAABCEAAAhCAAAQgkHICyJOUdyDNhwAEIAABCEAAAhCAAAQgAAEIQKB6CSBPqpcvZ4cABCAAAQhAAAIQgAAEIAABCEAg5QSQJynvQJoPAQhAAAIQgAAEIAABCEAAAhCAQPUSQJ5UL1/ODgEIQAACEIAABCAAAQhAAAIQgEDKCSBPUt6BNB8CEIAABCAAAQhAAAIQgAAEIACB6iWAPKlevpwdAhCAAAQgAAEIQAACEIAABCAAgZQTQJ6kvANpPgQgAAEIQAACEIAABCAAAQhAAALVSwB5Ur18OTsEIAABCEAAAhCAAAQgAAEIQAACKSeAPEl5B9J8CEAAAhCAAAQgAAEIQAACEIAABKqXAPKkevlydghAAAIQgAAEIAABCEAAAhCAAARSTgB5kvIOpPkQgAAEIAABCEAAAhCAAAQgAAEIVC8B5En18uXsEIAABCAAAQhAAAIQgAAEIAABCKScAPIk5R1I8yEAAQhAAAJpJ/DZZ5+5q6++2t/Gr371K9eqVau039JWbf+nn37qFi5c6FauXOm5tmzZcqu2h4tDAAIQgAAEagMB5Elt6EXuAQIQgECKCPz97393y5cvd4899phbt26db/lll13mTjzxxKLuYu7cuW7GjBmVZbfffnt30003ub333juj/oYNG9xvf/tbt2TJEvenP/3Jffvtt65JkyZuv/32c6eddprr1KmTe/TRR91PfvITt91227kVK1a4J5980v+ro2/fvm7AgAFum222qbJdv//97921117r/v3vf1eWHTdunOvatWtGXf191apVfmK7Zs0a949//MPVq1fPtWvXzv30pz91PXr0cH/84x9dRUWF69KlS97rqt133HHHFn/Px6LKG9jKBcpFnnz++edu2LBhbv369ZVETj31VHfhhRe6+vXrb0FJ43fkyJHuyy+/zPhbrr6vKcR/+MMf3NNPP+3072677eYmTpyIPKkp+FwHAhCAAARqNQHkSa3uXm4OAhCAQPkSiE489913X3f99de75s2bF2ywvlG/8sor3XvvvedFiP5fgiIqODZv3uyWLVvmJk2a5Jo2berOPfdc161bN1/+u+++cx988IH7n//5H/e73/3O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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter = elq_model.plot_log_posterior(burn_in_value=burn_in, plot=plotter)\n", "plotter.figure_dict[\"log_posterior_plot\"].show()" @@ -548,10 +29287,433462 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "id": "291e018b-afae-46d1-affb-71c99d3c3d31", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Total Site Emissions", + "line": { + "color": "rgb(247, 170, 157)", + "width": 3 + }, + "mode": "lines", + "name": "Total Site Emissions", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 16.60483674168337, + 25.887685279216296, + 25.132172231275963, + 24.936483503098906, + 24.89882310814985, + 24.9452671862434, + 24.958257606443233, + 24.980012163992726, + 24.91400499288411, + 24.95546052299867, + 25.057879822064805, + 24.92611166256497, + 24.93465840785297, + 25.022751816121904, + 24.934643286608264, + 24.95055385716841, + 25.059913873164184, + 24.94531195485984, + 24.92047823192346, + 24.96827994328294, + 24.991958502939518, + 24.99891884907654, + 24.962987562815847, + 25.088988319385265, + 24.934393122215184, + 24.999207977533658, + 24.947126875069735, + 24.95300067479169, + 25.06237917762319, + 25.019579881343315, + 24.970846189287016, + 25.286042424728425, + 25.16430025271288, + 25.36413980405573, + 25.222631178950067, + 25.25661043187756, + 25.158256526120116, + 25.28005022088201, + 24.829335176498546, + 24.88161150979513, + 24.969779950074393, + 24.92639991505353, + 24.93963320361672, + 25.006715140488964, + 25.00357792442341, + 25.004093300908544, + 24.99864762579417, + 24.9853169934932, + 24.887481580987057, + 24.920785855553774, + 24.952043218818133, + 25.02859754457125, + 24.884192008121026, + 24.965280472475275, + 24.9076827470087, + 25.001606792859192, + 25.058488932284664, + 24.904822907848494, + 24.89538230823593, + 24.908062884953146, + 24.875939965170026, + 24.84810556734338, + 24.873370865016973, + 24.941270484181945, + 24.87603292163699, + 24.93409477246751, + 24.93349502466267, + 24.90722044851535, + 24.861325321258, + 24.875908555888998, + 24.95990891214292, + 25.003538579854798, + 24.97571028354694, + 24.94938181595829, + 24.993570148799094, + 25.026130898284265, + 24.978665664477262, + 24.943052288974663, + 24.91652898917096, + 24.967525074867595, + 24.92458761031655, + 24.929725279960593, + 24.89099457181845, + 24.940854205578653, + 24.938973837120418, + 24.923180268154063, + 24.93261514438094, + 24.945359772846572, + 24.964697647439436, + 24.934411428571412, + 24.990665922491687, + 24.983125602722318, + 24.92340126418344, + 24.945853660451867, + 25.018251519080867, + 24.98098450750318, + 24.972438649470035, + 24.965484469724693, + 25.011846575618712, + 24.959450619955142, + 25.070356378684515, + 25.016876467671963, + 24.95091058003551, + 24.91833706688449, + 24.88142460146458, + 24.879166675165187, + 24.93900825487141, + 24.977944849558277, + 24.93309564379662, + 24.85723444157241, + 24.92579722508536, + 24.932697631275254, + 24.978158707473764, + 24.95526082144807, + 24.965214366092397, + 24.998346646595984, + 24.909026123633886, + 24.883291928721682, + 24.976737611656986, + 24.92239629521665, + 24.853875203657875, + 24.83172146577322, + 24.77181666410917, + 24.836908128019274, + 24.914587118659995, + 24.90346578595641, + 24.99834109475965, + 24.948877931023453, + 24.87010931657823, + 24.937855584464877, + 24.945108640573814, + 24.86377309899442, + 24.900322939288824, + 24.90895761843658, + 24.956891788501785, + 24.85464469491484, + 24.98057081049697, + 24.951210919363035, + 24.999275105763093, + 25.010296008982213, + 25.02597555146066, + 24.989583794262426, + 24.92257163662675, + 24.954660534644127, + 24.907263875487182, + 24.925398338794892, + 24.867347361095955, + 24.85678724342928, + 24.92117785448672, + 24.90323514202896, + 24.946332471053324, + 25.019409297123463, + 25.013537564395854, + 24.90619139295712, + 24.911420532830107, + 25.008468484158332, + 24.939740371906787, + 24.988525074911873, + 24.95303040553742, + 24.899393556900456, + 25.071383029023437, + 25.010414655863663, + 25.00399382250896, + 24.942532014602506, + 25.022018529443415, + 24.96988549878659, + 24.94939831643284, + 24.917566501269583, + 24.960101862332586, + 24.921081892595424, + 25.017959141919455, + 24.973499892457024, + 24.952389580983912, + 24.901756077998122, + 24.960330651824396, + 24.96242102995806, + 24.947220111532125, + 25.07659110072752, + 25.03464993403596, + 24.993417770840814, + 24.946740798826788, + 24.873335413588514, + 24.936867418678425, + 24.955678036433454, + 25.044148540836293, + 25.004162353027233, + 24.93410458480525, + 24.934890943915143, + 24.927648673184464, + 24.96080342311961, + 24.91853996258712, + 24.891280706784666, + 24.847617783170584, + 24.884258041524586, + 24.984248769003063, + 24.921704403425224, + 24.945091010226985, + 24.912563526664716, + 24.875483986038983, + 24.870874374697422, + 24.936425900936683, + 24.95932595946232, + 24.969480754603126, + 24.979360737090815, + 24.96525821493767, + 24.898985799388164, + 24.83785374682583, + 24.88166105633632, + 24.98234863887413, + 24.941532018747747, + 24.96097646710136, + 24.993599229232373, + 24.988085866214853, + 24.956326505384958, + 24.85696567498536, + 24.966440979983062, + 24.92510892555478, + 24.963973958271808, + 24.858760675285207, + 24.804486793668303, + 24.80907465906015, + 24.889008350973928, + 24.927162876240804, + 24.965331533565983, + 25.019391535984568, + 24.85442150512014, + 24.936511037463504, + 25.027408647860437, + 24.927880580155488, + 24.957117361235248, + 24.949724894331595, + 24.92911092567708, + 24.985945769610712, + 24.968412766527123, + 24.94750781736548, + 24.93778689399189, + 24.992907008906485, + 24.96933079415488, + 24.943495833422695, + 25.029512757548876, + 24.95379672500614, + 24.908855705071964, + 24.863975379519314, + 24.960761576391608, + 24.921295118435395, + 24.95639876690786, + 24.903782923029276, + 24.847625665416565, + 25.016648664736536, + 24.977223578973984, + 24.943407246768338, + 24.90060315056357, + 24.92477097419437, + 25.006319588590152, + 25.047769860943745, + 25.00049003153845, + 24.936734299034555, + 25.003460915554406, + 24.98512774326929, + 24.854238281146294, + 24.893360925041627, + 24.92570468167604, + 24.956393951076453, + 24.915630173167024, + 24.942132344304092, + 24.95527240997407, + 24.97610473017691, + 24.929918740638822, + 24.92354804906767, + 24.91016765611853, + 25.02529719600497, + 24.994722389038056, + 25.034886251224314, + 24.979421082269567, + 25.00021808662383, + 24.914158479547375, + 24.97983580405003, + 24.971593410597684, + 24.85265319027483, + 24.884031618036865, + 24.94314666697985, + 24.914188801201142, + 24.905811751742803, + 24.967004634563544, + 24.92601406872386, + 24.965351328162278, + 24.86338198498758, + 25.00386471914721, + 25.058000273893207, + 24.942657255294613, + 25.048099715032784, + 24.99400902453415, + 24.927564620932685, + 24.934102877739896, + 24.92578159427728, + 24.974648646103542, + 25.0352022703524, + 25.055164129024327, + 24.990125341334007, + 24.991108581032663, + 24.992632288925698, + 24.9849869299901, + 24.988863420725266, + 25.00875841539265, + 24.98635221017274, + 24.989427568205436, + 24.970000529334843, + 24.957238099771345, + 24.94507792158729, + 24.976835400213115, + 24.935029032283566, + 24.949551492080317, + 24.929313530184693, + 25.018737127482922, + 24.89593681717134, + 24.886650552146257, + 24.93778857430602, + 24.942945549575285, + 25.028588576889014, + 25.012913369206267, + 24.991991574581, + 24.967982780115335, + 25.00123324300864, + 24.962577242211292, + 24.965026451334587, + 24.968737465514657, + 24.956646542854024, + 25.046670914009077, + 24.94287904311934, + 24.9197713993776, + 24.963577765056918, + 24.97650658937185, + 25.040897201619444, + 24.99542486240812, + 24.91941650619178, + 24.84463095813573, + 24.90105144204528, + 24.914350709393986, + 24.92927130595799, + 24.9325826575671, + 24.861226052052082, + 24.933437137059194, + 24.985288223667524, + 25.008663683410774, + 24.89263718077744, + 24.953391692460677, + 24.87897602427192, + 24.891196295842157, + 24.961241727941925, + 24.917273829154425, + 24.921947887708264, + 24.863612198747994, + 24.887571017661383, + 24.983785354283334, + 24.841781199945743, + 24.903430172365322, + 25.006795481671723, + 24.941491559032002, + 25.06647812403503, + 25.06025770305375, + 24.973904116407212, + 24.987999809147148, + 24.892390793023818, + 24.950679630451532, + 24.985015342066276, + 25.02375518056441, + 24.983163057405157, + 25.017063605174855, + 25.01709571455557, + 25.06065887541712, + 24.97641986126386, + 24.98380362772372, + 24.9498739902229, + 24.985730535184594, + 24.94445429125569, + 24.905786800717593, + 24.908921211826613, + 24.960825084304332, + 24.871089324226908, + 24.938788670900117, + 24.961050328300345, + 25.003781686402007, + 24.985504554456227, + 24.923909111405212, + 24.960084105856872, + 24.9822229283863, + 24.98387702772792, + 24.937195611434703, + 24.929680526709156, + 24.94686657181501, + 24.98574791115641, + 24.880263554475615, + 24.93388008455245, + 24.938776158972047, + 24.89445506838124, + 24.8922355608019, + 24.996078403289786, + 24.958090222382232, + 25.02054914210648, + 24.93133992310504, + 24.98263308829706, + 24.924522391276003, + 25.031457416227163, + 25.00975392365426, + 25.024553530271902, + 25.02143773770044, + 24.92044751823738, + 24.941555099656476, + 24.981943915497737, + 24.894161066762216, + 24.929299585164358, + 24.876166752779703, + 24.858430352759285, + 24.916752594178384, + 24.961333120836237, + 24.99275862944971, + 24.98616170624716, + 24.968133191605347, + 24.98877677031885, + 24.91386368986405, + 24.979441193886508, + 24.97033132987272, + 25.071170085923356, + 24.945994437788194, + 24.90901548510591, + 24.877770873774587, + 24.955860598808158, + 24.93137711559469, + 25.016048237218087, + 24.965067272088383, + 24.919968034794007, + 24.967496928993945, + 24.921675707355348, + 24.971118850390468, + 24.986024082771706, + 25.03555469498681, + 24.948496702846526, + 24.94183036226583, + 24.99158412015252, + 24.949282116276947, + 24.95781030419794, + 24.94441920512383, + 24.934702494502236, + 24.910470064229315, + 24.990639889011746, + 24.930788993527567, + 24.937907045087808, + 24.972700887339396, + 25.041076975594105, + 25.044971099782316, + 24.98610890582711, + 25.01624718147671, + 24.96746998719897, + 24.943470260743993, + 25.050183116574935, + 24.98748148615831, + 24.91603435642513, + 24.859402179387565, + 24.90611112372119, + 24.989021993802357, + 25.000994382370415, + 24.975400941283567, + 24.917712048365686, + 24.9374256433597, + 24.923092996341396, + 24.868480411136677, + 24.964034732010873, + 24.97352237633247, + 24.967824378872955, + 24.938180410506774, + 25.00481388371053, + 24.951445383416853, + 24.947916020176795, + 24.98686054033002, + 24.912360387742872, + 24.907846687993707, + 24.896557341608364, + 24.90680381661663, + 25.06825459091543, + 25.03521392784998, + 25.04390528889075, + 25.01396458179009, + 25.017935001231695, + 24.91311177987269, + 25.016917653254264, + 25.0273652853157, + 24.968110141102905, + 24.951153573656278, + 24.924013658486913, + 24.895421321036554, + 24.905996689334636, + 24.990813216321364, + 25.054316334847925, + 24.97230863669062, + 25.06575634303694, + 25.179021339278062, + 25.040065356186, + 25.05198521605318, + 24.931901737570488, + 25.01264302065662, + 24.976678925797003, + 24.939130198459594, + 24.918078058032208, + 24.9284337437486, + 24.982823756498995, + 24.907249740793887, + 24.915127337450052, + 25.006179096968964, + 25.03119807155101, + 25.77272318762543, + 25.262561931259757, + 24.98895560723828, + 24.99974243240393, + 25.03152491081019, + 24.98280200188904, + 25.011308994774865, + 24.967468117011183, + 25.000658074120473, + 25.017853478094803, + 25.033796079331402, + 24.900647135767233, + 24.954334779860744, + 24.810529205253072, + 24.911781736945837, + 24.939825692098175, + 24.97115648981908, + 25.0365407114653, + 24.991955404853343, + 25.007298432440194, + 24.922889481171573, + 24.879268028283455, + 24.959425891453424, + 24.91495108327343, + 25.016533793646133, + 24.953868598003602, + 24.959880641511305, + 24.93645030362309, + 24.9529401569703, + 24.926375478366985, + 24.98072448621147, + 24.89683177326413, + 24.916839255446288, + 24.9285794677442, + 24.922710109827236, + 24.956201140342028, + 25.011119969881094, + 24.911912453958823, + 24.927215238213883, + 24.966328437892592, + 24.932340972295798, + 25.007187013477445, + 24.999337638427775, + 24.98236661071124, + 24.961346096814296, + 24.869874660579526, + 24.90103399706034, + 24.91565645848535, + 24.89098587169532, + 24.92730774202211, + 24.991753070444627, + 25.022580839444828, + 24.933756757223662, + 24.980648287629457, + 24.98839508719869, + 24.972364967420425, + 24.964234320401772, + 24.99942471785933, + 24.954693242051697, + 24.893864670943845, + 24.95453542301484, + 24.92032333618046, + 25.02652681778764, + 24.92766980695179, + 24.942406391485328, + 24.95194231668577, + 24.952391070966037, + 24.993579981199016, + 24.995637451389662, + 24.98144159829834, + 24.938892246143617, + 24.953051066727852, + 24.920972061352394, + 24.971878217045386, + 25.00728952845251, + 24.92783729638188, + 24.963939241736178, + 24.99655916679732, + 24.92807598206167, + 24.93124411155089, + 25.040997809773113, + 25.047587162650032, + 25.053578449896108, + 24.939512729104152, + 24.926283927625093, + 24.91538557321701, + 24.944843315031864, + 24.97677160364134, + 24.970667009158536, + 24.919450646198317, + 24.953163191607903, + 24.941775844483054, + 24.9061098735249, + 24.883702957523393, + 24.92334883526221, + 24.886057738371974, + 24.845542868787064, + 24.90049120841374, + 24.853289384625462, + 24.83274630481749, + 24.886303377847405, + 24.928735981836216, + 24.981971057567478, + 25.017157029483542, + 24.983771739900725, + 24.961886657788657, + 24.93824253672063, + 24.987772720399274, + 24.943669289702395, + 24.98617642196686, + 24.925309715180752, + 24.97786970100286, + 25.015795955123014, + 25.00893066249023, + 24.998325705732654, + 24.977922045343753, + 24.99936206429912, + 24.923138905485928, + 25.009844557107932, + 25.037491285790658, + 24.900904243019774, + 25.00675750816727, + 24.883873667449357, + 24.866864815065693, + 24.957435258536226, + 25.008068072755364, + 24.95632496304862, + 24.827821684349573, + 24.902600251430005, + 24.945719454436123, + 24.818202104930734, + 24.808967715138692, + 24.878346084188973, + 24.94397705241593, + 24.986718221929237, + 24.95286882297152, + 24.88371508775747, + 24.884915313146006, + 24.937502717963525, + 24.98534643665733, + 24.903666826379517, + 24.898873097888774, + 24.953316601923294, + 24.985558670905355, + 24.905232022197573, + 24.955263400728732, + 25.00503805912669, + 24.882253016768672, + 24.914262186784253, + 24.99139771605038, + 24.948401438290553, + 24.94866222579123, + 24.874431946236786, + 24.80190870181973, + 24.87251693203556, + 24.925807096010466, + 24.953870705883965, + 24.910498723888118, + 24.907245692608985, + 24.96457717619363, + 24.96228067454996, + 24.999503779983336, + 24.945316243148888, + 25.060921627509845, + 25.03644998115552, + 24.938136100226693, + 24.906203254057562, + 24.984951062038476, + 24.95385027656477, + 24.972796004600504, + 24.91596969737401, + 24.973305181437723, + 24.950514120537395, + 24.910284979543633, + 24.974443983375213, + 24.946513164936277, + 24.96493496004198, + 24.93263360236213, + 24.93076219142389, + 24.939912105716424, + 24.959320614918564, + 24.893320799140614, + 24.960817942066196, + 24.898865069881627, + 24.920922445438425, + 24.85059747948735, + 24.987590669849787, + 24.968508931885758, + 24.90290498263305, + 24.931450495943874, + 25.006259578150505, + 24.885031610424164, + 24.910780551466974, + 24.935536119627937, + 24.9191682471742, + 24.905108986123132, + 24.901944937281254, + 24.89284962467579, + 24.95159376750176, + 24.89950414350639, + 24.923734038507078, + 24.939509403514705, + 24.88533529580195, + 24.906978974419467, + 24.893154405585058, + 24.917239035087455, + 24.80930965572353, + 24.921172072496738, + 24.9755237717945, + 25.05091059869129, + 24.964017364087326, + 24.90942627837555, + 24.9028083597278, + 24.938818449413457, + 24.944495618870512, + 24.85694074448248, + 25.03606081863849, + 25.047113195895175, + 25.0648271262618, + 24.967204573133163, + 24.95078716116602, + 24.9554983237577, + 24.870209646699855, + 24.939134972884982, + 24.925230868629562, + 24.94141842228899, + 24.99080353892394, + 24.954939787021704, + 24.98519338274135, + 24.909693951508235, + 24.921986317126397, + 24.903905929353538, + 24.952261797405214, + 24.973370626221435, + 24.950565907755138, + 24.913067010955615, + 24.95783285830903, + 24.953220409522213, + 24.96005130673885, + 24.90300431715878, + 24.836941653001993, + 24.902213192284613, + 24.960612712677843, + 24.96845862808921, + 24.896732219366925, + 24.961137538482333, + 25.00987488434206, + 25.103547348341753, + 25.004918431895547, + 25.031671717473802, + 24.992553138014152, + 25.07323963592893, + 24.9995472139054, + 24.998370591465935, + 25.018334436527752, + 24.989753894568267, + 24.944743424245353, + 24.95388714083913, + 24.919672810034843, + 24.99161032023718, + 24.90818060373355, + 24.953356600115214, + 25.058812888375915, + 25.068231737451704, + 24.872188465772233, + 24.926261339746368, + 25.1088909959853, + 24.97274186554163, + 24.992917278615053, + 24.952662262560477, + 24.992471372363063, + 24.93378075161094, + 24.902125244351595, + 24.887792221798918, + 25.023399137281835, + 25.010234638133923, + 24.933829345421746, + 25.04113055341172, + 24.898284978437545, + 24.933776620209123, + 24.94108650421797, + 24.92371107786277, + 24.960253049228726, + 24.941923620919756, + 24.98207150670479, + 25.029155264319428, + 24.91946677599273, + 24.936247927245546, + 24.839402283990168, + 24.966153778204493, + 24.92727068751673, + 24.95001122948774, + 24.934380073610868, + 24.963628869424408, + 24.983094261201405, + 25.022236215172118, + 24.970237069156248, + 24.954125557824604, + 24.97606180570554, + 24.943422022410196, + 24.972284322818986, + 25.055472231163936, + 24.958517670842333, + 24.91171577380839, + 25.002193600796563, + 24.893250889724207, + 24.85610534319011, + 24.97903147881524, + 24.93296586982405, + 24.929248834378704, + 24.935061267702157, + 24.92870904828633, + 24.87812601932253, + 24.982760660446484, + 24.96631652096521, + 24.947714548000828, + 24.98105206703213, + 24.917022252780058, + 24.84195614120534, + 24.895069251569947, + 24.93172893373097, + 24.949164047505917, + 24.981396621809612, + 24.885987851171272, + 24.87746297877544, + 24.89967047233249, + 24.89150676246407, + 24.958398642566465, + 24.988395541927026, + 25.02231961619978, + 24.963474670680334, + 25.021048324362802, + 25.00213542177257, + 24.903023947764698, + 24.971721869979817, + 24.99420934669879, + 24.92744714360542, + 24.91850421525736, + 24.924336751398755, + 24.934162795284497, + 24.906202399682954, + 25.002574516618836, + 25.000328324938998, + 24.85895340003713, + 24.86927135755773, + 24.923775139851326, + 25.00196607468073, + 24.965804531095433, + 25.009393615709946, + 24.998507231937907, + 25.09218348338144, + 25.024016824103647, + 24.983062489459833, + 24.917778892849995, + 24.87177243913295, + 24.967859980391726, + 24.931877871183133, + 25.018353259457157, + 24.952151043140944, + 24.968705220241276, + 24.990727136167635, + 24.90872507198526, + 24.854462482763058, + 24.848398718164226, + 24.887455023986995, + 24.93608974628612, + 24.968586252223822, + 25.009524433771453, + 24.917807229034786, + 24.911158760402984, + 24.888334516648328, + 24.894236920245817, + 25.041978641340194, + 24.937977934804497, + 24.93465419058336, + 25.1361590879753, + 25.018776273353513, + 25.063921129673993, + 24.970064574510868, + 25.070893843700986, + 25.021071957843873, + 24.994901587506483, + 24.992179742690197, + 25.049415722044028, + 24.978889918160476, + 24.919590048183238, + 24.925872756312195, + 24.981954268565467, + 24.986093370394304, + 24.93993341113459, + 24.957269074634702, + 24.93712024367816, + 24.91781555984243, + 24.97187892772722, + 24.93801568810813, + 24.903574443878288, + 24.903584777817315, + 24.958981828527293, + 24.99507317484435, + 24.909920235715056, + 24.9083837835895, + 24.88154244454863, + 24.908327380154653, + 24.946361150883895, + 24.95434302780283, + 24.91168961819738, + 24.96271982472028, + 24.882900460101176, + 24.977220381608447, + 24.990740771187326, + 24.994566604120532, + 24.971950063866537, + 24.935152304091865, + 24.97582961834916, + 24.92527018385233, + 24.951825889807527, + 24.95337916182544, + 24.90707852974272, + 24.963510154660725, + 24.967160216139124, + 24.971209787652796, + 25.01424235811068, + 24.984775697507082, + 24.95343842856959, + 24.8918459046401, + 24.963284277975845, + 24.953639345022726, + 24.931992326297298, + 25.01177299276648, + 25.05449537333817, + 24.969944317515193, + 24.94173156105689, + 24.91612681252291, + 24.948062987245056, + 24.99273313535414, + 24.96200128777332, + 24.961581835514274, + 24.857721172034474, + 25.014808916590074, + 24.82968610018947, + 24.846466587455886, + 24.96622291495593, + 24.986973936120876, + 25.041310255425223, + 25.00597221949331, + 24.983579850274133, + 24.991772705782978, + 24.949077674124126, + 24.949983291162262, + 24.917970160452846, + 24.895448482566863, + 24.91042983887342, + 24.87707214902533, + 24.924915271119158, + 24.899258609752614, + 24.9315520053238, + 24.935993768690075, + 25.00320483085453, + 24.9778625659946, + 24.994612352441102, + 24.871011033737357, + 24.85671044728197, + 24.926472904259132, + 25.03085943245874, + 25.04103051323687, + 24.9587201925698, + 24.970995929728232, + 24.925747086905186, + 24.948048257663118, + 24.99083757247864, + 24.965417033617477, + 25.01214941839895, + 24.949609460430633, + 24.97436557756895, + 25.04213798719807, + 24.969342426792515, + 24.828167397136795, + 24.863588996651796, + 24.90607556058308, + 24.971153751206998, + 24.922207453118382, + 24.993542337696265, + 24.93742251370069, + 24.948309766267528, + 24.8924643067308, + 24.929775142518228, + 25.020774637588147, + 25.074186457777216, + 25.022616267470987, + 24.98882482177199, + 24.968899722813333, + 24.917092518076622, + 24.98324553115568, + 25.01655362699711, + 24.91110412302003, + 24.96772250105292, + 24.955355661013172, + 24.981120824983684, + 24.89134350396929, + 24.933484307560427, + 24.965080930414167, + 24.95121463723371, + 24.913378480331446, + 24.906629720555706, + 24.87658857909897, + 24.948949575314025, + 24.865732213519532, + 24.962833102536916, + 24.908932812483176, + 24.995514440709396, + 24.926512145618446, + 25.014193058770346, + 24.95886239268367, + 25.013830682044926, + 24.93487088064921, + 25.039573342941885, + 24.995545619777726, + 24.95426242270121, + 25.041035702076123, + 25.07097956419502, + 25.004125992992414, + 24.970897560404435, + 24.92578475044049, + 24.84542634555796, + 24.9402629431616, + 25.03810026773204, + 24.90907596465505, + 24.98316583234392, + 24.915217753684807, + 24.992957382893714, + 24.97772284228669, + 25.030894834152775, + 24.901348868106403, + 24.902705000993585, + 25.024801031462466, + 25.04935218987211, + 24.989080024399, + 24.92013478527252, + 24.920151249827974, + 24.941922082031194, + 24.970876790590456, + 24.986548963294766, + 24.960195921566843, + 24.91297196424869, + 24.915374400200808, + 24.908098384611378, + 24.97601626593979, + 24.954184519834747, + 24.965543662319696, + 24.899122596277163, + 24.971081547592224, + 24.946326238381392, + 25.013728437554526, + 24.96243575798121, + 25.0179068141557, + 24.897537554777983, + 24.948657747841118, + 24.995988742116655, + 24.97343090164268, + 24.94177219539894, + 24.95771974327957, + 24.949435624299902, + 24.97841330277643, + 24.874479190891783, + 24.92332353200385, + 24.906419285438705, + 24.917525698977435, + 24.936375767450393, + 24.954698822516214, + 24.84015219750455, + 25.090507594132383, + 25.20192044497998, + 25.343517055712624, + 25.330607380554934, + 24.930362050112016, + 24.86244980293943, + 24.870577220611104, + 24.903853797790646, + 24.97540766551458, + 24.99301866860047, + 24.90537431683117, + 24.942851394767906, + 24.942715681949196, + 24.954014887199172, + 24.941871564111572, + 24.94858901384973, + 25.01114616333182, + 25.000085741200447, + 24.975764481220818, + 24.901582999330486, + 24.863624656179233, + 24.910207056660518, + 24.94846012069065, + 24.954876884207124, + 24.871634390976833, + 24.982541883136783, + 25.024831452881457, + 24.939947974931194, + 24.964998651941862, + 24.97607708585098, + 24.941181099222813, + 24.91930025801245, + 24.975396047883017, + 24.921849501868458, + 24.931979616903085, + 24.90698875825109, + 24.961921671277064, + 24.805187060907166, + 24.793854787068845, + 24.858632616440502, + 24.8825350420939, + 24.907091807179867, + 24.81118729010567, + 24.8418159195286, + 24.93906641121548, + 24.911398099600902, + 24.868269938015743, + 24.91588393652726, + 24.911034754782825, + 24.93109884563234, + 24.961793724532093, + 24.91585781634404, + 24.935892221554354, + 24.868053552561033, + 24.88307556568528, + 24.870458032417588, + 24.88200605236856, + 24.847273364383653, + 24.842531380649056, + 24.95953389067062, + 24.976275572120024, + 24.952519638370653, + 24.92316977414081, + 24.952595506805235, + 24.933611366479326, + 25.053453109511146, + 24.990046849675124, + 24.9471130188034, + 24.950347282034855, + 25.002999955800338, + 24.95146175793389, + 24.955033613962648, + 24.987464658654666, + 25.00256650235167, + 24.919179837968557, + 24.95122312917816, + 24.897042626201348, + 24.90067749842431, + 24.929687450653798, + 25.0391314740221, + 24.94252572600898, + 24.87007868025905, + 24.93107620923945, + 24.978798983303946, + 24.936199364456225, + 24.907425888002663, + 24.939474903011515, + 24.962643537803896, + 24.949287700766543, + 24.926449756433875, + 24.960589114418397, + 24.93235003893097, + 24.94331742570201, + 25.015279082043065, + 24.98772456174678, + 24.929163466129083, + 24.89950945975462, + 24.869930172725258, + 24.92713046358061, + 24.887480524368865, + 24.926388887524965, + 24.97188180543153, + 24.9134097652094, + 24.923820530686296, + 24.926519356200792, + 24.943399898585916, + 24.92266806163282, + 24.87663590374762, + 24.879323676730017, + 24.909348144875416, + 24.943602780431785, + 24.939840530442495, + 24.95916351332106, + 24.996954570477747, + 24.987357881058866, + 25.02370172403682, + 25.019152282842832, + 24.900060292753864, + 24.896815595658243, + 24.965970251005757, + 24.96571694640445, + 24.956070511568736, + 24.887661151779646, + 24.855450759244572, + 24.872793327722643, + 24.918766333870465, + 24.990178028497073, + 24.940884853844448, + 24.931198284090122, + 24.956544599310984, + 25.002188510376435, + 24.97050295490194, + 24.93400045607112, + 24.930914948136632, + 25.021874692831254, + 24.93302723342156, + 24.906753260341, + 25.023590293792427, + 24.95899051727502, + 24.975783431092133, + 25.03618923180818, + 24.87894040439885, + 24.929430559810974, + 25.0403746640867, + 24.956538943740284, + 24.94430789808146, + 24.93361365816236, + 24.855947084640807, + 24.98488734661673, + 24.9838048766632, + 24.960137791493963, + 24.960321511355694, + 24.934056716345076, + 24.93996650975065, + 25.00089168269682, + 25.02640479200249, + 24.943461416605295, + 24.9858541572902, + 24.904061011824496, + 24.94880110598029, + 24.966211416892946, + 24.923667361611095, + 24.868160851327296, + 24.815251266616052, + 24.855009763825976, + 24.8627325750896, + 24.939873143584414, + 24.92058067108384, + 24.984872725806095, + 25.038613024628436, + 24.979974376857445, + 25.0681337562536, + 24.97908435761663, + 25.030762318283244, + 24.98702024982617, + 24.872947834440254, + 24.947909401550405, + 24.99252798900562, + 24.877026441565846, + 24.954912759793487, + 24.887991203912755, + 25.000305941381036, + 24.884689239250953, + 25.018086348087728, + 24.97824003699905, + 25.016718903158857, + 24.936657729710987, + 24.978152701121765, + 24.966320003859348, + 24.945096646495095, + 24.945979897499193, + 24.97257514003023, + 24.89031531850517, + 24.91831778558254, + 24.92117806273843, + 24.910230006644284, + 24.88653539879673, + 24.921388928677324, + 24.88299358366534, + 24.84356751250987, + 24.960944573904605, + 24.92488193700209, + 24.94647560652846, + 24.91658348343651, + 24.8483561908481, + 24.910492012906545, + 24.970826898606525, + 25.03856438155617, + 25.001172784934244, + 24.94785841521412, + 24.955094261808423, + 24.983791671348758, + 24.836102612581264, + 24.872027530308273, + 24.851572749186516, + 24.868535087569263, + 25.0030264110081, + 25.002445290964033, + 24.986639951637198, + 24.97372774714642, + 24.914701578602745, + 24.939826884821514, + 25.024897935788964, + 25.147202773196774, + 25.21245635499914, + 25.078238639823006, + 25.17855230793576, + 25.1645781320966, + 25.188868170577333, + 24.93340395221073, + 25.013129095718373, + 24.96858963321835, + 24.95204210132095, + 24.934978662676627, + 24.93723936276495, + 24.951816005498593, + 24.842990088847323, + 24.97129560845451, + 24.998169954996726, + 25.027502480463617, + 24.977146458802288, + 24.962936020379544, + 24.96517602281124, + 24.878665993219023, + 24.971023923932137, + 25.011331849633905, + 25.019936208304102, + 24.92300196633183, + 24.934984749093037, + 24.950706497236077, + 25.00125198652763, + 24.972857430519905, + 24.93784498172588, + 24.950438992581546, + 24.852721199637067, + 24.830378278138554, + 24.990829300070132, + 25.02117772161916, + 25.04342322309975, + 25.037600395577602, + 24.950355791491166, + 24.980611558344073, + 24.960648565759143, + 24.970355834730647, + 24.950840690565244, + 24.916022945158602, + 24.979061245004345, + 24.96821980497389, + 24.967052369227417, + 24.954578897878726, + 24.922628220420883, + 24.856734884737243, + 25.072145624505055, + 24.95935841209904, + 24.858299986262253, + 24.959648923142787, + 24.972732214129195, + 24.924103272498925, + 24.917663662264147, + 24.887630231748663, + 24.895881515209172, + 24.85157940487022, + 24.93802498235771, + 24.930318392824873, + 24.888452656586022, + 24.90629599635393, + 24.98482268285563, + 24.90274683398099, + 24.932652158649518, + 24.897229612609742, + 24.933703486675878, + 24.865584076084417, + 24.904732974295207, + 24.910349853364913, + 24.915693458780687, + 24.97045519995713, + 24.963683556055763, + 24.97268177140623, + 24.98006187941996, + 24.922716294749588, + 24.93929876158537, + 24.975902540578762, + 24.913750825181168, + 24.890633337939548, + 24.903833082819773, + 24.888528356513852, + 24.87336378097074, + 24.940043425927684, + 24.956927374432276, + 24.942813645430192, + 24.955719016742663, + 24.87785798290621, + 24.910831153086384, + 24.991623381072223, + 24.96361088914697, + 25.04939061510803, + 24.899391791434173, + 24.98187293764134, + 24.974908082479725, + 24.97512059716844, + 24.942820127421143, + 24.923241981658457, + 25.03926693396548, + 24.971353777461374, + 24.874943353741106, + 24.907636053231656, + 24.9142030390043, + 24.961329325031773, + 24.882052009662036, + 24.933116228400017, + 24.968650034831235, + 24.90457693029748, + 24.96958588816042, + 24.907661922947057, + 24.938229272784532, + 25.00038940966926, + 24.950432232421242, + 24.897541474688843, + 24.877660768579467, + 24.937030101927867, + 25.016622984751017, + 24.924835835692413, + 24.897472734320885, + 24.949906723753703, + 24.91220041854455, + 24.849649081041314, + 24.891989918211728, + 24.98528906707918, + 24.958373418344124, + 24.873285546175744, + 24.833524660818846, + 24.941288264882402, + 25.016585788118487, + 25.028123999702025, + 24.897763858772386, + 24.940719158067512, + 24.909902458673255, + 24.900805983513166, + 24.943274220437363, + 24.929522507707638, + 24.939463470557715, + 24.953249082245335, + 25.026776827097496, + 24.973520565822554, + 24.958377250927413, + 25.013397800408747, + 24.953612362435337, + 24.921994421334716, + 24.919891839491413, + 24.938034808457513, + 24.918755691977758, + 24.85822289418125, + 24.978059264079405, + 24.950216711022666, + 24.924757451969313, + 24.865852527724684, + 24.856764099707213, + 24.91326363974192, + 24.93664683066067, + 24.97760439289301, + 24.929277695318767, + 24.933427883833076, + 24.915794943766976, + 25.001675528190248, + 25.017017566302876, + 24.95248646104819, + 24.928451393183103, + 24.871227549329557, + 24.94666651274566, + 24.91544764668581, + 24.915270111172248, + 24.929402365914274, + 24.93031922009878, + 24.907656817649162, + 24.973583154043013, + 24.933776308877007, + 24.880921224260618, + 24.913629679991907, + 24.90943540219653, + 24.90526926192898, + 24.951967797792367, + 24.977322905412358, + 24.985235623114676, + 25.05430983003384, + 25.001975379123913, + 24.97759657756898, + 24.91093480113534, + 24.90321924543441, + 24.953850661102635, + 24.910907667495742, + 25.031311585542234, + 24.9488109131642, + 24.87223310092535, + 24.937021288121812, + 25.05058666077329, + 24.943817888364123, + 24.98303663135535, + 24.930635499396246, + 24.914178387812782, + 24.963791549091503, + 24.935020291943147, + 24.91892032131458, + 24.980468394973876, + 24.89525879478127, + 24.91095082898174, + 24.88538591427141, + 24.876111698265472, + 24.95197995826399, + 24.939331458174244, + 24.94006468608711, + 24.979019218607228, + 24.900672926800915, + 24.944386681503456, + 24.938406388150902, + 24.98060104367385, + 24.911499620360594, + 24.938399654481877, + 25.053579590122965, + 25.09529930853018, + 25.110077046915308, + 25.032533819135704, + 25.02567385169432, + 24.921790635941793, + 24.952927137665597, + 24.904069951032927, + 24.938130160865988, + 24.900149359239194, + 24.9476943631566, + 24.97492817959551, + 24.944418333669446, + 24.9952223771895, + 24.98617624616728, + 24.960181470609204, + 24.995776690501124, + 24.9141313420563, + 24.938918946605913, + 24.9283193616587, + 24.95150606402917, + 24.977884965791425, + 24.950210771890667, + 24.91916989421341, + 24.929696629530774, + 24.840438512004837, + 24.87495152600243, + 24.879299057453593, + 24.93599084362214, + 24.90005344283464, + 24.959184340969497, + 25.0299780136725, + 24.930742780822698, + 24.922979900962137, + 24.980825164038894, + 24.990025391997175, + 25.022008471635537, + 24.996804984306316, + 24.964689971051744, + 24.92242254094633, + 24.982569442176658, + 24.968611834637983, + 25.03507425150877, + 25.05797985094199, + 24.981919142786708, + 24.919783969988266, + 24.925613922803443, + 24.92633917664231, + 25.067828800533324, + 25.021028191436827, + 25.08671047530958, + 25.034167608703623, + 24.997760024322695, + 24.94267263919926, + 24.958488742832333, + 24.925557276800955, + 24.92947466662268, + 24.95428277540139, + 24.900562970589547, + 24.970165841578705, + 24.95743113700979, + 24.931164207790193, + 24.923530341514628, + 24.908117776063555, + 24.922870491373388, + 25.012025223960443, + 25.087593481083438, + 24.950343338033292, + 24.9000995926329, + 24.94691960255937, + 24.99296708297843, + 24.898289368390255, + 24.965295783191255, + 24.91326671588385, + 25.002644931253933, + 24.93611429958503, + 24.952348262506057, + 24.926408749961972, + 25.00475603041698, + 24.85734529167614, + 24.87520230513755, + 24.864919296791413, + 24.93452026902667, + 24.963656836856632, + 24.92559930041567, + 24.964061691695278, + 24.89911195382532, + 24.87129371928885, + 24.864101599462927, + 24.99199037671983, + 24.93542724677735, + 24.97343673086234, + 25.036489780916085, + 24.84206622557095, + 24.91353197010973, + 24.963171236494553, + 24.927225067619773, + 24.930499728135384, + 24.921988219079815, + 24.970271118218406, + 24.930542091289187, + 24.983138353161472, + 24.957550228420246, + 24.9376487207445, + 24.90100196735308, + 24.919790415149876, + 24.900521545418936, + 24.975207741452216, + 24.992730371164697, + 24.745730141985902, + 24.862764622170072, + 24.897526076262587, + 24.901623331413397, + 24.91083715234372, + 24.88201867375279, + 24.917531305457672, + 25.093202944159742, + 25.03432172668414, + 24.954031064513813, + 24.89906179813694, + 24.980183893955207, + 24.966238635119332, + 24.952795658610796, + 24.945617676112562, + 25.044313283442577, + 24.987830590764368, + 24.84665478969692, + 24.923029942902417, + 24.996216643372623, + 25.073404031897823, + 25.002522322389133, + 24.912901451547917, + 24.969322889295185, + 24.936364681131085, + 24.895520253652073, + 24.88394978959299, + 25.00453111893237, + 24.993080704065253, + 25.010148985522278, + 24.908151978555857, + 24.968761969216118, + 24.995492647567684, + 24.9262643836005, + 24.983192175528256, + 24.990340893568273, + 24.899456620312883, + 24.813833879394817, + 24.890641197580244, + 24.948646133643813, + 24.93247654685771, + 25.046183925544064, + 24.988534858452176, + 25.07325334469698, + 25.019719995551206, + 24.858596838112213, + 24.9407345479649, + 24.952784561479532, + 24.935410996883903, + 24.904061251630594, + 24.901854336452594, + 24.915643975278364, + 24.88809691105086, + 24.971010414868147, + 24.95408124207197, + 25.01976995746795, + 24.903116665081832, + 24.93798699986776, + 24.937721475988273, + 25.008309437618735, + 24.97243958794089, + 24.977449804212732, + 24.98615063056153, + 25.003656451272455, + 24.93138729571226, + 24.96123117692982, + 24.98211966035959, + 24.97660161886544, + 24.909009143911064, + 24.886569447797452, + 24.99128376871607, + 24.96377746066988, + 24.88832440664392, + 24.89252714947943, + 24.9404127697858, + 24.95901227722024, + 24.929458826201248, + 24.893105556662263, + 24.900965066141058, + 24.97627845168889, + 24.929409039173844, + 24.956940500290212, + 25.024531327360478, + 24.949602253439508, + 24.945704474904037, + 24.924599748003658, + 24.85570642721083, + 24.86671984063539, + 24.871043280918354, + 24.914991201373702, + 24.914661917709758, + 25.05929179193939, + 25.02194520658294, + 24.933737307258895, + 24.963721927127096, + 25.054959897813998, + 25.06626601799492, + 24.96191263115926, + 24.974428293402212, + 24.934090045048006, + 24.998851263286554, + 25.017955775697782, + 24.944502362122172, + 25.027139492030265, + 25.008548220087174, + 24.891752655036896, + 24.88098092763418, + 24.984993786761933, + 24.968396611917655, + 24.967412533846577, + 25.02036848496014, + 25.003167934480174, + 24.97974356842583, + 24.94863704106956, + 24.92211107574519, + 24.94687978884235, + 25.05529133308584, + 25.04957506898444, + 25.032210490753783, + 25.015941530127684, + 25.07781095815966, + 24.93952093836976, + 24.846347399951576, + 24.88027627807182, + 24.87229117201408, + 24.89193674241432, + 24.85575162764908, + 24.94245886676042, + 24.97786212984343, + 24.976794272467966, + 25.0190757378298, + 24.963969356998476, + 24.99107329584683, + 24.904258532600632, + 24.899039129762976, + 24.986743488098135, + 24.942563369121878, + 24.914465778617735, + 25.024473545654587, + 24.917418604618558, + 24.96036889310795, + 24.91128854574363, + 24.941665970243264, + 24.97484801555678, + 24.979315300870432, + 24.93979072675539, + 24.996877975732097, + 24.968634946994776, + 24.94807108161618, + 24.938277879918324, + 24.920302931556797, + 24.969149716724516, + 24.885597990849135, + 24.939364978963155, + 24.99250826857076, + 24.95700201245227, + 25.02298734671485, + 24.993663900453456, + 24.931413071160307, + 24.945170274189856, + 24.840320065715108, + 24.949715227994453, + 24.99869604357589, + 24.941142697503217, + 25.010305352853955, + 24.948722561276206, + 24.94750900291102, + 24.95136344170939, + 24.94865970766596, + 24.96470809441209, + 24.93790071076165, + 24.909968834464255, + 24.880562690713013, + 24.901054766686656, + 24.97781778995239, + 24.937270106819106, + 24.832019337465574, + 24.906543527907754, + 24.96141165986329, + 24.97468023667976, + 24.973663630426174, + 24.970771118525356, + 24.97243634848779, + 25.01692214438938, + 24.9940772773353, + 25.051465362487598, + 25.083840362667807, + 24.94493085389025, + 24.938198911047532, + 24.910423858533903, + 24.91548461930051, + 24.966635529087434, + 24.903609354492993, + 24.943987705540316, + 24.947583197727305, + 24.8761274851457, + 24.996685887329697, + 25.05286306039717, + 25.003707474825237, + 24.989441859968686, + 24.966070968079237, + 25.006848152509207, + 24.962069978826303, + 24.93779208776591, + 24.990177294643413, + 24.946739037277066, + 25.023935064963723, + 25.00868423007394, + 24.9736400292961, + 24.870631751677212, + 24.972216776990564, + 24.978451155841768, + 24.94926815860441, + 24.908393472515485, + 24.966385633557124, + 24.905303843156286, + 24.970428530073434, + 24.979004757220928, + 24.960744798578187, + 24.971193841895953, + 24.905045107908624, + 24.85908460515573, + 24.969546432841568, + 25.011182107279495, + 25.042172630572068, + 25.006347760461413, + 24.988959368844117, + 25.00572279888508, + 24.95248319331217, + 25.01234381103621, + 24.93963194759595, + 25.03542011608625, + 24.86229833095711, + 24.901149976065593, + 24.961679243712688, + 24.961558011262127, + 24.951711050717158, + 24.97179860389493, + 24.944595716115103, + 24.990987664612412, + 24.958456494325695, + 24.985449986038716, + 24.94204267235903, + 24.995214507380105, + 24.936946222173464, + 24.94028861203242, + 24.921468081546628, + 24.911074434343213, + 24.929833892823503, + 24.896143808057566, + 24.910624568835853, + 24.89740523737355, + 24.91548449058432, + 24.895541810798072, + 24.925306104736883, + 24.95093747937603, + 24.915774593974334, + 24.907441020610584, + 24.941983459121307, + 24.90891595977446, + 24.982079130447826, + 25.013827055405784, + 25.034990753351437, + 24.874664354130523, + 24.936629873815896, + 24.948684921825112, + 24.96314748716814, + 24.957640236876383, + 24.98737871275705, + 24.936425980296292, + 24.956676013911114, + 24.90866320204156, + 24.97499827552774, + 24.911661198271332, + 24.886452561604777, + 24.907363499411986, + 24.99840598874643, + 24.956184472702027, + 24.917949551106865, + 24.965948095212, + 24.92552539449534, + 24.915806302434177, + 24.890616975626592, + 24.995791007412627, + 24.952970228735403, + 24.92540050785544, + 24.969889581936567, + 24.997722027902654, + 24.92345599669133, + 24.975304918644504, + 24.930885559573905, + 24.891888880055525, + 24.91236715029502, + 24.924797324192, + 24.87595811128375, + 24.90235905575436, + 24.966269254493447, + 25.018497722688213, + 24.98056823724105, + 24.959199502499136, + 24.87788254650829, + 24.96373077006882, + 24.917048566082386, + 24.79369365326994, + 24.750381265852443, + 24.85033117048453, + 24.872607155269236, + 24.941226899196298, + 24.959482707012675, + 24.951761773915404, + 24.949913727424846, + 24.98693516309679, + 25.000726059828672, + 25.014767807478457, + 24.958201908472745, + 24.98898556418426, + 25.0003005977971, + 24.918565086540053, + 24.88528422052923, + 24.974786784146204, + 24.985144901976263, + 24.938170951087343, + 24.937813086857787, + 25.022827819993125, + 24.99315700512096, + 24.950018332392325, + 24.866319315281753, + 24.93177856657507, + 24.959732820887893, + 24.93258580788903, + 24.895071352462352, + 24.902502124175285, + 24.904497746135917, + 24.857462003098732, + 24.90439056381912, + 24.917259188135052, + 24.98638284816404, + 24.98731400350909, + 24.91454782301423, + 24.91882854202984, + 24.92432073265896, + 25.019467654322185, + 24.93259121455232, + 24.86876790916417, + 24.885382809891993, + 24.864100333614395, + 24.93789126202843, + 24.940308510266, + 24.93388214678699, + 24.97976105472428, + 24.954863527437404, + 24.894348964874876, + 24.9155320569229, + 24.91329144520249, + 24.914118277369532, + 25.003294580661414, + 25.041326177339386, + 24.948295931745832, + 24.944488720598493, + 25.01760631230867, + 25.00268199524121, + 25.02384858139027, + 25.3641796326333, + 25.361455113476886, + 25.405819279970267, + 25.421535185299284, + 25.314425705100266, + 25.349939745466763, + 25.489788871936323, + 25.259249081377103, + 25.223891566386325, + 25.161050152646194, + 25.087236550798583, + 25.22220078967296, + 25.0951596764451, + 25.04807084412622, + 25.05713140874448, + 24.988900620064506, + 25.122882529396314, + 25.176380086725075, + 25.11093070729652, + 25.14460473294015, + 25.32353802192, + 25.35281801874299, + 25.514034012059735, + 25.131312166999315, + 25.291847320456736, + 24.9728263856822, + 24.953433225356417, + 24.964346615575494, + 24.95507566625112, + 24.921480020005077, + 24.81397918042725, + 24.946253195992597, + 24.90272582258286, + 24.92218044890518, + 24.940660005962116, + 24.918338704894722, + 24.963092494457463, + 25.054235542174503, + 25.02309987491421, + 24.95525054848183, + 24.92437204086277, + 24.89653516241158, + 24.949500893511413, + 24.860813523739715, + 24.89591836931443, + 25.00002513764233, + 24.969457705147065, + 24.98083051266205, + 24.938735422814823, + 24.94969013712422, + 24.951208347479422, + 25.039675410923742, + 24.964159472463393, + 25.030250321385587, + 24.98233595901616, + 24.891145990529303, + 25.069831851293507, + 24.962796801670354, + 24.916284497676635, + 24.93586270667099, + 25.01173118630289, + 24.895714178582395, + 24.89243116251444, + 24.814198056124788, + 24.821621436230608, + 24.843859761330133, + 24.85998565877746, + 24.931690025493886, + 24.970215758915028, + 24.98018200939304, + 25.000309938111243, + 24.967755242546968, + 24.927585527579357, + 25.097797881542157, + 24.96964552669339, + 24.965171186440216, + 24.966562186043554, + 24.921314665352366, + 24.87960835246915, + 24.98030626689555, + 24.91897359522195, + 24.841594537080116, + 24.825477046910812, + 24.87551717424382, + 24.857822096250896, + 24.908023796885814, + 24.91946780579306, + 24.899378522896264, + 25.010969369960364, + 24.88198949303796, + 24.985051020919435, + 24.91756782693799, + 24.980042040258283, + 24.898456419893318, + 24.942413520405317, + 24.966639244336392, + 24.921908522957573, + 24.93191440921735, + 24.971755496945136, + 24.93779362238632, + 25.019556665550954, + 24.961868763015346, + 24.972754060918536, + 24.957999586380453, + 24.91223999682191, + 24.889827109302207, + 25.05384525386591, + 24.993750647351792, + 24.959379191331713, + 24.96509168840972, + 24.958875820922145, + 24.92621078145359, + 24.893506972964296, + 24.96199504445546, + 24.92691836220881, + 24.94385050802297, + 24.919110499032147, + 24.96190133025582, + 24.88069480083288, + 24.96103907666879, + 24.966316066643188, + 24.89210125979894, + 24.91783159729903, + 24.95534199085091, + 24.955828887490885, + 24.91500910629771, + 24.870213416287747, + 24.935544893315694, + 24.95812111032152, + 24.980215722954902, + 24.967324112108535, + 25.01762011989142, + 24.883188434724374, + 25.042751340076876, + 25.0080342966687, + 24.91042319989619, + 25.10525053901211, + 24.92805555084213, + 24.92795726368704, + 24.915502492270843, + 25.003953061265353, + 25.04535707507225, + 24.960528421069853, + 25.025718363597406, + 25.018420555030424, + 25.08897662656109, + 24.980464951967818, + 24.963372088389203, + 24.98521098318553, + 24.88830713450136, + 24.89437748572624, + 24.85270460969009, + 24.884660597396607, + 24.938898993816743, + 24.925474994155437, + 24.94362308485472, + 24.96135514893082, + 24.90405053160471, + 25.2424147517686, + 25.226080507543667, + 25.289210905680296, + 25.182459919769652, + 25.362255301561515, + 25.366596172703883, + 25.333235391998322, + 25.160000400730745, + 25.074099978169137, + 26.046310562788275, + 25.02336069048896, + 24.952987674367286, + 24.90342697807977, + 24.910041338452224, + 25.026241266580122, + 24.887335318456948, + 24.914433338536988, + 24.872281213202193, + 25.000887393646494, + 24.99874108064381, + 24.977122510671492, + 24.96931865498901, + 25.00466793527093, + 24.902564579189765, + 24.901075419808556, + 24.876871830796222, + 24.889388512687965, + 24.87547536322193, + 24.92427145750652, + 24.942979374826063, + 24.92583099186972, + 24.96774798190103, + 25.000167394546533, + 25.000500159287125, + 24.98600685065123, + 24.91270221151572, + 24.89502538983885, + 24.96328810699693, + 24.90144148295382, + 24.94337100114817, + 24.967238860786495, + 24.984000720819417, + 24.82792589267372, + 24.866304962432558, + 24.818293433143644, + 24.914553682476495, + 24.960787131956536, + 24.948630174605064, + 24.95290723477944, + 25.005440670778764, + 24.97029285310481, + 24.88787255576375, + 24.985044782818207, + 24.939863326178042, + 24.993476242334275, + 25.04671517675579, + 25.052088420159485, + 25.019451188127206, + 25.01315666394016, + 25.00526030829583, + 24.938834375130575, + 24.940772392865018, + 24.91249937190719, + 25.07773230303343, + 25.0101237375571, + 25.044564734835426, + 25.02460130176604, + 24.85511098025477, + 24.857666011645364, + 24.968030036988466, + 25.063167267814386, + 25.04051122687528, + 25.02871101681343, + 24.98629206945555, + 25.04813858490878, + 24.92565266668288, + 24.89724578317351, + 24.933041988616644, + 25.018969024576283, + 24.830016782035685, + 24.878011733071077, + 24.86336078488337, + 24.963509642942515, + 24.920713292058565, + 24.913156932770228, + 24.942894372202055, + 24.919995776470813, + 25.028721569392214, + 25.008313704399985, + 24.975342149691315, + 24.847675656032933, + 24.865879700871403, + 24.84441638292075, + 25.004513119608806, + 24.96912087993109, + 25.00872537200455, + 24.959100695308713, + 24.976630938652015, + 24.987018714613882, + 25.058082280724257, + 25.078615581540475, + 25.05366013536929, + 24.930897563558844, + 24.98111247746753, + 25.02843151992994, + 24.95786434766877, + 24.95608930578951, + 24.9620336256196, + 24.93320335632979, + 24.90674613492328, + 24.93689497681069, + 25.00285960011138, + 24.95036748188013, + 24.965736003450985, + 24.964820793195692, + 25.057039452915898, + 25.037822984512708, + 25.004540618325926, + 24.94316289232013, + 24.964292022958777, + 24.964400275440536, + 24.944662605171096, + 24.861262350698283, + 24.94401731583318, + 24.867392379626285, + 24.95090817327526, + 25.065254718514815, + 25.052712826500823, + 24.914652066661105, + 24.908414767393012, + 24.903461677580566, + 24.9043427857941, + 24.917892873502918, + 24.90165461901472, + 24.95341420592018, + 24.904893941156082, + 24.888011601170273, + 24.948543897712575, + 24.986208067460375, + 24.899549850090484, + 25.03645831570009, + 24.941775231485437, + 24.903830032158858, + 25.08601650623927, + 24.94070377065729, + 24.942156605195017, + 24.917544338457915, + 24.908189152948204, + 25.011422460797903, + 25.03451002062213, + 24.94446924268513, + 24.964494404799673, + 24.99039010737119, + 24.94922906456393, + 25.012798515893422, + 24.96451101827855, + 25.0425216825596, + 25.01970966115016, + 25.00697425262934, + 25.018146729717238, + 25.012236992313586, + 25.032818610791118, + 25.008370232773494, + 24.928296289165935, + 24.96992323784063, + 24.839346835957457, + 24.952123310156388, + 24.96808976664179, + 24.951565768019, + 25.060701413889017, + 24.966126190333732, + 24.99231887869071, + 24.886034653811926, + 24.871313516211877, + 24.882301428827148, + 24.976546860425433, + 24.879502898959117, + 24.996065920961968, + 24.93828480084148, + 24.895073164896893, + 24.928612324222293, + 24.94833547226926, + 24.991892953449533, + 24.961632032610254, + 24.93289054067226, + 24.935925256995322, + 24.83517532628654, + 24.96468216255243, + 24.862099445192072, + 24.949706753662632, + 25.011943742871345, + 25.01527616016905, + 24.944175601771896, + 24.90113112199817, + 24.885274902547316, + 25.095301048433562, + 25.001121763628085, + 25.015595848187758, + 24.93146428275214, + 25.003889475623346, + 25.071873881780128, + 24.965586297387397, + 24.993017792821192, + 24.93012937902943, + 24.949604305487476, + 24.981724140033553, + 24.972152230699166, + 25.04047703377715, + 24.9886702475778, + 25.01647245331868, + 24.95574321184001, + 24.89615686411353, + 24.875451249446833, + 24.920822492178495, + 24.924996927051723, + 24.973599845231206, + 25.001236228255806, + 24.97177364038056, + 24.961475715565857, + 24.945049854951755, + 24.97543465465249, + 24.940611668985014, + 24.9878736895322, + 24.93628892651601, + 24.860590868947355, + 24.879813063894524, + 24.836834378785078, + 24.935601405799154, + 24.955099641822862, + 24.944127670533923, + 24.887246148170625, + 24.832492943397007, + 24.92788814554042, + 24.926460304088828, + 24.93172308857128, + 24.942906327993647, + 25.00186983593719, + 24.87866572728216, + 24.872043921483105, + 24.919509851762577, + 24.94609511445824, + 24.941074454985543, + 24.982491050207656, + 24.913472808534248, + 24.971039283429214, + 24.99599365239591, + 25.039089909538376, + 24.99889350490164, + 24.947161009734145, + 24.881529159801154, + 24.834512011526677, + 24.910361912358386, + 24.995249420790074, + 25.005027054277576, + 24.92314431847654, + 24.962313448115054, + 24.984622992100302, + 24.92516723784723, + 24.9787386561214, + 24.90271682040268, + 24.821192784323692, + 24.91776219551352, + 24.908884176291323, + 24.94244953198538, + 24.907661450234535, + 24.905530587176862, + 24.965733721317967, + 24.94251675447781, + 24.885243379474304, + 24.92411530219603, + 25.161332147654075, + 24.983695286197527, + 24.96184815667245, + 24.970402204197534, + 25.06138839406018, + 24.868989314986095, + 24.913039363088792, + 24.962716633671704, + 25.000658240887656, + 24.999136818109598, + 24.982481955919056, + 24.94314424767602, + 24.957473409371794, + 24.88363654594972, + 24.945395934747076, + 24.987586424058556, + 24.93253070246101, + 24.917938013151712, + 24.9858967140959, + 24.919756939179663, + 24.939539711959807, + 24.97143578658615, + 25.000286163716112, + 25.032772715535963, + 24.971516941547886, + 24.993134117830248, + 24.97677827082061, + 24.962798392681623, + 24.8303465312032, + 24.95014933952077, + 24.957970253453418, + 24.987049026261495, + 24.969896203804325, + 24.895268970142652, + 24.945023250168184, + 25.023506625033967, + 25.037141715816535, + 24.86761043854469, + 24.975508563758538, + 24.942405895988422, + 25.0187324588151, + 24.909244764381718, + 24.865101229724658, + 24.902461945556063, + 24.92801271473143, + 24.908813330404755, + 25.01717721565933, + 24.99287164501647, + 25.052991429881054, + 25.021225655055503, + 24.948080159995698, + 24.953960199007454, + 24.912724833071188, + 24.931493546979468, + 24.969586933928667, + 24.972104479142725, + 24.90679898856188, + 24.905647905819926, + 24.974035171724644, + 24.911702602535808, + 24.952091964405533, + 24.98880796243366, + 24.859348290675584, + 24.89512490407684, + 24.98863499291509, + 24.946176211346835, + 25.01780638113076, + 25.04282415515654, + 24.93460797606596, + 24.897197668628117, + 24.96301440853312, + 24.91488981708065, + 24.98083878234244, + 25.012627821034222, + 24.987401793674813, + 24.933332058808794, + 25.016724830168357, + 25.03740186860165, + 25.041562098925677, + 24.99026945724271, + 25.02309376325573, + 25.019212493787364, + 24.97398562974996, + 24.926977994209423, + 25.00093592999599, + 24.98182552897324, + 25.023748234232414, + 25.001658951416715, + 24.98388448716482, + 25.006852410184642, + 24.987325109970488, + 25.02885770774172, + 25.07531247983851, + 25.044705792224203, + 24.980431364738777, + 25.045707305046662, + 25.02222117759115, + 24.936586263211524, + 24.93994526219997, + 24.94814402245879, + 24.92876743654336, + 24.948381693188562, + 25.039589782001375, + 24.97149113485589, + 24.911118013804863, + 24.835405616887797, + 24.947991806924012, + 24.92686734394923, + 25.021980093495763, + 25.023376680542658, + 24.96085786153037, + 24.86861551158304, + 24.85252577336986, + 24.937247924401316, + 24.899567524429, + 24.944140458092022, + 24.972383935131482, + 25.04373295785942, + 24.9548397671548, + 24.892548477388303, + 24.87090255958951, + 24.965725523277086, + 24.9811665076816, + 24.97429068053079, + 24.90195092577254, + 24.89515934788865, + 24.87085404082667, + 24.931396241926706, + 24.97519322225719, + 24.939890767479312, + 24.991384289916745, + 24.98165602785313, + 25.023283587772106, + 25.00330244468966, + 24.976742992124734, + 24.86051908474559, + 24.901348118090787, + 24.962665148925346, + 24.937159905035585, + 24.919847929834077, + 24.892925242778688, + 25.05707764339975, + 24.979795099440953, + 24.89656890013668, + 24.924375728423577, + 24.967420667366017, + 24.906579231197345, + 24.92443469446291, + 24.921066938488664, + 24.915057014234087, + 24.98726536634068, + 24.963371897320343, + 25.001710575564964, + 24.951339119828944, + 24.905904672163615, + 24.822990595196714, + 24.904841643229297, + 24.958463852032153, + 24.942236609154012, + 24.983293732598117, + 24.947026152759005, + 24.903223738602925, + 24.885015476426823, + 24.91178471888297, + 24.9666562682274, + 24.987245937258315, + 24.99967268716266, + 24.9890710519571, + 24.94727842270015, + 24.946747745130217, + 24.93741671082072, + 25.003124790765703, + 24.918476559661894, + 24.963036573991022, + 24.945224911637442, + 25.006319170795322, + 24.937247089006767, + 24.904567589177027, + 24.865577747824084, + 24.776490893589337, + 24.85884292396952, + 24.889609980443282, + 24.959051411796928, + 25.00432548305671, + 24.86293813620145, + 24.934142861354886, + 25.02742416013171, + 24.91508292112306, + 24.885409934964407, + 24.94954378584835, + 24.904185155358284, + 25.027546962834474, + 24.97760611271993, + 24.939747778014887, + 24.96625904165029, + 24.937995078474835, + 24.991639982257222, + 24.946516874140034, + 24.96977510050956, + 25.05006919112049, + 25.03852322828918, + 24.921433993942276, + 24.969303106289566, + 24.967975826323517, + 24.912708909373947, + 24.922772501331494, + 24.96617220436537, + 24.97830695771171, + 24.965140386464412, + 24.92365722250651, + 24.888849661000613, + 24.981136073319824, + 24.926255935390273, + 24.98339601734174, + 25.008008872088666, + 24.975278839641014, + 25.052079709556857, + 25.00437656030492, + 25.014355452709996, + 24.997422695572304, + 25.02045451484223, + 25.001670709695617, + 24.989300281407203, + 24.9789375628587, + 24.95987393236669, + 24.985344655146, + 24.936294257879815, + 24.949893236177214, + 24.907864582778334, + 25.00469572509845, + 25.010335840603442, + 25.04769956239403, + 24.886032882671586, + 24.910605524061065, + 24.944960469193866, + 24.96292711047836, + 24.961170383097603, + 24.93001014564551, + 24.890397236906328, + 24.908576288898473, + 24.933301006386735, + 24.99003246781423, + 24.9494176759913, + 24.99266065798644, + 24.916281062057713, + 25.003268481071785, + 24.985360928483733, + 25.017054778591458, + 25.01361260520487, + 24.966995304322513, + 24.984798341843856, + 24.99911516205188, + 24.971384347341857, + 24.90173490814223, + 24.949519493183473, + 24.938182779332127, + 24.950327394479892, + 24.92895975791275, + 24.875362253845694, + 24.93406883970723, + 24.988734279793754, + 24.961552739581542, + 24.902053791824052, + 24.993308575550856, + 25.015561426159053, + 24.99308982724822, + 24.881595492538437, + 24.956092040220213, + 24.946404859096873, + 25.0548139824516, + 25.014151440970878, + 24.97420993621816, + 24.945514678741855, + 24.85089170481126, + 24.918993092787325, + 24.876014337566836, + 24.958187803335782, + 25.01399695977269, + 24.947053853731276, + 24.998236123272683, + 24.94590329621737, + 25.05197075959706, + 25.01920081978895, + 24.871995756755737, + 24.963588953972618, + 24.880336113835014, + 24.923870927472258, + 24.963421463683552, + 24.9304189840667, + 24.9632246418767, + 24.92317020497761, + 24.915693282594283, + 24.958619393580012, + 24.970304290512782, + 24.943781307542103, + 24.980274341414187, + 25.02313393228502, + 25.007917136820815, + 24.965609748918475, + 24.939164930138606, + 24.950168137719537, + 24.99557296907153, + 24.95218040131186, + 24.92313768222259, + 24.964215561094434, + 24.988666222018892, + 24.966110675642717, + 24.91575369291286, + 24.931942540808123, + 24.964726207861503, + 24.917648566805724, + 24.900867185491776, + 24.874501497400104, + 24.825189023116305, + 24.936372524558443, + 24.936741790731748, + 24.972194032972695, + 24.88155807546167, + 24.966375711158165, + 24.91202377748063, + 24.97577192230972, + 24.970530437528886, + 24.892217312694697, + 24.87646296773362, + 24.929685722732195, + 24.956189146340968, + 24.880263876021907, + 24.88644260410905, + 24.922143011684234, + 24.969892612933098, + 24.977824305958833, + 24.855141163838958, + 24.925889877042092, + 24.94527145406066, + 24.969151100915326, + 24.98755489671796, + 24.953616628477967, + 24.883853760379715, + 24.96419021549105, + 24.9226062669233, + 24.969985929586606, + 25.00546143049229, + 24.992971993778838, + 24.95143481448963, + 24.931531638873643, + 24.854849599315248, + 24.84508185219559, + 24.916059003439685, + 24.864044461999804, + 24.9556338000097, + 24.90277565369415, + 24.940543336799294, + 24.99158521372008, + 24.89885811786985, + 24.891747472441324, + 24.943740589455906, + 24.85313837719884, + 24.914989705533422, + 24.90818344342242, + 24.931393664784, + 24.971941203905384, + 24.875308358236367, + 24.880699415202564, + 25.00182625964679, + 24.94491817431826, + 25.00182345593162, + 25.011784595542444, + 25.020013888735456, + 25.08665243373921, + 25.062881159968107, + 24.81675535909291, + 24.892891668312444, + 24.948682526381084, + 25.027762442064642, + 25.06469377673885, + 24.985620558305335, + 24.99895355781664, + 24.97415167902725, + 24.941131289068053, + 24.936253534073956, + 24.919400278589407, + 25.0635187230306, + 25.079559742085195, + 25.037354739173814, + 24.942244942740672, + 24.928619959770792, + 24.933072696741405, + 24.843665681332148, + 24.882968534909885, + 24.94413540660788, + 25.016409529354092, + 24.927852702089783, + 24.97858192375352, + 25.208775157281945, + 25.13911299242926, + 25.247943636389138, + 25.39117791408198, + 25.009342973264722, + 24.918157858925532, + 24.947702811630293, + 24.918273382627486, + 24.912925267003796, + 24.882281377199586, + 24.911069640637045, + 24.882564020384077, + 24.761466137352873, + 24.878757118382595, + 24.845468772522832, + 24.873504040790607, + 24.911209529434757, + 24.883767076778817, + 24.94750875575803, + 24.86449816126414, + 24.969869363966836, + 24.925820940754242, + 24.919806384770673, + 24.899703897182555, + 24.960569117104995, + 24.904602478062948, + 24.942518926891168, + 24.941657062677177, + 24.977079649131408, + 24.935966410482337, + 25.031038704628067, + 24.946372387967557, + 24.99423260408541, + 24.928130342930658, + 24.971279000250192, + 24.97964816694433, + 24.957070529608693, + 24.938937114414585, + 24.92381637173537, + 24.92986704834042, + 24.97018745173839, + 25.016710724370654, + 24.97184981123896, + 24.94729036093278, + 24.92968893886622, + 24.930932567803914, + 24.96107051164841, + 24.95309045811456, + 24.94701039125104, + 24.987835480606492, + 24.956254917708637, + 24.93851362325619, + 24.956363961750885, + 24.937556817574514, + 25.04506633017239, + 25.005056603189125, + 24.961511429665975, + 24.97275231393065, + 25.015087588005844, + 25.035713309491342, + 24.94449371805606, + 24.905611854564032, + 24.935519461479494, + 24.98273833743864, + 25.014224999273615, + 24.892984572362913, + 24.927009774758332, + 24.982320888718107, + 24.92901266938528, + 24.959584658118736, + 25.043660352361016, + 25.03008881739234, + 24.998421050915955, + 24.99858100075672, + 24.993845424101014, + 24.948080186545077, + 25.028259561520102, + 24.966498257334628, + 24.866206463996797, + 24.899648961649277, + 25.022690365250387, + 24.961930204556765, + 25.017037601620665, + 24.970989248234147, + 24.929256770013623, + 24.901044943738018, + 24.92357528449277, + 24.922171055398664, + 24.97568932124336, + 24.919077902982878, + 24.9456579640154, + 24.972303813973458, + 25.047922008803823, + 24.976874889945616, + 24.970213252199425, + 24.972533913858413, + 24.889979326347046, + 24.845427984105925, + 24.96627179248418, + 24.894955388567887, + 24.969996329387552, + 25.00973678907295, + 24.934364368794586, + 24.905516792760366, + 24.94489177626626, + 24.880678820242565, + 24.974260217049753, + 24.886872631548925, + 24.869166794126606, + 24.943658530553463, + 24.938232783152273, + 24.998260235134964, + 25.019454101454194, + 25.031558950145147, + 24.989452332080788, + 24.925048383662325, + 24.88721042817854, + 24.90598248145273, + 25.022293639104554, + 24.95803495277, + 24.881985387720846, + 24.933655243126786, + 24.99419329623828, + 24.958708382870284, + 24.982186843021715, + 24.917023308411657, + 24.93086863204806, + 25.054338945213278, + 25.03871999938258, + 25.002414230783003, + 24.96206575837261, + 24.90603299359438, + 24.92343147542278, + 24.9954757960422, + 24.92059779342693, + 24.86910601290369, + 24.903725289392096, + 24.899799660099173, + 24.97384651760278, + 24.96236246716698, + 25.00205016908275, + 24.99950319007766, + 24.983310311037776, + 25.047027088252264, + 25.069384897828513, + 25.010107398171854, + 24.912133661543592, + 24.870795250121297, + 24.935079384499225, + 24.953287878638, + 24.954670831694152, + 24.988115963968315, + 24.95636272882777, + 24.980495776732628, + 24.837721977291, + 25.043663493233915, + 24.987109146251218, + 25.061752013337145, + 25.009427236461384, + 24.950380506360837, + 24.93387111217327, + 25.013997070038354, + 25.040620808985373, + 25.053464202492663, + 24.907940976030616, + 24.867250789022734, + 24.92910036394544, + 24.98178371723736, + 24.985886104705283, + 25.004331376045705, + 24.90632526127132, + 24.98815440763388, + 24.94026238505119, + 25.06869405741824, + 24.97891248741491, + 24.937657333033286, + 24.93273225193811, + 24.981564679780554, + 24.94298891007143, + 24.895578535594105, + 24.891396452488593, + 24.9665735866905, + 24.9559464134664, + 24.93224174653001, + 24.93323971901293, + 24.847382877903655, + 24.875411372789237, + 24.900350567459967, + 24.92833136570458, + 24.969121214031667, + 24.979571245733727, + 25.02225308459603, + 24.974432681207517, + 24.965814823265312, + 24.86188721111852, + 24.948689024629907, + 24.951846698403838, + 24.842734843401253, + 24.842643608677555, + 24.953446890959313, + 24.91223618108515, + 24.948067164412365, + 25.00104434571319, + 24.962903127109918, + 24.94535756537828, + 24.972025370600768, + 24.96083971588924, + 24.9594817956689, + 24.893515852226734, + 24.980597605882757, + 25.03039988846147, + 24.981334347679066, + 25.047882152740705, + 25.11822026196517, + 25.03120486511225, + 24.971436076753058, + 24.981555995220212, + 25.03790768440686, + 24.99214624525831, + 24.968138067918048, + 24.870456458881826, + 24.931970020877124, + 24.80117187502514, + 24.88788202089227, + 25.010737621691334, + 24.9564866540206, + 24.992956815648498, + 25.03602138647193, + 25.01961817069317, + 24.921011012745343, + 24.923873563970197, + 24.986209562808604, + 24.968937004628778, + 24.984488978055417, + 24.956415248276755, + 24.951375574072983, + 24.99307759226174, + 24.90172475437045, + 25.035312321391984, + 24.93624878760897, + 24.87959887403461, + 24.94723724415971, + 24.986763852773045, + 25.0888811814225, + 24.960889700620015, + 24.90196904928404, + 24.974240900059378, + 24.98881065299968, + 24.972606744300073, + 25.0559048079977, + 25.05333539398314, + 25.01781840551636, + 24.931002835225478, + 24.875331348085695, + 24.968710820520265, + 25.060245633315525, + 24.971461654983127, + 24.925027502370636, + 24.952702462625695, + 24.911342747133226, + 24.940350037208425, + 24.897994333083552, + 24.875180026202255, + 24.916051119243356, + 24.87480396275828, + 25.03525526386889, + 24.99981272977452, + 24.918594717562655, + 24.95382557201514, + 25.057315674386942, + 24.878660585254345, + 24.973604036611558, + 24.959186107950817, + 24.99747248726881, + 24.993274634754655, + 24.91699851360125, + 24.963862585792334, + 24.948142041538787, + 25.002167994488502, + 25.05384017844991, + 24.95426224670002, + 24.985084744109578, + 24.93678402968306, + 24.915178286118792, + 24.915759767971345, + 24.989574724230437, + 24.94729757449199, + 24.923549597804445, + 24.85699336344512, + 24.908770155603477, + 24.980651813975726, + 24.940371531756714, + 24.960236003362006, + 24.972809975412677, + 25.03240089438018, + 24.860685056549734, + 24.964300899703474, + 24.916432850560042, + 24.86180441311993, + 24.983120825137107, + 25.012310530014858, + 25.077969687897376, + 25.055444801652925, + 25.872311717953625, + 25.712377752779933, + 26.225761876661473, + 26.49293538295606, + 26.4147089173995, + 25.601718673759358, + 24.94244103986666, + 24.975555461778505, + 24.935463242468018, + 24.987508869360603, + 25.033419579374563, + 24.925157160263154, + 24.87226114149295, + 24.951043001909788, + 25.014714866798336, + 24.8917861024378, + 25.01264179669287, + 24.981729221972465, + 24.926564967027364, + 24.857197471493848, + 24.925552423469824, + 24.966800984595395, + 24.91619833415275, + 24.982915745531663, + 24.932948323777637, + 24.96564030631641, + 24.95081621150915, + 24.948598335341508, + 24.8926618229712, + 24.87504377398392, + 24.960768157356323, + 24.950464879442983, + 24.986196007486832, + 24.998171914025136, + 24.889454353599938, + 24.990931438278857, + 24.97389915200969, + 24.911278399338915, + 24.846701292206596, + 24.986203254113803, + 24.91714197967283, + 24.90272589701705, + 24.951310059118562, + 24.970968159966546, + 24.934626435853605, + 24.913059202691045, + 24.91869178089989, + 24.948637966437694, + 24.92954547706488, + 24.948179544965768, + 24.889380062436956, + 24.863501163936547, + 24.955468814026055, + 24.92432431195005, + 24.993382734080217, + 24.926680223504498, + 24.89593574642062, + 24.91887263476263, + 24.90571547587133, + 25.001482908973273, + 24.942057954510496, + 25.003155527905864, + 25.019980140882218, + 25.040902224249052, + 24.956333590379643, + 24.84267695239895, + 24.88078083069008, + 24.89979487383414, + 24.89954852896904, + 24.957406100949797, + 24.88427277278017, + 24.962065850070488, + 24.978036207558212, + 25.015296644273786, + 24.923333583702988, + 24.986658630567, + 24.942688843857816, + 24.879974597587267, + 24.906596534486084, + 24.895480644326028, + 25.00424791800645, + 24.878317811259897, + 24.867750818614073, + 24.96600026835874, + 24.947092519906953, + 24.933295286719996, + 24.984451410952964, + 24.897737397772637, + 24.862608955492156, + 24.94385173176068, + 24.85911512486205, + 24.925858906830392, + 24.84699332648379, + 24.902072468430596, + 24.861785361976686, + 25.00627626917563, + 25.034998382872473, + 24.97736906617739, + 25.027467123827837, + 25.07113501858163, + 24.909618757430703, + 24.93115280728727, + 24.94300441346774, + 24.890978536069866, + 24.914093290289664, + 24.839439365099942, + 24.928019653846746, + 24.98461845360241, + 24.825082972183672, + 24.877254736168453, + 24.94333538788002, + 24.9188383010084, + 24.96579555553035, + 24.951712975713846, + 24.85947058186469, + 24.817166693171053, + 24.85094281965454, + 24.947697099667604, + 24.896768091226164, + 24.944008104427034, + 24.864653040205823, + 24.953726349001833, + 25.016412003331382, + 24.965560849549334, + 24.906368610344714, + 24.90232211889668, + 24.97446368786818, + 24.962728496741754, + 24.96037092726908, + 24.864681200238966, + 24.867573376493965, + 24.872793947671312, + 24.80896144035585, + 24.88435326711751, + 24.866410499373604, + 24.9241008185782, + 24.958614920272552, + 24.887158192297374, + 24.90375349010888, + 25.021639262568506, + 24.96055150734342, + 24.950287245860224, + 24.948474201934168, + 25.028094154896948, + 24.958859424381487, + 24.89090347927283, + 24.94568931255404, + 24.87871254686619, + 24.94185832860571, + 25.000332298838998, + 24.90693115643748, + 24.975956171862826, + 24.972274165544885, + 24.92884199158386, + 24.991479617773074, + 25.018319027635307, + 25.078144870374334, + 24.97839858835657, + 24.88431695390899, + 24.794592574274066, + 24.783775768391887, + 24.927915413286875, + 24.99037321619432, + 24.97632805985282, + 24.952540754695104, + 25.02896277041585, + 25.051951649169574, + 24.952119161840635, + 24.948652347443137, + 24.87512909932081, + 24.84306557938148, + 24.927575760425455, + 25.00261466114982, + 25.006395139486497, + 25.051075121565248, + 25.01021949810754, + 24.968934454785597, + 24.929293366038273, + 24.871589811725066, + 24.880936713904994, + 24.888234902305502, + 24.982374373528685, + 25.003056794949096, + 25.00911937246, + 25.04631522305689, + 24.983132190073068, + 24.978271748537964, + 24.980295924883777, + 24.9005873543361, + 24.8237222871805, + 24.92026808460625, + 25.02735852447055, + 24.890458809798087, + 24.965121995913684, + 25.008066575942983, + 24.936721868370704, + 24.96946865318531, + 25.048484806914924, + 24.9203972840046, + 24.91191025156432, + 24.91030932765708, + 24.94936258804831, + 24.986992138679987, + 24.92177926739052, + 24.88645888030268, + 25.002120661578296, + 25.009776411020283, + 24.93586045782164, + 24.933050831650128, + 24.911189031415965, + 24.91670325724519, + 24.943765183431594, + 24.952359446549092, + 24.991265797362367, + 24.92040156287382, + 24.899286270059182, + 25.00800386521591, + 24.960967423960348, + 24.87689559757733, + 24.897974272457063, + 24.920932047495974, + 25.013594590592874, + 24.985143722792067, + 25.030919950851498, + 25.046144318226762, + 24.934306912362246, + 24.973527075850534, + 24.988609040607294, + 24.94738429227325, + 24.967923473931016, + 24.9611194649356, + 24.90121467214965, + 24.936387684911164, + 24.91581935825318, + 25.03129470962481, + 24.991577334848415, + 24.905241605087483, + 24.923416261694562, + 24.925977724365104, + 24.830820948126842, + 24.886667069863087, + 24.993367156450525, + 25.029017499980114, + 24.94238581409848, + 24.938104670261865, + 24.94757782943332, + 24.86149634414125, + 24.94304420229198, + 24.89742427674188, + 24.994715359153844, + 24.93958115556167, + 24.94349909562752, + 24.943923151487226, + 24.940846259701427, + 24.98404570471844, + 24.96051768842838, + 25.00655012761068, + 24.92479355717731, + 24.94513210105205, + 24.919457047465357, + 24.876505181295997, + 24.80785183683031, + 24.85098728295455, + 24.947391475873744, + 25.004126940259905, + 25.005107039601107, + 24.907198328587082, + 24.88786379414037, + 24.926281106569196, + 24.91442754374318, + 24.902779595457282, + 24.866319527523274, + 24.90743656874558, + 24.880757848146878, + 24.99047902494054, + 24.936744631137444, + 24.898640157179486, + 24.97845130105584, + 25.032519809909886, + 24.976829545420365, + 25.011081488420807, + 24.957933988258134, + 24.91421191002822, + 24.96307540499044, + 24.98521710349447, + 24.993279325360056, + 25.01862738137512, + 24.9958834013434, + 24.93243166893926, + 24.94165509200485, + 24.9890113237348, + 24.997477607429342, + 24.922670534273337, + 24.99760752934106, + 24.90125029615892, + 24.91531782039888, + 24.897216602811383, + 24.974694773571116, + 24.952548044925695, + 24.99315829448891, + 24.918341842165994, + 24.97618224393788, + 24.945188466173164, + 25.029661591221373, + 24.904107518175362, + 24.939455893141314, + 25.00723398256081, + 24.907546465372477, + 25.010056421330056, + 24.980952469310438, + 24.953426105944246, + 24.922663814272447, + 24.84488696444233, + 24.922051906727674, + 24.944605157689672, + 24.992195490823587, + 25.068097616636216, + 25.006919810878088, + 24.93650294686453, + 25.009578447446074, + 24.99330963243657, + 24.963058386200935, + 24.92910623597131, + 24.963888825392463, + 24.951028812427687, + 24.919594517954387, + 25.020576842379302, + 24.967294265862385, + 24.896869879109275, + 24.940364887322797, + 25.007339654934203, + 25.060120200077726, + 24.908170821058604, + 24.939623197930167, + 24.9822220319415, + 24.884251588704718, + 24.88561657645343, + 24.88948401221679, + 24.964725477185603, + 25.00100308962305, + 25.033093276162397, + 24.92525060101315, + 24.894035925828703, + 24.953697786145298, + 25.019762496704026, + 24.917917217161225, + 24.95840229186087, + 25.00144880395976, + 24.976048299218604, + 24.973907988163347, + 24.979796257568353, + 24.895903224369135, + 24.927740190202954, + 24.789307795542946, + 24.960185386240187, + 25.020334255035884, + 24.957330530700872, + 24.898531431383365, + 24.919816923893073, + 24.976024764403668, + 24.899986100122046, + 24.865211882346454, + 24.926978398155217, + 24.996554575737804, + 24.933407240061825, + 24.889746811503926, + 24.866585490983873, + 24.944144761287557, + 24.957505742174135, + 24.942404274481966, + 24.92983565475638, + 24.92071050926505, + 24.93925632727963, + 24.902387269185688, + 24.884911671433898, + 24.996798176238663, + 24.987194585727913, + 25.01955244600643, + 24.971395865859503, + 24.959262398775408, + 24.98414320539134, + 24.934313714457808, + 24.910448810499666, + 24.886860777415606, + 24.966165410289427, + 24.952659692236836, + 24.937376630850522, + 24.911176414097103, + 24.95423095956334, + 24.96900312466559, + 25.04543610438924, + 25.022745948578596, + 25.06131772603785, + 24.999647610604015, + 25.03010179692022, + 25.00906168348889, + 24.879178726379834, + 24.862742933602938, + 24.9771704487462, + 24.950885426493727, + 24.931535784546774, + 24.960342637917265, + 24.909470454950323, + 24.974337248988743, + 24.962386304550144, + 24.816994112067494, + 24.902299522258456, + 24.998950045598463, + 24.965113908632215, + 24.962607527951825, + 24.938849176345514, + 24.956377890381898, + 24.88174650898773, + 24.942774451859147, + 24.886802324461655, + 24.912724753070457, + 24.991164724630476, + 25.00872382498369, + 25.025420539830137, + 25.0390793250049, + 24.98461628644401, + 24.953727930788837, + 24.980229322017628, + 24.905622322432112, + 24.95799095002039, + 24.99619652562256, + 24.909561800810067, + 24.88292050094193, + 24.9778562978712, + 24.945218014474783, + 24.91735129804833, + 24.892452018954515, + 24.871036603188223, + 24.94098219897841, + 24.987951695820165, + 24.963438384159627, + 24.967099419376204, + 24.934946501339837, + 24.88000731677196, + 24.906311633472413, + 24.843758470639898, + 24.889086015941984, + 24.8787430048681, + 24.911299669171413, + 24.86292529204739, + 24.86323028844557, + 24.966818641710383, + 24.958451020416284, + 24.979551601800026, + 25.009364678462923, + 24.89747064148469, + 24.97858457212495, + 24.96004712153893, + 24.94106391164422, + 24.877461979114564, + 24.947113993068317, + 24.869594897348534, + 24.832103364338856, + 24.938115452221908, + 25.014995416239156, + 24.947268622762074, + 25.048801313123235, + 25.043469207803412, + 25.006774380184353, + 25.011511786572903, + 24.99488319357426, + 24.958332241779658, + 24.903443320324495, + 24.933847646815515, + 24.962237096924696, + 24.966334556512727, + 25.00730934640945, + 24.990465910591865, + 24.95050334329745, + 24.972416868306496, + 24.981282310099246, + 24.86463157748771, + 24.912424558095562, + 24.92816906664706, + 24.91338474605159, + 24.968255417362084, + 24.871995516356247, + 24.919120951312333, + 24.923843233699003, + 24.880370385235373, + 25.00882643841558, + 24.944732860415662, + 24.982889047551915, + 24.979841942938418, + 24.959632167565736, + 24.937180536956205, + 24.907756684133886, + 25.006835174629714, + 24.973379707906787, + 24.910516590609866, + 24.98514552964341, + 24.946588954751817, + 24.970342085465578, + 25.001795117777853, + 24.900939897829097, + 24.839225618927923, + 24.93406455424566, + 24.971199476783646, + 24.932175812562033, + 25.007534867458496, + 25.008800860747996, + 24.991722262128462, + 24.922622034787892, + 24.98284938540177, + 24.97865800797704, + 24.956750422386442, + 24.817294791124976, + 24.9335281232109, + 24.941028472915814, + 24.90267702028766, + 24.877631116155605, + 24.89180148504402, + 24.90292240898097, + 24.93157636913069, + 24.993241467505833, + 24.925547451151743, + 24.867802954432612, + 24.90153366157921, + 24.936194796286486, + 24.909873422303633, + 25.021202543557372, + 24.940878531612213, + 24.88064435921953, + 24.969643659420854, + 24.849585108551203, + 24.92973656632239, + 24.97017176806617, + 24.881884289029436, + 24.986677065968927, + 24.93360259985747, + 24.953966970950425, + 24.921424119300333, + 24.88686590675485, + 24.934568826665213, + 24.983344238522314, + 24.988952726220447, + 24.944650686320692, + 24.879820527251432, + 24.87108712626387, + 24.91741283199145, + 25.048687715081975, + 24.987114476240073, + 24.918388942061334, + 24.99315028360568, + 24.971014043093607, + 24.94376806160048, + 24.860530118317865, + 24.9634004757332, + 25.009311771217412, + 24.950871321714704, + 24.953327499024795, + 24.979876222393443, + 24.943657226576196, + 24.881370831992, + 24.904851853898265, + 24.889414729063063, + 24.950456243960392, + 24.970303325757968, + 24.878983817420824, + 24.93762596928093, + 24.94541432671099, + 24.968789929542965, + 24.885931879927163, + 24.790572659696174, + 24.979349659071904, + 24.924287877489114, + 24.829010549131283, + 24.960677637636188, + 24.96883529567578, + 25.037355486373364, + 24.998664756067118, + 24.97859531227339, + 25.017984676803053, + 25.026723337165855, + 24.961612086651154, + 24.966727604041733, + 24.999469097385493, + 24.98444874159628, + 25.026114899304517, + 24.93423282371957, + 24.964292353811935, + 24.955368958742906, + 24.835570856879457, + 24.839062242039056, + 24.87764720311852, + 24.945061240566453, + 24.963228640117734, + 25.003297691944592, + 24.94798649548977, + 24.958437536119668, + 24.98226766923348, + 24.858091947981926, + 24.96253912890547, + 24.952415325523184, + 24.9368866560144, + 24.97724647163676, + 24.945436302648286, + 24.987298686586243, + 24.89081344146441, + 24.940528893598717, + 24.921970887346752, + 24.872124137029157, + 24.889902462856867, + 24.84991774958164, + 24.92485546493971, + 25.048576699295516, + 24.99115682196401, + 24.99051444087882, + 25.055607284556757, + 25.025776878607452, + 24.978120757630293, + 24.999806959601287, + 25.026570522948525, + 25.02444555830295, + 24.995682754183004, + 24.91318486536903, + 24.88652086563225, + 24.882429593676182, + 24.903391686433636, + 24.961966590289272, + 24.889656152846655, + 24.94963842424752, + 24.903463497048165, + 24.979792396295874, + 25.038422552566335, + 24.925407811434308, + 24.91785883714317, + 24.877578643601986, + 24.887142247406512, + 24.89395286192022, + 24.98110301918815, + 24.9044040217433, + 24.91370088221453, + 24.90501621502774, + 24.972943460487784, + 25.49681138619245, + 25.625619571794598, + 26.094333299624537, + 26.06847091133368, + 26.532356366615456, + 25.57063196869112, + 25.52003182152369, + 25.728074203077703, + 25.714992856225184, + 26.10903230655418, + 26.259404115081114, + 25.928069875605317, + 25.90924865369109, + 26.04466598443408, + 26.177448411279446, + 26.42443681080045, + 26.21333899626919, + 26.208340526290982, + 26.221050157886616, + 25.566769493536917, + 25.70473614296537, + 25.593274460448672, + 25.296056667823773, + 25.543747297783863, + 24.8740624017396, + 24.859031495899742, + 24.968280578751738, + 24.87852424519646, + 24.91440971524587, + 24.934322949725598, + 24.95707303552736, + 24.970853997115093, + 24.883291458929108, + 24.911617028651463, + 25.00766545639668, + 24.973524985960864, + 25.02360444715542, + 25.033605377364594, + 24.95682448081154, + 24.868229922103332, + 24.92320911686174, + 24.92863656196254, + 24.85302008828689, + 24.80330565431283, + 24.86836078188795, + 24.89755104265275, + 24.943207486506665, + 24.857509916317884, + 24.88098120536788, + 24.841013363693058, + 24.895369640732646, + 24.938910322450816, + 24.963020749520012, + 25.024821971437746, + 24.983521560817806, + 24.962519696531736, + 24.979222821552995, + 24.980709431335995, + 24.990167415954854, + 24.966905429566353, + 24.875639271669932, + 24.950889162384097, + 24.969365769229768, + 24.91671462234065, + 25.003453105372067, + 24.978395452863644, + 24.95479767079612, + 24.9196664377112, + 24.985597753209106, + 24.88020175517344, + 24.839617066307312, + 24.879916269188328, + 24.805193308449105, + 24.925082291570256, + 25.07649874408537, + 24.932363617564196, + 25.01409747586495, + 24.969248458636045, + 24.944366819934793, + 25.00239679746768, + 24.9587557605661, + 24.840685646292165, + 24.940147057340283, + 24.903880540265334, + 24.78490364317241, + 24.873643501644622, + 24.947848970732316, + 24.952344954964655, + 24.906355383696617, + 24.89408699448103, + 25.017116166265865, + 24.95692523381758, + 24.88677721352434, + 24.949184521998127, + 25.051572492936664, + 25.029201428531543, + 24.994922982169577, + 24.97558939184229, + 24.89648635702933, + 24.926418125169903, + 24.923937469206948, + 24.892252991128785, + 24.85404594733084, + 24.91812206632283, + 24.942983006648383, + 24.887876863763925, + 24.95395623039569, + 25.010618933138385, + 24.954859679525306, + 24.953245315847134, + 24.905316836859285, + 24.937099043967013, + 24.993854233728527, + 24.97991826234106, + 24.99830393299897, + 24.85500219017849, + 24.929757201533622, + 24.944966436450102, + 25.03616817693717, + 24.99089723364439, + 24.958090973250357, + 24.906416248717008, + 24.79034500508333, + 24.82309497840523, + 24.958045842908163, + 24.92966143985475, + 24.91501292383181, + 24.940450595056753, + 24.95470869995222, + 25.06125390631194, + 25.018444474307117, + 24.986389784569013, + 24.846146940393062, + 25.038575973975583, + 24.9364477103699, + 24.946223046820723, + 24.888343490386994, + 24.991515329192065, + 24.86463610537252, + 24.900584747250093, + 24.952381267254218, + 24.897746055664417, + 24.962733841022605, + 24.92363009647051, + 24.94680822393807, + 24.906659100860836, + 24.931607168350446, + 24.826428687023302, + 24.88088886643537, + 24.94985056323155, + 25.006785068272862, + 24.92773212029499, + 24.97421406449152, + 24.901753416185436, + 24.922554194445897, + 24.98905174763297, + 25.0244534365984, + 25.00256569975281, + 24.822464511436387, + 24.92078649112202, + 24.916269745961486, + 24.83028792131522, + 24.967069298796595, + 25.002769769506028, + 24.949093861304554, + 24.925556529585734, + 24.907853407007973, + 24.879652917357223, + 25.009041257744556, + 24.962647888364415, + 24.916235954488783, + 24.978459100488244, + 24.898718615007382, + 24.927981676513333, + 24.881368460157347, + 24.9931978480709, + 25.046764788421818, + 24.998072595439083, + 24.918472555295637, + 24.90334857637767, + 24.96981260062485, + 24.956332404843266, + 24.96917485043238, + 24.974334854146583, + 25.031655810837336, + 24.973753694519875, + 25.087699521090432, + 25.001781443322894, + 24.941907887847883, + 24.99502220392854, + 25.038446694251782, + 24.927332923567885, + 24.97739149000873, + 24.877775284745375, + 24.885976314679873, + 24.930128197938885, + 24.96357529526071, + 25.019703845521597, + 24.978797121114816, + 24.98093030233929, + 24.96099415114988, + 24.983444095291063, + 24.92072387366921, + 24.96592589825837, + 24.89840200780887, + 25.032616138115475, + 24.971684605194792, + 24.932082044943417, + 24.88460925763666, + 24.93711054477859, + 24.96269064644612, + 25.02010125067465, + 24.996613819833264, + 24.893141409150406, + 24.903569655650635, + 24.95006614902658, + 24.973983611371875, + 25.020401725779315, + 25.054477873656456, + 24.98342340871293, + 24.97467160081706, + 24.968182158736774, + 25.05057350042408, + 24.941346086696473, + 24.921456491365742, + 24.9852189835089, + 24.991709298956494, + 24.90827545926772, + 24.874407866485576, + 24.826054796469005, + 24.902016566855025, + 24.931854427301516, + 24.935015298727134, + 24.89433828980508, + 24.969098309776225, + 24.928730955213496, + 24.88743463997306, + 24.88544003910709, + 24.92349830617513, + 24.866816373828172, + 24.883520932729, + 24.92050166113678, + 24.891244552614026, + 24.836281229980102, + 24.871879463323545, + 24.916821944651485, + 24.941502839501645, + 24.899599611560557, + 24.86800680377796, + 24.881860491274622 + ] + }, + { + "legendgroup": "Total Site Emissions", + "line": { + "color": "rgb(239, 85, 59)", + "width": 3 + }, + "mode": "lines", + "name": "Total Site Emissions", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 24.881860491274622, + 25.00261067138295, + 24.899757661113952, + 24.948668430463208, + 24.9807078820501, + 24.96050427300994, + 24.970811340956644, + 25.05078321256414, + 24.887065098524957, + 24.898099554173903, + 24.97242848744814, + 24.958219258033928, + 24.92511948156348, + 24.949853778094898, + 24.9682959217563, + 25.031425018511, + 24.977422678838757, + 25.005361368746513, + 24.938967928258002, + 24.981514415429483, + 25.00626732684848, + 24.964279066720252, + 24.939301782838186, + 24.88545723685361, + 24.944020451704795, + 24.981992831298317, + 25.00930300534354, + 24.966600574745254, + 25.00994107027968, + 25.026364824322286, + 24.989146174315287, + 24.97099529936054, + 24.952865845696664, + 24.94869401743731, + 24.842927027914683, + 24.85803847045004, + 24.888424674309142, + 24.931322235065593, + 24.969090881735966, + 24.934826007252518, + 24.930660420118674, + 24.930206277881247, + 24.94295162792654, + 24.852869383226032, + 25.046657862499657, + 24.93217164336361, + 25.003036305107223, + 24.923712097757523, + 24.921505438091632, + 24.92813975610536, + 24.934965353655947, + 24.95985216659582, + 24.93574724685791, + 24.95682822295874, + 24.950120773123686, + 24.89800964280494, + 24.916155456345024, + 24.9037533416938, + 25.052603953194488, + 25.018484740382814, + 24.948150519732117, + 25.04864209844076, + 24.989597571743083, + 24.95594265503872, + 24.887441741347786, + 24.848268914821254, + 24.913590341494164, + 24.876148927144886, + 24.860737804828496, + 24.885069204271787, + 25.224769330319955, + 25.571214746801466, + 24.974376377593995, + 24.96536674162082, + 24.961171445801597, + 24.9843061690396, + 24.934304671918888, + 24.951231084389914, + 24.886887042436896, + 24.93745259759345, + 24.97193501035821, + 25.033424074180196, + 24.945536766141537, + 25.022031965504265, + 24.90493152110141, + 24.935109603625925, + 24.95831838536423, + 24.92489300214486, + 24.934702342025226, + 25.053376246855862, + 24.873501056052497, + 24.992962116538536, + 25.009371026507146, + 24.990395376511692, + 24.855491329885282, + 24.899361506613758, + 24.84848116616584, + 24.907125474052897, + 24.967465930065465, + 24.957960721314222, + 24.99697576779328, + 24.901771619529256, + 24.937168778151335, + 24.889423667496864, + 24.866474808559918, + 24.91281015562678, + 24.983822310119738, + 24.967964141834464, + 24.845048010894743, + 24.89988314766188, + 24.909621377876114, + 24.970787251657008, + 25.01790752108353, + 24.984166331312352, + 25.027559239212117, + 24.958379711281975, + 24.94755070157761, + 24.91543701016215, + 24.866531113302536, + 24.905219307958667, + 24.935358017643658, + 24.995025754107033, + 24.968051176928533, + 24.887994464303894, + 24.975330121736626, + 24.968864421232322, + 24.99002963642981, + 24.985311115756886, + 24.98519477379864, + 25.043795782256588, + 24.90369831772841, + 24.909486414716618, + 24.949769785048588, + 24.918315864507825, + 24.981784754959065, + 24.99358147762383, + 24.976318957238547, + 24.92183827296598, + 24.98541657460226, + 25.006240183057947, + 24.89849985845008, + 25.0339953460137, + 25.05050378264638, + 24.986083512708593, + 25.03943335992121, + 25.001369886800923, + 25.049060899270913, + 24.98154391776265, + 24.926960260170674, + 24.96077478975816, + 24.986606023588028, + 24.937948992062864, + 24.998683458807623, + 25.004037790772944, + 24.89697772408979, + 24.97779910334377, + 24.900512676944942, + 24.9080485616714, + 24.9127368872625, + 25.019035794560246, + 24.953628010490448, + 24.996629784967766, + 24.984428871421617, + 24.92489378799423, + 24.857054826699265, + 24.807803125036948, + 24.829690436693166, + 24.863762349007658, + 24.8799505228232, + 24.80751964141357, + 24.902634710220436, + 24.88795274777391, + 24.898517220586935, + 25.040365844283482, + 24.96759037649498, + 24.919850815401986, + 25.006688331637328, + 24.93251549080864, + 24.95275606147181, + 25.03616615860351, + 25.036814601954706, + 24.92358254533871, + 24.916512428494308, + 24.91033122681872, + 24.958608432041075, + 24.9026407268261, + 24.971507900363335, + 25.00860862006927, + 25.07337716650953, + 25.00672394126083, + 24.962153792227937, + 25.026592892040213, + 24.99740008133349, + 24.909551207233456, + 24.955733272730367, + 24.97397554369428, + 24.97836682720463, + 25.070096361538546, + 24.95473022758525, + 24.947166942608355, + 24.97793940804737, + 24.89889498626229, + 24.98480133325001, + 24.913797583796615, + 24.9265284207436, + 24.864612176280133, + 24.922941218961036, + 24.9876737228534, + 24.919089247393035, + 24.924196142240287, + 24.89587658447291, + 25.002316026012302, + 25.00881095416764, + 24.9802051447711, + 25.1136501937186, + 25.022931154027116, + 24.969748312114596, + 24.919072297212843, + 25.025211406227584, + 24.947454841840884, + 24.967331013658573, + 24.937449011747535, + 24.97937627059109, + 24.93848437132631, + 24.89169594648557, + 24.9117331734344, + 24.910234776134835, + 25.01257504639027, + 24.99614353898677, + 24.917518915477714, + 24.962293127290355, + 24.887004167651007, + 24.835693478896133, + 24.891029470645478, + 24.924437121304496, + 24.95189043313585, + 24.926494194651553, + 24.81219985854301, + 24.967398175323055, + 24.86112347070828, + 24.93380330734645, + 24.989091932094794, + 25.035779436713177, + 25.03676407212022, + 25.00986900181165, + 24.955861457766918, + 24.933312190608845, + 24.951550911580654, + 24.92399924094861, + 24.88709508004453, + 24.96467121353718, + 25.00277683879694, + 24.971175056824812, + 25.03389879360014, + 25.03677648085879, + 25.076129212810123, + 25.002421852384984, + 24.993451004974233, + 25.010396988032085, + 25.022463684252592, + 24.91724096394173, + 24.843178390849324, + 24.908706513283782, + 24.921394433243417, + 24.941906904354926, + 24.941702376449925, + 24.959779052969566, + 25.029122298341548, + 24.883939743262527, + 24.97015133068861, + 24.899018921349864, + 24.958895203341, + 24.87215525935889, + 24.874235020258343, + 24.876129156842033, + 24.894623905686586, + 24.90535120716182, + 24.90257407611969, + 24.962642082946957, + 24.908378811097194, + 24.90570037514679, + 24.99910207218809, + 25.03765231097641, + 24.98757373736835, + 24.972680424572598, + 24.94469203407912, + 24.984789535251423, + 24.977616814631553, + 24.987730923721045, + 24.943497610840094, + 24.909484769518237, + 24.97933934948147, + 24.977810335667897, + 24.937822383214687, + 24.95623752586671, + 24.99041489896281, + 24.964959072099894, + 25.060695389378555, + 25.035088034599585, + 25.04038122533989, + 25.09783134263874, + 25.082566127910916, + 25.131485651781446, + 24.963209377371186, + 24.92174352386882, + 24.982707714325887, + 24.941771515606256, + 24.95729601871485, + 24.97500604545669, + 24.977067232427665, + 25.016557822157466, + 24.97955287460023, + 24.96403987547254, + 24.982577787115467, + 24.9934040051116, + 24.866155100419572, + 24.875895412921505, + 24.879652942497472, + 24.96817919343939, + 24.904414666938486, + 24.92859153156401, + 25.09342626569954, + 24.961695741847514, + 24.933343922407794, + 25.00463088462258, + 25.0117429397055, + 24.980525180309, + 24.958289266700298, + 24.967289876179716, + 24.899792673029886, + 24.86597915683981, + 24.846087033939767, + 24.832394105942587, + 24.840395547595094, + 24.85339521755604, + 24.95520910523202, + 25.005762682540446, + 24.93078122097207, + 24.93192613441919, + 24.965422815429527, + 25.000611402234593, + 24.927985650049152, + 24.851955180158658, + 24.939611235832054, + 24.985600544507296, + 25.02277004199167, + 24.98113599014664, + 24.98204970114709, + 25.0137985573432, + 24.917344619088674, + 24.952564113501612, + 24.93995297619037, + 24.93077637381127, + 24.949915579226037, + 24.978010172333544, + 24.902540399684696, + 24.970954861077516, + 24.898567695463157, + 24.997322058881547, + 24.973674547357206, + 24.920937845678353, + 24.918597210073635, + 24.91532053118864, + 24.906553315539732, + 24.98849053030475, + 24.969608796090306, + 25.022483758427697, + 24.968244587615246, + 24.923511558720563, + 24.94914898817739, + 24.908294514638605, + 24.900307936185367, + 24.978007494547683, + 24.920176374108557, + 24.978278796211825, + 24.97495809742516, + 24.99472013726777, + 24.985371712435736, + 24.935099475476044, + 25.042274094853205, + 24.99699980989561, + 24.992324627517824, + 24.905282641860016, + 24.93001785477339, + 24.981374822557182, + 24.94314976286741, + 24.980741115678413, + 25.049231405753027, + 24.991671192607818, + 24.903491249375207, + 24.92174977813584, + 25.0011322175502, + 24.98935255176685, + 24.98932276080121, + 25.058951149513923, + 24.9702092980906, + 24.922961278609485, + 24.936244264725488, + 24.801425264098427, + 24.88948638665274, + 24.927022645609647, + 24.952885767766638, + 24.964827244154392, + 24.983546236657766, + 24.884513516654394, + 24.917431986119567, + 24.91623717512827, + 24.891372658733374, + 24.87540798248002, + 24.98267158138257, + 24.905287830359498, + 24.95136334757803, + 24.93330121646582, + 24.913820940656663, + 24.922071104443468, + 24.941398618559703, + 24.969855417427, + 24.986387436724094, + 24.975276144679633, + 24.95391076530153, + 24.973115037078443, + 24.908756286456395, + 25.04560812667072, + 24.957546120311115, + 24.967943085138778, + 24.946498595223233, + 24.891142334330837, + 24.91557138997621, + 24.91806180868091, + 24.979479605457357, + 24.952574940899005, + 24.935631959310292, + 24.870105424005416, + 25.03270081668371, + 24.877123447023866, + 24.959536145151272, + 24.90317253305085, + 24.947548099066683, + 24.97719103657304, + 25.00110455045807, + 24.98787300938986, + 24.96407657750624, + 24.866373312580244, + 24.970271408473273, + 24.990766958015378, + 24.977014768318618, + 24.919616966757204, + 24.96640939700864, + 24.927566974304483, + 24.88078001480657, + 24.89794429295906, + 24.8767963682226, + 24.893640415652357, + 24.96578656998959, + 24.96450962792395, + 24.9316060575795, + 24.931890591212003, + 25.028829998430773, + 24.967869718892196, + 24.985165966028724, + 25.017415229640445, + 24.972851144293713, + 24.97774298029874, + 24.896842593522077, + 24.93933595679554, + 24.958672478461004, + 24.96222347235448, + 24.945256393122712, + 24.862236341997836, + 25.01813022573255, + 24.877565288865974, + 24.912319391344354, + 24.935853839330434, + 24.922846180434796, + 24.944321968239016, + 24.867567962014768, + 24.93198275792843, + 24.915024140493607, + 24.954607660115848, + 24.912783558486744, + 24.97741930411909, + 24.899329690630644, + 24.941910495028505, + 24.92142435800187, + 24.894014925017377, + 24.912091080567677, + 24.955565860201528, + 24.933729771261177, + 24.923111639125924, + 24.925956293291755, + 24.928617346177006, + 24.99062277179919, + 24.894364980623372, + 24.910869513845313, + 24.862741182593894, + 24.87131923276577, + 24.85543852344947, + 24.88328633451406, + 24.8187721791123, + 24.950931161416996, + 24.93818064432122, + 24.968330167342735, + 25.040809182525635, + 25.047732104662483, + 25.052096132891016, + 25.090000478297863, + 24.974681005553407, + 24.90548419417873, + 24.88924067690693, + 24.83841707320509, + 24.92298674725503, + 24.93471013798019, + 24.94179338724657, + 24.890247091467323, + 24.91430256026252, + 24.91238786134286, + 24.966789986950893, + 24.949277777413432, + 24.910134189172727, + 24.943641824469122, + 24.946712384049412, + 24.947217988919817, + 24.930190400565813, + 24.912618485268965, + 24.933757159550396, + 24.910551663253806, + 24.937022658724338, + 24.938248913664125, + 25.005791123468487, + 24.92692697073221, + 24.902912754099773, + 24.884357584323965, + 24.920139069638488, + 24.954908710331352, + 24.88182919449993, + 24.929075265071504, + 24.856717477654527, + 24.946736365960746, + 24.94762713708959, + 24.90296367616083, + 24.93915579232562, + 24.979126263189656, + 24.977700909429245, + 24.974150294616592, + 24.912866195251326, + 25.00941823627005, + 24.876463704514215, + 24.862499576718903, + 24.93200252578443, + 24.960831932663368, + 24.901605583911785, + 24.94044913380749, + 25.043144095471284, + 24.99182332510555, + 24.947811942618415, + 24.910851164744045, + 24.82165231973452, + 24.811537197620947, + 24.93459000149725, + 24.88844826528672, + 24.876409108144138, + 24.912289666846362, + 24.97670420183863, + 24.96880920345281, + 24.94981277905779, + 24.93950591646052, + 24.9297868847737, + 24.898579803583413, + 24.89859931871863, + 24.92002338474444, + 24.93348561774574, + 24.897881210080058, + 24.914921267772804, + 24.959326448440777, + 24.953292065752382, + 24.917660014728263, + 24.963625117165854, + 24.96724666043481, + 25.017625458527696, + 24.975994887852323, + 24.97335438088733, + 24.964374745424443, + 24.894509147130826, + 24.937906526348474, + 24.97609209149456, + 24.989662026966375, + 24.96783421055737, + 25.00919243481346, + 24.970369267773457, + 25.03818139701969, + 24.877459368928022, + 24.850086590563528, + 24.866904981173796, + 24.97928985257992, + 24.952516277129842, + 24.965393053201556, + 24.998469838662245, + 24.925711728977333, + 25.051514556850577, + 24.983670015367295, + 25.02095719914232, + 24.997121237588402, + 24.977330449955573, + 25.00698574502541, + 24.98730873731398, + 24.939936627930834, + 24.97120820889767, + 24.933601738948674, + 25.0118497057911, + 24.95445765971231, + 25.030513088841538, + 25.000101873475472, + 24.97823669198261, + 24.95216153170761, + 24.907507226163524, + 24.935077487191208, + 24.96498266505612, + 24.879001985797032, + 24.976085649170404, + 24.9023165604998, + 24.85463216651646, + 24.88092984107994, + 24.953505009647458, + 24.92232190718825, + 24.91401384236968, + 24.96906420205199, + 24.909144640177495, + 24.883519633636844, + 24.920282565481553, + 24.89602827962237, + 24.941371308330325, + 24.915416131799578, + 24.961937286599806, + 24.96093114587385, + 24.934429527534945, + 24.893173890356756, + 24.962458473911223, + 24.89173735715001, + 24.94363065251329, + 24.959826282141364, + 25.02598654220069, + 24.96989072936372, + 24.965915930909667, + 24.971465576111164, + 24.944666397061194, + 25.01663895151981, + 25.009084424706604, + 24.936775865046403, + 25.031527604246378, + 24.931636395445285, + 24.85276090992469, + 24.89237439892917, + 24.836995369846296, + 24.931493374337585, + 24.934567351821848, + 24.8818067487938, + 24.957580125287933, + 24.99075125306172, + 25.181990911626688, + 25.04921212728679, + 24.948106854195323, + 24.878460552940837, + 24.971178140716606, + 24.850757251514924, + 24.82952277824819, + 24.960539702022736, + 24.984913200726304, + 24.942844150692075, + 25.040430252738208, + 24.944064615699254, + 24.94689683940325, + 24.961550681587603, + 24.931541009688377, + 24.938367454451523, + 24.926828410018196, + 24.93928849033717, + 24.92048404662939, + 24.967841579099307, + 24.91964766612987, + 25.029845978784365, + 24.962355120409697, + 24.85178818016598, + 24.83060681081077, + 24.897379721039275, + 25.018571741764404, + 25.002015338214612, + 25.007684763669985, + 24.90343492994691, + 24.907762738484397, + 24.766790059400996, + 24.906907118938257, + 24.900353690610505, + 24.88122101601993, + 24.896579821135816, + 24.958097796213305, + 24.99025147574038, + 24.887548393111928, + 24.92161533511032, + 24.900895273223078, + 24.934494083222532, + 24.8907479914983, + 24.87471127754975, + 24.92432683808967, + 24.96759703577903, + 24.910712864319983, + 24.913855681079077, + 24.99556371356019, + 24.906598925107403, + 24.974703678904643, + 24.981450409247635, + 24.966953024192073, + 24.996106957218906, + 24.97889916858349, + 24.906226300821924, + 25.006010464177145, + 24.9176305272366, + 24.943722126119997, + 24.955926510653242, + 24.93558209971825, + 24.923906976278385, + 24.932229910331124, + 24.92113314524095, + 24.929677750295184, + 24.935735667735972, + 24.96419435964048, + 24.98745194579012, + 24.926551736206196, + 24.960555161835195, + 25.058216831163797, + 24.978409003794482, + 24.93593652177112, + 24.90000631579121, + 24.861975857741, + 24.91669001696073, + 24.95646567192498, + 24.9447111466135, + 24.942215355033607, + 24.922427602246465, + 24.894342440953906, + 24.88627969060652, + 24.940655972325132, + 25.020655280353083, + 24.881044303731514, + 24.836251244094264, + 24.85349277857314, + 24.945636052055804, + 24.956852415554085, + 24.90845446258639, + 24.960762443307956, + 24.966144687175138, + 25.0071973154025, + 25.04837767189883, + 24.948466860002434, + 24.816957120561955, + 24.801203961206507, + 24.889135123111966, + 24.98539487370939, + 24.975007459231104, + 24.836911023447854, + 25.005729220844223, + 25.017775182888172, + 24.970747916141697, + 24.9406570134553, + 24.93738412325908, + 24.922207718632272, + 25.01182950666114, + 24.99655636958169, + 24.982012293408232, + 25.03860389523844, + 25.04073584391442, + 24.975598520187773, + 25.017668883727872, + 24.94768504768602, + 24.978343498396377, + 24.969163963002927, + 24.965300044720237, + 24.96849660927412, + 25.074224656403224, + 24.942640801944165, + 25.011190408870604, + 25.016768707377842, + 24.94910068325059, + 24.880437558701324, + 24.948694684409777, + 24.99688393422209, + 24.95123519738672, + 25.009320250103034, + 24.955128682436367, + 24.906797206988088, + 24.942034892396823, + 24.943486018307354, + 24.9123225731731, + 24.922580249831313, + 24.85480623615265, + 24.881982294269307, + 25.044866069510018, + 24.892412831874097, + 24.935204124800933, + 24.90258381253528, + 24.913498964534238, + 24.980627197816563, + 24.995346799532904, + 24.99671398095382, + 24.919672083532596, + 25.023149697266664, + 24.967447182543246, + 25.00261635684338, + 24.917298994693596, + 24.94807717240311, + 24.919949793267428, + 24.885020364369577, + 24.880883023707558, + 24.969089554714913, + 24.927094674556535, + 24.822536746935533, + 24.941525471386452, + 24.932021334842048, + 24.849243516218415, + 24.824245927102194, + 24.946827801319778, + 24.95091897645463, + 24.96480146716854, + 24.94569695549626, + 25.062078746128165, + 24.970689863982358, + 24.866416432738475, + 25.043596612103457, + 25.08544391897324, + 25.063693137956847, + 24.956712767023625, + 24.897306263503197, + 24.91562734886736, + 25.06625373238279, + 25.04092858885113, + 25.02035512735619, + 25.049338983374284, + 24.92555620062514, + 24.956683501280615, + 24.955316455990015, + 24.86762903486334, + 24.940971119723816, + 24.959977824570785, + 24.96074088197384, + 24.987815477646492, + 24.9648894430932, + 25.01411180481328, + 25.013882306297486, + 24.932622775113202, + 24.99696466022821, + 24.954722573745713, + 24.98718954236032, + 24.91120062895751, + 24.974941452774278, + 24.98228066772561, + 24.892269546397817, + 24.972206014579847, + 24.959838572092693, + 24.92628418011389, + 24.938671473923193, + 24.9647537861623, + 24.965818058984667, + 24.95564035357166, + 24.94582030233831, + 25.024984164809965, + 24.951973743246903, + 24.964071844946993, + 24.943858481464815, + 24.956497890068675, + 24.93977480044702, + 24.874386293053774, + 24.99823414826325, + 25.019349268451208, + 24.909724000107254, + 24.856572271731217, + 24.89781273727351, + 24.88887315789121, + 24.904981272125063, + 24.965320587675173, + 24.98902766311761, + 25.006521922524982, + 24.997483639644862, + 24.92257151040882, + 24.98215963572614, + 24.89031006867405, + 24.94172835449542, + 24.987796442864116, + 25.040247515466547, + 24.983440268037604, + 25.01377027603461, + 24.958588656947207, + 24.95394794050887, + 24.92451731258575, + 24.929494456687877, + 24.954053930867445, + 24.944536003660684, + 24.985510378931295, + 24.924864517603435, + 24.8619030472083, + 24.947559121335733, + 24.914261533844194, + 25.01783734617279, + 24.946272127693266, + 24.9008018982011, + 24.916754135662735, + 24.874981070489056, + 25.003296986348985, + 25.031155634257104, + 24.96346088683967, + 24.91187904111294, + 24.904293248371836, + 24.88266434756001, + 24.86312467041204, + 25.014052307209013, + 24.962726455475742, + 24.948961967828193, + 24.948125935136467, + 24.87936465627319, + 24.98261787868458, + 24.947974036778916, + 24.954945864330128, + 25.01756416209585, + 25.00990022871302, + 24.964850360693823, + 25.002600357902686, + 24.905087242468333, + 24.971756080475963, + 24.97444454993243, + 24.88670910085778, + 24.930048524433033, + 24.912735321622442, + 25.024799953380906, + 24.976958271731604, + 24.89415799271812, + 24.8324038691917, + 24.937233942145753, + 24.916740335134943, + 24.935434280356986, + 24.91970887519248, + 24.905477252046396, + 24.94771309343114, + 25.025061721415625, + 24.98509120126533, + 24.879927099441936, + 24.900321096666012, + 24.986385557519462, + 24.9917068124183, + 24.98619428643164, + 24.975474322667576, + 24.910929926548658, + 24.916427663538403, + 24.840220827686824, + 24.915634331038305, + 24.83182479788214, + 25.035093176829015, + 25.01674356684601, + 24.944199579878827, + 24.935979929613097, + 24.81918380407216, + 24.8692154260176, + 24.997562772069216, + 24.925167504433478, + 24.930848271519906, + 24.94497358645543, + 24.869764789818404, + 24.92531843780609, + 24.956301601172882, + 24.949582412607924, + 24.94778484666991, + 24.955135966601027, + 24.93217380433466, + 24.908589652237424, + 25.014512203750286, + 24.96019500651381, + 24.94186540204981, + 24.965646633086635, + 24.966565306175745, + 24.942142199343525, + 24.983565249273088, + 24.912963468803838, + 24.94726925196312, + 24.952843628188894, + 24.943325125425986, + 24.87842551373828, + 24.962100525964185, + 25.025128488952312, + 24.9615220631352, + 24.961767196725425, + 24.915667760347414, + 24.9515196440938, + 24.929381914365557, + 24.923587545947626, + 24.93964068001874, + 25.02004565238459, + 24.95491289512401, + 24.918039966322716, + 25.001820900546974, + 24.993784780305095, + 25.008867346494974, + 25.04514016386613, + 24.88871881098403 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 0", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 11.345262568849508, + 16.44956011218482, + 15.26211248520174, + 14.979043769023317, + 14.949376971928759, + 14.960975710513326, + 14.994864995761189, + 15.014816550117333, + 14.954330866440056, + 15.012449510936847, + 15.077413571312764, + 14.957799587791893, + 14.98058031211174, + 15.051513417881223, + 15.032396757560479, + 15.045362459451749, + 15.081928768036299, + 14.967084173482665, + 14.955366317392373, + 15.038414117907125, + 15.060795920980093, + 15.050599715498445, + 15.014926081629474, + 15.116368748376548, + 14.992760015780183, + 15.058494276305675, + 14.98053568685065, + 14.954010928237029, + 14.97227857981823, + 14.969097377587737, + 14.969521240052547, + 15.023471855724976, + 15.004455709068973, + 15.019845718544067, + 14.990144939077243, + 14.985479317700475, + 14.935128414892397, + 15.006215683431856, + 14.896982600417523, + 14.927515993211319, + 15.010288338364418, + 14.96870423374894, + 14.96522796463365, + 15.03772071212948, + 15.005183706598258, + 15.032939698667862, + 15.054691285969742, + 15.053198514292896, + 14.972119747622447, + 14.96777286145804, + 15.016697168736902, + 15.094876585559923, + 14.931433343409255, + 14.998263561372868, + 14.992695243795144, + 15.058786641527094, + 15.064507960119375, + 14.96267623818029, + 14.98784347905611, + 15.023113801309208, + 14.970911174537662, + 14.914916849836786, + 14.925143751088946, + 14.976751536051982, + 14.95264824493179, + 14.997107690453097, + 15.014652719388334, + 14.975925041057184, + 14.921227524538898, + 14.946112177425528, + 15.02036856127001, + 15.04327681416604, + 15.008997357473904, + 14.977844487894416, + 15.007996414968579, + 15.045022926433122, + 15.015850692178596, + 15.000613187027671, + 14.967874223392739, + 14.985463104543625, + 14.992172822699324, + 15.018634280180676, + 14.96879187033338, + 14.996592684886785, + 14.978696937568554, + 14.967116977466038, + 15.001089923447983, + 15.014235980984799, + 15.015463407429854, + 15.001669310879363, + 15.049890732085178, + 15.026248108636189, + 15.018450875331935, + 15.010809355129878, + 15.08742155118053, + 15.055417573482769, + 14.986838004698026, + 14.998868560646354, + 15.031210686029732, + 15.014057300992926, + 15.111231339086713, + 15.028776441109768, + 14.981567609013137, + 14.995167863171641, + 14.973021661870426, + 14.959196894401702, + 15.007462308690348, + 15.036331661285766, + 15.007040419741454, + 14.93616978948002, + 15.006321019203238, + 14.991908152532869, + 14.995213142727883, + 14.988448767860698, + 15.00815848257681, + 15.013893203225505, + 14.942833210901593, + 14.944631750622428, + 15.027323087876166, + 14.993149715703916, + 14.935135020021361, + 14.913670679463602, + 14.889943342634503, + 14.972318713334689, + 14.969050576226357, + 14.965255711776305, + 14.98288213472464, + 14.980831496329179, + 14.934477512511428, + 14.99339582148568, + 15.015092866741833, + 14.942701388704181, + 14.977361724171685, + 14.977867619776147, + 14.964807398442037, + 14.918625659819716, + 15.039126958212394, + 14.994792693431917, + 14.996712929660976, + 15.038236461179201, + 15.053486561715545, + 15.045043501636044, + 14.975218688884894, + 15.00686478287148, + 14.971317472855123, + 15.010065653082412, + 14.921202896132229, + 14.894827470157297, + 14.995302427133383, + 14.955205057109756, + 14.992326894700382, + 15.088388412748932, + 15.035538853644319, + 14.961237823717653, + 14.999889825413765, + 15.0374550222036, + 14.988264058709172, + 15.020865282176363, + 15.00971415239303, + 14.953101939948978, + 15.101228659969605, + 15.031561708862176, + 15.044688694221334, + 14.984066538208918, + 15.039044548864336, + 15.009691555095857, + 15.014396838780554, + 14.999893926213979, + 15.060289052330807, + 14.998098722271738, + 15.045858919004115, + 15.009909208412937, + 14.977557137715438, + 14.949832465246208, + 15.001050575453476, + 15.02131040833751, + 15.01036220725552, + 15.094316034464516, + 15.080185708727226, + 15.066494525536163, + 15.05420170706012, + 14.981760593435222, + 14.99245635080382, + 15.011989706118397, + 15.040456795993235, + 15.013026839195458, + 14.964979619477864, + 14.970410170412164, + 14.976582398346661, + 15.033751487326773, + 14.971472135650945, + 14.935838216672199, + 14.942280112648385, + 14.993216960439295, + 15.043989540649902, + 14.986972666121135, + 14.983078868428153, + 14.923878213617934, + 14.972905685574673, + 14.974504857718394, + 14.982729453606856, + 14.988138156680673, + 15.009343445132385, + 15.03553041996813, + 15.015353395467121, + 14.981875629945923, + 14.943855750082683, + 14.96000925036073, + 15.059383858212334, + 14.979639453958503, + 15.030320695948223, + 15.064619368342719, + 15.024942170094342, + 15.009850915031048, + 14.909894875324982, + 14.97317349540632, + 14.939062405427439, + 15.015588687686675, + 14.905571683773442, + 14.864914084251467, + 14.863332873453349, + 14.969898376355713, + 14.994640732258311, + 14.981839647112874, + 15.055851389389034, + 14.948348313174742, + 15.03283315902467, + 15.11746572399681, + 14.998276997003599, + 15.010234077018799, + 15.004920449853676, + 14.970814738761366, + 15.004576043045015, + 15.025145069738494, + 14.976616147159056, + 15.001692838189218, + 15.073800590005192, + 15.011898515612792, + 15.027359269812651, + 15.074843188619312, + 15.021917260704106, + 14.958456723070626, + 14.945879626816216, + 15.033902968257717, + 14.962589690700828, + 14.978710900029602, + 14.975839870635555, + 14.91654554025687, + 15.029790467379268, + 14.985008783835033, + 14.95445498542891, + 14.982077944839878, + 14.970788656539556, + 15.036529159263576, + 15.07106465693603, + 15.020606921795554, + 14.996576226594199, + 15.03814054624219, + 15.034232404447193, + 14.929963434557164, + 14.95918616945847, + 14.965502512811721, + 14.96909024949976, + 14.978276444384376, + 14.991396760890868, + 15.012640315017833, + 15.036287634575238, + 15.02773410168465, + 14.968271018482348, + 14.932372138430603, + 15.045555874867262, + 15.027161246300684, + 15.108967869544768, + 15.015371273674493, + 15.050782799055758, + 14.965840635042968, + 15.02790645694957, + 15.029271544066104, + 14.907737730837507, + 14.967756195018161, + 15.025163515660513, + 14.980816399919183, + 14.948244620726015, + 15.002559448377092, + 14.965674929399286, + 15.02572521947009, + 14.954773667184046, + 15.057172181417359, + 15.117129615162504, + 14.989852355823551, + 15.109227186590973, + 15.045599520398191, + 14.980892108424902, + 15.003985702723613, + 14.957117683542336, + 14.987247356018134, + 15.078690659421797, + 15.076649465453977, + 15.02062977739572, + 15.045403803564653, + 15.040737292839529, + 15.039417639693417, + 15.014207782766059, + 15.050002369765975, + 15.018912644577606, + 15.01548128065221, + 15.018996306069333, + 14.992627016976792, + 15.00580265801968, + 15.0047268426017, + 15.033109999042628, + 15.004455676958761, + 15.023423147918713, + 15.095572029628405, + 14.98539717978075, + 14.985056441208043, + 15.04352260655964, + 15.064362164656474, + 15.051542273701557, + 15.032554680173753, + 15.01117232668955, + 14.978470287904644, + 15.009219201131051, + 15.008544704230328, + 14.994031326051122, + 15.024314083803036, + 14.987434640704087, + 15.031005825429267, + 14.983755293060694, + 14.96116272991613, + 15.01644590299869, + 15.011398213738078, + 15.012385847946943, + 15.021454352708181, + 14.969813531444002, + 14.882175727170232, + 14.951809881319447, + 14.979260966468436, + 14.99812264522187, + 15.001924373551585, + 14.944713505869938, + 14.975083854888174, + 15.018036159743339, + 15.049399162892408, + 14.969852644842108, + 15.029359811262864, + 14.985488309209563, + 14.936622177578796, + 15.01034443083054, + 14.982963266234437, + 14.983473466199976, + 14.932728252672714, + 14.949361338771611, + 15.045812607539636, + 14.904766250714655, + 14.98672852504832, + 14.998037117411185, + 14.945514844196131, + 15.09301381851098, + 15.093347062075262, + 15.008706478265632, + 15.04617917339129, + 14.910402159202413, + 14.975864953022102, + 15.00716328222112, + 15.056316555330847, + 15.007623079577947, + 15.03693111121329, + 15.07014492480753, + 15.08914920450432, + 15.012097715434459, + 15.012983352136017, + 14.995093832222532, + 15.048873420934422, + 14.999387307086458, + 15.001464557182203, + 14.982286912296546, + 15.002782135508678, + 14.902042671335131, + 14.966975571951133, + 14.974942209167775, + 15.02112875764266, + 14.989396325925364, + 14.956949182672838, + 14.991411176311813, + 15.007775249156373, + 15.00200557959046, + 14.992796971129371, + 14.988906898596474, + 14.970701491999568, + 15.038404266468001, + 14.937463937387713, + 15.018160845299581, + 14.982481059913425, + 14.966920356289396, + 14.943696315116267, + 15.035486032832813, + 15.01681307885355, + 15.07924461708538, + 14.998026844261526, + 15.004583919156135, + 14.966276363539675, + 15.048428870761688, + 15.006588418309052, + 15.080401025544798, + 15.10346244304578, + 14.992420827292076, + 15.001259818065881, + 15.008285075702066, + 14.965602369040262, + 14.963711756396341, + 14.964221014093255, + 14.91911735465887, + 14.963532312912573, + 15.04896300987003, + 15.023355387076593, + 15.016155038421903, + 14.974051557963927, + 15.02812634796434, + 14.980402541093147, + 15.04053010513985, + 15.021729700667587, + 15.116273502716526, + 15.007241655655665, + 14.965859231256193, + 14.924516671710965, + 14.975423040770218, + 14.98058498693544, + 15.031908117143882, + 14.997916531350164, + 14.988111876799694, + 15.019822543891408, + 14.959748461058842, + 14.989350910636679, + 15.023175233343364, + 15.061527314782111, + 14.994822254419006, + 15.034551416411334, + 15.070948607605244, + 15.019924396539633, + 14.998952410823621, + 14.989408615512646, + 14.980777049973456, + 14.965133291205028, + 15.031446994978428, + 14.965921185796676, + 14.997519187830465, + 14.988116158987639, + 15.064167956992776, + 15.030265219669062, + 14.998513613977096, + 15.062960482200872, + 15.025146189146312, + 14.96085214039536, + 15.04284320552516, + 15.016384866716768, + 14.968534020223737, + 14.93821044330642, + 15.005344068643883, + 15.046136521575859, + 15.05508251633211, + 15.03759158782223, + 14.944730976368016, + 14.966787072577649, + 14.969187440325678, + 14.964654067503568, + 15.01255765351169, + 15.00028400650454, + 15.011500316358838, + 14.968700844257238, + 15.038349203804612, + 14.995184001790133, + 15.006379599943335, + 15.049783683402401, + 15.00949198036373, + 15.000881027149282, + 14.996307997967211, + 14.958581257097427, + 15.121530877103666, + 15.10567126493732, + 15.08903777269271, + 15.040402495544006, + 15.018467244464224, + 14.954824378400609, + 15.025224829991508, + 15.022365803421268, + 14.999232967589514, + 15.007363450735358, + 14.967220726778457, + 14.932830573420153, + 14.95281793687937, + 15.054119721519616, + 15.101302006939457, + 15.004514906587305, + 15.069736062541256, + 15.015924440529234, + 14.934744042750198, + 14.955779608996938, + 15.002015732997215, + 15.068135643274776, + 15.0349469045605, + 14.989484210256926, + 14.960574859401595, + 15.03537819888716, + 15.03201452951901, + 14.992694169388086, + 14.975659444304464, + 15.04163225136513, + 14.984538591804128, + 14.951827848196698, + 15.010908585570395, + 15.033941164743487, + 15.034408309097074, + 15.075389274964298, + 15.004837181682667, + 15.057899149272178, + 14.99906012794665, + 15.004872709472213, + 15.05445657316956, + 15.052349926183343, + 14.95528698896383, + 15.010749483611287, + 14.915871483939684, + 15.008407408837838, + 14.979901571019724, + 15.00917127383855, + 15.05934288685939, + 15.012241036349359, + 15.060385534638632, + 14.972917360333637, + 14.910637623324323, + 15.008111953658325, + 14.972981912162298, + 15.069742491087332, + 15.0176402543595, + 14.95886150085714, + 14.97413755529154, + 15.02234727108734, + 14.994640870189093, + 14.996398446301704, + 14.940204227307838, + 14.981083728420845, + 15.006346154783909, + 15.00972621730159, + 15.028941324750749, + 15.041080054973593, + 14.955873020629793, + 14.991956274109942, + 15.001790506069282, + 14.987793437252309, + 15.033221511008637, + 15.017204158394602, + 15.03434583527744, + 15.018820872001768, + 14.924639183859895, + 14.9718097937268, + 15.020800032634408, + 15.015020952702132, + 15.003270264583179, + 15.024331932116525, + 15.074868824676136, + 14.968166005603548, + 15.011168998989936, + 15.035062687774056, + 15.029018402621288, + 15.005399839072425, + 15.043862596568244, + 15.010556634988228, + 14.954076526479282, + 15.015116127455329, + 14.961493466013817, + 15.075582749961278, + 14.983106807189968, + 15.008787204244834, + 15.014887175118007, + 15.025355611828923, + 15.033023285005138, + 15.050437561661962, + 15.040272933030138, + 15.009670995651248, + 15.00712378601085, + 14.98301262974629, + 15.04617785302975, + 15.036383626784339, + 14.95439805185784, + 14.978992175505548, + 15.03621300040613, + 14.977007467333179, + 15.008502462573725, + 15.099472614971246, + 15.104395358176207, + 15.072987908197351, + 14.980137381447394, + 14.99025654210617, + 14.97269750408265, + 15.00555166496943, + 14.99931160927163, + 14.998898611142593, + 14.971275183906156, + 15.01630979395933, + 14.976264301214615, + 14.946249096912798, + 14.943000505683559, + 14.96924317597902, + 14.962588019607201, + 14.902889627863273, + 14.986973586638792, + 14.932926681823014, + 14.886810923077563, + 14.958755999409513, + 14.965108184223743, + 14.986793331869443, + 15.05428535050533, + 15.047090218250625, + 14.993829535649356, + 14.978949693978988, + 15.03288760754943, + 14.96604336926223, + 14.985990837178399, + 15.002059256734837, + 15.03669394379741, + 15.057997791882034, + 15.079252297016827, + 15.035030285762701, + 14.975941676469285, + 15.012014477424854, + 14.940052101615466, + 15.032965120451745, + 15.061994586312377, + 14.97373893637356, + 15.037023356704971, + 14.95678270925576, + 14.943248078942423, + 15.002533120371504, + 15.033064570954826, + 15.020346206139198, + 14.884394803189133, + 14.98638935065275, + 15.053927992272149, + 14.935761801857483, + 14.933993481111536, + 14.952429865811773, + 15.000944817982711, + 15.0222422292391, + 15.01718070200321, + 14.962425501882803, + 14.983563551698523, + 15.022353660050818, + 15.04783988385203, + 14.963886787478648, + 14.985621297574937, + 15.021633117110426, + 15.04578338851042, + 14.974931652666182, + 15.04051151054937, + 15.08890248171083, + 14.930060559542305, + 14.978267606150728, + 15.062071477558094, + 15.015516828850172, + 14.977162367163718, + 14.93381128168662, + 14.8797781245057, + 14.955641781132224, + 15.013380658799875, + 15.003009685743296, + 15.014178144247824, + 14.978568748105287, + 15.01442600765409, + 14.971368229896918, + 14.994821155590364, + 14.94214038819421, + 15.08544151456731, + 15.041680775449727, + 14.981670507618798, + 14.980465655957145, + 15.032267315561041, + 14.999108787984806, + 15.023145050761812, + 14.939234716808702, + 14.98527509804283, + 15.003766477145623, + 14.966857471291304, + 15.008593253828256, + 15.013039004802668, + 14.990641870780868, + 14.970871670342786, + 14.95957273577358, + 14.954991054457524, + 15.018591863573928, + 14.939556025751745, + 15.014375236348524, + 14.96370481083482, + 14.97088745674583, + 14.930916021678438, + 15.02931082747657, + 15.018440399621815, + 14.968603099230467, + 15.021446091521595, + 15.079443730918769, + 14.954386129080776, + 15.01286571190633, + 15.038656631323834, + 15.01645706615219, + 14.9835586266153, + 14.954391276149524, + 14.961436894704486, + 15.003267629585196, + 14.986856226756219, + 14.95734656384002, + 14.986382199100145, + 14.962971185513693, + 14.984379055336328, + 14.942171468116314, + 14.969782953239877, + 14.897648166359048, + 14.988318826094547, + 15.012146345519763, + 15.090920640878133, + 15.004768768308342, + 14.993621040858596, + 14.95306160715822, + 14.974843831209382, + 14.95770188981533, + 14.93182036069083, + 15.036884446115364, + 15.112414621564506, + 15.11182086070787, + 15.03022827603878, + 15.004911184739955, + 15.02696070394593, + 14.927582088268444, + 14.988298064188177, + 15.002664421070207, + 15.01283270792433, + 15.05229297642572, + 15.00685373696769, + 15.048013643049345, + 14.944678193783187, + 14.958997397422731, + 14.96519617436006, + 15.014775831190718, + 15.015105995186001, + 15.039132264320477, + 14.981012412552428, + 15.035802957764364, + 15.029755496152143, + 15.029130840116142, + 14.965515934721568, + 14.934552114296457, + 14.960668833924116, + 15.011526448579875, + 14.982963718672478, + 14.942751876493093, + 15.031291452424346, + 15.060405360951133, + 15.127640297376864, + 15.008202190210117, + 15.031033109090036, + 15.024882277268354, + 15.068329127731785, + 15.00628223175426, + 15.016854141149754, + 15.053409655126435, + 15.038756055741825, + 14.994628045794132, + 15.026918997937209, + 15.013406515854722, + 15.024825236361126, + 14.97689613810652, + 15.00168335806688, + 15.086349602687752, + 15.084849603072149, + 14.892306327945512, + 14.937853476162022, + 15.107886930655553, + 15.008307865993258, + 15.055456966111882, + 14.977277463874705, + 14.978050646080511, + 14.944024777854715, + 14.953325254303463, + 14.945660797785042, + 15.038772282193476, + 15.059056611831291, + 14.990734211786114, + 15.110536952187728, + 14.933827265647123, + 14.98078623834133, + 14.995983764416382, + 14.96251088309764, + 15.001276474002491, + 14.984417080752001, + 15.0066770647636, + 15.055685892964535, + 14.994252041445638, + 15.008260075132434, + 14.905718368791712, + 15.01535322566947, + 14.992209989718857, + 14.989051637112768, + 15.001826455883151, + 15.039817170817527, + 15.04955019044195, + 15.087967412393663, + 15.038102835876042, + 15.01693958008408, + 15.006401575780268, + 14.99885028879445, + 15.033605772369254, + 15.083324135107642, + 15.028839526643138, + 14.966014227644473, + 15.056951476926502, + 14.972342412385299, + 14.93806791239519, + 15.053486620121351, + 15.017548502884148, + 15.02852337096725, + 15.006835310878198, + 14.985519324641361, + 14.93021599969019, + 15.061068566770919, + 15.0574427454719, + 15.023567959993267, + 15.053725147738843, + 15.00822973512172, + 14.936676807062645, + 14.9426017857664, + 14.98482155328078, + 14.99918753827278, + 15.024114591056627, + 14.95374567013475, + 14.914938258958875, + 14.934814989412176, + 14.940766407005595, + 14.97429312865456, + 15.042483057721407, + 15.044131581108527, + 15.03970731876281, + 15.084110219642588, + 15.045897716418375, + 14.955681689296144, + 15.000546666767027, + 15.030767753928284, + 14.95421938355282, + 14.958611301162525, + 14.947816837564005, + 14.941215589478958, + 14.975859777672783, + 15.053994327635348, + 15.058242054932627, + 14.932124348819386, + 14.918791885108716, + 14.996467801071455, + 15.056007611917476, + 15.015801759111945, + 15.025220515476931, + 14.992598046844478, + 15.08792848976437, + 15.050513534296348, + 15.011054298830075, + 14.947453891843724, + 14.949602149974403, + 15.004269705213348, + 14.96627513162084, + 15.067778702088479, + 14.994622108287617, + 15.020426220096114, + 15.030639521649585, + 14.956827871917092, + 14.900752254171529, + 14.921432705392359, + 14.980577614546108, + 15.008665707958702, + 15.037665031194752, + 15.059970612425033, + 15.003053601294576, + 14.995731744338395, + 14.970304246352152, + 14.966993461196475, + 15.074922111965064, + 14.96192511556144, + 14.953663244259054, + 15.155504921118386, + 15.051692249775488, + 15.119429865595778, + 15.002027178467353, + 15.101721428777775, + 15.052986387460656, + 15.04592233489608, + 15.005642303170545, + 15.064233054019567, + 15.027293894418202, + 14.96594694546712, + 14.973687511038134, + 15.031133957667159, + 15.00525690618089, + 14.979007139881553, + 15.022478048048919, + 14.99051071639505, + 14.9679512385279, + 15.012285177987701, + 14.984853566617229, + 14.96238615257948, + 14.961376513969768, + 15.02689037014525, + 15.033049909464495, + 14.989244762959366, + 14.960550930329601, + 14.943814422568977, + 14.977782606149601, + 15.004084116046231, + 15.002492737544525, + 14.969642394674777, + 14.999292561993933, + 14.966638852068805, + 15.0208714241427, + 15.023909401379342, + 15.025074906521727, + 15.037674382612867, + 14.995253684542348, + 15.026759613623716, + 14.975172020088324, + 14.996780467857489, + 14.971005674644788, + 14.936694836605833, + 15.041329713820643, + 14.983137708191581, + 15.033317796754515, + 15.036447858868803, + 15.03848942425299, + 14.989831668218299, + 14.926788359566105, + 15.018569761957858, + 14.991271340697068, + 14.993223115711917, + 15.075208457353929, + 15.08260922582938, + 15.025194392406124, + 14.982951437708985, + 14.966676425461138, + 15.015869423672886, + 15.050212810573946, + 15.014429957785588, + 15.02086111353277, + 14.924141708860951, + 15.043251809330405, + 14.89480779254903, + 14.894512700026647, + 15.024774087273338, + 15.023053123761082, + 15.09243814873417, + 15.03510585258712, + 15.025379358890854, + 15.029639707981017, + 15.000591035701799, + 14.986280931141623, + 14.980079226050282, + 14.937752758735378, + 14.997825963898858, + 14.960058342032543, + 15.003607605958756, + 15.009738707600743, + 15.045110693563661, + 14.971668893243296, + 15.054992768760803, + 15.033634466371593, + 15.041417742615332, + 14.946267045093464, + 14.962477403660767, + 14.991835715397183, + 15.063716614291362, + 15.087106459034581, + 15.00448934150371, + 15.009769237530545, + 14.996105237189473, + 15.012725432194346, + 15.029124848150756, + 14.99885147164274, + 15.022516103805568, + 14.993977431984089, + 15.02417036156216, + 15.065539103606211, + 15.01158876726961, + 14.89760247465016, + 14.933128832057857, + 14.965613470805971, + 15.030951368381906, + 14.997580187540102, + 15.021565845301273, + 14.983973466008113, + 15.015209114758159, + 14.968116400862879, + 14.971970621706562, + 15.053529004486192, + 15.07745783335603, + 15.024172440281085, + 15.053519614558969, + 15.01423031907879, + 14.982106644534378, + 15.023191853843453, + 15.094592306122774, + 14.941090792352883, + 14.984979889844386, + 15.005817588571976, + 15.037646742560144, + 14.96267779119025, + 14.954560468522919, + 14.996083627150089, + 15.008892304882334, + 15.000161018440823, + 14.97422780102738, + 14.976923342002605, + 15.020900095018703, + 14.950185276577885, + 15.000955017976425, + 14.980711818029993, + 15.048294559797387, + 15.00903582378383, + 15.0469661169084, + 15.007196135417155, + 15.02125732229182, + 14.941965156039245, + 15.063559832947877, + 15.015763873009181, + 14.977592590571897, + 15.031667971997017, + 15.099771436925502, + 15.036035433437972, + 15.029743404720339, + 14.989904688468933, + 14.94689509101495, + 14.979781760635618, + 15.074619847309467, + 14.9765895422944, + 15.054165618713704, + 14.961317605142133, + 15.057730813300253, + 15.007239294445721, + 15.09831252601734, + 14.95388900379014, + 14.965897302208772, + 15.073679959304773, + 15.108829387354996, + 15.022349680280122, + 14.944018985367277, + 14.93222558564814, + 14.97472660372428, + 15.016079757799895, + 15.059971183909813, + 15.004203998386618, + 14.939697762592628, + 14.964289652660225, + 14.981007629321041, + 15.002867812852276, + 15.02763788323317, + 15.007887739620134, + 14.97529179476676, + 15.03034919748617, + 15.007947346086134, + 15.096372577406555, + 15.024567520335516, + 15.055858130684415, + 14.985132809722339, + 14.988200200792834, + 15.0658858368824, + 15.028769705199027, + 14.992421518774384, + 15.00226017606326, + 15.009684996375862, + 15.051630942473817, + 14.978918237002599, + 14.980518909730645, + 14.956455897570107, + 15.02769592289539, + 15.003232441481932, + 15.016605582509895, + 14.899415740055439, + 14.990181059770624, + 15.034795405687879, + 14.983247251052555, + 15.028517410341955, + 14.988660328355607, + 14.923663619990903, + 14.918274741104229, + 14.93401561946129, + 15.022563610289335, + 15.043354932170983, + 14.944265288174586, + 15.016086703628154, + 15.021074504657074, + 15.004397231130735, + 15.010378653786567, + 15.022816298678558, + 15.08189158514563, + 15.028444259453678, + 14.999953403836153, + 14.951752424058121, + 14.922542280818732, + 14.942670091053342, + 14.983646660055914, + 15.026485678492604, + 14.940602010680829, + 15.024168645794655, + 15.028414119631922, + 15.011053123631397, + 15.051930889577248, + 15.008475338728307, + 14.970227190655141, + 14.955891836808934, + 14.974036286589198, + 14.97704363944331, + 15.009851226165992, + 14.948338523732106, + 14.995885032038402, + 14.869778711750367, + 14.874573938551581, + 14.961478955513241, + 14.959032512702692, + 14.951656390026805, + 14.880622663854398, + 14.918363541979046, + 15.017539710560932, + 14.950073235787178, + 14.923385994379007, + 14.975600558175891, + 14.977524360185141, + 14.995537600736837, + 14.98980732808314, + 14.972004936341389, + 15.029413412388777, + 14.95103532035574, + 14.938522770428056, + 14.91549365193654, + 14.964019293555175, + 14.921656274612694, + 14.91724716175822, + 14.97868090964877, + 15.002936439207993, + 14.97078643106922, + 14.988978954199538, + 15.012036546646623, + 14.947594813093323, + 15.05594390465832, + 15.000932275481249, + 14.972671607059596, + 14.983336689339403, + 15.02684733589731, + 14.996779932221488, + 14.99740803540625, + 15.062055947851784, + 15.035816055315346, + 14.960554560347203, + 15.008835827850994, + 14.934867334605359, + 14.971844200649578, + 14.979550585891836, + 15.109814160155148, + 14.991554216134459, + 14.91764493104305, + 14.96763550169362, + 14.987703434905463, + 14.960987425045017, + 14.959495137329817, + 14.972004122082838, + 15.003870329770887, + 15.005246467956079, + 14.980070145768174, + 14.999609919915452, + 14.98127490977004, + 15.01252098652604, + 15.058818624977702, + 15.027619817746617, + 14.977582690299569, + 14.958976578758747, + 14.955975379353454, + 15.002450563014845, + 14.975853827575843, + 15.010837673410029, + 15.010177833174188, + 14.993558180355608, + 14.98588631695775, + 14.951527822615052, + 14.972327716811762, + 14.991525839417163, + 14.914989941289084, + 14.922226204655075, + 14.963159949117282, + 15.026704251684446, + 15.040962553259785, + 15.02769113124983, + 15.05619924334249, + 15.012379899650549, + 15.079505995284046, + 15.042581276276694, + 14.938876345873725, + 14.934282075955213, + 15.028545050061354, + 15.026855773129263, + 14.990395839354296, + 14.919172307480324, + 14.938168247072857, + 14.920835002718437, + 14.949692023017926, + 15.023807172073955, + 14.982433996405149, + 15.011275450527252, + 15.018163311563862, + 15.028489693092274, + 14.986995763584098, + 14.953475855695135, + 14.985621455001285, + 15.056034260936986, + 15.016106327962273, + 14.987208315770287, + 15.091721152989983, + 15.036520817968325, + 14.97499031917244, + 15.105201977434355, + 14.908616686359423, + 14.976826626194088, + 15.083802419307831, + 14.994879921766634, + 15.007848659272819, + 15.006110116072785, + 14.90279694520503, + 15.034282205663365, + 15.021666286068111, + 15.044958341821093, + 14.989844304592443, + 14.973802640296919, + 14.992269320894804, + 15.009943197645274, + 15.049875142915736, + 14.984483682717707, + 15.013530125738368, + 14.936995937788557, + 14.993709332294198, + 15.022948003093672, + 14.927819379330524, + 14.928134181643372, + 14.913290397528641, + 14.931349152596164, + 14.89741016982711, + 14.973036204318582, + 14.991616224127775, + 15.025818271679205, + 15.089952794716165, + 15.02063471483188, + 15.051006427480216, + 14.986913970284306, + 15.061559516981474, + 15.052303259039252, + 14.91027942283898, + 14.996190888727355, + 15.04690644073317, + 14.951544113477654, + 15.027860425019364, + 14.956811527009526, + 15.0499936089456, + 14.917744620830693, + 15.051447306303773, + 15.02548912114951, + 15.065427295844598, + 14.989210294225208, + 15.051615883652376, + 15.027306784453154, + 15.020055911353714, + 15.010788946497305, + 15.024090951151637, + 14.937930060789599, + 14.993751320277363, + 14.996746595421923, + 14.996920412654879, + 14.920496817246507, + 14.938991760294323, + 14.94968956564135, + 14.952086691429173, + 15.008535273533088, + 14.971370916812301, + 14.984838029736007, + 14.995331178594236, + 14.918293003442887, + 14.96287241490632, + 15.021974978702067, + 15.073580765811403, + 15.047121690851561, + 14.988396624818153, + 15.020104547056293, + 15.005702650568685, + 14.914247920676148, + 14.907075395139909, + 14.861707306626906, + 14.934908590945557, + 15.04765028507603, + 15.02642546376358, + 15.038628217081984, + 15.00058275084477, + 14.99283977526587, + 15.000431023346067, + 15.041516203435467, + 15.055767286439176, + 15.058824547447571, + 14.994144408261134, + 14.909049369707152, + 14.964614742585338, + 14.955358298811104, + 14.897251450514934, + 14.988762254099186, + 15.014556371114894, + 15.017023585932323, + 14.987133226672778, + 15.0245828606455, + 14.974380977922221, + 14.89603264910894, + 15.025012365835531, + 15.016836217263933, + 15.06873769050115, + 14.997297483424829, + 15.009484355946112, + 14.9997594356915, + 14.961006354851314, + 15.029825233368639, + 15.007608849306537, + 15.042358929075705, + 14.956670964017754, + 14.996522709864673, + 14.987090044820055, + 15.005533040927386, + 15.02290213538339, + 14.997889180745556, + 14.984997660084536, + 14.910254699663898, + 14.880648718897604, + 15.017519559477895, + 14.991155733410364, + 15.049111376874116, + 15.07448609133864, + 15.035227812755734, + 15.072802599484262, + 15.021354986190369, + 15.042940762922983, + 15.002421456090353, + 14.964290546933038, + 15.02768820452731, + 14.995229147517477, + 14.994298104204875, + 15.00729191470578, + 14.98136246803001, + 14.916121111813053, + 15.121051919659655, + 15.038662132855928, + 14.941556536555096, + 15.009866651930343, + 15.068014710531218, + 14.978025885943808, + 14.9706832762269, + 14.961808551233327, + 14.973875703706232, + 14.933832896284468, + 14.983102119454504, + 14.981911299856911, + 14.962557323683278, + 14.98016271832569, + 15.03809778944997, + 14.953383797735409, + 14.991307290697621, + 14.961957208336546, + 15.010150012505187, + 14.92494991887635, + 14.967817352305252, + 14.988825803774105, + 15.006257238583904, + 15.0029681878435, + 14.993569698127063, + 15.057277175011887, + 15.028187047526073, + 15.003930701311207, + 15.017405701358609, + 15.013971169492368, + 14.96847698877951, + 14.940547901515906, + 14.97305623972323, + 14.957797217907878, + 14.945492294038733, + 14.992271288391228, + 14.98991941924824, + 14.987592569093456, + 15.031088423233992, + 14.946359120303352, + 14.956562371828332, + 15.023249119736713, + 15.018503729266452, + 15.108053395422194, + 14.973697588874526, + 15.023033916734787, + 14.970393627624277, + 15.005565423533875, + 14.986648385288182, + 14.968921275216157, + 15.057729660173704, + 15.001176558833404, + 14.974851260871926, + 14.947208098369657, + 14.997421263994209, + 15.011386676913611, + 14.938875291844488, + 14.958601807480878, + 14.99305658078545, + 14.951269290470735, + 15.00038669659855, + 14.988157252980473, + 14.97421105514925, + 15.058991347156121, + 15.009081638445013, + 14.963217792304642, + 14.942186592205, + 14.971569932991061, + 15.018635713117444, + 14.960572241193855, + 14.959254461602645, + 15.008275874915086, + 14.998336798955753, + 14.892829122345047, + 14.97545760146025, + 15.066254979117513, + 15.025629994099987, + 14.951510714478149, + 14.933020822825403, + 14.986849789144246, + 15.041011906450606, + 15.065110445920281, + 14.96193671476433, + 15.014857705112089, + 14.97493083121656, + 14.935791357031755, + 14.965793379448618, + 14.996907366601132, + 14.989225535075972, + 14.967366608977017, + 15.086681711016244, + 15.03945699854209, + 14.96654728317716, + 15.024884492977172, + 15.00914709592645, + 14.96381663169903, + 14.929419593829488, + 14.977629338657767, + 14.986343122337805, + 14.945828147412257, + 15.012652540207737, + 15.004129802900346, + 14.939142954166346, + 14.934782330992565, + 14.921213550377034, + 14.959040926912941, + 14.978976532452375, + 15.01313040117808, + 14.991542868999334, + 15.00101828007827, + 14.9966896943413, + 15.036599766345406, + 15.027936713835327, + 15.049994524471792, + 15.019579372075968, + 14.95874207089376, + 15.030654365963345, + 15.005094119937189, + 14.953543392097213, + 14.969047269250487, + 14.96706508953343, + 14.991727440011106, + 15.06262644212787, + 14.986080222792188, + 14.933180591731006, + 14.971715292424772, + 14.989613786584139, + 14.970260974478563, + 14.994630999983931, + 15.042369303394514, + 15.02607235324226, + 15.058137987898734, + 15.03415387756125, + 15.007790718510922, + 14.970265732012102, + 14.975943661515675, + 14.997958537140391, + 14.947155099721233, + 15.075175377494888, + 14.990368595517571, + 14.924520757932127, + 14.93021520136911, + 15.09910051333908, + 15.003093896109311, + 15.036638764480617, + 15.013988383123648, + 14.963713948403765, + 14.980977180537886, + 14.984117812218063, + 14.975837571561065, + 15.088500868885538, + 15.020175213928711, + 14.999774176875402, + 14.961107266113663, + 14.953895283803181, + 14.983911637826168, + 15.000999040943578, + 14.967906673434493, + 14.986916396126327, + 14.95693398161545, + 14.992280675164242, + 14.974953272015876, + 14.989839223182203, + 14.960067674535788, + 15.00107956145041, + 15.063317246162418, + 15.134434905054375, + 15.125480005758247, + 15.079530318336586, + 15.069507378401424, + 14.960023878852379, + 15.018121142115357, + 14.9738224891621, + 14.988529457952303, + 14.951108046819003, + 15.006270090975429, + 15.022542194310272, + 14.992537568949746, + 15.0190815088672, + 15.031564700295085, + 15.013511623805769, + 15.047933851991276, + 14.97463902326321, + 14.978137668066042, + 14.937584118496554, + 15.00471866672448, + 15.005106086233598, + 14.97216276686005, + 14.95635451373213, + 14.967584646662951, + 14.939481705620874, + 14.903801503510222, + 14.916258954799464, + 14.96578882110394, + 14.960179434711206, + 15.04774386334731, + 15.089987525899653, + 14.990618312072296, + 14.988074486061182, + 14.97070866000453, + 15.033627037909092, + 15.068819566661555, + 15.049275831732707, + 14.980901652682656, + 14.977332640845193, + 15.03380748919453, + 15.00031035386937, + 15.059261141185134, + 15.074097695986126, + 15.042558560194246, + 14.979034598727619, + 14.944558148715899, + 14.976714411519442, + 15.098345901463015, + 15.049699164436385, + 15.117373495708925, + 15.078455122533674, + 15.021014839907727, + 14.986234795101117, + 15.017014321798865, + 15.005059973613868, + 14.993691209050269, + 15.009753846357675, + 14.98402609932572, + 15.015992857615442, + 14.990612689909359, + 14.993591036487468, + 15.000308902074911, + 15.006878904458189, + 14.9754398640085, + 15.097587996880204, + 15.134049016218375, + 15.010630638723349, + 14.988534782113826, + 15.044476268810175, + 15.04244132727899, + 14.96693463999547, + 15.028820893188296, + 15.010714193533223, + 15.039908944934187, + 15.036063509823554, + 15.022894996759216, + 14.976853260837137, + 15.044684121286027, + 14.937349817159594, + 14.936770234978388, + 14.958381365931912, + 15.030977696986241, + 15.009039701106039, + 14.94762436125947, + 15.01474126710439, + 14.99984414695214, + 14.983704601377305, + 14.974155122866794, + 15.070494890608732, + 14.986948336881975, + 15.009136938673464, + 15.084144221561395, + 14.898650929944493, + 14.98091838217027, + 15.00324560718588, + 14.962882342357235, + 14.987149638161629, + 14.999626428806577, + 15.013672648935794, + 14.971233439817478, + 15.004869364368709, + 14.943737126962535, + 14.986434945489407, + 14.94256128150882, + 14.972968628950513, + 14.948874161084658, + 15.035256233910863, + 15.034189917783076, + 14.822976446673154, + 14.936027358421896, + 14.959658694447883, + 14.937434739347102, + 14.93559066344361, + 14.924764258708409, + 14.969746304820033, + 15.10715732871919, + 15.065708543854932, + 15.025370018444333, + 14.986616175904995, + 15.041968102239224, + 15.06686703863817, + 15.054632695287905, + 14.985761348508875, + 15.102293932364006, + 15.067202640050201, + 14.932772516933966, + 14.942387774724361, + 15.032153039552455, + 15.090378468542951, + 15.060486684756796, + 14.963002435165537, + 15.010494690609459, + 14.983952992495976, + 14.939327630438818, + 14.920791485917102, + 15.056778023987212, + 15.024124200652283, + 15.01069947071633, + 14.967316743970704, + 15.026696209167534, + 15.040575300658096, + 14.951997357940357, + 15.02657082544387, + 15.002474406983765, + 14.961761380650708, + 14.895117030441707, + 14.945348531430508, + 14.993286221112577, + 14.956373334610333, + 15.064021513161642, + 14.972523512172854, + 14.986010066835442, + 14.953748202557069, + 14.96073425979356, + 14.991149288269053, + 15.019815273944179, + 14.972443559518977, + 14.970590409618348, + 14.976975503370266, + 14.982895472868464, + 14.991873096826804, + 15.043521347146964, + 15.015876160856154, + 15.056036474202545, + 14.960576251055594, + 14.991278020787167, + 14.979842727260527, + 15.072967073886817, + 15.02138570850308, + 14.996964124803092, + 15.007122773195592, + 15.006543613588986, + 14.988227006819839, + 15.011057997751314, + 15.01136440754705, + 15.001223920178067, + 14.949396189196118, + 14.928873816997076, + 15.062427422192505, + 14.999692317021706, + 14.975828136252492, + 14.921269296930447, + 14.997037358299242, + 15.018293819901897, + 14.948377725343262, + 14.95310949193634, + 14.981507885518523, + 15.002058809211388, + 14.935308096168033, + 14.997429003373888, + 15.032015399472014, + 14.972629026303892, + 15.002910902880274, + 15.010194433446369, + 14.941675890895045, + 14.930445780123836, + 14.958436056138584, + 14.933579846651662, + 14.94183594251818, + 15.064441735372798, + 15.033769378874233, + 14.96904492889749, + 14.999475158966943, + 15.054270949611999, + 15.079045475299429, + 15.004338837486799, + 15.036575987492375, + 14.988445033992095, + 15.023011731216682, + 15.043621522332048, + 14.992371062724112, + 15.03565870765977, + 15.04044349980227, + 14.987691735809815, + 14.974398832405207, + 15.043066411123487, + 15.024395883379901, + 15.032343902577317, + 15.081021262719496, + 15.070760129249152, + 15.046122915602947, + 15.023380255448679, + 14.944105520861322, + 14.969337397151914, + 15.085584511060226, + 15.056917215827585, + 15.066366702008144, + 15.045939359210212, + 15.113351886217753, + 14.973657607505183, + 14.92683469221805, + 14.963341609449895, + 14.951240368201077, + 14.947061560499513, + 14.939306066833975, + 15.06938130801872, + 15.040784345156434, + 15.045819319891342, + 15.090306943066407, + 15.008698876299796, + 15.034134368786821, + 14.984760870238128, + 14.931444830347663, + 15.040002891752534, + 14.985388999081264, + 14.935877778743146, + 15.071550815743963, + 14.988366126229675, + 15.027980743096512, + 14.962708097522192, + 14.994819759029722, + 15.041659889511129, + 15.045679051913094, + 14.995847061310075, + 15.03668678013579, + 15.001577427264017, + 14.98646228724953, + 14.96565742204706, + 14.962701692129702, + 14.987629973044129, + 14.919201783959958, + 14.983596692090048, + 15.039243104747062, + 15.012223686441118, + 15.070211277556737, + 15.031533631713138, + 14.993375226313917, + 14.987190368630264, + 14.911863298720625, + 15.01249800936894, + 15.016747431925992, + 14.980313358236254, + 14.998483826885806, + 14.981606460878243, + 14.990071877648969, + 14.955504198352548, + 14.954726563414637, + 14.972117860192697, + 14.959917868871328, + 14.966043622811005, + 14.94001055739628, + 14.963344126758594, + 15.046023683020055, + 14.98792712183702, + 14.918041127960695, + 15.002137705759, + 15.029880131384571, + 15.007948588858932, + 14.995411540896372, + 14.97584851951937, + 14.99197273004146, + 15.049645926901615, + 15.003266031727435, + 15.08324618990097, + 15.087330852253544, + 15.020904873882749, + 14.997710977775837, + 14.964073491595375, + 14.997072481725521, + 15.015609921434104, + 14.963410178075193, + 14.970824017594683, + 14.95876615713652, + 14.944304587870446, + 15.047165626475342, + 15.088254643041571, + 15.050265313344257, + 15.030373258230076, + 15.001748878854565, + 14.99649383785157, + 14.99822791962727, + 14.977840327296688, + 15.02676824320375, + 14.99848587815975, + 15.05807909424419, + 15.076348792092025, + 15.044976241179615, + 14.947743798907348, + 15.026079623057841, + 15.017742118289442, + 14.993947000876664, + 14.961285355347938, + 15.010829686760896, + 14.98183255851858, + 15.075047720729529, + 15.059215690579089, + 15.037626195344268, + 15.000408329713837, + 14.917320744735951, + 14.921145510526244, + 14.993426008197927, + 15.021869679818051, + 15.052611954485954, + 15.029482283214941, + 15.020494680203717, + 15.02683444614036, + 14.966981827082128, + 15.029571584962309, + 14.994972443520021, + 15.111891770658909, + 14.963713902176654, + 14.956334165829833, + 15.003173918281776, + 14.972860224540632, + 15.003779989318659, + 15.027966295336126, + 14.950768112340583, + 15.014741738739882, + 14.987877854174888, + 15.021619743048415, + 14.987551392928163, + 15.05182833652914, + 15.027264228165178, + 15.015707451549932, + 14.985848937807324, + 14.968126373896538, + 14.989327924440255, + 14.956260406370868, + 14.96708523026309, + 14.967386185774973, + 14.961372531327136, + 14.952669625863608, + 14.978163531176822, + 14.967100855906029, + 14.984769873563076, + 14.96223055883075, + 14.998331848701838, + 14.953821076648376, + 15.009859409436954, + 15.056175395682667, + 15.07421443977077, + 14.942257294439536, + 14.996589432889115, + 14.973260530812611, + 15.002330877391461, + 14.963753943759949, + 14.986224808489979, + 14.968525128996474, + 15.044649945095024, + 14.996550440380487, + 15.041312682650178, + 14.981180874789139, + 14.925952868676251, + 14.972165525635855, + 15.045854904959178, + 14.976531863425977, + 14.965759931239731, + 15.010906763564616, + 14.99728003435716, + 14.999949014594328, + 14.9975822735644, + 15.05377523002904, + 15.01671625837184, + 14.973060952909258, + 15.031024602271644, + 15.03668320808086, + 14.97330743959595, + 15.031085784609807, + 15.00132776313288, + 14.96724500826786, + 14.978238174031567, + 14.997610473231319, + 14.936439573960087, + 14.982744317585684, + 15.012293136180476, + 15.018291196303737, + 15.022832820628919, + 15.025592733150189, + 14.931080018370649, + 15.01330389315998, + 14.955567892928796, + 14.877541587515713, + 14.83422672793551, + 14.941401713255646, + 14.947398431787219, + 15.015791935001529, + 15.001752876955914, + 15.009322826160062, + 15.045586921085457, + 15.03459049634949, + 15.039061649108573, + 15.054607617280903, + 15.044317270135338, + 15.018585634223605, + 15.022054267251763, + 14.970896955518173, + 14.945739314658178, + 15.004947792551247, + 15.005100080304167, + 14.964151868170626, + 15.001740897351162, + 15.027208844216355, + 15.00133419802644, + 15.006151407472027, + 14.926196399388838, + 15.00389186173582, + 15.001983572365692, + 14.985310873353997, + 14.942121005389001, + 14.967100820204275, + 14.996787593764273, + 14.945392482545387, + 14.95472828825455, + 14.964355013278572, + 15.014969819548025, + 15.042245075879917, + 14.978057086213445, + 14.979231123627912, + 14.9844599417898, + 15.079005803818545, + 15.010746434169471, + 14.95942243185361, + 14.963943821990334, + 14.980361219286772, + 15.022419913541631, + 15.006133803836546, + 15.010429636237587, + 14.981181304866144, + 14.994136480528084, + 14.946910826491028, + 14.973223386832027, + 14.987452265814685, + 14.972346793567224, + 15.056892172153882, + 15.0726952361919, + 15.001031586048349, + 14.983207294927007, + 15.033844673773643, + 15.039390929601957, + 15.082061438028065, + 14.99918260278502, + 14.967127617698257, + 14.979779527223094, + 14.984790070040562, + 14.986661795768693, + 14.95392591066147, + 14.905767985254549, + 14.906624740852036, + 14.952324632021767, + 14.923177073083398, + 14.939581391486408, + 14.95985868381636, + 14.901288871806418, + 14.88679728300783, + 14.936073723866347, + 14.985332425021497, + 15.018422453460035, + 14.936498696625408, + 14.98505393952109, + 15.032666746151289, + 15.016651720133256, + 15.039559438287196, + 15.035451303459086, + 15.019830608539458, + 15.022459402685794, + 15.01121469995523, + 14.974870601508965, + 15.007757949755904, + 15.011243439829547, + 14.966476450238243, + 14.892192277229059, + 15.012379094675916, + 14.937694676759088, + 14.99816106699654, + 15.035170854607449, + 15.002895866295692, + 15.023890362691477, + 15.086842120560693, + 15.026650458473629, + 15.000554099866301, + 14.998731952800332, + 14.990059111025644, + 15.0272570356127, + 14.96780576996516, + 14.973227024590651, + 15.079067597616513, + 15.043846207918236, + 15.001517362834894, + 14.982093564762645, + 15.000961178797914, + 15.027743864886432, + 15.064831912025314, + 14.989307254311859, + 15.038281123696894, + 15.036962603131178, + 14.94260356801194, + 15.083266848342888, + 14.983484565225048, + 14.98804246590847, + 14.999768019147314, + 15.037647532849267, + 14.915611603742747, + 14.930633746063235, + 14.913939372493644, + 14.896438734821642, + 14.898213729820082, + 14.95749844315649, + 14.997878901910726, + 15.001320904794783, + 15.016596223688616, + 15.057838498162482, + 15.031995171036696, + 14.991721106422988, + 15.119637790940684, + 15.003541650979928, + 14.985325939824195, + 14.998225984949443, + 14.976977192598165, + 14.956815629281856, + 15.023044074789256, + 14.967649170824766, + 14.929415180746457, + 14.875206513929358, + 14.961693508137719, + 14.969152681699885, + 14.968544350555753, + 14.980791783846499, + 14.954586495312487, + 15.052954186915466, + 14.956328891333554, + 14.989759823687995, + 14.970235637646995, + 15.000375702661966, + 14.945611252611457, + 15.010757354999448, + 15.068515404055393, + 14.98876737411633, + 14.960966129876855, + 14.977072301329681, + 14.983095012277438, + 15.05297660832069, + 15.004109874524827, + 15.001682543720749, + 15.02867675380888, + 14.962243854051797, + 14.978622510764746, + 15.11447743245308, + 15.035270868241263, + 15.026565003749196, + 15.006616732589782, + 15.004024114707818, + 15.001606069284549, + 14.974942288008556, + 15.038777669577177, + 14.994668205471537, + 14.993233349123853, + 14.96991950158038, + 14.998151420414096, + 14.945779125595415, + 15.007049171320572, + 15.016644651102656, + 14.926634154454632, + 14.963816719667705, + 14.99385614777151, + 15.014504043732831, + 14.982378441874985, + 14.908296585936034, + 15.005104678615856, + 14.99022210853809, + 15.024607024863188, + 15.005344325832342, + 15.040316507690806, + 14.957763570519791, + 15.105114340597453, + 15.048011096268, + 14.957060330587034, + 15.142271682305177, + 14.974584486134058, + 14.9922632203232, + 14.976592929991945, + 15.083908175647734, + 15.09987693622403, + 15.019340573936637, + 15.061866547431903, + 15.041122548736787, + 15.137659437854735, + 15.043911524993392, + 15.021362174845681, + 15.040131506883274, + 14.986777963681783, + 14.97690331369408, + 14.906803028863338, + 14.961899295013367, + 15.01132139644922, + 14.994686856311858, + 14.97604251771994, + 15.009890377948889, + 14.910709130220928, + 14.991174765198355, + 15.085826374245391, + 15.028279270474256, + 15.046290421669399, + 15.09394786057595, + 15.134497773102781, + 15.074427867884953, + 15.03070610715289, + 14.995576329575021, + 15.030951421480815, + 15.046604443064403, + 14.978311857249219, + 14.966031388584353, + 14.997179680600471, + 15.070776943659284, + 14.924104271850249, + 14.989918174505346, + 14.95999678769125, + 15.076480560948962, + 15.095548362162857, + 15.03949227049392, + 15.025307188200228, + 15.060403895435753, + 14.987810134145462, + 14.989102280146708, + 14.972046264940111, + 14.960591499391237, + 14.964596300029578, + 15.007580904975127, + 14.977552518146343, + 14.9510870342416, + 14.993217653815698, + 15.05821054720221, + 15.027020684334948, + 14.986040727958233, + 14.929415946408886, + 14.961502524922583, + 15.02763775324317, + 14.936486922700531, + 14.990297239385377, + 15.024435062010484, + 15.050187430509359, + 14.897036501770518, + 14.962934442895873, + 14.91262390311434, + 14.981626275256684, + 15.023593152164258, + 15.020734744469625, + 15.001850590521999, + 15.073130400272158, + 15.014166169078843, + 14.956743234591444, + 15.020976180449471, + 15.003586474810017, + 15.059027820314185, + 15.06740909580329, + 15.090638608320994, + 15.066259237740356, + 15.051999627311412, + 15.057463885169163, + 14.987674958235273, + 14.995905331053967, + 14.945041969355955, + 15.115294124781876, + 15.062542105729728, + 15.067018166896162, + 15.068712676893732, + 14.879094997965348, + 14.908618722063451, + 15.031957159215874, + 15.11487520990436, + 15.071665857472896, + 15.047978374025679, + 15.000444759903852, + 15.06477834784365, + 15.001931894113827, + 14.96621226052815, + 15.006846065624503, + 15.065770450486239, + 14.92292593570179, + 14.932029415563902, + 14.906405560056808, + 15.031657746976512, + 14.974381942029446, + 14.968250199387718, + 14.993407872295315, + 14.974436122333486, + 15.028258116058648, + 15.01179588054665, + 15.017805579127783, + 14.911687075048208, + 14.92888417064296, + 14.936594432024952, + 15.048032344799564, + 15.017281506441371, + 15.050967718540234, + 15.013038932429295, + 15.032041787345014, + 14.992387677704901, + 15.068575482582647, + 15.108907362675636, + 15.083687148801548, + 14.941925586206818, + 14.99712804605599, + 15.04921332432326, + 14.959132654037937, + 14.955262703193045, + 15.00031385282208, + 14.98091586956726, + 14.981208828589438, + 14.99018752241385, + 15.049986553944446, + 15.007244585907316, + 15.03278300192956, + 15.033469749785421, + 15.096098925420218, + 15.02949568006968, + 15.023869103317677, + 15.025361403538618, + 15.04589317489025, + 15.048736552116576, + 15.013577001956833, + 14.907039959179624, + 15.006167112194698, + 14.93280780976494, + 14.997964319976951, + 15.090395302220514, + 15.12356983032791, + 14.986264715875196, + 14.954685132841927, + 14.958883292774651, + 14.964095563671597, + 14.99876099907419, + 14.953854980500708, + 14.997490486607246, + 14.996146126931498, + 14.931302867483756, + 14.981745740127328, + 15.020001272138488, + 14.963259437339913, + 15.066224106699304, + 14.957496605734367, + 14.908674657304989, + 15.118995314705995, + 14.982138240012175, + 14.989265802963246, + 14.958380508207178, + 14.977714245817088, + 15.039104944390235, + 15.076829262571858, + 14.994689917702129, + 15.005430772356684, + 15.039259200546834, + 14.998901280817362, + 15.091357860688825, + 15.00054150205466, + 15.074242373618777, + 15.019264345955131, + 15.03554291450792, + 15.043511045980347, + 15.035480102281655, + 15.025652660571879, + 15.043520798321035, + 14.987167524825397, + 14.984216807415427, + 14.86898542515705, + 14.98603680828456, + 15.003821493972966, + 15.00001134970731, + 15.072945070165064, + 14.96927184819188, + 15.010204411468152, + 14.974499110888027, + 14.937464350338706, + 14.990672771869352, + 15.07746757635836, + 14.962174505496199, + 15.072706384061323, + 14.956787629616132, + 14.961365284635955, + 14.978511902201726, + 14.978119907781306, + 15.024460654353, + 15.02197648485133, + 14.970635208208288, + 14.97721244299976, + 14.844683341161623, + 14.99023286542126, + 14.94395066717008, + 15.012530106249176, + 15.0434914338705, + 15.058577505109223, + 14.995550571572167, + 15.00188943910344, + 14.972752417632146, + 15.148444147513754, + 15.052953252483977, + 15.035993712095088, + 15.003967739208132, + 15.073958868070395, + 15.1137092526489, + 15.041551018789509, + 15.082673263645109, + 14.983286872095128, + 14.996050330838651, + 15.032917773079511, + 15.008965079605954, + 15.093844909808949, + 15.008271332156848, + 15.0714924581867, + 14.997335772680316, + 14.954792690053948, + 14.9530125968092, + 15.01916593973114, + 15.003136049118018, + 15.053857781980835, + 15.050379570499732, + 15.011886760145963, + 14.988016810997667, + 15.010218099665236, + 15.022082370559865, + 14.976945092220381, + 15.008781484197346, + 14.985699999267075, + 14.916816360204791, + 14.984359096841578, + 14.900663693813303, + 15.016468663609333, + 15.01063455807594, + 15.014624215794713, + 14.953152741038938, + 14.876672507149497, + 14.979511469112069, + 14.976785282122718, + 14.990438772665122, + 15.000215424988966, + 15.059962083148195, + 14.92938490688378, + 14.90737226524521, + 14.979106576023613, + 15.032767321615745, + 15.008828682224364, + 15.024229712227642, + 14.971871122911812, + 15.005391391601202, + 15.007190938135343, + 15.047810504316246, + 15.016008727709863, + 14.97978739963186, + 14.944606458759615, + 14.963560138798977, + 14.979310378310519, + 15.040002230760061, + 15.025021101884947, + 14.952038068117316, + 15.007593979466845, + 15.041215842089356, + 14.990587696284644, + 15.020127753024365, + 14.971211432995512, + 14.89947028482426, + 15.009524939062308, + 14.971504217924391, + 14.996524158746272, + 14.969845965845394, + 14.97206012013641, + 15.018932139084077, + 14.98801146661996, + 14.96535916138889, + 14.97910875180498, + 15.062361226434172, + 14.999760014806455, + 15.000436536042663, + 14.999612727841068, + 14.933214990751887, + 14.916022225078867, + 14.96599249689786, + 15.01508330991061, + 15.051656905813386, + 15.045447968903234, + 15.03196709103978, + 14.974089594211424, + 15.000419415952358, + 14.947178563018742, + 15.00160141491962, + 15.076870209407558, + 14.97399240436176, + 15.006749015594327, + 15.058734860207315, + 14.986911807610127, + 14.976658759101856, + 15.008399807472545, + 15.045021908713561, + 15.080475157538975, + 15.030770453954277, + 15.036432840631386, + 15.066640913734696, + 15.013379116660312, + 14.920539510322193, + 15.0241478421525, + 15.008862094550228, + 15.012240787696825, + 15.03496293865074, + 14.97077882085598, + 15.03525605898265, + 15.048282438115544, + 15.074984780020868, + 14.937724846751799, + 15.013969159121299, + 14.992789101504505, + 15.053978157482632, + 14.936537740201462, + 14.941430262634084, + 14.998062064158281, + 14.977821683608822, + 14.938035564172097, + 15.037741956920916, + 15.0053027071962, + 15.072353792276951, + 15.063004109963403, + 14.997217927257172, + 15.008075448462014, + 14.94960858463907, + 14.979898415870068, + 15.041331838214939, + 15.027219861626632, + 14.978456913858507, + 14.943875689861557, + 15.002744704030242, + 14.960236799132065, + 15.017845557597838, + 15.026330810507185, + 14.920277019704926, + 14.980091629415956, + 15.060812327006508, + 14.99464395974071, + 15.060736596742622, + 15.098117829774955, + 15.004855141747068, + 14.980318293874953, + 15.046794302796389, + 14.974610079448354, + 15.009134390789995, + 15.022424983030922, + 15.049251105032278, + 15.003426229792858, + 15.046618281267218, + 15.059774793923047, + 15.052521353007226, + 15.023194958618918, + 15.022591879697734, + 15.046400320979465, + 15.024798850869406, + 14.982599352607611, + 15.05979947213959, + 15.025053577363698, + 15.07348992833572, + 15.036399631548587, + 15.017029743144557, + 15.042351920447873, + 15.035702525143257, + 15.096427101455001, + 15.10734978020779, + 15.06774658806864, + 15.007503430504759, + 15.083103586739492, + 15.051320973168858, + 15.02841198451123, + 14.988025728834865, + 15.057534564297, + 15.0029578538501, + 15.003076015696578, + 15.085098983216751, + 14.985444499713472, + 14.949916732040295, + 14.89714755176311, + 14.984282223808396, + 14.938527451624658, + 15.021153084641318, + 15.06987400747398, + 15.005120595965142, + 14.967164497418763, + 14.947489285751402, + 14.9751708325186, + 14.951318928237274, + 14.981621933276797, + 15.011593180629205, + 15.104069803021511, + 15.020670001352928, + 14.94235492044589, + 14.93271544368182, + 15.016583437163318, + 15.032119764563419, + 15.031238063076048, + 14.957058073180853, + 14.963850562271784, + 14.929652830598217, + 14.99403896943028, + 14.989491910993845, + 14.984003872294906, + 15.021338698371043, + 15.032528355770987, + 15.068730007677514, + 15.07065058986052, + 15.041102532167312, + 14.922197651846892, + 14.940410291871931, + 15.027407498986733, + 14.98175865570981, + 14.977406969969286, + 14.939181617667652, + 15.122549783875542, + 15.022559384730926, + 14.946446806270515, + 14.928237816498646, + 15.056236909854594, + 14.986107915172884, + 14.987811824754726, + 15.0015389174233, + 14.987006734372631, + 15.080199811766356, + 14.995464707683741, + 15.016661295023473, + 14.97626438300122, + 14.963469431143139, + 14.858695824312866, + 14.961768225965965, + 15.050443683968018, + 14.979940840501584, + 15.001149993177087, + 14.987184092339094, + 14.939479803965478, + 14.911151493972902, + 14.963179681187004, + 14.980371126019282, + 15.035130015313657, + 15.062172860817077, + 15.061453557670625, + 14.991222591399158, + 15.02093224775824, + 15.014000009310639, + 15.06745492577966, + 14.925383786253745, + 14.974033554565361, + 14.98903578309958, + 15.061825285881596, + 15.000335119411785, + 14.96973023830859, + 14.946925800605937, + 14.882422015482337, + 14.95672395205162, + 14.945233599246952, + 15.004798886536477, + 15.049170522299232, + 14.915895361451387, + 14.970057684633764, + 15.050136182969577, + 14.981185313762994, + 14.977726791041315, + 15.036268747498152, + 14.947810522668586, + 15.055058212346058, + 14.969247099316169, + 14.960947895290518, + 15.020692742679499, + 14.989117199010826, + 15.069784389367666, + 14.99958010511716, + 15.009496963556428, + 15.065494630868185, + 15.056966975649981, + 14.989747116966656, + 15.010195337209137, + 15.024766849730025, + 14.929577974861273, + 14.931444653675829, + 15.039268086840687, + 15.048691151494788, + 15.035048730213907, + 14.968913762984585, + 14.971231019430913, + 14.998282933167657, + 14.927209012371343, + 15.00189381148871, + 15.048297303200004, + 15.00553506815248, + 15.11177044395707, + 15.064024443701372, + 15.078508048522892, + 15.052856619127397, + 15.057760252187627, + 15.053197062510646, + 15.048723500643163, + 15.04849906701388, + 15.021514316206803, + 15.035519088419539, + 15.002132989399009, + 15.02385362787352, + 14.970290816824308, + 15.025402437733765, + 15.027222147878014, + 15.039461270418963, + 14.927824046058552, + 14.939383308168338, + 14.99748411943196, + 14.987211930019487, + 14.993202790392969, + 14.97294016450571, + 14.966318804248859, + 14.964147458149267, + 15.016797903114234, + 15.02122829474835, + 14.94701695487864, + 15.03118970576264, + 14.954646664310781, + 15.034586433235592, + 14.992918398723496, + 14.998917695145932, + 15.010995046353573, + 15.002072390189067, + 15.026749204441405, + 15.024283223463033, + 15.030455847345477, + 14.960426677019438, + 14.96117206495579, + 14.991618656758058, + 15.01203192006049, + 15.004460762875132, + 14.926917612942217, + 14.998650926563343, + 15.040496411869015, + 15.031210257510011, + 14.949444082300094, + 15.023351292773024, + 15.060426458827864, + 15.073453289535918, + 14.987994857340777, + 15.034932712625492, + 14.995534193201937, + 15.101256622415692, + 15.046289352973355, + 15.02427928492419, + 14.990216989439471, + 14.9177400243247, + 14.978916028058956, + 14.908347702664779, + 14.980829622326697, + 15.06411799475701, + 14.97862802479955, + 15.013640435806636, + 14.991806040853833, + 15.094559577556675, + 15.064229570637078, + 14.910283798789257, + 14.986331972846699, + 14.923753134489026, + 14.996817215358906, + 15.00642045772757, + 14.98762711454629, + 15.027671199685068, + 15.013189861989845, + 14.956556237769066, + 14.981057173812506, + 15.038103793531377, + 15.004097973636416, + 15.047100896713609, + 15.045488872107818, + 15.026643690764445, + 15.026705158809706, + 14.981915323608613, + 15.003885260353572, + 15.01028345766966, + 14.980757317922254, + 14.949338792918903, + 15.002147590947098, + 15.030681352257297, + 15.016700816704661, + 14.96317518797781, + 14.989805370038965, + 14.995115006323006, + 14.951571486894997, + 14.991804151515987, + 14.955550988858535, + 14.916177290643205, + 15.023855976076137, + 15.014697673921354, + 15.032741345468278, + 14.95105354072696, + 15.057001916638278, + 15.004543241662372, + 15.044512078178606, + 15.001954038014489, + 14.972612055732492, + 14.970951513993896, + 15.014404388150124, + 14.991233154787556, + 14.931333849910114, + 14.89846687422626, + 14.982046594540869, + 15.018844731416534, + 15.039852830482937, + 14.94186511702768, + 14.977907944160654, + 15.014085790813176, + 15.02599042452802, + 15.006449424684348, + 14.981770586744366, + 14.959451577534741, + 15.011684673018273, + 14.949313975495137, + 15.004321917795197, + 15.034816376783025, + 15.038455717280263, + 15.03659617297548, + 15.021901895816463, + 14.937745504478938, + 14.940105443757867, + 14.986978994798939, + 14.913053875688712, + 15.014466357167, + 14.982070928929726, + 15.002700967578596, + 15.060207888844007, + 14.962375434200755, + 14.955837959568838, + 14.981032283176495, + 14.905841508096156, + 14.973866268737758, + 14.98609798875714, + 14.993723271306502, + 14.985081835844467, + 14.928053561214575, + 14.927657832965926, + 15.050217104960486, + 14.992573189987114, + 15.025540460274396, + 15.047410659707706, + 15.07004513400646, + 15.114065344701924, + 15.091076326755749, + 14.871079306487745, + 14.93807869708825, + 15.00846909838667, + 15.091658825572217, + 15.08540396519996, + 15.007866296890684, + 15.001299221640298, + 15.039023203110112, + 14.9875502501263, + 14.961644258912768, + 14.975485762048232, + 15.062771768985233, + 15.085976248175244, + 15.075735797272827, + 15.010878611603276, + 14.973998054091368, + 14.962630919746367, + 14.926368900317582, + 14.956242240710163, + 14.98849560873997, + 15.045606906345299, + 14.971873272836977, + 14.948991006175223, + 15.02628407743721, + 14.959614058423483, + 14.987567633029808, + 15.007144587631323, + 15.081986968028035, + 15.009540051811454, + 14.985143201505444, + 14.981533280820955, + 14.957192672809537, + 14.965466320542642, + 14.989201982711723, + 14.991363922328219, + 14.867452122791732, + 14.972492050499643, + 14.941844761984846, + 14.950793442449921, + 14.985304626317072, + 14.966019597768957, + 15.018794317553446, + 14.955800235375236, + 15.010182411159812, + 14.98424744918082, + 14.98178572715796, + 14.958914007014227, + 15.03495390823339, + 14.966192735458305, + 14.994642024185673, + 14.972516374074509, + 15.009031506812631, + 14.974090093027863, + 15.072099231328501, + 14.986406145122386, + 15.049330554128654, + 14.961554219803693, + 14.990618086727073, + 15.044707900887706, + 15.03659066783999, + 14.992919100625869, + 15.007068220329073, + 14.988043268507601, + 15.042201594983796, + 15.057792713442115, + 15.024857932400813, + 14.999528556818206, + 14.962181727487756, + 14.981279842108332, + 14.959873558107754, + 15.003987688625854, + 15.003370868258925, + 15.076881565769316, + 15.02504857171916, + 14.981769679401141, + 14.965003189503456, + 14.99806056651683, + 15.064359084426039, + 15.046970147836278, + 14.99216330803567, + 15.01936233915593, + 15.05092573412814, + 15.093887257838805, + 15.000292180542136, + 14.944961129360623, + 14.98586448924147, + 15.004456437610243, + 15.077625613142574, + 14.96371406429827, + 15.010757711760782, + 15.039131663726387, + 14.955692998793467, + 14.994500129530788, + 15.084990833775768, + 15.032192702902737, + 15.05373959282613, + 15.041858038905643, + 15.04707658109315, + 14.991579382523069, + 15.037966335537977, + 15.000897989058176, + 14.916420503433272, + 14.92064170769946, + 15.024155818304267, + 14.978931069194246, + 15.077398825172803, + 15.04153264451245, + 15.007333135713536, + 14.958850185905916, + 14.970268866352924, + 14.94819482451204, + 15.015225004025998, + 14.979500189365279, + 14.968181205534465, + 15.03289382375667, + 15.094284621589756, + 15.047980109476988, + 14.999337980931488, + 15.029216200055062, + 14.920704046756082, + 14.931235752857841, + 15.005134900792454, + 14.949104219131753, + 15.042184624675127, + 15.080502652139252, + 15.006409491583579, + 14.974248657646823, + 15.026109910117272, + 14.970772596533042, + 15.045994283739164, + 15.010561023565863, + 14.962469028951555, + 15.018317918240076, + 15.020795397512337, + 15.039970667516222, + 15.057122976128397, + 15.04194992275212, + 15.011540555420513, + 14.990317807787982, + 14.94721614914358, + 14.978367147542604, + 15.054789169382083, + 14.989597919110981, + 14.92766175831976, + 14.997482720879606, + 15.034142952584363, + 14.993828476937296, + 15.040639971605447, + 14.971653471396383, + 14.987953478538886, + 15.059208842171264, + 15.040820382868414, + 15.03060914551289, + 15.012102378780767, + 14.968386529549663, + 14.999359888793647, + 15.03320135677852, + 14.968368168274102, + 14.9210712445369, + 14.984203639599603, + 14.940868778715364, + 15.020022099405317, + 15.030575339103201, + 15.071869521103006, + 15.059042107203174, + 15.018499225735114, + 15.086374481481675, + 15.108381995716933, + 15.062111495348525, + 14.978158338422173, + 14.932302958019653, + 14.99263911952079, + 14.981053356977734, + 14.959598865332113, + 15.012890295733763, + 14.994761457995851, + 15.031595321460633, + 14.944634580300221, + 15.085713753316961, + 15.045523164156547, + 15.045668152368755, + 15.054998231155354, + 15.003929776112672, + 15.00608198324502, + 15.091394403412082, + 15.063986897364805, + 15.106065125833997, + 14.959516193903845, + 14.918929139818347, + 14.968271770830494, + 15.016413324031378, + 15.054447630433748, + 15.03145708261538, + 14.935345275632322, + 15.04059922620787, + 15.012406268383137, + 15.09804432607991, + 15.039948051445903, + 15.017024813618457, + 14.989910186635308, + 15.053111781720188, + 15.025412779088287, + 14.968705380984918, + 14.929154754094897, + 15.01231999927719, + 15.044917093264077, + 14.998502737410062, + 14.953469250715033, + 14.937039806085144, + 14.948120049734788, + 14.974099652177747, + 14.971255242980039, + 14.991533869649034, + 15.001317083124137, + 15.037561296449667, + 15.01728925785722, + 15.0270658157783, + 14.926902504595432, + 14.965066005457558, + 15.011933689572576, + 14.924571949963019, + 14.892573693129908, + 14.936965690763644, + 14.902677368764639, + 14.923385569278102, + 15.010297966572256, + 15.025539724568592, + 14.986309291837182, + 14.97893818412873, + 14.992517712683771, + 14.980975062522266, + 14.922180559366458, + 15.063022889259466, + 15.087037874708614, + 15.011757054219276, + 15.081681016492519, + 15.097151640862254, + 15.051506912830783, + 15.00795548300908, + 15.059951132356696, + 15.067282813319913, + 15.036669874448718, + 15.034496242414182, + 14.942874470469004, + 14.9930274235398, + 14.888470232219165, + 14.932394234006377, + 15.051650678500103, + 15.019000126819847, + 15.042595559710882, + 15.068482657877556, + 15.073444017831028, + 14.977349859781976, + 14.956376312741886, + 15.01359839901801, + 15.022241876298425, + 15.02255771387642, + 14.999897424578116, + 14.97526544701754, + 15.009073849020183, + 14.943372353555102, + 15.04901861483859, + 14.990999761167439, + 14.934707322737228, + 15.02553497962766, + 15.059622714391033, + 15.117745993217437, + 15.041153718150923, + 14.967693870142421, + 15.01801022791351, + 15.05748992275285, + 15.040916334035916, + 15.079777663857563, + 15.073445917762248, + 15.043172197082582, + 14.979909849135547, + 14.920617137448861, + 15.005184822178848, + 15.090136204922858, + 15.009333716186939, + 14.999681838131885, + 15.01585717751639, + 14.967235704929017, + 14.993926220662832, + 14.982782539092442, + 14.947120653230748, + 14.998187547870987, + 14.95636456276921, + 15.067804425394355, + 15.003358422091242, + 14.952592432841959, + 14.952013077736373, + 15.050380912960089, + 14.927950596499837, + 15.029243508985221, + 15.009378280223764, + 15.052244254951496, + 15.025730463744015, + 15.000139369431732, + 15.029486761313489, + 15.02146814944584, + 15.036683790538651, + 15.09883194199657, + 14.987777763774348, + 15.032602043226001, + 14.977286703713784, + 14.945210502214092, + 14.963196433498371, + 15.011546347677891, + 15.030403891965372, + 15.005484501757241, + 14.951891797413603, + 14.936246197512421, + 15.013450933095696, + 14.988551208929023, + 14.995774118079934, + 15.002347819423987, + 15.077993401995675, + 14.880623628558626, + 14.981975452727065, + 14.944262874062222, + 14.947512393031431, + 15.007675115319579, + 15.042309213259145, + 15.097679729378473, + 15.009205584427905, + 15.11140099684745, + 15.010842698481603, + 14.993666847223672, + 14.975168515095076, + 14.920929503949512, + 14.998957442018032, + 14.978420772694358, + 15.020612549971014, + 14.972244933307831, + 15.028561704600751, + 15.057428149574621, + 14.947835225091142, + 14.892238577080885, + 15.00826742840526, + 15.059904841262513, + 14.942932303604769, + 15.025832072064812, + 15.009654073353087, + 14.969520933960672, + 14.920361066043256, + 15.000045000213975, + 15.02334333399981, + 14.965969471244968, + 14.99758804130731, + 14.944413795047677, + 15.000589640832217, + 14.990551587048031, + 14.99236959109996, + 14.944167627598716, + 14.944497443893376, + 15.01121333923445, + 14.99713353745053, + 15.004080176409854, + 15.00140767442878, + 14.973558521146543, + 15.031964215828081, + 15.026973245929597, + 14.970832898751762, + 14.928839716522786, + 15.04359144905846, + 14.964280197326895, + 14.924233405573215, + 14.998979907449622, + 14.996430225509425, + 14.942679411092751, + 14.942910842227127, + 14.954274454410674, + 14.971065422115506, + 14.994807403953953, + 14.979090325892217, + 14.959000705388892, + 14.910024169647828, + 15.008911599727638, + 14.941235987374235, + 15.010931886274609, + 14.993381016032973, + 14.948227690034747, + 14.966537518779436, + 14.986017357537227, + 15.03866732001424, + 15.012469008649, + 15.082892591749525, + 15.07693759994621, + 15.052969016781407, + 14.998130472865542, + 14.905679835265623, + 14.973072364003261, + 14.95971441271708, + 14.971159247248485, + 15.011956266286868, + 14.940768501733594, + 15.020597231323016, + 15.039331821687012, + 15.056578920704156, + 14.947963728847748, + 15.022173099814857, + 15.016859254576689, + 14.951261536492968, + 14.98204984617799, + 14.99197419908109, + 15.063242698734237, + 14.927039423943524, + 14.960620209223096, + 15.054415394312382, + 15.039980903090608, + 14.98686169708447, + 15.032327825352544, + 14.951300964225146, + 14.92923610294135, + 15.013112096914492, + 14.922739213776527, + 14.984760835692283, + 14.888480315677207, + 14.983408069811798, + 14.914085414306248, + 15.016352205608795, + 15.055338476222268, + 15.008563599463487, + 14.912979568005374, + 14.993853836570759, + 14.970807375637898, + 14.975366796053976, + 15.024890189425017, + 14.988330554480223, + 14.964607039750645, + 14.888434755522194, + 14.97700433001106, + 15.03096128417569, + 14.879650540851834, + 14.974938410588258, + 15.003018915671678, + 14.987856670867284, + 15.012476260271661, + 14.996397363267253, + 14.96540605805112, + 14.9078164970702, + 14.941448692932687, + 15.034901501404589, + 14.9793881530167, + 15.011219299381535, + 14.947124465992191, + 15.013352015929827, + 15.052554485756168, + 15.019152333444625, + 14.951841312362845, + 14.920506131640863, + 15.024637983615746, + 15.000496010888957, + 15.001828984540168, + 14.973663637950738, + 14.943573920157169, + 14.946006097660735, + 14.877941966127164, + 14.913459831111846, + 14.903783384945088, + 14.991761028362475, + 15.031372713857476, + 14.945161214262319, + 14.994096737467535, + 15.078514484086739, + 15.008434193318486, + 15.014922563943667, + 14.986664038075649, + 15.076213031473701, + 15.003500721216655, + 14.95166633076892, + 15.043609764144477, + 14.950316573561356, + 15.002441153861497, + 15.033013221278942, + 14.976359477985731, + 15.02762292191107, + 15.026194340576689, + 14.988612114076783, + 15.025917141428145, + 15.040571140373498, + 15.12378723071273, + 15.019899888435207, + 14.962148260032567, + 14.898052749978332, + 14.885309785137345, + 15.028160965503432, + 15.017532621294501, + 15.009776315279332, + 15.007130953129105, + 15.067779710278304, + 15.086707570845563, + 15.00889832652001, + 14.992814761978385, + 14.94477547233406, + 14.890676900904134, + 14.981165357985354, + 15.055430576449892, + 15.046552424788352, + 15.105435912424266, + 15.064503370873666, + 15.032826033264993, + 14.998133314347331, + 14.95924347367088, + 14.972761016031178, + 14.988952509741942, + 15.071028982187524, + 15.048345052237897, + 15.03025328840525, + 15.065599313106226, + 15.01378656944298, + 15.028117232771692, + 15.062262888564142, + 14.964014927503305, + 14.87569885074856, + 15.008354817724019, + 15.1156978712837, + 15.012072206783333, + 15.024129500042452, + 15.052087227402764, + 14.991149434432693, + 14.982158402609, + 15.07761084261986, + 14.97989841254266, + 14.955517722712468, + 14.960827218218093, + 15.033984225168021, + 15.034977180382995, + 14.973806007375213, + 14.954160593624215, + 15.005988691591881, + 15.046746002777356, + 14.978806368530694, + 14.94961622973942, + 14.933547755055761, + 14.966051284479178, + 14.97918917729995, + 15.000501675542663, + 15.071288238734986, + 14.949653802080809, + 14.96139413292108, + 15.061749173033826, + 15.061313700701502, + 14.972557900888658, + 14.96370211200299, + 14.970225639362166, + 15.032342618940396, + 15.04368878080549, + 15.057488666289675, + 15.090380782288618, + 15.003308664894822, + 15.006789391929923, + 15.012428839579243, + 14.988090270902768, + 15.03128488354018, + 14.998637429000164, + 14.947478976627755, + 14.969548743273545, + 14.985266290843558, + 15.073330364434192, + 15.027771980443857, + 14.970933049626296, + 14.94375271542359, + 14.972279431493549, + 14.926943848442598, + 14.989431227921678, + 15.031146826922356, + 15.079450056448445, + 14.996772291308323, + 14.987351856034147, + 14.957978135424483, + 14.929121498310657, + 14.981128310156958, + 14.96738860081623, + 15.031842890923562, + 15.014173813520165, + 14.981420810809242, + 14.959961725265611, + 14.982102059977283, + 15.024765442967947, + 15.006218715543016, + 15.050827316968771, + 14.97745033919851, + 14.986302648457752, + 14.930312232942144, + 14.945659625789698, + 14.895316800859577, + 14.90218045305529, + 14.994887476095883, + 15.044340630290263, + 15.02562926325821, + 14.925811451772637, + 14.938206403531346, + 14.980392056216177, + 15.009385141080076, + 14.969709467824591, + 14.982736555662493, + 14.986663032921706, + 14.965526542830899, + 15.03692063739262, + 15.014967414770814, + 14.95164448815772, + 15.04889701876171, + 15.07655026312737, + 15.002749620368872, + 15.046963745404605, + 14.964517844096282, + 14.93049587857652, + 14.990208067512109, + 14.99572989831843, + 15.003476217699362, + 15.050267405551498, + 15.003206088270732, + 14.93888579082257, + 14.980755078814159, + 15.001007737239544, + 15.01113869823498, + 14.961930537740818, + 15.07234822096954, + 14.961761980695432, + 14.99324985022314, + 14.93965076848419, + 15.006217363738314, + 14.965878551271217, + 15.035426881764765, + 14.999396414450576, + 15.045960770195784, + 15.010636357627629, + 15.046891328901053, + 14.944718193783114, + 14.98636486659563, + 15.070107045999855, + 14.948436568188253, + 15.023663807155733, + 14.994790733126052, + 14.996072291350183, + 14.988048659778013, + 14.913948727219227, + 14.957947905945312, + 14.999361137679154, + 15.057430595214509, + 15.079691341360325, + 15.074168732801677, + 15.003904803206726, + 15.0351710323992, + 15.010947051855702, + 14.992457835983704, + 14.991721391359143, + 14.995077417374501, + 15.022529240062916, + 14.951383879108882, + 15.08433140444435, + 15.023290485414297, + 14.963414389997007, + 14.964822992596147, + 15.04135312845756, + 15.106707482945001, + 14.97397395529713, + 14.975650857257214, + 15.005706582365233, + 14.93486590827111, + 14.952636503160194, + 14.97082078498991, + 15.009616783891328, + 15.03945458795357, + 15.04526712841627, + 14.994864937253135, + 14.947611141713606, + 15.045367860025639, + 15.103246502088812, + 15.01720661900035, + 15.011928392556495, + 15.026241874032038, + 15.036412312928752, + 15.019666306017417, + 15.01917316504387, + 14.959840585370081, + 14.993438947175404, + 14.875192685399, + 14.995218760053051, + 15.044740574210914, + 14.996359561927648, + 14.993424560546726, + 15.029636018692491, + 15.048687296304797, + 14.980023195310011, + 14.954243529930118, + 14.982593231157177, + 15.007567021338115, + 14.96216411682455, + 14.930907798863236, + 14.931076710881788, + 15.03826939606899, + 15.02616895744718, + 15.01324322314829, + 15.013868662760357, + 15.004965640689722, + 14.996721157682659, + 14.965908271126208, + 14.989653542902316, + 15.048368660776573, + 15.025915519010427, + 15.056964895496629, + 14.995193801615404, + 14.980475631700838, + 15.034490859267365, + 14.979908283758174, + 14.986687494648162, + 14.953949671444462, + 15.02703043273448, + 15.025623320135205, + 15.02278607876863, + 14.981692264437287, + 15.001344710406247, + 14.99109653435332, + 15.065331659033689, + 15.095746263691197, + 15.090324481320577, + 15.027592057145357, + 15.084545359851482, + 15.056851311300482, + 14.94557531775352, + 14.946589737418032, + 15.026692758520896, + 14.979057378248063, + 14.981660194916932, + 14.98960194712423, + 14.941734110443841, + 15.009766826170909, + 15.000526307357038, + 14.915110810274339, + 14.989769341459033, + 15.06299371517187, + 14.990971619857222, + 15.001538855214042, + 14.980633586462774, + 14.994563342037912, + 15.002595750731466, + 15.013192246324355, + 14.97535842268144, + 14.982561596436902, + 15.026506455358344, + 14.985262652756012, + 15.049777717019733, + 15.076192920982018, + 15.031955679532379, + 15.030659019398191, + 15.03402710457101, + 14.962846196949478, + 14.995187339211217, + 15.051895861207136, + 14.966164668537717, + 14.980219693845264, + 15.031965877098829, + 15.028655840180047, + 15.008266300205106, + 14.997343547478863, + 14.96788030409472, + 15.008252301997336, + 15.022451869748236, + 14.990031175552707, + 14.991170500746007, + 15.011734636350491, + 14.971984022794905, + 14.987496549332612, + 14.974320013574413, + 14.96632268556405, + 14.936429710505768, + 14.999379412317758, + 14.973333372236109, + 14.972432841882542, + 15.047252847714175, + 15.018604227372911, + 15.034289579937408, + 15.068419789109367, + 14.962255859187112, + 15.033066302412916, + 15.00324540207245, + 14.981090978484549, + 14.931724097224595, + 15.014807623484664, + 14.96320238762038, + 14.90293700463247, + 14.969904823303935, + 15.075205024981559, + 14.977548549928434, + 15.067502547109882, + 15.072826812430064, + 15.027192777763307, + 15.046753889753852, + 15.023118983863174, + 14.995211650690523, + 14.95119978179885, + 14.987347313274142, + 15.032820071848299, + 15.022640514629119, + 15.05932472311532, + 15.011966052720082, + 14.990097002026078, + 14.989040053773504, + 15.019845179725772, + 14.929865299044204, + 14.96544859625146, + 14.976286514510978, + 14.961181312858729, + 15.017585243713471, + 14.972441837423633, + 14.99912038257301, + 14.978820619122896, + 14.936038216419767, + 15.060423498653874, + 14.994145244831843, + 15.020534035137949, + 14.9940541564974, + 14.963080750540954, + 14.977067443091427, + 14.957111136735207, + 15.043307997728721, + 15.015463839026195, + 14.954122254477301, + 15.027601787037096, + 14.99163866568519, + 15.023494441944196, + 15.048731940307592, + 14.953922108654066, + 14.916815391588171, + 14.975190247477526, + 15.029948390421303, + 14.96007535266995, + 15.048835871589466, + 15.071122741168576, + 15.022433496355951, + 15.004836638963658, + 15.05882633611461, + 15.022970132491443, + 15.032617527112633, + 14.904723574307841, + 14.98984340287508, + 14.98968835390089, + 14.956617707190722, + 14.963250882687682, + 14.931516401925636, + 14.969227951654236, + 14.979426497453414, + 15.04389370479791, + 14.94346837707586, + 14.950476286241152, + 14.995660662204964, + 14.99227611319597, + 14.97726785359358, + 15.05983985928804, + 15.00538878925458, + 14.979471707758295, + 15.063474321289144, + 14.948876830755779, + 14.96646024107449, + 15.037133182036387, + 14.96928123459417, + 15.017727015456776, + 14.984356615231352, + 15.045710474659295, + 14.943782506597307, + 14.936953274564395, + 14.99047989353802, + 14.994767826363898, + 15.020940702247753, + 15.022736846818987, + 14.936678421728363, + 14.952899551120451, + 14.958200439114433, + 15.075535024553226, + 15.011176268361998, + 14.976264535319826, + 15.059469809667364, + 14.997922999898998, + 14.961643057616328, + 14.941231896727993, + 15.008546279758036, + 15.032693395359974, + 15.001573361554325, + 14.998238073450961, + 15.053975845516872, + 15.002344604937694, + 14.95068418988893, + 14.997693497683052, + 14.972721819930705, + 15.018071751584237, + 15.011560072696353, + 14.919200986997906, + 14.989918604150773, + 14.975218121970379, + 15.03396052636417, + 14.926774808217651, + 14.89622116365766, + 15.061871873450801, + 15.035228269939134, + 14.910175557653718, + 15.004679865627976, + 15.006159688292325, + 15.089417990673155, + 15.067197422175202, + 15.061485951214713, + 15.06626760974958, + 15.069843479080617, + 15.041562997913388, + 15.04730137215751, + 15.035883431532787, + 15.02274147625848, + 15.043472582204151, + 15.005611985396174, + 15.047150373217226, + 15.003549583662586, + 14.893832840971294, + 14.883210256604023, + 14.938626911935772, + 14.99483033370253, + 15.005686813025326, + 15.02766184016266, + 14.996011406870677, + 14.974827352472007, + 15.010481583112862, + 14.905849427972202, + 15.016058733156921, + 15.048183236686453, + 15.025824467118422, + 14.994963054319465, + 14.995567929809736, + 15.047060475947609, + 14.943105258289552, + 14.99187641010699, + 14.998885209707684, + 14.962921210347655, + 14.97861497804529, + 14.939323839881794, + 15.020853617073415, + 15.097698933038588, + 15.012961884922323, + 15.02658122129604, + 15.076539978203561, + 15.095998151035626, + 15.036801263927922, + 15.016577279812266, + 15.041669268313724, + 15.026818624990772, + 14.996151435461806, + 14.961255978355624, + 14.948875034117528, + 14.962161237246871, + 14.945780849063304, + 15.030224540108266, + 14.93288047513399, + 14.999989147766781, + 14.944585375954444, + 15.029334219752707, + 15.107570400143834, + 14.992093526401566, + 14.970637985066007, + 14.964595626915981, + 15.008227180919445, + 14.970101891755585, + 15.016572229620232, + 15.010410552542226, + 14.989257721759758, + 14.985449988177624, + 15.039651575073224, + 14.972235776918936, + 14.955711781565798, + 14.915859576831888, + 14.883040255362062, + 14.931204393108718, + 14.944852613045368, + 14.929091073554835, + 14.928959767897465, + 14.93054143143125, + 14.925855556258394, + 14.94761240687792, + 14.909054131227414, + 14.863932886930385, + 14.930786789262903, + 14.923297079658676, + 14.897569898980741, + 14.879591256419301, + 14.82734094369283, + 14.915176303697823, + 14.969457360858112, + 14.902166354010307, + 14.961082027199732, + 14.979091193024923, + 14.966044899151429, + 14.97034333462823, + 14.944394515276477, + 15.012552118545397, + 14.913643687355496, + 14.958345777276607, + 14.965654235040383, + 15.013002836861592, + 14.966921685057743, + 14.926162945058215, + 14.939766400293225, + 15.056851976681155, + 15.028605432654508, + 15.078762310473659, + 15.075915047110245, + 15.027122671154276, + 14.933711226778925, + 14.99401596556738, + 14.980623719331597, + 14.936486965345335, + 14.898451697098057, + 14.930006766496971, + 14.93020468339796, + 14.973104921777294, + 14.942996414438397, + 14.908720426111993, + 14.902616134927996, + 14.952394076735976, + 14.973169400997271, + 14.975063569822321, + 15.063884367089726, + 15.054800554587969, + 15.021984493945157, + 15.037498121292693, + 15.027294732914681, + 15.003452995560004, + 14.996630789933649, + 14.933247509407026, + 15.010484036754479, + 14.994397838041213, + 14.953364017157325, + 15.014883237175729, + 14.988321323465051, + 15.000155880533393, + 14.955666978707885, + 15.026631983318374, + 14.942633823752848, + 14.875893250303434, + 14.92084121727945, + 14.91194096939112, + 14.994798969856596, + 15.110792751261519, + 14.959790876806265, + 15.04912477676733, + 14.983117009130218, + 15.008131052520243, + 15.053532911889503, + 15.054103772163666, + 14.92517053617442, + 14.993350784664743, + 14.986858216941904, + 14.872207786984042, + 14.973078159860135, + 15.037176916120112, + 14.990464633181505, + 14.966045525952751, + 14.948659645751508, + 15.043857614100851, + 14.941409621335339, + 14.931221742924553, + 15.00254463382621, + 15.095656738309971, + 15.051035083549996, + 15.027176113057536, + 14.991652189481426, + 14.938104484947543, + 14.988813018752293, + 14.973669183943588, + 14.954411539490266, + 14.924550954334215, + 14.965503493243387, + 15.021308809065166, + 14.967187491336244, + 14.99886079723263, + 15.025556989052196, + 14.993975385719478, + 15.028378587720884, + 14.986750588238127, + 14.979684947788579, + 15.006297367515831, + 15.017203664855085, + 15.017866176108827, + 14.9092933642039, + 14.989146680687957, + 15.01385003148227, + 15.085947829049061, + 15.029626486345599, + 14.996742583700025, + 14.949032259724406, + 14.855971363264452, + 14.886695270253071, + 15.010900104517148, + 14.971838732301716, + 14.96286240887812, + 14.966215950713412, + 14.975799396208588, + 15.067544300389988, + 15.02634807154414, + 15.00149104055648, + 14.933617249914327, + 15.110446375469014, + 15.004494749653622, + 14.999909508061593, + 14.949622067543643, + 15.057109243613466, + 14.931606716964206, + 14.961192237479793, + 15.030669647608862, + 14.995508588186542, + 15.038423824382837, + 15.005080504884804, + 15.037336625168908, + 14.993020092728036, + 15.016724432505866, + 14.908336254956644, + 14.979297741484876, + 15.003857256160634, + 15.026429856636899, + 14.938324826975904, + 15.006906803126807, + 14.940787568078008, + 14.97793455340222, + 15.063303790472395, + 15.067750065692262, + 15.046816273724328, + 14.911641941917024, + 14.95817401982846, + 14.948832348015607, + 14.908423177685183, + 15.039653750495699, + 15.043536478122721, + 14.97593870770725, + 14.96151810942877, + 14.934267460760843, + 14.930670468890302, + 15.048425401311281, + 14.998133414521039, + 14.95657384821016, + 15.013553717212641, + 14.97632966128538, + 14.988587524741037, + 14.922783276994105, + 15.00912495797798, + 15.065123447196392, + 15.050568977941774, + 14.97328966747738, + 14.976785830246943, + 15.006474170611959, + 15.026645242746348, + 14.992370349637396, + 15.01789608220918, + 15.10079925197904, + 15.049928906129203, + 15.123672310541583, + 15.059668460624433, + 15.026025173284156, + 15.05040280790088, + 15.064948068317698, + 14.971804526637182, + 15.017771682385776, + 14.946090513631725, + 14.965924028509015, + 14.938658621859204, + 14.961822754138765, + 15.030422332285145, + 14.984716431727648, + 14.995144442779077, + 14.986462023049608, + 15.01397704822996, + 14.970777163411416, + 15.011836563364753, + 14.957376558760009, + 15.081740937575173, + 15.01498070839771, + 15.02427533740088, + 14.971724246607213, + 15.016309780640904, + 14.994983192159294, + 15.063397469516225, + 15.047509582120147, + 14.91951223439576, + 14.97801896461843, + 15.037086273140531, + 15.014043362742754, + 15.053391831302461, + 15.065322577469406, + 15.032122718127704, + 15.015180593890971, + 15.027425899255258, + 15.076702384073489, + 14.995661788518968, + 14.973873356728706, + 15.031603968694533, + 15.037609685398264, + 14.99022701065986, + 14.971131895147733, + 14.899744445733862, + 14.981278983871764, + 14.994744098472838, + 15.00461445057097, + 14.96336969851436, + 15.018928128493428, + 14.978797657382852, + 14.936794676786251, + 14.95218789074343, + 14.95857510743011, + 14.921915360907464, + 14.932805382663952, + 14.957474771759031, + 15.00059090648569, + 14.907965372842364, + 14.976629576911245, + 15.001303309465014, + 15.021400410195673, + 14.983402788440154, + 14.924465426612167, + 14.918947065688016 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 0", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 14.918947065688016, + 15.026968067170376, + 14.927192481793549, + 15.008585686873861, + 15.027137167640829, + 15.015769679941261, + 14.986052582548583, + 15.043831337487433, + 14.958791258433651, + 14.96216082566016, + 15.007512757617445, + 14.993065418593574, + 14.980787830438333, + 15.028206291967017, + 15.0425841978482, + 15.071313474863194, + 15.011878573945939, + 15.002158344959476, + 14.996517122376606, + 15.052804320628619, + 15.076781275929386, + 15.032884514738905, + 14.99053073969321, + 14.9661089206329, + 15.004962007499435, + 15.04748003488587, + 15.032123552388143, + 15.02232655509855, + 15.042666421263544, + 15.095843633502477, + 15.025175268058886, + 15.013754193626637, + 14.989550001718678, + 14.990389154581502, + 14.875179874305168, + 14.953250967991801, + 14.946739896258054, + 14.970357931467198, + 15.011610776528938, + 14.95034838373556, + 14.977344075544275, + 14.974904713464655, + 15.04599142977533, + 14.99651611209209, + 15.095378633035251, + 15.027761384586004, + 15.05335327666431, + 14.965829339884028, + 14.977798291876166, + 14.976722731522853, + 14.98445618483818, + 14.995192891449804, + 14.999653841277915, + 15.014081823858865, + 15.017864690265354, + 14.938320389841511, + 14.940534726819662, + 14.945355612234165, + 15.082981508745346, + 15.038617305353325, + 14.979427641705527, + 15.062980072299768, + 15.009030866995012, + 15.008139907260004, + 14.929066054155122, + 14.907421332860586, + 14.968413423486734, + 14.94576192309167, + 14.921687482507888, + 14.938752185152282, + 15.033965848019742, + 15.031322997529067, + 15.041365426284104, + 15.013851984706616, + 15.006947114242779, + 15.055106572336774, + 15.001950766473831, + 15.004923149225354, + 14.938680415037565, + 14.9740548265972, + 15.015132437140704, + 15.058052151561608, + 14.95177387794541, + 15.030598056853227, + 14.94060232556872, + 15.016932895701807, + 15.039258493919442, + 15.004584230587065, + 15.004105119950978, + 15.092411412007602, + 14.958953459449988, + 15.036232104815353, + 15.053161072854722, + 15.066501725335495, + 14.910996922106087, + 14.95510047488302, + 14.933996626997091, + 15.011095338060485, + 15.056738700603601, + 15.041176269069643, + 15.034226525112917, + 14.995037781710018, + 15.004310495045369, + 14.930522023696904, + 14.927392111256632, + 14.965330302363439, + 15.052461317941926, + 14.995179219092616, + 14.912777881759077, + 14.95669445929741, + 14.96442870685401, + 15.026630428310481, + 15.045558726986458, + 15.01543032021382, + 15.039003122463562, + 14.97912455712699, + 15.001677769905758, + 14.963869690619369, + 14.92298371349725, + 14.943312350447712, + 14.979024846489853, + 14.996247113477342, + 15.038550058849768, + 14.959335005218023, + 15.006302509624852, + 15.008659454860783, + 15.010061528504869, + 15.034134918316472, + 15.0221405828902, + 15.072006581549488, + 14.923696774254314, + 14.922188934127504, + 14.989711681855292, + 14.940668285497932, + 15.024263772548956, + 15.016024602262714, + 14.998222063691749, + 14.973239532118809, + 15.056955277053593, + 15.075739883970101, + 14.940720869453449, + 15.074848186831737, + 15.088752471442124, + 15.003371095765987, + 15.050060385862043, + 15.015958618348062, + 15.084319788719544, + 15.000798175986404, + 14.965607944604773, + 15.00382449541384, + 15.030678614577972, + 14.971976959056725, + 15.031226017834285, + 15.059008890102707, + 14.967526762808328, + 15.036987737770707, + 14.942077838971253, + 14.950229256904446, + 14.960307190506903, + 15.07220799976868, + 14.98115230871483, + 15.04370962549509, + 15.00761505609195, + 14.998129043131332, + 14.944641950372725, + 14.918176467061315, + 14.897744277398893, + 14.945960493120756, + 14.943894214801354, + 14.90118957887255, + 14.964568084917994, + 14.959428628388808, + 14.977781919199867, + 15.042253362060666, + 15.009055260631147, + 14.974684700044204, + 15.06788238754852, + 14.996307609708364, + 15.013612121707624, + 15.093338682142747, + 15.108874507922877, + 14.969760756449745, + 14.963515846058257, + 14.943613559729203, + 14.98077631646816, + 14.933221067151562, + 15.030821128716626, + 15.073975459450855, + 15.155285816654184, + 15.065329187900614, + 15.015758053356771, + 15.04065927845168, + 15.01857226723169, + 14.970776039537611, + 14.99824899379435, + 15.039983941655805, + 15.020056786195152, + 15.113741747985284, + 15.019904963608187, + 15.029240220069132, + 15.022469300727709, + 14.905294853387973, + 15.021833251169793, + 14.972460000494193, + 14.998183741121805, + 14.93993819454681, + 14.980397346678334, + 15.03657132324399, + 14.962512272425396, + 14.981915562017448, + 14.96516130748748, + 15.052779290646656, + 15.047359837328084, + 14.993807321675305, + 15.121864813115923, + 15.070591450835286, + 15.025387124315184, + 14.981099975938227, + 15.057112928824175, + 14.969246357185986, + 14.991573006002483, + 14.997431372412617, + 15.029106506071908, + 14.995934141694411, + 14.949537417898593, + 14.973136294432905, + 14.957441678222398, + 15.044052888940389, + 15.00975880979175, + 14.964139778795243, + 15.025742920444424, + 14.952083423659337, + 14.894992776000665, + 14.987692687058548, + 15.014994897763875, + 15.049484336776782, + 15.014752686644643, + 14.907626596941585, + 15.01972483267973, + 14.898420617596326, + 14.96694713841224, + 15.022621115423878, + 15.03329414330091, + 15.061502275197853, + 15.033616354849418, + 14.995102518981222, + 14.983106255586819, + 15.006638997054395, + 14.95263284931216, + 14.941191444069382, + 14.990640946822971, + 15.003192205148887, + 15.019849670987568, + 15.053867343907749, + 15.052568737530825, + 15.111711499278632, + 15.048771693146973, + 15.008723637027611, + 15.066723070438679, + 15.02938953116572, + 14.953616954665167, + 14.890553332669514, + 14.928426751249475, + 14.983436571048253, + 14.998488089364146, + 14.960936037398831, + 14.994882011626741, + 15.039106528512393, + 14.938788637234001, + 15.075291616173224, + 14.993240808490825, + 15.022503049914466, + 14.967061677200379, + 14.95337281760304, + 14.941050133094132, + 14.961892849682469, + 14.942418526331203, + 14.95189339602486, + 15.042745779946271, + 14.996652889191003, + 14.98494153043804, + 15.049071057574537, + 15.076047936038249, + 15.048132607300479, + 15.017190833186971, + 14.997975244027623, + 15.027625042552842, + 15.03555464324942, + 15.031882071841194, + 14.999374765383926, + 14.96591243870348, + 15.059855311309482, + 14.995455097112615, + 14.975000313053819, + 15.006727124193006, + 15.044540820360286, + 15.022018492293856, + 15.090177707703832, + 15.085330570411278, + 15.08016208369475, + 15.116598150600883, + 15.104773714428468, + 15.158113615924147, + 14.993318370628772, + 15.014724742533515, + 15.021951303558636, + 14.986614077470062, + 14.992967530946132, + 15.036859784248106, + 15.032458321184539, + 15.06755723030664, + 15.015699233762286, + 15.021990306618896, + 15.033563950022947, + 15.036738634483621, + 14.920018324148131, + 14.947546973243817, + 14.959515332108266, + 15.031275893093287, + 14.978739423942969, + 14.979743730835473, + 15.10635423512605, + 15.015589134029609, + 14.960370136381982, + 15.02975643776175, + 15.047148363604187, + 15.037261944775093, + 15.029369072810498, + 15.033353595542517, + 14.948589386736593, + 14.958076524393007, + 14.96467190810386, + 14.972843198673601, + 14.951920773485998, + 14.919641390875938, + 15.007886177275118, + 15.079080242799751, + 14.972116578360714, + 14.98689832259204, + 15.051800562854247, + 15.085681991342703, + 14.97955312955105, + 14.933290736729358, + 14.993014192192817, + 15.019734693914609, + 15.071411037525056, + 15.033545786121918, + 15.036041714635102, + 15.021460550879524, + 14.955798973553126, + 14.99232005539908, + 14.959268935033164, + 14.989908579835609, + 14.953782977608052, + 14.98979970005867, + 14.9493325753026, + 15.02448684895998, + 14.964471357659129, + 15.060163104466463, + 15.024257447087047, + 15.000791597243815, + 14.997221177446757, + 14.989660936992669, + 14.982150119676264, + 15.030324812212609, + 14.98567964974445, + 15.038046044966784, + 15.01705907579529, + 14.95827305987546, + 14.991150891678611, + 14.973098678244899, + 14.999787681112995, + 15.047374382010414, + 14.956995902816777, + 14.983715768746515, + 15.014098129825719, + 14.99072289276565, + 15.015213910148644, + 14.991637155615754, + 15.074486246918031, + 15.011472764515869, + 15.020407071901474, + 14.976001729079192, + 15.026669757166854, + 15.025064058120394, + 15.001341236570727, + 15.015422719507697, + 15.050322184513883, + 14.978694304105424, + 14.917426654913292, + 14.982442215860889, + 15.034987568011875, + 15.002104602810013, + 15.016832124665795, + 15.083982608392072, + 15.003097036292026, + 14.93666775848615, + 14.97561234380213, + 14.90176417866376, + 14.944787581462988, + 14.981815909424823, + 14.98116275531577, + 15.014162897785244, + 15.024978455239223, + 14.938737163538075, + 14.949836432567242, + 14.956481821749355, + 14.975503778948843, + 14.934215292770466, + 15.090273896319175, + 14.986038977899609, + 14.965884259946435, + 14.965014587311531, + 14.958977064056043, + 14.977766162338852, + 14.948381902888292, + 14.994871023876753, + 15.016443404009252, + 15.021084167784094, + 15.0101340500176, + 15.05777883664421, + 14.943782518292045, + 15.058505745924787, + 14.988046699451957, + 15.024396796607705, + 15.007985019995019, + 14.936930127982988, + 14.992718872926547, + 14.98149646761146, + 15.01785802919653, + 14.977870747651801, + 14.974316030624797, + 14.912959364412725, + 15.069877621895158, + 14.912648096305073, + 15.004238603918363, + 14.978964845446127, + 15.016551543736808, + 15.030707469009327, + 15.038361648490573, + 15.044645128242779, + 15.046846078853276, + 14.953886863560033, + 15.032425494557891, + 15.035546713845456, + 15.001910089804745, + 14.982643534282225, + 15.033805343099399, + 15.018002026891702, + 14.972500761588249, + 14.979546698439096, + 14.954698881039754, + 14.960503530154519, + 15.025378090474554, + 14.99124405166983, + 14.969238042316338, + 15.004470767124836, + 15.07273707472608, + 15.010698856097006, + 15.053874072857033, + 15.075082401307483, + 15.005638198090194, + 15.003884226770298, + 14.953232027996437, + 15.022840087692973, + 15.040249898871995, + 15.018339474786963, + 15.012099808824148, + 14.913020389709027, + 15.068670438818248, + 14.957909597071385, + 14.977920819372365, + 15.008177617975525, + 14.988736398979613, + 15.004572251693354, + 14.921305106601995, + 14.958460701975595, + 14.969186479609718, + 14.994376055718941, + 15.004310014930406, + 15.034734134776263, + 14.966267667776913, + 15.02195965877304, + 15.036223832908888, + 14.985252975243377, + 14.992081892642416, + 15.019537295472837, + 14.97912677171048, + 14.994278974429443, + 14.972547765519769, + 14.973338844454094, + 15.03716308802303, + 14.930677931451378, + 14.937047194964718, + 14.888309397293453, + 14.945811126629904, + 14.93413213531271, + 14.94083300170213, + 14.891494706370473, + 15.007818511555627, + 14.99077087464061, + 15.048787704761136, + 15.08029866816059, + 15.104659342950786, + 15.062923526301143, + 15.111044114045445, + 15.01288768225867, + 14.94756775096326, + 14.955970537640036, + 14.912262250748542, + 14.979103587848401, + 14.965707131891827, + 14.989711537271848, + 14.904784127077976, + 14.96142911808514, + 14.978064349053023, + 14.998279028884358, + 14.998619512934768, + 14.963494523586103, + 15.026247974264683, + 15.016107318084783, + 15.001526355760594, + 14.975436438504929, + 14.960378398457799, + 14.981821091124772, + 14.944325978891856, + 14.996039093271204, + 14.938881820725415, + 15.032676573800291, + 14.949558393000173, + 14.968901024979965, + 14.963131759229753, + 15.00482079219567, + 15.039804453849646, + 14.979411995736847, + 14.983621515902755, + 14.928082569934363, + 15.001803783208205, + 15.031946151587853, + 14.968784210999603, + 14.978668985770149, + 15.022266080623055, + 15.038968905508193, + 15.005182282507407, + 14.95019978007993, + 15.056769182272793, + 14.925064118681025, + 14.922539704369322, + 14.970678147134164, + 15.016764035143435, + 14.945275638310036, + 14.982259373160856, + 15.107514668552676, + 15.055870408532671, + 14.98601731495116, + 14.981658505922114, + 14.895682485188722, + 14.896407749903197, + 14.989946285089255, + 14.971067770301547, + 14.962319058963864, + 14.978564467656476, + 15.02693905541132, + 15.050502131108075, + 14.985303858171534, + 14.97898658167422, + 14.962563392134443, + 14.94046654074534, + 14.938079239489074, + 14.94111106460188, + 15.001357458389144, + 14.941156561970528, + 14.945067419102173, + 14.988894646726404, + 15.013268098015649, + 14.979446326343423, + 14.997179950746332, + 15.011671730911715, + 15.049843855179473, + 15.014323724931538, + 15.018138231586162, + 14.99350006519646, + 14.94867106039259, + 15.015785252996212, + 15.040548370774307, + 15.046353185597038, + 15.028130537833704, + 15.042334240578853, + 15.04335314814923, + 15.094943754096565, + 14.916542256193688, + 14.926189866660728, + 14.934458312313412, + 15.031322329221732, + 15.01831154861333, + 15.02620527862398, + 15.067584239392797, + 15.029163335533465, + 15.122709189088964, + 15.033204941780244, + 15.068899254475552, + 14.995607582378591, + 15.008003476616244, + 15.026336800869576, + 15.033486335660074, + 14.985055421212548, + 15.006991669068213, + 14.989962533339895, + 15.063888502356656, + 15.017404952777142, + 15.085588069528585, + 15.01863753137501, + 15.021162390186186, + 14.992115330188017, + 14.961692541539357, + 14.997675656059034, + 15.02735804014378, + 14.930994980867379, + 15.008238439078147, + 14.956538660920899, + 14.947091178751737, + 14.941888756295446, + 14.980242615696582, + 14.969204462829403, + 14.954931877340853, + 15.000843434812284, + 14.953243093561701, + 14.941265203923315, + 15.018023708168865, + 14.959320193420796, + 14.998971417417591, + 14.983435985298543, + 14.991954892007543, + 14.972924021758764, + 14.994733695931494, + 14.924465160565061, + 14.992303725491398, + 14.92879728849443, + 14.97813242973815, + 15.011717448494045, + 15.076603733473545, + 15.036267284813642, + 15.042884734246691, + 15.010094442843705, + 14.997950878770421, + 15.073257362580533, + 15.08844041534107, + 15.010524116563788, + 15.054244619244002, + 14.952715968737818, + 14.883707930737536, + 14.91817703043922, + 14.879071592871425, + 14.984757151184802, + 14.994931236430896, + 14.936190121307105, + 14.958679601810676, + 15.023867910461634, + 14.96377464908783, + 14.9673048529821, + 14.976134678311347, + 14.957818257033786, + 15.04795807145369, + 14.919582377542419, + 14.925264777991332, + 15.003940384768608, + 15.055828662979971, + 14.980706527312703, + 15.061470465404666, + 14.931928078324736, + 14.97907674745489, + 15.01610867344913, + 14.979563934240744, + 14.980526245322578, + 15.00480812237471, + 15.025554816459426, + 15.003021332523918, + 15.016612110432957, + 14.976534217056312, + 15.058263264855645, + 14.998491556983026, + 14.9561025403249, + 14.889579856228131, + 14.944169126085205, + 15.052015766669225, + 15.033331731289785, + 15.032785888409697, + 14.98512663580151, + 14.979754822469785, + 14.870887307161961, + 14.969519148198728, + 14.965864590629863, + 14.957509879322833, + 14.984267284350812, + 15.019268550735797, + 15.061192417598406, + 14.991914308839352, + 14.964025980834192, + 14.97218865698878, + 15.024528226718408, + 14.962954565116727, + 14.93776886080971, + 14.990242009995217, + 15.023004058370837, + 14.956628746707848, + 14.960867888030199, + 15.005786049188588, + 14.935807397146306, + 14.978525688034255, + 15.015568633177912, + 15.02986165403214, + 15.043621771540671, + 14.997594014389144, + 14.97872062441827, + 15.033516760672645, + 14.994098600461925, + 15.032327943131698, + 15.027050851173238, + 14.989667322726396, + 15.012990775326672, + 15.048365943246276, + 14.974604028573197, + 14.968795282237695, + 15.014600845602923, + 15.0193197664625, + 15.057160909722189, + 14.973835667868617, + 14.994380056340777, + 15.090584273385726, + 15.03238821915612, + 14.940934737809748, + 14.966130462443624, + 14.904433966286545, + 14.937797246609499, + 14.992654840609697, + 15.013522774771202, + 15.016304412978208, + 14.998985376878549, + 14.95282504764297, + 14.976734124812284, + 14.983407629752572, + 15.037544882925065, + 14.902602662489654, + 14.861391912807154, + 14.8670060609251, + 14.978378796578767, + 15.034514573065294, + 14.958737480515945, + 15.020400064877974, + 15.021637522730265, + 15.057082970165, + 15.07780292881546, + 14.989402378504044, + 14.877285975906235, + 14.916246924439259, + 14.931970280305556, + 15.017544792269064, + 15.019246998465785, + 14.891861306451181, + 15.058129235123944, + 15.064490121264624, + 14.994596145322216, + 14.945401963123926, + 14.979057594191747, + 14.97956605854231, + 15.04553816877346, + 15.04664672645638, + 15.02133212757054, + 15.043074864458122, + 15.07027184872636, + 15.02789871765634, + 15.055386031277534, + 14.979880351894233, + 15.002960023663958, + 15.008543809188728, + 15.002155594551141, + 14.982276628090839, + 15.090511824553143, + 14.987929467939303, + 15.035563660656479, + 15.02912528971248, + 14.990998824551125, + 14.92009798746259, + 15.00788075822241, + 15.043922231413116, + 15.019390688809418, + 15.062775757317388, + 14.978259370024858, + 14.97975703664518, + 14.988348019209287, + 14.987081272190956, + 14.965813825154711, + 14.984123638642778, + 14.938431321555568, + 14.988007585782764, + 15.129537679733078, + 15.001137630748609, + 15.01561053055507, + 14.999074721167974, + 14.983320618356881, + 15.040852404221393, + 15.032530975789417, + 15.017816092538236, + 14.988309214402332, + 15.06914904717969, + 15.0018161874128, + 15.043354262631642, + 14.991729662444369, + 15.014693983289243, + 14.947431903824187, + 14.953466002096144, + 14.912078301742623, + 14.987624960086713, + 14.96692557360154, + 14.879377142465, + 14.967139692109715, + 14.964199973188611, + 14.873868131580785, + 14.873544298607376, + 15.012588524933214, + 15.00878132150623, + 14.981992082460101, + 14.978629182014238, + 15.10166766728346, + 15.02625590603044, + 14.888773985294893, + 15.092354605756094, + 15.093135291844678, + 15.083240477026365, + 15.006724984917772, + 14.990900146115164, + 14.948108643761522, + 15.062439901981202, + 15.053181032778808, + 15.034969646631561, + 15.055680949256688, + 14.939229896395908, + 14.950855580188504, + 15.00819852318152, + 14.906254566589254, + 14.964309743310638, + 15.00154591218471, + 14.980639356755622, + 15.04204931282232, + 15.000982853583139, + 15.048151097719773, + 15.036961714963942, + 14.953560004675163, + 15.007961384241078, + 15.005100958018772, + 15.05564201015517, + 14.989888571433145, + 14.993344020625784, + 15.007456150353859, + 14.942706613945742, + 15.027197040979278, + 14.992556276994266, + 14.95581578858821, + 14.983964772078295, + 15.001572711180343, + 15.01737411638524, + 15.00588480652553, + 14.999467553182686, + 15.03945236996049, + 15.037052575025541, + 15.015767986263086, + 14.993612350781493, + 14.99969044769016, + 14.966020342263294, + 14.92666689007978, + 15.044141660887986, + 15.064470008893913, + 14.99372232315415, + 14.931149119296288, + 14.973427773242573, + 14.952720998239592, + 14.992753999123032, + 15.010097850088464, + 15.031859878216192, + 15.027342949642808, + 15.003176040892148, + 14.993011876356308, + 15.028431499105723, + 14.968984019733782, + 14.99952329508249, + 15.046489825481405, + 15.047172892246264, + 14.992379681943408, + 15.042381031685764, + 14.998107311655366, + 15.006469041306673, + 14.981724918832318, + 14.996184426456214, + 14.99336150032763, + 14.993773591214403, + 15.014486267044205, + 14.997422850490652, + 14.93255208044485, + 14.986010175947047, + 14.962313027846642, + 15.063059196032134, + 15.017932925536288, + 14.93809153615278, + 14.988988804095447, + 14.915560355301405, + 15.051658442155055, + 15.074287503214862, + 14.986004752055626, + 14.988818622865434, + 14.934161972845253, + 14.925719239281968, + 14.946679094721457, + 15.06676420887742, + 14.973881122411612, + 14.96609202886315, + 14.9921900568548, + 14.967438660322406, + 15.022063455650194, + 14.954736648792439, + 14.994425641039701, + 15.02486253023985, + 15.045678376670594, + 14.985021642465739, + 15.039339163927124, + 15.003521058685687, + 15.012314258554392, + 14.999039572141582, + 14.956833188903284, + 14.965122804122414, + 14.966989534805109, + 15.063607852241255, + 15.05187806236915, + 14.98632453573918, + 14.948777224089508, + 14.985070149990259, + 14.952334266077509, + 14.964746158006974, + 14.934974910106467, + 14.964629137502827, + 14.991552886041502, + 15.05824364022842, + 15.042870791087674, + 14.973860809961296, + 14.98724953570751, + 15.033297692684684, + 15.046716205395775, + 14.993721502530127, + 15.016831688087237, + 14.977059235596617, + 14.965402906887746, + 14.888756234775268, + 14.956802884906764, + 14.89833870083347, + 15.080294966062308, + 15.071211395532478, + 14.993477773878553, + 14.991541901100517, + 14.886392747658459, + 14.954418515510605, + 15.055455005696379, + 14.994894504220271, + 14.985951613488623, + 14.982941455077258, + 14.98699428054124, + 15.013621348180013, + 15.006594805933306, + 15.015891262718513, + 15.000013504776167, + 15.044637452321354, + 14.985646149197457, + 14.972795043911187, + 15.046152211397818, + 15.026679356446769, + 15.001828324968173, + 15.03846687880021, + 15.007085356613693, + 14.974785299804436, + 15.017753194981891, + 14.974601797498943, + 14.964338466501456, + 15.016072637847564, + 15.034297001916238, + 14.985153736129565, + 15.00720424982333, + 15.040002088843895, + 14.98616803478127, + 14.997951118478982, + 14.964973527672164, + 15.017398963028262, + 15.005395746629288, + 15.002324591582848, + 15.01275662537894, + 15.080457760209036, + 14.99796374605245, + 14.94048427244716, + 15.005983398231141, + 15.006085362977753, + 15.041868296518684, + 15.071539281243053, + 14.959643203123875 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 1", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 5.259574172833863, + 9.438125167031476, + 9.870059746074222, + 9.957439734075589, + 9.949446136221091, + 9.984291475730075, + 9.963392610682043, + 9.965195613875391, + 9.959674126444053, + 9.943011012061824, + 9.98046625075204, + 9.968312074773076, + 9.954078095741233, + 9.971238398240683, + 9.902246529047787, + 9.905191397716658, + 9.977985105127887, + 9.978227781377173, + 9.965111914531088, + 9.929865825375815, + 9.931162581959427, + 9.948319133578092, + 9.948061481186373, + 9.97261957100872, + 9.941633106435, + 9.940713701227985, + 9.966591188219082, + 9.99898974655466, + 9.943827942571465, + 9.957984253124396, + 9.942678568291498, + 9.963173280095816, + 9.940000468201598, + 9.962751542978024, + 9.967717096801344, + 9.973857469689335, + 9.903362615737844, + 9.907083704992742, + 9.932352576081025, + 9.95409551658381, + 9.959491611709975, + 9.957695681304589, + 9.974405238983069, + 9.968994428359487, + 9.998394217825151, + 9.971153602240683, + 9.94395633982443, + 9.932118479200302, + 9.91536183336461, + 9.953012994095733, + 9.935346050081233, + 9.933720959011328, + 9.95275866471177, + 9.967016911102407, + 9.914987503213554, + 9.9428201513321, + 9.99398097216529, + 9.942146669668205, + 9.907538829179822, + 9.88494908364394, + 9.905028790632363, + 9.933188717506594, + 9.948227113928025, + 9.964518948129964, + 9.923384676705199, + 9.936987082014415, + 9.918842305274334, + 9.931295407458165, + 9.940097796719101, + 9.929796378463468, + 9.939540350872914, + 9.96026176568876, + 9.966712926073034, + 9.971537328063874, + 9.985573733830515, + 9.981107971851142, + 9.962814972298666, + 9.94243910194699, + 9.94865476577822, + 9.982061970323969, + 9.932414787617224, + 9.911090999779917, + 9.92220270148507, + 9.94426152069187, + 9.960276899551864, + 9.956063290688023, + 9.931525220932956, + 9.931123791861772, + 9.94923424000958, + 9.93274211769205, + 9.940775190406509, + 9.956877494086129, + 9.904950388851505, + 9.93504430532199, + 9.930829967900337, + 9.92556693402041, + 9.985600644772012, + 9.966615909078339, + 9.980635889588982, + 9.945393318962216, + 9.959125039597804, + 9.988100026562197, + 9.969342971022373, + 9.923169203712849, + 9.908402939594152, + 9.919969780763484, + 9.93154594618106, + 9.941613188272509, + 9.926055224055167, + 9.921064652092387, + 9.919476205882125, + 9.940789478742385, + 9.982945564745881, + 9.966812053587372, + 9.957055883515586, + 9.984453443370477, + 9.966192912732295, + 9.938660178099257, + 9.949414523780819, + 9.929246579512732, + 9.918740183636514, + 9.918050786309621, + 9.881873321474668, + 9.864589414684584, + 9.945536542433638, + 9.938210074180105, + 10.015458960035009, + 9.968046434694273, + 9.935631804066801, + 9.944459762979195, + 9.930015773831979, + 9.92107171029024, + 9.92296121511714, + 9.931089998660433, + 9.992084390059746, + 9.936019035095123, + 9.941443852284578, + 9.956418225931117, + 10.002562176102117, + 9.972059547803012, + 9.972488989745115, + 9.944540292626382, + 9.947352947741855, + 9.947795751772647, + 9.935946402632057, + 9.915332685712478, + 9.946144464963727, + 9.961959773271984, + 9.925875427353336, + 9.948030084919205, + 9.954005576352943, + 9.931020884374531, + 9.977998710751537, + 9.944953569239468, + 9.91153070741634, + 9.971013461954731, + 9.951476313197613, + 9.96765979273551, + 9.94331625314439, + 9.946291616951477, + 9.970154369053834, + 9.978852947001485, + 9.959305128287625, + 9.958465476393588, + 9.98297398057908, + 9.96019394369073, + 9.935001477652285, + 9.917672575055603, + 9.89981281000178, + 9.922983170323686, + 9.972100222915342, + 9.963590684044087, + 9.974832443268474, + 9.951923612751916, + 9.95928007637092, + 9.94111062162055, + 9.936857904276607, + 9.982275066263005, + 9.954464225308735, + 9.926923245304652, + 9.89253909176667, + 9.891574820153291, + 9.944411067874602, + 9.943688330315059, + 10.003691744843058, + 9.991135513831773, + 9.969124965327387, + 9.964480773502977, + 9.951066274837801, + 9.927051935792838, + 9.947067826936172, + 9.955442490112468, + 9.905337670522197, + 9.891041081085291, + 9.940259228353161, + 9.93473173730409, + 9.962012141798832, + 9.988685313046782, + 9.90257830046431, + 9.896369516979027, + 9.953696447329827, + 9.971187802781646, + 9.96013730947074, + 9.943830317122687, + 9.949904819470548, + 9.917110169442243, + 9.893997996743146, + 9.921651805975591, + 9.922964780661795, + 9.961892564789244, + 9.93065577115314, + 9.928979860889655, + 9.96314369612051, + 9.946475590353907, + 9.94707079966038, + 9.99326748457674, + 9.986046520127342, + 9.948385270585135, + 9.953188991511766, + 9.939572709416835, + 9.945741785606801, + 9.919109974618214, + 9.932522143982492, + 9.983491886453109, + 9.963540146595534, + 9.906073191945397, + 9.903677878438831, + 9.909942923863627, + 9.929603583151888, + 9.946883284216451, + 9.94480444447792, + 9.958296186915712, + 9.981369726565697, + 9.943267696788629, + 9.970891670206424, + 9.936094055802672, + 9.919106418901295, + 9.95743227854209, + 9.916136563610044, + 9.954669568929564, + 9.931879464302034, + 9.950398982001337, + 9.918095752703097, + 9.926858608133891, + 9.95870542773457, + 9.97768786687826, + 9.927943052393722, + 9.931080125159696, + 9.98685819735727, + 9.99221479513895, + 9.988952261339426, + 9.918525205723693, + 9.953982317654814, + 9.969790429326576, + 9.976705204007716, + 9.979883109742897, + 9.940158072440358, + 9.965320369312218, + 9.950895338822098, + 9.92427484658913, + 9.934174755583156, + 9.96020216886432, + 9.987303701576693, + 9.937353728782648, + 9.950735583413225, + 9.94263209495624, + 9.939817095601672, + 9.902184638954171, + 9.95527703058532, + 9.97779551768793, + 9.979741321137707, + 9.967561142737372, + 9.925918381679544, + 9.964049808595076, + 9.94943528756807, + 9.948317844504405, + 9.95192934710046, + 9.94232186653158, + 9.944915459437324, + 9.916275423018703, + 9.917983151319335, + 9.933372401281959, + 9.95756713101679, + 9.964445186186452, + 9.96033913932457, + 9.939626108692186, + 9.908608317803534, + 9.94669253772985, + 9.9408706587307, + 9.95280489947106, + 9.938872528441813, + 9.948409504135958, + 9.946672512507785, + 9.930117175016282, + 9.968663910734943, + 9.987401290085408, + 9.956511610930603, + 9.978514663570351, + 9.969495563938285, + 9.945704777468011, + 9.95189499608617, + 9.945569290296682, + 9.97465563795921, + 9.958756045626671, + 9.967439565595132, + 9.973946287553224, + 9.95100422326551, + 9.964611082794551, + 9.939275263567609, + 9.972108557611415, + 9.90191903324094, + 9.945095815121554, + 9.90589038226598, + 9.923165097854518, + 9.910539637390592, + 9.901594110938213, + 9.894265967746378, + 9.878583384918809, + 9.977046303187457, + 9.980358689032515, + 9.980819247891448, + 9.989512492210693, + 9.992014041877592, + 9.954032537980964, + 9.970995125283467, + 9.94442338171162, + 9.969211902149935, + 10.015665088579809, + 9.959123750058644, + 9.95860866946147, + 9.947131862058226, + 9.965108375633775, + 10.028511353672503, + 9.97397050969994, + 9.949602974747776, + 9.9624552309655, + 9.94924156072583, + 9.935089742925552, + 9.93114866073612, + 9.930658284015514, + 9.916512546182146, + 9.958353282171018, + 9.967252063924187, + 9.959264520518367, + 9.922784535935333, + 9.924031881197811, + 9.893487715062356, + 9.954574118263361, + 9.950897297111387, + 9.93431056291999, + 9.938474421508287, + 9.930883946075282, + 9.938209678889772, + 9.937972746743698, + 9.937014949231086, + 9.916701647317002, + 10.008758364260538, + 9.995976714835873, + 9.973464305524049, + 9.96691064097849, + 9.965197638141582, + 9.941820635755857, + 9.981988633821405, + 9.974814677429432, + 9.977852059845155, + 9.967438625233564, + 9.975539977827212, + 9.980132493961564, + 9.94695078974804, + 9.971509670912797, + 9.964322145829401, + 9.970820275587704, + 9.95478015800037, + 9.936857114250172, + 9.945066984169229, + 9.904322243535388, + 9.926634299530066, + 9.958042948795653, + 9.969046652891775, + 9.971813098948985, + 9.986108119132568, + 9.982652928759345, + 9.996108228530865, + 9.966959928732374, + 9.96867292954506, + 9.974447679229925, + 9.98187144813746, + 9.94439864030533, + 9.94077362811268, + 9.976165079815443, + 9.947343644688408, + 9.942799617087902, + 9.91571923925287, + 9.956295099058622, + 9.927534712091845, + 9.948539245685636, + 9.960592370456972, + 9.941277143528684, + 9.9413045250211, + 9.933313078843513, + 9.978049169140926, + 9.958246027736328, + 9.983028545465476, + 10.003165505345205, + 9.944152504727104, + 9.917975294654662, + 9.928026690945307, + 9.940295281590593, + 9.973658839795672, + 9.928558697721952, + 9.965587828768019, + 9.911945738686446, + 9.939312998100414, + 9.95322028126581, + 9.912370110966206, + 9.969403242373115, + 9.970006667825256, + 9.994081633641418, + 9.960650422354508, + 9.933461148770904, + 9.93891108874666, + 9.948601629205136, + 9.954896583206828, + 9.93875278213253, + 9.943156253849716, + 9.953254202063624, + 9.98043755803794, + 9.950792128659248, + 9.984140120074203, + 9.96715074073822, + 9.931856157994313, + 9.947674385102536, + 9.961927246296506, + 9.981767939753789, + 9.96284884942834, + 9.9740273802047, + 9.953674448427522, + 9.907278945854495, + 9.920635512547276, + 9.929357719737316, + 9.958857893374322, + 9.955010589611184, + 9.95392544452878, + 9.945336773024286, + 9.959192894033317, + 9.964867807730892, + 9.940387857257344, + 9.984584728351757, + 9.97690901860133, + 10.014705880113256, + 9.987595291850015, + 9.95328669927584, + 9.942323798052659, + 9.982618120348635, + 10.007339911049772, + 9.971096619441543, + 9.947500336201392, + 9.921191736081145, + 9.900767055077308, + 9.942885472226498, + 9.945911866038305, + 9.937809353461336, + 9.97298107199767, + 9.97063857078205, + 9.953905556015716, + 9.903826343633108, + 9.951477078499183, + 9.973238369827927, + 9.956324062514117, + 9.969479566249536, + 9.966464679905917, + 9.956261381626723, + 9.94153642023346, + 9.93707685692762, + 9.902868407379144, + 9.906965660844426, + 9.900249343641155, + 9.948222559519206, + 9.946723713811766, + 9.929542662912663, + 9.954867516198041, + 9.973562086246083, + 9.999467756767471, + 9.95828740147208, + 9.991692823262756, + 10.004999481894432, + 9.968877173513393, + 9.94379012292092, + 9.956792931708456, + 9.962590747616401, + 9.953178752455264, + 9.936693494801746, + 9.953014327908466, + 9.967793730103315, + 9.996020280495685, + 9.980874057270773, + 10.013854172287143, + 9.95870285804209, + 9.929886004573273, + 9.944507377381841, + 9.941732021236502, + 9.949645988202668, + 9.957503198630615, + 9.893055544861436, + 9.950809226979985, + 9.9145555714058, + 9.93946789314559, + 9.964546845603833, + 9.977806515816614, + 9.968229385843047, + 9.936333317925877, + 9.955014442494797, + 9.965334123306857, + 9.956135635845891, + 9.977964820206372, + 9.953409845502689, + 9.968407989064533, + 9.995785364648262, + 9.963396904925244, + 9.981446153148061, + 9.945360146803404, + 9.943585296249456, + 9.894657721313388, + 9.903374328107999, + 9.959924121078451, + 9.96198521598053, + 9.97719782460591, + 9.979714368503984, + 9.94691289780156, + 9.949972120837938, + 9.968630404959134, + 9.9513139377951, + 9.941969171111133, + 9.946791302558802, + 9.936228343644103, + 10.001019140654163, + 9.962312748331549, + 9.930592885882959, + 9.931734608177894, + 9.984326039909766, + 9.956627545956291, + 9.935755527025442, + 9.922233312960293, + 9.912983892525645, + 9.92725981559128, + 9.970039914907503, + 9.95603943332903, + 9.935258964103943, + 9.964537931823312, + 9.944547535043487, + 9.973965502468808, + 9.982133480033172, + 9.9480207754338, + 9.94252522481253, + 9.945235476719631, + 9.929224203333536, + 9.894856425850943, + 9.875964918993189, + 9.924037477438931, + 9.967421138328103, + 9.947712014768692, + 9.965590751620116, + 9.96947928863952, + 9.953332399424635, + 9.943346564799139, + 9.95883448132935, + 9.955562121291086, + 9.944136607063466, + 9.939788144464563, + 9.93941929555951, + 9.958829870166642, + 9.950944067826365, + 9.944562999761821, + 9.933619187240494, + 9.937055141567763, + 9.927035459137114, + 9.960556696193878, + 9.9451998897277, + 9.941168665268199, + 9.92922125049237, + 9.945927280717004, + 9.937959431606107, + 9.925700364015638, + 9.970905901668173, + 9.97343924452404, + 9.984947066230632, + 9.960346166391188, + 9.951068514728492, + 9.922741648977162, + 9.941525194801867, + 9.943191804473827, + 9.980590541698758, + 9.959375347656756, + 9.936027385518923, + 9.942688069134357, + 9.939291650062435, + 9.977459994369712, + 9.971768398015943, + 9.948175462292161, + 9.936853397648573, + 9.965511543268438, + 9.959860776612103, + 9.940702451839835, + 9.954105659283192, + 9.923469718764775, + 9.942653240923793, + 9.913517621774947, + 9.920362702802446, + 9.945935381739927, + 9.927547378437893, + 9.963627797612473, + 9.995177725698033, + 9.962871678978212, + 9.936681521650101, + 9.968057122139301, + 9.959292842741643, + 9.954885112849844, + 9.977625920440165, + 10.00018558478846, + 9.923250458445917, + 9.94117575720545, + 9.95779816324098, + 9.929678365473404, + 9.96329541996995, + 10.001980368874468, + 9.987347586874264, + 9.983086803870462, + 9.976879436656185, + 9.975496699478283, + 9.927165306646213, + 9.9697341514623, + 9.927090958193597, + 9.92361673612327, + 9.954902138164721, + 9.97500350180054, + 9.935978756909421, + 9.94342688116044, + 9.916210900777255, + 9.891791462163974, + 9.882440303073249, + 9.874974234027157, + 9.9259162183772, + 9.943032234433218, + 9.964475992690138, + 9.93568812096831, + 9.921289585874666, + 9.901351761447483, + 9.915149057912707, + 9.9375065528053, + 9.939780038900869, + 9.913251800313835, + 9.931683484812869, + 9.939775282394933, + 9.930300369531393, + 9.91475189017936, + 9.916135577415858, + 9.952192457226367, + 9.935994580633524, + 9.929326238492285, + 9.93288460944038, + 9.971499858627512, + 9.940620664550167, + 9.92213057731403, + 9.916875150903333, + 9.91242643721059, + 9.950861020140671, + 9.896320579640292, + 9.928676944503698, + 9.95015116853954, + 9.990912444653041, + 10.00468262439297, + 10.003175854954677, + 9.975480112942535, + 9.994769205705794, + 9.956465592607893, + 9.925737598100417, + 9.952683746477433, + 9.954741488579963, + 9.949650953838692, + 9.976734980565306, + 9.988030083394891, + 9.946747643391772, + 9.94342750825233, + 9.965850729546958, + 9.933474160133608, + 9.974293089261113, + 9.961761932019343, + 9.971189455650311, + 9.9849210512589, + 9.940728751344636, + 9.953764773388869, + 9.946442705717672, + 9.935160259046807, + 9.950034988692595, + 9.919681457808913, + 9.95827984237322, + 9.950068532263943, + 9.934301883402583, + 9.91000440442228, + 9.926815847231735, + 9.930645481343387, + 9.897914839560645, + 9.896879488304103, + 9.902711181022006, + 9.921550359507833, + 9.94755366113173, + 9.931412729971303, + 9.948326137916563, + 9.912647916750172, + 9.966387474667057, + 9.953127204414558, + 9.922364110288258, + 9.922599919083138, + 9.950982937468746, + 9.94745608184758, + 9.911661489364484, + 9.932853246402193, + 9.963377426274738, + 9.959989957813157, + 9.959248595778986, + 9.91580523751695, + 9.94974675256958, + 9.963974618204075, + 9.986793729055183, + 9.925120383791649, + 9.999176372523127, + 9.93469857433067, + 9.953006265553931, + 9.936976297094382, + 9.945875976426066, + 9.928537619811769, + 9.94262755843141, + 9.950836908696806, + 9.922566447559356, + 9.928585714364658, + 9.938510562498223, + 9.948086050054014, + 9.937179739692008, + 9.965015757725048, + 9.962988919703664, + 9.938709754993479, + 9.937485966214494, + 9.958264631035433, + 9.91143364343466, + 9.932054598403187, + 9.922029900544665, + 9.92346491337007, + 9.930920466622709, + 9.93748838243721, + 9.902389538705535, + 9.941544358360495, + 9.949086264097968, + 9.98549490941673, + 9.95398034287383, + 9.929846086057985, + 9.94946952339093, + 9.975907050964889, + 9.996716241685428, + 10.000638608383767, + 9.967670860745796, + 10.004910508197145, + 9.99326498215114, + 9.981516450316182, + 9.964924781401319, + 9.950997838826444, + 9.950115378451223, + 9.926968142901918, + 9.90626629418012, + 9.966785083876054, + 9.931284465627026, + 9.951673242048335, + 9.972463285688162, + 9.983382134379557, + 9.97988213782672, + 9.988407863584346, + 10.001004065329747, + 9.964433999548369, + 9.93746031250317, + 9.975384798685772, + 10.01442072628255, + 9.989755973756225, + 9.948799990048133, + 9.942131424013875, + 9.98462685508836, + 9.951178026302632, + 9.943095133635632, + 9.930593601223991, + 9.964457712790423, + 9.95299038186779, + 9.945102739801587, + 9.961200194765132, + 9.958976575226236, + 9.957506540167754, + 9.97539444194119, + 9.973469371354895, + 9.925214734547092, + 9.927987852113114, + 9.933683915198456, + 9.950800552535021, + 9.935060697797875, + 9.960959592374971, + 9.932553617727718, + 9.923811698606881, + 9.933544070759455, + 9.934268802778455, + 9.932134233280207, + 9.937185977740524, + 9.969660229925273, + 9.944571733615746, + 9.938678550449733, + 9.972148096056294, + 9.929678144199196, + 9.945701546163917, + 9.945242123870061, + 9.92090847733891, + 9.91803743079492, + 9.92554485869389, + 9.9154173669399, + 9.900725463411456, + 9.928225956823958, + 9.943189723644966, + 9.947910019632339, + 9.921692093675565, + 9.908873775493312, + 9.924146588007561, + 9.927326919293288, + 9.908792517658338, + 9.905279334142696, + 9.952467465803547, + 9.94690738045019, + 9.949976509233135, + 9.957282030752985, + 9.932242181036521, + 9.962524719816567, + 9.964855482920315, + 9.950740355458473, + 9.984105513911905, + 9.945912484205618, + 9.978188035091254, + 9.923767351917526, + 9.936938104720216, + 9.956237705354194, + 9.947342258468554, + 9.971175203212791, + 9.963441592770504, + 9.973227760052602, + 9.959892914094835, + 9.97651991383475, + 9.992947205805539, + 9.93034262201017, + 9.948580188983488, + 9.942086270006369, + 9.926829051217744, + 9.950479472449011, + 9.92730733877987, + 9.945958462763254, + 9.950002771983488, + 9.984173100233013, + 10.00590918509343, + 10.004254993617069, + 9.9735032898073, + 9.972008190629756, + 9.970325001006271, + 9.922170289158547, + 9.963590275178378, + 9.965602739562295, + 9.95057455736868, + 9.957528934853327, + 9.94827900014516, + 9.960087614518052, + 9.951897200068167, + 9.953710228591529, + 9.926966012771867, + 9.906877409440888, + 9.927424038327421, + 9.930921221029072, + 9.949553821346422, + 9.914753627740208, + 9.91542701606459, + 9.918030270296178, + 9.927243459049341, + 9.967056529375132, + 9.976052819243057, + 9.980990946324305, + 9.980654166856914, + 9.967084023578025, + 9.944491264078213, + 9.968037396043515, + 9.969172414923213, + 9.968085570383218, + 9.948979252610402, + 9.986537439519655, + 9.98518266802446, + 9.951596023742272, + 9.95364310271612, + 9.952185245274059, + 9.950820310898306, + 9.980836464213414, + 9.960926271253037, + 9.934791026585781, + 9.94660952728311, + 9.949864321314529, + 9.95959374973952, + 9.9531621214909, + 9.941188291298808, + 9.942208263847549, + 9.932091458382041, + 9.962023265379853, + 9.92067547275569, + 9.947832853259898, + 9.93772802197965, + 9.93054477400505, + 9.942277034837664, + 9.951850290258307, + 9.942047223522602, + 9.96342726272635, + 9.91626160803237, + 9.956348957465746, + 9.966831369807982, + 9.969491697598805, + 9.93427568125367, + 9.939898619549519, + 9.949070004725446, + 9.950098163764006, + 9.955045421950038, + 9.982373487180649, + 9.970383693136885, + 9.922180440840084, + 9.984022507947543, + 9.937891990898281, + 9.977794499241874, + 9.94628627325409, + 9.963606760351292, + 9.965057545073995, + 9.944714516017987, + 9.962368004325658, + 9.938769210585379, + 9.936564535412554, + 9.971886147508792, + 9.944749925109068, + 9.958780123347907, + 9.949450387061775, + 9.93219356357217, + 9.942520324780194, + 9.947571329987733, + 9.940720721981505, + 9.93357946317352, + 9.971557107259668, + 9.934878307640439, + 9.95195388742924, + 9.941448827682594, + 9.963920812359795, + 9.948872106691052, + 9.970866366906186, + 9.958200491383277, + 9.96213299780196, + 9.94848663842233, + 9.963702360020637, + 9.937890934402562, + 9.957695723831486, + 9.912603874974561, + 9.917013806992786, + 9.921307665160402, + 9.889519902151873, + 9.886441311760137, + 9.964324875446781, + 9.948212062093724, + 9.944228099623004, + 9.953194609825768, + 9.924743988643893, + 9.8942330436212, + 9.934637188861949, + 9.96714281816738, + 9.95392405420229, + 9.95423085106609, + 9.96122669219769, + 9.929641849715713, + 9.93532282546877, + 9.961712724327885, + 9.966565561974736, + 9.989633314593378, + 9.955632028446544, + 9.95019521600679, + 9.97659888359186, + 9.957753659522908, + 9.930564922486635, + 9.930460164593939, + 9.940462089777109, + 9.940202382825094, + 9.924627265578279, + 9.971976492394992, + 9.953449047692574, + 9.933100651509367, + 9.92434790586792, + 9.957804520811665, + 9.967245633101957, + 9.996728624421184, + 9.998443827189902, + 9.93530520721302, + 9.954669403734542, + 9.934985873542246, + 9.960053677312228, + 9.921961320874333, + 9.970013330667147, + 9.982742611208533, + 9.949538072441197, + 9.94347408242354, + 9.928665712779038, + 9.97892383903751, + 9.968997303264077, + 9.94232233235138, + 9.913217461890621, + 9.932401919528324, + 9.899665237096366, + 9.928049480295321, + 9.915546936941647, + 9.96187808456049, + 9.928220994453183, + 9.947219880912009, + 9.917476321834616, + 9.967226941861945, + 9.951666257266515, + 9.992573359753104, + 9.992905724609965, + 9.976013509994008, + 9.979781746768545, + 9.976669832129312, + 10.009367730079104, + 9.97120812726952, + 9.968090559554444, + 9.941154155684096, + 9.935880061971556, + 9.898531254543013, + 9.96048118252598, + 9.963480420422572, + 9.932486422360649, + 9.929000213630218, + 9.953900148542674, + 9.935226569593462, + 9.970483547840969, + 9.932582308135437, + 9.947459864316265, + 9.936807698784815, + 9.951121072157692, + 9.940522802517114, + 9.966730344118881, + 9.976115799905243, + 9.987925664179835, + 9.967195478306914, + 9.95479703279056, + 9.926577779384951, + 9.955991923180227, + 9.973274201656064, + 9.951084747540582, + 9.927090755290338, + 9.973148453087516, + 9.926546636601575, + 9.957655922699562, + 9.923830801510404, + 9.940732350106053, + 9.938378892295258, + 9.917355860147973, + 9.937868237645693, + 9.962048683471286, + 9.912404745055644, + 9.960457547048286, + 9.930102905234255, + 9.944661196443654, + 9.949350676624555, + 9.955459567216309, + 9.939750627924042, + 9.926782360302616, + 9.895560953889186, + 9.942804622273206, + 9.949963387868598, + 9.889829776082047, + 9.933143325968462, + 9.938093240006319, + 9.940736457449113, + 9.911926350133196, + 9.871678164474481, + 9.871518081286215, + 9.891390401005324, + 9.941701721756411, + 9.938786182948528, + 9.952302479506876, + 9.969838178329354, + 9.952844055225247, + 9.949663736429489, + 9.961109028656587, + 9.926764691139754, + 9.921641177292122, + 9.949617656068437, + 9.931492910325005, + 9.925772715171172, + 9.929254578186189, + 9.971641481746769, + 9.975811077384664, + 9.949830575272367, + 9.941082375360503, + 9.967536965607174, + 9.964813460634737, + 9.928391205714522, + 9.931032380296005, + 9.95837323734213, + 9.996417333249536, + 9.928894851299798, + 9.913067762364614, + 9.967601747122675, + 9.970953908567672, + 9.963408421203516, + 10.00135976129382, + 9.944805862425145, + 9.922128390737093, + 9.958650234518984, + 9.966036639238663, + 9.935408349156798, + 9.919280848517264, + 9.89715366092726, + 9.923502529391206, + 9.95543541715306, + 9.930564626251275, + 9.923452377549552, + 9.92152670065455, + 9.961324863813722, + 9.944883943636738, + 9.940283378351367, + 9.933510394597686, + 9.935561244895506, + 9.971986396448951, + 9.943852880002652, + 9.906478809165575, + 9.917018232205294, + 9.944552795257227, + 9.95496438048105, + 9.917986758813383, + 9.925617089770958, + 9.925284218890836, + 9.980852981021853, + 9.973339132912033, + 9.981733207301435, + 9.93419081994127, + 9.940558960158612, + 9.986016553386005, + 9.997509204852825, + 9.989114574193875, + 9.974441411743806, + 9.967010592695454, + 9.976152619903027, + 9.954681825712402, + 9.9576255785564, + 9.925408710802882, + 9.966750447036322, + 9.958625277621351, + 9.942387301327164, + 9.96217529159599, + 9.928833297774734, + 9.950136864761962, + 9.929317313866953, + 9.95097150987452, + 9.952433749216, + 9.963440707545832, + 9.991095548398482, + 9.975211939411208, + 9.947930750672846, + 9.967470780928675, + 9.958773208033008, + 9.944041232810465, + 9.946379610665701, + 9.960979194502945, + 9.951075129160932, + 9.93079643917597, + 9.956460457065365, + 9.960104744000166, + 9.951580775829516, + 9.940532880995871, + 9.913954793371804, + 9.924679900565764, + 9.911626696793022, + 9.915551214114936, + 9.961703972257343, + 9.919851584853793, + 9.937934213728546, + 9.974991533585742, + 9.971072181774156, + 9.931142222215655, + 9.961645962458533, + 9.957097472074942, + 9.946188195758134, + 9.916898528747339, + 9.898877977182709, + 9.931472382071231, + 9.940755327135259, + 9.974977981408317, + 9.944195728752772, + 9.976571006566136, + 9.961183946880137, + 9.96253351970303, + 9.937425200944402, + 9.938861173275187, + 9.96567467221444, + 9.968488844299324, + 9.917282512171715, + 9.951958325004206, + 9.969074310852541, + 9.966370856423119, + 9.9584508574393, + 9.91992283356287, + 9.938381287747122, + 9.973698817284161, + 9.983507191317841, + 9.980524600375986, + 9.945293493135347, + 9.965840431894268, + 9.916920905459286, + 9.919544944570713, + 9.931869140802444, + 9.922469699306692, + 10.000793111919695, + 9.930987254373825, + 9.970323718039428, + 9.952603933616889, + 9.956572244778869, + 9.96165902197365, + 9.93645923880864, + 9.927503542089577, + 9.953150139435778, + 9.950605140953364, + 9.962138590595087, + 9.91517944967287, + 9.97047720676325, + 9.960254076048157, + 9.947697188855846, + 9.990948485051547, + 9.976529649086755, + 9.958977733887586, + 9.972324031551828, + 9.96706507403594, + 9.955091773686092, + 9.943263413799276, + 9.99584798228057, + 9.940026669683922, + 9.901960869087413, + 9.923660611229813, + 9.965322405262489, + 9.96683693926583, + 9.928964446956064, + 9.95905445412689, + 9.94866022991227, + 9.959339662025565, + 10.017127328773384, + 9.992170387332326, + 9.969202801301769, + 9.934716990786917, + 9.962668411601275, + 9.951718512823048, + 9.945621548272449, + 9.925482328088194, + 9.927052334774121, + 9.931179676903229, + 9.950312332435436, + 9.966944618420259, + 9.966639041783955, + 9.95275091584954, + 9.951291607314259, + 9.947447435485778, + 9.926536817469389, + 9.939013219406194, + 9.925040735141383, + 9.935190951001886, + 9.948484188878593, + 9.952385257715571, + 9.924566465305178, + 9.924431467316507, + 9.913309593989407, + 9.966038581550224, + 9.982397168383, + 9.933304018023989, + 9.8914808210807, + 9.952409300371519, + 9.953511020189792, + 9.961637576792452, + 9.921252304842277, + 9.930063187405215, + 9.947619598000223, + 9.948851919904456, + 9.964983615744766, + 9.954051094082683, + 9.959461790395967, + 9.93498971475213, + 9.978089020780073, + 9.921854691905118, + 9.964952135168366, + 9.989865442559609, + 9.933626496623708, + 9.955376125932071, + 9.976019827200455, + 9.948011734555214, + 9.97314499630165, + 9.921861803336874, + 9.939395861475447, + 9.97173523287947, + 9.929770200833909, + 9.938256808750209, + 9.973579572855225, + 9.976248332291531, + 9.942623885435932, + 9.925475121359705, + 9.917895941699548, + 9.933539075462367, + 9.954033262103456, + 9.935018515388624, + 9.947845436003849, + 9.912656502119447, + 9.977435027576373, + 9.946957439738382, + 9.946283242618978, + 9.981333737732792, + 9.958764789962466, + 9.97984897537746, + 9.953451664433432, + 9.965416587119739, + 9.91765963836771, + 9.941198690563498, + 10.003723000327367, + 9.977577279228397, + 9.96633100231408, + 9.938462039228364, + 9.963616452416021, + 9.995718945600245, + 9.949955295136515, + 9.939955800980327, + 9.96544133249701, + 9.942466499973168, + 9.949729559240952, + 9.973309740592235, + 10.030021988208798, + 9.994311846225635, + 9.963114304238962, + 9.915127978735432, + 9.90780895885981, + 9.939293579568774, + 9.927415071807665, + 9.94841923447489, + 9.951732398225563, + 9.951373040477037, + 9.972990657456412, + 9.972754265022541, + 9.947286983172944, + 9.941265752390871, + 9.94061377292419, + 9.9510937048454, + 9.920696279243112, + 9.916743449707157, + 9.949782271212444, + 9.904717503597977, + 9.94607738655512, + 9.946980386037247, + 9.925821680515336, + 9.92200581150294, + 9.91774650858575, + 9.954922862903205, + 9.948407092967962, + 9.925895332902744, + 9.926133278028239, + 9.94672489340566, + 9.94936303624558, + 9.941344867951898, + 9.935272404273196, + 9.92355347417069, + 9.940634157208065, + 9.936915621989955, + 9.921524049590806, + 9.909436220196781, + 9.96748701211363, + 9.970113857928702, + 9.915404596394342, + 9.951874831893887, + 9.91878559343838, + 9.92189306022676, + 9.961931371086393, + 9.945273836401656, + 9.950085436423642, + 9.930776843096544, + 9.930731138605973, + 9.92787148693201, + 9.947772137536454, + 9.967007955184034, + 9.955221076336736, + 9.924630593508672, + 9.931498862602858, + 9.954268781258053, + 9.968374261335512, + 9.945107159880516, + 9.941337219685838, + 9.925694202559647, + 9.958839020906554, + 10.004514454855448, + 9.969555173634566, + 9.956171742132963, + 9.954320706442298, + 9.981537273791776, + 9.970177218627972, + 9.90009209286918, + 9.960427954861999, + 9.91678177501009, + 9.949942648118162, + 9.943176717817549, + 9.97451442091914, + 9.975593454045784, + 9.953307639826747, + 9.96919919156187, + 9.919504669966585, + 9.96401821763528, + 9.941398062513137, + 9.941350593976232, + 9.934323682384203, + 9.93547417637447, + 9.965460168936806, + 9.997987271633573, + 9.964263594498556, + 9.93821827271824, + 9.941630848838617, + 9.913863619588799, + 9.956819958696268, + 9.916532316751479, + 9.919034087961666, + 9.932743424244137, + 9.921774831697597, + 9.900503837993442, + 9.954438475738156, + 9.97557388166788, + 9.963013553781744, + 9.935827144008057, + 9.925861452955424, + 9.934971627456695, + 9.965014626481409, + 9.977480840988745, + 9.932615141106508, + 9.950237935481743, + 9.985882473268317, + 9.940095116081253, + 9.934063567280464, + 9.991829967750252, + 9.988513307431575, + 9.944465266508885, + 9.958177789635686, + 9.990472245661923, + 9.960405469799746, + 9.932412569639952, + 9.912394746768992, + 9.965406723871666, + 9.94608690812232, + 9.985614497802965, + 9.93107019673212, + 9.935550549330179, + 9.954222712828981, + 9.957670298208294, + 9.96447399171493, + 9.937734826319431, + 9.932409603754804, + 9.919105249425677, + 9.96507576184484, + 9.989080852467547, + 9.902491936576395, + 9.908872021107133, + 9.912485478435798, + 9.916012146782316, + 9.91035352674862, + 9.961726719075036, + 9.960355096663788, + 9.963254130565353, + 9.915929377638058, + 9.910956711915144, + 9.94769608608482, + 9.947740632529614, + 9.941914387567135, + 9.91982161561239, + 9.935008287450414, + 9.957336797808436, + 9.934953602017845, + 9.959163269872418, + 9.996171842135107, + 9.967821501562664, + 9.96980585905806, + 9.940669069123237, + 9.927275583918735, + 9.955892123962242, + 9.963752567774508, + 9.956136208047347, + 9.958442317646627, + 9.947712342993222, + 10.006806086752704, + 9.951486147434213, + 9.940723992254814, + 9.946397866874733, + 9.916647116272598, + 9.950464439409016, + 9.982814368553615, + 9.950902479725086, + 9.943082749753513, + 9.891967526088337, + 9.875083580852557, + 9.91117665210634, + 9.924278648157747, + 9.92221641446229, + 9.968068320437823, + 9.938332417230667, + 9.972158012652615, + 9.9921028224809, + 9.943738945185464, + 9.952106006339214, + 9.963453116135025, + 9.990761820491647, + 9.951431945824805, + 9.937320093031465, + 9.990262343960548, + 9.960864403475806, + 9.984597041157059, + 9.953003500799118, + 9.956166473292898, + 9.961766757089414, + 9.934805995550242, + 9.930247461870827, + 9.949600702913683, + 9.949041312420189, + 9.941424272181173, + 9.952385985285234, + 9.951880764719702, + 9.976140868322299, + 9.954611545872194, + 9.946669846803434, + 9.94784283850985, + 9.939492318793093, + 9.960781278539871, + 9.990735243162145, + 9.946787397304691, + 9.972778879557826, + 9.978048005030619, + 9.962815380481281, + 9.962111982867825, + 9.900956806383963, + 9.971150022492209, + 9.963040102654132, + 9.9702020225182, + 9.939874008123432, + 9.911440477622186, + 9.939990487772848, + 9.9401244687504, + 9.934905414900955, + 10.010116504034364, + 9.956398354088083, + 9.953188904973985, + 9.947529152573606, + 9.983788318369088, + 9.945089900101136, + 9.948761952982128, + 9.968301480768611, + 9.975813110323637, + 9.983882154955863, + 9.93936058259246, + 9.940749371260646, + 9.981055774087546, + 9.949624765122865, + 9.969482899070309, + 9.971329027000444, + 9.969336979600657, + 9.955712486169949, + 9.97674518441497, + 9.95643784409814, + 9.941474421033469, + 9.920497303187087, + 9.93578345757241, + 9.944528929043711, + 9.916536871263828, + 9.954172983963264, + 9.966818447100431, + 9.937573171302725, + 9.923221439439716, + 9.901238871605365, + 9.947430627364888, + 9.91443722708024, + 9.953544464865065, + 9.939712699309942, + 9.91156481051907, + 9.902443333749193, + 9.950525755699442, + 9.931354728394785, + 9.936474890002959, + 9.902552522350625, + 9.962735986319748, + 9.900050789761474, + 9.929453265746842, + 9.949555489124833, + 9.960071909130955, + 9.919995474516547, + 9.938432070159163, + 9.9065379308595, + 9.90354257204043, + 9.954617135750594, + 9.977974939156201, + 9.94932042459089, + 9.89926780687318, + 9.887589117911546, + 9.889946476596133, + 9.921495486111098, + 9.948478909895378, + 9.964299792188875, + 9.952345559354688, + 9.943415295626457, + 9.93261358793946, + 9.959925629308675, + 9.96434272526254, + 9.943350089973755, + 9.922361790273236, + 9.95659846928261, + 9.959308651471709, + 9.978268988792763, + 10.013813101457709, + 9.951213775255095, + 9.95844068584426, + 9.946821786199362, + 9.951647384334278, + 9.939951507541355, + 9.958540453381623, + 9.922753695312748, + 9.926737263748176, + 9.937867381814701, + 9.964188592066295, + 9.97524648890011, + 9.957254415044378, + 9.947785000637639, + 9.98604561544055, + 9.96861318282921, + 9.928661046069482, + 9.912445622231946, + 9.938215791715985, + 9.899371596481162, + 9.898162963322891, + 9.959856327603687, + 9.942019351078573, + 9.920627950714165, + 9.913882272762953, + 9.980642168178056, + 9.964063603820168, + 9.983025563354872, + 9.942035637632337, + 9.94989901638238, + 9.958828198685724, + 9.95241168863511, + 9.956192623213255, + 9.963158303675886, + 9.947753094945158, + 9.96895650341297, + 9.99944951480595, + 9.940835234585151, + 9.942065760048584, + 9.954917346909587, + 9.974267025660144, + 9.956621350084387, + 9.98786648658451, + 9.937695239662172, + 9.91871684895311, + 9.945292666149735, + 9.955359912531234, + 9.976103212247377, + 9.982162412382422, + 9.963532709599017, + 9.957513193024141, + 9.934763173309536, + 9.897862578318653, + 9.949585259695848, + 9.932969287535352, + 9.962967437364926, + 9.933470842012245, + 9.924878833082326, + 9.9327485024099, + 9.896223814224053, + 9.927489067721181, + 9.938205081215816, + 9.963733483265408, + 9.942540414026237, + 9.946708979080594, + 9.957878748727746, + 9.935342363731918, + 9.95105387943781, + 9.980485679409641, + 9.979027857365937, + 9.99711283768347, + 9.94316028889242, + 9.950173179178508, + 9.97075525281254, + 9.975377698687375, + 9.959612954714943, + 9.957695630800377, + 9.928856346523565, + 9.964085143648177, + 9.91249627039143, + 9.971257852548984, + 9.94337541148656, + 9.940718457318342, + 9.981081100857985, + 9.939996064725925, + 9.919457180622535, + 9.974219642477502, + 9.994100943005812, + 9.959511496916324, + 9.992515927888466, + 9.976973227135614, + 9.942793572023763, + 9.914405314557287, + 9.914030536315785, + 9.936274060511554, + 9.91260722477977, + 9.981411354722038, + 9.972825975191576, + 9.994850056566593, + 9.988175827708707, + 9.964692378361406, + 9.964246768160155, + 10.000688948201999, + 9.987220542695491, + 9.957573793672463, + 9.937852305909837, + 9.94564501105591, + 9.975839532069873, + 9.974334253365734, + 9.952131299398058, + 9.991480784370497, + 9.968104720284904, + 9.904060919227083, + 9.906582095228973, + 9.941927375638448, + 9.944000728537754, + 9.935068631269262, + 9.939347222240645, + 9.932407805231023, + 9.933620652822885, + 9.925256785620883, + 9.978005554883866, + 9.977542391690434, + 9.969706822025612, + 9.992657853156853, + 9.965843788745639, + 9.970002170917473, + 9.964459071941906, + 9.965863330864577, + 9.919512707733524, + 9.916934668621922, + 9.921050803813005, + 9.944875181914806, + 9.916445560815106, + 9.8730775587417, + 9.937077784686995, + 9.930974952576625, + 9.928768794763394, + 9.955270480698681, + 9.95693892706001, + 9.919497662362504, + 9.967594299415312, + 9.946740596345602, + 9.957174370040612, + 9.97858799987459, + 9.952922729910625, + 9.929052478388883, + 9.93238815001144, + 9.94858044822144, + 9.946846211213543, + 9.933188126045652, + 9.933636248957336, + 9.943943665445316, + 9.960191195596309, + 9.967057519730758, + 9.96160879436665, + 9.972620457871264, + 9.957601239427097, + 9.981519743680385, + 9.966396206889176, + 9.95576828687311, + 9.953265163823696, + 9.944778326011152, + 9.952776069158114, + 9.962130268740317, + 9.938037844846392, + 9.95797990555959, + 9.928456766994483, + 9.937217218625515, + 9.981948611649896, + 9.960829339266962, + 10.01182152596815, + 9.967116100397961, + 9.957437125262052, + 9.99585924335684, + 9.993933144251322, + 9.992590234219392, + 9.977982841890322, + 9.94392521165325, + 9.940552133316732, + 9.937710639928063, + 9.931794106932337, + 9.949342984982088, + 9.913978209504881, + 9.904405822148753, + 9.93153152847872, + 9.966731647820827, + 9.978252089529803, + 9.994922599005987, + 9.980463618446327, + 9.967276217487765, + 9.990811245607865, + 9.968219172586627, + 9.996509510414262, + 9.924025980007501, + 9.940487933271696, + 9.946350366938528, + 9.91841213757499, + 9.951025607653328, + 9.940199176417801, + 9.97316368794563, + 9.988817040590785, + 9.931822897275257, + 9.949520260854355, + 9.964608417355597, + 9.95344216148098, + 9.959068601738608, + 9.964322089224671, + 10.010354314657635, + 9.963842059199033, + 9.959951760469222, + 9.963409051439664, + 9.948253159117316, + 9.965855970719534, + 9.932335437981914, + 9.928663788116486, + 9.922887952769864, + 9.946137153932721, + 9.960709037552325, + 9.955321157727749, + 9.947108117167549, + 9.95555594679623, + 9.923471284637706, + 9.895380809343903, + 9.919789066641838, + 9.923118603233918, + 9.970785512182117, + 9.987724363172672, + 9.937939094629483, + 9.97612042464364, + 9.989312427461444, + 9.989560676086116, + 9.976865477246472, + 9.9684646886404, + 9.97888835274472, + 9.985501366230043, + 9.982772226073902, + 9.94465950407593, + 9.92352834542734, + 9.898584428780456, + 9.94481581023576, + 9.958505325430911, + 9.988697786721497, + 9.947931061398497, + 9.943832308558802, + 9.993827603774522, + 9.976245925872531, + 9.970578640150805, + 9.963830242990303, + 9.954491279430869, + 9.943386170850964, + 9.909681994008286, + 9.924581160482486, + 9.935619143739304, + 9.942948060446673, + 9.940505968383249, + 9.9398834016867, + 9.943539338572764, + 9.930019051598578, + 9.954111959257185, + 9.942872184934464, + 9.947142573560061, + 9.983836623470003, + 9.931004720411257, + 9.945210461779833, + 9.943651610419469, + 9.955094883126087, + 9.972219721010871, + 9.957651659723116, + 9.960776313580668, + 9.93240705969099, + 9.940040440926781, + 9.975424391012501, + 9.960816609776678, + 9.993886293116434, + 10.001153904267072, + 9.96790085129982, + 9.912026068816088, + 9.91211276166107, + 9.93368559287756, + 9.930480323482191, + 9.960499692928524, + 9.93519797377613, + 9.952551083787252, + 9.97965260927605, + 9.952189619867136, + 9.955041331647383, + 9.928245360138181, + 9.915857287839847, + 9.89303470206219, + 9.942015777383586, + 9.936253970363564, + 9.952339554946182, + 9.938864979664922, + 9.961038819821795, + 9.950148557095382, + 9.944219134034697, + 9.929557796441026, + 9.924643871787666, + 9.934128976263452, + 9.927186850960682, + 9.939518537323664, + 9.919614738168676, + 9.953976118312973, + 10.000206526384476, + 9.957735416612131, + 9.933606769348946, + 9.946802528137642, + 9.95042687690884, + 9.96148067315359, + 9.916152065754227, + 9.916154537916933, + 9.908929457228886, + 9.925208723482017, + 9.92543496419477, + 9.957729830056763, + 9.942438947755342, + 9.90432680633939, + 9.9523446667473, + 9.9616644107201, + 9.960160190197556, + 9.913884638337409, + 9.970399929960656, + 9.978246330545337, + 9.94766813102188, + 9.939544905871053, + 9.969838991594957, + 9.980044821672097, + 9.974019082916719, + 9.936072189506623, + 9.99561897577677, + 9.99182280709452, + 9.943866924920298, + 9.940122915892916, + 9.927886704839247, + 9.9577492485222, + 9.947274934535033, + 9.95295034707335, + 9.935401303971013, + 9.907710152371646, + 9.912069520553345, + 9.94966227556457, + 9.95290417485648, + 9.971413028616016, + 9.945068927629176, + 9.936490736800788, + 9.939597418401927, + 9.93986079086916, + 9.940461850503642, + 9.92184478038285, + 9.90934547731056, + 9.921438987901661, + 9.883739114327625, + 9.915471348486799, + 9.934174706429452, + 9.923452510549401, + 9.998579749858136, + 9.96072704690932, + 9.947438138383848, + 9.94230867009087, + 9.925839179387802, + 9.94177148380231, + 9.946402408507533, + 9.968630941147484, + 9.947264345697484, + 9.961281425671483, + 9.983761638535025, + 9.963291065639256, + 9.941787143362205, + 9.944284889718695, + 9.9073448450894, + 9.91768894801553, + 9.948463956431613, + 9.940297840032772, + 9.943859315055375, + 9.94956755001671, + 9.962496481101287, + 9.930429099108837, + 9.926570030777937, + 9.940961431009326, + 9.951713597733072, + 9.933023106083976, + 9.95023543725489, + 9.873900763657408, + 9.903564638351483, + 9.902169421391074, + 9.899861290136304, + 9.920609316867587, + 9.952143959275034, + 9.941310742020262, + 9.912067528295399, + 9.931159859588398, + 9.964640853431002, + 9.915243942134495, + 9.96161168572697, + 9.978562623847452, + 9.956588665819588, + 9.943832226421572, + 9.955003569766834, + 9.921786903198191, + 9.933874101316682, + 9.96503114582377, + 9.924019381908641, + 9.905489151354667, + 9.915442838599033, + 9.939202131765985, + 9.96739342161381, + 9.996449416440582, + 9.954696448615525, + 9.925640088062437, + 9.906476051385935, + 9.92224385789871, + 9.893007753774556, + 9.92269134472378, + 9.920957540025816, + 9.925611497228829, + 9.979313149827155, + 9.95664185805218, + 9.948728958326308, + 9.923464482592989, + 9.974843498898426, + 9.974852218151536, + 9.991969197688691, + 9.945373355884984, + 9.948542422517365, + 9.986565002950618, + 9.979312236445306, + 9.928242031768166, + 9.936094687523672, + 9.974083653453624, + 9.98010257483965, + 9.961797416451205, + 9.900258683631144, + 9.925182701408966, + 9.945646031510051, + 9.902487215620972, + 9.933811123583158, + 9.968894854120245, + 9.963585785704424, + 9.942471439948761, + 9.935760071510272, + 9.935864421156369, + 9.97816009060147, + 9.966103875713463, + 9.979845246616021, + 9.968336201094111, + 9.944337472754201, + 9.92279272318729, + 9.957262192106294, + 9.951324424397184, + 9.91217935633366, + 9.950270532981454, + 9.913823666106103, + 9.88866941455101, + 9.939479446330061, + 9.938676021946565, + 9.944792027583778, + 9.958015183044898, + 9.925660601704406, + 9.995291197231442, + 9.947332189290996, + 9.979666337596317, + 9.952845167281861, + 9.931656165405869, + 9.898123840281, + 9.933141148841244, + 9.970948279340494, + 9.994683195615456, + 9.954698610108881, + 9.966580057230264, + 9.957758888490519, + 9.971071517197787, + 9.929322832571572, + 9.949996142770113, + 9.911204598537461, + 9.93936782141283, + 9.95847977911053, + 9.932814187582519, + 9.958474955819941, + 9.954851706214326, + 9.924604712169044, + 9.918564684955742, + 9.923217374878282, + 9.93225015673727, + 9.950617158899115, + 9.949190997451767, + 9.963749909841725, + 9.934915675237466, + 9.95398990534822, + 9.949671415540532, + 9.96546710534431, + 9.954014877631327, + 9.9614858430794, + 9.941324843758053, + 9.932630664422726, + 9.961916830351711, + 9.930440214699837, + 9.96789900178343, + 9.955608698091714, + 9.961979786276192, + 9.977303612200611, + 9.925424864204583, + 9.937636999479421, + 9.9600232004007, + 9.953362869309156, + 9.962978856706936, + 9.953471064708076, + 9.935694043363842, + 9.938909562278898, + 9.920044885617619, + 9.94548013884822, + 9.941187847133218, + 9.963851816165505, + 9.977298006293639, + 9.951317188706355, + 9.936553426974426, + 9.942009913543522, + 9.945079476302258, + 9.901529170819577, + 9.917474172032156, + 9.945901580826751, + 9.92276130238324, + 9.927577597367522, + 9.93078813784358, + 9.96758056713478, + 9.951464770981934, + 9.93550213575486, + 9.926012840743477, + 9.930005929350008, + 9.931237234364312, + 9.912324965163524, + 9.912690881773011, + 9.95174249047804, + 9.999403182845255, + 9.999794192792377, + 10.008485013238095, + 9.956193174869146, + 9.976756247424557, + 9.974675817118069, + 9.937395589495418, + 9.912861657851755, + 9.955464322920838, + 9.963231046606701, + 9.924515164031641, + 9.912284425510943, + 9.92440683269753, + 9.903192718480952, + 9.937630240177572, + 9.944011466788782, + 9.944264039835176, + 9.914754445044304, + 9.911973139661848, + 9.904825565856111, + 9.928797013296728, + 9.910879063192352, + 9.916690552531396, + 9.96542685667972, + 9.974743957628121, + 9.974530328085333, + 9.941956847344324, + 9.973479474952176, + 9.999966122692996, + 9.983286265106834, + 9.933522864916268, + 9.935650353753761, + 9.964954560253288, + 9.953073761762791, + 9.94280379877601, + 9.933813290310056, + 9.930889390903198, + 9.903370519536685, + 9.905669530029304, + 9.93292740721981, + 9.937193979792276, + 9.927895430135438, + 9.951056644257438, + 9.932310270506607, + 9.956126684025964, + 9.931129321172305, + 9.964068602368737, + 9.936276851368023, + 9.934448422020091, + 9.979306080952497, + 9.961449811838493, + 9.953191950386852, + 9.961157036628748, + 9.947796423126668, + 9.951159416895301, + 9.94486706181105, + 9.967457402551236, + 9.962438178251551, + 9.947581631827374, + 9.977546567939266, + 9.95588862487231, + 9.976015982289422, + 9.949047289581914, + 9.93607287777259, + 9.948292057910024, + 9.968845369402386, + 9.98073264278775, + 9.985847309551698, + 9.983360237065131, + 9.92372077256905, + 9.93103352264536, + 9.92619592299214, + 9.953198574090043, + 9.907090846333897, + 9.945982317507177, + 9.95695522482656, + 9.931851895966004, + 9.946331350029121, + 9.94490673338251, + 9.94948649990674, + 9.945559654137329, + 10.000463453333566, + 9.996517823853335, + 9.957536570563532, + 9.935988580984723, + 9.936995530228446, + 9.907821950895796, + 9.956480774809242, + 9.95183937348972, + 9.957757653464318, + 9.946061762879419, + 9.944589151307, + 9.994631036908979, + 9.989506798141612, + 9.969708218864842, + 9.969972986567745, + 9.988971977352028, + 9.98398443141154, + 9.979218195606677, + 9.998731693630834, + 10.000826602596465, + 9.96171977279752, + 9.952287486762529, + 9.925537306333842, + 9.946707454396844, + 9.952873046166934, + 9.943122895972815, + 9.932953001521426, + 9.931351043410269, + 9.96094052749568, + 10.008327304443029, + 9.980671515008247, + 9.917801488781514, + 9.918398848068527, + 9.91566372332396, + 9.931085603214262, + 9.954222391518657, + 9.93785020363848, + 9.934584569861345, + 9.952943853298308, + 9.9748594162943, + 9.929142996172915, + 9.928387350785908, + 9.953729634551083, + 9.944578384805917, + 9.940247222122501, + 9.919131874428729, + 9.947799638514011, + 9.955923719312933, + 9.908747814224585, + 9.956708733686517, + 9.966798157585249, + 9.966206795321886, + 9.936290412750571, + 9.970234209000788, + 9.984278625751069, + 9.995155374853871, + 9.967021191533277, + 9.958565530645116, + 9.952890802231769, + 9.959163830250736, + 9.930474907131114, + 9.972317516407667, + 9.957680758050273, + 9.949779324983002, + 9.95906363244299, + 9.951130906824357, + 9.950327783746568, + 9.921440655204599, + 9.963969516223893, + 9.968279308940822, + 10.000445315195027, + 9.971431338121421, + 9.974635683736892, + 9.97675689003193, + 10.00716595021924, + 9.964849434452457, + 9.94112876434054, + 9.985706430425202, + 9.970361410800406, + 9.966086501871828, + 9.964268272668821, + 9.951554418311693, + 9.987756343723953, + 9.99685434214185, + 9.98211446722256, + 9.911535542923897, + 9.933849165873173, + 9.891628656957797, + 9.899079284067072, + 9.917328393462917, + 9.923359536900643, + 9.981497171225348, + 9.933707880260938, + 9.950100422020565, + 9.970215564487955, + 9.967432299096533, + 9.939655547758925, + 9.962255332463974, + 9.958712813995563, + 9.990491985124917, + 9.974449297131168, + 9.91814877802199, + 9.937176647413457, + 9.968452309000844, + 9.956698655059826, + 9.948625030199729, + 9.899241682894727, + 9.912522484915172, + 9.94685690091981, + 9.948168511144107, + 9.97960213609267, + 9.92749654354401, + 9.929930607552949, + 9.958164629131229, + 9.92403527859789, + 9.910344529176081, + 9.946842506934304, + 9.953553974648823, + 9.948806366954042, + 9.963187151093214, + 9.9466321239682, + 9.98039891542095, + 9.94497999513198, + 9.958407439159695, + 9.94136417405958, + 9.922438652637634, + 9.901656552447353, + 9.921860877933707, + 9.919742063250371, + 9.950856657756074, + 9.959886880234597, + 9.97345890456819, + 9.934831755286519, + 9.953352284092626, + 9.963666576764634, + 9.979092205334856, + 9.950588927248935, + 9.943774508742564, + 9.895453967052948, + 9.936170684971772, + 9.919132742189824, + 9.94446508374692, + 9.92950345473921, + 9.934093407131687, + 9.95582043624751, + 9.948376676428351, + 9.949675021966112, + 9.941284315906158, + 9.94269090300468, + 9.941907752788994, + 9.949280820398384, + 9.964671656237895, + 9.940403275738964, + 9.913327792842496, + 9.93224577276118, + 9.958261337980012, + 9.941601685622436, + 9.96564789182801, + 9.988802714260569, + 9.99127940522213, + 9.982884777191778, + 9.967373610102284, + 9.93692270104154, + 9.870951872727701, + 9.931051534047867, + 9.955247190030015, + 9.980005952392629, + 9.971106250359226, + 9.954719468648209, + 9.943407150010946, + 9.934579541562586, + 9.958610903097034, + 9.931505387407169, + 9.921722499499435, + 9.908237256451214, + 9.93737995836693, + 9.945925373239106, + 9.937815484389143, + 9.93347046704045, + 9.946801582233892, + 9.95450528785785, + 9.919884218085416, + 9.945006550391048, + 9.932157437350968, + 9.937922577114628, + 9.940667111486578, + 9.900670073031893, + 9.924461305579978, + 9.952967089907228, + 9.947046866190933, + 9.947633323761096, + 9.94900133507427, + 9.953688849206365, + 9.950514864879278, + 9.969054653464596, + 9.957053993419438, + 9.936457982930976, + 9.943794519827458, + 9.910716214651, + 9.95853829809925, + 9.911188997557385, + 9.927161853888585, + 9.932845131569538, + 9.962880952857951, + 9.963035979113606, + 9.955264255002552, + 9.952297557996985, + 9.940746487593609, + 9.956701277198862, + 9.910137357085915, + 9.949419276021311, + 9.909807020881008, + 9.92600149736827, + 9.949108158903192, + 9.974808238564671, + 9.934933265153587, + 9.924490149286672, + 9.909767191185535, + 9.975224186918425, + 9.962156935795667, + 9.929885591792893, + 9.961539404637241, + 9.949616794483918, + 9.964754301332468, + 9.972707024180258, + 9.923670967090576, + 9.904399881397781, + 9.950191031122607, + 9.97077776623266, + 9.979435258738413, + 9.98756893782027, + 9.9806376376041, + 9.958221545092101, + 9.950862232738528, + 9.94588475054544, + 9.963116248432117, + 9.951595131109398, + 9.92825509571373, + 9.944884617516093, + 9.928342074703373, + 9.961772215958367, + 9.971290467694404, + 9.951465803403742, + 9.934246406807697, + 9.962477151926475, + 9.93907127097066, + 9.915033274660885, + 9.927822665908584, + 9.951532251606125, + 9.957069784388139, + 9.944706325381587, + 9.92975283431889, + 9.916879374753165, + 9.916220105736729, + 9.940279737632293, + 9.971704391552441, + 9.990202838003299, + 9.938150688642535, + 9.929905829015937, + 9.97010654890114, + 9.977627074678603, + 9.989040745918452, + 9.967074498623791, + 10.000501883557996, + 9.972812172807899, + 9.949186778880556, + 9.944378641601814, + 9.941136457856398, + 9.95677195160954, + 9.950258305896694, + 9.96525931986813, + 9.966854744020262, + 9.96450048973677, + 9.95162258482723, + 9.932430606286722, + 9.96796269963072, + 9.976959204155563, + 9.972927934234018, + 9.962603718307168, + 9.97090020442229, + 9.908174278700296, + 9.951919533365103, + 9.890609458161789, + 9.925809582693258, + 9.945305677491984, + 9.954490798784624, + 9.986046635142415, + 9.961201281764568, + 9.938258065124685, + 9.963709583115616, + 9.988339892324571, + 10.000827008854444, + 9.953502673068678, + 9.95573726556523, + 9.901451014164278, + 9.905036487618457, + 9.962077091882716, + 9.948248596191725, + 9.962518524815225, + 9.960790754502279, + 9.939663154837906, + 9.934169765801876, + 9.950193556942413, + 9.938187115907692, + 9.94914208611377, + 9.949046743118181, + 9.943052617454741, + 9.944892852591686, + 9.931308785616867, + 9.941201210228456, + 9.937357272496424, + 9.985701311263346, + 9.955886895184408, + 9.9700455915457, + 9.949127672082144, + 9.95455358009459, + 9.932651854829139, + 9.935640459957424, + 9.938321432898697, + 9.960937826218856, + 9.935257649938613, + 9.955401249325774, + 9.94244095986479, + 9.953743625111034, + 9.934527859524211, + 9.957235714710027, + 9.950122093866165, + 9.996137911924933, + 9.911183757511424, + 9.92047131602446, + 9.936622869708183, + 9.919528021065366, + 9.928050279861454, + 9.907065554574325, + 9.967907189636604, + 9.98504928054149, + 9.975074736827722, + 9.942435241020474, + 9.964294770883846, + 9.943073417263333, + 9.908020168064134, + 9.962295768652428, + 9.98214373942103, + 9.959842060419911, + 9.963743934637447, + 9.973863982453922, + 9.948605037695966, + 9.986285142208118, + 9.95211592194466, + 9.937499826345585, + 9.927617494286476, + 9.956055831300992, + 9.925815497371975, + 9.923416701510082, + 9.935669864986043, + 9.993092773408149, + 9.989003019425661, + 9.956189128537863, + 9.944493884913724, + 9.936911969594984, + 9.934837350868438, + 9.918651947218146, + 9.894068878107, + 9.902118971917897, + 9.944376381196328, + 9.95425252526045, + 9.95515496075748, + 9.947042774750063, + 9.96408517672112, + 9.97728797716213, + 9.933897607360066, + 9.907683143923094, + 9.913275038350198, + 9.956374632689696, + 9.972488750488417, + 10.00835901340376, + 9.978799882724369, + 9.945566298970792, + 9.94887787946401, + 9.921855592889557, + 9.946936769022875, + 9.96027813695313, + 9.984574560252303, + 9.981556252639196, + 9.93168687697562, + 9.959107769080427, + 9.943208976593493, + 9.983130934512674, + 9.991327847655665, + 9.926904117524682, + 9.929615806216919, + 9.930091656250505, + 9.954743459521925, + 9.917618641569698, + 9.982853140152166, + 9.999046923018929, + 9.981502205853031, + 9.959711568888665, + 9.969743771488533, + 9.940309265599785, + 9.940352116603545, + 9.935847404187104, + 9.944566076444909, + 9.962694262654601, + 9.948473647184972, + 9.94057678076404, + 9.93043849584482, + 9.938359616159886, + 9.949825566726464, + 9.934161268480805, + 9.926039608303695, + 9.937573765954026, + 9.979293287364685, + 9.983113692725428, + 10.008238291975065, + 9.958208836613032, + 9.971222215892727, + 9.947476349761907, + 9.975715180458872, + 9.967967592704632, + 9.957069981139803, + 9.924078432657469, + 9.944428830749207, + 9.916503103272499, + 9.968804173065879, + 10.002400721112659, + 9.961470952223802, + 9.961634397746934, + 9.968682047836195, + 9.992442529760236, + 10.018137083445524, + 10.002617558851295, + 9.964922914133446, + 9.958049137402451, + 9.974831938588848, + 9.94092849999638, + 9.941308231122793, + 9.988347428227685, + 9.946564122574069, + 9.9382954744194, + 9.924498995037617, + 9.948444640903475, + 9.935417913143887, + 9.94823786792474, + 9.93034248207153, + 9.952609709523957, + 9.969957282777834, + 9.955134967331187, + 9.9196365377123, + 9.89360063519766, + 9.921159327594719, + 9.950870665894936, + 9.953557360035909, + 9.967862087997522, + 9.94993065129397, + 9.955297689302384, + 9.93315168048656, + 9.940077064728369, + 9.96766663490206, + 9.977358181009086, + 9.949878965015678, + 9.968425828931727, + 9.984595687466047, + 9.954097255363537, + 9.957411182040385, + 9.954971249151871, + 9.961711957966479, + 9.97725698112592, + 9.956582979345987, + 9.92705371211335, + 9.957001005955984, + 9.942791869520411, + 9.935553442191631, + 9.909980342987762, + 9.959137044825216, + 9.977562219767506, + 9.932200496981405, + 9.939683333905686, + 9.93317344470058, + 9.9776450601772, + 9.981273446056372, + 9.93890459010877, + 9.957249606529993, + 9.946282877365963, + 9.985289511401874, + 9.971423083389606, + 9.973798889303685, + 9.962067970147338, + 9.957984869761598, + 9.949409858938058, + 9.95257850493505, + 9.942137170769156, + 9.969611201538498, + 9.966077079910729, + 9.90906303397579, + 9.91895050854157, + 9.9090117324731, + 9.912516548482307, + 9.922044116810394, + 9.939452687504417, + 9.930504534734707, + 9.909373794519887, + 9.907480535818259, + 9.931259844131114, + 9.968576399514397, + 9.919605256962205, + 9.905511453739724, + 9.91528133458207, + 9.964955991553412, + 9.948930026111793, + 9.98797572988279, + 9.940096417143366, + 9.951047881516564, + 9.937971475475894, + 9.913276046811278, + 9.947981932881438, + 9.931185663247481, + 9.943160676387304, + 9.981105472033613, + 9.971846041733599, + 9.924402182844974, + 9.952505542472776, + 9.973292291428162, + 9.965664011791407, + 9.970645053709266, + 9.954516276498575, + 9.914838641514148, + 9.909629743057183, + 9.91710409483631, + 9.904976408437722, + 9.929080008640748, + 9.95099058631109, + 9.941167442842701, + 9.920704724764425, + 9.937842369220697, + 9.931377324876072, + 9.936482683669096, + 9.935909512872488, + 9.962708306279412, + 9.947296869102683, + 9.941123436795666, + 9.92208545466528, + 9.937670393477498, + 9.986859368060918, + 9.947254797021792, + 9.953041582236636, + 9.951609154686302, + 9.952344984331148, + 9.976282995657227, + 9.964373935834736, + 9.949968754728998, + 9.972587089037285, + 9.971804833212357, + 9.945676052605162, + 9.954812971224197, + 9.940213427994417, + 9.936103616492423, + 9.979289811538889, + 9.977754261414649, + 9.997654336176343, + 9.93512847591714, + 9.953581038941753, + 9.974609275161189, + 9.943914516541177, + 10.000746954045368, + 9.99358349390995, + 9.961618941900989, + 9.931366331137395, + 9.954621905679426, + 9.970441776995036, + 9.917296781014564, + 9.926726294199721, + 9.95563979786791, + 9.970802623008796, + 9.955979429252807, + 9.90595548003027, + 9.90209418245815, + 9.911069138523812, + 9.931144133547917, + 9.945803659868035, + 9.927356005236685, + 9.90861780711408, + 9.962559610124849, + 9.936740101806532, + 9.95573259419426, + 9.916815056656944, + 9.921867657925322, + 9.891200098055858, + 9.89401401456114, + 9.906265067882954, + 9.903624010537985, + 9.922710598340686, + 9.925904903117686, + 9.917747479009861, + 9.928714438204583, + 9.908697925888905, + 9.959686952807026, + 9.941573491573424, + 9.93802065761271, + 9.940789890168329, + 9.925615208871607, + 9.938409742604641, + 9.947876902705495, + 9.969140688602668, + 9.968048142318777, + 9.961876317454472, + 9.958939473299568, + 9.95996624284517, + 9.944902049956756, + 9.966576123126965, + 9.980660913523119, + 9.934940266056623, + 9.920479861768703, + 9.946018013788718, + 9.916748151406296, + 9.94182377983282, + 9.927985856754592, + 9.958918010928537, + 9.94699187883815, + 9.947761804114574, + 9.967507211378466, + 9.94965272569558, + 10.001196953540656, + 9.949102769488704, + 9.943639522992118, + 9.910953914837178, + 9.931206345989477, + 9.956743943855047, + 9.991360772247429, + 9.939496251057683, + 9.980707245746352, + 9.958086455352845, + 9.969348121630304, + 9.95338997477472, + 9.964161853877703, + 9.941826051652535, + 9.944201537513925, + 9.96065072520341, + 9.949654972238024, + 9.978281899828396, + 9.936599386131041, + 9.929270508064644, + 9.91310487558911, + 9.94318922499172, + 9.973319670591815, + 9.965084528587948, + 9.958669518585248, + 9.997896114489604, + 9.944681458089825, + 9.956722961851076, + 9.946768843007865, + 9.956500804022008, + 9.990293225982125, + 9.965600268276454, + 9.949785960563524, + 9.979007253949815, + 9.99853454694612, + 9.982999135362517, + 9.939638776447863, + 9.929456603721698, + 9.921923634300086, + 9.942194757832102, + 9.953306418139846, + 9.973976230886626, + 9.960464317217363, + 9.939577713617597, + 9.977476758480934, + 9.939409990216788, + 9.953637387214068, + 9.928894780468628, + 9.970875271267937, + 9.943317713803351, + 9.969275279590963, + 9.914192231248082, + 9.961136891691725, + 9.945851169436134, + 9.927811704712425, + 9.929234136933697, + 9.927954877211008, + 9.931268135113541, + 9.918781866148986, + 9.909906223709521, + 9.928265933310588, + 9.87631160798306, + 9.906697765175053, + 9.925340612313388, + 9.917437385639936, + 9.95828956761874, + 9.962331125325795, + 9.989609027393024, + 9.977911776660275, + 9.934730575874344, + 9.939994279034963, + 9.927615333910126, + 9.96750446972247, + 9.968437033659018, + 9.954323629401086, + 9.93617252224718, + 9.960050343653917, + 9.964879905932987, + 9.941546871416268, + 9.945369837015276, + 9.942915153509176, + 9.995130103042014, + 9.997899616514164, + 9.97180508527011, + 9.949963379591841, + 9.937646464044716, + 9.924071586629132, + 9.962274439263682, + 9.952229625152826, + 9.948034768366789, + 9.919521649792493, + 9.958930881383809, + 9.953824418197463, + 9.931787128063778, + 9.930180647979745, + 9.940461082874489, + 9.964811085302664, + 9.96065260677059, + 9.961002902111579, + 9.94799590282333, + 9.933975323121421, + 9.938492292101644, + 9.942440264978437, + 9.972234521660267, + 9.99507196636204, + 9.975225668234552, + 9.961601270831919, + 9.948900455271994, + 9.89308739699078, + 9.957949739916954, + 9.94158598209467, + 10.01608386096839, + 9.954429005306032, + 9.946450730248165, + 9.927789128928254, + 9.922602666626272, + 9.97663391162057, + 9.947399076658666, + 9.94842478212677, + 9.948321649204384, + 9.960828593114947, + 9.965370393205982, + 9.931438474271536, + 9.972874293430324, + 9.970979985638996, + 9.947555181426006, + 9.927856116668057, + 9.970649731338332, + 9.938964435969005, + 9.92063251941483, + 9.942822065302801, + 9.928452898060366, + 9.917576130983145, + 9.926873154609186, + 9.962241698393694, + 9.954253587413309, + 9.911029320202323, + 9.93373900911995, + 9.979770468297898, + 9.910343071818511, + 9.927291323054451, + 9.926250915282218, + 9.957076122724539, + 9.977587344382632, + 9.97825416260959, + 9.984691788146362, + 9.9571434233503, + 9.938749007487013, + 9.934984706523089, + 9.983623019172349, + 9.939913008831262, + 9.918162893438234, + 9.950069915547648, + 10.016481200195669, + 10.009558812320508, + 10.024681595134263, + 9.990746379140933, + 9.937363402541326, + 9.9590482735411, + 9.993087186472039, + 9.968322003205468, + 9.978506733146633, + 9.971335292860276, + 9.917574716623292, + 9.943362013752857, + 9.969577293459789, + 9.966201136248184, + 10.021068621102918, + 9.979697952281466, + 9.963480593743979, + 9.921604862863516, + 9.97062487108695, + 9.955476370809592, + 9.933641825503868, + 9.92758198841282, + 9.938942597337324, + 9.912701642805978, + 9.955487786885891, + 9.959086943191231, + 9.937486527200754, + 9.950361255937613, + 9.967538728594372, + 9.946174152862142, + 9.943661152963367, + 9.967497251228309, + 9.972611163790594, + 9.946695128330354, + 9.961931264178997, + 9.956517823698638, + 9.976110127055444, + 9.984003743241557, + 9.958352400815345, + 9.986293706553393, + 9.945249026441532, + 9.944891551297381, + 9.92170226453205, + 9.927141138382014, + 9.971135188205063, + 9.919735982469094, + 9.934275179141622, + 9.956230672145868, + 9.931320730246828, + 9.931690410264158, + 9.976127144140136, + 9.979889476220892, + 9.974646208433779, + 9.951092986089929, + 9.954714210636835, + 9.963525998341419, + 9.970109428392668, + 9.962127938796188, + 9.925345664238751, + 9.936845285109307, + 9.944107042204209, + 9.946423816545595, + 9.91521179399111, + 9.928059372971507, + 9.917863571372369, + 9.918439399989069, + 9.967450838474534, + 9.996454307683276, + 9.966002284720695, + 10.001812494278768, + 10.006934761426852, + 9.950709988754507, + 9.944360527626337, + 9.949807827727053, + 9.945228232317312, + 9.967544171010642, + 9.916859144169516, + 9.934375824478844, + 9.926673892092948, + 9.965484203949849, + 9.955008236453338, + 9.96648448292567, + 9.952482700883577, + 9.959497325969277, + 9.9699677839047, + 9.952563334472975, + 9.978028376552546, + 9.916893682526617, + 9.918065096047206, + 9.905101566031517, + 9.972523958091058, + 9.967200880880029, + 9.951820322827691, + 9.96446188528207, + 9.97046215598869, + 9.954407492384506, + 9.98006142799111, + 9.98232544697641, + 9.972169976497819, + 9.9142920200885, + 9.975445709817528, + 9.970001316755713, + 9.980289958518902, + 9.969972416864275, + 9.9387586873039, + 9.969094667270523, + 9.953364792587232, + 9.924436286844115, + 9.87391697643617, + 9.904705074014709, + 9.964020267172303, + 9.95494291180749, + 9.963218309160185, + 9.958947164759852, + 9.975991429799942, + 9.977321935172014, + 9.980022564412065, + 9.94277557350453, + 9.954810025535823, + 9.948853798833028, + 9.986809724628054, + 9.972075148619377, + 9.957044033066692, + 9.936836405450594, + 9.925507423255851, + 9.943457650595585, + 9.950228862907782, + 9.985327704224353, + 9.988534528729959, + 9.96505066548419, + 9.960264624461116, + 9.95622874424155, + 9.948494195372481, + 9.930546330090541, + 9.949554818121873, + 9.953331341992453, + 9.982115831076978, + 9.996764239596354, + 9.915895832453392, + 9.958967222450777, + 9.946925906080093, + 9.940445500587153, + 9.91786157568381, + 9.942611805055341, + 9.952861782345936, + 9.978492491443836, + 9.952330151668942, + 9.974537934457121, + 9.991947024760854, + 9.97014836046392, + 9.964417326489217, + 9.97757254432219, + 9.934738073110928, + 9.969089219073552, + 9.930379357048064, + 9.953476994288721, + 9.946557214298416, + 9.983088324575814, + 9.982450847805609, + 9.933299207471526, + 9.947708056385872, + 9.952335115983193, + 9.919698118334102, + 9.962815588959032, + 9.929588945861495, + 9.92026293615634, + 9.943042540936007, + 9.987933207467645, + 9.958203117514103, + 9.936997117133327, + 9.90770846668682, + 9.940080461117061, + 9.928389281720554, + 9.94544983466293, + 9.943504271046576, + 9.941468618747471, + 9.938704385871198, + 9.95871772356963, + 9.97536985485524, + 9.964485530752142, + 9.925829589281125, + 9.9287130610943, + 9.924546688308093, + 9.903506445244938, + 9.941005219272213, + 9.951278387316371, + 9.907130609390977, + 9.91158487404636, + 9.907111616816342, + 9.946433589635529, + 9.95212358560042, + 9.946436433547493, + 9.933372852550805, + 9.930739634846189, + 9.936375911085522, + 9.941098071138107, + 9.958513010806582, + 9.918664398618796, + 9.94769994767044, + 9.989924063566834, + 9.979659906650204, + 9.9688054667139, + 9.931506450313352, + 9.976712281314256, + 9.938811381792805, + 9.955786011233293, + 9.918114224042723, + 9.902647981589643, + 9.949486250539021, + 9.951004609577748, + 9.951015323835685, + 9.95365716942672, + 9.94543243133184, + 9.902316325580193, + 9.940316472208341, + 9.930981630141115, + 9.953319295258686, + 9.955315612446594, + 9.894064523813572, + 9.909350196100855, + 9.909494126721857, + 9.912795598263015, + 9.917379938209463, + 9.932788805045499, + 9.91752857421363, + 9.940374333072006, + 9.963857517575216, + 9.94640851610471, + 9.95452729798187, + 9.981815987255818, + 9.949825704252437, + 9.962232485852798, + 9.95854194272891, + 9.891017562288228, + 9.923999456336794, + 9.926787850010575, + 9.931019474228687, + 9.970893436005667, + 9.962627114428516, + 9.932339790215725, + 9.927242206415075, + 9.941996978035055, + 9.909656752641345, + 9.943124778481767, + 9.952117314024935, + 9.935364681916557, + 9.961810163858521, + 9.951881123423249, + 9.955358703164832, + 9.939237148503908, + 9.902079548409564, + 9.928395973304834, + 9.939417174744214, + 9.967319077560058, + 9.930571678451747, + 9.948333249951755, + 9.946079824968196, + 9.940229877507077, + 9.96556247634493, + 9.97774788726181, + 9.954357639661604, + 9.958498699921364, + 9.922168693876422, + 9.896539824295735, + 9.898465983254543, + 9.899754447783444, + 9.97284059489982, + 9.966551744573488, + 9.945409801565999, + 9.961183060137545, + 9.965244078324009, + 9.943220835320627, + 9.955837585464751, + 9.930353626986747, + 9.952388678477346, + 9.9464104024401, + 9.947184084699927, + 9.959842714698144, + 9.94563920914098, + 9.945716127233874, + 9.936108421520606, + 9.93116005169094, + 9.912346338054189, + 9.908175697873814, + 9.89928239256356, + 9.911345391341161, + 9.954711742711199, + 9.978866084054749, + 9.980715909950664, + 9.969345620630088, + 9.95015451576627, + 9.918033036319633, + 9.936572426832795, + 9.948023436431944, + 9.91191326688223, + 9.91166065318685, + 9.878386603014754, + 9.94099249587123, + 9.955979348540222, + 9.945572433938013, + 9.987310250576309, + 9.970873964295064, + 9.94049887146194, + 9.95639252885185, + 9.949482109438987, + 9.91537836288029, + 9.952014958296992, + 9.947973260015308, + 9.932298286678465, + 9.996131969986413, + 9.963030408242929, + 9.957054089290947, + 9.98343460191071, + 9.977641276360204, + 9.95065197276601, + 9.964576006131644, + 9.951857771006429, + 9.919977558627378, + 9.970747760793014, + 9.937892137138101, + 9.946254692182082, + 9.899653723258847, + 9.904337696688671, + 9.934272160454071, + 9.95070640813381, + 9.981251971652476, + 9.941454941986574, + 9.973431284561823, + 9.955763535938145, + 9.930998247467423, + 9.96673768392061, + 9.976180201028052, + 9.959294021370482, + 9.936638590390833, + 9.962482035935434, + 9.953735695521896, + 9.966838941637619, + 9.93055306740962, + 9.957964345190616, + 9.963805354404556, + 9.934308555461186, + 9.97966354627097, + 9.953698292871554, + 9.903877099684243, + 9.897235841941407, + 9.962220329528169, + 9.949567443531668, + 9.945613522790154, + 9.950752814227716, + 9.98959969400884, + 9.932374845830592, + 9.961915892135021, + 9.93003567592565, + 9.962872468230284, + 9.925407342041504, + 9.962078284818277, + 9.983961426221615, + 9.958744199724144, + 9.959280261750493, + 9.954298972885363, + 9.95572281064191, + 9.947343217978801, + 9.958829452594298, + 9.989144814523211, + 9.930845555506297, + 9.912535035970734, + 9.948806829899258, + 9.952503999777859, + 9.959786309969642, + 9.979477776342897, + 9.981386876814446, + 9.949657390609023, + 9.945889050353019, + 9.905042402663106, + 9.933070127632691, + 9.88358297186078, + 9.920773535823873, + 9.91523130531598, + 9.953558387547922, + 9.921777216366628, + 9.946995669021765, + 9.929554282294129, + 9.955969546782514, + 9.974079925051491, + 9.964117743016201, + 9.99341614416185, + 9.983716031451703, + 9.972867337478334, + 9.989487205176038, + 9.989803107660695, + 9.968359975823619, + 9.992677313072667, + 9.99354587811669, + 9.96090001319069, + 9.988003586495255, + 9.986338909194362, + 9.96073999653252, + 9.925259308371519, + 9.939488315463489, + 9.922067970175739, + 9.957565834327195, + 9.968477409832802, + 9.986669493654478, + 9.957731412724145, + 9.918945427715418, + 9.930221473742098, + 9.934552108545535, + 9.98277026232032, + 9.959389324392248, + 9.953091026545682, + 9.937126936560954, + 9.959109897184224, + 9.98639261417432, + 9.986161736184386, + 9.957353814594063, + 9.934615154494434, + 9.930938237223106, + 9.96410400078236, + 9.945244020010517, + 9.934764895609078, + 9.988406275275889, + 9.93275107807641, + 9.9325981436578, + 9.974407415046874, + 9.98236258058087, + 9.970600550217233, + 9.93738484461217, + 9.968811408017961, + 9.928499572364773, + 9.968210638845505, + 9.936245437934952, + 9.944003780448089, + 9.933455489112266, + 9.97554189472665, + 9.965986526476643, + 9.953412717132723, + 9.934196865761475, + 9.963972340672951, + 9.976515449576267, + 9.949385680433608, + 9.932980073293235, + 9.91866322722688, + 9.955108693294273, + 9.961548501669482, + 9.987826147746127, + 9.930385663760015, + 9.946424784115097, + 9.908329926119658, + 9.916515994615215, + 9.900710598160874, + 9.946473899304376, + 9.97520692992772, + 9.939635986289854, + 9.954241682145929, + 9.960623092524484, + 9.936062638999056, + 9.93430124302755, + 9.914115110143948, + 9.964966626187136, + 9.975593680824968, + 9.960970968773227, + 9.905106870836638, + 9.890180905200584, + 9.927337468098871, + 9.919962904812035, + 9.910968352416337, + 9.94438516699804, + 9.98898755439969, + 9.971243123237274, + 9.958839012640691, + 9.935508780102083, + 9.905875365218566, + 9.931336784726957, + 9.929161051333676, + 9.915966991996024, + 9.915744868575326, + 9.94253516959697, + 9.936478998059481, + 9.89525812853158, + 9.948429515462088, + 9.961279066717484, + 9.962587550509802, + 9.976202064244099, + 9.97878676707457, + 9.949652346123974, + 9.954405430699635, + 9.923761315851504, + 9.932911105971144, + 9.939134977554948, + 9.927036372101629, + 9.914590552081892, + 9.929484149659816, + 9.952886249157094, + 9.97790659031227, + 9.980104445355552, + 9.926999684887399, + 9.970993244717274, + 9.97205555345866, + 9.945556437068737, + 9.952210372188409, + 9.933603408626315, + 9.916153196184904, + 9.950477690225304, + 9.971828048245662, + 9.94987558962984, + 9.970740690793036, + 9.96773634450648, + 9.964570422817834, + 9.961859997193105, + 9.901883301793156, + 9.912530180799424, + 9.935956330426592, + 9.974142288774994, + 9.961068672737783, + 9.95821558988274, + 9.961814548343986, + 9.879150758256266, + 9.929582205534793, + 9.911443901780213, + 9.930163156633554, + 9.964658269272132, + 10.023461172227679, + 9.975642822810403, + 9.962886404022882, + 9.952660606911628, + 9.923068911390647, + 9.94620221744662, + 9.942776125482634, + 9.962803610809171, + 9.944300664415422, + 9.943397132272349, + 9.902700807096666, + 9.94589042077237, + 9.916562174294738, + 9.909084997843227, + 9.89510847147565, + 9.903156299093503, + 9.932729896981074, + 9.965499826071929, + 9.97340720860692, + 9.975928918630196, + 9.923211864989344, + 9.908023293977054, + 9.9188150841398, + 9.869438457065485, + 9.922763330377935, + 9.942313294362332, + 9.911920256853657, + 9.88959191981128, + 9.890797446563028, + 9.91956579399621, + 9.939846793043372, + 9.945262021862616, + 9.940944889353556, + 9.93521478229758, + 9.945518269712034, + 9.956801719466482, + 9.959972933159671, + 9.945737881889968, + 9.932306369583653, + 9.906392509728157, + 9.929166359706384, + 9.968210628917971, + 9.939790391257597, + 9.969720072833642, + 9.981298766013351, + 9.970642395373346, + 9.979581602421048, + 9.96475789681905, + 9.971764209711086, + 9.963120591089135, + 9.952243538525645, + 9.94650033354137, + 9.929417025076397, + 9.943694041883607, + 9.947984623294131, + 9.978499857871784, + 9.960406341271371, + 9.98337681453299, + 9.961437130373472, + 9.934766278443506, + 9.946975961844103, + 9.951882552136084, + 9.952203433192862, + 9.950670173648613, + 9.899553678932614, + 9.920000568739324, + 9.945022614576105, + 9.944332168815604, + 9.948402939761705, + 9.950587615583817, + 9.962355012413965, + 9.985787786441017, + 9.996551417024781, + 9.960113093864777, + 9.950645547398679, + 9.96352717690099, + 9.957915868880594, + 9.956394336132563, + 9.957543742606317, + 9.954950289066625, + 9.946847643521382, + 9.953063177470263, + 9.947017789175032, + 9.922410227339752, + 9.958874306768132, + 9.941251086362344, + 9.972100459892083, + 9.958698995869028, + 9.93767811957942, + 9.969288765772509, + 9.917785395824234, + 9.924023049287163, + 9.955687875485598, + 9.92413289527381, + 9.912571216817135, + 9.94368472033582, + 9.951340119014924, + 9.946059313096937, + 9.914380233467922, + 9.960285083118382, + 9.933694457326732, + 9.952149871677275, + 9.949347762707925, + 9.982079074075886, + 9.917326668191459, + 9.905872999374248, + 9.943918683090518, + 9.932605568710056, + 9.961362684269332, + 9.935489742357632, + 9.901172651461236, + 9.906169338131708, + 9.900708277795422, + 9.9632763252479, + 9.933038586029783, + 9.912603054435266, + 9.96895005051215, + 9.949245984626117, + 9.908256496291132, + 9.977641612703025, + 9.949912632190452, + 9.944088933127192, + 9.988576412158414, + 9.968012023972694, + 9.921913839501705, + 9.943142105523068, + 9.918187575143419, + 9.959212392877017, + 9.973152690528748, + 9.975938207878077, + 9.942124406741508, + 9.933680473938313, + 9.973091043194609, + 9.982125003984153, + 9.919298221589871, + 9.954854195975162, + 9.976618375857438, + 9.94929796016038, + 9.955089425573833, + 9.925900376876571, + 9.941312621638502, + 9.930686642103069, + 9.907158356215213, + 9.916692909132358, + 9.932384492376155, + 9.958743253061613, + 9.959782830422919, + 9.947707365130157, + 9.970196204740612, + 9.934829403178792, + 9.959157071709514, + 9.894351496038514, + 9.917477785621102, + 9.88905960754998, + 9.918834991477565, + 9.955997772008214, + 9.962675607383456, + 9.947937495700211, + 9.931467333891916, + 9.917109361058678, + 9.951717067053472, + 9.956879858085237, + 9.920049088737766, + 9.919426231884223, + 9.963585665852705, + 9.961707265337804, + 9.982642317100366, + 9.928620838323397, + 9.91714198059471, + 9.95181937508032, + 9.941738015908163, + 9.955851985435034, + 9.939020291182747, + 9.950230906863922, + 9.957541827092408, + 9.975635851781933, + 9.951975088619092, + 9.983610183647663, + 9.971786086120618, + 9.952242520009724, + 9.94648039574855, + 9.90423208883673, + 9.911062188895981, + 9.982283417317294, + 9.94986837283855, + 9.940238210638636, + 9.947708183174857, + 9.948652483491728, + 9.923085677639067, + 9.909202926681502, + 9.911287484811577, + 9.910593909699845, + 9.904001847866294, + 9.950877766256927, + 9.97819493704169, + 9.963933219582778, + 9.979067306353194, + 9.929778727571826, + 9.94131949370237, + 9.983229679789023, + 9.984901254634803, + 9.99762693331218, + 9.999531318721198, + 9.951928887013406, + 9.93764583151472, + 9.920268356429311, + 9.957610837370334, + 9.931742050181004, + 9.956775677712667, + 9.94964927648074, + 9.958878121093722, + 9.950458176543167, + 9.930852152422501, + 9.933314285032742, + 9.947220852077166, + 9.912983016686006, + 9.878915066487068, + 9.923850970164636, + 9.964530789567918, + 9.893993469201074, + 9.924443160454773, + 9.919566226850115, + 9.933291885414562, + 9.958492794056346, + 9.942043876902376, + 9.911858808823313, + 9.861252676621469, + 9.8239794725381, + 9.860304377064509, + 9.885653391068068, + 9.893309209980412, + 9.911104949644429, + 9.882242381959234, + 9.843265627943081, + 9.831078446309482, + 9.84612987819225, + 9.864491027527333, + 9.879372728272937, + 9.859309610195234, + 9.839792531367438, + 9.859704233512897, + 9.857565328787476, + 9.884725600096035, + 9.894921108626304, + 9.912276003718118, + 9.92209312791802, + 9.923750002418439, + 9.903719067111371, + 9.914636980623268, + 9.955728460206343, + 9.964880557840965, + 9.956063937969263, + 9.968668714685217, + 9.944070198665768, + 10.003932312057348, + 9.957128513870892, + 9.97185062835824, + 9.950813479715524, + 9.944919553306354, + 9.944842136681762, + 9.957690330254351, + 9.929701809657264, + 9.934518695324405, + 9.929193151294363, + 9.948012842630943, + 9.916533122941557, + 9.90485395721477, + 9.938354015390981, + 9.967346359254789, + 9.970102564729372, + 9.914513501879487, + 9.97226077925589, + 9.938397228765064, + 9.942975563996669, + 9.965740921453543, + 9.987957179697691, + 9.960937604348018, + 9.928721006229837, + 9.94053520258658, + 9.9417247002603, + 9.953414698421316, + 9.98671442039485, + 9.970274639632704, + 9.942391762262908, + 9.940405125629619, + 9.974967931188555, + 9.963350605183324, + 9.988569868196336, + 9.990074129398595, + 9.954641790262723, + 9.963999459003315, + 9.95896576989073, + 9.937567931420594, + 9.963723816003878, + 9.959075051908878, + 9.893252339057987, + 9.93028332171366, + 9.965705992823851, + 9.972572740757931, + 9.964972699097618, + 9.986131449505828, + 9.936235767414551, + 9.948863885578175, + 9.904651988402433, + 9.915515110117745, + 9.946796272675542, + 9.917022323323431, + 9.912695856188368, + 9.900565341784487, + 9.910672054612204, + 9.96188032178315, + 9.940309857743866, + 9.945427348729522, + 9.973258552165015, + 10.015515612482242, + 9.955555470599787, + 9.946639888171916, + 9.955915754626693, + 9.978166344981547, + 9.967746869112041, + 9.983937202360867, + 9.958381872081791, + 9.93760510641761, + 9.95026828526336, + 9.937841451638521, + 9.929494992996624, + 9.952618573079441, + 9.921674197583219, + 9.920689372427681, + 9.95509543316306, + 9.985061944086189, + 9.960884293805826, + 9.92486672812625, + 9.91856624862116, + 9.957414096178434, + 9.987556866212696, + 9.962714597485975, + 9.980437756890142, + 9.945708825974586, + 9.940610520845665, + 9.931116404967831, + 9.95022034788811, + 9.96127074729879, + 9.961348389550334, + 9.9573839889926, + 9.93437364181888, + 9.93639970815216, + 9.947145738391017, + 9.957822707553035, + 9.95215051495369, + 9.97423464434334, + 9.978909303743631, + 9.99370960592195, + 9.992096402762979, + 9.984898744012533, + 9.912529690478733, + 9.928129598506567, + 9.931952960716279, + 9.94631353875913, + 9.938721422843352, + 9.9344060855786, + 9.933029388408311, + 9.939392509770299, + 9.921711619645354, + 9.902237467477875, + 9.924310016639765, + 9.918549591585705, + 9.909471598769162, + 9.913639008132801, + 9.91488273584458, + 9.918092432066658, + 9.901591124950494, + 9.945993307070914, + 9.980355211635963, + 9.989407293319086, + 9.967307261364715, + 9.960965848107428, + 9.944619641043678, + 9.925747957160574, + 9.956703370906137, + 9.955749426028483, + 9.910822569519363, + 9.962612471293559, + 9.96743739794588, + 9.921864743630039, + 9.927415548300894, + 9.959233291383306, + 9.973155153597302, + 9.964038420156962, + 9.97358594624713, + 9.948982448466921, + 9.960615856433275, + 9.964514473843376, + 9.959662106278621, + 9.964905383275601, + 9.922388953722002, + 9.939394151772296, + 9.958585183163244, + 9.984072890092921, + 9.981641341225428, + 9.947503617497308, + 9.945182887818255, + 9.926562746130728, + 9.963338430012891, + 9.929687162096918, + 9.976804500794987, + 9.956438771937401, + 9.930856558858297, + 9.923824788390672, + 9.96402721054885, + 9.942112982698461, + 9.915882714563729, + 9.944619396027658, + 9.973498625934086, + 9.955528396930703, + 9.959619807622955, + 9.93168477111365, + 9.92005228617086, + 9.991469576079682, + 10.001752541121947, + 9.989281513236454, + 9.99408068938717, + 9.985785859560213, + 9.974532128100272, + 9.969467047061102, + 9.949946710257795, + 9.954089334893615, + 9.941025449048858, + 9.950875200540303, + 9.956703896797082, + 9.907806707542537, + 9.91288501102945, + 9.920800764137686, + 9.967707454286826, + 9.956703781158426, + 9.949104237713119, + 9.973629174754645, + 9.925550691032203, + 9.912979875886048, + 9.95994024862912, + 9.967009894476853, + 9.98915529618705, + 9.951300690585224, + 9.959491006926092, + 9.940756259481518, + 9.973871116350589, + 9.945684298177506, + 9.947583134637036, + 9.953615014814366, + 9.954099613558228, + 9.918048448607859, + 9.903275971337841, + 9.926310350735143, + 9.92073758298326, + 9.937110328828677, + 9.930400848156163, + 9.930968591290721, + 9.950170181282797, + 9.949933297830645, + 9.95063996318681, + 9.933252148363657, + 9.96492319874502, + 9.944901012920708, + 9.950715550065048, + 9.963026889377748, + 9.890653646128337, + 9.928315857137736, + 9.8952498864123, + 9.915518635186471, + 9.920102429305972, + 9.916196823120403, + 9.943541377165793, + 9.962913425586608 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 1", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 9.962913425586608, + 9.975642604212574, + 9.972565179320402, + 9.940082743589347, + 9.953570714409272, + 9.944734593068677, + 9.984758758408061, + 10.00695187507671, + 9.928273840091304, + 9.935938728513745, + 9.964915729830697, + 9.965153839440354, + 9.944331651125148, + 9.921647486127881, + 9.925711723908103, + 9.960111543647807, + 9.965544104892818, + 10.003203023787036, + 9.942450805881395, + 9.928710094800865, + 9.929486050919092, + 9.931394551981349, + 9.948771043144978, + 9.91934831622071, + 9.939058444205362, + 9.934512796412447, + 9.977179452955399, + 9.944274019646704, + 9.967274649016135, + 9.93052119081981, + 9.9639709062564, + 9.957241105733903, + 9.963315843977988, + 9.958304862855808, + 9.967747153609517, + 9.90478750245824, + 9.941684778051089, + 9.960964303598393, + 9.957480105207027, + 9.984477623516957, + 9.953316344574398, + 9.955301564416594, + 9.896960198151211, + 9.856353271133942, + 9.951279229464406, + 9.904410258777604, + 9.949683028442912, + 9.957882757873493, + 9.943707146215466, + 9.951417024582506, + 9.950509168817765, + 9.964659275146015, + 9.936093405579996, + 9.942746399099878, + 9.932256082858334, + 9.959689252963429, + 9.975620729525364, + 9.958397729459636, + 9.969622444449142, + 9.979867435029488, + 9.96872287802659, + 9.985662026140991, + 9.98056670474807, + 9.947802747778713, + 9.958375687192662, + 9.940847581960666, + 9.94517691800743, + 9.930387004053216, + 9.939050322320607, + 9.946317019119503, + 9.940811644701842, + 9.936133066686466, + 9.93301095130989, + 9.951514756914206, + 9.95422433155882, + 9.929199596702823, + 9.932353905445057, + 9.94630793516456, + 9.94820662739933, + 9.963397770996249, + 9.956802573217507, + 9.975371922618589, + 9.993762888196127, + 9.991433908651038, + 9.964329195532692, + 9.918176707924117, + 9.919059891444787, + 9.920308771557794, + 9.930597222074248, + 9.96096483484826, + 9.91454759660251, + 9.956730011723185, + 9.956209953652422, + 9.923893651176197, + 9.944494407779196, + 9.94426103173074, + 9.914484539168747, + 9.896030135992412, + 9.910727229461866, + 9.916784452244581, + 9.962749242680363, + 9.90673383781924, + 9.932858283105967, + 9.958901643799958, + 9.939082697303286, + 9.94747985326334, + 9.931360992177812, + 9.972784922741848, + 9.932270129135668, + 9.943188688364469, + 9.945192671022102, + 9.944156823346525, + 9.972348794097071, + 9.968736011098533, + 9.988556116748555, + 9.979255154154984, + 9.945872931671854, + 9.95156731954278, + 9.943547399805288, + 9.961906957510957, + 9.956333171153805, + 9.99877864062969, + 9.929501118078763, + 9.928659459085871, + 9.969027612111773, + 9.960204966371538, + 9.979968107924941, + 9.951176197440416, + 9.96305419090844, + 9.9717892007071, + 9.980001543474096, + 9.987297480589113, + 9.960058103193294, + 9.977647579009895, + 9.957520982410108, + 9.977556875361117, + 9.9780968935468, + 9.948598740847173, + 9.928461297548667, + 9.930500299087848, + 9.957778988996631, + 9.959147159181963, + 9.961751311204258, + 9.982712416942606, + 9.989372974059169, + 9.98541126845286, + 9.964741110551369, + 9.980745741776248, + 9.961352315565899, + 9.956950294344324, + 9.955927409010055, + 9.965972033006139, + 9.967457440973337, + 9.945028900670238, + 9.929450961281463, + 9.940811365573062, + 9.95843483797369, + 9.957819304766952, + 9.952429696755598, + 9.946827794791567, + 9.972475701775616, + 9.952920159472676, + 9.976813815329667, + 9.926764744862895, + 9.91241287632654, + 9.889626657975635, + 9.931946159294274, + 9.917801855886902, + 9.936056308021847, + 9.906330062541018, + 9.938066625302442, + 9.9285241193851, + 9.920735301387069, + 9.998112482222815, + 9.958535115863832, + 9.94516611535778, + 9.938805944088806, + 9.936207881100277, + 9.939143939764184, + 9.942827476460764, + 9.927940094031829, + 9.953821788888966, + 9.95299658243605, + 9.966717667089519, + 9.977832115572914, + 9.96941965967454, + 9.940686771646707, + 9.934633160618416, + 9.918091349855345, + 9.941394753360214, + 9.946395738871164, + 9.985933613588534, + 9.9788278141018, + 9.938775167695846, + 9.957484278936017, + 9.933991602038475, + 9.958310041009481, + 9.956354613553264, + 9.934825263977064, + 9.917926722539224, + 9.955470107319659, + 9.993600132874317, + 9.962968082080216, + 9.941337583302424, + 9.928344679621796, + 9.92467398173332, + 9.9425438722827, + 9.951102399609411, + 9.95657697496764, + 9.942280580222839, + 9.930715276985431, + 9.949536735365644, + 9.961451116839555, + 9.986397823095796, + 9.991785380602677, + 9.95233970319183, + 9.944361187799412, + 9.937972321274614, + 9.968098477403409, + 9.978208484654898, + 9.97575800765609, + 9.940017639334918, + 9.95026976451918, + 9.942550229631898, + 9.942158528586976, + 9.938596879001496, + 9.952793097912437, + 9.968522157449883, + 9.986384729195022, + 9.953379136682473, + 9.936550206845931, + 9.934920743991668, + 9.940700702895466, + 9.903336783586928, + 9.909442223540621, + 9.90240609635907, + 9.911741508006909, + 9.904573261601426, + 9.947673342643323, + 9.962702853111955, + 9.96685616893421, + 9.966470816670919, + 10.002485293412265, + 9.975261796922366, + 9.976252646962234, + 9.960758938785697, + 9.950205935022025, + 9.944911914526257, + 9.971366391636453, + 9.94590363597515, + 9.974030266714207, + 9.999584633648055, + 9.951325385837245, + 9.980031449692392, + 9.984207743327966, + 9.964417713531493, + 9.953650159238009, + 9.98472736794662, + 9.943673917593406, + 9.993074153086871, + 9.963624009276563, + 9.952625058179812, + 9.980279762034305, + 9.937957862195164, + 9.94341881499078, + 9.980766339051094, + 9.964897041342823, + 9.990015769829153, + 9.945151106028526, + 9.894859714515382, + 9.905778112859037, + 9.936392153426535, + 9.905093582158512, + 9.920862202655304, + 9.935079023747903, + 9.932731056004116, + 9.962932680830619, + 9.950680680094832, + 9.919896303000684, + 9.91172592190619, + 9.92075884470875, + 9.950031014613554, + 9.96160437493816, + 9.939441130067873, + 9.955489591385627, + 9.946716790051498, + 9.957164492698583, + 9.942062171382133, + 9.95584885187985, + 9.944122845456167, + 9.943572330814757, + 9.919484038171987, + 9.98235523855528, + 9.96282207016087, + 9.949510401673704, + 9.945874078602525, + 9.94294057980604, + 9.970517681674723, + 9.949757464188307, + 9.960219141645139, + 9.98123319203786, + 9.977792413482447, + 9.9733720358573, + 9.969891006742412, + 9.907018781335305, + 9.960756410767251, + 9.955157438136196, + 9.96432848776872, + 9.938146261208585, + 9.944608911243128, + 9.949000591850826, + 9.963853640837943, + 9.942049568853644, + 9.94901383709252, + 9.956665370627977, + 9.946136776271441, + 9.928348439677688, + 9.920137610389208, + 9.936903300346101, + 9.925675242995517, + 9.948847800728538, + 9.987072030573492, + 9.946106607817907, + 9.972973786025813, + 9.974874446860829, + 9.96459457610131, + 9.94326323553391, + 9.9289201938898, + 9.9339362806372, + 9.951203286293293, + 9.907902632446802, + 9.88141512583591, + 9.859550907268986, + 9.888474774109094, + 9.933753826680102, + 9.9473229279569, + 9.926682439740695, + 9.958664642611355, + 9.94502781182715, + 9.913622252575278, + 9.91492941089189, + 9.948432520498102, + 9.9186644434293, + 9.946597043639239, + 9.965865850592687, + 9.951359004466612, + 9.94759020402472, + 9.94600798651199, + 9.992338006463674, + 9.961545645535546, + 9.960244058102532, + 9.980684041157208, + 9.940867793975661, + 9.996132601617987, + 9.988210472274874, + 9.953207824382098, + 9.946468012117538, + 9.934096337804029, + 9.937158954415084, + 9.94941710027016, + 9.920146248434538, + 9.921376032626876, + 9.92565959419597, + 9.924403195863466, + 9.958165718092143, + 9.983929146345858, + 9.984437713460915, + 9.951185511819954, + 9.965238498845103, + 9.957998096498779, + 9.935195836393705, + 9.900520255072372, + 9.930633112537267, + 9.96318047129178, + 9.99456302746531, + 9.960859967599438, + 10.003997244502118, + 9.970157802287094, + 9.943462319860291, + 9.967787847935172, + 9.98552704537974, + 9.971917555616352, + 9.929280912780824, + 9.903348097606536, + 9.956310764436788, + 9.941808526296683, + 9.965318396170716, + 9.998909221239145, + 10.012976888502395, + 9.986064594461915, + 9.93930756227495, + 9.966144649538327, + 9.987247948956835, + 9.972490636135415, + 9.97496854112185, + 9.967112261798576, + 9.986293520123333, + 9.960631920923358, + 9.899661085434667, + 9.944698805189754, + 9.945206736184826, + 9.971723012450866, + 9.95066434636915, + 9.958567781418543, + 9.945776353116317, + 9.967595553552323, + 9.959755353378915, + 9.915868879784533, + 9.941192689709556, + 9.892397685063395, + 9.919248852459887, + 9.985479087631598, + 9.968286629154292, + 9.954843876600618, + 9.944304942104617, + 9.993016715671411, + 9.974984393550246, + 9.969944032714842, + 9.954191976895538, + 9.943776715283931, + 9.915336200434234, + 9.96497376816435, + 9.987102380745936, + 9.969499420859156, + 9.943546288531074, + 9.938513575228214, + 9.954212206347847, + 9.922852517049664, + 9.936565341069448, + 9.961621576260825, + 9.974704193247202, + 9.961315928685497, + 9.957146059592692, + 9.962823194788553, + 9.964475350718793, + 9.955297541232909, + 9.92420768760472, + 9.930996555329875, + 9.946483567563712, + 9.962742901967497, + 9.94322788114708, + 9.917230498652964, + 9.912486449020212, + 9.937845913915384, + 9.955220244169924, + 9.975104678513874, + 9.936973432474979, + 9.932604053909241, + 9.909564947412779, + 9.908279253218323, + 9.918397594519963, + 9.922097487182846, + 9.93313688549784, + 9.940408479515034, + 9.97326557625412, + 9.962368015263165, + 9.927419824087165, + 9.956092923704691, + 9.957170862795188, + 9.931291893171691, + 9.942332828332962, + 9.96721294620352, + 9.973858753528441, + 9.94361056552564, + 9.916495869102565, + 9.91842257958901, + 9.943883997567518, + 9.933156584298565, + 9.94921595228881, + 9.949459786914302, + 9.91965569179459, + 9.934398571971988, + 9.927676221354911, + 9.93410978145518, + 9.939749716545661, + 9.946262855412773, + 9.973522055952834, + 9.94583766088389, + 9.960231604396904, + 9.908473543556337, + 9.942685169342827, + 9.933062022853731, + 9.919950836255465, + 9.885200525092984, + 9.908761949774, + 9.92000918792526, + 9.93602856472869, + 9.9546029995507, + 9.92883266469648, + 9.953408527771987, + 9.955278501722914, + 9.953459683776158, + 9.963687049171995, + 9.973822318880597, + 9.97443178530044, + 9.925508106135867, + 9.921306388136761, + 9.942453332811931, + 9.927277472741826, + 9.943112649861371, + 9.94740976968061, + 9.919542462581601, + 9.960510514365042, + 9.943072761711697, + 9.989172606589873, + 9.978956364252419, + 9.961793323294735, + 9.957916443215469, + 9.933270139266893, + 9.926154822456548, + 9.943883159406631, + 9.96900300608836, + 9.95208184997472, + 9.985462964389349, + 9.952873442177378, + 9.934323512289838, + 9.968510958066535, + 9.950658264478664, + 9.946639665586623, + 9.917393850204439, + 9.930605065964627, + 9.945691633159225, + 9.954753962060886, + 9.952240086811166, + 9.951936068425626, + 9.966225684361952, + 9.940983565453134, + 9.99936709293871, + 9.973114549668196, + 9.977368577732038, + 9.934011729119806, + 9.921225825094213, + 9.915318277442818, + 9.915104256481706, + 9.902417198763084, + 9.94545374916875, + 9.928634907720165, + 9.944932582752541, + 9.915680985501739, + 9.934179465161229, + 9.96048680655547, + 9.956860182566603, + 9.938732003921052, + 9.968968012109187, + 9.962666415171396, + 9.95264905399726, + 9.951399585833189, + 9.93995987234958, + 9.961324378650266, + 9.94406789751993, + 9.956329945601748, + 9.958189760646633, + 9.935629426918606, + 9.935952916572877, + 9.961794627667254, + 9.929192658821929, + 9.925969834545798, + 9.91512944771775, + 9.944643716407992, + 9.91738049498517, + 9.914090049180272, + 9.933725199189885, + 9.94976514642731, + 9.918307072344735, + 9.964508920886257, + 9.9605193347863, + 9.967223492639258, + 9.958113262838072, + 9.960520079229559, + 9.978912320142559, + 9.932128159356592, + 9.956724648109528, + 9.969853848670633, + 9.970431801714374, + 9.940023967736733, + 9.938213688384842, + 9.966445166419522, + 9.955574929523097, + 9.967781603348225, + 9.961671162920783, + 9.955216149301167, + 9.970874680227983, + 9.945838086738236, + 9.922121273352262, + 9.935543720720254, + 9.943308841369337, + 9.939703672723667, + 9.966858194234607, + 9.927016119624225, + 9.943237642923126, + 9.960917112734334, + 9.923896723902802, + 9.932446668860386, + 9.947967523358189, + 9.934204728516512, + 9.939187774577576, + 9.930885599269446, + 9.89654839344387, + 9.928805367761615, + 9.95046507358705, + 9.952057944666768, + 10.00151365520981, + 9.969326973339331, + 9.980648944155837, + 9.953822401653905, + 9.954881206718284, + 9.96421653982946, + 9.943639205608779, + 9.947961203434444, + 9.93705270693517, + 9.944925019312953, + 9.981464342100464, + 9.957074301796425, + 9.96004620151959, + 9.945814684624166, + 9.937401831132174, + 9.937624624912338, + 9.948007004929654, + 9.967847210092257, + 9.9457778995789, + 9.907540987764724, + 9.939041084784492, + 9.973262393950877, + 9.953117444358845, + 9.959081965028828, + 9.968220767239705, + 9.955901546615792, + 9.942254429713529, + 9.902258857312688, + 9.936708086201575, + 9.942399890912736, + 9.931980146501035, + 9.969982394592263, + 9.988007124115084, + 9.93969583160345, + 9.968708729791697, + 9.970154748419825, + 9.96294006865558, + 9.965498222775139, + 9.948108833647321, + 9.949382808727144, + 9.93362344455008, + 9.923031196662974, + 9.961371133267457, + 9.946715518290773, + 9.943381588939278, + 9.920644009365533, + 9.926251748482615, + 9.977282985002375, + 9.978920426707466, + 9.969052979187156, + 9.97419736848995, + 9.957923776974871, + 9.946736223152781, + 9.93963611539095, + 9.945616627486697, + 9.998900523477257, + 9.966883342600086, + 9.92583546322383, + 9.951334104305559, + 9.971972175883977, + 9.920642295907053, + 9.923220069262916, + 9.931174873972505, + 9.904258000256858, + 9.95659931725413, + 9.929084537746332, + 9.96213762337937, + 9.978959787333542, + 10.01213653737452, + 9.967820091948361, + 9.945442008138471, + 9.951977075447633, + 9.957841209128944, + 9.922020287643484, + 9.913733673877742, + 9.917462714105472, + 9.95122946866635, + 9.943113449073556, + 9.971582713928722, + 9.96386356342667, + 9.895685639841078, + 9.941026954582638, + 9.95321059495407, + 9.966555975095181, + 9.968683606924827, + 9.974898875260287, + 9.918308294145403, + 9.928007916014613, + 9.895902752239037, + 9.937387970739527, + 9.934489099980642, + 9.923711136697094, + 9.912312536785004, + 9.938829245477509, + 9.929059058141975, + 9.895634084272578, + 9.957589354276129, + 9.928706616234296, + 9.909965856504122, + 9.927793426381577, + 9.936942416740038, + 9.934084828094454, + 9.944592977408192, + 9.954084117612135, + 9.95298779304888, + 9.989777664371603, + 9.970791527961097, + 9.996177990870388, + 9.965881776069722, + 9.937091370159932, + 9.952485185678233, + 9.981305154194347, + 9.927505676403655, + 9.972493703504497, + 9.923531926774675, + 9.9113941829883, + 9.928875659480005, + 9.945914776991854, + 9.910916200951712, + 9.88386396708485, + 9.946529116667755, + 9.960882468057488, + 9.92113482213305, + 9.944874593177978, + 9.930291036067931, + 9.95271606833758, + 9.966175105494417, + 9.967632557778071, + 9.946020784638364, + 9.99500178396137, + 9.933875853347585, + 9.957541891454456, + 9.978892770351228, + 9.963810831315282, + 9.931188371842296, + 9.925910942055399, + 9.923442225367914, + 9.941517393310935, + 9.909545565794236, + 9.957248342572559, + 9.983110397428018, + 9.97844164124186, + 9.97485933128711, + 9.986486717648043, + 9.967257255477035, + 9.92233784248879, + 9.949716982070445, + 9.940362378429985, + 9.944507164444872, + 9.950114345237502, + 9.97057474308337, + 9.95906448149839, + 9.93967114465572, + 9.884957036767249, + 9.95716484280641, + 9.967850081440327, + 9.955760460765319, + 9.945049716996675, + 9.947599985720279, + 9.953285061623546, + 9.976151770819481, + 9.995255050331373, + 9.958326529067332, + 9.94264166008996, + 9.96629133788768, + 9.949909643125311, + 9.960680165837694, + 9.99552903078032, + 9.97046399518806, + 9.947699802531432, + 9.96228285245034, + 9.967804695791786, + 9.975383474732421, + 9.960620153814197, + 9.963144450169098, + 9.986219981183282, + 9.983712831850081, + 9.954711334004863, + 9.975626748214124, + 9.987643417665364, + 9.958101858699465, + 9.960339571238736, + 9.940813926187367, + 9.952961702808974, + 9.931844508577301, + 9.946544492785646, + 9.97686931241151, + 9.92704017034291, + 9.953686873187536, + 9.956404746116398, + 9.94650874801839, + 9.938456611188535, + 9.916374914597084, + 9.89397470848654, + 9.91532838977694, + 9.891275201125488, + 9.91959359424586, + 9.903509091367306, + 9.930178346177357, + 9.93977479359517, + 9.962815823743489, + 9.978897888415585, + 9.931362869130265, + 9.954000650086973, + 9.965630995130445, + 9.959262094211738, + 9.925569332249225, + 9.933383189113865, + 9.972517889443242, + 9.931554362273433, + 9.968804721964935, + 9.981464594628198, + 9.960169100954998, + 9.943159604470532, + 9.974385779276737, + 9.967821361653437, + 9.975375384637632, + 9.950701628494818, + 9.934239276386565, + 9.942137654948402, + 9.98280938470844, + 9.967067773482023, + 9.960411078844704, + 9.944433957951917, + 9.97764244744358, + 9.951242006347362, + 9.992308627128564, + 9.98045266093048, + 9.94998778210585, + 9.90640611738803, + 9.967518705105837, + 10.00381383040159, + 9.987747556072321, + 9.985385480724627, + 9.993658034117596, + 9.986326304229234, + 10.00582792109211, + 9.947117932808496, + 9.961374468274089, + 9.976661376413178, + 9.958431912386075, + 9.98010152521822, + 9.945766164824171, + 9.963906589510062, + 9.965960707093506, + 9.976920591333544, + 9.979062770438038, + 9.989003275987129, + 9.949621615726938, + 9.931547532205148, + 9.921312057524366, + 9.981597432148494, + 9.974824517371754, + 9.949562932452075, + 9.94500897360057, + 9.967282295098428, + 9.97046839152568, + 9.9547067018449, + 9.963181074981959, + 9.948443942599429, + 9.949755547046129, + 9.946352749155622, + 9.985531794849473, + 9.914921168221364, + 9.948303858683907, + 9.950246130683322, + 9.956807442378517, + 9.973754458183725, + 9.947719402973995, + 9.954092487375267, + 9.954879259557293, + 9.916001676953101, + 9.925423152434927, + 9.924384964030939, + 9.93615215965162, + 9.912227273002031, + 9.955222737586709, + 9.95716778490142, + 9.979178972882176, + 9.994307598752712, + 9.929559634052511, + 9.953728136620416, + 9.92132604894027, + 9.942205059412931, + 9.941306617382711, + 9.99307462322028, + 9.991060586094198, + 9.971389244348845, + 9.960481345291841, + 9.947478899202197, + 9.942792393753429, + 9.933310030231663, + 9.960692430539813, + 9.95076241244628, + 9.971024111887091, + 9.927441667112783, + 9.929350966763451, + 9.961548945388685, + 9.951948505997551, + 9.954778150140658, + 9.928339202156979, + 9.962710362048318, + 9.92776533156729, + 9.959420715187651, + 9.951638544193932, + 9.956868131042242, + 9.977456134784042, + 9.923060418247507, + 9.970131275526583, + 9.956945108278044, + 9.916445575690586, + 9.947288098331594, + 9.98884533306413, + 9.982869938965043, + 9.955935878281664, + 9.911925995950783, + 9.960554423034386, + 9.993237387986477, + 9.960520223290425, + 9.992701631856, + 9.964221852042424, + 9.979828718228086, + 9.963261193975564, + 9.901566183782645, + 9.95944182192157, + 9.975404977790845, + 9.929875911954495, + 9.964925720310617, + 9.945745786817335, + 9.96119210113965, + 9.925080209362456, + 9.907833456978942, + 9.883626645102192, + 9.952163792155494, + 9.964406069057434, + 9.970688122350012, + 9.984733965086013, + 9.940848114543568, + 9.956160207389637, + 9.966818081187203, + 9.942220410177656, + 9.906066289480641, + 9.913071560958501, + 9.953087864834776, + 9.944990607022527, + 9.992472783901515, + 9.95864263458034, + 9.933870690952041, + 9.951024756650657, + 9.951464592911556, + 9.958831446131539, + 9.933486097048668, + 9.954798210766707, + 9.945532171313534, + 9.950721806000276, + 9.944438028512582, + 9.932791056413704, + 9.914796910506995, + 9.942107766372837, + 9.930273000213207, + 9.944896658031285, + 9.962032131378171, + 9.882770509277165, + 9.911697089626076, + 9.949706795239578, + 9.933691149889412, + 9.947771341893747, + 9.910498514279674, + 9.946527655137201, + 9.935794608326235, + 9.96835999235247, + 9.933515650067042, + 9.940037077081637, + 9.927179754286428, + 9.959479949562054, + 9.967356899539089, + 9.965812054291197, + 9.938361671304897, + 9.982930785461665, + 9.93677099034133, + 9.909028123509747, + 9.893271777608716, + 9.954896276140856, + 9.985126400108419, + 9.975354028353928, + 9.963816078246442, + 9.95069423267525, + 9.93412068106554, + 9.92398616773627, + 9.921262954364776, + 9.926884054639801, + 9.939587892175552, + 9.95694914907156, + 9.977555693875559, + 9.995837502315835, + 9.987699417327342, + 9.966999049976287, + 9.973600882623076, + 9.929075607860156 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 2", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.14627265523349112, + 0.09249825063118461, + 0.05864638094297092, + 0.29939728890762946, + 0.21984407544230936, + 0.3815425425336365, + 0.26476914307147803, + 0.2972736444877533, + 0.3197654954898758, + 0.36675083245741247, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.18222284147805604, + 0.09146714114865447, + 0.13750274901415122, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.06885296393026999, + 0.8526659535856848, + 0.31532002776348655, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.1884001842285637, + 0.29544687481761756, + 0.48875172337385187, + 0.4106995692076558, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.011646499474023766, + 0.16166528592369075, + 0.21537499880135694, + 0.11051465870664842, + 0.29325460593707986, + 0.257339504075334, + 0.3080347504065253, + 0.11825655999624235, + 0.0908277661568195, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.0524786366803062, + 0.12973008483739817, + 0.1312086196845979, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.42071214012958413, + 0.48698265068922736, + 0.5083508047316404, + 0.4882811588271051, + 0.3874660692988012, + 0.4521545197499185, + 0.634453336665064, + 0.3901278594237819, + 0.34113783525571956, + 0.31130304878486226, + 0.20669372830284927, + 0.31062850812352916, + 0.26084769855470447, + 0.21103812386349868, + 0.24715692122072525, + 0.10000355669152555, + 0.2022906545452066, + 0.34002009996336235, + 0.20526745090784462, + 0.1597940275138265, + 0.36557555976648254, + 0.4011910521603971, + 0.5474228490122541, + 0.1468407050288577, + 0.3541439756364462, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.057839265628922214, + 0.3252271458267658, + 0.21024820394826874, + 0.32969440084172796, + 0.223844532936726, + 0.35561655921255186, + 0.2803559091230649, + 0.25940434126811773, + 0.12950010078547672, + 0.07003863535601987, + 1.059165966438313, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.16681348386893693, + 0.04601269427644372, + 0.0207445091432104, + 0.07011940332457094, + 0.2037120977283152, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.12363543754802661, + 0.28039689738658324, + 0.2684297954819648, + 0.329231869811411, + 0.4382296665826228, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.003147187408442312, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.07626680036074457, + 0.8221520338022736, + 0.7324403870278046, + 1.2787302368505704, + 1.5933305810168692, + 1.6198624370138168, + 0.6980561577266191, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.18298110550911148, + 0.10056890069661495, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.5660828152171675, + 0.727863913326424, + 1.266614913969334, + 1.3241779793501485, + 1.777172500968637, + 0.7654749785812428, + 0.7052873569007863, + 0.9058052251998259, + 0.8733464751495077, + 1.300934368336553, + 1.468526080260115, + 1.18793729806842, + 1.1991858885684528, + 1.2493881676438447, + 1.3747786033478315, + 1.667557301624477, + 1.4939552084824506, + 1.521295349085257, + 1.4483085254013175, + 0.7125865325827673, + 0.9076486803287592, + 0.7199164295308215, + 0.39487234688083206, + 0.6539523962139939, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 2", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.24999183759836885, + 0.6037586825859343, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.2923807993150283, + 0.13057316999913074, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 3", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 3", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 4", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 4", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 5", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 5", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 6", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 6", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 7", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 7", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 8", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 8", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 9", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 9", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 10", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 10", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 11", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 11", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 12", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 12", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 13", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 13", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 14", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 14", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 15", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 15", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 16", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 16", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 17", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 17", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 18", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 18", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 19", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 19", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source traces", + "showlegend": true, + "type": "scatter", + "x": [ + null + ], + "y": [ + null + ] + } + ], + "layout": { + "annotations": [ + { + "showarrow": false, + "text": "\tBurn in: 4000", + "x": 4000, + "xanchor": "left", + "xref": "x", + "y": 1, + "yanchor": "top", + "yref": "y domain" + }, + { + "align": "left", + "bgcolor": "#ffffff", + "bordercolor": "#000000", + "borderpad": 10, + "borderwidth": 2, + "font": { + "color": "#000000", + "size": 12 + }, + "opacity": 0.8, + "showarrow": false, + "text": "Total Site Emissions are
the sum of all estimated
emission rates at a given
iteration number.", + "x": 1.05, + "xanchor": "left", + "xref": "paper", + "y": 1.05, + "yanchor": "top", + "yref": "paper" + } + ], + "autosize": true, + "shapes": [ + { + "line": { + "color": "black", + "dash": "dash", + "width": 3 + }, + "type": "line", + "x0": 4000, + "x1": 4000, + "xref": "x", + "y0": 0, + "y1": 1, + "yref": "y domain" + } + ], + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Estimated Values of Sources With Respect to MCMC Iterations" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0, + 4999 + ], + "title": { + "standoff": 20, + "text": "MCMC Iteration Number" + }, + "type": "linear" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + -1.4706977669919477, + 28.006201321015848 + ], + "title": { + "standoff": 20, + "text": "Estimated Emission
Values (kg/hr)" + }, + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQeYXkXZv5/t6YWE3ksg9N5Biog0PxTk089OERUrRVGp0kEFVERRQAU7INKbFOkQeksg9E4SEtKz/f+/n3dnmT05bz+72c3+5rq4gH3PmTNzz5w5z/zmmWdqOjs7O01JBERABERABERABERABERABERABERABEQglUCNxBP1DBEQAREQAREQAREQAREQAREQAREQARHIT0DiiXqHCIiACIiACIiACIiACIiACIiACIiACBQgIPFE3UMEREAEREAEREAEREAEREAEREAEREAEJJ6oD4iACIiACIiACIiACIiACIiACIiACIhAZQTkeVIZN90lAiIgAiIgAiIgAiIgAiIgAiIgAiIwSAhIPBkkDa1qioAIiIAIiIAIiIAIiIAIiIAIiIAIVEZA4kll3HSXCIiACIiACIiACIiACIiACIiACIjAICEg8WSQNLSqKQIiIAIiIAIiIAIiIAIiIAIiIAIiUBkBiSeVcdNdIiACIiACIiACIiACIiACIiACIiACg4SAxJNB0tCqpgiIgAiIgAiIgAiIgAiIgAiIgAiIQGUEJJ5Uxk13iYAIiIAIiIAIiIAIiIAIiIAIiIAIDBICEk8GSUOrmiIgAiIgAiIgAiIgAiIgAiIgAiIgApURkHhSGTfdJQIiIAIiIAIiIAIiIAIiIAIiIAIiMEgISDwZJA2taoqACIiACIiACIiACIiACIiACIiACFRGQOJJZdx0lwiIgAiIgAiIgAiIgAiIgAiIgAiIwCAhIPFkkDS0qikCIiACIiACIiACIiACIiACIiACIlAZAYknlXHTXSIgAiIgAiIgAiIgAiIgAiIgAiIgAoOEgMSTQdLQqqYIiIAIiIAIiIAIiIAIiIAIiIAIiEBlBCSeVMZNd4mACIiACIiACIiACIiACIiACIiACAwSAhJPBklDq5oiIAIiIAIiIAIiIAIiIAIiIAIiIAKVEZB4Uhk33SUCIiACIiACIiACIiACIiACIiACIjBICEg8GSQNrWqKgAiIgAiIgAiIgAiIgAiIgAiIgAhURkDiSWXcdJcIiIAIiIAIiIAIiIAIiIAIiIAIiMAgISDxZJA0tKopAiIgAiIgAiIgAiIgAiIgAiIgAiJQGQGJJ5Vx010iIAIiIAIiIAIiIAIiIAIiIAIiIAKDhIDEk0HS0KqmCIiACIiACIiACIiACIiACIiACIhAZQQknlTGTXeJgAiIgAiIgAiIgAiIgAiIgAiIgAgMEgISTwZJQ6uaIiACIiACIiACIiACIiACIiACIiAClRGQeFIZN90lAosReOqpp+y0006zNddc0374wx/a2LFjRSmFwIwZM+z666+3u+66y0444QRbe+21BwSnuXPn2u23325XXHGFHXnkkbbVVlsNiHL3dSEXLFhgt956q1199dX29ttvW1NTk2244Yb25S9/2dZff32rqanp6yLpeQOIAH3nt7/9re244472zW9+04YMGVJy6dva2uyJJ56wv/3tb7b66qvbd77znZLv1YUiIAIiMNAJzJo1y8466yx75ZVX7Pjjj7dNNtlkoFdJ5ReBfkdA4km/axIVKI0AH4Sjjz7a3njjjYoAnXnmmb0+2f3FL37hogCpL55XEYgleNNLL71kF154oT3zzDPW0dFho0aNsnPOOaeoePLII4/Yj370o7wl32+//ey73/1u6u9M4HlmMhW6J3ktfe/3v/+93XPPPbZo0SK1b4E+NH36dDvjjDNsn332sY9+9KOGUParX/3KHnzwQaurq7MTTzzRdthhh4K98M0337S///3v9tBDD9kHH3zg962zzjq2xx572E477eT/z+T4kEMOKWtivQS7/oB8dDyeJSuwzTbbuPD51ltv2Q9+8AObM2dOah2POOII+9SnPtX9G+/Pqaeeag8//HCP61dddVX7+c9/bkOHDu3+vdTxgYxaW1vtqquu8n/oM6Ry3vFCDcS4VaiO4d7hw4fbCiusYFtvvbXttddetvLKKw/IdlehSyOAkP7444/b/fffbwjrJPoA37R11123tEy6rqLP8o178cUXe9wX3rM0AbGzs9PeeecdF/T5Nr3++uvW3t7u4+NKK61km222me25557+fWUspYx77723TZs2za677jp7+umnbfLkyf4tJtFnv/e97/n95aSbbrrJzj333MVuKWQDIXI+++yzdttttxnf9/fff7+bH6Ln9ttvb7vvvruNHj3a/vznP/u3ZI011ihYrHxjS3xTIZ7l1Lk/XxvbS1mNgf25viqbCCwJAhJPlgR1PbNiAhgAF198sd14441FDWQM6vvuu88nbxgmve0pMGXKFJ8cyvMk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cdhctDciCW1CPyYxFuKtyjeZOpTTHrH3Tr73NMkzS/un0Lcwbatr1jZboXZNPp/3DXGN8YBywB9bloUtvkNJAbDQ2Mx3EZsp7TsYeLPwAR94M26Fbzp2FkIN3qrltHUxO0a/i0BvE5B40tuElb8IiIAIiIAIiIAI9DGBUgLG9nGR9DgREAEREAERGNAEJJ4M6OZT4UVABERABERABERgcQIST9QrREAEREAERCBbAhJPsuWp3ERABERABERABERgiROQeLLEm0AFEAEREAERWMoISDxZyhpU1REBERABERABERABiSfqAyIgAiIgAiKQLQGJJ9nyVG4iIAIiIAIiIAIisEQJJE9oO/bYYz0gpAIzLtFm0cNFQAREQAQGOAGJJwO8AVV8ERABERABERABEYBAsVNHCp2CIoIiIAIiIAIiIAKFCUg8UQ8RAREQAREQAREQAREQAREQAREQAREQgQIEJJ6oe4iACIiACIiACIiACIiACIiACIiACIiAxBP1AREQAREQAREQAREQAREQAREQAREQARGojIA8TyrjprtEQAREQAREQAREQAREQAREQAREQAQGCQGJJ4OkoVVNERABERABERABERABERABERABERCByghIPKmMm+4SAREQAREQAREQAREQAREQAREQAREYJAQkngyShlY1RUAEREAEREAEREAEREAEREAEREAEKiMg8aQybrpLBERABERABERABERABERABERABERgkBCQeDJIGlrVFAEREAEREAEREAEREAEREAEREAERqIyAxJPKuOkuERABERABERABERABERABERABERCBQUJA4skgaWhVUwREQAREQAREQAREQAREQAREQAREoDICEk8q46a7REAEREAEREAEREAEREAEREAEREAEBgkBiSeDpKFVTREQAREQAREQAREQAREQAREQAREQgcoISDypjJvuEgEREAEREAEREAEREAEREAEREAERGCQEJJ4MkoZWNUVABERABERABERABERABERABERABCojIPGkMm66SwREQAREQAREQAREQAREQAREQAREYJAQkHgySBpa1RQBERABERABERABERABERABERABEaiMgMSTyrjpLhEQAREQAREQAREQAREQAREQAREQgUFCQOLJIGloVVMEREAEREAEREAEREAEREAEREAERKAyAhJPKuOmu0RABERABERABERABERABERABERABAYJAYkng6ShVU0REAEREAEREAEREAEREAEREAEREIHKCEg8qYyb7hIBERABERABERABERABERABERABERgkBCSeDJKGVjVFQAREQAREQAREQAREQAREQAREQAQqIyDxpDJuuksEREAEREAEREAEREAEREAEREAERGCQEJB4MkgaWtUUAREQAREQAREQAREQAREQAREQARGojIDEk8q46S4REAEREAEREAEREAEREAEREAEREIFBQkDiySBpaFVTBERABERABERABERABERABERABESgMgISTyrjprtEQAREQAREQAREQAREQAREQAREQAQGCQGJJ4OkoVVNERABERABERABERABERABERABERCByghIPKmMm+4SAREQAREQAREQAREQAREQAREQAREYJAQkngyShlY1RUAEREAEREAEREAEREAEREAEREAEKiMg8aQybrpLBERABERABERABERABERABERABERgkBCQeDJIGlrVFAEREAEREAEREAEREAEREAEREAERqIyAxJPKuOkuERABERABERABERABERABERABERCBQUJA4skgaWhVUwREQAREQAREQAREQAREQAREQAREoDICEk8q46a7REAEREAEREAEREAEREAEREAElkICW2655VJYK1WpWgKZiyfz58+32267zT72sY/Z8OHDqy2f7hcBERABERABERABERABERABERCBPiMg8aTPUA+oB2UqnnR0dNikSZPssssus9NOO83Gjh07oGCosCIgAiIgAiIgAiIgAiIgAiIgAoObQBBPHn300cENQrXvQaAs8eSDDz6wiy++2O666y5rbm7Oi3LVVVe1n//85xJP1NlEQAREQAREQAREQAREQAREQAQGFAGJJwOqufqssCWLJ+3t7Xb++efbzTff7IUbN26cDR06tEdBuWbatGm20korSTzpsybUg0RABERABERABERABERABERABLIiIPEkK5JLVz4liyezZs2yo48+2tZcc03/97Bhw1JJvPLKK/bLX/7STjzxRHmeLF19RbURAREQAREQAREQAREQAREQgaWegMSTpb6JK6pgyeIJgWBPPvlk22effWy33XbL+zAFjK2oHXSTCIiACIiACIiACIiACIiACIhAPyAg8aQfNEI/LELJ4gllv+WWW+z999+3z33u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KPGkeI4ST4pnKPEkHobUovVO8SwlnhTPUDWIQNIJZBVPBg0aZL169bKddtrJVl555Uj9/OOPP2zGjBk2fvx4YwG71lprRTpPhQonIPGkcGZhZ2gxUTxHiSfFM5R4Eg9DapF4Eg9LiSfFc5R4UjxDiSfxMJR4Eg9HiSfxcFQtIpBkAgUHjM3X2YULF9qQIUNs4MCBEk/ywSrid4knRcALnCrxpHiOEk+KZyjxJB6GEk/i4yjxpHiWEk+KZyjxJB6GEk/i4SjxJB6OqkUEkkwgVDxZvny5zZs3z1q3bm116tQpqH/FnFvQhVRYBERABERABERABERABERABERABERABEpAIFQ8KcF1dQkREAEREAEREAEREAEREAEREAEREAERSAQBiSeJuE1qpAiIgAiIgAiIgAiIgAiIgAiIgAiIQHURkHhSXeR1XREQAREQAREQAREQAREQAREQAREQgUQQkHiSiNukRoqACIiACIiACIiACIiACIiACIiACFQXAYkn1UVe1xUBERABERABERABERABERABERABEUgEAYknibhNaqQIiIAIiIAIiIAIiIAIiIAIiIAIiEB1EZB4Ul3kdV0REAEREAEREAEREAEREAEREAEREIFEEJB4kojbpEaKgAiIgAiIgAiIgAiIgAiIgAiIgAhUFwGJJ9VFXtcVAREQAREQAREQAREQAREQAREQARFIBAGJJ4m4TWqkCIiACIiACIiACIiACIiACIiACIhAdRGQeFJd5Ct53V9++cXGjx9vDz/8sP3222+2//7726GHHmqrrrpqJWusfac98MADNnz48FTHVlllFbvsssusQ4cOqX/74Ycf7Oabb7annnrK6tSpY0ceeaTtvffetvLKK6cBiVouyRT/+OMPmzdvnt1yyy120EEH2dZbbx3anbfffttGjBjhyrZq1cpOPvlka9euXYWycZdLClvm46xZs+y+++6z4447zjbaaKPQpn/77bd29tln24cffpj6feedd7bBgwe7scjx559/2gsvvGCjRo2yL7/80rbYYgs77bTTrFmzZml1Ri2XBIaMw+nTp9utt95qX3/9tetr7969rVOnTrbiiitWal5Gnb9RyyWB45IlS+z222+3SZMmuXfE5ptvbieccIK1bNmyQvN5n1x88cU2c+bM1G8bb7yxXX755dawYcPUv5XjnGZM3HTTTW5M8l5gHPbp08fq169fqTkYda5GLZeEsUgbGTv/+c9/7P3337fGjRvbEUccYd26daswpyn70ksv2YUXXmi//vprqntnnHGG7bXXXqn/j7oGilouKRyD7Zw/f74NGjTITj/9dOvYsaOejZW8iVOmTLF77rnHhgwZYmuttVZaLXo2VhKqThOBMiAg8SRBN3n58uV2zTXX2KJFi6x///5Wt25du+KKK2yFFVZwL9LVV189Qb2pmqZiaN5444223nrrpS7QtGlT22effVKGKfwuuOAC22CDDZyRu3jxYvf/GBl9+/ZNCShRy1VNT0pT608//WRvvfWWPf300zZt2jRnNGUuxmjJG2+8YZdcconj9Y9//MNefPFFGzp0qA0YMMC23377VGPjLlcaCsVf5bvvvrN33nnHiZoffPCBXXXVVaHiCYYR4spHH32UZoRhTATFFu4FIgJ8GZcPPvigW+RxDzBu/RG1XPE9rPoaYPfkk0+6ubps2TLH6fPPP3eGf48ePdxzjiPqvIy7XNUTKP4KLPivvPJKa9CggW2zzTY2Z84cmzhxohPXM8cOV3vmmWecgLz22munLs55/PFHOc5pnosI8BtuuKGtu+66NnXqVGfY77fffnb88cfbSiutVPAcjDpXo5YrfrRUfQ0IJgh5u+66q5vTd955py1cuNDOP/9822677dIa8OOPPzqRZY011kgJK/w3zPmbI+oaKGq5qicQ/xUYm6z7eAdnvq/jfuZFrS/+XlZ9jYzNc845x1ZbbTW3lskUT/RsrPp7oCuIQFIJSDxJ0J3DwB02bJhbBLdv3961fO7cuU44wajFACvnA8P07rvvdp4TrVu3DkVBGRZwfJXlhYmwwvHss886gxe2GKtRy9UW3hhZZ555pp133nkVxBMWtYhLGFgY83yF/f333+3aa691IsCll17qjLW4yyWRLQuu6667Lqt4whdDBIJevXpV8HLy/UUAHDhwoHXp0sV5XiAasGDmHsCZ3/BQiVouCRwRnxBP4OK9b7755hs799xzXd/5MogRG3Vexl0uCQxp4yuvvGJ4nuy2224psQkji+caBmy/fv1Shj+G0V133eXGWDbhvVznNBybN2+eej9gjGOofvLJJ2mGVtQ5GHe5JIxHmPFexavOz+lPP/3UPb922GEHO/XUU9O6gYdPvXr1bMcdd8zavahroKjlksAx2Ebe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FO9nsm35I+oaKGq5JMzpsDZm+9gR9zMvan1J5RgmnujZmNS7qXaLQOkISDwpHetYroT7ISnriAmAIUEqP1w3STFZzgeLpdGjRxtfnFiAYnAiAmDYZwoBcCLwH+XxOGFxxmKuS5cuqUWxZxm1XFLZZ2ZCoB94QGQGK4UpcXXYq076Z4x/Fra4uQaPuMslhWvYnurMPdSzZ892YidjCjGP8YbQFzQOfH8RYljEIbiw9YxAd/DGtTh4RC1X0zkSVwMPHPqTeayyyip22WWXuRgGhc7LqPM3armazBGPE+JIINCFHYhu/E4sEzzG8LwjdWfdunVdJg+EgubNm1c4tdzmNP2dOnWq8/LEsIdPu3bt7IgjjnDbIzK3KUSdg3GXq8ljkbYF38l4KjLudt999wrPPL7qIz7xhw9CPOMOOuggt23Pe5wE+xp1DRS1XE3nGNa+XJ6iUZ9lcZdLIscw8UTPxiTeSbVZBEpLQOJJaXnraiIgAiIgAiIgAiIgAiIgAiIgAiIgAgkjIPEkYTdMzRUBERABERABERABERABERABERABESgtAYknpeWtq4mACIiACIiACIiACIiACIiACIiACCSMgMSThN0wNVcEREAEREAEREAEREAEREAEREAERKC0BCSelJa3riYCIiACIiACIiACIiACIiACIiACIpAwAhJPEnbD1FwREAEREAEREAEREAEREAEREAEREIHSEpB4UlreupoIiIAIiIAIiIAIiIAIiIAIiIAIiEDCCEg8SdgNU3NFQAREQAREQAREQAREQAREQAREQARKS0DiSWl562oiIAIiIAIiIAIiIAIiIAIiIAIiIAIJIyDxJGE3TM0VAREQAREQAREQAREQAREQAREQAREoLQGJJ6XlrauJgAiIgAiIgAiIgAiIgAiIgAiIgAgkjIDEk4TdMDVXBERABERABERABERABERABERABESgtAQknpSWt64mAiIgAiIgAiIgAiIgAiIgAiIgAiKQMAISTxJ2w9RcERABERABERABERABERABERABERCB0hKQeFJa3rqaCIiACIiACIiACIiACIiACIiACIhAwghIPEnYDVNzRUAEREAEREAEREAEREAEREAEREAESktA4klpeetqIiACIiACIiACIiACIiACIiACIiACCSMg8SRhN0zNFQEREAEREAEREAEREAEREAEREAERKC0BiSel5a2riYAIiIAIiIAIiIAIiIAIiIAIiIAIJIyAxJOE3TA1VwREQAREQAREQAREQAREQAREQAREoLQEJJ6UlreuJgIiIAIiIAIiIAIiIAIiIAIiIAIikDACEk8SdsPUXBEQAREQAREQAREQAREQAREQAREQgdISkHhSWt66mgiIgAiIgAiIgAiIgAiIgAiIgAiIQMIISDxJ2A1Tc0VABERABESgphBYuHChXXjhha45559/vjVu3LimNC2R7fj2229t4sSJNmvWLMd1rbXWSmQ/1GgREAEREAERqI0EJJ7UxruqPomACIhAFRD47rvvbObMmfbggw/aBx984K5wxhln2F577RXpanfddZfdcsstqbJrrrmmXXXVVbbRRhulnf/zzz/b448/btOmTbOPPvrIli1bZquvvrq1adPGDjzwQGvfvr098MADtueee9oqq6xir7zyik2ZMsX9zdGzZ0/r06ePrbDCCnnb9eyzz9rFF19sf/zxR6rs5Zdfbh07dkw7l99nz57tDNu33nrLfvjhB1tppZVsgw02sL333ts6depkb775ptWrV8+23HLLrNel3cOHD6/wezYWeTtQzQVqinjy/fffW79+/Wz+/PkpIvvvv7/17dvXVl555QqUGL8DBw60xYsXp/0Wdu9Lhfi5556z6dOnG3+vv/76NnToUIknpYKv64iACIiACIhABAISTyJAUhEREAEREIH/EQganptuuqldeuml1qBBg5yI+KJ+9tln24cffuiEEP4bgSIocPz555/2wgsv2LXXXmv169e3ww47zLbddltX/rfffrPPP//c/vvf/9ozzzxj6623njMuvacDws6AAQPs008/tSZNmtgVV1xhLVq0yNmmX375xQknCEIrrriinXrqqU6Q4b+DxxdffOGuRb979Ohh3bt3t3XWWccVQURB5Bk/frz99NNPdskll9h2222X97o333yzPfTQQ078OfPMM22XXXZJuy51PfXUU+5aNeGoae0JY4LA9cknn9h1111nb7/9tuN5wgknuHsWJqQx3hDcEEyOPfbY0HtfavZeBOK6Ek9KTV/XEwEREAEREIHcBCSeaISIgAiIgAgURAADb9CgQfbVV1/Z0qVL7dxzz7Wdd945Zx2TJ0+2G264wX799VcnamQahvhdEfkAABBtSURBVBiyjzzyiPPKQFShfgSUzINyiA533HGHE0i81wpCCEbw66+/7kSMY445xg4++OCcbXrttdfsvPPOc54tXCvMCwbBhDK///6720aBWBR2vP/++3bOOefYQQcdZHg85Dsw2gcPHhzKgnPnzJnjRKLjjjsuX1Ul+b2mtSdXpxctWuS2ECGg1K1b192X7bffPvQUxvIFF1xgp5xySgUPqJKAzbgI84lx9vXXX0s8qY4boGuKgAiIgAiIQA4CEk80PERABERABAoigME5ZMgQ5/2BkNGhQwdngOIhEnb8+OOPduWVV1rLli2NrTth4gnGOWICdeTzGsELZdSoUc5TICieXHPNNbbuuuvaPffc49qGGIIXSthBHXi4sF2GLT8cmeIJ7aZfbNNhe1K3bt1ycnr66acNNvvtt19enrnEEy8ENWrUyHnDVPdR09qTjwft5V5++eWXNm/ePOedhEfQxhtvXOHUmiaeeG+oBQsWSDzJd6P1uwiIgAiIgAiUmIDEkxID1+VEQAREIOkEvHjSu3dv5+3BlpzLLrvMiShhB3FFnnjiCevcubPzCMgUT5YvX+7qoVzUeCVz5851Xizt2rVzl8ToRDxhm8ttt91mb7zxRs54LJyPANOrVy/X9jDxBG8Z6sTopn0NGzbMeevweJkxY4YTdfId2cQTRJ377rvPxo4d62KpVLd4UtPak49rcCzsu+++Tkh78cUXncjGFi2/3crXI/EkClGVEQEREAEREAERgIDEE40DERABERCBggh48YQAnRj69957r9u2g+dInTp10upCGMELYJ999nFxS8K2qiBkELwzasyQsMZ68YRtM9SXS/Rg689NN93kRJxNNtnEXTtTPKEteJ2wtQcR47TTTosUgDYqyDDxhD7ceOONNnXq1LQAtpnBZAnSeuuttzqhhnbi0XP00Ue7WCs+tgeCFtt+qItYMARGRQAioC3bQjbccEMXr4XtT8RsoR68fqiDLU947ORrD9f97LPPXPBePIeoPzM7DG3F28hfAy8QBK4DDjjAVltttRQu2osHEH2ivZQjLgxxXxhTbF/q2rVrpHsQHAuwY1sZ26/YusN2sKCHVKZ4khnQ1weQzQxIy3j2whbsiJtz5513uuDJ9O/RRx91Ih7Bj/FYInAt/WUr0ciRI51HzNprr239+/dPCzAc9DzBu+vdd991Ih9xdxDxTjrpJCcYZsZw4T6w5Q3REFGR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i3WBwIEXCry9cBHWt0zWMEE04jqwRSzBmwIDm3S+nTt3tr59+zqhK1t7wjK9ZKbqDbYV475Zs2ZOjKB+zyusvQgSCCUY/3hX+CNszPjfooyFzHsDhxtuuMF5MQVjntDnqVOn2qhRowyPE8ScPn36GGIIwiHl+TfvRRMcf76NEydONP4ED7xn+IM3SPCcYJpursfYx5OJ7UUc3GPiAbHFyscQ8vV6wYgxjuiDsMJ4RHiBdzCAb2ZbEAx1iIAIiIAIiIAIRCMg8SQaJ5USAREQAREQAREQAREQAREQAREQAREoUwIST8r0xqvbIiACIiACIiACIiACIiACIiACIiAC0QhIPInGSaVEQAREQAREQAREQAREQAREQAREQATKlIDEkzK98eq2CIiACIiACIiACIiACIiACIiACIhANAIST6JxUikREAEREAEREAEREAEREAEREAEREIEyJSDxpExvvLotAiIgAiIgAiIgAiIgAiIgAiIgAiIQjYDEk2icVEoEREAEREAEREAEREAEREAEREAERKBMCUg8KdMbr26LgAiIgAiIgAiIgAiIgAiIgAiIgAhEIyDxJBonlRIBERABERABERABERABERABERABEShTAhJPyvTGq9siIAIiIAIiIAIiIAIiIAIiIAIiIALRCEg8icZJpURABERABERABERABERABERABERABMqUgMSTMr3x6rYIiIAIiIAIiIAIiIAIiIAIiIAIiEA0AhJPonFSKREQAREQAREQAREQAREQAREQAREQgTIl8P+5C9zz9OlU4gAAAABJRU5ErkJggg==", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Total Site Emissions", + "line": { + "color": "rgb(247, 170, 157)", + "width": 3 + }, + "mode": "lines", + "name": "Total Site Emissions", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 16.60483674168337, + 25.887685279216296, + 25.132172231275963, + 24.936483503098906, + 24.89882310814985, + 24.9452671862434, + 24.958257606443233, + 24.980012163992726, + 24.91400499288411, + 24.95546052299867, + 25.057879822064805, + 24.92611166256497, + 24.93465840785297, + 25.022751816121904, + 24.934643286608264, + 24.95055385716841, + 25.059913873164184, + 24.94531195485984, + 24.92047823192346, + 24.96827994328294, + 24.991958502939518, + 24.99891884907654, + 24.962987562815847, + 25.088988319385265, + 24.934393122215184, + 24.999207977533658, + 24.947126875069735, + 24.95300067479169, + 25.06237917762319, + 25.019579881343315, + 24.970846189287016, + 25.286042424728425, + 25.16430025271288, + 25.36413980405573, + 25.222631178950067, + 25.25661043187756, + 25.158256526120116, + 25.28005022088201, + 24.829335176498546, + 24.88161150979513, + 24.969779950074393, + 24.92639991505353, + 24.93963320361672, + 25.006715140488964, + 25.00357792442341, + 25.004093300908544, + 24.99864762579417, + 24.9853169934932, + 24.887481580987057, + 24.920785855553774, + 24.952043218818133, + 25.02859754457125, + 24.884192008121026, + 24.965280472475275, + 24.9076827470087, + 25.001606792859192, + 25.058488932284664, + 24.904822907848494, + 24.89538230823593, + 24.908062884953146, + 24.875939965170026, + 24.84810556734338, + 24.873370865016973, + 24.941270484181945, + 24.87603292163699, + 24.93409477246751, + 24.93349502466267, + 24.90722044851535, + 24.861325321258, + 24.875908555888998, + 24.95990891214292, + 25.003538579854798, + 24.97571028354694, + 24.94938181595829, + 24.993570148799094, + 25.026130898284265, + 24.978665664477262, + 24.943052288974663, + 24.91652898917096, + 24.967525074867595, + 24.92458761031655, + 24.929725279960593, + 24.89099457181845, + 24.940854205578653, + 24.938973837120418, + 24.923180268154063, + 24.93261514438094, + 24.945359772846572, + 24.964697647439436, + 24.934411428571412, + 24.990665922491687, + 24.983125602722318, + 24.92340126418344, + 24.945853660451867, + 25.018251519080867, + 24.98098450750318, + 24.972438649470035, + 24.965484469724693, + 25.011846575618712, + 24.959450619955142, + 25.070356378684515, + 25.016876467671963, + 24.95091058003551, + 24.91833706688449, + 24.88142460146458, + 24.879166675165187, + 24.93900825487141, + 24.977944849558277, + 24.93309564379662, + 24.85723444157241, + 24.92579722508536, + 24.932697631275254, + 24.978158707473764, + 24.95526082144807, + 24.965214366092397, + 24.998346646595984, + 24.909026123633886, + 24.883291928721682, + 24.976737611656986, + 24.92239629521665, + 24.853875203657875, + 24.83172146577322, + 24.77181666410917, + 24.836908128019274, + 24.914587118659995, + 24.90346578595641, + 24.99834109475965, + 24.948877931023453, + 24.87010931657823, + 24.937855584464877, + 24.945108640573814, + 24.86377309899442, + 24.900322939288824, + 24.90895761843658, + 24.956891788501785, + 24.85464469491484, + 24.98057081049697, + 24.951210919363035, + 24.999275105763093, + 25.010296008982213, + 25.02597555146066, + 24.989583794262426, + 24.92257163662675, + 24.954660534644127, + 24.907263875487182, + 24.925398338794892, + 24.867347361095955, + 24.85678724342928, + 24.92117785448672, + 24.90323514202896, + 24.946332471053324, + 25.019409297123463, + 25.013537564395854, + 24.90619139295712, + 24.911420532830107, + 25.008468484158332, + 24.939740371906787, + 24.988525074911873, + 24.95303040553742, + 24.899393556900456, + 25.071383029023437, + 25.010414655863663, + 25.00399382250896, + 24.942532014602506, + 25.022018529443415, + 24.96988549878659, + 24.94939831643284, + 24.917566501269583, + 24.960101862332586, + 24.921081892595424, + 25.017959141919455, + 24.973499892457024, + 24.952389580983912, + 24.901756077998122, + 24.960330651824396, + 24.96242102995806, + 24.947220111532125, + 25.07659110072752, + 25.03464993403596, + 24.993417770840814, + 24.946740798826788, + 24.873335413588514, + 24.936867418678425, + 24.955678036433454, + 25.044148540836293, + 25.004162353027233, + 24.93410458480525, + 24.934890943915143, + 24.927648673184464, + 24.96080342311961, + 24.91853996258712, + 24.891280706784666, + 24.847617783170584, + 24.884258041524586, + 24.984248769003063, + 24.921704403425224, + 24.945091010226985, + 24.912563526664716, + 24.875483986038983, + 24.870874374697422, + 24.936425900936683, + 24.95932595946232, + 24.969480754603126, + 24.979360737090815, + 24.96525821493767, + 24.898985799388164, + 24.83785374682583, + 24.88166105633632, + 24.98234863887413, + 24.941532018747747, + 24.96097646710136, + 24.993599229232373, + 24.988085866214853, + 24.956326505384958, + 24.85696567498536, + 24.966440979983062, + 24.92510892555478, + 24.963973958271808, + 24.858760675285207, + 24.804486793668303, + 24.80907465906015, + 24.889008350973928, + 24.927162876240804, + 24.965331533565983, + 25.019391535984568, + 24.85442150512014, + 24.936511037463504, + 25.027408647860437, + 24.927880580155488, + 24.957117361235248, + 24.949724894331595, + 24.92911092567708, + 24.985945769610712, + 24.968412766527123, + 24.94750781736548, + 24.93778689399189, + 24.992907008906485, + 24.96933079415488, + 24.943495833422695, + 25.029512757548876, + 24.95379672500614, + 24.908855705071964, + 24.863975379519314, + 24.960761576391608, + 24.921295118435395, + 24.95639876690786, + 24.903782923029276, + 24.847625665416565, + 25.016648664736536, + 24.977223578973984, + 24.943407246768338, + 24.90060315056357, + 24.92477097419437, + 25.006319588590152, + 25.047769860943745, + 25.00049003153845, + 24.936734299034555, + 25.003460915554406, + 24.98512774326929, + 24.854238281146294, + 24.893360925041627, + 24.92570468167604, + 24.956393951076453, + 24.915630173167024, + 24.942132344304092, + 24.95527240997407, + 24.97610473017691, + 24.929918740638822, + 24.92354804906767, + 24.91016765611853, + 25.02529719600497, + 24.994722389038056, + 25.034886251224314, + 24.979421082269567, + 25.00021808662383, + 24.914158479547375, + 24.97983580405003, + 24.971593410597684, + 24.85265319027483, + 24.884031618036865, + 24.94314666697985, + 24.914188801201142, + 24.905811751742803, + 24.967004634563544, + 24.92601406872386, + 24.965351328162278, + 24.86338198498758, + 25.00386471914721, + 25.058000273893207, + 24.942657255294613, + 25.048099715032784, + 24.99400902453415, + 24.927564620932685, + 24.934102877739896, + 24.92578159427728, + 24.974648646103542, + 25.0352022703524, + 25.055164129024327, + 24.990125341334007, + 24.991108581032663, + 24.992632288925698, + 24.9849869299901, + 24.988863420725266, + 25.00875841539265, + 24.98635221017274, + 24.989427568205436, + 24.970000529334843, + 24.957238099771345, + 24.94507792158729, + 24.976835400213115, + 24.935029032283566, + 24.949551492080317, + 24.929313530184693, + 25.018737127482922, + 24.89593681717134, + 24.886650552146257, + 24.93778857430602, + 24.942945549575285, + 25.028588576889014, + 25.012913369206267, + 24.991991574581, + 24.967982780115335, + 25.00123324300864, + 24.962577242211292, + 24.965026451334587, + 24.968737465514657, + 24.956646542854024, + 25.046670914009077, + 24.94287904311934, + 24.9197713993776, + 24.963577765056918, + 24.97650658937185, + 25.040897201619444, + 24.99542486240812, + 24.91941650619178, + 24.84463095813573, + 24.90105144204528, + 24.914350709393986, + 24.92927130595799, + 24.9325826575671, + 24.861226052052082, + 24.933437137059194, + 24.985288223667524, + 25.008663683410774, + 24.89263718077744, + 24.953391692460677, + 24.87897602427192, + 24.891196295842157, + 24.961241727941925, + 24.917273829154425, + 24.921947887708264, + 24.863612198747994, + 24.887571017661383, + 24.983785354283334, + 24.841781199945743, + 24.903430172365322, + 25.006795481671723, + 24.941491559032002, + 25.06647812403503, + 25.06025770305375, + 24.973904116407212, + 24.987999809147148, + 24.892390793023818, + 24.950679630451532, + 24.985015342066276, + 25.02375518056441, + 24.983163057405157, + 25.017063605174855, + 25.01709571455557, + 25.06065887541712, + 24.97641986126386, + 24.98380362772372, + 24.9498739902229, + 24.985730535184594, + 24.94445429125569, + 24.905786800717593, + 24.908921211826613, + 24.960825084304332, + 24.871089324226908, + 24.938788670900117, + 24.961050328300345, + 25.003781686402007, + 24.985504554456227, + 24.923909111405212, + 24.960084105856872, + 24.9822229283863, + 24.98387702772792, + 24.937195611434703, + 24.929680526709156, + 24.94686657181501, + 24.98574791115641, + 24.880263554475615, + 24.93388008455245, + 24.938776158972047, + 24.89445506838124, + 24.8922355608019, + 24.996078403289786, + 24.958090222382232, + 25.02054914210648, + 24.93133992310504, + 24.98263308829706, + 24.924522391276003, + 25.031457416227163, + 25.00975392365426, + 25.024553530271902, + 25.02143773770044, + 24.92044751823738, + 24.941555099656476, + 24.981943915497737, + 24.894161066762216, + 24.929299585164358, + 24.876166752779703, + 24.858430352759285, + 24.916752594178384, + 24.961333120836237, + 24.99275862944971, + 24.98616170624716, + 24.968133191605347, + 24.98877677031885, + 24.91386368986405, + 24.979441193886508, + 24.97033132987272, + 25.071170085923356, + 24.945994437788194, + 24.90901548510591, + 24.877770873774587, + 24.955860598808158, + 24.93137711559469, + 25.016048237218087, + 24.965067272088383, + 24.919968034794007, + 24.967496928993945, + 24.921675707355348, + 24.971118850390468, + 24.986024082771706, + 25.03555469498681, + 24.948496702846526, + 24.94183036226583, + 24.99158412015252, + 24.949282116276947, + 24.95781030419794, + 24.94441920512383, + 24.934702494502236, + 24.910470064229315, + 24.990639889011746, + 24.930788993527567, + 24.937907045087808, + 24.972700887339396, + 25.041076975594105, + 25.044971099782316, + 24.98610890582711, + 25.01624718147671, + 24.96746998719897, + 24.943470260743993, + 25.050183116574935, + 24.98748148615831, + 24.91603435642513, + 24.859402179387565, + 24.90611112372119, + 24.989021993802357, + 25.000994382370415, + 24.975400941283567, + 24.917712048365686, + 24.9374256433597, + 24.923092996341396, + 24.868480411136677, + 24.964034732010873, + 24.97352237633247, + 24.967824378872955, + 24.938180410506774, + 25.00481388371053, + 24.951445383416853, + 24.947916020176795, + 24.98686054033002, + 24.912360387742872, + 24.907846687993707, + 24.896557341608364, + 24.90680381661663, + 25.06825459091543, + 25.03521392784998, + 25.04390528889075, + 25.01396458179009, + 25.017935001231695, + 24.91311177987269, + 25.016917653254264, + 25.0273652853157, + 24.968110141102905, + 24.951153573656278, + 24.924013658486913, + 24.895421321036554, + 24.905996689334636, + 24.990813216321364, + 25.054316334847925, + 24.97230863669062, + 25.06575634303694, + 25.179021339278062, + 25.040065356186, + 25.05198521605318, + 24.931901737570488, + 25.01264302065662, + 24.976678925797003, + 24.939130198459594, + 24.918078058032208, + 24.9284337437486, + 24.982823756498995, + 24.907249740793887, + 24.915127337450052, + 25.006179096968964, + 25.03119807155101, + 25.77272318762543, + 25.262561931259757, + 24.98895560723828, + 24.99974243240393, + 25.03152491081019, + 24.98280200188904, + 25.011308994774865, + 24.967468117011183, + 25.000658074120473, + 25.017853478094803, + 25.033796079331402, + 24.900647135767233, + 24.954334779860744, + 24.810529205253072, + 24.911781736945837, + 24.939825692098175, + 24.97115648981908, + 25.0365407114653, + 24.991955404853343, + 25.007298432440194, + 24.922889481171573, + 24.879268028283455, + 24.959425891453424, + 24.91495108327343, + 25.016533793646133, + 24.953868598003602, + 24.959880641511305, + 24.93645030362309, + 24.9529401569703, + 24.926375478366985, + 24.98072448621147, + 24.89683177326413, + 24.916839255446288, + 24.9285794677442, + 24.922710109827236, + 24.956201140342028, + 25.011119969881094, + 24.911912453958823, + 24.927215238213883, + 24.966328437892592, + 24.932340972295798, + 25.007187013477445, + 24.999337638427775, + 24.98236661071124, + 24.961346096814296, + 24.869874660579526, + 24.90103399706034, + 24.91565645848535, + 24.89098587169532, + 24.92730774202211, + 24.991753070444627, + 25.022580839444828, + 24.933756757223662, + 24.980648287629457, + 24.98839508719869, + 24.972364967420425, + 24.964234320401772, + 24.99942471785933, + 24.954693242051697, + 24.893864670943845, + 24.95453542301484, + 24.92032333618046, + 25.02652681778764, + 24.92766980695179, + 24.942406391485328, + 24.95194231668577, + 24.952391070966037, + 24.993579981199016, + 24.995637451389662, + 24.98144159829834, + 24.938892246143617, + 24.953051066727852, + 24.920972061352394, + 24.971878217045386, + 25.00728952845251, + 24.92783729638188, + 24.963939241736178, + 24.99655916679732, + 24.92807598206167, + 24.93124411155089, + 25.040997809773113, + 25.047587162650032, + 25.053578449896108, + 24.939512729104152, + 24.926283927625093, + 24.91538557321701, + 24.944843315031864, + 24.97677160364134, + 24.970667009158536, + 24.919450646198317, + 24.953163191607903, + 24.941775844483054, + 24.9061098735249, + 24.883702957523393, + 24.92334883526221, + 24.886057738371974, + 24.845542868787064, + 24.90049120841374, + 24.853289384625462, + 24.83274630481749, + 24.886303377847405, + 24.928735981836216, + 24.981971057567478, + 25.017157029483542, + 24.983771739900725, + 24.961886657788657, + 24.93824253672063, + 24.987772720399274, + 24.943669289702395, + 24.98617642196686, + 24.925309715180752, + 24.97786970100286, + 25.015795955123014, + 25.00893066249023, + 24.998325705732654, + 24.977922045343753, + 24.99936206429912, + 24.923138905485928, + 25.009844557107932, + 25.037491285790658, + 24.900904243019774, + 25.00675750816727, + 24.883873667449357, + 24.866864815065693, + 24.957435258536226, + 25.008068072755364, + 24.95632496304862, + 24.827821684349573, + 24.902600251430005, + 24.945719454436123, + 24.818202104930734, + 24.808967715138692, + 24.878346084188973, + 24.94397705241593, + 24.986718221929237, + 24.95286882297152, + 24.88371508775747, + 24.884915313146006, + 24.937502717963525, + 24.98534643665733, + 24.903666826379517, + 24.898873097888774, + 24.953316601923294, + 24.985558670905355, + 24.905232022197573, + 24.955263400728732, + 25.00503805912669, + 24.882253016768672, + 24.914262186784253, + 24.99139771605038, + 24.948401438290553, + 24.94866222579123, + 24.874431946236786, + 24.80190870181973, + 24.87251693203556, + 24.925807096010466, + 24.953870705883965, + 24.910498723888118, + 24.907245692608985, + 24.96457717619363, + 24.96228067454996, + 24.999503779983336, + 24.945316243148888, + 25.060921627509845, + 25.03644998115552, + 24.938136100226693, + 24.906203254057562, + 24.984951062038476, + 24.95385027656477, + 24.972796004600504, + 24.91596969737401, + 24.973305181437723, + 24.950514120537395, + 24.910284979543633, + 24.974443983375213, + 24.946513164936277, + 24.96493496004198, + 24.93263360236213, + 24.93076219142389, + 24.939912105716424, + 24.959320614918564, + 24.893320799140614, + 24.960817942066196, + 24.898865069881627, + 24.920922445438425, + 24.85059747948735, + 24.987590669849787, + 24.968508931885758, + 24.90290498263305, + 24.931450495943874, + 25.006259578150505, + 24.885031610424164, + 24.910780551466974, + 24.935536119627937, + 24.9191682471742, + 24.905108986123132, + 24.901944937281254, + 24.89284962467579, + 24.95159376750176, + 24.89950414350639, + 24.923734038507078, + 24.939509403514705, + 24.88533529580195, + 24.906978974419467, + 24.893154405585058, + 24.917239035087455, + 24.80930965572353, + 24.921172072496738, + 24.9755237717945, + 25.05091059869129, + 24.964017364087326, + 24.90942627837555, + 24.9028083597278, + 24.938818449413457, + 24.944495618870512, + 24.85694074448248, + 25.03606081863849, + 25.047113195895175, + 25.0648271262618, + 24.967204573133163, + 24.95078716116602, + 24.9554983237577, + 24.870209646699855, + 24.939134972884982, + 24.925230868629562, + 24.94141842228899, + 24.99080353892394, + 24.954939787021704, + 24.98519338274135, + 24.909693951508235, + 24.921986317126397, + 24.903905929353538, + 24.952261797405214, + 24.973370626221435, + 24.950565907755138, + 24.913067010955615, + 24.95783285830903, + 24.953220409522213, + 24.96005130673885, + 24.90300431715878, + 24.836941653001993, + 24.902213192284613, + 24.960612712677843, + 24.96845862808921, + 24.896732219366925, + 24.961137538482333, + 25.00987488434206, + 25.103547348341753, + 25.004918431895547, + 25.031671717473802, + 24.992553138014152, + 25.07323963592893, + 24.9995472139054, + 24.998370591465935, + 25.018334436527752, + 24.989753894568267, + 24.944743424245353, + 24.95388714083913, + 24.919672810034843, + 24.99161032023718, + 24.90818060373355, + 24.953356600115214, + 25.058812888375915, + 25.068231737451704, + 24.872188465772233, + 24.926261339746368, + 25.1088909959853, + 24.97274186554163, + 24.992917278615053, + 24.952662262560477, + 24.992471372363063, + 24.93378075161094, + 24.902125244351595, + 24.887792221798918, + 25.023399137281835, + 25.010234638133923, + 24.933829345421746, + 25.04113055341172, + 24.898284978437545, + 24.933776620209123, + 24.94108650421797, + 24.92371107786277, + 24.960253049228726, + 24.941923620919756, + 24.98207150670479, + 25.029155264319428, + 24.91946677599273, + 24.936247927245546, + 24.839402283990168, + 24.966153778204493, + 24.92727068751673, + 24.95001122948774, + 24.934380073610868, + 24.963628869424408, + 24.983094261201405, + 25.022236215172118, + 24.970237069156248, + 24.954125557824604, + 24.97606180570554, + 24.943422022410196, + 24.972284322818986, + 25.055472231163936, + 24.958517670842333, + 24.91171577380839, + 25.002193600796563, + 24.893250889724207, + 24.85610534319011, + 24.97903147881524, + 24.93296586982405, + 24.929248834378704, + 24.935061267702157, + 24.92870904828633, + 24.87812601932253, + 24.982760660446484, + 24.96631652096521, + 24.947714548000828, + 24.98105206703213, + 24.917022252780058, + 24.84195614120534, + 24.895069251569947, + 24.93172893373097, + 24.949164047505917, + 24.981396621809612, + 24.885987851171272, + 24.87746297877544, + 24.89967047233249, + 24.89150676246407, + 24.958398642566465, + 24.988395541927026, + 25.02231961619978, + 24.963474670680334, + 25.021048324362802, + 25.00213542177257, + 24.903023947764698, + 24.971721869979817, + 24.99420934669879, + 24.92744714360542, + 24.91850421525736, + 24.924336751398755, + 24.934162795284497, + 24.906202399682954, + 25.002574516618836, + 25.000328324938998, + 24.85895340003713, + 24.86927135755773, + 24.923775139851326, + 25.00196607468073, + 24.965804531095433, + 25.009393615709946, + 24.998507231937907, + 25.09218348338144, + 25.024016824103647, + 24.983062489459833, + 24.917778892849995, + 24.87177243913295, + 24.967859980391726, + 24.931877871183133, + 25.018353259457157, + 24.952151043140944, + 24.968705220241276, + 24.990727136167635, + 24.90872507198526, + 24.854462482763058, + 24.848398718164226, + 24.887455023986995, + 24.93608974628612, + 24.968586252223822, + 25.009524433771453, + 24.917807229034786, + 24.911158760402984, + 24.888334516648328, + 24.894236920245817, + 25.041978641340194, + 24.937977934804497, + 24.93465419058336, + 25.1361590879753, + 25.018776273353513, + 25.063921129673993, + 24.970064574510868, + 25.070893843700986, + 25.021071957843873, + 24.994901587506483, + 24.992179742690197, + 25.049415722044028, + 24.978889918160476, + 24.919590048183238, + 24.925872756312195, + 24.981954268565467, + 24.986093370394304, + 24.93993341113459, + 24.957269074634702, + 24.93712024367816, + 24.91781555984243, + 24.97187892772722, + 24.93801568810813, + 24.903574443878288, + 24.903584777817315, + 24.958981828527293, + 24.99507317484435, + 24.909920235715056, + 24.9083837835895, + 24.88154244454863, + 24.908327380154653, + 24.946361150883895, + 24.95434302780283, + 24.91168961819738, + 24.96271982472028, + 24.882900460101176, + 24.977220381608447, + 24.990740771187326, + 24.994566604120532, + 24.971950063866537, + 24.935152304091865, + 24.97582961834916, + 24.92527018385233, + 24.951825889807527, + 24.95337916182544, + 24.90707852974272, + 24.963510154660725, + 24.967160216139124, + 24.971209787652796, + 25.01424235811068, + 24.984775697507082, + 24.95343842856959, + 24.8918459046401, + 24.963284277975845, + 24.953639345022726, + 24.931992326297298, + 25.01177299276648, + 25.05449537333817, + 24.969944317515193, + 24.94173156105689, + 24.91612681252291, + 24.948062987245056, + 24.99273313535414, + 24.96200128777332, + 24.961581835514274, + 24.857721172034474, + 25.014808916590074, + 24.82968610018947, + 24.846466587455886, + 24.96622291495593, + 24.986973936120876, + 25.041310255425223, + 25.00597221949331, + 24.983579850274133, + 24.991772705782978, + 24.949077674124126, + 24.949983291162262, + 24.917970160452846, + 24.895448482566863, + 24.91042983887342, + 24.87707214902533, + 24.924915271119158, + 24.899258609752614, + 24.9315520053238, + 24.935993768690075, + 25.00320483085453, + 24.9778625659946, + 24.994612352441102, + 24.871011033737357, + 24.85671044728197, + 24.926472904259132, + 25.03085943245874, + 25.04103051323687, + 24.9587201925698, + 24.970995929728232, + 24.925747086905186, + 24.948048257663118, + 24.99083757247864, + 24.965417033617477, + 25.01214941839895, + 24.949609460430633, + 24.97436557756895, + 25.04213798719807, + 24.969342426792515, + 24.828167397136795, + 24.863588996651796, + 24.90607556058308, + 24.971153751206998, + 24.922207453118382, + 24.993542337696265, + 24.93742251370069, + 24.948309766267528, + 24.8924643067308, + 24.929775142518228, + 25.020774637588147, + 25.074186457777216, + 25.022616267470987, + 24.98882482177199, + 24.968899722813333, + 24.917092518076622, + 24.98324553115568, + 25.01655362699711, + 24.91110412302003, + 24.96772250105292, + 24.955355661013172, + 24.981120824983684, + 24.89134350396929, + 24.933484307560427, + 24.965080930414167, + 24.95121463723371, + 24.913378480331446, + 24.906629720555706, + 24.87658857909897, + 24.948949575314025, + 24.865732213519532, + 24.962833102536916, + 24.908932812483176, + 24.995514440709396, + 24.926512145618446, + 25.014193058770346, + 24.95886239268367, + 25.013830682044926, + 24.93487088064921, + 25.039573342941885, + 24.995545619777726, + 24.95426242270121, + 25.041035702076123, + 25.07097956419502, + 25.004125992992414, + 24.970897560404435, + 24.92578475044049, + 24.84542634555796, + 24.9402629431616, + 25.03810026773204, + 24.90907596465505, + 24.98316583234392, + 24.915217753684807, + 24.992957382893714, + 24.97772284228669, + 25.030894834152775, + 24.901348868106403, + 24.902705000993585, + 25.024801031462466, + 25.04935218987211, + 24.989080024399, + 24.92013478527252, + 24.920151249827974, + 24.941922082031194, + 24.970876790590456, + 24.986548963294766, + 24.960195921566843, + 24.91297196424869, + 24.915374400200808, + 24.908098384611378, + 24.97601626593979, + 24.954184519834747, + 24.965543662319696, + 24.899122596277163, + 24.971081547592224, + 24.946326238381392, + 25.013728437554526, + 24.96243575798121, + 25.0179068141557, + 24.897537554777983, + 24.948657747841118, + 24.995988742116655, + 24.97343090164268, + 24.94177219539894, + 24.95771974327957, + 24.949435624299902, + 24.97841330277643, + 24.874479190891783, + 24.92332353200385, + 24.906419285438705, + 24.917525698977435, + 24.936375767450393, + 24.954698822516214, + 24.84015219750455, + 25.090507594132383, + 25.20192044497998, + 25.343517055712624, + 25.330607380554934, + 24.930362050112016, + 24.86244980293943, + 24.870577220611104, + 24.903853797790646, + 24.97540766551458, + 24.99301866860047, + 24.90537431683117, + 24.942851394767906, + 24.942715681949196, + 24.954014887199172, + 24.941871564111572, + 24.94858901384973, + 25.01114616333182, + 25.000085741200447, + 24.975764481220818, + 24.901582999330486, + 24.863624656179233, + 24.910207056660518, + 24.94846012069065, + 24.954876884207124, + 24.871634390976833, + 24.982541883136783, + 25.024831452881457, + 24.939947974931194, + 24.964998651941862, + 24.97607708585098, + 24.941181099222813, + 24.91930025801245, + 24.975396047883017, + 24.921849501868458, + 24.931979616903085, + 24.90698875825109, + 24.961921671277064, + 24.805187060907166, + 24.793854787068845, + 24.858632616440502, + 24.8825350420939, + 24.907091807179867, + 24.81118729010567, + 24.8418159195286, + 24.93906641121548, + 24.911398099600902, + 24.868269938015743, + 24.91588393652726, + 24.911034754782825, + 24.93109884563234, + 24.961793724532093, + 24.91585781634404, + 24.935892221554354, + 24.868053552561033, + 24.88307556568528, + 24.870458032417588, + 24.88200605236856, + 24.847273364383653, + 24.842531380649056, + 24.95953389067062, + 24.976275572120024, + 24.952519638370653, + 24.92316977414081, + 24.952595506805235, + 24.933611366479326, + 25.053453109511146, + 24.990046849675124, + 24.9471130188034, + 24.950347282034855, + 25.002999955800338, + 24.95146175793389, + 24.955033613962648, + 24.987464658654666, + 25.00256650235167, + 24.919179837968557, + 24.95122312917816, + 24.897042626201348, + 24.90067749842431, + 24.929687450653798, + 25.0391314740221, + 24.94252572600898, + 24.87007868025905, + 24.93107620923945, + 24.978798983303946, + 24.936199364456225, + 24.907425888002663, + 24.939474903011515, + 24.962643537803896, + 24.949287700766543, + 24.926449756433875, + 24.960589114418397, + 24.93235003893097, + 24.94331742570201, + 25.015279082043065, + 24.98772456174678, + 24.929163466129083, + 24.89950945975462, + 24.869930172725258, + 24.92713046358061, + 24.887480524368865, + 24.926388887524965, + 24.97188180543153, + 24.9134097652094, + 24.923820530686296, + 24.926519356200792, + 24.943399898585916, + 24.92266806163282, + 24.87663590374762, + 24.879323676730017, + 24.909348144875416, + 24.943602780431785, + 24.939840530442495, + 24.95916351332106, + 24.996954570477747, + 24.987357881058866, + 25.02370172403682, + 25.019152282842832, + 24.900060292753864, + 24.896815595658243, + 24.965970251005757, + 24.96571694640445, + 24.956070511568736, + 24.887661151779646, + 24.855450759244572, + 24.872793327722643, + 24.918766333870465, + 24.990178028497073, + 24.940884853844448, + 24.931198284090122, + 24.956544599310984, + 25.002188510376435, + 24.97050295490194, + 24.93400045607112, + 24.930914948136632, + 25.021874692831254, + 24.93302723342156, + 24.906753260341, + 25.023590293792427, + 24.95899051727502, + 24.975783431092133, + 25.03618923180818, + 24.87894040439885, + 24.929430559810974, + 25.0403746640867, + 24.956538943740284, + 24.94430789808146, + 24.93361365816236, + 24.855947084640807, + 24.98488734661673, + 24.9838048766632, + 24.960137791493963, + 24.960321511355694, + 24.934056716345076, + 24.93996650975065, + 25.00089168269682, + 25.02640479200249, + 24.943461416605295, + 24.9858541572902, + 24.904061011824496, + 24.94880110598029, + 24.966211416892946, + 24.923667361611095, + 24.868160851327296, + 24.815251266616052, + 24.855009763825976, + 24.8627325750896, + 24.939873143584414, + 24.92058067108384, + 24.984872725806095, + 25.038613024628436, + 24.979974376857445, + 25.0681337562536, + 24.97908435761663, + 25.030762318283244, + 24.98702024982617, + 24.872947834440254, + 24.947909401550405, + 24.99252798900562, + 24.877026441565846, + 24.954912759793487, + 24.887991203912755, + 25.000305941381036, + 24.884689239250953, + 25.018086348087728, + 24.97824003699905, + 25.016718903158857, + 24.936657729710987, + 24.978152701121765, + 24.966320003859348, + 24.945096646495095, + 24.945979897499193, + 24.97257514003023, + 24.89031531850517, + 24.91831778558254, + 24.92117806273843, + 24.910230006644284, + 24.88653539879673, + 24.921388928677324, + 24.88299358366534, + 24.84356751250987, + 24.960944573904605, + 24.92488193700209, + 24.94647560652846, + 24.91658348343651, + 24.8483561908481, + 24.910492012906545, + 24.970826898606525, + 25.03856438155617, + 25.001172784934244, + 24.94785841521412, + 24.955094261808423, + 24.983791671348758, + 24.836102612581264, + 24.872027530308273, + 24.851572749186516, + 24.868535087569263, + 25.0030264110081, + 25.002445290964033, + 24.986639951637198, + 24.97372774714642, + 24.914701578602745, + 24.939826884821514, + 25.024897935788964, + 25.147202773196774, + 25.21245635499914, + 25.078238639823006, + 25.17855230793576, + 25.1645781320966, + 25.188868170577333, + 24.93340395221073, + 25.013129095718373, + 24.96858963321835, + 24.95204210132095, + 24.934978662676627, + 24.93723936276495, + 24.951816005498593, + 24.842990088847323, + 24.97129560845451, + 24.998169954996726, + 25.027502480463617, + 24.977146458802288, + 24.962936020379544, + 24.96517602281124, + 24.878665993219023, + 24.971023923932137, + 25.011331849633905, + 25.019936208304102, + 24.92300196633183, + 24.934984749093037, + 24.950706497236077, + 25.00125198652763, + 24.972857430519905, + 24.93784498172588, + 24.950438992581546, + 24.852721199637067, + 24.830378278138554, + 24.990829300070132, + 25.02117772161916, + 25.04342322309975, + 25.037600395577602, + 24.950355791491166, + 24.980611558344073, + 24.960648565759143, + 24.970355834730647, + 24.950840690565244, + 24.916022945158602, + 24.979061245004345, + 24.96821980497389, + 24.967052369227417, + 24.954578897878726, + 24.922628220420883, + 24.856734884737243, + 25.072145624505055, + 24.95935841209904, + 24.858299986262253, + 24.959648923142787, + 24.972732214129195, + 24.924103272498925, + 24.917663662264147, + 24.887630231748663, + 24.895881515209172, + 24.85157940487022, + 24.93802498235771, + 24.930318392824873, + 24.888452656586022, + 24.90629599635393, + 24.98482268285563, + 24.90274683398099, + 24.932652158649518, + 24.897229612609742, + 24.933703486675878, + 24.865584076084417, + 24.904732974295207, + 24.910349853364913, + 24.915693458780687, + 24.97045519995713, + 24.963683556055763, + 24.97268177140623, + 24.98006187941996, + 24.922716294749588, + 24.93929876158537, + 24.975902540578762, + 24.913750825181168, + 24.890633337939548, + 24.903833082819773, + 24.888528356513852, + 24.87336378097074, + 24.940043425927684, + 24.956927374432276, + 24.942813645430192, + 24.955719016742663, + 24.87785798290621, + 24.910831153086384, + 24.991623381072223, + 24.96361088914697, + 25.04939061510803, + 24.899391791434173, + 24.98187293764134, + 24.974908082479725, + 24.97512059716844, + 24.942820127421143, + 24.923241981658457, + 25.03926693396548, + 24.971353777461374, + 24.874943353741106, + 24.907636053231656, + 24.9142030390043, + 24.961329325031773, + 24.882052009662036, + 24.933116228400017, + 24.968650034831235, + 24.90457693029748, + 24.96958588816042, + 24.907661922947057, + 24.938229272784532, + 25.00038940966926, + 24.950432232421242, + 24.897541474688843, + 24.877660768579467, + 24.937030101927867, + 25.016622984751017, + 24.924835835692413, + 24.897472734320885, + 24.949906723753703, + 24.91220041854455, + 24.849649081041314, + 24.891989918211728, + 24.98528906707918, + 24.958373418344124, + 24.873285546175744, + 24.833524660818846, + 24.941288264882402, + 25.016585788118487, + 25.028123999702025, + 24.897763858772386, + 24.940719158067512, + 24.909902458673255, + 24.900805983513166, + 24.943274220437363, + 24.929522507707638, + 24.939463470557715, + 24.953249082245335, + 25.026776827097496, + 24.973520565822554, + 24.958377250927413, + 25.013397800408747, + 24.953612362435337, + 24.921994421334716, + 24.919891839491413, + 24.938034808457513, + 24.918755691977758, + 24.85822289418125, + 24.978059264079405, + 24.950216711022666, + 24.924757451969313, + 24.865852527724684, + 24.856764099707213, + 24.91326363974192, + 24.93664683066067, + 24.97760439289301, + 24.929277695318767, + 24.933427883833076, + 24.915794943766976, + 25.001675528190248, + 25.017017566302876, + 24.95248646104819, + 24.928451393183103, + 24.871227549329557, + 24.94666651274566, + 24.91544764668581, + 24.915270111172248, + 24.929402365914274, + 24.93031922009878, + 24.907656817649162, + 24.973583154043013, + 24.933776308877007, + 24.880921224260618, + 24.913629679991907, + 24.90943540219653, + 24.90526926192898, + 24.951967797792367, + 24.977322905412358, + 24.985235623114676, + 25.05430983003384, + 25.001975379123913, + 24.97759657756898, + 24.91093480113534, + 24.90321924543441, + 24.953850661102635, + 24.910907667495742, + 25.031311585542234, + 24.9488109131642, + 24.87223310092535, + 24.937021288121812, + 25.05058666077329, + 24.943817888364123, + 24.98303663135535, + 24.930635499396246, + 24.914178387812782, + 24.963791549091503, + 24.935020291943147, + 24.91892032131458, + 24.980468394973876, + 24.89525879478127, + 24.91095082898174, + 24.88538591427141, + 24.876111698265472, + 24.95197995826399, + 24.939331458174244, + 24.94006468608711, + 24.979019218607228, + 24.900672926800915, + 24.944386681503456, + 24.938406388150902, + 24.98060104367385, + 24.911499620360594, + 24.938399654481877, + 25.053579590122965, + 25.09529930853018, + 25.110077046915308, + 25.032533819135704, + 25.02567385169432, + 24.921790635941793, + 24.952927137665597, + 24.904069951032927, + 24.938130160865988, + 24.900149359239194, + 24.9476943631566, + 24.97492817959551, + 24.944418333669446, + 24.9952223771895, + 24.98617624616728, + 24.960181470609204, + 24.995776690501124, + 24.9141313420563, + 24.938918946605913, + 24.9283193616587, + 24.95150606402917, + 24.977884965791425, + 24.950210771890667, + 24.91916989421341, + 24.929696629530774, + 24.840438512004837, + 24.87495152600243, + 24.879299057453593, + 24.93599084362214, + 24.90005344283464, + 24.959184340969497, + 25.0299780136725, + 24.930742780822698, + 24.922979900962137, + 24.980825164038894, + 24.990025391997175, + 25.022008471635537, + 24.996804984306316, + 24.964689971051744, + 24.92242254094633, + 24.982569442176658, + 24.968611834637983, + 25.03507425150877, + 25.05797985094199, + 24.981919142786708, + 24.919783969988266, + 24.925613922803443, + 24.92633917664231, + 25.067828800533324, + 25.021028191436827, + 25.08671047530958, + 25.034167608703623, + 24.997760024322695, + 24.94267263919926, + 24.958488742832333, + 24.925557276800955, + 24.92947466662268, + 24.95428277540139, + 24.900562970589547, + 24.970165841578705, + 24.95743113700979, + 24.931164207790193, + 24.923530341514628, + 24.908117776063555, + 24.922870491373388, + 25.012025223960443, + 25.087593481083438, + 24.950343338033292, + 24.9000995926329, + 24.94691960255937, + 24.99296708297843, + 24.898289368390255, + 24.965295783191255, + 24.91326671588385, + 25.002644931253933, + 24.93611429958503, + 24.952348262506057, + 24.926408749961972, + 25.00475603041698, + 24.85734529167614, + 24.87520230513755, + 24.864919296791413, + 24.93452026902667, + 24.963656836856632, + 24.92559930041567, + 24.964061691695278, + 24.89911195382532, + 24.87129371928885, + 24.864101599462927, + 24.99199037671983, + 24.93542724677735, + 24.97343673086234, + 25.036489780916085, + 24.84206622557095, + 24.91353197010973, + 24.963171236494553, + 24.927225067619773, + 24.930499728135384, + 24.921988219079815, + 24.970271118218406, + 24.930542091289187, + 24.983138353161472, + 24.957550228420246, + 24.9376487207445, + 24.90100196735308, + 24.919790415149876, + 24.900521545418936, + 24.975207741452216, + 24.992730371164697, + 24.745730141985902, + 24.862764622170072, + 24.897526076262587, + 24.901623331413397, + 24.91083715234372, + 24.88201867375279, + 24.917531305457672, + 25.093202944159742, + 25.03432172668414, + 24.954031064513813, + 24.89906179813694, + 24.980183893955207, + 24.966238635119332, + 24.952795658610796, + 24.945617676112562, + 25.044313283442577, + 24.987830590764368, + 24.84665478969692, + 24.923029942902417, + 24.996216643372623, + 25.073404031897823, + 25.002522322389133, + 24.912901451547917, + 24.969322889295185, + 24.936364681131085, + 24.895520253652073, + 24.88394978959299, + 25.00453111893237, + 24.993080704065253, + 25.010148985522278, + 24.908151978555857, + 24.968761969216118, + 24.995492647567684, + 24.9262643836005, + 24.983192175528256, + 24.990340893568273, + 24.899456620312883, + 24.813833879394817, + 24.890641197580244, + 24.948646133643813, + 24.93247654685771, + 25.046183925544064, + 24.988534858452176, + 25.07325334469698, + 25.019719995551206, + 24.858596838112213, + 24.9407345479649, + 24.952784561479532, + 24.935410996883903, + 24.904061251630594, + 24.901854336452594, + 24.915643975278364, + 24.88809691105086, + 24.971010414868147, + 24.95408124207197, + 25.01976995746795, + 24.903116665081832, + 24.93798699986776, + 24.937721475988273, + 25.008309437618735, + 24.97243958794089, + 24.977449804212732, + 24.98615063056153, + 25.003656451272455, + 24.93138729571226, + 24.96123117692982, + 24.98211966035959, + 24.97660161886544, + 24.909009143911064, + 24.886569447797452, + 24.99128376871607, + 24.96377746066988, + 24.88832440664392, + 24.89252714947943, + 24.9404127697858, + 24.95901227722024, + 24.929458826201248, + 24.893105556662263, + 24.900965066141058, + 24.97627845168889, + 24.929409039173844, + 24.956940500290212, + 25.024531327360478, + 24.949602253439508, + 24.945704474904037, + 24.924599748003658, + 24.85570642721083, + 24.86671984063539, + 24.871043280918354, + 24.914991201373702, + 24.914661917709758, + 25.05929179193939, + 25.02194520658294, + 24.933737307258895, + 24.963721927127096, + 25.054959897813998, + 25.06626601799492, + 24.96191263115926, + 24.974428293402212, + 24.934090045048006, + 24.998851263286554, + 25.017955775697782, + 24.944502362122172, + 25.027139492030265, + 25.008548220087174, + 24.891752655036896, + 24.88098092763418, + 24.984993786761933, + 24.968396611917655, + 24.967412533846577, + 25.02036848496014, + 25.003167934480174, + 24.97974356842583, + 24.94863704106956, + 24.92211107574519, + 24.94687978884235, + 25.05529133308584, + 25.04957506898444, + 25.032210490753783, + 25.015941530127684, + 25.07781095815966, + 24.93952093836976, + 24.846347399951576, + 24.88027627807182, + 24.87229117201408, + 24.89193674241432, + 24.85575162764908, + 24.94245886676042, + 24.97786212984343, + 24.976794272467966, + 25.0190757378298, + 24.963969356998476, + 24.99107329584683, + 24.904258532600632, + 24.899039129762976, + 24.986743488098135, + 24.942563369121878, + 24.914465778617735, + 25.024473545654587, + 24.917418604618558, + 24.96036889310795, + 24.91128854574363, + 24.941665970243264, + 24.97484801555678, + 24.979315300870432, + 24.93979072675539, + 24.996877975732097, + 24.968634946994776, + 24.94807108161618, + 24.938277879918324, + 24.920302931556797, + 24.969149716724516, + 24.885597990849135, + 24.939364978963155, + 24.99250826857076, + 24.95700201245227, + 25.02298734671485, + 24.993663900453456, + 24.931413071160307, + 24.945170274189856, + 24.840320065715108, + 24.949715227994453, + 24.99869604357589, + 24.941142697503217, + 25.010305352853955, + 24.948722561276206, + 24.94750900291102, + 24.95136344170939, + 24.94865970766596, + 24.96470809441209, + 24.93790071076165, + 24.909968834464255, + 24.880562690713013, + 24.901054766686656, + 24.97781778995239, + 24.937270106819106, + 24.832019337465574, + 24.906543527907754, + 24.96141165986329, + 24.97468023667976, + 24.973663630426174, + 24.970771118525356, + 24.97243634848779, + 25.01692214438938, + 24.9940772773353, + 25.051465362487598, + 25.083840362667807, + 24.94493085389025, + 24.938198911047532, + 24.910423858533903, + 24.91548461930051, + 24.966635529087434, + 24.903609354492993, + 24.943987705540316, + 24.947583197727305, + 24.8761274851457, + 24.996685887329697, + 25.05286306039717, + 25.003707474825237, + 24.989441859968686, + 24.966070968079237, + 25.006848152509207, + 24.962069978826303, + 24.93779208776591, + 24.990177294643413, + 24.946739037277066, + 25.023935064963723, + 25.00868423007394, + 24.9736400292961, + 24.870631751677212, + 24.972216776990564, + 24.978451155841768, + 24.94926815860441, + 24.908393472515485, + 24.966385633557124, + 24.905303843156286, + 24.970428530073434, + 24.979004757220928, + 24.960744798578187, + 24.971193841895953, + 24.905045107908624, + 24.85908460515573, + 24.969546432841568, + 25.011182107279495, + 25.042172630572068, + 25.006347760461413, + 24.988959368844117, + 25.00572279888508, + 24.95248319331217, + 25.01234381103621, + 24.93963194759595, + 25.03542011608625, + 24.86229833095711, + 24.901149976065593, + 24.961679243712688, + 24.961558011262127, + 24.951711050717158, + 24.97179860389493, + 24.944595716115103, + 24.990987664612412, + 24.958456494325695, + 24.985449986038716, + 24.94204267235903, + 24.995214507380105, + 24.936946222173464, + 24.94028861203242, + 24.921468081546628, + 24.911074434343213, + 24.929833892823503, + 24.896143808057566, + 24.910624568835853, + 24.89740523737355, + 24.91548449058432, + 24.895541810798072, + 24.925306104736883, + 24.95093747937603, + 24.915774593974334, + 24.907441020610584, + 24.941983459121307, + 24.90891595977446, + 24.982079130447826, + 25.013827055405784, + 25.034990753351437, + 24.874664354130523, + 24.936629873815896, + 24.948684921825112, + 24.96314748716814, + 24.957640236876383, + 24.98737871275705, + 24.936425980296292, + 24.956676013911114, + 24.90866320204156, + 24.97499827552774, + 24.911661198271332, + 24.886452561604777, + 24.907363499411986, + 24.99840598874643, + 24.956184472702027, + 24.917949551106865, + 24.965948095212, + 24.92552539449534, + 24.915806302434177, + 24.890616975626592, + 24.995791007412627, + 24.952970228735403, + 24.92540050785544, + 24.969889581936567, + 24.997722027902654, + 24.92345599669133, + 24.975304918644504, + 24.930885559573905, + 24.891888880055525, + 24.91236715029502, + 24.924797324192, + 24.87595811128375, + 24.90235905575436, + 24.966269254493447, + 25.018497722688213, + 24.98056823724105, + 24.959199502499136, + 24.87788254650829, + 24.96373077006882, + 24.917048566082386, + 24.79369365326994, + 24.750381265852443, + 24.85033117048453, + 24.872607155269236, + 24.941226899196298, + 24.959482707012675, + 24.951761773915404, + 24.949913727424846, + 24.98693516309679, + 25.000726059828672, + 25.014767807478457, + 24.958201908472745, + 24.98898556418426, + 25.0003005977971, + 24.918565086540053, + 24.88528422052923, + 24.974786784146204, + 24.985144901976263, + 24.938170951087343, + 24.937813086857787, + 25.022827819993125, + 24.99315700512096, + 24.950018332392325, + 24.866319315281753, + 24.93177856657507, + 24.959732820887893, + 24.93258580788903, + 24.895071352462352, + 24.902502124175285, + 24.904497746135917, + 24.857462003098732, + 24.90439056381912, + 24.917259188135052, + 24.98638284816404, + 24.98731400350909, + 24.91454782301423, + 24.91882854202984, + 24.92432073265896, + 25.019467654322185, + 24.93259121455232, + 24.86876790916417, + 24.885382809891993, + 24.864100333614395, + 24.93789126202843, + 24.940308510266, + 24.93388214678699, + 24.97976105472428, + 24.954863527437404, + 24.894348964874876, + 24.9155320569229, + 24.91329144520249, + 24.914118277369532, + 25.003294580661414, + 25.041326177339386, + 24.948295931745832, + 24.944488720598493, + 25.01760631230867, + 25.00268199524121, + 25.02384858139027, + 25.3641796326333, + 25.361455113476886, + 25.405819279970267, + 25.421535185299284, + 25.314425705100266, + 25.349939745466763, + 25.489788871936323, + 25.259249081377103, + 25.223891566386325, + 25.161050152646194, + 25.087236550798583, + 25.22220078967296, + 25.0951596764451, + 25.04807084412622, + 25.05713140874448, + 24.988900620064506, + 25.122882529396314, + 25.176380086725075, + 25.11093070729652, + 25.14460473294015, + 25.32353802192, + 25.35281801874299, + 25.514034012059735, + 25.131312166999315, + 25.291847320456736, + 24.9728263856822, + 24.953433225356417, + 24.964346615575494, + 24.95507566625112, + 24.921480020005077, + 24.81397918042725, + 24.946253195992597, + 24.90272582258286, + 24.92218044890518, + 24.940660005962116, + 24.918338704894722, + 24.963092494457463, + 25.054235542174503, + 25.02309987491421, + 24.95525054848183, + 24.92437204086277, + 24.89653516241158, + 24.949500893511413, + 24.860813523739715, + 24.89591836931443, + 25.00002513764233, + 24.969457705147065, + 24.98083051266205, + 24.938735422814823, + 24.94969013712422, + 24.951208347479422, + 25.039675410923742, + 24.964159472463393, + 25.030250321385587, + 24.98233595901616, + 24.891145990529303, + 25.069831851293507, + 24.962796801670354, + 24.916284497676635, + 24.93586270667099, + 25.01173118630289, + 24.895714178582395, + 24.89243116251444, + 24.814198056124788, + 24.821621436230608, + 24.843859761330133, + 24.85998565877746, + 24.931690025493886, + 24.970215758915028, + 24.98018200939304, + 25.000309938111243, + 24.967755242546968, + 24.927585527579357, + 25.097797881542157, + 24.96964552669339, + 24.965171186440216, + 24.966562186043554, + 24.921314665352366, + 24.87960835246915, + 24.98030626689555, + 24.91897359522195, + 24.841594537080116, + 24.825477046910812, + 24.87551717424382, + 24.857822096250896, + 24.908023796885814, + 24.91946780579306, + 24.899378522896264, + 25.010969369960364, + 24.88198949303796, + 24.985051020919435, + 24.91756782693799, + 24.980042040258283, + 24.898456419893318, + 24.942413520405317, + 24.966639244336392, + 24.921908522957573, + 24.93191440921735, + 24.971755496945136, + 24.93779362238632, + 25.019556665550954, + 24.961868763015346, + 24.972754060918536, + 24.957999586380453, + 24.91223999682191, + 24.889827109302207, + 25.05384525386591, + 24.993750647351792, + 24.959379191331713, + 24.96509168840972, + 24.958875820922145, + 24.92621078145359, + 24.893506972964296, + 24.96199504445546, + 24.92691836220881, + 24.94385050802297, + 24.919110499032147, + 24.96190133025582, + 24.88069480083288, + 24.96103907666879, + 24.966316066643188, + 24.89210125979894, + 24.91783159729903, + 24.95534199085091, + 24.955828887490885, + 24.91500910629771, + 24.870213416287747, + 24.935544893315694, + 24.95812111032152, + 24.980215722954902, + 24.967324112108535, + 25.01762011989142, + 24.883188434724374, + 25.042751340076876, + 25.0080342966687, + 24.91042319989619, + 25.10525053901211, + 24.92805555084213, + 24.92795726368704, + 24.915502492270843, + 25.003953061265353, + 25.04535707507225, + 24.960528421069853, + 25.025718363597406, + 25.018420555030424, + 25.08897662656109, + 24.980464951967818, + 24.963372088389203, + 24.98521098318553, + 24.88830713450136, + 24.89437748572624, + 24.85270460969009, + 24.884660597396607, + 24.938898993816743, + 24.925474994155437, + 24.94362308485472, + 24.96135514893082, + 24.90405053160471, + 25.2424147517686, + 25.226080507543667, + 25.289210905680296, + 25.182459919769652, + 25.362255301561515, + 25.366596172703883, + 25.333235391998322, + 25.160000400730745, + 25.074099978169137, + 26.046310562788275, + 25.02336069048896, + 24.952987674367286, + 24.90342697807977, + 24.910041338452224, + 25.026241266580122, + 24.887335318456948, + 24.914433338536988, + 24.872281213202193, + 25.000887393646494, + 24.99874108064381, + 24.977122510671492, + 24.96931865498901, + 25.00466793527093, + 24.902564579189765, + 24.901075419808556, + 24.876871830796222, + 24.889388512687965, + 24.87547536322193, + 24.92427145750652, + 24.942979374826063, + 24.92583099186972, + 24.96774798190103, + 25.000167394546533, + 25.000500159287125, + 24.98600685065123, + 24.91270221151572, + 24.89502538983885, + 24.96328810699693, + 24.90144148295382, + 24.94337100114817, + 24.967238860786495, + 24.984000720819417, + 24.82792589267372, + 24.866304962432558, + 24.818293433143644, + 24.914553682476495, + 24.960787131956536, + 24.948630174605064, + 24.95290723477944, + 25.005440670778764, + 24.97029285310481, + 24.88787255576375, + 24.985044782818207, + 24.939863326178042, + 24.993476242334275, + 25.04671517675579, + 25.052088420159485, + 25.019451188127206, + 25.01315666394016, + 25.00526030829583, + 24.938834375130575, + 24.940772392865018, + 24.91249937190719, + 25.07773230303343, + 25.0101237375571, + 25.044564734835426, + 25.02460130176604, + 24.85511098025477, + 24.857666011645364, + 24.968030036988466, + 25.063167267814386, + 25.04051122687528, + 25.02871101681343, + 24.98629206945555, + 25.04813858490878, + 24.92565266668288, + 24.89724578317351, + 24.933041988616644, + 25.018969024576283, + 24.830016782035685, + 24.878011733071077, + 24.86336078488337, + 24.963509642942515, + 24.920713292058565, + 24.913156932770228, + 24.942894372202055, + 24.919995776470813, + 25.028721569392214, + 25.008313704399985, + 24.975342149691315, + 24.847675656032933, + 24.865879700871403, + 24.84441638292075, + 25.004513119608806, + 24.96912087993109, + 25.00872537200455, + 24.959100695308713, + 24.976630938652015, + 24.987018714613882, + 25.058082280724257, + 25.078615581540475, + 25.05366013536929, + 24.930897563558844, + 24.98111247746753, + 25.02843151992994, + 24.95786434766877, + 24.95608930578951, + 24.9620336256196, + 24.93320335632979, + 24.90674613492328, + 24.93689497681069, + 25.00285960011138, + 24.95036748188013, + 24.965736003450985, + 24.964820793195692, + 25.057039452915898, + 25.037822984512708, + 25.004540618325926, + 24.94316289232013, + 24.964292022958777, + 24.964400275440536, + 24.944662605171096, + 24.861262350698283, + 24.94401731583318, + 24.867392379626285, + 24.95090817327526, + 25.065254718514815, + 25.052712826500823, + 24.914652066661105, + 24.908414767393012, + 24.903461677580566, + 24.9043427857941, + 24.917892873502918, + 24.90165461901472, + 24.95341420592018, + 24.904893941156082, + 24.888011601170273, + 24.948543897712575, + 24.986208067460375, + 24.899549850090484, + 25.03645831570009, + 24.941775231485437, + 24.903830032158858, + 25.08601650623927, + 24.94070377065729, + 24.942156605195017, + 24.917544338457915, + 24.908189152948204, + 25.011422460797903, + 25.03451002062213, + 24.94446924268513, + 24.964494404799673, + 24.99039010737119, + 24.94922906456393, + 25.012798515893422, + 24.96451101827855, + 25.0425216825596, + 25.01970966115016, + 25.00697425262934, + 25.018146729717238, + 25.012236992313586, + 25.032818610791118, + 25.008370232773494, + 24.928296289165935, + 24.96992323784063, + 24.839346835957457, + 24.952123310156388, + 24.96808976664179, + 24.951565768019, + 25.060701413889017, + 24.966126190333732, + 24.99231887869071, + 24.886034653811926, + 24.871313516211877, + 24.882301428827148, + 24.976546860425433, + 24.879502898959117, + 24.996065920961968, + 24.93828480084148, + 24.895073164896893, + 24.928612324222293, + 24.94833547226926, + 24.991892953449533, + 24.961632032610254, + 24.93289054067226, + 24.935925256995322, + 24.83517532628654, + 24.96468216255243, + 24.862099445192072, + 24.949706753662632, + 25.011943742871345, + 25.01527616016905, + 24.944175601771896, + 24.90113112199817, + 24.885274902547316, + 25.095301048433562, + 25.001121763628085, + 25.015595848187758, + 24.93146428275214, + 25.003889475623346, + 25.071873881780128, + 24.965586297387397, + 24.993017792821192, + 24.93012937902943, + 24.949604305487476, + 24.981724140033553, + 24.972152230699166, + 25.04047703377715, + 24.9886702475778, + 25.01647245331868, + 24.95574321184001, + 24.89615686411353, + 24.875451249446833, + 24.920822492178495, + 24.924996927051723, + 24.973599845231206, + 25.001236228255806, + 24.97177364038056, + 24.961475715565857, + 24.945049854951755, + 24.97543465465249, + 24.940611668985014, + 24.9878736895322, + 24.93628892651601, + 24.860590868947355, + 24.879813063894524, + 24.836834378785078, + 24.935601405799154, + 24.955099641822862, + 24.944127670533923, + 24.887246148170625, + 24.832492943397007, + 24.92788814554042, + 24.926460304088828, + 24.93172308857128, + 24.942906327993647, + 25.00186983593719, + 24.87866572728216, + 24.872043921483105, + 24.919509851762577, + 24.94609511445824, + 24.941074454985543, + 24.982491050207656, + 24.913472808534248, + 24.971039283429214, + 24.99599365239591, + 25.039089909538376, + 24.99889350490164, + 24.947161009734145, + 24.881529159801154, + 24.834512011526677, + 24.910361912358386, + 24.995249420790074, + 25.005027054277576, + 24.92314431847654, + 24.962313448115054, + 24.984622992100302, + 24.92516723784723, + 24.9787386561214, + 24.90271682040268, + 24.821192784323692, + 24.91776219551352, + 24.908884176291323, + 24.94244953198538, + 24.907661450234535, + 24.905530587176862, + 24.965733721317967, + 24.94251675447781, + 24.885243379474304, + 24.92411530219603, + 25.161332147654075, + 24.983695286197527, + 24.96184815667245, + 24.970402204197534, + 25.06138839406018, + 24.868989314986095, + 24.913039363088792, + 24.962716633671704, + 25.000658240887656, + 24.999136818109598, + 24.982481955919056, + 24.94314424767602, + 24.957473409371794, + 24.88363654594972, + 24.945395934747076, + 24.987586424058556, + 24.93253070246101, + 24.917938013151712, + 24.9858967140959, + 24.919756939179663, + 24.939539711959807, + 24.97143578658615, + 25.000286163716112, + 25.032772715535963, + 24.971516941547886, + 24.993134117830248, + 24.97677827082061, + 24.962798392681623, + 24.8303465312032, + 24.95014933952077, + 24.957970253453418, + 24.987049026261495, + 24.969896203804325, + 24.895268970142652, + 24.945023250168184, + 25.023506625033967, + 25.037141715816535, + 24.86761043854469, + 24.975508563758538, + 24.942405895988422, + 25.0187324588151, + 24.909244764381718, + 24.865101229724658, + 24.902461945556063, + 24.92801271473143, + 24.908813330404755, + 25.01717721565933, + 24.99287164501647, + 25.052991429881054, + 25.021225655055503, + 24.948080159995698, + 24.953960199007454, + 24.912724833071188, + 24.931493546979468, + 24.969586933928667, + 24.972104479142725, + 24.90679898856188, + 24.905647905819926, + 24.974035171724644, + 24.911702602535808, + 24.952091964405533, + 24.98880796243366, + 24.859348290675584, + 24.89512490407684, + 24.98863499291509, + 24.946176211346835, + 25.01780638113076, + 25.04282415515654, + 24.93460797606596, + 24.897197668628117, + 24.96301440853312, + 24.91488981708065, + 24.98083878234244, + 25.012627821034222, + 24.987401793674813, + 24.933332058808794, + 25.016724830168357, + 25.03740186860165, + 25.041562098925677, + 24.99026945724271, + 25.02309376325573, + 25.019212493787364, + 24.97398562974996, + 24.926977994209423, + 25.00093592999599, + 24.98182552897324, + 25.023748234232414, + 25.001658951416715, + 24.98388448716482, + 25.006852410184642, + 24.987325109970488, + 25.02885770774172, + 25.07531247983851, + 25.044705792224203, + 24.980431364738777, + 25.045707305046662, + 25.02222117759115, + 24.936586263211524, + 24.93994526219997, + 24.94814402245879, + 24.92876743654336, + 24.948381693188562, + 25.039589782001375, + 24.97149113485589, + 24.911118013804863, + 24.835405616887797, + 24.947991806924012, + 24.92686734394923, + 25.021980093495763, + 25.023376680542658, + 24.96085786153037, + 24.86861551158304, + 24.85252577336986, + 24.937247924401316, + 24.899567524429, + 24.944140458092022, + 24.972383935131482, + 25.04373295785942, + 24.9548397671548, + 24.892548477388303, + 24.87090255958951, + 24.965725523277086, + 24.9811665076816, + 24.97429068053079, + 24.90195092577254, + 24.89515934788865, + 24.87085404082667, + 24.931396241926706, + 24.97519322225719, + 24.939890767479312, + 24.991384289916745, + 24.98165602785313, + 25.023283587772106, + 25.00330244468966, + 24.976742992124734, + 24.86051908474559, + 24.901348118090787, + 24.962665148925346, + 24.937159905035585, + 24.919847929834077, + 24.892925242778688, + 25.05707764339975, + 24.979795099440953, + 24.89656890013668, + 24.924375728423577, + 24.967420667366017, + 24.906579231197345, + 24.92443469446291, + 24.921066938488664, + 24.915057014234087, + 24.98726536634068, + 24.963371897320343, + 25.001710575564964, + 24.951339119828944, + 24.905904672163615, + 24.822990595196714, + 24.904841643229297, + 24.958463852032153, + 24.942236609154012, + 24.983293732598117, + 24.947026152759005, + 24.903223738602925, + 24.885015476426823, + 24.91178471888297, + 24.9666562682274, + 24.987245937258315, + 24.99967268716266, + 24.9890710519571, + 24.94727842270015, + 24.946747745130217, + 24.93741671082072, + 25.003124790765703, + 24.918476559661894, + 24.963036573991022, + 24.945224911637442, + 25.006319170795322, + 24.937247089006767, + 24.904567589177027, + 24.865577747824084, + 24.776490893589337, + 24.85884292396952, + 24.889609980443282, + 24.959051411796928, + 25.00432548305671, + 24.86293813620145, + 24.934142861354886, + 25.02742416013171, + 24.91508292112306, + 24.885409934964407, + 24.94954378584835, + 24.904185155358284, + 25.027546962834474, + 24.97760611271993, + 24.939747778014887, + 24.96625904165029, + 24.937995078474835, + 24.991639982257222, + 24.946516874140034, + 24.96977510050956, + 25.05006919112049, + 25.03852322828918, + 24.921433993942276, + 24.969303106289566, + 24.967975826323517, + 24.912708909373947, + 24.922772501331494, + 24.96617220436537, + 24.97830695771171, + 24.965140386464412, + 24.92365722250651, + 24.888849661000613, + 24.981136073319824, + 24.926255935390273, + 24.98339601734174, + 25.008008872088666, + 24.975278839641014, + 25.052079709556857, + 25.00437656030492, + 25.014355452709996, + 24.997422695572304, + 25.02045451484223, + 25.001670709695617, + 24.989300281407203, + 24.9789375628587, + 24.95987393236669, + 24.985344655146, + 24.936294257879815, + 24.949893236177214, + 24.907864582778334, + 25.00469572509845, + 25.010335840603442, + 25.04769956239403, + 24.886032882671586, + 24.910605524061065, + 24.944960469193866, + 24.96292711047836, + 24.961170383097603, + 24.93001014564551, + 24.890397236906328, + 24.908576288898473, + 24.933301006386735, + 24.99003246781423, + 24.9494176759913, + 24.99266065798644, + 24.916281062057713, + 25.003268481071785, + 24.985360928483733, + 25.017054778591458, + 25.01361260520487, + 24.966995304322513, + 24.984798341843856, + 24.99911516205188, + 24.971384347341857, + 24.90173490814223, + 24.949519493183473, + 24.938182779332127, + 24.950327394479892, + 24.92895975791275, + 24.875362253845694, + 24.93406883970723, + 24.988734279793754, + 24.961552739581542, + 24.902053791824052, + 24.993308575550856, + 25.015561426159053, + 24.99308982724822, + 24.881595492538437, + 24.956092040220213, + 24.946404859096873, + 25.0548139824516, + 25.014151440970878, + 24.97420993621816, + 24.945514678741855, + 24.85089170481126, + 24.918993092787325, + 24.876014337566836, + 24.958187803335782, + 25.01399695977269, + 24.947053853731276, + 24.998236123272683, + 24.94590329621737, + 25.05197075959706, + 25.01920081978895, + 24.871995756755737, + 24.963588953972618, + 24.880336113835014, + 24.923870927472258, + 24.963421463683552, + 24.9304189840667, + 24.9632246418767, + 24.92317020497761, + 24.915693282594283, + 24.958619393580012, + 24.970304290512782, + 24.943781307542103, + 24.980274341414187, + 25.02313393228502, + 25.007917136820815, + 24.965609748918475, + 24.939164930138606, + 24.950168137719537, + 24.99557296907153, + 24.95218040131186, + 24.92313768222259, + 24.964215561094434, + 24.988666222018892, + 24.966110675642717, + 24.91575369291286, + 24.931942540808123, + 24.964726207861503, + 24.917648566805724, + 24.900867185491776, + 24.874501497400104, + 24.825189023116305, + 24.936372524558443, + 24.936741790731748, + 24.972194032972695, + 24.88155807546167, + 24.966375711158165, + 24.91202377748063, + 24.97577192230972, + 24.970530437528886, + 24.892217312694697, + 24.87646296773362, + 24.929685722732195, + 24.956189146340968, + 24.880263876021907, + 24.88644260410905, + 24.922143011684234, + 24.969892612933098, + 24.977824305958833, + 24.855141163838958, + 24.925889877042092, + 24.94527145406066, + 24.969151100915326, + 24.98755489671796, + 24.953616628477967, + 24.883853760379715, + 24.96419021549105, + 24.9226062669233, + 24.969985929586606, + 25.00546143049229, + 24.992971993778838, + 24.95143481448963, + 24.931531638873643, + 24.854849599315248, + 24.84508185219559, + 24.916059003439685, + 24.864044461999804, + 24.9556338000097, + 24.90277565369415, + 24.940543336799294, + 24.99158521372008, + 24.89885811786985, + 24.891747472441324, + 24.943740589455906, + 24.85313837719884, + 24.914989705533422, + 24.90818344342242, + 24.931393664784, + 24.971941203905384, + 24.875308358236367, + 24.880699415202564, + 25.00182625964679, + 24.94491817431826, + 25.00182345593162, + 25.011784595542444, + 25.020013888735456, + 25.08665243373921, + 25.062881159968107, + 24.81675535909291, + 24.892891668312444, + 24.948682526381084, + 25.027762442064642, + 25.06469377673885, + 24.985620558305335, + 24.99895355781664, + 24.97415167902725, + 24.941131289068053, + 24.936253534073956, + 24.919400278589407, + 25.0635187230306, + 25.079559742085195, + 25.037354739173814, + 24.942244942740672, + 24.928619959770792, + 24.933072696741405, + 24.843665681332148, + 24.882968534909885, + 24.94413540660788, + 25.016409529354092, + 24.927852702089783, + 24.97858192375352, + 25.208775157281945, + 25.13911299242926, + 25.247943636389138, + 25.39117791408198, + 25.009342973264722, + 24.918157858925532, + 24.947702811630293, + 24.918273382627486, + 24.912925267003796, + 24.882281377199586, + 24.911069640637045, + 24.882564020384077, + 24.761466137352873, + 24.878757118382595, + 24.845468772522832, + 24.873504040790607, + 24.911209529434757, + 24.883767076778817, + 24.94750875575803, + 24.86449816126414, + 24.969869363966836, + 24.925820940754242, + 24.919806384770673, + 24.899703897182555, + 24.960569117104995, + 24.904602478062948, + 24.942518926891168, + 24.941657062677177, + 24.977079649131408, + 24.935966410482337, + 25.031038704628067, + 24.946372387967557, + 24.99423260408541, + 24.928130342930658, + 24.971279000250192, + 24.97964816694433, + 24.957070529608693, + 24.938937114414585, + 24.92381637173537, + 24.92986704834042, + 24.97018745173839, + 25.016710724370654, + 24.97184981123896, + 24.94729036093278, + 24.92968893886622, + 24.930932567803914, + 24.96107051164841, + 24.95309045811456, + 24.94701039125104, + 24.987835480606492, + 24.956254917708637, + 24.93851362325619, + 24.956363961750885, + 24.937556817574514, + 25.04506633017239, + 25.005056603189125, + 24.961511429665975, + 24.97275231393065, + 25.015087588005844, + 25.035713309491342, + 24.94449371805606, + 24.905611854564032, + 24.935519461479494, + 24.98273833743864, + 25.014224999273615, + 24.892984572362913, + 24.927009774758332, + 24.982320888718107, + 24.92901266938528, + 24.959584658118736, + 25.043660352361016, + 25.03008881739234, + 24.998421050915955, + 24.99858100075672, + 24.993845424101014, + 24.948080186545077, + 25.028259561520102, + 24.966498257334628, + 24.866206463996797, + 24.899648961649277, + 25.022690365250387, + 24.961930204556765, + 25.017037601620665, + 24.970989248234147, + 24.929256770013623, + 24.901044943738018, + 24.92357528449277, + 24.922171055398664, + 24.97568932124336, + 24.919077902982878, + 24.9456579640154, + 24.972303813973458, + 25.047922008803823, + 24.976874889945616, + 24.970213252199425, + 24.972533913858413, + 24.889979326347046, + 24.845427984105925, + 24.96627179248418, + 24.894955388567887, + 24.969996329387552, + 25.00973678907295, + 24.934364368794586, + 24.905516792760366, + 24.94489177626626, + 24.880678820242565, + 24.974260217049753, + 24.886872631548925, + 24.869166794126606, + 24.943658530553463, + 24.938232783152273, + 24.998260235134964, + 25.019454101454194, + 25.031558950145147, + 24.989452332080788, + 24.925048383662325, + 24.88721042817854, + 24.90598248145273, + 25.022293639104554, + 24.95803495277, + 24.881985387720846, + 24.933655243126786, + 24.99419329623828, + 24.958708382870284, + 24.982186843021715, + 24.917023308411657, + 24.93086863204806, + 25.054338945213278, + 25.03871999938258, + 25.002414230783003, + 24.96206575837261, + 24.90603299359438, + 24.92343147542278, + 24.9954757960422, + 24.92059779342693, + 24.86910601290369, + 24.903725289392096, + 24.899799660099173, + 24.97384651760278, + 24.96236246716698, + 25.00205016908275, + 24.99950319007766, + 24.983310311037776, + 25.047027088252264, + 25.069384897828513, + 25.010107398171854, + 24.912133661543592, + 24.870795250121297, + 24.935079384499225, + 24.953287878638, + 24.954670831694152, + 24.988115963968315, + 24.95636272882777, + 24.980495776732628, + 24.837721977291, + 25.043663493233915, + 24.987109146251218, + 25.061752013337145, + 25.009427236461384, + 24.950380506360837, + 24.93387111217327, + 25.013997070038354, + 25.040620808985373, + 25.053464202492663, + 24.907940976030616, + 24.867250789022734, + 24.92910036394544, + 24.98178371723736, + 24.985886104705283, + 25.004331376045705, + 24.90632526127132, + 24.98815440763388, + 24.94026238505119, + 25.06869405741824, + 24.97891248741491, + 24.937657333033286, + 24.93273225193811, + 24.981564679780554, + 24.94298891007143, + 24.895578535594105, + 24.891396452488593, + 24.9665735866905, + 24.9559464134664, + 24.93224174653001, + 24.93323971901293, + 24.847382877903655, + 24.875411372789237, + 24.900350567459967, + 24.92833136570458, + 24.969121214031667, + 24.979571245733727, + 25.02225308459603, + 24.974432681207517, + 24.965814823265312, + 24.86188721111852, + 24.948689024629907, + 24.951846698403838, + 24.842734843401253, + 24.842643608677555, + 24.953446890959313, + 24.91223618108515, + 24.948067164412365, + 25.00104434571319, + 24.962903127109918, + 24.94535756537828, + 24.972025370600768, + 24.96083971588924, + 24.9594817956689, + 24.893515852226734, + 24.980597605882757, + 25.03039988846147, + 24.981334347679066, + 25.047882152740705, + 25.11822026196517, + 25.03120486511225, + 24.971436076753058, + 24.981555995220212, + 25.03790768440686, + 24.99214624525831, + 24.968138067918048, + 24.870456458881826, + 24.931970020877124, + 24.80117187502514, + 24.88788202089227, + 25.010737621691334, + 24.9564866540206, + 24.992956815648498, + 25.03602138647193, + 25.01961817069317, + 24.921011012745343, + 24.923873563970197, + 24.986209562808604, + 24.968937004628778, + 24.984488978055417, + 24.956415248276755, + 24.951375574072983, + 24.99307759226174, + 24.90172475437045, + 25.035312321391984, + 24.93624878760897, + 24.87959887403461, + 24.94723724415971, + 24.986763852773045, + 25.0888811814225, + 24.960889700620015, + 24.90196904928404, + 24.974240900059378, + 24.98881065299968, + 24.972606744300073, + 25.0559048079977, + 25.05333539398314, + 25.01781840551636, + 24.931002835225478, + 24.875331348085695, + 24.968710820520265, + 25.060245633315525, + 24.971461654983127, + 24.925027502370636, + 24.952702462625695, + 24.911342747133226, + 24.940350037208425, + 24.897994333083552, + 24.875180026202255, + 24.916051119243356, + 24.87480396275828, + 25.03525526386889, + 24.99981272977452, + 24.918594717562655, + 24.95382557201514, + 25.057315674386942, + 24.878660585254345, + 24.973604036611558, + 24.959186107950817, + 24.99747248726881, + 24.993274634754655, + 24.91699851360125, + 24.963862585792334, + 24.948142041538787, + 25.002167994488502, + 25.05384017844991, + 24.95426224670002, + 24.985084744109578, + 24.93678402968306, + 24.915178286118792, + 24.915759767971345, + 24.989574724230437, + 24.94729757449199, + 24.923549597804445, + 24.85699336344512, + 24.908770155603477, + 24.980651813975726, + 24.940371531756714, + 24.960236003362006, + 24.972809975412677, + 25.03240089438018, + 24.860685056549734, + 24.964300899703474, + 24.916432850560042, + 24.86180441311993, + 24.983120825137107, + 25.012310530014858, + 25.077969687897376, + 25.055444801652925, + 25.872311717953625, + 25.712377752779933, + 26.225761876661473, + 26.49293538295606, + 26.4147089173995, + 25.601718673759358, + 24.94244103986666, + 24.975555461778505, + 24.935463242468018, + 24.987508869360603, + 25.033419579374563, + 24.925157160263154, + 24.87226114149295, + 24.951043001909788, + 25.014714866798336, + 24.8917861024378, + 25.01264179669287, + 24.981729221972465, + 24.926564967027364, + 24.857197471493848, + 24.925552423469824, + 24.966800984595395, + 24.91619833415275, + 24.982915745531663, + 24.932948323777637, + 24.96564030631641, + 24.95081621150915, + 24.948598335341508, + 24.8926618229712, + 24.87504377398392, + 24.960768157356323, + 24.950464879442983, + 24.986196007486832, + 24.998171914025136, + 24.889454353599938, + 24.990931438278857, + 24.97389915200969, + 24.911278399338915, + 24.846701292206596, + 24.986203254113803, + 24.91714197967283, + 24.90272589701705, + 24.951310059118562, + 24.970968159966546, + 24.934626435853605, + 24.913059202691045, + 24.91869178089989, + 24.948637966437694, + 24.92954547706488, + 24.948179544965768, + 24.889380062436956, + 24.863501163936547, + 24.955468814026055, + 24.92432431195005, + 24.993382734080217, + 24.926680223504498, + 24.89593574642062, + 24.91887263476263, + 24.90571547587133, + 25.001482908973273, + 24.942057954510496, + 25.003155527905864, + 25.019980140882218, + 25.040902224249052, + 24.956333590379643, + 24.84267695239895, + 24.88078083069008, + 24.89979487383414, + 24.89954852896904, + 24.957406100949797, + 24.88427277278017, + 24.962065850070488, + 24.978036207558212, + 25.015296644273786, + 24.923333583702988, + 24.986658630567, + 24.942688843857816, + 24.879974597587267, + 24.906596534486084, + 24.895480644326028, + 25.00424791800645, + 24.878317811259897, + 24.867750818614073, + 24.96600026835874, + 24.947092519906953, + 24.933295286719996, + 24.984451410952964, + 24.897737397772637, + 24.862608955492156, + 24.94385173176068, + 24.85911512486205, + 24.925858906830392, + 24.84699332648379, + 24.902072468430596, + 24.861785361976686, + 25.00627626917563, + 25.034998382872473, + 24.97736906617739, + 25.027467123827837, + 25.07113501858163, + 24.909618757430703, + 24.93115280728727, + 24.94300441346774, + 24.890978536069866, + 24.914093290289664, + 24.839439365099942, + 24.928019653846746, + 24.98461845360241, + 24.825082972183672, + 24.877254736168453, + 24.94333538788002, + 24.9188383010084, + 24.96579555553035, + 24.951712975713846, + 24.85947058186469, + 24.817166693171053, + 24.85094281965454, + 24.947697099667604, + 24.896768091226164, + 24.944008104427034, + 24.864653040205823, + 24.953726349001833, + 25.016412003331382, + 24.965560849549334, + 24.906368610344714, + 24.90232211889668, + 24.97446368786818, + 24.962728496741754, + 24.96037092726908, + 24.864681200238966, + 24.867573376493965, + 24.872793947671312, + 24.80896144035585, + 24.88435326711751, + 24.866410499373604, + 24.9241008185782, + 24.958614920272552, + 24.887158192297374, + 24.90375349010888, + 25.021639262568506, + 24.96055150734342, + 24.950287245860224, + 24.948474201934168, + 25.028094154896948, + 24.958859424381487, + 24.89090347927283, + 24.94568931255404, + 24.87871254686619, + 24.94185832860571, + 25.000332298838998, + 24.90693115643748, + 24.975956171862826, + 24.972274165544885, + 24.92884199158386, + 24.991479617773074, + 25.018319027635307, + 25.078144870374334, + 24.97839858835657, + 24.88431695390899, + 24.794592574274066, + 24.783775768391887, + 24.927915413286875, + 24.99037321619432, + 24.97632805985282, + 24.952540754695104, + 25.02896277041585, + 25.051951649169574, + 24.952119161840635, + 24.948652347443137, + 24.87512909932081, + 24.84306557938148, + 24.927575760425455, + 25.00261466114982, + 25.006395139486497, + 25.051075121565248, + 25.01021949810754, + 24.968934454785597, + 24.929293366038273, + 24.871589811725066, + 24.880936713904994, + 24.888234902305502, + 24.982374373528685, + 25.003056794949096, + 25.00911937246, + 25.04631522305689, + 24.983132190073068, + 24.978271748537964, + 24.980295924883777, + 24.9005873543361, + 24.8237222871805, + 24.92026808460625, + 25.02735852447055, + 24.890458809798087, + 24.965121995913684, + 25.008066575942983, + 24.936721868370704, + 24.96946865318531, + 25.048484806914924, + 24.9203972840046, + 24.91191025156432, + 24.91030932765708, + 24.94936258804831, + 24.986992138679987, + 24.92177926739052, + 24.88645888030268, + 25.002120661578296, + 25.009776411020283, + 24.93586045782164, + 24.933050831650128, + 24.911189031415965, + 24.91670325724519, + 24.943765183431594, + 24.952359446549092, + 24.991265797362367, + 24.92040156287382, + 24.899286270059182, + 25.00800386521591, + 24.960967423960348, + 24.87689559757733, + 24.897974272457063, + 24.920932047495974, + 25.013594590592874, + 24.985143722792067, + 25.030919950851498, + 25.046144318226762, + 24.934306912362246, + 24.973527075850534, + 24.988609040607294, + 24.94738429227325, + 24.967923473931016, + 24.9611194649356, + 24.90121467214965, + 24.936387684911164, + 24.91581935825318, + 25.03129470962481, + 24.991577334848415, + 24.905241605087483, + 24.923416261694562, + 24.925977724365104, + 24.830820948126842, + 24.886667069863087, + 24.993367156450525, + 25.029017499980114, + 24.94238581409848, + 24.938104670261865, + 24.94757782943332, + 24.86149634414125, + 24.94304420229198, + 24.89742427674188, + 24.994715359153844, + 24.93958115556167, + 24.94349909562752, + 24.943923151487226, + 24.940846259701427, + 24.98404570471844, + 24.96051768842838, + 25.00655012761068, + 24.92479355717731, + 24.94513210105205, + 24.919457047465357, + 24.876505181295997, + 24.80785183683031, + 24.85098728295455, + 24.947391475873744, + 25.004126940259905, + 25.005107039601107, + 24.907198328587082, + 24.88786379414037, + 24.926281106569196, + 24.91442754374318, + 24.902779595457282, + 24.866319527523274, + 24.90743656874558, + 24.880757848146878, + 24.99047902494054, + 24.936744631137444, + 24.898640157179486, + 24.97845130105584, + 25.032519809909886, + 24.976829545420365, + 25.011081488420807, + 24.957933988258134, + 24.91421191002822, + 24.96307540499044, + 24.98521710349447, + 24.993279325360056, + 25.01862738137512, + 24.9958834013434, + 24.93243166893926, + 24.94165509200485, + 24.9890113237348, + 24.997477607429342, + 24.922670534273337, + 24.99760752934106, + 24.90125029615892, + 24.91531782039888, + 24.897216602811383, + 24.974694773571116, + 24.952548044925695, + 24.99315829448891, + 24.918341842165994, + 24.97618224393788, + 24.945188466173164, + 25.029661591221373, + 24.904107518175362, + 24.939455893141314, + 25.00723398256081, + 24.907546465372477, + 25.010056421330056, + 24.980952469310438, + 24.953426105944246, + 24.922663814272447, + 24.84488696444233, + 24.922051906727674, + 24.944605157689672, + 24.992195490823587, + 25.068097616636216, + 25.006919810878088, + 24.93650294686453, + 25.009578447446074, + 24.99330963243657, + 24.963058386200935, + 24.92910623597131, + 24.963888825392463, + 24.951028812427687, + 24.919594517954387, + 25.020576842379302, + 24.967294265862385, + 24.896869879109275, + 24.940364887322797, + 25.007339654934203, + 25.060120200077726, + 24.908170821058604, + 24.939623197930167, + 24.9822220319415, + 24.884251588704718, + 24.88561657645343, + 24.88948401221679, + 24.964725477185603, + 25.00100308962305, + 25.033093276162397, + 24.92525060101315, + 24.894035925828703, + 24.953697786145298, + 25.019762496704026, + 24.917917217161225, + 24.95840229186087, + 25.00144880395976, + 24.976048299218604, + 24.973907988163347, + 24.979796257568353, + 24.895903224369135, + 24.927740190202954, + 24.789307795542946, + 24.960185386240187, + 25.020334255035884, + 24.957330530700872, + 24.898531431383365, + 24.919816923893073, + 24.976024764403668, + 24.899986100122046, + 24.865211882346454, + 24.926978398155217, + 24.996554575737804, + 24.933407240061825, + 24.889746811503926, + 24.866585490983873, + 24.944144761287557, + 24.957505742174135, + 24.942404274481966, + 24.92983565475638, + 24.92071050926505, + 24.93925632727963, + 24.902387269185688, + 24.884911671433898, + 24.996798176238663, + 24.987194585727913, + 25.01955244600643, + 24.971395865859503, + 24.959262398775408, + 24.98414320539134, + 24.934313714457808, + 24.910448810499666, + 24.886860777415606, + 24.966165410289427, + 24.952659692236836, + 24.937376630850522, + 24.911176414097103, + 24.95423095956334, + 24.96900312466559, + 25.04543610438924, + 25.022745948578596, + 25.06131772603785, + 24.999647610604015, + 25.03010179692022, + 25.00906168348889, + 24.879178726379834, + 24.862742933602938, + 24.9771704487462, + 24.950885426493727, + 24.931535784546774, + 24.960342637917265, + 24.909470454950323, + 24.974337248988743, + 24.962386304550144, + 24.816994112067494, + 24.902299522258456, + 24.998950045598463, + 24.965113908632215, + 24.962607527951825, + 24.938849176345514, + 24.956377890381898, + 24.88174650898773, + 24.942774451859147, + 24.886802324461655, + 24.912724753070457, + 24.991164724630476, + 25.00872382498369, + 25.025420539830137, + 25.0390793250049, + 24.98461628644401, + 24.953727930788837, + 24.980229322017628, + 24.905622322432112, + 24.95799095002039, + 24.99619652562256, + 24.909561800810067, + 24.88292050094193, + 24.9778562978712, + 24.945218014474783, + 24.91735129804833, + 24.892452018954515, + 24.871036603188223, + 24.94098219897841, + 24.987951695820165, + 24.963438384159627, + 24.967099419376204, + 24.934946501339837, + 24.88000731677196, + 24.906311633472413, + 24.843758470639898, + 24.889086015941984, + 24.8787430048681, + 24.911299669171413, + 24.86292529204739, + 24.86323028844557, + 24.966818641710383, + 24.958451020416284, + 24.979551601800026, + 25.009364678462923, + 24.89747064148469, + 24.97858457212495, + 24.96004712153893, + 24.94106391164422, + 24.877461979114564, + 24.947113993068317, + 24.869594897348534, + 24.832103364338856, + 24.938115452221908, + 25.014995416239156, + 24.947268622762074, + 25.048801313123235, + 25.043469207803412, + 25.006774380184353, + 25.011511786572903, + 24.99488319357426, + 24.958332241779658, + 24.903443320324495, + 24.933847646815515, + 24.962237096924696, + 24.966334556512727, + 25.00730934640945, + 24.990465910591865, + 24.95050334329745, + 24.972416868306496, + 24.981282310099246, + 24.86463157748771, + 24.912424558095562, + 24.92816906664706, + 24.91338474605159, + 24.968255417362084, + 24.871995516356247, + 24.919120951312333, + 24.923843233699003, + 24.880370385235373, + 25.00882643841558, + 24.944732860415662, + 24.982889047551915, + 24.979841942938418, + 24.959632167565736, + 24.937180536956205, + 24.907756684133886, + 25.006835174629714, + 24.973379707906787, + 24.910516590609866, + 24.98514552964341, + 24.946588954751817, + 24.970342085465578, + 25.001795117777853, + 24.900939897829097, + 24.839225618927923, + 24.93406455424566, + 24.971199476783646, + 24.932175812562033, + 25.007534867458496, + 25.008800860747996, + 24.991722262128462, + 24.922622034787892, + 24.98284938540177, + 24.97865800797704, + 24.956750422386442, + 24.817294791124976, + 24.9335281232109, + 24.941028472915814, + 24.90267702028766, + 24.877631116155605, + 24.89180148504402, + 24.90292240898097, + 24.93157636913069, + 24.993241467505833, + 24.925547451151743, + 24.867802954432612, + 24.90153366157921, + 24.936194796286486, + 24.909873422303633, + 25.021202543557372, + 24.940878531612213, + 24.88064435921953, + 24.969643659420854, + 24.849585108551203, + 24.92973656632239, + 24.97017176806617, + 24.881884289029436, + 24.986677065968927, + 24.93360259985747, + 24.953966970950425, + 24.921424119300333, + 24.88686590675485, + 24.934568826665213, + 24.983344238522314, + 24.988952726220447, + 24.944650686320692, + 24.879820527251432, + 24.87108712626387, + 24.91741283199145, + 25.048687715081975, + 24.987114476240073, + 24.918388942061334, + 24.99315028360568, + 24.971014043093607, + 24.94376806160048, + 24.860530118317865, + 24.9634004757332, + 25.009311771217412, + 24.950871321714704, + 24.953327499024795, + 24.979876222393443, + 24.943657226576196, + 24.881370831992, + 24.904851853898265, + 24.889414729063063, + 24.950456243960392, + 24.970303325757968, + 24.878983817420824, + 24.93762596928093, + 24.94541432671099, + 24.968789929542965, + 24.885931879927163, + 24.790572659696174, + 24.979349659071904, + 24.924287877489114, + 24.829010549131283, + 24.960677637636188, + 24.96883529567578, + 25.037355486373364, + 24.998664756067118, + 24.97859531227339, + 25.017984676803053, + 25.026723337165855, + 24.961612086651154, + 24.966727604041733, + 24.999469097385493, + 24.98444874159628, + 25.026114899304517, + 24.93423282371957, + 24.964292353811935, + 24.955368958742906, + 24.835570856879457, + 24.839062242039056, + 24.87764720311852, + 24.945061240566453, + 24.963228640117734, + 25.003297691944592, + 24.94798649548977, + 24.958437536119668, + 24.98226766923348, + 24.858091947981926, + 24.96253912890547, + 24.952415325523184, + 24.9368866560144, + 24.97724647163676, + 24.945436302648286, + 24.987298686586243, + 24.89081344146441, + 24.940528893598717, + 24.921970887346752, + 24.872124137029157, + 24.889902462856867, + 24.84991774958164, + 24.92485546493971, + 25.048576699295516, + 24.99115682196401, + 24.99051444087882, + 25.055607284556757, + 25.025776878607452, + 24.978120757630293, + 24.999806959601287, + 25.026570522948525, + 25.02444555830295, + 24.995682754183004, + 24.91318486536903, + 24.88652086563225, + 24.882429593676182, + 24.903391686433636, + 24.961966590289272, + 24.889656152846655, + 24.94963842424752, + 24.903463497048165, + 24.979792396295874, + 25.038422552566335, + 24.925407811434308, + 24.91785883714317, + 24.877578643601986, + 24.887142247406512, + 24.89395286192022, + 24.98110301918815, + 24.9044040217433, + 24.91370088221453, + 24.90501621502774, + 24.972943460487784, + 25.49681138619245, + 25.625619571794598, + 26.094333299624537, + 26.06847091133368, + 26.532356366615456, + 25.57063196869112, + 25.52003182152369, + 25.728074203077703, + 25.714992856225184, + 26.10903230655418, + 26.259404115081114, + 25.928069875605317, + 25.90924865369109, + 26.04466598443408, + 26.177448411279446, + 26.42443681080045, + 26.21333899626919, + 26.208340526290982, + 26.221050157886616, + 25.566769493536917, + 25.70473614296537, + 25.593274460448672, + 25.296056667823773, + 25.543747297783863, + 24.8740624017396, + 24.859031495899742, + 24.968280578751738, + 24.87852424519646, + 24.91440971524587, + 24.934322949725598, + 24.95707303552736, + 24.970853997115093, + 24.883291458929108, + 24.911617028651463, + 25.00766545639668, + 24.973524985960864, + 25.02360444715542, + 25.033605377364594, + 24.95682448081154, + 24.868229922103332, + 24.92320911686174, + 24.92863656196254, + 24.85302008828689, + 24.80330565431283, + 24.86836078188795, + 24.89755104265275, + 24.943207486506665, + 24.857509916317884, + 24.88098120536788, + 24.841013363693058, + 24.895369640732646, + 24.938910322450816, + 24.963020749520012, + 25.024821971437746, + 24.983521560817806, + 24.962519696531736, + 24.979222821552995, + 24.980709431335995, + 24.990167415954854, + 24.966905429566353, + 24.875639271669932, + 24.950889162384097, + 24.969365769229768, + 24.91671462234065, + 25.003453105372067, + 24.978395452863644, + 24.95479767079612, + 24.9196664377112, + 24.985597753209106, + 24.88020175517344, + 24.839617066307312, + 24.879916269188328, + 24.805193308449105, + 24.925082291570256, + 25.07649874408537, + 24.932363617564196, + 25.01409747586495, + 24.969248458636045, + 24.944366819934793, + 25.00239679746768, + 24.9587557605661, + 24.840685646292165, + 24.940147057340283, + 24.903880540265334, + 24.78490364317241, + 24.873643501644622, + 24.947848970732316, + 24.952344954964655, + 24.906355383696617, + 24.89408699448103, + 25.017116166265865, + 24.95692523381758, + 24.88677721352434, + 24.949184521998127, + 25.051572492936664, + 25.029201428531543, + 24.994922982169577, + 24.97558939184229, + 24.89648635702933, + 24.926418125169903, + 24.923937469206948, + 24.892252991128785, + 24.85404594733084, + 24.91812206632283, + 24.942983006648383, + 24.887876863763925, + 24.95395623039569, + 25.010618933138385, + 24.954859679525306, + 24.953245315847134, + 24.905316836859285, + 24.937099043967013, + 24.993854233728527, + 24.97991826234106, + 24.99830393299897, + 24.85500219017849, + 24.929757201533622, + 24.944966436450102, + 25.03616817693717, + 24.99089723364439, + 24.958090973250357, + 24.906416248717008, + 24.79034500508333, + 24.82309497840523, + 24.958045842908163, + 24.92966143985475, + 24.91501292383181, + 24.940450595056753, + 24.95470869995222, + 25.06125390631194, + 25.018444474307117, + 24.986389784569013, + 24.846146940393062, + 25.038575973975583, + 24.9364477103699, + 24.946223046820723, + 24.888343490386994, + 24.991515329192065, + 24.86463610537252, + 24.900584747250093, + 24.952381267254218, + 24.897746055664417, + 24.962733841022605, + 24.92363009647051, + 24.94680822393807, + 24.906659100860836, + 24.931607168350446, + 24.826428687023302, + 24.88088886643537, + 24.94985056323155, + 25.006785068272862, + 24.92773212029499, + 24.97421406449152, + 24.901753416185436, + 24.922554194445897, + 24.98905174763297, + 25.0244534365984, + 25.00256569975281, + 24.822464511436387, + 24.92078649112202, + 24.916269745961486, + 24.83028792131522, + 24.967069298796595, + 25.002769769506028, + 24.949093861304554, + 24.925556529585734, + 24.907853407007973, + 24.879652917357223, + 25.009041257744556, + 24.962647888364415, + 24.916235954488783, + 24.978459100488244, + 24.898718615007382, + 24.927981676513333, + 24.881368460157347, + 24.9931978480709, + 25.046764788421818, + 24.998072595439083, + 24.918472555295637, + 24.90334857637767, + 24.96981260062485, + 24.956332404843266, + 24.96917485043238, + 24.974334854146583, + 25.031655810837336, + 24.973753694519875, + 25.087699521090432, + 25.001781443322894, + 24.941907887847883, + 24.99502220392854, + 25.038446694251782, + 24.927332923567885, + 24.97739149000873, + 24.877775284745375, + 24.885976314679873, + 24.930128197938885, + 24.96357529526071, + 25.019703845521597, + 24.978797121114816, + 24.98093030233929, + 24.96099415114988, + 24.983444095291063, + 24.92072387366921, + 24.96592589825837, + 24.89840200780887, + 25.032616138115475, + 24.971684605194792, + 24.932082044943417, + 24.88460925763666, + 24.93711054477859, + 24.96269064644612, + 25.02010125067465, + 24.996613819833264, + 24.893141409150406, + 24.903569655650635, + 24.95006614902658, + 24.973983611371875, + 25.020401725779315, + 25.054477873656456, + 24.98342340871293, + 24.97467160081706, + 24.968182158736774, + 25.05057350042408, + 24.941346086696473, + 24.921456491365742, + 24.9852189835089, + 24.991709298956494, + 24.90827545926772, + 24.874407866485576, + 24.826054796469005, + 24.902016566855025, + 24.931854427301516, + 24.935015298727134, + 24.89433828980508, + 24.969098309776225, + 24.928730955213496, + 24.88743463997306, + 24.88544003910709, + 24.92349830617513, + 24.866816373828172, + 24.883520932729, + 24.92050166113678, + 24.891244552614026, + 24.836281229980102, + 24.871879463323545, + 24.916821944651485, + 24.941502839501645, + 24.899599611560557, + 24.86800680377796, + 24.881860491274622 + ] + }, + { + "legendgroup": "Total Site Emissions", + "line": { + "color": "rgb(239, 85, 59)", + "width": 3 + }, + "mode": "lines", + "name": "Total Site Emissions", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 24.881860491274622, + 25.00261067138295, + 24.899757661113952, + 24.948668430463208, + 24.9807078820501, + 24.96050427300994, + 24.970811340956644, + 25.05078321256414, + 24.887065098524957, + 24.898099554173903, + 24.97242848744814, + 24.958219258033928, + 24.92511948156348, + 24.949853778094898, + 24.9682959217563, + 25.031425018511, + 24.977422678838757, + 25.005361368746513, + 24.938967928258002, + 24.981514415429483, + 25.00626732684848, + 24.964279066720252, + 24.939301782838186, + 24.88545723685361, + 24.944020451704795, + 24.981992831298317, + 25.00930300534354, + 24.966600574745254, + 25.00994107027968, + 25.026364824322286, + 24.989146174315287, + 24.97099529936054, + 24.952865845696664, + 24.94869401743731, + 24.842927027914683, + 24.85803847045004, + 24.888424674309142, + 24.931322235065593, + 24.969090881735966, + 24.934826007252518, + 24.930660420118674, + 24.930206277881247, + 24.94295162792654, + 24.852869383226032, + 25.046657862499657, + 24.93217164336361, + 25.003036305107223, + 24.923712097757523, + 24.921505438091632, + 24.92813975610536, + 24.934965353655947, + 24.95985216659582, + 24.93574724685791, + 24.95682822295874, + 24.950120773123686, + 24.89800964280494, + 24.916155456345024, + 24.9037533416938, + 25.052603953194488, + 25.018484740382814, + 24.948150519732117, + 25.04864209844076, + 24.989597571743083, + 24.95594265503872, + 24.887441741347786, + 24.848268914821254, + 24.913590341494164, + 24.876148927144886, + 24.860737804828496, + 24.885069204271787, + 25.224769330319955, + 25.571214746801466, + 24.974376377593995, + 24.96536674162082, + 24.961171445801597, + 24.9843061690396, + 24.934304671918888, + 24.951231084389914, + 24.886887042436896, + 24.93745259759345, + 24.97193501035821, + 25.033424074180196, + 24.945536766141537, + 25.022031965504265, + 24.90493152110141, + 24.935109603625925, + 24.95831838536423, + 24.92489300214486, + 24.934702342025226, + 25.053376246855862, + 24.873501056052497, + 24.992962116538536, + 25.009371026507146, + 24.990395376511692, + 24.855491329885282, + 24.899361506613758, + 24.84848116616584, + 24.907125474052897, + 24.967465930065465, + 24.957960721314222, + 24.99697576779328, + 24.901771619529256, + 24.937168778151335, + 24.889423667496864, + 24.866474808559918, + 24.91281015562678, + 24.983822310119738, + 24.967964141834464, + 24.845048010894743, + 24.89988314766188, + 24.909621377876114, + 24.970787251657008, + 25.01790752108353, + 24.984166331312352, + 25.027559239212117, + 24.958379711281975, + 24.94755070157761, + 24.91543701016215, + 24.866531113302536, + 24.905219307958667, + 24.935358017643658, + 24.995025754107033, + 24.968051176928533, + 24.887994464303894, + 24.975330121736626, + 24.968864421232322, + 24.99002963642981, + 24.985311115756886, + 24.98519477379864, + 25.043795782256588, + 24.90369831772841, + 24.909486414716618, + 24.949769785048588, + 24.918315864507825, + 24.981784754959065, + 24.99358147762383, + 24.976318957238547, + 24.92183827296598, + 24.98541657460226, + 25.006240183057947, + 24.89849985845008, + 25.0339953460137, + 25.05050378264638, + 24.986083512708593, + 25.03943335992121, + 25.001369886800923, + 25.049060899270913, + 24.98154391776265, + 24.926960260170674, + 24.96077478975816, + 24.986606023588028, + 24.937948992062864, + 24.998683458807623, + 25.004037790772944, + 24.89697772408979, + 24.97779910334377, + 24.900512676944942, + 24.9080485616714, + 24.9127368872625, + 25.019035794560246, + 24.953628010490448, + 24.996629784967766, + 24.984428871421617, + 24.92489378799423, + 24.857054826699265, + 24.807803125036948, + 24.829690436693166, + 24.863762349007658, + 24.8799505228232, + 24.80751964141357, + 24.902634710220436, + 24.88795274777391, + 24.898517220586935, + 25.040365844283482, + 24.96759037649498, + 24.919850815401986, + 25.006688331637328, + 24.93251549080864, + 24.95275606147181, + 25.03616615860351, + 25.036814601954706, + 24.92358254533871, + 24.916512428494308, + 24.91033122681872, + 24.958608432041075, + 24.9026407268261, + 24.971507900363335, + 25.00860862006927, + 25.07337716650953, + 25.00672394126083, + 24.962153792227937, + 25.026592892040213, + 24.99740008133349, + 24.909551207233456, + 24.955733272730367, + 24.97397554369428, + 24.97836682720463, + 25.070096361538546, + 24.95473022758525, + 24.947166942608355, + 24.97793940804737, + 24.89889498626229, + 24.98480133325001, + 24.913797583796615, + 24.9265284207436, + 24.864612176280133, + 24.922941218961036, + 24.9876737228534, + 24.919089247393035, + 24.924196142240287, + 24.89587658447291, + 25.002316026012302, + 25.00881095416764, + 24.9802051447711, + 25.1136501937186, + 25.022931154027116, + 24.969748312114596, + 24.919072297212843, + 25.025211406227584, + 24.947454841840884, + 24.967331013658573, + 24.937449011747535, + 24.97937627059109, + 24.93848437132631, + 24.89169594648557, + 24.9117331734344, + 24.910234776134835, + 25.01257504639027, + 24.99614353898677, + 24.917518915477714, + 24.962293127290355, + 24.887004167651007, + 24.835693478896133, + 24.891029470645478, + 24.924437121304496, + 24.95189043313585, + 24.926494194651553, + 24.81219985854301, + 24.967398175323055, + 24.86112347070828, + 24.93380330734645, + 24.989091932094794, + 25.035779436713177, + 25.03676407212022, + 25.00986900181165, + 24.955861457766918, + 24.933312190608845, + 24.951550911580654, + 24.92399924094861, + 24.88709508004453, + 24.96467121353718, + 25.00277683879694, + 24.971175056824812, + 25.03389879360014, + 25.03677648085879, + 25.076129212810123, + 25.002421852384984, + 24.993451004974233, + 25.010396988032085, + 25.022463684252592, + 24.91724096394173, + 24.843178390849324, + 24.908706513283782, + 24.921394433243417, + 24.941906904354926, + 24.941702376449925, + 24.959779052969566, + 25.029122298341548, + 24.883939743262527, + 24.97015133068861, + 24.899018921349864, + 24.958895203341, + 24.87215525935889, + 24.874235020258343, + 24.876129156842033, + 24.894623905686586, + 24.90535120716182, + 24.90257407611969, + 24.962642082946957, + 24.908378811097194, + 24.90570037514679, + 24.99910207218809, + 25.03765231097641, + 24.98757373736835, + 24.972680424572598, + 24.94469203407912, + 24.984789535251423, + 24.977616814631553, + 24.987730923721045, + 24.943497610840094, + 24.909484769518237, + 24.97933934948147, + 24.977810335667897, + 24.937822383214687, + 24.95623752586671, + 24.99041489896281, + 24.964959072099894, + 25.060695389378555, + 25.035088034599585, + 25.04038122533989, + 25.09783134263874, + 25.082566127910916, + 25.131485651781446, + 24.963209377371186, + 24.92174352386882, + 24.982707714325887, + 24.941771515606256, + 24.95729601871485, + 24.97500604545669, + 24.977067232427665, + 25.016557822157466, + 24.97955287460023, + 24.96403987547254, + 24.982577787115467, + 24.9934040051116, + 24.866155100419572, + 24.875895412921505, + 24.879652942497472, + 24.96817919343939, + 24.904414666938486, + 24.92859153156401, + 25.09342626569954, + 24.961695741847514, + 24.933343922407794, + 25.00463088462258, + 25.0117429397055, + 24.980525180309, + 24.958289266700298, + 24.967289876179716, + 24.899792673029886, + 24.86597915683981, + 24.846087033939767, + 24.832394105942587, + 24.840395547595094, + 24.85339521755604, + 24.95520910523202, + 25.005762682540446, + 24.93078122097207, + 24.93192613441919, + 24.965422815429527, + 25.000611402234593, + 24.927985650049152, + 24.851955180158658, + 24.939611235832054, + 24.985600544507296, + 25.02277004199167, + 24.98113599014664, + 24.98204970114709, + 25.0137985573432, + 24.917344619088674, + 24.952564113501612, + 24.93995297619037, + 24.93077637381127, + 24.949915579226037, + 24.978010172333544, + 24.902540399684696, + 24.970954861077516, + 24.898567695463157, + 24.997322058881547, + 24.973674547357206, + 24.920937845678353, + 24.918597210073635, + 24.91532053118864, + 24.906553315539732, + 24.98849053030475, + 24.969608796090306, + 25.022483758427697, + 24.968244587615246, + 24.923511558720563, + 24.94914898817739, + 24.908294514638605, + 24.900307936185367, + 24.978007494547683, + 24.920176374108557, + 24.978278796211825, + 24.97495809742516, + 24.99472013726777, + 24.985371712435736, + 24.935099475476044, + 25.042274094853205, + 24.99699980989561, + 24.992324627517824, + 24.905282641860016, + 24.93001785477339, + 24.981374822557182, + 24.94314976286741, + 24.980741115678413, + 25.049231405753027, + 24.991671192607818, + 24.903491249375207, + 24.92174977813584, + 25.0011322175502, + 24.98935255176685, + 24.98932276080121, + 25.058951149513923, + 24.9702092980906, + 24.922961278609485, + 24.936244264725488, + 24.801425264098427, + 24.88948638665274, + 24.927022645609647, + 24.952885767766638, + 24.964827244154392, + 24.983546236657766, + 24.884513516654394, + 24.917431986119567, + 24.91623717512827, + 24.891372658733374, + 24.87540798248002, + 24.98267158138257, + 24.905287830359498, + 24.95136334757803, + 24.93330121646582, + 24.913820940656663, + 24.922071104443468, + 24.941398618559703, + 24.969855417427, + 24.986387436724094, + 24.975276144679633, + 24.95391076530153, + 24.973115037078443, + 24.908756286456395, + 25.04560812667072, + 24.957546120311115, + 24.967943085138778, + 24.946498595223233, + 24.891142334330837, + 24.91557138997621, + 24.91806180868091, + 24.979479605457357, + 24.952574940899005, + 24.935631959310292, + 24.870105424005416, + 25.03270081668371, + 24.877123447023866, + 24.959536145151272, + 24.90317253305085, + 24.947548099066683, + 24.97719103657304, + 25.00110455045807, + 24.98787300938986, + 24.96407657750624, + 24.866373312580244, + 24.970271408473273, + 24.990766958015378, + 24.977014768318618, + 24.919616966757204, + 24.96640939700864, + 24.927566974304483, + 24.88078001480657, + 24.89794429295906, + 24.8767963682226, + 24.893640415652357, + 24.96578656998959, + 24.96450962792395, + 24.9316060575795, + 24.931890591212003, + 25.028829998430773, + 24.967869718892196, + 24.985165966028724, + 25.017415229640445, + 24.972851144293713, + 24.97774298029874, + 24.896842593522077, + 24.93933595679554, + 24.958672478461004, + 24.96222347235448, + 24.945256393122712, + 24.862236341997836, + 25.01813022573255, + 24.877565288865974, + 24.912319391344354, + 24.935853839330434, + 24.922846180434796, + 24.944321968239016, + 24.867567962014768, + 24.93198275792843, + 24.915024140493607, + 24.954607660115848, + 24.912783558486744, + 24.97741930411909, + 24.899329690630644, + 24.941910495028505, + 24.92142435800187, + 24.894014925017377, + 24.912091080567677, + 24.955565860201528, + 24.933729771261177, + 24.923111639125924, + 24.925956293291755, + 24.928617346177006, + 24.99062277179919, + 24.894364980623372, + 24.910869513845313, + 24.862741182593894, + 24.87131923276577, + 24.85543852344947, + 24.88328633451406, + 24.8187721791123, + 24.950931161416996, + 24.93818064432122, + 24.968330167342735, + 25.040809182525635, + 25.047732104662483, + 25.052096132891016, + 25.090000478297863, + 24.974681005553407, + 24.90548419417873, + 24.88924067690693, + 24.83841707320509, + 24.92298674725503, + 24.93471013798019, + 24.94179338724657, + 24.890247091467323, + 24.91430256026252, + 24.91238786134286, + 24.966789986950893, + 24.949277777413432, + 24.910134189172727, + 24.943641824469122, + 24.946712384049412, + 24.947217988919817, + 24.930190400565813, + 24.912618485268965, + 24.933757159550396, + 24.910551663253806, + 24.937022658724338, + 24.938248913664125, + 25.005791123468487, + 24.92692697073221, + 24.902912754099773, + 24.884357584323965, + 24.920139069638488, + 24.954908710331352, + 24.88182919449993, + 24.929075265071504, + 24.856717477654527, + 24.946736365960746, + 24.94762713708959, + 24.90296367616083, + 24.93915579232562, + 24.979126263189656, + 24.977700909429245, + 24.974150294616592, + 24.912866195251326, + 25.00941823627005, + 24.876463704514215, + 24.862499576718903, + 24.93200252578443, + 24.960831932663368, + 24.901605583911785, + 24.94044913380749, + 25.043144095471284, + 24.99182332510555, + 24.947811942618415, + 24.910851164744045, + 24.82165231973452, + 24.811537197620947, + 24.93459000149725, + 24.88844826528672, + 24.876409108144138, + 24.912289666846362, + 24.97670420183863, + 24.96880920345281, + 24.94981277905779, + 24.93950591646052, + 24.9297868847737, + 24.898579803583413, + 24.89859931871863, + 24.92002338474444, + 24.93348561774574, + 24.897881210080058, + 24.914921267772804, + 24.959326448440777, + 24.953292065752382, + 24.917660014728263, + 24.963625117165854, + 24.96724666043481, + 25.017625458527696, + 24.975994887852323, + 24.97335438088733, + 24.964374745424443, + 24.894509147130826, + 24.937906526348474, + 24.97609209149456, + 24.989662026966375, + 24.96783421055737, + 25.00919243481346, + 24.970369267773457, + 25.03818139701969, + 24.877459368928022, + 24.850086590563528, + 24.866904981173796, + 24.97928985257992, + 24.952516277129842, + 24.965393053201556, + 24.998469838662245, + 24.925711728977333, + 25.051514556850577, + 24.983670015367295, + 25.02095719914232, + 24.997121237588402, + 24.977330449955573, + 25.00698574502541, + 24.98730873731398, + 24.939936627930834, + 24.97120820889767, + 24.933601738948674, + 25.0118497057911, + 24.95445765971231, + 25.030513088841538, + 25.000101873475472, + 24.97823669198261, + 24.95216153170761, + 24.907507226163524, + 24.935077487191208, + 24.96498266505612, + 24.879001985797032, + 24.976085649170404, + 24.9023165604998, + 24.85463216651646, + 24.88092984107994, + 24.953505009647458, + 24.92232190718825, + 24.91401384236968, + 24.96906420205199, + 24.909144640177495, + 24.883519633636844, + 24.920282565481553, + 24.89602827962237, + 24.941371308330325, + 24.915416131799578, + 24.961937286599806, + 24.96093114587385, + 24.934429527534945, + 24.893173890356756, + 24.962458473911223, + 24.89173735715001, + 24.94363065251329, + 24.959826282141364, + 25.02598654220069, + 24.96989072936372, + 24.965915930909667, + 24.971465576111164, + 24.944666397061194, + 25.01663895151981, + 25.009084424706604, + 24.936775865046403, + 25.031527604246378, + 24.931636395445285, + 24.85276090992469, + 24.89237439892917, + 24.836995369846296, + 24.931493374337585, + 24.934567351821848, + 24.8818067487938, + 24.957580125287933, + 24.99075125306172, + 25.181990911626688, + 25.04921212728679, + 24.948106854195323, + 24.878460552940837, + 24.971178140716606, + 24.850757251514924, + 24.82952277824819, + 24.960539702022736, + 24.984913200726304, + 24.942844150692075, + 25.040430252738208, + 24.944064615699254, + 24.94689683940325, + 24.961550681587603, + 24.931541009688377, + 24.938367454451523, + 24.926828410018196, + 24.93928849033717, + 24.92048404662939, + 24.967841579099307, + 24.91964766612987, + 25.029845978784365, + 24.962355120409697, + 24.85178818016598, + 24.83060681081077, + 24.897379721039275, + 25.018571741764404, + 25.002015338214612, + 25.007684763669985, + 24.90343492994691, + 24.907762738484397, + 24.766790059400996, + 24.906907118938257, + 24.900353690610505, + 24.88122101601993, + 24.896579821135816, + 24.958097796213305, + 24.99025147574038, + 24.887548393111928, + 24.92161533511032, + 24.900895273223078, + 24.934494083222532, + 24.8907479914983, + 24.87471127754975, + 24.92432683808967, + 24.96759703577903, + 24.910712864319983, + 24.913855681079077, + 24.99556371356019, + 24.906598925107403, + 24.974703678904643, + 24.981450409247635, + 24.966953024192073, + 24.996106957218906, + 24.97889916858349, + 24.906226300821924, + 25.006010464177145, + 24.9176305272366, + 24.943722126119997, + 24.955926510653242, + 24.93558209971825, + 24.923906976278385, + 24.932229910331124, + 24.92113314524095, + 24.929677750295184, + 24.935735667735972, + 24.96419435964048, + 24.98745194579012, + 24.926551736206196, + 24.960555161835195, + 25.058216831163797, + 24.978409003794482, + 24.93593652177112, + 24.90000631579121, + 24.861975857741, + 24.91669001696073, + 24.95646567192498, + 24.9447111466135, + 24.942215355033607, + 24.922427602246465, + 24.894342440953906, + 24.88627969060652, + 24.940655972325132, + 25.020655280353083, + 24.881044303731514, + 24.836251244094264, + 24.85349277857314, + 24.945636052055804, + 24.956852415554085, + 24.90845446258639, + 24.960762443307956, + 24.966144687175138, + 25.0071973154025, + 25.04837767189883, + 24.948466860002434, + 24.816957120561955, + 24.801203961206507, + 24.889135123111966, + 24.98539487370939, + 24.975007459231104, + 24.836911023447854, + 25.005729220844223, + 25.017775182888172, + 24.970747916141697, + 24.9406570134553, + 24.93738412325908, + 24.922207718632272, + 25.01182950666114, + 24.99655636958169, + 24.982012293408232, + 25.03860389523844, + 25.04073584391442, + 24.975598520187773, + 25.017668883727872, + 24.94768504768602, + 24.978343498396377, + 24.969163963002927, + 24.965300044720237, + 24.96849660927412, + 25.074224656403224, + 24.942640801944165, + 25.011190408870604, + 25.016768707377842, + 24.94910068325059, + 24.880437558701324, + 24.948694684409777, + 24.99688393422209, + 24.95123519738672, + 25.009320250103034, + 24.955128682436367, + 24.906797206988088, + 24.942034892396823, + 24.943486018307354, + 24.9123225731731, + 24.922580249831313, + 24.85480623615265, + 24.881982294269307, + 25.044866069510018, + 24.892412831874097, + 24.935204124800933, + 24.90258381253528, + 24.913498964534238, + 24.980627197816563, + 24.995346799532904, + 24.99671398095382, + 24.919672083532596, + 25.023149697266664, + 24.967447182543246, + 25.00261635684338, + 24.917298994693596, + 24.94807717240311, + 24.919949793267428, + 24.885020364369577, + 24.880883023707558, + 24.969089554714913, + 24.927094674556535, + 24.822536746935533, + 24.941525471386452, + 24.932021334842048, + 24.849243516218415, + 24.824245927102194, + 24.946827801319778, + 24.95091897645463, + 24.96480146716854, + 24.94569695549626, + 25.062078746128165, + 24.970689863982358, + 24.866416432738475, + 25.043596612103457, + 25.08544391897324, + 25.063693137956847, + 24.956712767023625, + 24.897306263503197, + 24.91562734886736, + 25.06625373238279, + 25.04092858885113, + 25.02035512735619, + 25.049338983374284, + 24.92555620062514, + 24.956683501280615, + 24.955316455990015, + 24.86762903486334, + 24.940971119723816, + 24.959977824570785, + 24.96074088197384, + 24.987815477646492, + 24.9648894430932, + 25.01411180481328, + 25.013882306297486, + 24.932622775113202, + 24.99696466022821, + 24.954722573745713, + 24.98718954236032, + 24.91120062895751, + 24.974941452774278, + 24.98228066772561, + 24.892269546397817, + 24.972206014579847, + 24.959838572092693, + 24.92628418011389, + 24.938671473923193, + 24.9647537861623, + 24.965818058984667, + 24.95564035357166, + 24.94582030233831, + 25.024984164809965, + 24.951973743246903, + 24.964071844946993, + 24.943858481464815, + 24.956497890068675, + 24.93977480044702, + 24.874386293053774, + 24.99823414826325, + 25.019349268451208, + 24.909724000107254, + 24.856572271731217, + 24.89781273727351, + 24.88887315789121, + 24.904981272125063, + 24.965320587675173, + 24.98902766311761, + 25.006521922524982, + 24.997483639644862, + 24.92257151040882, + 24.98215963572614, + 24.89031006867405, + 24.94172835449542, + 24.987796442864116, + 25.040247515466547, + 24.983440268037604, + 25.01377027603461, + 24.958588656947207, + 24.95394794050887, + 24.92451731258575, + 24.929494456687877, + 24.954053930867445, + 24.944536003660684, + 24.985510378931295, + 24.924864517603435, + 24.8619030472083, + 24.947559121335733, + 24.914261533844194, + 25.01783734617279, + 24.946272127693266, + 24.9008018982011, + 24.916754135662735, + 24.874981070489056, + 25.003296986348985, + 25.031155634257104, + 24.96346088683967, + 24.91187904111294, + 24.904293248371836, + 24.88266434756001, + 24.86312467041204, + 25.014052307209013, + 24.962726455475742, + 24.948961967828193, + 24.948125935136467, + 24.87936465627319, + 24.98261787868458, + 24.947974036778916, + 24.954945864330128, + 25.01756416209585, + 25.00990022871302, + 24.964850360693823, + 25.002600357902686, + 24.905087242468333, + 24.971756080475963, + 24.97444454993243, + 24.88670910085778, + 24.930048524433033, + 24.912735321622442, + 25.024799953380906, + 24.976958271731604, + 24.89415799271812, + 24.8324038691917, + 24.937233942145753, + 24.916740335134943, + 24.935434280356986, + 24.91970887519248, + 24.905477252046396, + 24.94771309343114, + 25.025061721415625, + 24.98509120126533, + 24.879927099441936, + 24.900321096666012, + 24.986385557519462, + 24.9917068124183, + 24.98619428643164, + 24.975474322667576, + 24.910929926548658, + 24.916427663538403, + 24.840220827686824, + 24.915634331038305, + 24.83182479788214, + 25.035093176829015, + 25.01674356684601, + 24.944199579878827, + 24.935979929613097, + 24.81918380407216, + 24.8692154260176, + 24.997562772069216, + 24.925167504433478, + 24.930848271519906, + 24.94497358645543, + 24.869764789818404, + 24.92531843780609, + 24.956301601172882, + 24.949582412607924, + 24.94778484666991, + 24.955135966601027, + 24.93217380433466, + 24.908589652237424, + 25.014512203750286, + 24.96019500651381, + 24.94186540204981, + 24.965646633086635, + 24.966565306175745, + 24.942142199343525, + 24.983565249273088, + 24.912963468803838, + 24.94726925196312, + 24.952843628188894, + 24.943325125425986, + 24.87842551373828, + 24.962100525964185, + 25.025128488952312, + 24.9615220631352, + 24.961767196725425, + 24.915667760347414, + 24.9515196440938, + 24.929381914365557, + 24.923587545947626, + 24.93964068001874, + 25.02004565238459, + 24.95491289512401, + 24.918039966322716, + 25.001820900546974, + 24.993784780305095, + 25.008867346494974, + 25.04514016386613, + 24.88871881098403 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 0", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 11.345262568849508, + 16.44956011218482, + 15.26211248520174, + 14.979043769023317, + 14.949376971928759, + 14.960975710513326, + 14.994864995761189, + 15.014816550117333, + 14.954330866440056, + 15.012449510936847, + 15.077413571312764, + 14.957799587791893, + 14.98058031211174, + 15.051513417881223, + 15.032396757560479, + 15.045362459451749, + 15.081928768036299, + 14.967084173482665, + 14.955366317392373, + 15.038414117907125, + 15.060795920980093, + 15.050599715498445, + 15.014926081629474, + 15.116368748376548, + 14.992760015780183, + 15.058494276305675, + 14.98053568685065, + 14.954010928237029, + 14.97227857981823, + 14.969097377587737, + 14.969521240052547, + 15.023471855724976, + 15.004455709068973, + 15.019845718544067, + 14.990144939077243, + 14.985479317700475, + 14.935128414892397, + 15.006215683431856, + 14.896982600417523, + 14.927515993211319, + 15.010288338364418, + 14.96870423374894, + 14.96522796463365, + 15.03772071212948, + 15.005183706598258, + 15.032939698667862, + 15.054691285969742, + 15.053198514292896, + 14.972119747622447, + 14.96777286145804, + 15.016697168736902, + 15.094876585559923, + 14.931433343409255, + 14.998263561372868, + 14.992695243795144, + 15.058786641527094, + 15.064507960119375, + 14.96267623818029, + 14.98784347905611, + 15.023113801309208, + 14.970911174537662, + 14.914916849836786, + 14.925143751088946, + 14.976751536051982, + 14.95264824493179, + 14.997107690453097, + 15.014652719388334, + 14.975925041057184, + 14.921227524538898, + 14.946112177425528, + 15.02036856127001, + 15.04327681416604, + 15.008997357473904, + 14.977844487894416, + 15.007996414968579, + 15.045022926433122, + 15.015850692178596, + 15.000613187027671, + 14.967874223392739, + 14.985463104543625, + 14.992172822699324, + 15.018634280180676, + 14.96879187033338, + 14.996592684886785, + 14.978696937568554, + 14.967116977466038, + 15.001089923447983, + 15.014235980984799, + 15.015463407429854, + 15.001669310879363, + 15.049890732085178, + 15.026248108636189, + 15.018450875331935, + 15.010809355129878, + 15.08742155118053, + 15.055417573482769, + 14.986838004698026, + 14.998868560646354, + 15.031210686029732, + 15.014057300992926, + 15.111231339086713, + 15.028776441109768, + 14.981567609013137, + 14.995167863171641, + 14.973021661870426, + 14.959196894401702, + 15.007462308690348, + 15.036331661285766, + 15.007040419741454, + 14.93616978948002, + 15.006321019203238, + 14.991908152532869, + 14.995213142727883, + 14.988448767860698, + 15.00815848257681, + 15.013893203225505, + 14.942833210901593, + 14.944631750622428, + 15.027323087876166, + 14.993149715703916, + 14.935135020021361, + 14.913670679463602, + 14.889943342634503, + 14.972318713334689, + 14.969050576226357, + 14.965255711776305, + 14.98288213472464, + 14.980831496329179, + 14.934477512511428, + 14.99339582148568, + 15.015092866741833, + 14.942701388704181, + 14.977361724171685, + 14.977867619776147, + 14.964807398442037, + 14.918625659819716, + 15.039126958212394, + 14.994792693431917, + 14.996712929660976, + 15.038236461179201, + 15.053486561715545, + 15.045043501636044, + 14.975218688884894, + 15.00686478287148, + 14.971317472855123, + 15.010065653082412, + 14.921202896132229, + 14.894827470157297, + 14.995302427133383, + 14.955205057109756, + 14.992326894700382, + 15.088388412748932, + 15.035538853644319, + 14.961237823717653, + 14.999889825413765, + 15.0374550222036, + 14.988264058709172, + 15.020865282176363, + 15.00971415239303, + 14.953101939948978, + 15.101228659969605, + 15.031561708862176, + 15.044688694221334, + 14.984066538208918, + 15.039044548864336, + 15.009691555095857, + 15.014396838780554, + 14.999893926213979, + 15.060289052330807, + 14.998098722271738, + 15.045858919004115, + 15.009909208412937, + 14.977557137715438, + 14.949832465246208, + 15.001050575453476, + 15.02131040833751, + 15.01036220725552, + 15.094316034464516, + 15.080185708727226, + 15.066494525536163, + 15.05420170706012, + 14.981760593435222, + 14.99245635080382, + 15.011989706118397, + 15.040456795993235, + 15.013026839195458, + 14.964979619477864, + 14.970410170412164, + 14.976582398346661, + 15.033751487326773, + 14.971472135650945, + 14.935838216672199, + 14.942280112648385, + 14.993216960439295, + 15.043989540649902, + 14.986972666121135, + 14.983078868428153, + 14.923878213617934, + 14.972905685574673, + 14.974504857718394, + 14.982729453606856, + 14.988138156680673, + 15.009343445132385, + 15.03553041996813, + 15.015353395467121, + 14.981875629945923, + 14.943855750082683, + 14.96000925036073, + 15.059383858212334, + 14.979639453958503, + 15.030320695948223, + 15.064619368342719, + 15.024942170094342, + 15.009850915031048, + 14.909894875324982, + 14.97317349540632, + 14.939062405427439, + 15.015588687686675, + 14.905571683773442, + 14.864914084251467, + 14.863332873453349, + 14.969898376355713, + 14.994640732258311, + 14.981839647112874, + 15.055851389389034, + 14.948348313174742, + 15.03283315902467, + 15.11746572399681, + 14.998276997003599, + 15.010234077018799, + 15.004920449853676, + 14.970814738761366, + 15.004576043045015, + 15.025145069738494, + 14.976616147159056, + 15.001692838189218, + 15.073800590005192, + 15.011898515612792, + 15.027359269812651, + 15.074843188619312, + 15.021917260704106, + 14.958456723070626, + 14.945879626816216, + 15.033902968257717, + 14.962589690700828, + 14.978710900029602, + 14.975839870635555, + 14.91654554025687, + 15.029790467379268, + 14.985008783835033, + 14.95445498542891, + 14.982077944839878, + 14.970788656539556, + 15.036529159263576, + 15.07106465693603, + 15.020606921795554, + 14.996576226594199, + 15.03814054624219, + 15.034232404447193, + 14.929963434557164, + 14.95918616945847, + 14.965502512811721, + 14.96909024949976, + 14.978276444384376, + 14.991396760890868, + 15.012640315017833, + 15.036287634575238, + 15.02773410168465, + 14.968271018482348, + 14.932372138430603, + 15.045555874867262, + 15.027161246300684, + 15.108967869544768, + 15.015371273674493, + 15.050782799055758, + 14.965840635042968, + 15.02790645694957, + 15.029271544066104, + 14.907737730837507, + 14.967756195018161, + 15.025163515660513, + 14.980816399919183, + 14.948244620726015, + 15.002559448377092, + 14.965674929399286, + 15.02572521947009, + 14.954773667184046, + 15.057172181417359, + 15.117129615162504, + 14.989852355823551, + 15.109227186590973, + 15.045599520398191, + 14.980892108424902, + 15.003985702723613, + 14.957117683542336, + 14.987247356018134, + 15.078690659421797, + 15.076649465453977, + 15.02062977739572, + 15.045403803564653, + 15.040737292839529, + 15.039417639693417, + 15.014207782766059, + 15.050002369765975, + 15.018912644577606, + 15.01548128065221, + 15.018996306069333, + 14.992627016976792, + 15.00580265801968, + 15.0047268426017, + 15.033109999042628, + 15.004455676958761, + 15.023423147918713, + 15.095572029628405, + 14.98539717978075, + 14.985056441208043, + 15.04352260655964, + 15.064362164656474, + 15.051542273701557, + 15.032554680173753, + 15.01117232668955, + 14.978470287904644, + 15.009219201131051, + 15.008544704230328, + 14.994031326051122, + 15.024314083803036, + 14.987434640704087, + 15.031005825429267, + 14.983755293060694, + 14.96116272991613, + 15.01644590299869, + 15.011398213738078, + 15.012385847946943, + 15.021454352708181, + 14.969813531444002, + 14.882175727170232, + 14.951809881319447, + 14.979260966468436, + 14.99812264522187, + 15.001924373551585, + 14.944713505869938, + 14.975083854888174, + 15.018036159743339, + 15.049399162892408, + 14.969852644842108, + 15.029359811262864, + 14.985488309209563, + 14.936622177578796, + 15.01034443083054, + 14.982963266234437, + 14.983473466199976, + 14.932728252672714, + 14.949361338771611, + 15.045812607539636, + 14.904766250714655, + 14.98672852504832, + 14.998037117411185, + 14.945514844196131, + 15.09301381851098, + 15.093347062075262, + 15.008706478265632, + 15.04617917339129, + 14.910402159202413, + 14.975864953022102, + 15.00716328222112, + 15.056316555330847, + 15.007623079577947, + 15.03693111121329, + 15.07014492480753, + 15.08914920450432, + 15.012097715434459, + 15.012983352136017, + 14.995093832222532, + 15.048873420934422, + 14.999387307086458, + 15.001464557182203, + 14.982286912296546, + 15.002782135508678, + 14.902042671335131, + 14.966975571951133, + 14.974942209167775, + 15.02112875764266, + 14.989396325925364, + 14.956949182672838, + 14.991411176311813, + 15.007775249156373, + 15.00200557959046, + 14.992796971129371, + 14.988906898596474, + 14.970701491999568, + 15.038404266468001, + 14.937463937387713, + 15.018160845299581, + 14.982481059913425, + 14.966920356289396, + 14.943696315116267, + 15.035486032832813, + 15.01681307885355, + 15.07924461708538, + 14.998026844261526, + 15.004583919156135, + 14.966276363539675, + 15.048428870761688, + 15.006588418309052, + 15.080401025544798, + 15.10346244304578, + 14.992420827292076, + 15.001259818065881, + 15.008285075702066, + 14.965602369040262, + 14.963711756396341, + 14.964221014093255, + 14.91911735465887, + 14.963532312912573, + 15.04896300987003, + 15.023355387076593, + 15.016155038421903, + 14.974051557963927, + 15.02812634796434, + 14.980402541093147, + 15.04053010513985, + 15.021729700667587, + 15.116273502716526, + 15.007241655655665, + 14.965859231256193, + 14.924516671710965, + 14.975423040770218, + 14.98058498693544, + 15.031908117143882, + 14.997916531350164, + 14.988111876799694, + 15.019822543891408, + 14.959748461058842, + 14.989350910636679, + 15.023175233343364, + 15.061527314782111, + 14.994822254419006, + 15.034551416411334, + 15.070948607605244, + 15.019924396539633, + 14.998952410823621, + 14.989408615512646, + 14.980777049973456, + 14.965133291205028, + 15.031446994978428, + 14.965921185796676, + 14.997519187830465, + 14.988116158987639, + 15.064167956992776, + 15.030265219669062, + 14.998513613977096, + 15.062960482200872, + 15.025146189146312, + 14.96085214039536, + 15.04284320552516, + 15.016384866716768, + 14.968534020223737, + 14.93821044330642, + 15.005344068643883, + 15.046136521575859, + 15.05508251633211, + 15.03759158782223, + 14.944730976368016, + 14.966787072577649, + 14.969187440325678, + 14.964654067503568, + 15.01255765351169, + 15.00028400650454, + 15.011500316358838, + 14.968700844257238, + 15.038349203804612, + 14.995184001790133, + 15.006379599943335, + 15.049783683402401, + 15.00949198036373, + 15.000881027149282, + 14.996307997967211, + 14.958581257097427, + 15.121530877103666, + 15.10567126493732, + 15.08903777269271, + 15.040402495544006, + 15.018467244464224, + 14.954824378400609, + 15.025224829991508, + 15.022365803421268, + 14.999232967589514, + 15.007363450735358, + 14.967220726778457, + 14.932830573420153, + 14.95281793687937, + 15.054119721519616, + 15.101302006939457, + 15.004514906587305, + 15.069736062541256, + 15.015924440529234, + 14.934744042750198, + 14.955779608996938, + 15.002015732997215, + 15.068135643274776, + 15.0349469045605, + 14.989484210256926, + 14.960574859401595, + 15.03537819888716, + 15.03201452951901, + 14.992694169388086, + 14.975659444304464, + 15.04163225136513, + 14.984538591804128, + 14.951827848196698, + 15.010908585570395, + 15.033941164743487, + 15.034408309097074, + 15.075389274964298, + 15.004837181682667, + 15.057899149272178, + 14.99906012794665, + 15.004872709472213, + 15.05445657316956, + 15.052349926183343, + 14.95528698896383, + 15.010749483611287, + 14.915871483939684, + 15.008407408837838, + 14.979901571019724, + 15.00917127383855, + 15.05934288685939, + 15.012241036349359, + 15.060385534638632, + 14.972917360333637, + 14.910637623324323, + 15.008111953658325, + 14.972981912162298, + 15.069742491087332, + 15.0176402543595, + 14.95886150085714, + 14.97413755529154, + 15.02234727108734, + 14.994640870189093, + 14.996398446301704, + 14.940204227307838, + 14.981083728420845, + 15.006346154783909, + 15.00972621730159, + 15.028941324750749, + 15.041080054973593, + 14.955873020629793, + 14.991956274109942, + 15.001790506069282, + 14.987793437252309, + 15.033221511008637, + 15.017204158394602, + 15.03434583527744, + 15.018820872001768, + 14.924639183859895, + 14.9718097937268, + 15.020800032634408, + 15.015020952702132, + 15.003270264583179, + 15.024331932116525, + 15.074868824676136, + 14.968166005603548, + 15.011168998989936, + 15.035062687774056, + 15.029018402621288, + 15.005399839072425, + 15.043862596568244, + 15.010556634988228, + 14.954076526479282, + 15.015116127455329, + 14.961493466013817, + 15.075582749961278, + 14.983106807189968, + 15.008787204244834, + 15.014887175118007, + 15.025355611828923, + 15.033023285005138, + 15.050437561661962, + 15.040272933030138, + 15.009670995651248, + 15.00712378601085, + 14.98301262974629, + 15.04617785302975, + 15.036383626784339, + 14.95439805185784, + 14.978992175505548, + 15.03621300040613, + 14.977007467333179, + 15.008502462573725, + 15.099472614971246, + 15.104395358176207, + 15.072987908197351, + 14.980137381447394, + 14.99025654210617, + 14.97269750408265, + 15.00555166496943, + 14.99931160927163, + 14.998898611142593, + 14.971275183906156, + 15.01630979395933, + 14.976264301214615, + 14.946249096912798, + 14.943000505683559, + 14.96924317597902, + 14.962588019607201, + 14.902889627863273, + 14.986973586638792, + 14.932926681823014, + 14.886810923077563, + 14.958755999409513, + 14.965108184223743, + 14.986793331869443, + 15.05428535050533, + 15.047090218250625, + 14.993829535649356, + 14.978949693978988, + 15.03288760754943, + 14.96604336926223, + 14.985990837178399, + 15.002059256734837, + 15.03669394379741, + 15.057997791882034, + 15.079252297016827, + 15.035030285762701, + 14.975941676469285, + 15.012014477424854, + 14.940052101615466, + 15.032965120451745, + 15.061994586312377, + 14.97373893637356, + 15.037023356704971, + 14.95678270925576, + 14.943248078942423, + 15.002533120371504, + 15.033064570954826, + 15.020346206139198, + 14.884394803189133, + 14.98638935065275, + 15.053927992272149, + 14.935761801857483, + 14.933993481111536, + 14.952429865811773, + 15.000944817982711, + 15.0222422292391, + 15.01718070200321, + 14.962425501882803, + 14.983563551698523, + 15.022353660050818, + 15.04783988385203, + 14.963886787478648, + 14.985621297574937, + 15.021633117110426, + 15.04578338851042, + 14.974931652666182, + 15.04051151054937, + 15.08890248171083, + 14.930060559542305, + 14.978267606150728, + 15.062071477558094, + 15.015516828850172, + 14.977162367163718, + 14.93381128168662, + 14.8797781245057, + 14.955641781132224, + 15.013380658799875, + 15.003009685743296, + 15.014178144247824, + 14.978568748105287, + 15.01442600765409, + 14.971368229896918, + 14.994821155590364, + 14.94214038819421, + 15.08544151456731, + 15.041680775449727, + 14.981670507618798, + 14.980465655957145, + 15.032267315561041, + 14.999108787984806, + 15.023145050761812, + 14.939234716808702, + 14.98527509804283, + 15.003766477145623, + 14.966857471291304, + 15.008593253828256, + 15.013039004802668, + 14.990641870780868, + 14.970871670342786, + 14.95957273577358, + 14.954991054457524, + 15.018591863573928, + 14.939556025751745, + 15.014375236348524, + 14.96370481083482, + 14.97088745674583, + 14.930916021678438, + 15.02931082747657, + 15.018440399621815, + 14.968603099230467, + 15.021446091521595, + 15.079443730918769, + 14.954386129080776, + 15.01286571190633, + 15.038656631323834, + 15.01645706615219, + 14.9835586266153, + 14.954391276149524, + 14.961436894704486, + 15.003267629585196, + 14.986856226756219, + 14.95734656384002, + 14.986382199100145, + 14.962971185513693, + 14.984379055336328, + 14.942171468116314, + 14.969782953239877, + 14.897648166359048, + 14.988318826094547, + 15.012146345519763, + 15.090920640878133, + 15.004768768308342, + 14.993621040858596, + 14.95306160715822, + 14.974843831209382, + 14.95770188981533, + 14.93182036069083, + 15.036884446115364, + 15.112414621564506, + 15.11182086070787, + 15.03022827603878, + 15.004911184739955, + 15.02696070394593, + 14.927582088268444, + 14.988298064188177, + 15.002664421070207, + 15.01283270792433, + 15.05229297642572, + 15.00685373696769, + 15.048013643049345, + 14.944678193783187, + 14.958997397422731, + 14.96519617436006, + 15.014775831190718, + 15.015105995186001, + 15.039132264320477, + 14.981012412552428, + 15.035802957764364, + 15.029755496152143, + 15.029130840116142, + 14.965515934721568, + 14.934552114296457, + 14.960668833924116, + 15.011526448579875, + 14.982963718672478, + 14.942751876493093, + 15.031291452424346, + 15.060405360951133, + 15.127640297376864, + 15.008202190210117, + 15.031033109090036, + 15.024882277268354, + 15.068329127731785, + 15.00628223175426, + 15.016854141149754, + 15.053409655126435, + 15.038756055741825, + 14.994628045794132, + 15.026918997937209, + 15.013406515854722, + 15.024825236361126, + 14.97689613810652, + 15.00168335806688, + 15.086349602687752, + 15.084849603072149, + 14.892306327945512, + 14.937853476162022, + 15.107886930655553, + 15.008307865993258, + 15.055456966111882, + 14.977277463874705, + 14.978050646080511, + 14.944024777854715, + 14.953325254303463, + 14.945660797785042, + 15.038772282193476, + 15.059056611831291, + 14.990734211786114, + 15.110536952187728, + 14.933827265647123, + 14.98078623834133, + 14.995983764416382, + 14.96251088309764, + 15.001276474002491, + 14.984417080752001, + 15.0066770647636, + 15.055685892964535, + 14.994252041445638, + 15.008260075132434, + 14.905718368791712, + 15.01535322566947, + 14.992209989718857, + 14.989051637112768, + 15.001826455883151, + 15.039817170817527, + 15.04955019044195, + 15.087967412393663, + 15.038102835876042, + 15.01693958008408, + 15.006401575780268, + 14.99885028879445, + 15.033605772369254, + 15.083324135107642, + 15.028839526643138, + 14.966014227644473, + 15.056951476926502, + 14.972342412385299, + 14.93806791239519, + 15.053486620121351, + 15.017548502884148, + 15.02852337096725, + 15.006835310878198, + 14.985519324641361, + 14.93021599969019, + 15.061068566770919, + 15.0574427454719, + 15.023567959993267, + 15.053725147738843, + 15.00822973512172, + 14.936676807062645, + 14.9426017857664, + 14.98482155328078, + 14.99918753827278, + 15.024114591056627, + 14.95374567013475, + 14.914938258958875, + 14.934814989412176, + 14.940766407005595, + 14.97429312865456, + 15.042483057721407, + 15.044131581108527, + 15.03970731876281, + 15.084110219642588, + 15.045897716418375, + 14.955681689296144, + 15.000546666767027, + 15.030767753928284, + 14.95421938355282, + 14.958611301162525, + 14.947816837564005, + 14.941215589478958, + 14.975859777672783, + 15.053994327635348, + 15.058242054932627, + 14.932124348819386, + 14.918791885108716, + 14.996467801071455, + 15.056007611917476, + 15.015801759111945, + 15.025220515476931, + 14.992598046844478, + 15.08792848976437, + 15.050513534296348, + 15.011054298830075, + 14.947453891843724, + 14.949602149974403, + 15.004269705213348, + 14.96627513162084, + 15.067778702088479, + 14.994622108287617, + 15.020426220096114, + 15.030639521649585, + 14.956827871917092, + 14.900752254171529, + 14.921432705392359, + 14.980577614546108, + 15.008665707958702, + 15.037665031194752, + 15.059970612425033, + 15.003053601294576, + 14.995731744338395, + 14.970304246352152, + 14.966993461196475, + 15.074922111965064, + 14.96192511556144, + 14.953663244259054, + 15.155504921118386, + 15.051692249775488, + 15.119429865595778, + 15.002027178467353, + 15.101721428777775, + 15.052986387460656, + 15.04592233489608, + 15.005642303170545, + 15.064233054019567, + 15.027293894418202, + 14.96594694546712, + 14.973687511038134, + 15.031133957667159, + 15.00525690618089, + 14.979007139881553, + 15.022478048048919, + 14.99051071639505, + 14.9679512385279, + 15.012285177987701, + 14.984853566617229, + 14.96238615257948, + 14.961376513969768, + 15.02689037014525, + 15.033049909464495, + 14.989244762959366, + 14.960550930329601, + 14.943814422568977, + 14.977782606149601, + 15.004084116046231, + 15.002492737544525, + 14.969642394674777, + 14.999292561993933, + 14.966638852068805, + 15.0208714241427, + 15.023909401379342, + 15.025074906521727, + 15.037674382612867, + 14.995253684542348, + 15.026759613623716, + 14.975172020088324, + 14.996780467857489, + 14.971005674644788, + 14.936694836605833, + 15.041329713820643, + 14.983137708191581, + 15.033317796754515, + 15.036447858868803, + 15.03848942425299, + 14.989831668218299, + 14.926788359566105, + 15.018569761957858, + 14.991271340697068, + 14.993223115711917, + 15.075208457353929, + 15.08260922582938, + 15.025194392406124, + 14.982951437708985, + 14.966676425461138, + 15.015869423672886, + 15.050212810573946, + 15.014429957785588, + 15.02086111353277, + 14.924141708860951, + 15.043251809330405, + 14.89480779254903, + 14.894512700026647, + 15.024774087273338, + 15.023053123761082, + 15.09243814873417, + 15.03510585258712, + 15.025379358890854, + 15.029639707981017, + 15.000591035701799, + 14.986280931141623, + 14.980079226050282, + 14.937752758735378, + 14.997825963898858, + 14.960058342032543, + 15.003607605958756, + 15.009738707600743, + 15.045110693563661, + 14.971668893243296, + 15.054992768760803, + 15.033634466371593, + 15.041417742615332, + 14.946267045093464, + 14.962477403660767, + 14.991835715397183, + 15.063716614291362, + 15.087106459034581, + 15.00448934150371, + 15.009769237530545, + 14.996105237189473, + 15.012725432194346, + 15.029124848150756, + 14.99885147164274, + 15.022516103805568, + 14.993977431984089, + 15.02417036156216, + 15.065539103606211, + 15.01158876726961, + 14.89760247465016, + 14.933128832057857, + 14.965613470805971, + 15.030951368381906, + 14.997580187540102, + 15.021565845301273, + 14.983973466008113, + 15.015209114758159, + 14.968116400862879, + 14.971970621706562, + 15.053529004486192, + 15.07745783335603, + 15.024172440281085, + 15.053519614558969, + 15.01423031907879, + 14.982106644534378, + 15.023191853843453, + 15.094592306122774, + 14.941090792352883, + 14.984979889844386, + 15.005817588571976, + 15.037646742560144, + 14.96267779119025, + 14.954560468522919, + 14.996083627150089, + 15.008892304882334, + 15.000161018440823, + 14.97422780102738, + 14.976923342002605, + 15.020900095018703, + 14.950185276577885, + 15.000955017976425, + 14.980711818029993, + 15.048294559797387, + 15.00903582378383, + 15.0469661169084, + 15.007196135417155, + 15.02125732229182, + 14.941965156039245, + 15.063559832947877, + 15.015763873009181, + 14.977592590571897, + 15.031667971997017, + 15.099771436925502, + 15.036035433437972, + 15.029743404720339, + 14.989904688468933, + 14.94689509101495, + 14.979781760635618, + 15.074619847309467, + 14.9765895422944, + 15.054165618713704, + 14.961317605142133, + 15.057730813300253, + 15.007239294445721, + 15.09831252601734, + 14.95388900379014, + 14.965897302208772, + 15.073679959304773, + 15.108829387354996, + 15.022349680280122, + 14.944018985367277, + 14.93222558564814, + 14.97472660372428, + 15.016079757799895, + 15.059971183909813, + 15.004203998386618, + 14.939697762592628, + 14.964289652660225, + 14.981007629321041, + 15.002867812852276, + 15.02763788323317, + 15.007887739620134, + 14.97529179476676, + 15.03034919748617, + 15.007947346086134, + 15.096372577406555, + 15.024567520335516, + 15.055858130684415, + 14.985132809722339, + 14.988200200792834, + 15.0658858368824, + 15.028769705199027, + 14.992421518774384, + 15.00226017606326, + 15.009684996375862, + 15.051630942473817, + 14.978918237002599, + 14.980518909730645, + 14.956455897570107, + 15.02769592289539, + 15.003232441481932, + 15.016605582509895, + 14.899415740055439, + 14.990181059770624, + 15.034795405687879, + 14.983247251052555, + 15.028517410341955, + 14.988660328355607, + 14.923663619990903, + 14.918274741104229, + 14.93401561946129, + 15.022563610289335, + 15.043354932170983, + 14.944265288174586, + 15.016086703628154, + 15.021074504657074, + 15.004397231130735, + 15.010378653786567, + 15.022816298678558, + 15.08189158514563, + 15.028444259453678, + 14.999953403836153, + 14.951752424058121, + 14.922542280818732, + 14.942670091053342, + 14.983646660055914, + 15.026485678492604, + 14.940602010680829, + 15.024168645794655, + 15.028414119631922, + 15.011053123631397, + 15.051930889577248, + 15.008475338728307, + 14.970227190655141, + 14.955891836808934, + 14.974036286589198, + 14.97704363944331, + 15.009851226165992, + 14.948338523732106, + 14.995885032038402, + 14.869778711750367, + 14.874573938551581, + 14.961478955513241, + 14.959032512702692, + 14.951656390026805, + 14.880622663854398, + 14.918363541979046, + 15.017539710560932, + 14.950073235787178, + 14.923385994379007, + 14.975600558175891, + 14.977524360185141, + 14.995537600736837, + 14.98980732808314, + 14.972004936341389, + 15.029413412388777, + 14.95103532035574, + 14.938522770428056, + 14.91549365193654, + 14.964019293555175, + 14.921656274612694, + 14.91724716175822, + 14.97868090964877, + 15.002936439207993, + 14.97078643106922, + 14.988978954199538, + 15.012036546646623, + 14.947594813093323, + 15.05594390465832, + 15.000932275481249, + 14.972671607059596, + 14.983336689339403, + 15.02684733589731, + 14.996779932221488, + 14.99740803540625, + 15.062055947851784, + 15.035816055315346, + 14.960554560347203, + 15.008835827850994, + 14.934867334605359, + 14.971844200649578, + 14.979550585891836, + 15.109814160155148, + 14.991554216134459, + 14.91764493104305, + 14.96763550169362, + 14.987703434905463, + 14.960987425045017, + 14.959495137329817, + 14.972004122082838, + 15.003870329770887, + 15.005246467956079, + 14.980070145768174, + 14.999609919915452, + 14.98127490977004, + 15.01252098652604, + 15.058818624977702, + 15.027619817746617, + 14.977582690299569, + 14.958976578758747, + 14.955975379353454, + 15.002450563014845, + 14.975853827575843, + 15.010837673410029, + 15.010177833174188, + 14.993558180355608, + 14.98588631695775, + 14.951527822615052, + 14.972327716811762, + 14.991525839417163, + 14.914989941289084, + 14.922226204655075, + 14.963159949117282, + 15.026704251684446, + 15.040962553259785, + 15.02769113124983, + 15.05619924334249, + 15.012379899650549, + 15.079505995284046, + 15.042581276276694, + 14.938876345873725, + 14.934282075955213, + 15.028545050061354, + 15.026855773129263, + 14.990395839354296, + 14.919172307480324, + 14.938168247072857, + 14.920835002718437, + 14.949692023017926, + 15.023807172073955, + 14.982433996405149, + 15.011275450527252, + 15.018163311563862, + 15.028489693092274, + 14.986995763584098, + 14.953475855695135, + 14.985621455001285, + 15.056034260936986, + 15.016106327962273, + 14.987208315770287, + 15.091721152989983, + 15.036520817968325, + 14.97499031917244, + 15.105201977434355, + 14.908616686359423, + 14.976826626194088, + 15.083802419307831, + 14.994879921766634, + 15.007848659272819, + 15.006110116072785, + 14.90279694520503, + 15.034282205663365, + 15.021666286068111, + 15.044958341821093, + 14.989844304592443, + 14.973802640296919, + 14.992269320894804, + 15.009943197645274, + 15.049875142915736, + 14.984483682717707, + 15.013530125738368, + 14.936995937788557, + 14.993709332294198, + 15.022948003093672, + 14.927819379330524, + 14.928134181643372, + 14.913290397528641, + 14.931349152596164, + 14.89741016982711, + 14.973036204318582, + 14.991616224127775, + 15.025818271679205, + 15.089952794716165, + 15.02063471483188, + 15.051006427480216, + 14.986913970284306, + 15.061559516981474, + 15.052303259039252, + 14.91027942283898, + 14.996190888727355, + 15.04690644073317, + 14.951544113477654, + 15.027860425019364, + 14.956811527009526, + 15.0499936089456, + 14.917744620830693, + 15.051447306303773, + 15.02548912114951, + 15.065427295844598, + 14.989210294225208, + 15.051615883652376, + 15.027306784453154, + 15.020055911353714, + 15.010788946497305, + 15.024090951151637, + 14.937930060789599, + 14.993751320277363, + 14.996746595421923, + 14.996920412654879, + 14.920496817246507, + 14.938991760294323, + 14.94968956564135, + 14.952086691429173, + 15.008535273533088, + 14.971370916812301, + 14.984838029736007, + 14.995331178594236, + 14.918293003442887, + 14.96287241490632, + 15.021974978702067, + 15.073580765811403, + 15.047121690851561, + 14.988396624818153, + 15.020104547056293, + 15.005702650568685, + 14.914247920676148, + 14.907075395139909, + 14.861707306626906, + 14.934908590945557, + 15.04765028507603, + 15.02642546376358, + 15.038628217081984, + 15.00058275084477, + 14.99283977526587, + 15.000431023346067, + 15.041516203435467, + 15.055767286439176, + 15.058824547447571, + 14.994144408261134, + 14.909049369707152, + 14.964614742585338, + 14.955358298811104, + 14.897251450514934, + 14.988762254099186, + 15.014556371114894, + 15.017023585932323, + 14.987133226672778, + 15.0245828606455, + 14.974380977922221, + 14.89603264910894, + 15.025012365835531, + 15.016836217263933, + 15.06873769050115, + 14.997297483424829, + 15.009484355946112, + 14.9997594356915, + 14.961006354851314, + 15.029825233368639, + 15.007608849306537, + 15.042358929075705, + 14.956670964017754, + 14.996522709864673, + 14.987090044820055, + 15.005533040927386, + 15.02290213538339, + 14.997889180745556, + 14.984997660084536, + 14.910254699663898, + 14.880648718897604, + 15.017519559477895, + 14.991155733410364, + 15.049111376874116, + 15.07448609133864, + 15.035227812755734, + 15.072802599484262, + 15.021354986190369, + 15.042940762922983, + 15.002421456090353, + 14.964290546933038, + 15.02768820452731, + 14.995229147517477, + 14.994298104204875, + 15.00729191470578, + 14.98136246803001, + 14.916121111813053, + 15.121051919659655, + 15.038662132855928, + 14.941556536555096, + 15.009866651930343, + 15.068014710531218, + 14.978025885943808, + 14.9706832762269, + 14.961808551233327, + 14.973875703706232, + 14.933832896284468, + 14.983102119454504, + 14.981911299856911, + 14.962557323683278, + 14.98016271832569, + 15.03809778944997, + 14.953383797735409, + 14.991307290697621, + 14.961957208336546, + 15.010150012505187, + 14.92494991887635, + 14.967817352305252, + 14.988825803774105, + 15.006257238583904, + 15.0029681878435, + 14.993569698127063, + 15.057277175011887, + 15.028187047526073, + 15.003930701311207, + 15.017405701358609, + 15.013971169492368, + 14.96847698877951, + 14.940547901515906, + 14.97305623972323, + 14.957797217907878, + 14.945492294038733, + 14.992271288391228, + 14.98991941924824, + 14.987592569093456, + 15.031088423233992, + 14.946359120303352, + 14.956562371828332, + 15.023249119736713, + 15.018503729266452, + 15.108053395422194, + 14.973697588874526, + 15.023033916734787, + 14.970393627624277, + 15.005565423533875, + 14.986648385288182, + 14.968921275216157, + 15.057729660173704, + 15.001176558833404, + 14.974851260871926, + 14.947208098369657, + 14.997421263994209, + 15.011386676913611, + 14.938875291844488, + 14.958601807480878, + 14.99305658078545, + 14.951269290470735, + 15.00038669659855, + 14.988157252980473, + 14.97421105514925, + 15.058991347156121, + 15.009081638445013, + 14.963217792304642, + 14.942186592205, + 14.971569932991061, + 15.018635713117444, + 14.960572241193855, + 14.959254461602645, + 15.008275874915086, + 14.998336798955753, + 14.892829122345047, + 14.97545760146025, + 15.066254979117513, + 15.025629994099987, + 14.951510714478149, + 14.933020822825403, + 14.986849789144246, + 15.041011906450606, + 15.065110445920281, + 14.96193671476433, + 15.014857705112089, + 14.97493083121656, + 14.935791357031755, + 14.965793379448618, + 14.996907366601132, + 14.989225535075972, + 14.967366608977017, + 15.086681711016244, + 15.03945699854209, + 14.96654728317716, + 15.024884492977172, + 15.00914709592645, + 14.96381663169903, + 14.929419593829488, + 14.977629338657767, + 14.986343122337805, + 14.945828147412257, + 15.012652540207737, + 15.004129802900346, + 14.939142954166346, + 14.934782330992565, + 14.921213550377034, + 14.959040926912941, + 14.978976532452375, + 15.01313040117808, + 14.991542868999334, + 15.00101828007827, + 14.9966896943413, + 15.036599766345406, + 15.027936713835327, + 15.049994524471792, + 15.019579372075968, + 14.95874207089376, + 15.030654365963345, + 15.005094119937189, + 14.953543392097213, + 14.969047269250487, + 14.96706508953343, + 14.991727440011106, + 15.06262644212787, + 14.986080222792188, + 14.933180591731006, + 14.971715292424772, + 14.989613786584139, + 14.970260974478563, + 14.994630999983931, + 15.042369303394514, + 15.02607235324226, + 15.058137987898734, + 15.03415387756125, + 15.007790718510922, + 14.970265732012102, + 14.975943661515675, + 14.997958537140391, + 14.947155099721233, + 15.075175377494888, + 14.990368595517571, + 14.924520757932127, + 14.93021520136911, + 15.09910051333908, + 15.003093896109311, + 15.036638764480617, + 15.013988383123648, + 14.963713948403765, + 14.980977180537886, + 14.984117812218063, + 14.975837571561065, + 15.088500868885538, + 15.020175213928711, + 14.999774176875402, + 14.961107266113663, + 14.953895283803181, + 14.983911637826168, + 15.000999040943578, + 14.967906673434493, + 14.986916396126327, + 14.95693398161545, + 14.992280675164242, + 14.974953272015876, + 14.989839223182203, + 14.960067674535788, + 15.00107956145041, + 15.063317246162418, + 15.134434905054375, + 15.125480005758247, + 15.079530318336586, + 15.069507378401424, + 14.960023878852379, + 15.018121142115357, + 14.9738224891621, + 14.988529457952303, + 14.951108046819003, + 15.006270090975429, + 15.022542194310272, + 14.992537568949746, + 15.0190815088672, + 15.031564700295085, + 15.013511623805769, + 15.047933851991276, + 14.97463902326321, + 14.978137668066042, + 14.937584118496554, + 15.00471866672448, + 15.005106086233598, + 14.97216276686005, + 14.95635451373213, + 14.967584646662951, + 14.939481705620874, + 14.903801503510222, + 14.916258954799464, + 14.96578882110394, + 14.960179434711206, + 15.04774386334731, + 15.089987525899653, + 14.990618312072296, + 14.988074486061182, + 14.97070866000453, + 15.033627037909092, + 15.068819566661555, + 15.049275831732707, + 14.980901652682656, + 14.977332640845193, + 15.03380748919453, + 15.00031035386937, + 15.059261141185134, + 15.074097695986126, + 15.042558560194246, + 14.979034598727619, + 14.944558148715899, + 14.976714411519442, + 15.098345901463015, + 15.049699164436385, + 15.117373495708925, + 15.078455122533674, + 15.021014839907727, + 14.986234795101117, + 15.017014321798865, + 15.005059973613868, + 14.993691209050269, + 15.009753846357675, + 14.98402609932572, + 15.015992857615442, + 14.990612689909359, + 14.993591036487468, + 15.000308902074911, + 15.006878904458189, + 14.9754398640085, + 15.097587996880204, + 15.134049016218375, + 15.010630638723349, + 14.988534782113826, + 15.044476268810175, + 15.04244132727899, + 14.96693463999547, + 15.028820893188296, + 15.010714193533223, + 15.039908944934187, + 15.036063509823554, + 15.022894996759216, + 14.976853260837137, + 15.044684121286027, + 14.937349817159594, + 14.936770234978388, + 14.958381365931912, + 15.030977696986241, + 15.009039701106039, + 14.94762436125947, + 15.01474126710439, + 14.99984414695214, + 14.983704601377305, + 14.974155122866794, + 15.070494890608732, + 14.986948336881975, + 15.009136938673464, + 15.084144221561395, + 14.898650929944493, + 14.98091838217027, + 15.00324560718588, + 14.962882342357235, + 14.987149638161629, + 14.999626428806577, + 15.013672648935794, + 14.971233439817478, + 15.004869364368709, + 14.943737126962535, + 14.986434945489407, + 14.94256128150882, + 14.972968628950513, + 14.948874161084658, + 15.035256233910863, + 15.034189917783076, + 14.822976446673154, + 14.936027358421896, + 14.959658694447883, + 14.937434739347102, + 14.93559066344361, + 14.924764258708409, + 14.969746304820033, + 15.10715732871919, + 15.065708543854932, + 15.025370018444333, + 14.986616175904995, + 15.041968102239224, + 15.06686703863817, + 15.054632695287905, + 14.985761348508875, + 15.102293932364006, + 15.067202640050201, + 14.932772516933966, + 14.942387774724361, + 15.032153039552455, + 15.090378468542951, + 15.060486684756796, + 14.963002435165537, + 15.010494690609459, + 14.983952992495976, + 14.939327630438818, + 14.920791485917102, + 15.056778023987212, + 15.024124200652283, + 15.01069947071633, + 14.967316743970704, + 15.026696209167534, + 15.040575300658096, + 14.951997357940357, + 15.02657082544387, + 15.002474406983765, + 14.961761380650708, + 14.895117030441707, + 14.945348531430508, + 14.993286221112577, + 14.956373334610333, + 15.064021513161642, + 14.972523512172854, + 14.986010066835442, + 14.953748202557069, + 14.96073425979356, + 14.991149288269053, + 15.019815273944179, + 14.972443559518977, + 14.970590409618348, + 14.976975503370266, + 14.982895472868464, + 14.991873096826804, + 15.043521347146964, + 15.015876160856154, + 15.056036474202545, + 14.960576251055594, + 14.991278020787167, + 14.979842727260527, + 15.072967073886817, + 15.02138570850308, + 14.996964124803092, + 15.007122773195592, + 15.006543613588986, + 14.988227006819839, + 15.011057997751314, + 15.01136440754705, + 15.001223920178067, + 14.949396189196118, + 14.928873816997076, + 15.062427422192505, + 14.999692317021706, + 14.975828136252492, + 14.921269296930447, + 14.997037358299242, + 15.018293819901897, + 14.948377725343262, + 14.95310949193634, + 14.981507885518523, + 15.002058809211388, + 14.935308096168033, + 14.997429003373888, + 15.032015399472014, + 14.972629026303892, + 15.002910902880274, + 15.010194433446369, + 14.941675890895045, + 14.930445780123836, + 14.958436056138584, + 14.933579846651662, + 14.94183594251818, + 15.064441735372798, + 15.033769378874233, + 14.96904492889749, + 14.999475158966943, + 15.054270949611999, + 15.079045475299429, + 15.004338837486799, + 15.036575987492375, + 14.988445033992095, + 15.023011731216682, + 15.043621522332048, + 14.992371062724112, + 15.03565870765977, + 15.04044349980227, + 14.987691735809815, + 14.974398832405207, + 15.043066411123487, + 15.024395883379901, + 15.032343902577317, + 15.081021262719496, + 15.070760129249152, + 15.046122915602947, + 15.023380255448679, + 14.944105520861322, + 14.969337397151914, + 15.085584511060226, + 15.056917215827585, + 15.066366702008144, + 15.045939359210212, + 15.113351886217753, + 14.973657607505183, + 14.92683469221805, + 14.963341609449895, + 14.951240368201077, + 14.947061560499513, + 14.939306066833975, + 15.06938130801872, + 15.040784345156434, + 15.045819319891342, + 15.090306943066407, + 15.008698876299796, + 15.034134368786821, + 14.984760870238128, + 14.931444830347663, + 15.040002891752534, + 14.985388999081264, + 14.935877778743146, + 15.071550815743963, + 14.988366126229675, + 15.027980743096512, + 14.962708097522192, + 14.994819759029722, + 15.041659889511129, + 15.045679051913094, + 14.995847061310075, + 15.03668678013579, + 15.001577427264017, + 14.98646228724953, + 14.96565742204706, + 14.962701692129702, + 14.987629973044129, + 14.919201783959958, + 14.983596692090048, + 15.039243104747062, + 15.012223686441118, + 15.070211277556737, + 15.031533631713138, + 14.993375226313917, + 14.987190368630264, + 14.911863298720625, + 15.01249800936894, + 15.016747431925992, + 14.980313358236254, + 14.998483826885806, + 14.981606460878243, + 14.990071877648969, + 14.955504198352548, + 14.954726563414637, + 14.972117860192697, + 14.959917868871328, + 14.966043622811005, + 14.94001055739628, + 14.963344126758594, + 15.046023683020055, + 14.98792712183702, + 14.918041127960695, + 15.002137705759, + 15.029880131384571, + 15.007948588858932, + 14.995411540896372, + 14.97584851951937, + 14.99197273004146, + 15.049645926901615, + 15.003266031727435, + 15.08324618990097, + 15.087330852253544, + 15.020904873882749, + 14.997710977775837, + 14.964073491595375, + 14.997072481725521, + 15.015609921434104, + 14.963410178075193, + 14.970824017594683, + 14.95876615713652, + 14.944304587870446, + 15.047165626475342, + 15.088254643041571, + 15.050265313344257, + 15.030373258230076, + 15.001748878854565, + 14.99649383785157, + 14.99822791962727, + 14.977840327296688, + 15.02676824320375, + 14.99848587815975, + 15.05807909424419, + 15.076348792092025, + 15.044976241179615, + 14.947743798907348, + 15.026079623057841, + 15.017742118289442, + 14.993947000876664, + 14.961285355347938, + 15.010829686760896, + 14.98183255851858, + 15.075047720729529, + 15.059215690579089, + 15.037626195344268, + 15.000408329713837, + 14.917320744735951, + 14.921145510526244, + 14.993426008197927, + 15.021869679818051, + 15.052611954485954, + 15.029482283214941, + 15.020494680203717, + 15.02683444614036, + 14.966981827082128, + 15.029571584962309, + 14.994972443520021, + 15.111891770658909, + 14.963713902176654, + 14.956334165829833, + 15.003173918281776, + 14.972860224540632, + 15.003779989318659, + 15.027966295336126, + 14.950768112340583, + 15.014741738739882, + 14.987877854174888, + 15.021619743048415, + 14.987551392928163, + 15.05182833652914, + 15.027264228165178, + 15.015707451549932, + 14.985848937807324, + 14.968126373896538, + 14.989327924440255, + 14.956260406370868, + 14.96708523026309, + 14.967386185774973, + 14.961372531327136, + 14.952669625863608, + 14.978163531176822, + 14.967100855906029, + 14.984769873563076, + 14.96223055883075, + 14.998331848701838, + 14.953821076648376, + 15.009859409436954, + 15.056175395682667, + 15.07421443977077, + 14.942257294439536, + 14.996589432889115, + 14.973260530812611, + 15.002330877391461, + 14.963753943759949, + 14.986224808489979, + 14.968525128996474, + 15.044649945095024, + 14.996550440380487, + 15.041312682650178, + 14.981180874789139, + 14.925952868676251, + 14.972165525635855, + 15.045854904959178, + 14.976531863425977, + 14.965759931239731, + 15.010906763564616, + 14.99728003435716, + 14.999949014594328, + 14.9975822735644, + 15.05377523002904, + 15.01671625837184, + 14.973060952909258, + 15.031024602271644, + 15.03668320808086, + 14.97330743959595, + 15.031085784609807, + 15.00132776313288, + 14.96724500826786, + 14.978238174031567, + 14.997610473231319, + 14.936439573960087, + 14.982744317585684, + 15.012293136180476, + 15.018291196303737, + 15.022832820628919, + 15.025592733150189, + 14.931080018370649, + 15.01330389315998, + 14.955567892928796, + 14.877541587515713, + 14.83422672793551, + 14.941401713255646, + 14.947398431787219, + 15.015791935001529, + 15.001752876955914, + 15.009322826160062, + 15.045586921085457, + 15.03459049634949, + 15.039061649108573, + 15.054607617280903, + 15.044317270135338, + 15.018585634223605, + 15.022054267251763, + 14.970896955518173, + 14.945739314658178, + 15.004947792551247, + 15.005100080304167, + 14.964151868170626, + 15.001740897351162, + 15.027208844216355, + 15.00133419802644, + 15.006151407472027, + 14.926196399388838, + 15.00389186173582, + 15.001983572365692, + 14.985310873353997, + 14.942121005389001, + 14.967100820204275, + 14.996787593764273, + 14.945392482545387, + 14.95472828825455, + 14.964355013278572, + 15.014969819548025, + 15.042245075879917, + 14.978057086213445, + 14.979231123627912, + 14.9844599417898, + 15.079005803818545, + 15.010746434169471, + 14.95942243185361, + 14.963943821990334, + 14.980361219286772, + 15.022419913541631, + 15.006133803836546, + 15.010429636237587, + 14.981181304866144, + 14.994136480528084, + 14.946910826491028, + 14.973223386832027, + 14.987452265814685, + 14.972346793567224, + 15.056892172153882, + 15.0726952361919, + 15.001031586048349, + 14.983207294927007, + 15.033844673773643, + 15.039390929601957, + 15.082061438028065, + 14.99918260278502, + 14.967127617698257, + 14.979779527223094, + 14.984790070040562, + 14.986661795768693, + 14.95392591066147, + 14.905767985254549, + 14.906624740852036, + 14.952324632021767, + 14.923177073083398, + 14.939581391486408, + 14.95985868381636, + 14.901288871806418, + 14.88679728300783, + 14.936073723866347, + 14.985332425021497, + 15.018422453460035, + 14.936498696625408, + 14.98505393952109, + 15.032666746151289, + 15.016651720133256, + 15.039559438287196, + 15.035451303459086, + 15.019830608539458, + 15.022459402685794, + 15.01121469995523, + 14.974870601508965, + 15.007757949755904, + 15.011243439829547, + 14.966476450238243, + 14.892192277229059, + 15.012379094675916, + 14.937694676759088, + 14.99816106699654, + 15.035170854607449, + 15.002895866295692, + 15.023890362691477, + 15.086842120560693, + 15.026650458473629, + 15.000554099866301, + 14.998731952800332, + 14.990059111025644, + 15.0272570356127, + 14.96780576996516, + 14.973227024590651, + 15.079067597616513, + 15.043846207918236, + 15.001517362834894, + 14.982093564762645, + 15.000961178797914, + 15.027743864886432, + 15.064831912025314, + 14.989307254311859, + 15.038281123696894, + 15.036962603131178, + 14.94260356801194, + 15.083266848342888, + 14.983484565225048, + 14.98804246590847, + 14.999768019147314, + 15.037647532849267, + 14.915611603742747, + 14.930633746063235, + 14.913939372493644, + 14.896438734821642, + 14.898213729820082, + 14.95749844315649, + 14.997878901910726, + 15.001320904794783, + 15.016596223688616, + 15.057838498162482, + 15.031995171036696, + 14.991721106422988, + 15.119637790940684, + 15.003541650979928, + 14.985325939824195, + 14.998225984949443, + 14.976977192598165, + 14.956815629281856, + 15.023044074789256, + 14.967649170824766, + 14.929415180746457, + 14.875206513929358, + 14.961693508137719, + 14.969152681699885, + 14.968544350555753, + 14.980791783846499, + 14.954586495312487, + 15.052954186915466, + 14.956328891333554, + 14.989759823687995, + 14.970235637646995, + 15.000375702661966, + 14.945611252611457, + 15.010757354999448, + 15.068515404055393, + 14.98876737411633, + 14.960966129876855, + 14.977072301329681, + 14.983095012277438, + 15.05297660832069, + 15.004109874524827, + 15.001682543720749, + 15.02867675380888, + 14.962243854051797, + 14.978622510764746, + 15.11447743245308, + 15.035270868241263, + 15.026565003749196, + 15.006616732589782, + 15.004024114707818, + 15.001606069284549, + 14.974942288008556, + 15.038777669577177, + 14.994668205471537, + 14.993233349123853, + 14.96991950158038, + 14.998151420414096, + 14.945779125595415, + 15.007049171320572, + 15.016644651102656, + 14.926634154454632, + 14.963816719667705, + 14.99385614777151, + 15.014504043732831, + 14.982378441874985, + 14.908296585936034, + 15.005104678615856, + 14.99022210853809, + 15.024607024863188, + 15.005344325832342, + 15.040316507690806, + 14.957763570519791, + 15.105114340597453, + 15.048011096268, + 14.957060330587034, + 15.142271682305177, + 14.974584486134058, + 14.9922632203232, + 14.976592929991945, + 15.083908175647734, + 15.09987693622403, + 15.019340573936637, + 15.061866547431903, + 15.041122548736787, + 15.137659437854735, + 15.043911524993392, + 15.021362174845681, + 15.040131506883274, + 14.986777963681783, + 14.97690331369408, + 14.906803028863338, + 14.961899295013367, + 15.01132139644922, + 14.994686856311858, + 14.97604251771994, + 15.009890377948889, + 14.910709130220928, + 14.991174765198355, + 15.085826374245391, + 15.028279270474256, + 15.046290421669399, + 15.09394786057595, + 15.134497773102781, + 15.074427867884953, + 15.03070610715289, + 14.995576329575021, + 15.030951421480815, + 15.046604443064403, + 14.978311857249219, + 14.966031388584353, + 14.997179680600471, + 15.070776943659284, + 14.924104271850249, + 14.989918174505346, + 14.95999678769125, + 15.076480560948962, + 15.095548362162857, + 15.03949227049392, + 15.025307188200228, + 15.060403895435753, + 14.987810134145462, + 14.989102280146708, + 14.972046264940111, + 14.960591499391237, + 14.964596300029578, + 15.007580904975127, + 14.977552518146343, + 14.9510870342416, + 14.993217653815698, + 15.05821054720221, + 15.027020684334948, + 14.986040727958233, + 14.929415946408886, + 14.961502524922583, + 15.02763775324317, + 14.936486922700531, + 14.990297239385377, + 15.024435062010484, + 15.050187430509359, + 14.897036501770518, + 14.962934442895873, + 14.91262390311434, + 14.981626275256684, + 15.023593152164258, + 15.020734744469625, + 15.001850590521999, + 15.073130400272158, + 15.014166169078843, + 14.956743234591444, + 15.020976180449471, + 15.003586474810017, + 15.059027820314185, + 15.06740909580329, + 15.090638608320994, + 15.066259237740356, + 15.051999627311412, + 15.057463885169163, + 14.987674958235273, + 14.995905331053967, + 14.945041969355955, + 15.115294124781876, + 15.062542105729728, + 15.067018166896162, + 15.068712676893732, + 14.879094997965348, + 14.908618722063451, + 15.031957159215874, + 15.11487520990436, + 15.071665857472896, + 15.047978374025679, + 15.000444759903852, + 15.06477834784365, + 15.001931894113827, + 14.96621226052815, + 15.006846065624503, + 15.065770450486239, + 14.92292593570179, + 14.932029415563902, + 14.906405560056808, + 15.031657746976512, + 14.974381942029446, + 14.968250199387718, + 14.993407872295315, + 14.974436122333486, + 15.028258116058648, + 15.01179588054665, + 15.017805579127783, + 14.911687075048208, + 14.92888417064296, + 14.936594432024952, + 15.048032344799564, + 15.017281506441371, + 15.050967718540234, + 15.013038932429295, + 15.032041787345014, + 14.992387677704901, + 15.068575482582647, + 15.108907362675636, + 15.083687148801548, + 14.941925586206818, + 14.99712804605599, + 15.04921332432326, + 14.959132654037937, + 14.955262703193045, + 15.00031385282208, + 14.98091586956726, + 14.981208828589438, + 14.99018752241385, + 15.049986553944446, + 15.007244585907316, + 15.03278300192956, + 15.033469749785421, + 15.096098925420218, + 15.02949568006968, + 15.023869103317677, + 15.025361403538618, + 15.04589317489025, + 15.048736552116576, + 15.013577001956833, + 14.907039959179624, + 15.006167112194698, + 14.93280780976494, + 14.997964319976951, + 15.090395302220514, + 15.12356983032791, + 14.986264715875196, + 14.954685132841927, + 14.958883292774651, + 14.964095563671597, + 14.99876099907419, + 14.953854980500708, + 14.997490486607246, + 14.996146126931498, + 14.931302867483756, + 14.981745740127328, + 15.020001272138488, + 14.963259437339913, + 15.066224106699304, + 14.957496605734367, + 14.908674657304989, + 15.118995314705995, + 14.982138240012175, + 14.989265802963246, + 14.958380508207178, + 14.977714245817088, + 15.039104944390235, + 15.076829262571858, + 14.994689917702129, + 15.005430772356684, + 15.039259200546834, + 14.998901280817362, + 15.091357860688825, + 15.00054150205466, + 15.074242373618777, + 15.019264345955131, + 15.03554291450792, + 15.043511045980347, + 15.035480102281655, + 15.025652660571879, + 15.043520798321035, + 14.987167524825397, + 14.984216807415427, + 14.86898542515705, + 14.98603680828456, + 15.003821493972966, + 15.00001134970731, + 15.072945070165064, + 14.96927184819188, + 15.010204411468152, + 14.974499110888027, + 14.937464350338706, + 14.990672771869352, + 15.07746757635836, + 14.962174505496199, + 15.072706384061323, + 14.956787629616132, + 14.961365284635955, + 14.978511902201726, + 14.978119907781306, + 15.024460654353, + 15.02197648485133, + 14.970635208208288, + 14.97721244299976, + 14.844683341161623, + 14.99023286542126, + 14.94395066717008, + 15.012530106249176, + 15.0434914338705, + 15.058577505109223, + 14.995550571572167, + 15.00188943910344, + 14.972752417632146, + 15.148444147513754, + 15.052953252483977, + 15.035993712095088, + 15.003967739208132, + 15.073958868070395, + 15.1137092526489, + 15.041551018789509, + 15.082673263645109, + 14.983286872095128, + 14.996050330838651, + 15.032917773079511, + 15.008965079605954, + 15.093844909808949, + 15.008271332156848, + 15.0714924581867, + 14.997335772680316, + 14.954792690053948, + 14.9530125968092, + 15.01916593973114, + 15.003136049118018, + 15.053857781980835, + 15.050379570499732, + 15.011886760145963, + 14.988016810997667, + 15.010218099665236, + 15.022082370559865, + 14.976945092220381, + 15.008781484197346, + 14.985699999267075, + 14.916816360204791, + 14.984359096841578, + 14.900663693813303, + 15.016468663609333, + 15.01063455807594, + 15.014624215794713, + 14.953152741038938, + 14.876672507149497, + 14.979511469112069, + 14.976785282122718, + 14.990438772665122, + 15.000215424988966, + 15.059962083148195, + 14.92938490688378, + 14.90737226524521, + 14.979106576023613, + 15.032767321615745, + 15.008828682224364, + 15.024229712227642, + 14.971871122911812, + 15.005391391601202, + 15.007190938135343, + 15.047810504316246, + 15.016008727709863, + 14.97978739963186, + 14.944606458759615, + 14.963560138798977, + 14.979310378310519, + 15.040002230760061, + 15.025021101884947, + 14.952038068117316, + 15.007593979466845, + 15.041215842089356, + 14.990587696284644, + 15.020127753024365, + 14.971211432995512, + 14.89947028482426, + 15.009524939062308, + 14.971504217924391, + 14.996524158746272, + 14.969845965845394, + 14.97206012013641, + 15.018932139084077, + 14.98801146661996, + 14.96535916138889, + 14.97910875180498, + 15.062361226434172, + 14.999760014806455, + 15.000436536042663, + 14.999612727841068, + 14.933214990751887, + 14.916022225078867, + 14.96599249689786, + 15.01508330991061, + 15.051656905813386, + 15.045447968903234, + 15.03196709103978, + 14.974089594211424, + 15.000419415952358, + 14.947178563018742, + 15.00160141491962, + 15.076870209407558, + 14.97399240436176, + 15.006749015594327, + 15.058734860207315, + 14.986911807610127, + 14.976658759101856, + 15.008399807472545, + 15.045021908713561, + 15.080475157538975, + 15.030770453954277, + 15.036432840631386, + 15.066640913734696, + 15.013379116660312, + 14.920539510322193, + 15.0241478421525, + 15.008862094550228, + 15.012240787696825, + 15.03496293865074, + 14.97077882085598, + 15.03525605898265, + 15.048282438115544, + 15.074984780020868, + 14.937724846751799, + 15.013969159121299, + 14.992789101504505, + 15.053978157482632, + 14.936537740201462, + 14.941430262634084, + 14.998062064158281, + 14.977821683608822, + 14.938035564172097, + 15.037741956920916, + 15.0053027071962, + 15.072353792276951, + 15.063004109963403, + 14.997217927257172, + 15.008075448462014, + 14.94960858463907, + 14.979898415870068, + 15.041331838214939, + 15.027219861626632, + 14.978456913858507, + 14.943875689861557, + 15.002744704030242, + 14.960236799132065, + 15.017845557597838, + 15.026330810507185, + 14.920277019704926, + 14.980091629415956, + 15.060812327006508, + 14.99464395974071, + 15.060736596742622, + 15.098117829774955, + 15.004855141747068, + 14.980318293874953, + 15.046794302796389, + 14.974610079448354, + 15.009134390789995, + 15.022424983030922, + 15.049251105032278, + 15.003426229792858, + 15.046618281267218, + 15.059774793923047, + 15.052521353007226, + 15.023194958618918, + 15.022591879697734, + 15.046400320979465, + 15.024798850869406, + 14.982599352607611, + 15.05979947213959, + 15.025053577363698, + 15.07348992833572, + 15.036399631548587, + 15.017029743144557, + 15.042351920447873, + 15.035702525143257, + 15.096427101455001, + 15.10734978020779, + 15.06774658806864, + 15.007503430504759, + 15.083103586739492, + 15.051320973168858, + 15.02841198451123, + 14.988025728834865, + 15.057534564297, + 15.0029578538501, + 15.003076015696578, + 15.085098983216751, + 14.985444499713472, + 14.949916732040295, + 14.89714755176311, + 14.984282223808396, + 14.938527451624658, + 15.021153084641318, + 15.06987400747398, + 15.005120595965142, + 14.967164497418763, + 14.947489285751402, + 14.9751708325186, + 14.951318928237274, + 14.981621933276797, + 15.011593180629205, + 15.104069803021511, + 15.020670001352928, + 14.94235492044589, + 14.93271544368182, + 15.016583437163318, + 15.032119764563419, + 15.031238063076048, + 14.957058073180853, + 14.963850562271784, + 14.929652830598217, + 14.99403896943028, + 14.989491910993845, + 14.984003872294906, + 15.021338698371043, + 15.032528355770987, + 15.068730007677514, + 15.07065058986052, + 15.041102532167312, + 14.922197651846892, + 14.940410291871931, + 15.027407498986733, + 14.98175865570981, + 14.977406969969286, + 14.939181617667652, + 15.122549783875542, + 15.022559384730926, + 14.946446806270515, + 14.928237816498646, + 15.056236909854594, + 14.986107915172884, + 14.987811824754726, + 15.0015389174233, + 14.987006734372631, + 15.080199811766356, + 14.995464707683741, + 15.016661295023473, + 14.97626438300122, + 14.963469431143139, + 14.858695824312866, + 14.961768225965965, + 15.050443683968018, + 14.979940840501584, + 15.001149993177087, + 14.987184092339094, + 14.939479803965478, + 14.911151493972902, + 14.963179681187004, + 14.980371126019282, + 15.035130015313657, + 15.062172860817077, + 15.061453557670625, + 14.991222591399158, + 15.02093224775824, + 15.014000009310639, + 15.06745492577966, + 14.925383786253745, + 14.974033554565361, + 14.98903578309958, + 15.061825285881596, + 15.000335119411785, + 14.96973023830859, + 14.946925800605937, + 14.882422015482337, + 14.95672395205162, + 14.945233599246952, + 15.004798886536477, + 15.049170522299232, + 14.915895361451387, + 14.970057684633764, + 15.050136182969577, + 14.981185313762994, + 14.977726791041315, + 15.036268747498152, + 14.947810522668586, + 15.055058212346058, + 14.969247099316169, + 14.960947895290518, + 15.020692742679499, + 14.989117199010826, + 15.069784389367666, + 14.99958010511716, + 15.009496963556428, + 15.065494630868185, + 15.056966975649981, + 14.989747116966656, + 15.010195337209137, + 15.024766849730025, + 14.929577974861273, + 14.931444653675829, + 15.039268086840687, + 15.048691151494788, + 15.035048730213907, + 14.968913762984585, + 14.971231019430913, + 14.998282933167657, + 14.927209012371343, + 15.00189381148871, + 15.048297303200004, + 15.00553506815248, + 15.11177044395707, + 15.064024443701372, + 15.078508048522892, + 15.052856619127397, + 15.057760252187627, + 15.053197062510646, + 15.048723500643163, + 15.04849906701388, + 15.021514316206803, + 15.035519088419539, + 15.002132989399009, + 15.02385362787352, + 14.970290816824308, + 15.025402437733765, + 15.027222147878014, + 15.039461270418963, + 14.927824046058552, + 14.939383308168338, + 14.99748411943196, + 14.987211930019487, + 14.993202790392969, + 14.97294016450571, + 14.966318804248859, + 14.964147458149267, + 15.016797903114234, + 15.02122829474835, + 14.94701695487864, + 15.03118970576264, + 14.954646664310781, + 15.034586433235592, + 14.992918398723496, + 14.998917695145932, + 15.010995046353573, + 15.002072390189067, + 15.026749204441405, + 15.024283223463033, + 15.030455847345477, + 14.960426677019438, + 14.96117206495579, + 14.991618656758058, + 15.01203192006049, + 15.004460762875132, + 14.926917612942217, + 14.998650926563343, + 15.040496411869015, + 15.031210257510011, + 14.949444082300094, + 15.023351292773024, + 15.060426458827864, + 15.073453289535918, + 14.987994857340777, + 15.034932712625492, + 14.995534193201937, + 15.101256622415692, + 15.046289352973355, + 15.02427928492419, + 14.990216989439471, + 14.9177400243247, + 14.978916028058956, + 14.908347702664779, + 14.980829622326697, + 15.06411799475701, + 14.97862802479955, + 15.013640435806636, + 14.991806040853833, + 15.094559577556675, + 15.064229570637078, + 14.910283798789257, + 14.986331972846699, + 14.923753134489026, + 14.996817215358906, + 15.00642045772757, + 14.98762711454629, + 15.027671199685068, + 15.013189861989845, + 14.956556237769066, + 14.981057173812506, + 15.038103793531377, + 15.004097973636416, + 15.047100896713609, + 15.045488872107818, + 15.026643690764445, + 15.026705158809706, + 14.981915323608613, + 15.003885260353572, + 15.01028345766966, + 14.980757317922254, + 14.949338792918903, + 15.002147590947098, + 15.030681352257297, + 15.016700816704661, + 14.96317518797781, + 14.989805370038965, + 14.995115006323006, + 14.951571486894997, + 14.991804151515987, + 14.955550988858535, + 14.916177290643205, + 15.023855976076137, + 15.014697673921354, + 15.032741345468278, + 14.95105354072696, + 15.057001916638278, + 15.004543241662372, + 15.044512078178606, + 15.001954038014489, + 14.972612055732492, + 14.970951513993896, + 15.014404388150124, + 14.991233154787556, + 14.931333849910114, + 14.89846687422626, + 14.982046594540869, + 15.018844731416534, + 15.039852830482937, + 14.94186511702768, + 14.977907944160654, + 15.014085790813176, + 15.02599042452802, + 15.006449424684348, + 14.981770586744366, + 14.959451577534741, + 15.011684673018273, + 14.949313975495137, + 15.004321917795197, + 15.034816376783025, + 15.038455717280263, + 15.03659617297548, + 15.021901895816463, + 14.937745504478938, + 14.940105443757867, + 14.986978994798939, + 14.913053875688712, + 15.014466357167, + 14.982070928929726, + 15.002700967578596, + 15.060207888844007, + 14.962375434200755, + 14.955837959568838, + 14.981032283176495, + 14.905841508096156, + 14.973866268737758, + 14.98609798875714, + 14.993723271306502, + 14.985081835844467, + 14.928053561214575, + 14.927657832965926, + 15.050217104960486, + 14.992573189987114, + 15.025540460274396, + 15.047410659707706, + 15.07004513400646, + 15.114065344701924, + 15.091076326755749, + 14.871079306487745, + 14.93807869708825, + 15.00846909838667, + 15.091658825572217, + 15.08540396519996, + 15.007866296890684, + 15.001299221640298, + 15.039023203110112, + 14.9875502501263, + 14.961644258912768, + 14.975485762048232, + 15.062771768985233, + 15.085976248175244, + 15.075735797272827, + 15.010878611603276, + 14.973998054091368, + 14.962630919746367, + 14.926368900317582, + 14.956242240710163, + 14.98849560873997, + 15.045606906345299, + 14.971873272836977, + 14.948991006175223, + 15.02628407743721, + 14.959614058423483, + 14.987567633029808, + 15.007144587631323, + 15.081986968028035, + 15.009540051811454, + 14.985143201505444, + 14.981533280820955, + 14.957192672809537, + 14.965466320542642, + 14.989201982711723, + 14.991363922328219, + 14.867452122791732, + 14.972492050499643, + 14.941844761984846, + 14.950793442449921, + 14.985304626317072, + 14.966019597768957, + 15.018794317553446, + 14.955800235375236, + 15.010182411159812, + 14.98424744918082, + 14.98178572715796, + 14.958914007014227, + 15.03495390823339, + 14.966192735458305, + 14.994642024185673, + 14.972516374074509, + 15.009031506812631, + 14.974090093027863, + 15.072099231328501, + 14.986406145122386, + 15.049330554128654, + 14.961554219803693, + 14.990618086727073, + 15.044707900887706, + 15.03659066783999, + 14.992919100625869, + 15.007068220329073, + 14.988043268507601, + 15.042201594983796, + 15.057792713442115, + 15.024857932400813, + 14.999528556818206, + 14.962181727487756, + 14.981279842108332, + 14.959873558107754, + 15.003987688625854, + 15.003370868258925, + 15.076881565769316, + 15.02504857171916, + 14.981769679401141, + 14.965003189503456, + 14.99806056651683, + 15.064359084426039, + 15.046970147836278, + 14.99216330803567, + 15.01936233915593, + 15.05092573412814, + 15.093887257838805, + 15.000292180542136, + 14.944961129360623, + 14.98586448924147, + 15.004456437610243, + 15.077625613142574, + 14.96371406429827, + 15.010757711760782, + 15.039131663726387, + 14.955692998793467, + 14.994500129530788, + 15.084990833775768, + 15.032192702902737, + 15.05373959282613, + 15.041858038905643, + 15.04707658109315, + 14.991579382523069, + 15.037966335537977, + 15.000897989058176, + 14.916420503433272, + 14.92064170769946, + 15.024155818304267, + 14.978931069194246, + 15.077398825172803, + 15.04153264451245, + 15.007333135713536, + 14.958850185905916, + 14.970268866352924, + 14.94819482451204, + 15.015225004025998, + 14.979500189365279, + 14.968181205534465, + 15.03289382375667, + 15.094284621589756, + 15.047980109476988, + 14.999337980931488, + 15.029216200055062, + 14.920704046756082, + 14.931235752857841, + 15.005134900792454, + 14.949104219131753, + 15.042184624675127, + 15.080502652139252, + 15.006409491583579, + 14.974248657646823, + 15.026109910117272, + 14.970772596533042, + 15.045994283739164, + 15.010561023565863, + 14.962469028951555, + 15.018317918240076, + 15.020795397512337, + 15.039970667516222, + 15.057122976128397, + 15.04194992275212, + 15.011540555420513, + 14.990317807787982, + 14.94721614914358, + 14.978367147542604, + 15.054789169382083, + 14.989597919110981, + 14.92766175831976, + 14.997482720879606, + 15.034142952584363, + 14.993828476937296, + 15.040639971605447, + 14.971653471396383, + 14.987953478538886, + 15.059208842171264, + 15.040820382868414, + 15.03060914551289, + 15.012102378780767, + 14.968386529549663, + 14.999359888793647, + 15.03320135677852, + 14.968368168274102, + 14.9210712445369, + 14.984203639599603, + 14.940868778715364, + 15.020022099405317, + 15.030575339103201, + 15.071869521103006, + 15.059042107203174, + 15.018499225735114, + 15.086374481481675, + 15.108381995716933, + 15.062111495348525, + 14.978158338422173, + 14.932302958019653, + 14.99263911952079, + 14.981053356977734, + 14.959598865332113, + 15.012890295733763, + 14.994761457995851, + 15.031595321460633, + 14.944634580300221, + 15.085713753316961, + 15.045523164156547, + 15.045668152368755, + 15.054998231155354, + 15.003929776112672, + 15.00608198324502, + 15.091394403412082, + 15.063986897364805, + 15.106065125833997, + 14.959516193903845, + 14.918929139818347, + 14.968271770830494, + 15.016413324031378, + 15.054447630433748, + 15.03145708261538, + 14.935345275632322, + 15.04059922620787, + 15.012406268383137, + 15.09804432607991, + 15.039948051445903, + 15.017024813618457, + 14.989910186635308, + 15.053111781720188, + 15.025412779088287, + 14.968705380984918, + 14.929154754094897, + 15.01231999927719, + 15.044917093264077, + 14.998502737410062, + 14.953469250715033, + 14.937039806085144, + 14.948120049734788, + 14.974099652177747, + 14.971255242980039, + 14.991533869649034, + 15.001317083124137, + 15.037561296449667, + 15.01728925785722, + 15.0270658157783, + 14.926902504595432, + 14.965066005457558, + 15.011933689572576, + 14.924571949963019, + 14.892573693129908, + 14.936965690763644, + 14.902677368764639, + 14.923385569278102, + 15.010297966572256, + 15.025539724568592, + 14.986309291837182, + 14.97893818412873, + 14.992517712683771, + 14.980975062522266, + 14.922180559366458, + 15.063022889259466, + 15.087037874708614, + 15.011757054219276, + 15.081681016492519, + 15.097151640862254, + 15.051506912830783, + 15.00795548300908, + 15.059951132356696, + 15.067282813319913, + 15.036669874448718, + 15.034496242414182, + 14.942874470469004, + 14.9930274235398, + 14.888470232219165, + 14.932394234006377, + 15.051650678500103, + 15.019000126819847, + 15.042595559710882, + 15.068482657877556, + 15.073444017831028, + 14.977349859781976, + 14.956376312741886, + 15.01359839901801, + 15.022241876298425, + 15.02255771387642, + 14.999897424578116, + 14.97526544701754, + 15.009073849020183, + 14.943372353555102, + 15.04901861483859, + 14.990999761167439, + 14.934707322737228, + 15.02553497962766, + 15.059622714391033, + 15.117745993217437, + 15.041153718150923, + 14.967693870142421, + 15.01801022791351, + 15.05748992275285, + 15.040916334035916, + 15.079777663857563, + 15.073445917762248, + 15.043172197082582, + 14.979909849135547, + 14.920617137448861, + 15.005184822178848, + 15.090136204922858, + 15.009333716186939, + 14.999681838131885, + 15.01585717751639, + 14.967235704929017, + 14.993926220662832, + 14.982782539092442, + 14.947120653230748, + 14.998187547870987, + 14.95636456276921, + 15.067804425394355, + 15.003358422091242, + 14.952592432841959, + 14.952013077736373, + 15.050380912960089, + 14.927950596499837, + 15.029243508985221, + 15.009378280223764, + 15.052244254951496, + 15.025730463744015, + 15.000139369431732, + 15.029486761313489, + 15.02146814944584, + 15.036683790538651, + 15.09883194199657, + 14.987777763774348, + 15.032602043226001, + 14.977286703713784, + 14.945210502214092, + 14.963196433498371, + 15.011546347677891, + 15.030403891965372, + 15.005484501757241, + 14.951891797413603, + 14.936246197512421, + 15.013450933095696, + 14.988551208929023, + 14.995774118079934, + 15.002347819423987, + 15.077993401995675, + 14.880623628558626, + 14.981975452727065, + 14.944262874062222, + 14.947512393031431, + 15.007675115319579, + 15.042309213259145, + 15.097679729378473, + 15.009205584427905, + 15.11140099684745, + 15.010842698481603, + 14.993666847223672, + 14.975168515095076, + 14.920929503949512, + 14.998957442018032, + 14.978420772694358, + 15.020612549971014, + 14.972244933307831, + 15.028561704600751, + 15.057428149574621, + 14.947835225091142, + 14.892238577080885, + 15.00826742840526, + 15.059904841262513, + 14.942932303604769, + 15.025832072064812, + 15.009654073353087, + 14.969520933960672, + 14.920361066043256, + 15.000045000213975, + 15.02334333399981, + 14.965969471244968, + 14.99758804130731, + 14.944413795047677, + 15.000589640832217, + 14.990551587048031, + 14.99236959109996, + 14.944167627598716, + 14.944497443893376, + 15.01121333923445, + 14.99713353745053, + 15.004080176409854, + 15.00140767442878, + 14.973558521146543, + 15.031964215828081, + 15.026973245929597, + 14.970832898751762, + 14.928839716522786, + 15.04359144905846, + 14.964280197326895, + 14.924233405573215, + 14.998979907449622, + 14.996430225509425, + 14.942679411092751, + 14.942910842227127, + 14.954274454410674, + 14.971065422115506, + 14.994807403953953, + 14.979090325892217, + 14.959000705388892, + 14.910024169647828, + 15.008911599727638, + 14.941235987374235, + 15.010931886274609, + 14.993381016032973, + 14.948227690034747, + 14.966537518779436, + 14.986017357537227, + 15.03866732001424, + 15.012469008649, + 15.082892591749525, + 15.07693759994621, + 15.052969016781407, + 14.998130472865542, + 14.905679835265623, + 14.973072364003261, + 14.95971441271708, + 14.971159247248485, + 15.011956266286868, + 14.940768501733594, + 15.020597231323016, + 15.039331821687012, + 15.056578920704156, + 14.947963728847748, + 15.022173099814857, + 15.016859254576689, + 14.951261536492968, + 14.98204984617799, + 14.99197419908109, + 15.063242698734237, + 14.927039423943524, + 14.960620209223096, + 15.054415394312382, + 15.039980903090608, + 14.98686169708447, + 15.032327825352544, + 14.951300964225146, + 14.92923610294135, + 15.013112096914492, + 14.922739213776527, + 14.984760835692283, + 14.888480315677207, + 14.983408069811798, + 14.914085414306248, + 15.016352205608795, + 15.055338476222268, + 15.008563599463487, + 14.912979568005374, + 14.993853836570759, + 14.970807375637898, + 14.975366796053976, + 15.024890189425017, + 14.988330554480223, + 14.964607039750645, + 14.888434755522194, + 14.97700433001106, + 15.03096128417569, + 14.879650540851834, + 14.974938410588258, + 15.003018915671678, + 14.987856670867284, + 15.012476260271661, + 14.996397363267253, + 14.96540605805112, + 14.9078164970702, + 14.941448692932687, + 15.034901501404589, + 14.9793881530167, + 15.011219299381535, + 14.947124465992191, + 15.013352015929827, + 15.052554485756168, + 15.019152333444625, + 14.951841312362845, + 14.920506131640863, + 15.024637983615746, + 15.000496010888957, + 15.001828984540168, + 14.973663637950738, + 14.943573920157169, + 14.946006097660735, + 14.877941966127164, + 14.913459831111846, + 14.903783384945088, + 14.991761028362475, + 15.031372713857476, + 14.945161214262319, + 14.994096737467535, + 15.078514484086739, + 15.008434193318486, + 15.014922563943667, + 14.986664038075649, + 15.076213031473701, + 15.003500721216655, + 14.95166633076892, + 15.043609764144477, + 14.950316573561356, + 15.002441153861497, + 15.033013221278942, + 14.976359477985731, + 15.02762292191107, + 15.026194340576689, + 14.988612114076783, + 15.025917141428145, + 15.040571140373498, + 15.12378723071273, + 15.019899888435207, + 14.962148260032567, + 14.898052749978332, + 14.885309785137345, + 15.028160965503432, + 15.017532621294501, + 15.009776315279332, + 15.007130953129105, + 15.067779710278304, + 15.086707570845563, + 15.00889832652001, + 14.992814761978385, + 14.94477547233406, + 14.890676900904134, + 14.981165357985354, + 15.055430576449892, + 15.046552424788352, + 15.105435912424266, + 15.064503370873666, + 15.032826033264993, + 14.998133314347331, + 14.95924347367088, + 14.972761016031178, + 14.988952509741942, + 15.071028982187524, + 15.048345052237897, + 15.03025328840525, + 15.065599313106226, + 15.01378656944298, + 15.028117232771692, + 15.062262888564142, + 14.964014927503305, + 14.87569885074856, + 15.008354817724019, + 15.1156978712837, + 15.012072206783333, + 15.024129500042452, + 15.052087227402764, + 14.991149434432693, + 14.982158402609, + 15.07761084261986, + 14.97989841254266, + 14.955517722712468, + 14.960827218218093, + 15.033984225168021, + 15.034977180382995, + 14.973806007375213, + 14.954160593624215, + 15.005988691591881, + 15.046746002777356, + 14.978806368530694, + 14.94961622973942, + 14.933547755055761, + 14.966051284479178, + 14.97918917729995, + 15.000501675542663, + 15.071288238734986, + 14.949653802080809, + 14.96139413292108, + 15.061749173033826, + 15.061313700701502, + 14.972557900888658, + 14.96370211200299, + 14.970225639362166, + 15.032342618940396, + 15.04368878080549, + 15.057488666289675, + 15.090380782288618, + 15.003308664894822, + 15.006789391929923, + 15.012428839579243, + 14.988090270902768, + 15.03128488354018, + 14.998637429000164, + 14.947478976627755, + 14.969548743273545, + 14.985266290843558, + 15.073330364434192, + 15.027771980443857, + 14.970933049626296, + 14.94375271542359, + 14.972279431493549, + 14.926943848442598, + 14.989431227921678, + 15.031146826922356, + 15.079450056448445, + 14.996772291308323, + 14.987351856034147, + 14.957978135424483, + 14.929121498310657, + 14.981128310156958, + 14.96738860081623, + 15.031842890923562, + 15.014173813520165, + 14.981420810809242, + 14.959961725265611, + 14.982102059977283, + 15.024765442967947, + 15.006218715543016, + 15.050827316968771, + 14.97745033919851, + 14.986302648457752, + 14.930312232942144, + 14.945659625789698, + 14.895316800859577, + 14.90218045305529, + 14.994887476095883, + 15.044340630290263, + 15.02562926325821, + 14.925811451772637, + 14.938206403531346, + 14.980392056216177, + 15.009385141080076, + 14.969709467824591, + 14.982736555662493, + 14.986663032921706, + 14.965526542830899, + 15.03692063739262, + 15.014967414770814, + 14.95164448815772, + 15.04889701876171, + 15.07655026312737, + 15.002749620368872, + 15.046963745404605, + 14.964517844096282, + 14.93049587857652, + 14.990208067512109, + 14.99572989831843, + 15.003476217699362, + 15.050267405551498, + 15.003206088270732, + 14.93888579082257, + 14.980755078814159, + 15.001007737239544, + 15.01113869823498, + 14.961930537740818, + 15.07234822096954, + 14.961761980695432, + 14.99324985022314, + 14.93965076848419, + 15.006217363738314, + 14.965878551271217, + 15.035426881764765, + 14.999396414450576, + 15.045960770195784, + 15.010636357627629, + 15.046891328901053, + 14.944718193783114, + 14.98636486659563, + 15.070107045999855, + 14.948436568188253, + 15.023663807155733, + 14.994790733126052, + 14.996072291350183, + 14.988048659778013, + 14.913948727219227, + 14.957947905945312, + 14.999361137679154, + 15.057430595214509, + 15.079691341360325, + 15.074168732801677, + 15.003904803206726, + 15.0351710323992, + 15.010947051855702, + 14.992457835983704, + 14.991721391359143, + 14.995077417374501, + 15.022529240062916, + 14.951383879108882, + 15.08433140444435, + 15.023290485414297, + 14.963414389997007, + 14.964822992596147, + 15.04135312845756, + 15.106707482945001, + 14.97397395529713, + 14.975650857257214, + 15.005706582365233, + 14.93486590827111, + 14.952636503160194, + 14.97082078498991, + 15.009616783891328, + 15.03945458795357, + 15.04526712841627, + 14.994864937253135, + 14.947611141713606, + 15.045367860025639, + 15.103246502088812, + 15.01720661900035, + 15.011928392556495, + 15.026241874032038, + 15.036412312928752, + 15.019666306017417, + 15.01917316504387, + 14.959840585370081, + 14.993438947175404, + 14.875192685399, + 14.995218760053051, + 15.044740574210914, + 14.996359561927648, + 14.993424560546726, + 15.029636018692491, + 15.048687296304797, + 14.980023195310011, + 14.954243529930118, + 14.982593231157177, + 15.007567021338115, + 14.96216411682455, + 14.930907798863236, + 14.931076710881788, + 15.03826939606899, + 15.02616895744718, + 15.01324322314829, + 15.013868662760357, + 15.004965640689722, + 14.996721157682659, + 14.965908271126208, + 14.989653542902316, + 15.048368660776573, + 15.025915519010427, + 15.056964895496629, + 14.995193801615404, + 14.980475631700838, + 15.034490859267365, + 14.979908283758174, + 14.986687494648162, + 14.953949671444462, + 15.02703043273448, + 15.025623320135205, + 15.02278607876863, + 14.981692264437287, + 15.001344710406247, + 14.99109653435332, + 15.065331659033689, + 15.095746263691197, + 15.090324481320577, + 15.027592057145357, + 15.084545359851482, + 15.056851311300482, + 14.94557531775352, + 14.946589737418032, + 15.026692758520896, + 14.979057378248063, + 14.981660194916932, + 14.98960194712423, + 14.941734110443841, + 15.009766826170909, + 15.000526307357038, + 14.915110810274339, + 14.989769341459033, + 15.06299371517187, + 14.990971619857222, + 15.001538855214042, + 14.980633586462774, + 14.994563342037912, + 15.002595750731466, + 15.013192246324355, + 14.97535842268144, + 14.982561596436902, + 15.026506455358344, + 14.985262652756012, + 15.049777717019733, + 15.076192920982018, + 15.031955679532379, + 15.030659019398191, + 15.03402710457101, + 14.962846196949478, + 14.995187339211217, + 15.051895861207136, + 14.966164668537717, + 14.980219693845264, + 15.031965877098829, + 15.028655840180047, + 15.008266300205106, + 14.997343547478863, + 14.96788030409472, + 15.008252301997336, + 15.022451869748236, + 14.990031175552707, + 14.991170500746007, + 15.011734636350491, + 14.971984022794905, + 14.987496549332612, + 14.974320013574413, + 14.96632268556405, + 14.936429710505768, + 14.999379412317758, + 14.973333372236109, + 14.972432841882542, + 15.047252847714175, + 15.018604227372911, + 15.034289579937408, + 15.068419789109367, + 14.962255859187112, + 15.033066302412916, + 15.00324540207245, + 14.981090978484549, + 14.931724097224595, + 15.014807623484664, + 14.96320238762038, + 14.90293700463247, + 14.969904823303935, + 15.075205024981559, + 14.977548549928434, + 15.067502547109882, + 15.072826812430064, + 15.027192777763307, + 15.046753889753852, + 15.023118983863174, + 14.995211650690523, + 14.95119978179885, + 14.987347313274142, + 15.032820071848299, + 15.022640514629119, + 15.05932472311532, + 15.011966052720082, + 14.990097002026078, + 14.989040053773504, + 15.019845179725772, + 14.929865299044204, + 14.96544859625146, + 14.976286514510978, + 14.961181312858729, + 15.017585243713471, + 14.972441837423633, + 14.99912038257301, + 14.978820619122896, + 14.936038216419767, + 15.060423498653874, + 14.994145244831843, + 15.020534035137949, + 14.9940541564974, + 14.963080750540954, + 14.977067443091427, + 14.957111136735207, + 15.043307997728721, + 15.015463839026195, + 14.954122254477301, + 15.027601787037096, + 14.99163866568519, + 15.023494441944196, + 15.048731940307592, + 14.953922108654066, + 14.916815391588171, + 14.975190247477526, + 15.029948390421303, + 14.96007535266995, + 15.048835871589466, + 15.071122741168576, + 15.022433496355951, + 15.004836638963658, + 15.05882633611461, + 15.022970132491443, + 15.032617527112633, + 14.904723574307841, + 14.98984340287508, + 14.98968835390089, + 14.956617707190722, + 14.963250882687682, + 14.931516401925636, + 14.969227951654236, + 14.979426497453414, + 15.04389370479791, + 14.94346837707586, + 14.950476286241152, + 14.995660662204964, + 14.99227611319597, + 14.97726785359358, + 15.05983985928804, + 15.00538878925458, + 14.979471707758295, + 15.063474321289144, + 14.948876830755779, + 14.96646024107449, + 15.037133182036387, + 14.96928123459417, + 15.017727015456776, + 14.984356615231352, + 15.045710474659295, + 14.943782506597307, + 14.936953274564395, + 14.99047989353802, + 14.994767826363898, + 15.020940702247753, + 15.022736846818987, + 14.936678421728363, + 14.952899551120451, + 14.958200439114433, + 15.075535024553226, + 15.011176268361998, + 14.976264535319826, + 15.059469809667364, + 14.997922999898998, + 14.961643057616328, + 14.941231896727993, + 15.008546279758036, + 15.032693395359974, + 15.001573361554325, + 14.998238073450961, + 15.053975845516872, + 15.002344604937694, + 14.95068418988893, + 14.997693497683052, + 14.972721819930705, + 15.018071751584237, + 15.011560072696353, + 14.919200986997906, + 14.989918604150773, + 14.975218121970379, + 15.03396052636417, + 14.926774808217651, + 14.89622116365766, + 15.061871873450801, + 15.035228269939134, + 14.910175557653718, + 15.004679865627976, + 15.006159688292325, + 15.089417990673155, + 15.067197422175202, + 15.061485951214713, + 15.06626760974958, + 15.069843479080617, + 15.041562997913388, + 15.04730137215751, + 15.035883431532787, + 15.02274147625848, + 15.043472582204151, + 15.005611985396174, + 15.047150373217226, + 15.003549583662586, + 14.893832840971294, + 14.883210256604023, + 14.938626911935772, + 14.99483033370253, + 15.005686813025326, + 15.02766184016266, + 14.996011406870677, + 14.974827352472007, + 15.010481583112862, + 14.905849427972202, + 15.016058733156921, + 15.048183236686453, + 15.025824467118422, + 14.994963054319465, + 14.995567929809736, + 15.047060475947609, + 14.943105258289552, + 14.99187641010699, + 14.998885209707684, + 14.962921210347655, + 14.97861497804529, + 14.939323839881794, + 15.020853617073415, + 15.097698933038588, + 15.012961884922323, + 15.02658122129604, + 15.076539978203561, + 15.095998151035626, + 15.036801263927922, + 15.016577279812266, + 15.041669268313724, + 15.026818624990772, + 14.996151435461806, + 14.961255978355624, + 14.948875034117528, + 14.962161237246871, + 14.945780849063304, + 15.030224540108266, + 14.93288047513399, + 14.999989147766781, + 14.944585375954444, + 15.029334219752707, + 15.107570400143834, + 14.992093526401566, + 14.970637985066007, + 14.964595626915981, + 15.008227180919445, + 14.970101891755585, + 15.016572229620232, + 15.010410552542226, + 14.989257721759758, + 14.985449988177624, + 15.039651575073224, + 14.972235776918936, + 14.955711781565798, + 14.915859576831888, + 14.883040255362062, + 14.931204393108718, + 14.944852613045368, + 14.929091073554835, + 14.928959767897465, + 14.93054143143125, + 14.925855556258394, + 14.94761240687792, + 14.909054131227414, + 14.863932886930385, + 14.930786789262903, + 14.923297079658676, + 14.897569898980741, + 14.879591256419301, + 14.82734094369283, + 14.915176303697823, + 14.969457360858112, + 14.902166354010307, + 14.961082027199732, + 14.979091193024923, + 14.966044899151429, + 14.97034333462823, + 14.944394515276477, + 15.012552118545397, + 14.913643687355496, + 14.958345777276607, + 14.965654235040383, + 15.013002836861592, + 14.966921685057743, + 14.926162945058215, + 14.939766400293225, + 15.056851976681155, + 15.028605432654508, + 15.078762310473659, + 15.075915047110245, + 15.027122671154276, + 14.933711226778925, + 14.99401596556738, + 14.980623719331597, + 14.936486965345335, + 14.898451697098057, + 14.930006766496971, + 14.93020468339796, + 14.973104921777294, + 14.942996414438397, + 14.908720426111993, + 14.902616134927996, + 14.952394076735976, + 14.973169400997271, + 14.975063569822321, + 15.063884367089726, + 15.054800554587969, + 15.021984493945157, + 15.037498121292693, + 15.027294732914681, + 15.003452995560004, + 14.996630789933649, + 14.933247509407026, + 15.010484036754479, + 14.994397838041213, + 14.953364017157325, + 15.014883237175729, + 14.988321323465051, + 15.000155880533393, + 14.955666978707885, + 15.026631983318374, + 14.942633823752848, + 14.875893250303434, + 14.92084121727945, + 14.91194096939112, + 14.994798969856596, + 15.110792751261519, + 14.959790876806265, + 15.04912477676733, + 14.983117009130218, + 15.008131052520243, + 15.053532911889503, + 15.054103772163666, + 14.92517053617442, + 14.993350784664743, + 14.986858216941904, + 14.872207786984042, + 14.973078159860135, + 15.037176916120112, + 14.990464633181505, + 14.966045525952751, + 14.948659645751508, + 15.043857614100851, + 14.941409621335339, + 14.931221742924553, + 15.00254463382621, + 15.095656738309971, + 15.051035083549996, + 15.027176113057536, + 14.991652189481426, + 14.938104484947543, + 14.988813018752293, + 14.973669183943588, + 14.954411539490266, + 14.924550954334215, + 14.965503493243387, + 15.021308809065166, + 14.967187491336244, + 14.99886079723263, + 15.025556989052196, + 14.993975385719478, + 15.028378587720884, + 14.986750588238127, + 14.979684947788579, + 15.006297367515831, + 15.017203664855085, + 15.017866176108827, + 14.9092933642039, + 14.989146680687957, + 15.01385003148227, + 15.085947829049061, + 15.029626486345599, + 14.996742583700025, + 14.949032259724406, + 14.855971363264452, + 14.886695270253071, + 15.010900104517148, + 14.971838732301716, + 14.96286240887812, + 14.966215950713412, + 14.975799396208588, + 15.067544300389988, + 15.02634807154414, + 15.00149104055648, + 14.933617249914327, + 15.110446375469014, + 15.004494749653622, + 14.999909508061593, + 14.949622067543643, + 15.057109243613466, + 14.931606716964206, + 14.961192237479793, + 15.030669647608862, + 14.995508588186542, + 15.038423824382837, + 15.005080504884804, + 15.037336625168908, + 14.993020092728036, + 15.016724432505866, + 14.908336254956644, + 14.979297741484876, + 15.003857256160634, + 15.026429856636899, + 14.938324826975904, + 15.006906803126807, + 14.940787568078008, + 14.97793455340222, + 15.063303790472395, + 15.067750065692262, + 15.046816273724328, + 14.911641941917024, + 14.95817401982846, + 14.948832348015607, + 14.908423177685183, + 15.039653750495699, + 15.043536478122721, + 14.97593870770725, + 14.96151810942877, + 14.934267460760843, + 14.930670468890302, + 15.048425401311281, + 14.998133414521039, + 14.95657384821016, + 15.013553717212641, + 14.97632966128538, + 14.988587524741037, + 14.922783276994105, + 15.00912495797798, + 15.065123447196392, + 15.050568977941774, + 14.97328966747738, + 14.976785830246943, + 15.006474170611959, + 15.026645242746348, + 14.992370349637396, + 15.01789608220918, + 15.10079925197904, + 15.049928906129203, + 15.123672310541583, + 15.059668460624433, + 15.026025173284156, + 15.05040280790088, + 15.064948068317698, + 14.971804526637182, + 15.017771682385776, + 14.946090513631725, + 14.965924028509015, + 14.938658621859204, + 14.961822754138765, + 15.030422332285145, + 14.984716431727648, + 14.995144442779077, + 14.986462023049608, + 15.01397704822996, + 14.970777163411416, + 15.011836563364753, + 14.957376558760009, + 15.081740937575173, + 15.01498070839771, + 15.02427533740088, + 14.971724246607213, + 15.016309780640904, + 14.994983192159294, + 15.063397469516225, + 15.047509582120147, + 14.91951223439576, + 14.97801896461843, + 15.037086273140531, + 15.014043362742754, + 15.053391831302461, + 15.065322577469406, + 15.032122718127704, + 15.015180593890971, + 15.027425899255258, + 15.076702384073489, + 14.995661788518968, + 14.973873356728706, + 15.031603968694533, + 15.037609685398264, + 14.99022701065986, + 14.971131895147733, + 14.899744445733862, + 14.981278983871764, + 14.994744098472838, + 15.00461445057097, + 14.96336969851436, + 15.018928128493428, + 14.978797657382852, + 14.936794676786251, + 14.95218789074343, + 14.95857510743011, + 14.921915360907464, + 14.932805382663952, + 14.957474771759031, + 15.00059090648569, + 14.907965372842364, + 14.976629576911245, + 15.001303309465014, + 15.021400410195673, + 14.983402788440154, + 14.924465426612167, + 14.918947065688016 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 0", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 14.918947065688016, + 15.026968067170376, + 14.927192481793549, + 15.008585686873861, + 15.027137167640829, + 15.015769679941261, + 14.986052582548583, + 15.043831337487433, + 14.958791258433651, + 14.96216082566016, + 15.007512757617445, + 14.993065418593574, + 14.980787830438333, + 15.028206291967017, + 15.0425841978482, + 15.071313474863194, + 15.011878573945939, + 15.002158344959476, + 14.996517122376606, + 15.052804320628619, + 15.076781275929386, + 15.032884514738905, + 14.99053073969321, + 14.9661089206329, + 15.004962007499435, + 15.04748003488587, + 15.032123552388143, + 15.02232655509855, + 15.042666421263544, + 15.095843633502477, + 15.025175268058886, + 15.013754193626637, + 14.989550001718678, + 14.990389154581502, + 14.875179874305168, + 14.953250967991801, + 14.946739896258054, + 14.970357931467198, + 15.011610776528938, + 14.95034838373556, + 14.977344075544275, + 14.974904713464655, + 15.04599142977533, + 14.99651611209209, + 15.095378633035251, + 15.027761384586004, + 15.05335327666431, + 14.965829339884028, + 14.977798291876166, + 14.976722731522853, + 14.98445618483818, + 14.995192891449804, + 14.999653841277915, + 15.014081823858865, + 15.017864690265354, + 14.938320389841511, + 14.940534726819662, + 14.945355612234165, + 15.082981508745346, + 15.038617305353325, + 14.979427641705527, + 15.062980072299768, + 15.009030866995012, + 15.008139907260004, + 14.929066054155122, + 14.907421332860586, + 14.968413423486734, + 14.94576192309167, + 14.921687482507888, + 14.938752185152282, + 15.033965848019742, + 15.031322997529067, + 15.041365426284104, + 15.013851984706616, + 15.006947114242779, + 15.055106572336774, + 15.001950766473831, + 15.004923149225354, + 14.938680415037565, + 14.9740548265972, + 15.015132437140704, + 15.058052151561608, + 14.95177387794541, + 15.030598056853227, + 14.94060232556872, + 15.016932895701807, + 15.039258493919442, + 15.004584230587065, + 15.004105119950978, + 15.092411412007602, + 14.958953459449988, + 15.036232104815353, + 15.053161072854722, + 15.066501725335495, + 14.910996922106087, + 14.95510047488302, + 14.933996626997091, + 15.011095338060485, + 15.056738700603601, + 15.041176269069643, + 15.034226525112917, + 14.995037781710018, + 15.004310495045369, + 14.930522023696904, + 14.927392111256632, + 14.965330302363439, + 15.052461317941926, + 14.995179219092616, + 14.912777881759077, + 14.95669445929741, + 14.96442870685401, + 15.026630428310481, + 15.045558726986458, + 15.01543032021382, + 15.039003122463562, + 14.97912455712699, + 15.001677769905758, + 14.963869690619369, + 14.92298371349725, + 14.943312350447712, + 14.979024846489853, + 14.996247113477342, + 15.038550058849768, + 14.959335005218023, + 15.006302509624852, + 15.008659454860783, + 15.010061528504869, + 15.034134918316472, + 15.0221405828902, + 15.072006581549488, + 14.923696774254314, + 14.922188934127504, + 14.989711681855292, + 14.940668285497932, + 15.024263772548956, + 15.016024602262714, + 14.998222063691749, + 14.973239532118809, + 15.056955277053593, + 15.075739883970101, + 14.940720869453449, + 15.074848186831737, + 15.088752471442124, + 15.003371095765987, + 15.050060385862043, + 15.015958618348062, + 15.084319788719544, + 15.000798175986404, + 14.965607944604773, + 15.00382449541384, + 15.030678614577972, + 14.971976959056725, + 15.031226017834285, + 15.059008890102707, + 14.967526762808328, + 15.036987737770707, + 14.942077838971253, + 14.950229256904446, + 14.960307190506903, + 15.07220799976868, + 14.98115230871483, + 15.04370962549509, + 15.00761505609195, + 14.998129043131332, + 14.944641950372725, + 14.918176467061315, + 14.897744277398893, + 14.945960493120756, + 14.943894214801354, + 14.90118957887255, + 14.964568084917994, + 14.959428628388808, + 14.977781919199867, + 15.042253362060666, + 15.009055260631147, + 14.974684700044204, + 15.06788238754852, + 14.996307609708364, + 15.013612121707624, + 15.093338682142747, + 15.108874507922877, + 14.969760756449745, + 14.963515846058257, + 14.943613559729203, + 14.98077631646816, + 14.933221067151562, + 15.030821128716626, + 15.073975459450855, + 15.155285816654184, + 15.065329187900614, + 15.015758053356771, + 15.04065927845168, + 15.01857226723169, + 14.970776039537611, + 14.99824899379435, + 15.039983941655805, + 15.020056786195152, + 15.113741747985284, + 15.019904963608187, + 15.029240220069132, + 15.022469300727709, + 14.905294853387973, + 15.021833251169793, + 14.972460000494193, + 14.998183741121805, + 14.93993819454681, + 14.980397346678334, + 15.03657132324399, + 14.962512272425396, + 14.981915562017448, + 14.96516130748748, + 15.052779290646656, + 15.047359837328084, + 14.993807321675305, + 15.121864813115923, + 15.070591450835286, + 15.025387124315184, + 14.981099975938227, + 15.057112928824175, + 14.969246357185986, + 14.991573006002483, + 14.997431372412617, + 15.029106506071908, + 14.995934141694411, + 14.949537417898593, + 14.973136294432905, + 14.957441678222398, + 15.044052888940389, + 15.00975880979175, + 14.964139778795243, + 15.025742920444424, + 14.952083423659337, + 14.894992776000665, + 14.987692687058548, + 15.014994897763875, + 15.049484336776782, + 15.014752686644643, + 14.907626596941585, + 15.01972483267973, + 14.898420617596326, + 14.96694713841224, + 15.022621115423878, + 15.03329414330091, + 15.061502275197853, + 15.033616354849418, + 14.995102518981222, + 14.983106255586819, + 15.006638997054395, + 14.95263284931216, + 14.941191444069382, + 14.990640946822971, + 15.003192205148887, + 15.019849670987568, + 15.053867343907749, + 15.052568737530825, + 15.111711499278632, + 15.048771693146973, + 15.008723637027611, + 15.066723070438679, + 15.02938953116572, + 14.953616954665167, + 14.890553332669514, + 14.928426751249475, + 14.983436571048253, + 14.998488089364146, + 14.960936037398831, + 14.994882011626741, + 15.039106528512393, + 14.938788637234001, + 15.075291616173224, + 14.993240808490825, + 15.022503049914466, + 14.967061677200379, + 14.95337281760304, + 14.941050133094132, + 14.961892849682469, + 14.942418526331203, + 14.95189339602486, + 15.042745779946271, + 14.996652889191003, + 14.98494153043804, + 15.049071057574537, + 15.076047936038249, + 15.048132607300479, + 15.017190833186971, + 14.997975244027623, + 15.027625042552842, + 15.03555464324942, + 15.031882071841194, + 14.999374765383926, + 14.96591243870348, + 15.059855311309482, + 14.995455097112615, + 14.975000313053819, + 15.006727124193006, + 15.044540820360286, + 15.022018492293856, + 15.090177707703832, + 15.085330570411278, + 15.08016208369475, + 15.116598150600883, + 15.104773714428468, + 15.158113615924147, + 14.993318370628772, + 15.014724742533515, + 15.021951303558636, + 14.986614077470062, + 14.992967530946132, + 15.036859784248106, + 15.032458321184539, + 15.06755723030664, + 15.015699233762286, + 15.021990306618896, + 15.033563950022947, + 15.036738634483621, + 14.920018324148131, + 14.947546973243817, + 14.959515332108266, + 15.031275893093287, + 14.978739423942969, + 14.979743730835473, + 15.10635423512605, + 15.015589134029609, + 14.960370136381982, + 15.02975643776175, + 15.047148363604187, + 15.037261944775093, + 15.029369072810498, + 15.033353595542517, + 14.948589386736593, + 14.958076524393007, + 14.96467190810386, + 14.972843198673601, + 14.951920773485998, + 14.919641390875938, + 15.007886177275118, + 15.079080242799751, + 14.972116578360714, + 14.98689832259204, + 15.051800562854247, + 15.085681991342703, + 14.97955312955105, + 14.933290736729358, + 14.993014192192817, + 15.019734693914609, + 15.071411037525056, + 15.033545786121918, + 15.036041714635102, + 15.021460550879524, + 14.955798973553126, + 14.99232005539908, + 14.959268935033164, + 14.989908579835609, + 14.953782977608052, + 14.98979970005867, + 14.9493325753026, + 15.02448684895998, + 14.964471357659129, + 15.060163104466463, + 15.024257447087047, + 15.000791597243815, + 14.997221177446757, + 14.989660936992669, + 14.982150119676264, + 15.030324812212609, + 14.98567964974445, + 15.038046044966784, + 15.01705907579529, + 14.95827305987546, + 14.991150891678611, + 14.973098678244899, + 14.999787681112995, + 15.047374382010414, + 14.956995902816777, + 14.983715768746515, + 15.014098129825719, + 14.99072289276565, + 15.015213910148644, + 14.991637155615754, + 15.074486246918031, + 15.011472764515869, + 15.020407071901474, + 14.976001729079192, + 15.026669757166854, + 15.025064058120394, + 15.001341236570727, + 15.015422719507697, + 15.050322184513883, + 14.978694304105424, + 14.917426654913292, + 14.982442215860889, + 15.034987568011875, + 15.002104602810013, + 15.016832124665795, + 15.083982608392072, + 15.003097036292026, + 14.93666775848615, + 14.97561234380213, + 14.90176417866376, + 14.944787581462988, + 14.981815909424823, + 14.98116275531577, + 15.014162897785244, + 15.024978455239223, + 14.938737163538075, + 14.949836432567242, + 14.956481821749355, + 14.975503778948843, + 14.934215292770466, + 15.090273896319175, + 14.986038977899609, + 14.965884259946435, + 14.965014587311531, + 14.958977064056043, + 14.977766162338852, + 14.948381902888292, + 14.994871023876753, + 15.016443404009252, + 15.021084167784094, + 15.0101340500176, + 15.05777883664421, + 14.943782518292045, + 15.058505745924787, + 14.988046699451957, + 15.024396796607705, + 15.007985019995019, + 14.936930127982988, + 14.992718872926547, + 14.98149646761146, + 15.01785802919653, + 14.977870747651801, + 14.974316030624797, + 14.912959364412725, + 15.069877621895158, + 14.912648096305073, + 15.004238603918363, + 14.978964845446127, + 15.016551543736808, + 15.030707469009327, + 15.038361648490573, + 15.044645128242779, + 15.046846078853276, + 14.953886863560033, + 15.032425494557891, + 15.035546713845456, + 15.001910089804745, + 14.982643534282225, + 15.033805343099399, + 15.018002026891702, + 14.972500761588249, + 14.979546698439096, + 14.954698881039754, + 14.960503530154519, + 15.025378090474554, + 14.99124405166983, + 14.969238042316338, + 15.004470767124836, + 15.07273707472608, + 15.010698856097006, + 15.053874072857033, + 15.075082401307483, + 15.005638198090194, + 15.003884226770298, + 14.953232027996437, + 15.022840087692973, + 15.040249898871995, + 15.018339474786963, + 15.012099808824148, + 14.913020389709027, + 15.068670438818248, + 14.957909597071385, + 14.977920819372365, + 15.008177617975525, + 14.988736398979613, + 15.004572251693354, + 14.921305106601995, + 14.958460701975595, + 14.969186479609718, + 14.994376055718941, + 15.004310014930406, + 15.034734134776263, + 14.966267667776913, + 15.02195965877304, + 15.036223832908888, + 14.985252975243377, + 14.992081892642416, + 15.019537295472837, + 14.97912677171048, + 14.994278974429443, + 14.972547765519769, + 14.973338844454094, + 15.03716308802303, + 14.930677931451378, + 14.937047194964718, + 14.888309397293453, + 14.945811126629904, + 14.93413213531271, + 14.94083300170213, + 14.891494706370473, + 15.007818511555627, + 14.99077087464061, + 15.048787704761136, + 15.08029866816059, + 15.104659342950786, + 15.062923526301143, + 15.111044114045445, + 15.01288768225867, + 14.94756775096326, + 14.955970537640036, + 14.912262250748542, + 14.979103587848401, + 14.965707131891827, + 14.989711537271848, + 14.904784127077976, + 14.96142911808514, + 14.978064349053023, + 14.998279028884358, + 14.998619512934768, + 14.963494523586103, + 15.026247974264683, + 15.016107318084783, + 15.001526355760594, + 14.975436438504929, + 14.960378398457799, + 14.981821091124772, + 14.944325978891856, + 14.996039093271204, + 14.938881820725415, + 15.032676573800291, + 14.949558393000173, + 14.968901024979965, + 14.963131759229753, + 15.00482079219567, + 15.039804453849646, + 14.979411995736847, + 14.983621515902755, + 14.928082569934363, + 15.001803783208205, + 15.031946151587853, + 14.968784210999603, + 14.978668985770149, + 15.022266080623055, + 15.038968905508193, + 15.005182282507407, + 14.95019978007993, + 15.056769182272793, + 14.925064118681025, + 14.922539704369322, + 14.970678147134164, + 15.016764035143435, + 14.945275638310036, + 14.982259373160856, + 15.107514668552676, + 15.055870408532671, + 14.98601731495116, + 14.981658505922114, + 14.895682485188722, + 14.896407749903197, + 14.989946285089255, + 14.971067770301547, + 14.962319058963864, + 14.978564467656476, + 15.02693905541132, + 15.050502131108075, + 14.985303858171534, + 14.97898658167422, + 14.962563392134443, + 14.94046654074534, + 14.938079239489074, + 14.94111106460188, + 15.001357458389144, + 14.941156561970528, + 14.945067419102173, + 14.988894646726404, + 15.013268098015649, + 14.979446326343423, + 14.997179950746332, + 15.011671730911715, + 15.049843855179473, + 15.014323724931538, + 15.018138231586162, + 14.99350006519646, + 14.94867106039259, + 15.015785252996212, + 15.040548370774307, + 15.046353185597038, + 15.028130537833704, + 15.042334240578853, + 15.04335314814923, + 15.094943754096565, + 14.916542256193688, + 14.926189866660728, + 14.934458312313412, + 15.031322329221732, + 15.01831154861333, + 15.02620527862398, + 15.067584239392797, + 15.029163335533465, + 15.122709189088964, + 15.033204941780244, + 15.068899254475552, + 14.995607582378591, + 15.008003476616244, + 15.026336800869576, + 15.033486335660074, + 14.985055421212548, + 15.006991669068213, + 14.989962533339895, + 15.063888502356656, + 15.017404952777142, + 15.085588069528585, + 15.01863753137501, + 15.021162390186186, + 14.992115330188017, + 14.961692541539357, + 14.997675656059034, + 15.02735804014378, + 14.930994980867379, + 15.008238439078147, + 14.956538660920899, + 14.947091178751737, + 14.941888756295446, + 14.980242615696582, + 14.969204462829403, + 14.954931877340853, + 15.000843434812284, + 14.953243093561701, + 14.941265203923315, + 15.018023708168865, + 14.959320193420796, + 14.998971417417591, + 14.983435985298543, + 14.991954892007543, + 14.972924021758764, + 14.994733695931494, + 14.924465160565061, + 14.992303725491398, + 14.92879728849443, + 14.97813242973815, + 15.011717448494045, + 15.076603733473545, + 15.036267284813642, + 15.042884734246691, + 15.010094442843705, + 14.997950878770421, + 15.073257362580533, + 15.08844041534107, + 15.010524116563788, + 15.054244619244002, + 14.952715968737818, + 14.883707930737536, + 14.91817703043922, + 14.879071592871425, + 14.984757151184802, + 14.994931236430896, + 14.936190121307105, + 14.958679601810676, + 15.023867910461634, + 14.96377464908783, + 14.9673048529821, + 14.976134678311347, + 14.957818257033786, + 15.04795807145369, + 14.919582377542419, + 14.925264777991332, + 15.003940384768608, + 15.055828662979971, + 14.980706527312703, + 15.061470465404666, + 14.931928078324736, + 14.97907674745489, + 15.01610867344913, + 14.979563934240744, + 14.980526245322578, + 15.00480812237471, + 15.025554816459426, + 15.003021332523918, + 15.016612110432957, + 14.976534217056312, + 15.058263264855645, + 14.998491556983026, + 14.9561025403249, + 14.889579856228131, + 14.944169126085205, + 15.052015766669225, + 15.033331731289785, + 15.032785888409697, + 14.98512663580151, + 14.979754822469785, + 14.870887307161961, + 14.969519148198728, + 14.965864590629863, + 14.957509879322833, + 14.984267284350812, + 15.019268550735797, + 15.061192417598406, + 14.991914308839352, + 14.964025980834192, + 14.97218865698878, + 15.024528226718408, + 14.962954565116727, + 14.93776886080971, + 14.990242009995217, + 15.023004058370837, + 14.956628746707848, + 14.960867888030199, + 15.005786049188588, + 14.935807397146306, + 14.978525688034255, + 15.015568633177912, + 15.02986165403214, + 15.043621771540671, + 14.997594014389144, + 14.97872062441827, + 15.033516760672645, + 14.994098600461925, + 15.032327943131698, + 15.027050851173238, + 14.989667322726396, + 15.012990775326672, + 15.048365943246276, + 14.974604028573197, + 14.968795282237695, + 15.014600845602923, + 15.0193197664625, + 15.057160909722189, + 14.973835667868617, + 14.994380056340777, + 15.090584273385726, + 15.03238821915612, + 14.940934737809748, + 14.966130462443624, + 14.904433966286545, + 14.937797246609499, + 14.992654840609697, + 15.013522774771202, + 15.016304412978208, + 14.998985376878549, + 14.95282504764297, + 14.976734124812284, + 14.983407629752572, + 15.037544882925065, + 14.902602662489654, + 14.861391912807154, + 14.8670060609251, + 14.978378796578767, + 15.034514573065294, + 14.958737480515945, + 15.020400064877974, + 15.021637522730265, + 15.057082970165, + 15.07780292881546, + 14.989402378504044, + 14.877285975906235, + 14.916246924439259, + 14.931970280305556, + 15.017544792269064, + 15.019246998465785, + 14.891861306451181, + 15.058129235123944, + 15.064490121264624, + 14.994596145322216, + 14.945401963123926, + 14.979057594191747, + 14.97956605854231, + 15.04553816877346, + 15.04664672645638, + 15.02133212757054, + 15.043074864458122, + 15.07027184872636, + 15.02789871765634, + 15.055386031277534, + 14.979880351894233, + 15.002960023663958, + 15.008543809188728, + 15.002155594551141, + 14.982276628090839, + 15.090511824553143, + 14.987929467939303, + 15.035563660656479, + 15.02912528971248, + 14.990998824551125, + 14.92009798746259, + 15.00788075822241, + 15.043922231413116, + 15.019390688809418, + 15.062775757317388, + 14.978259370024858, + 14.97975703664518, + 14.988348019209287, + 14.987081272190956, + 14.965813825154711, + 14.984123638642778, + 14.938431321555568, + 14.988007585782764, + 15.129537679733078, + 15.001137630748609, + 15.01561053055507, + 14.999074721167974, + 14.983320618356881, + 15.040852404221393, + 15.032530975789417, + 15.017816092538236, + 14.988309214402332, + 15.06914904717969, + 15.0018161874128, + 15.043354262631642, + 14.991729662444369, + 15.014693983289243, + 14.947431903824187, + 14.953466002096144, + 14.912078301742623, + 14.987624960086713, + 14.96692557360154, + 14.879377142465, + 14.967139692109715, + 14.964199973188611, + 14.873868131580785, + 14.873544298607376, + 15.012588524933214, + 15.00878132150623, + 14.981992082460101, + 14.978629182014238, + 15.10166766728346, + 15.02625590603044, + 14.888773985294893, + 15.092354605756094, + 15.093135291844678, + 15.083240477026365, + 15.006724984917772, + 14.990900146115164, + 14.948108643761522, + 15.062439901981202, + 15.053181032778808, + 15.034969646631561, + 15.055680949256688, + 14.939229896395908, + 14.950855580188504, + 15.00819852318152, + 14.906254566589254, + 14.964309743310638, + 15.00154591218471, + 14.980639356755622, + 15.04204931282232, + 15.000982853583139, + 15.048151097719773, + 15.036961714963942, + 14.953560004675163, + 15.007961384241078, + 15.005100958018772, + 15.05564201015517, + 14.989888571433145, + 14.993344020625784, + 15.007456150353859, + 14.942706613945742, + 15.027197040979278, + 14.992556276994266, + 14.95581578858821, + 14.983964772078295, + 15.001572711180343, + 15.01737411638524, + 15.00588480652553, + 14.999467553182686, + 15.03945236996049, + 15.037052575025541, + 15.015767986263086, + 14.993612350781493, + 14.99969044769016, + 14.966020342263294, + 14.92666689007978, + 15.044141660887986, + 15.064470008893913, + 14.99372232315415, + 14.931149119296288, + 14.973427773242573, + 14.952720998239592, + 14.992753999123032, + 15.010097850088464, + 15.031859878216192, + 15.027342949642808, + 15.003176040892148, + 14.993011876356308, + 15.028431499105723, + 14.968984019733782, + 14.99952329508249, + 15.046489825481405, + 15.047172892246264, + 14.992379681943408, + 15.042381031685764, + 14.998107311655366, + 15.006469041306673, + 14.981724918832318, + 14.996184426456214, + 14.99336150032763, + 14.993773591214403, + 15.014486267044205, + 14.997422850490652, + 14.93255208044485, + 14.986010175947047, + 14.962313027846642, + 15.063059196032134, + 15.017932925536288, + 14.93809153615278, + 14.988988804095447, + 14.915560355301405, + 15.051658442155055, + 15.074287503214862, + 14.986004752055626, + 14.988818622865434, + 14.934161972845253, + 14.925719239281968, + 14.946679094721457, + 15.06676420887742, + 14.973881122411612, + 14.96609202886315, + 14.9921900568548, + 14.967438660322406, + 15.022063455650194, + 14.954736648792439, + 14.994425641039701, + 15.02486253023985, + 15.045678376670594, + 14.985021642465739, + 15.039339163927124, + 15.003521058685687, + 15.012314258554392, + 14.999039572141582, + 14.956833188903284, + 14.965122804122414, + 14.966989534805109, + 15.063607852241255, + 15.05187806236915, + 14.98632453573918, + 14.948777224089508, + 14.985070149990259, + 14.952334266077509, + 14.964746158006974, + 14.934974910106467, + 14.964629137502827, + 14.991552886041502, + 15.05824364022842, + 15.042870791087674, + 14.973860809961296, + 14.98724953570751, + 15.033297692684684, + 15.046716205395775, + 14.993721502530127, + 15.016831688087237, + 14.977059235596617, + 14.965402906887746, + 14.888756234775268, + 14.956802884906764, + 14.89833870083347, + 15.080294966062308, + 15.071211395532478, + 14.993477773878553, + 14.991541901100517, + 14.886392747658459, + 14.954418515510605, + 15.055455005696379, + 14.994894504220271, + 14.985951613488623, + 14.982941455077258, + 14.98699428054124, + 15.013621348180013, + 15.006594805933306, + 15.015891262718513, + 15.000013504776167, + 15.044637452321354, + 14.985646149197457, + 14.972795043911187, + 15.046152211397818, + 15.026679356446769, + 15.001828324968173, + 15.03846687880021, + 15.007085356613693, + 14.974785299804436, + 15.017753194981891, + 14.974601797498943, + 14.964338466501456, + 15.016072637847564, + 15.034297001916238, + 14.985153736129565, + 15.00720424982333, + 15.040002088843895, + 14.98616803478127, + 14.997951118478982, + 14.964973527672164, + 15.017398963028262, + 15.005395746629288, + 15.002324591582848, + 15.01275662537894, + 15.080457760209036, + 14.99796374605245, + 14.94048427244716, + 15.005983398231141, + 15.006085362977753, + 15.041868296518684, + 15.071539281243053, + 14.959643203123875 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 1", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 5.259574172833863, + 9.438125167031476, + 9.870059746074222, + 9.957439734075589, + 9.949446136221091, + 9.984291475730075, + 9.963392610682043, + 9.965195613875391, + 9.959674126444053, + 9.943011012061824, + 9.98046625075204, + 9.968312074773076, + 9.954078095741233, + 9.971238398240683, + 9.902246529047787, + 9.905191397716658, + 9.977985105127887, + 9.978227781377173, + 9.965111914531088, + 9.929865825375815, + 9.931162581959427, + 9.948319133578092, + 9.948061481186373, + 9.97261957100872, + 9.941633106435, + 9.940713701227985, + 9.966591188219082, + 9.99898974655466, + 9.943827942571465, + 9.957984253124396, + 9.942678568291498, + 9.963173280095816, + 9.940000468201598, + 9.962751542978024, + 9.967717096801344, + 9.973857469689335, + 9.903362615737844, + 9.907083704992742, + 9.932352576081025, + 9.95409551658381, + 9.959491611709975, + 9.957695681304589, + 9.974405238983069, + 9.968994428359487, + 9.998394217825151, + 9.971153602240683, + 9.94395633982443, + 9.932118479200302, + 9.91536183336461, + 9.953012994095733, + 9.935346050081233, + 9.933720959011328, + 9.95275866471177, + 9.967016911102407, + 9.914987503213554, + 9.9428201513321, + 9.99398097216529, + 9.942146669668205, + 9.907538829179822, + 9.88494908364394, + 9.905028790632363, + 9.933188717506594, + 9.948227113928025, + 9.964518948129964, + 9.923384676705199, + 9.936987082014415, + 9.918842305274334, + 9.931295407458165, + 9.940097796719101, + 9.929796378463468, + 9.939540350872914, + 9.96026176568876, + 9.966712926073034, + 9.971537328063874, + 9.985573733830515, + 9.981107971851142, + 9.962814972298666, + 9.94243910194699, + 9.94865476577822, + 9.982061970323969, + 9.932414787617224, + 9.911090999779917, + 9.92220270148507, + 9.94426152069187, + 9.960276899551864, + 9.956063290688023, + 9.931525220932956, + 9.931123791861772, + 9.94923424000958, + 9.93274211769205, + 9.940775190406509, + 9.956877494086129, + 9.904950388851505, + 9.93504430532199, + 9.930829967900337, + 9.92556693402041, + 9.985600644772012, + 9.966615909078339, + 9.980635889588982, + 9.945393318962216, + 9.959125039597804, + 9.988100026562197, + 9.969342971022373, + 9.923169203712849, + 9.908402939594152, + 9.919969780763484, + 9.93154594618106, + 9.941613188272509, + 9.926055224055167, + 9.921064652092387, + 9.919476205882125, + 9.940789478742385, + 9.982945564745881, + 9.966812053587372, + 9.957055883515586, + 9.984453443370477, + 9.966192912732295, + 9.938660178099257, + 9.949414523780819, + 9.929246579512732, + 9.918740183636514, + 9.918050786309621, + 9.881873321474668, + 9.864589414684584, + 9.945536542433638, + 9.938210074180105, + 10.015458960035009, + 9.968046434694273, + 9.935631804066801, + 9.944459762979195, + 9.930015773831979, + 9.92107171029024, + 9.92296121511714, + 9.931089998660433, + 9.992084390059746, + 9.936019035095123, + 9.941443852284578, + 9.956418225931117, + 10.002562176102117, + 9.972059547803012, + 9.972488989745115, + 9.944540292626382, + 9.947352947741855, + 9.947795751772647, + 9.935946402632057, + 9.915332685712478, + 9.946144464963727, + 9.961959773271984, + 9.925875427353336, + 9.948030084919205, + 9.954005576352943, + 9.931020884374531, + 9.977998710751537, + 9.944953569239468, + 9.91153070741634, + 9.971013461954731, + 9.951476313197613, + 9.96765979273551, + 9.94331625314439, + 9.946291616951477, + 9.970154369053834, + 9.978852947001485, + 9.959305128287625, + 9.958465476393588, + 9.98297398057908, + 9.96019394369073, + 9.935001477652285, + 9.917672575055603, + 9.89981281000178, + 9.922983170323686, + 9.972100222915342, + 9.963590684044087, + 9.974832443268474, + 9.951923612751916, + 9.95928007637092, + 9.94111062162055, + 9.936857904276607, + 9.982275066263005, + 9.954464225308735, + 9.926923245304652, + 9.89253909176667, + 9.891574820153291, + 9.944411067874602, + 9.943688330315059, + 10.003691744843058, + 9.991135513831773, + 9.969124965327387, + 9.964480773502977, + 9.951066274837801, + 9.927051935792838, + 9.947067826936172, + 9.955442490112468, + 9.905337670522197, + 9.891041081085291, + 9.940259228353161, + 9.93473173730409, + 9.962012141798832, + 9.988685313046782, + 9.90257830046431, + 9.896369516979027, + 9.953696447329827, + 9.971187802781646, + 9.96013730947074, + 9.943830317122687, + 9.949904819470548, + 9.917110169442243, + 9.893997996743146, + 9.921651805975591, + 9.922964780661795, + 9.961892564789244, + 9.93065577115314, + 9.928979860889655, + 9.96314369612051, + 9.946475590353907, + 9.94707079966038, + 9.99326748457674, + 9.986046520127342, + 9.948385270585135, + 9.953188991511766, + 9.939572709416835, + 9.945741785606801, + 9.919109974618214, + 9.932522143982492, + 9.983491886453109, + 9.963540146595534, + 9.906073191945397, + 9.903677878438831, + 9.909942923863627, + 9.929603583151888, + 9.946883284216451, + 9.94480444447792, + 9.958296186915712, + 9.981369726565697, + 9.943267696788629, + 9.970891670206424, + 9.936094055802672, + 9.919106418901295, + 9.95743227854209, + 9.916136563610044, + 9.954669568929564, + 9.931879464302034, + 9.950398982001337, + 9.918095752703097, + 9.926858608133891, + 9.95870542773457, + 9.97768786687826, + 9.927943052393722, + 9.931080125159696, + 9.98685819735727, + 9.99221479513895, + 9.988952261339426, + 9.918525205723693, + 9.953982317654814, + 9.969790429326576, + 9.976705204007716, + 9.979883109742897, + 9.940158072440358, + 9.965320369312218, + 9.950895338822098, + 9.92427484658913, + 9.934174755583156, + 9.96020216886432, + 9.987303701576693, + 9.937353728782648, + 9.950735583413225, + 9.94263209495624, + 9.939817095601672, + 9.902184638954171, + 9.95527703058532, + 9.97779551768793, + 9.979741321137707, + 9.967561142737372, + 9.925918381679544, + 9.964049808595076, + 9.94943528756807, + 9.948317844504405, + 9.95192934710046, + 9.94232186653158, + 9.944915459437324, + 9.916275423018703, + 9.917983151319335, + 9.933372401281959, + 9.95756713101679, + 9.964445186186452, + 9.96033913932457, + 9.939626108692186, + 9.908608317803534, + 9.94669253772985, + 9.9408706587307, + 9.95280489947106, + 9.938872528441813, + 9.948409504135958, + 9.946672512507785, + 9.930117175016282, + 9.968663910734943, + 9.987401290085408, + 9.956511610930603, + 9.978514663570351, + 9.969495563938285, + 9.945704777468011, + 9.95189499608617, + 9.945569290296682, + 9.97465563795921, + 9.958756045626671, + 9.967439565595132, + 9.973946287553224, + 9.95100422326551, + 9.964611082794551, + 9.939275263567609, + 9.972108557611415, + 9.90191903324094, + 9.945095815121554, + 9.90589038226598, + 9.923165097854518, + 9.910539637390592, + 9.901594110938213, + 9.894265967746378, + 9.878583384918809, + 9.977046303187457, + 9.980358689032515, + 9.980819247891448, + 9.989512492210693, + 9.992014041877592, + 9.954032537980964, + 9.970995125283467, + 9.94442338171162, + 9.969211902149935, + 10.015665088579809, + 9.959123750058644, + 9.95860866946147, + 9.947131862058226, + 9.965108375633775, + 10.028511353672503, + 9.97397050969994, + 9.949602974747776, + 9.9624552309655, + 9.94924156072583, + 9.935089742925552, + 9.93114866073612, + 9.930658284015514, + 9.916512546182146, + 9.958353282171018, + 9.967252063924187, + 9.959264520518367, + 9.922784535935333, + 9.924031881197811, + 9.893487715062356, + 9.954574118263361, + 9.950897297111387, + 9.93431056291999, + 9.938474421508287, + 9.930883946075282, + 9.938209678889772, + 9.937972746743698, + 9.937014949231086, + 9.916701647317002, + 10.008758364260538, + 9.995976714835873, + 9.973464305524049, + 9.96691064097849, + 9.965197638141582, + 9.941820635755857, + 9.981988633821405, + 9.974814677429432, + 9.977852059845155, + 9.967438625233564, + 9.975539977827212, + 9.980132493961564, + 9.94695078974804, + 9.971509670912797, + 9.964322145829401, + 9.970820275587704, + 9.95478015800037, + 9.936857114250172, + 9.945066984169229, + 9.904322243535388, + 9.926634299530066, + 9.958042948795653, + 9.969046652891775, + 9.971813098948985, + 9.986108119132568, + 9.982652928759345, + 9.996108228530865, + 9.966959928732374, + 9.96867292954506, + 9.974447679229925, + 9.98187144813746, + 9.94439864030533, + 9.94077362811268, + 9.976165079815443, + 9.947343644688408, + 9.942799617087902, + 9.91571923925287, + 9.956295099058622, + 9.927534712091845, + 9.948539245685636, + 9.960592370456972, + 9.941277143528684, + 9.9413045250211, + 9.933313078843513, + 9.978049169140926, + 9.958246027736328, + 9.983028545465476, + 10.003165505345205, + 9.944152504727104, + 9.917975294654662, + 9.928026690945307, + 9.940295281590593, + 9.973658839795672, + 9.928558697721952, + 9.965587828768019, + 9.911945738686446, + 9.939312998100414, + 9.95322028126581, + 9.912370110966206, + 9.969403242373115, + 9.970006667825256, + 9.994081633641418, + 9.960650422354508, + 9.933461148770904, + 9.93891108874666, + 9.948601629205136, + 9.954896583206828, + 9.93875278213253, + 9.943156253849716, + 9.953254202063624, + 9.98043755803794, + 9.950792128659248, + 9.984140120074203, + 9.96715074073822, + 9.931856157994313, + 9.947674385102536, + 9.961927246296506, + 9.981767939753789, + 9.96284884942834, + 9.9740273802047, + 9.953674448427522, + 9.907278945854495, + 9.920635512547276, + 9.929357719737316, + 9.958857893374322, + 9.955010589611184, + 9.95392544452878, + 9.945336773024286, + 9.959192894033317, + 9.964867807730892, + 9.940387857257344, + 9.984584728351757, + 9.97690901860133, + 10.014705880113256, + 9.987595291850015, + 9.95328669927584, + 9.942323798052659, + 9.982618120348635, + 10.007339911049772, + 9.971096619441543, + 9.947500336201392, + 9.921191736081145, + 9.900767055077308, + 9.942885472226498, + 9.945911866038305, + 9.937809353461336, + 9.97298107199767, + 9.97063857078205, + 9.953905556015716, + 9.903826343633108, + 9.951477078499183, + 9.973238369827927, + 9.956324062514117, + 9.969479566249536, + 9.966464679905917, + 9.956261381626723, + 9.94153642023346, + 9.93707685692762, + 9.902868407379144, + 9.906965660844426, + 9.900249343641155, + 9.948222559519206, + 9.946723713811766, + 9.929542662912663, + 9.954867516198041, + 9.973562086246083, + 9.999467756767471, + 9.95828740147208, + 9.991692823262756, + 10.004999481894432, + 9.968877173513393, + 9.94379012292092, + 9.956792931708456, + 9.962590747616401, + 9.953178752455264, + 9.936693494801746, + 9.953014327908466, + 9.967793730103315, + 9.996020280495685, + 9.980874057270773, + 10.013854172287143, + 9.95870285804209, + 9.929886004573273, + 9.944507377381841, + 9.941732021236502, + 9.949645988202668, + 9.957503198630615, + 9.893055544861436, + 9.950809226979985, + 9.9145555714058, + 9.93946789314559, + 9.964546845603833, + 9.977806515816614, + 9.968229385843047, + 9.936333317925877, + 9.955014442494797, + 9.965334123306857, + 9.956135635845891, + 9.977964820206372, + 9.953409845502689, + 9.968407989064533, + 9.995785364648262, + 9.963396904925244, + 9.981446153148061, + 9.945360146803404, + 9.943585296249456, + 9.894657721313388, + 9.903374328107999, + 9.959924121078451, + 9.96198521598053, + 9.97719782460591, + 9.979714368503984, + 9.94691289780156, + 9.949972120837938, + 9.968630404959134, + 9.9513139377951, + 9.941969171111133, + 9.946791302558802, + 9.936228343644103, + 10.001019140654163, + 9.962312748331549, + 9.930592885882959, + 9.931734608177894, + 9.984326039909766, + 9.956627545956291, + 9.935755527025442, + 9.922233312960293, + 9.912983892525645, + 9.92725981559128, + 9.970039914907503, + 9.95603943332903, + 9.935258964103943, + 9.964537931823312, + 9.944547535043487, + 9.973965502468808, + 9.982133480033172, + 9.9480207754338, + 9.94252522481253, + 9.945235476719631, + 9.929224203333536, + 9.894856425850943, + 9.875964918993189, + 9.924037477438931, + 9.967421138328103, + 9.947712014768692, + 9.965590751620116, + 9.96947928863952, + 9.953332399424635, + 9.943346564799139, + 9.95883448132935, + 9.955562121291086, + 9.944136607063466, + 9.939788144464563, + 9.93941929555951, + 9.958829870166642, + 9.950944067826365, + 9.944562999761821, + 9.933619187240494, + 9.937055141567763, + 9.927035459137114, + 9.960556696193878, + 9.9451998897277, + 9.941168665268199, + 9.92922125049237, + 9.945927280717004, + 9.937959431606107, + 9.925700364015638, + 9.970905901668173, + 9.97343924452404, + 9.984947066230632, + 9.960346166391188, + 9.951068514728492, + 9.922741648977162, + 9.941525194801867, + 9.943191804473827, + 9.980590541698758, + 9.959375347656756, + 9.936027385518923, + 9.942688069134357, + 9.939291650062435, + 9.977459994369712, + 9.971768398015943, + 9.948175462292161, + 9.936853397648573, + 9.965511543268438, + 9.959860776612103, + 9.940702451839835, + 9.954105659283192, + 9.923469718764775, + 9.942653240923793, + 9.913517621774947, + 9.920362702802446, + 9.945935381739927, + 9.927547378437893, + 9.963627797612473, + 9.995177725698033, + 9.962871678978212, + 9.936681521650101, + 9.968057122139301, + 9.959292842741643, + 9.954885112849844, + 9.977625920440165, + 10.00018558478846, + 9.923250458445917, + 9.94117575720545, + 9.95779816324098, + 9.929678365473404, + 9.96329541996995, + 10.001980368874468, + 9.987347586874264, + 9.983086803870462, + 9.976879436656185, + 9.975496699478283, + 9.927165306646213, + 9.9697341514623, + 9.927090958193597, + 9.92361673612327, + 9.954902138164721, + 9.97500350180054, + 9.935978756909421, + 9.94342688116044, + 9.916210900777255, + 9.891791462163974, + 9.882440303073249, + 9.874974234027157, + 9.9259162183772, + 9.943032234433218, + 9.964475992690138, + 9.93568812096831, + 9.921289585874666, + 9.901351761447483, + 9.915149057912707, + 9.9375065528053, + 9.939780038900869, + 9.913251800313835, + 9.931683484812869, + 9.939775282394933, + 9.930300369531393, + 9.91475189017936, + 9.916135577415858, + 9.952192457226367, + 9.935994580633524, + 9.929326238492285, + 9.93288460944038, + 9.971499858627512, + 9.940620664550167, + 9.92213057731403, + 9.916875150903333, + 9.91242643721059, + 9.950861020140671, + 9.896320579640292, + 9.928676944503698, + 9.95015116853954, + 9.990912444653041, + 10.00468262439297, + 10.003175854954677, + 9.975480112942535, + 9.994769205705794, + 9.956465592607893, + 9.925737598100417, + 9.952683746477433, + 9.954741488579963, + 9.949650953838692, + 9.976734980565306, + 9.988030083394891, + 9.946747643391772, + 9.94342750825233, + 9.965850729546958, + 9.933474160133608, + 9.974293089261113, + 9.961761932019343, + 9.971189455650311, + 9.9849210512589, + 9.940728751344636, + 9.953764773388869, + 9.946442705717672, + 9.935160259046807, + 9.950034988692595, + 9.919681457808913, + 9.95827984237322, + 9.950068532263943, + 9.934301883402583, + 9.91000440442228, + 9.926815847231735, + 9.930645481343387, + 9.897914839560645, + 9.896879488304103, + 9.902711181022006, + 9.921550359507833, + 9.94755366113173, + 9.931412729971303, + 9.948326137916563, + 9.912647916750172, + 9.966387474667057, + 9.953127204414558, + 9.922364110288258, + 9.922599919083138, + 9.950982937468746, + 9.94745608184758, + 9.911661489364484, + 9.932853246402193, + 9.963377426274738, + 9.959989957813157, + 9.959248595778986, + 9.91580523751695, + 9.94974675256958, + 9.963974618204075, + 9.986793729055183, + 9.925120383791649, + 9.999176372523127, + 9.93469857433067, + 9.953006265553931, + 9.936976297094382, + 9.945875976426066, + 9.928537619811769, + 9.94262755843141, + 9.950836908696806, + 9.922566447559356, + 9.928585714364658, + 9.938510562498223, + 9.948086050054014, + 9.937179739692008, + 9.965015757725048, + 9.962988919703664, + 9.938709754993479, + 9.937485966214494, + 9.958264631035433, + 9.91143364343466, + 9.932054598403187, + 9.922029900544665, + 9.92346491337007, + 9.930920466622709, + 9.93748838243721, + 9.902389538705535, + 9.941544358360495, + 9.949086264097968, + 9.98549490941673, + 9.95398034287383, + 9.929846086057985, + 9.94946952339093, + 9.975907050964889, + 9.996716241685428, + 10.000638608383767, + 9.967670860745796, + 10.004910508197145, + 9.99326498215114, + 9.981516450316182, + 9.964924781401319, + 9.950997838826444, + 9.950115378451223, + 9.926968142901918, + 9.90626629418012, + 9.966785083876054, + 9.931284465627026, + 9.951673242048335, + 9.972463285688162, + 9.983382134379557, + 9.97988213782672, + 9.988407863584346, + 10.001004065329747, + 9.964433999548369, + 9.93746031250317, + 9.975384798685772, + 10.01442072628255, + 9.989755973756225, + 9.948799990048133, + 9.942131424013875, + 9.98462685508836, + 9.951178026302632, + 9.943095133635632, + 9.930593601223991, + 9.964457712790423, + 9.95299038186779, + 9.945102739801587, + 9.961200194765132, + 9.958976575226236, + 9.957506540167754, + 9.97539444194119, + 9.973469371354895, + 9.925214734547092, + 9.927987852113114, + 9.933683915198456, + 9.950800552535021, + 9.935060697797875, + 9.960959592374971, + 9.932553617727718, + 9.923811698606881, + 9.933544070759455, + 9.934268802778455, + 9.932134233280207, + 9.937185977740524, + 9.969660229925273, + 9.944571733615746, + 9.938678550449733, + 9.972148096056294, + 9.929678144199196, + 9.945701546163917, + 9.945242123870061, + 9.92090847733891, + 9.91803743079492, + 9.92554485869389, + 9.9154173669399, + 9.900725463411456, + 9.928225956823958, + 9.943189723644966, + 9.947910019632339, + 9.921692093675565, + 9.908873775493312, + 9.924146588007561, + 9.927326919293288, + 9.908792517658338, + 9.905279334142696, + 9.952467465803547, + 9.94690738045019, + 9.949976509233135, + 9.957282030752985, + 9.932242181036521, + 9.962524719816567, + 9.964855482920315, + 9.950740355458473, + 9.984105513911905, + 9.945912484205618, + 9.978188035091254, + 9.923767351917526, + 9.936938104720216, + 9.956237705354194, + 9.947342258468554, + 9.971175203212791, + 9.963441592770504, + 9.973227760052602, + 9.959892914094835, + 9.97651991383475, + 9.992947205805539, + 9.93034262201017, + 9.948580188983488, + 9.942086270006369, + 9.926829051217744, + 9.950479472449011, + 9.92730733877987, + 9.945958462763254, + 9.950002771983488, + 9.984173100233013, + 10.00590918509343, + 10.004254993617069, + 9.9735032898073, + 9.972008190629756, + 9.970325001006271, + 9.922170289158547, + 9.963590275178378, + 9.965602739562295, + 9.95057455736868, + 9.957528934853327, + 9.94827900014516, + 9.960087614518052, + 9.951897200068167, + 9.953710228591529, + 9.926966012771867, + 9.906877409440888, + 9.927424038327421, + 9.930921221029072, + 9.949553821346422, + 9.914753627740208, + 9.91542701606459, + 9.918030270296178, + 9.927243459049341, + 9.967056529375132, + 9.976052819243057, + 9.980990946324305, + 9.980654166856914, + 9.967084023578025, + 9.944491264078213, + 9.968037396043515, + 9.969172414923213, + 9.968085570383218, + 9.948979252610402, + 9.986537439519655, + 9.98518266802446, + 9.951596023742272, + 9.95364310271612, + 9.952185245274059, + 9.950820310898306, + 9.980836464213414, + 9.960926271253037, + 9.934791026585781, + 9.94660952728311, + 9.949864321314529, + 9.95959374973952, + 9.9531621214909, + 9.941188291298808, + 9.942208263847549, + 9.932091458382041, + 9.962023265379853, + 9.92067547275569, + 9.947832853259898, + 9.93772802197965, + 9.93054477400505, + 9.942277034837664, + 9.951850290258307, + 9.942047223522602, + 9.96342726272635, + 9.91626160803237, + 9.956348957465746, + 9.966831369807982, + 9.969491697598805, + 9.93427568125367, + 9.939898619549519, + 9.949070004725446, + 9.950098163764006, + 9.955045421950038, + 9.982373487180649, + 9.970383693136885, + 9.922180440840084, + 9.984022507947543, + 9.937891990898281, + 9.977794499241874, + 9.94628627325409, + 9.963606760351292, + 9.965057545073995, + 9.944714516017987, + 9.962368004325658, + 9.938769210585379, + 9.936564535412554, + 9.971886147508792, + 9.944749925109068, + 9.958780123347907, + 9.949450387061775, + 9.93219356357217, + 9.942520324780194, + 9.947571329987733, + 9.940720721981505, + 9.93357946317352, + 9.971557107259668, + 9.934878307640439, + 9.95195388742924, + 9.941448827682594, + 9.963920812359795, + 9.948872106691052, + 9.970866366906186, + 9.958200491383277, + 9.96213299780196, + 9.94848663842233, + 9.963702360020637, + 9.937890934402562, + 9.957695723831486, + 9.912603874974561, + 9.917013806992786, + 9.921307665160402, + 9.889519902151873, + 9.886441311760137, + 9.964324875446781, + 9.948212062093724, + 9.944228099623004, + 9.953194609825768, + 9.924743988643893, + 9.8942330436212, + 9.934637188861949, + 9.96714281816738, + 9.95392405420229, + 9.95423085106609, + 9.96122669219769, + 9.929641849715713, + 9.93532282546877, + 9.961712724327885, + 9.966565561974736, + 9.989633314593378, + 9.955632028446544, + 9.95019521600679, + 9.97659888359186, + 9.957753659522908, + 9.930564922486635, + 9.930460164593939, + 9.940462089777109, + 9.940202382825094, + 9.924627265578279, + 9.971976492394992, + 9.953449047692574, + 9.933100651509367, + 9.92434790586792, + 9.957804520811665, + 9.967245633101957, + 9.996728624421184, + 9.998443827189902, + 9.93530520721302, + 9.954669403734542, + 9.934985873542246, + 9.960053677312228, + 9.921961320874333, + 9.970013330667147, + 9.982742611208533, + 9.949538072441197, + 9.94347408242354, + 9.928665712779038, + 9.97892383903751, + 9.968997303264077, + 9.94232233235138, + 9.913217461890621, + 9.932401919528324, + 9.899665237096366, + 9.928049480295321, + 9.915546936941647, + 9.96187808456049, + 9.928220994453183, + 9.947219880912009, + 9.917476321834616, + 9.967226941861945, + 9.951666257266515, + 9.992573359753104, + 9.992905724609965, + 9.976013509994008, + 9.979781746768545, + 9.976669832129312, + 10.009367730079104, + 9.97120812726952, + 9.968090559554444, + 9.941154155684096, + 9.935880061971556, + 9.898531254543013, + 9.96048118252598, + 9.963480420422572, + 9.932486422360649, + 9.929000213630218, + 9.953900148542674, + 9.935226569593462, + 9.970483547840969, + 9.932582308135437, + 9.947459864316265, + 9.936807698784815, + 9.951121072157692, + 9.940522802517114, + 9.966730344118881, + 9.976115799905243, + 9.987925664179835, + 9.967195478306914, + 9.95479703279056, + 9.926577779384951, + 9.955991923180227, + 9.973274201656064, + 9.951084747540582, + 9.927090755290338, + 9.973148453087516, + 9.926546636601575, + 9.957655922699562, + 9.923830801510404, + 9.940732350106053, + 9.938378892295258, + 9.917355860147973, + 9.937868237645693, + 9.962048683471286, + 9.912404745055644, + 9.960457547048286, + 9.930102905234255, + 9.944661196443654, + 9.949350676624555, + 9.955459567216309, + 9.939750627924042, + 9.926782360302616, + 9.895560953889186, + 9.942804622273206, + 9.949963387868598, + 9.889829776082047, + 9.933143325968462, + 9.938093240006319, + 9.940736457449113, + 9.911926350133196, + 9.871678164474481, + 9.871518081286215, + 9.891390401005324, + 9.941701721756411, + 9.938786182948528, + 9.952302479506876, + 9.969838178329354, + 9.952844055225247, + 9.949663736429489, + 9.961109028656587, + 9.926764691139754, + 9.921641177292122, + 9.949617656068437, + 9.931492910325005, + 9.925772715171172, + 9.929254578186189, + 9.971641481746769, + 9.975811077384664, + 9.949830575272367, + 9.941082375360503, + 9.967536965607174, + 9.964813460634737, + 9.928391205714522, + 9.931032380296005, + 9.95837323734213, + 9.996417333249536, + 9.928894851299798, + 9.913067762364614, + 9.967601747122675, + 9.970953908567672, + 9.963408421203516, + 10.00135976129382, + 9.944805862425145, + 9.922128390737093, + 9.958650234518984, + 9.966036639238663, + 9.935408349156798, + 9.919280848517264, + 9.89715366092726, + 9.923502529391206, + 9.95543541715306, + 9.930564626251275, + 9.923452377549552, + 9.92152670065455, + 9.961324863813722, + 9.944883943636738, + 9.940283378351367, + 9.933510394597686, + 9.935561244895506, + 9.971986396448951, + 9.943852880002652, + 9.906478809165575, + 9.917018232205294, + 9.944552795257227, + 9.95496438048105, + 9.917986758813383, + 9.925617089770958, + 9.925284218890836, + 9.980852981021853, + 9.973339132912033, + 9.981733207301435, + 9.93419081994127, + 9.940558960158612, + 9.986016553386005, + 9.997509204852825, + 9.989114574193875, + 9.974441411743806, + 9.967010592695454, + 9.976152619903027, + 9.954681825712402, + 9.9576255785564, + 9.925408710802882, + 9.966750447036322, + 9.958625277621351, + 9.942387301327164, + 9.96217529159599, + 9.928833297774734, + 9.950136864761962, + 9.929317313866953, + 9.95097150987452, + 9.952433749216, + 9.963440707545832, + 9.991095548398482, + 9.975211939411208, + 9.947930750672846, + 9.967470780928675, + 9.958773208033008, + 9.944041232810465, + 9.946379610665701, + 9.960979194502945, + 9.951075129160932, + 9.93079643917597, + 9.956460457065365, + 9.960104744000166, + 9.951580775829516, + 9.940532880995871, + 9.913954793371804, + 9.924679900565764, + 9.911626696793022, + 9.915551214114936, + 9.961703972257343, + 9.919851584853793, + 9.937934213728546, + 9.974991533585742, + 9.971072181774156, + 9.931142222215655, + 9.961645962458533, + 9.957097472074942, + 9.946188195758134, + 9.916898528747339, + 9.898877977182709, + 9.931472382071231, + 9.940755327135259, + 9.974977981408317, + 9.944195728752772, + 9.976571006566136, + 9.961183946880137, + 9.96253351970303, + 9.937425200944402, + 9.938861173275187, + 9.96567467221444, + 9.968488844299324, + 9.917282512171715, + 9.951958325004206, + 9.969074310852541, + 9.966370856423119, + 9.9584508574393, + 9.91992283356287, + 9.938381287747122, + 9.973698817284161, + 9.983507191317841, + 9.980524600375986, + 9.945293493135347, + 9.965840431894268, + 9.916920905459286, + 9.919544944570713, + 9.931869140802444, + 9.922469699306692, + 10.000793111919695, + 9.930987254373825, + 9.970323718039428, + 9.952603933616889, + 9.956572244778869, + 9.96165902197365, + 9.93645923880864, + 9.927503542089577, + 9.953150139435778, + 9.950605140953364, + 9.962138590595087, + 9.91517944967287, + 9.97047720676325, + 9.960254076048157, + 9.947697188855846, + 9.990948485051547, + 9.976529649086755, + 9.958977733887586, + 9.972324031551828, + 9.96706507403594, + 9.955091773686092, + 9.943263413799276, + 9.99584798228057, + 9.940026669683922, + 9.901960869087413, + 9.923660611229813, + 9.965322405262489, + 9.96683693926583, + 9.928964446956064, + 9.95905445412689, + 9.94866022991227, + 9.959339662025565, + 10.017127328773384, + 9.992170387332326, + 9.969202801301769, + 9.934716990786917, + 9.962668411601275, + 9.951718512823048, + 9.945621548272449, + 9.925482328088194, + 9.927052334774121, + 9.931179676903229, + 9.950312332435436, + 9.966944618420259, + 9.966639041783955, + 9.95275091584954, + 9.951291607314259, + 9.947447435485778, + 9.926536817469389, + 9.939013219406194, + 9.925040735141383, + 9.935190951001886, + 9.948484188878593, + 9.952385257715571, + 9.924566465305178, + 9.924431467316507, + 9.913309593989407, + 9.966038581550224, + 9.982397168383, + 9.933304018023989, + 9.8914808210807, + 9.952409300371519, + 9.953511020189792, + 9.961637576792452, + 9.921252304842277, + 9.930063187405215, + 9.947619598000223, + 9.948851919904456, + 9.964983615744766, + 9.954051094082683, + 9.959461790395967, + 9.93498971475213, + 9.978089020780073, + 9.921854691905118, + 9.964952135168366, + 9.989865442559609, + 9.933626496623708, + 9.955376125932071, + 9.976019827200455, + 9.948011734555214, + 9.97314499630165, + 9.921861803336874, + 9.939395861475447, + 9.97173523287947, + 9.929770200833909, + 9.938256808750209, + 9.973579572855225, + 9.976248332291531, + 9.942623885435932, + 9.925475121359705, + 9.917895941699548, + 9.933539075462367, + 9.954033262103456, + 9.935018515388624, + 9.947845436003849, + 9.912656502119447, + 9.977435027576373, + 9.946957439738382, + 9.946283242618978, + 9.981333737732792, + 9.958764789962466, + 9.97984897537746, + 9.953451664433432, + 9.965416587119739, + 9.91765963836771, + 9.941198690563498, + 10.003723000327367, + 9.977577279228397, + 9.96633100231408, + 9.938462039228364, + 9.963616452416021, + 9.995718945600245, + 9.949955295136515, + 9.939955800980327, + 9.96544133249701, + 9.942466499973168, + 9.949729559240952, + 9.973309740592235, + 10.030021988208798, + 9.994311846225635, + 9.963114304238962, + 9.915127978735432, + 9.90780895885981, + 9.939293579568774, + 9.927415071807665, + 9.94841923447489, + 9.951732398225563, + 9.951373040477037, + 9.972990657456412, + 9.972754265022541, + 9.947286983172944, + 9.941265752390871, + 9.94061377292419, + 9.9510937048454, + 9.920696279243112, + 9.916743449707157, + 9.949782271212444, + 9.904717503597977, + 9.94607738655512, + 9.946980386037247, + 9.925821680515336, + 9.92200581150294, + 9.91774650858575, + 9.954922862903205, + 9.948407092967962, + 9.925895332902744, + 9.926133278028239, + 9.94672489340566, + 9.94936303624558, + 9.941344867951898, + 9.935272404273196, + 9.92355347417069, + 9.940634157208065, + 9.936915621989955, + 9.921524049590806, + 9.909436220196781, + 9.96748701211363, + 9.970113857928702, + 9.915404596394342, + 9.951874831893887, + 9.91878559343838, + 9.92189306022676, + 9.961931371086393, + 9.945273836401656, + 9.950085436423642, + 9.930776843096544, + 9.930731138605973, + 9.92787148693201, + 9.947772137536454, + 9.967007955184034, + 9.955221076336736, + 9.924630593508672, + 9.931498862602858, + 9.954268781258053, + 9.968374261335512, + 9.945107159880516, + 9.941337219685838, + 9.925694202559647, + 9.958839020906554, + 10.004514454855448, + 9.969555173634566, + 9.956171742132963, + 9.954320706442298, + 9.981537273791776, + 9.970177218627972, + 9.90009209286918, + 9.960427954861999, + 9.91678177501009, + 9.949942648118162, + 9.943176717817549, + 9.97451442091914, + 9.975593454045784, + 9.953307639826747, + 9.96919919156187, + 9.919504669966585, + 9.96401821763528, + 9.941398062513137, + 9.941350593976232, + 9.934323682384203, + 9.93547417637447, + 9.965460168936806, + 9.997987271633573, + 9.964263594498556, + 9.93821827271824, + 9.941630848838617, + 9.913863619588799, + 9.956819958696268, + 9.916532316751479, + 9.919034087961666, + 9.932743424244137, + 9.921774831697597, + 9.900503837993442, + 9.954438475738156, + 9.97557388166788, + 9.963013553781744, + 9.935827144008057, + 9.925861452955424, + 9.934971627456695, + 9.965014626481409, + 9.977480840988745, + 9.932615141106508, + 9.950237935481743, + 9.985882473268317, + 9.940095116081253, + 9.934063567280464, + 9.991829967750252, + 9.988513307431575, + 9.944465266508885, + 9.958177789635686, + 9.990472245661923, + 9.960405469799746, + 9.932412569639952, + 9.912394746768992, + 9.965406723871666, + 9.94608690812232, + 9.985614497802965, + 9.93107019673212, + 9.935550549330179, + 9.954222712828981, + 9.957670298208294, + 9.96447399171493, + 9.937734826319431, + 9.932409603754804, + 9.919105249425677, + 9.96507576184484, + 9.989080852467547, + 9.902491936576395, + 9.908872021107133, + 9.912485478435798, + 9.916012146782316, + 9.91035352674862, + 9.961726719075036, + 9.960355096663788, + 9.963254130565353, + 9.915929377638058, + 9.910956711915144, + 9.94769608608482, + 9.947740632529614, + 9.941914387567135, + 9.91982161561239, + 9.935008287450414, + 9.957336797808436, + 9.934953602017845, + 9.959163269872418, + 9.996171842135107, + 9.967821501562664, + 9.96980585905806, + 9.940669069123237, + 9.927275583918735, + 9.955892123962242, + 9.963752567774508, + 9.956136208047347, + 9.958442317646627, + 9.947712342993222, + 10.006806086752704, + 9.951486147434213, + 9.940723992254814, + 9.946397866874733, + 9.916647116272598, + 9.950464439409016, + 9.982814368553615, + 9.950902479725086, + 9.943082749753513, + 9.891967526088337, + 9.875083580852557, + 9.91117665210634, + 9.924278648157747, + 9.92221641446229, + 9.968068320437823, + 9.938332417230667, + 9.972158012652615, + 9.9921028224809, + 9.943738945185464, + 9.952106006339214, + 9.963453116135025, + 9.990761820491647, + 9.951431945824805, + 9.937320093031465, + 9.990262343960548, + 9.960864403475806, + 9.984597041157059, + 9.953003500799118, + 9.956166473292898, + 9.961766757089414, + 9.934805995550242, + 9.930247461870827, + 9.949600702913683, + 9.949041312420189, + 9.941424272181173, + 9.952385985285234, + 9.951880764719702, + 9.976140868322299, + 9.954611545872194, + 9.946669846803434, + 9.94784283850985, + 9.939492318793093, + 9.960781278539871, + 9.990735243162145, + 9.946787397304691, + 9.972778879557826, + 9.978048005030619, + 9.962815380481281, + 9.962111982867825, + 9.900956806383963, + 9.971150022492209, + 9.963040102654132, + 9.9702020225182, + 9.939874008123432, + 9.911440477622186, + 9.939990487772848, + 9.9401244687504, + 9.934905414900955, + 10.010116504034364, + 9.956398354088083, + 9.953188904973985, + 9.947529152573606, + 9.983788318369088, + 9.945089900101136, + 9.948761952982128, + 9.968301480768611, + 9.975813110323637, + 9.983882154955863, + 9.93936058259246, + 9.940749371260646, + 9.981055774087546, + 9.949624765122865, + 9.969482899070309, + 9.971329027000444, + 9.969336979600657, + 9.955712486169949, + 9.97674518441497, + 9.95643784409814, + 9.941474421033469, + 9.920497303187087, + 9.93578345757241, + 9.944528929043711, + 9.916536871263828, + 9.954172983963264, + 9.966818447100431, + 9.937573171302725, + 9.923221439439716, + 9.901238871605365, + 9.947430627364888, + 9.91443722708024, + 9.953544464865065, + 9.939712699309942, + 9.91156481051907, + 9.902443333749193, + 9.950525755699442, + 9.931354728394785, + 9.936474890002959, + 9.902552522350625, + 9.962735986319748, + 9.900050789761474, + 9.929453265746842, + 9.949555489124833, + 9.960071909130955, + 9.919995474516547, + 9.938432070159163, + 9.9065379308595, + 9.90354257204043, + 9.954617135750594, + 9.977974939156201, + 9.94932042459089, + 9.89926780687318, + 9.887589117911546, + 9.889946476596133, + 9.921495486111098, + 9.948478909895378, + 9.964299792188875, + 9.952345559354688, + 9.943415295626457, + 9.93261358793946, + 9.959925629308675, + 9.96434272526254, + 9.943350089973755, + 9.922361790273236, + 9.95659846928261, + 9.959308651471709, + 9.978268988792763, + 10.013813101457709, + 9.951213775255095, + 9.95844068584426, + 9.946821786199362, + 9.951647384334278, + 9.939951507541355, + 9.958540453381623, + 9.922753695312748, + 9.926737263748176, + 9.937867381814701, + 9.964188592066295, + 9.97524648890011, + 9.957254415044378, + 9.947785000637639, + 9.98604561544055, + 9.96861318282921, + 9.928661046069482, + 9.912445622231946, + 9.938215791715985, + 9.899371596481162, + 9.898162963322891, + 9.959856327603687, + 9.942019351078573, + 9.920627950714165, + 9.913882272762953, + 9.980642168178056, + 9.964063603820168, + 9.983025563354872, + 9.942035637632337, + 9.94989901638238, + 9.958828198685724, + 9.95241168863511, + 9.956192623213255, + 9.963158303675886, + 9.947753094945158, + 9.96895650341297, + 9.99944951480595, + 9.940835234585151, + 9.942065760048584, + 9.954917346909587, + 9.974267025660144, + 9.956621350084387, + 9.98786648658451, + 9.937695239662172, + 9.91871684895311, + 9.945292666149735, + 9.955359912531234, + 9.976103212247377, + 9.982162412382422, + 9.963532709599017, + 9.957513193024141, + 9.934763173309536, + 9.897862578318653, + 9.949585259695848, + 9.932969287535352, + 9.962967437364926, + 9.933470842012245, + 9.924878833082326, + 9.9327485024099, + 9.896223814224053, + 9.927489067721181, + 9.938205081215816, + 9.963733483265408, + 9.942540414026237, + 9.946708979080594, + 9.957878748727746, + 9.935342363731918, + 9.95105387943781, + 9.980485679409641, + 9.979027857365937, + 9.99711283768347, + 9.94316028889242, + 9.950173179178508, + 9.97075525281254, + 9.975377698687375, + 9.959612954714943, + 9.957695630800377, + 9.928856346523565, + 9.964085143648177, + 9.91249627039143, + 9.971257852548984, + 9.94337541148656, + 9.940718457318342, + 9.981081100857985, + 9.939996064725925, + 9.919457180622535, + 9.974219642477502, + 9.994100943005812, + 9.959511496916324, + 9.992515927888466, + 9.976973227135614, + 9.942793572023763, + 9.914405314557287, + 9.914030536315785, + 9.936274060511554, + 9.91260722477977, + 9.981411354722038, + 9.972825975191576, + 9.994850056566593, + 9.988175827708707, + 9.964692378361406, + 9.964246768160155, + 10.000688948201999, + 9.987220542695491, + 9.957573793672463, + 9.937852305909837, + 9.94564501105591, + 9.975839532069873, + 9.974334253365734, + 9.952131299398058, + 9.991480784370497, + 9.968104720284904, + 9.904060919227083, + 9.906582095228973, + 9.941927375638448, + 9.944000728537754, + 9.935068631269262, + 9.939347222240645, + 9.932407805231023, + 9.933620652822885, + 9.925256785620883, + 9.978005554883866, + 9.977542391690434, + 9.969706822025612, + 9.992657853156853, + 9.965843788745639, + 9.970002170917473, + 9.964459071941906, + 9.965863330864577, + 9.919512707733524, + 9.916934668621922, + 9.921050803813005, + 9.944875181914806, + 9.916445560815106, + 9.8730775587417, + 9.937077784686995, + 9.930974952576625, + 9.928768794763394, + 9.955270480698681, + 9.95693892706001, + 9.919497662362504, + 9.967594299415312, + 9.946740596345602, + 9.957174370040612, + 9.97858799987459, + 9.952922729910625, + 9.929052478388883, + 9.93238815001144, + 9.94858044822144, + 9.946846211213543, + 9.933188126045652, + 9.933636248957336, + 9.943943665445316, + 9.960191195596309, + 9.967057519730758, + 9.96160879436665, + 9.972620457871264, + 9.957601239427097, + 9.981519743680385, + 9.966396206889176, + 9.95576828687311, + 9.953265163823696, + 9.944778326011152, + 9.952776069158114, + 9.962130268740317, + 9.938037844846392, + 9.95797990555959, + 9.928456766994483, + 9.937217218625515, + 9.981948611649896, + 9.960829339266962, + 10.01182152596815, + 9.967116100397961, + 9.957437125262052, + 9.99585924335684, + 9.993933144251322, + 9.992590234219392, + 9.977982841890322, + 9.94392521165325, + 9.940552133316732, + 9.937710639928063, + 9.931794106932337, + 9.949342984982088, + 9.913978209504881, + 9.904405822148753, + 9.93153152847872, + 9.966731647820827, + 9.978252089529803, + 9.994922599005987, + 9.980463618446327, + 9.967276217487765, + 9.990811245607865, + 9.968219172586627, + 9.996509510414262, + 9.924025980007501, + 9.940487933271696, + 9.946350366938528, + 9.91841213757499, + 9.951025607653328, + 9.940199176417801, + 9.97316368794563, + 9.988817040590785, + 9.931822897275257, + 9.949520260854355, + 9.964608417355597, + 9.95344216148098, + 9.959068601738608, + 9.964322089224671, + 10.010354314657635, + 9.963842059199033, + 9.959951760469222, + 9.963409051439664, + 9.948253159117316, + 9.965855970719534, + 9.932335437981914, + 9.928663788116486, + 9.922887952769864, + 9.946137153932721, + 9.960709037552325, + 9.955321157727749, + 9.947108117167549, + 9.95555594679623, + 9.923471284637706, + 9.895380809343903, + 9.919789066641838, + 9.923118603233918, + 9.970785512182117, + 9.987724363172672, + 9.937939094629483, + 9.97612042464364, + 9.989312427461444, + 9.989560676086116, + 9.976865477246472, + 9.9684646886404, + 9.97888835274472, + 9.985501366230043, + 9.982772226073902, + 9.94465950407593, + 9.92352834542734, + 9.898584428780456, + 9.94481581023576, + 9.958505325430911, + 9.988697786721497, + 9.947931061398497, + 9.943832308558802, + 9.993827603774522, + 9.976245925872531, + 9.970578640150805, + 9.963830242990303, + 9.954491279430869, + 9.943386170850964, + 9.909681994008286, + 9.924581160482486, + 9.935619143739304, + 9.942948060446673, + 9.940505968383249, + 9.9398834016867, + 9.943539338572764, + 9.930019051598578, + 9.954111959257185, + 9.942872184934464, + 9.947142573560061, + 9.983836623470003, + 9.931004720411257, + 9.945210461779833, + 9.943651610419469, + 9.955094883126087, + 9.972219721010871, + 9.957651659723116, + 9.960776313580668, + 9.93240705969099, + 9.940040440926781, + 9.975424391012501, + 9.960816609776678, + 9.993886293116434, + 10.001153904267072, + 9.96790085129982, + 9.912026068816088, + 9.91211276166107, + 9.93368559287756, + 9.930480323482191, + 9.960499692928524, + 9.93519797377613, + 9.952551083787252, + 9.97965260927605, + 9.952189619867136, + 9.955041331647383, + 9.928245360138181, + 9.915857287839847, + 9.89303470206219, + 9.942015777383586, + 9.936253970363564, + 9.952339554946182, + 9.938864979664922, + 9.961038819821795, + 9.950148557095382, + 9.944219134034697, + 9.929557796441026, + 9.924643871787666, + 9.934128976263452, + 9.927186850960682, + 9.939518537323664, + 9.919614738168676, + 9.953976118312973, + 10.000206526384476, + 9.957735416612131, + 9.933606769348946, + 9.946802528137642, + 9.95042687690884, + 9.96148067315359, + 9.916152065754227, + 9.916154537916933, + 9.908929457228886, + 9.925208723482017, + 9.92543496419477, + 9.957729830056763, + 9.942438947755342, + 9.90432680633939, + 9.9523446667473, + 9.9616644107201, + 9.960160190197556, + 9.913884638337409, + 9.970399929960656, + 9.978246330545337, + 9.94766813102188, + 9.939544905871053, + 9.969838991594957, + 9.980044821672097, + 9.974019082916719, + 9.936072189506623, + 9.99561897577677, + 9.99182280709452, + 9.943866924920298, + 9.940122915892916, + 9.927886704839247, + 9.9577492485222, + 9.947274934535033, + 9.95295034707335, + 9.935401303971013, + 9.907710152371646, + 9.912069520553345, + 9.94966227556457, + 9.95290417485648, + 9.971413028616016, + 9.945068927629176, + 9.936490736800788, + 9.939597418401927, + 9.93986079086916, + 9.940461850503642, + 9.92184478038285, + 9.90934547731056, + 9.921438987901661, + 9.883739114327625, + 9.915471348486799, + 9.934174706429452, + 9.923452510549401, + 9.998579749858136, + 9.96072704690932, + 9.947438138383848, + 9.94230867009087, + 9.925839179387802, + 9.94177148380231, + 9.946402408507533, + 9.968630941147484, + 9.947264345697484, + 9.961281425671483, + 9.983761638535025, + 9.963291065639256, + 9.941787143362205, + 9.944284889718695, + 9.9073448450894, + 9.91768894801553, + 9.948463956431613, + 9.940297840032772, + 9.943859315055375, + 9.94956755001671, + 9.962496481101287, + 9.930429099108837, + 9.926570030777937, + 9.940961431009326, + 9.951713597733072, + 9.933023106083976, + 9.95023543725489, + 9.873900763657408, + 9.903564638351483, + 9.902169421391074, + 9.899861290136304, + 9.920609316867587, + 9.952143959275034, + 9.941310742020262, + 9.912067528295399, + 9.931159859588398, + 9.964640853431002, + 9.915243942134495, + 9.96161168572697, + 9.978562623847452, + 9.956588665819588, + 9.943832226421572, + 9.955003569766834, + 9.921786903198191, + 9.933874101316682, + 9.96503114582377, + 9.924019381908641, + 9.905489151354667, + 9.915442838599033, + 9.939202131765985, + 9.96739342161381, + 9.996449416440582, + 9.954696448615525, + 9.925640088062437, + 9.906476051385935, + 9.92224385789871, + 9.893007753774556, + 9.92269134472378, + 9.920957540025816, + 9.925611497228829, + 9.979313149827155, + 9.95664185805218, + 9.948728958326308, + 9.923464482592989, + 9.974843498898426, + 9.974852218151536, + 9.991969197688691, + 9.945373355884984, + 9.948542422517365, + 9.986565002950618, + 9.979312236445306, + 9.928242031768166, + 9.936094687523672, + 9.974083653453624, + 9.98010257483965, + 9.961797416451205, + 9.900258683631144, + 9.925182701408966, + 9.945646031510051, + 9.902487215620972, + 9.933811123583158, + 9.968894854120245, + 9.963585785704424, + 9.942471439948761, + 9.935760071510272, + 9.935864421156369, + 9.97816009060147, + 9.966103875713463, + 9.979845246616021, + 9.968336201094111, + 9.944337472754201, + 9.92279272318729, + 9.957262192106294, + 9.951324424397184, + 9.91217935633366, + 9.950270532981454, + 9.913823666106103, + 9.88866941455101, + 9.939479446330061, + 9.938676021946565, + 9.944792027583778, + 9.958015183044898, + 9.925660601704406, + 9.995291197231442, + 9.947332189290996, + 9.979666337596317, + 9.952845167281861, + 9.931656165405869, + 9.898123840281, + 9.933141148841244, + 9.970948279340494, + 9.994683195615456, + 9.954698610108881, + 9.966580057230264, + 9.957758888490519, + 9.971071517197787, + 9.929322832571572, + 9.949996142770113, + 9.911204598537461, + 9.93936782141283, + 9.95847977911053, + 9.932814187582519, + 9.958474955819941, + 9.954851706214326, + 9.924604712169044, + 9.918564684955742, + 9.923217374878282, + 9.93225015673727, + 9.950617158899115, + 9.949190997451767, + 9.963749909841725, + 9.934915675237466, + 9.95398990534822, + 9.949671415540532, + 9.96546710534431, + 9.954014877631327, + 9.9614858430794, + 9.941324843758053, + 9.932630664422726, + 9.961916830351711, + 9.930440214699837, + 9.96789900178343, + 9.955608698091714, + 9.961979786276192, + 9.977303612200611, + 9.925424864204583, + 9.937636999479421, + 9.9600232004007, + 9.953362869309156, + 9.962978856706936, + 9.953471064708076, + 9.935694043363842, + 9.938909562278898, + 9.920044885617619, + 9.94548013884822, + 9.941187847133218, + 9.963851816165505, + 9.977298006293639, + 9.951317188706355, + 9.936553426974426, + 9.942009913543522, + 9.945079476302258, + 9.901529170819577, + 9.917474172032156, + 9.945901580826751, + 9.92276130238324, + 9.927577597367522, + 9.93078813784358, + 9.96758056713478, + 9.951464770981934, + 9.93550213575486, + 9.926012840743477, + 9.930005929350008, + 9.931237234364312, + 9.912324965163524, + 9.912690881773011, + 9.95174249047804, + 9.999403182845255, + 9.999794192792377, + 10.008485013238095, + 9.956193174869146, + 9.976756247424557, + 9.974675817118069, + 9.937395589495418, + 9.912861657851755, + 9.955464322920838, + 9.963231046606701, + 9.924515164031641, + 9.912284425510943, + 9.92440683269753, + 9.903192718480952, + 9.937630240177572, + 9.944011466788782, + 9.944264039835176, + 9.914754445044304, + 9.911973139661848, + 9.904825565856111, + 9.928797013296728, + 9.910879063192352, + 9.916690552531396, + 9.96542685667972, + 9.974743957628121, + 9.974530328085333, + 9.941956847344324, + 9.973479474952176, + 9.999966122692996, + 9.983286265106834, + 9.933522864916268, + 9.935650353753761, + 9.964954560253288, + 9.953073761762791, + 9.94280379877601, + 9.933813290310056, + 9.930889390903198, + 9.903370519536685, + 9.905669530029304, + 9.93292740721981, + 9.937193979792276, + 9.927895430135438, + 9.951056644257438, + 9.932310270506607, + 9.956126684025964, + 9.931129321172305, + 9.964068602368737, + 9.936276851368023, + 9.934448422020091, + 9.979306080952497, + 9.961449811838493, + 9.953191950386852, + 9.961157036628748, + 9.947796423126668, + 9.951159416895301, + 9.94486706181105, + 9.967457402551236, + 9.962438178251551, + 9.947581631827374, + 9.977546567939266, + 9.95588862487231, + 9.976015982289422, + 9.949047289581914, + 9.93607287777259, + 9.948292057910024, + 9.968845369402386, + 9.98073264278775, + 9.985847309551698, + 9.983360237065131, + 9.92372077256905, + 9.93103352264536, + 9.92619592299214, + 9.953198574090043, + 9.907090846333897, + 9.945982317507177, + 9.95695522482656, + 9.931851895966004, + 9.946331350029121, + 9.94490673338251, + 9.94948649990674, + 9.945559654137329, + 10.000463453333566, + 9.996517823853335, + 9.957536570563532, + 9.935988580984723, + 9.936995530228446, + 9.907821950895796, + 9.956480774809242, + 9.95183937348972, + 9.957757653464318, + 9.946061762879419, + 9.944589151307, + 9.994631036908979, + 9.989506798141612, + 9.969708218864842, + 9.969972986567745, + 9.988971977352028, + 9.98398443141154, + 9.979218195606677, + 9.998731693630834, + 10.000826602596465, + 9.96171977279752, + 9.952287486762529, + 9.925537306333842, + 9.946707454396844, + 9.952873046166934, + 9.943122895972815, + 9.932953001521426, + 9.931351043410269, + 9.96094052749568, + 10.008327304443029, + 9.980671515008247, + 9.917801488781514, + 9.918398848068527, + 9.91566372332396, + 9.931085603214262, + 9.954222391518657, + 9.93785020363848, + 9.934584569861345, + 9.952943853298308, + 9.9748594162943, + 9.929142996172915, + 9.928387350785908, + 9.953729634551083, + 9.944578384805917, + 9.940247222122501, + 9.919131874428729, + 9.947799638514011, + 9.955923719312933, + 9.908747814224585, + 9.956708733686517, + 9.966798157585249, + 9.966206795321886, + 9.936290412750571, + 9.970234209000788, + 9.984278625751069, + 9.995155374853871, + 9.967021191533277, + 9.958565530645116, + 9.952890802231769, + 9.959163830250736, + 9.930474907131114, + 9.972317516407667, + 9.957680758050273, + 9.949779324983002, + 9.95906363244299, + 9.951130906824357, + 9.950327783746568, + 9.921440655204599, + 9.963969516223893, + 9.968279308940822, + 10.000445315195027, + 9.971431338121421, + 9.974635683736892, + 9.97675689003193, + 10.00716595021924, + 9.964849434452457, + 9.94112876434054, + 9.985706430425202, + 9.970361410800406, + 9.966086501871828, + 9.964268272668821, + 9.951554418311693, + 9.987756343723953, + 9.99685434214185, + 9.98211446722256, + 9.911535542923897, + 9.933849165873173, + 9.891628656957797, + 9.899079284067072, + 9.917328393462917, + 9.923359536900643, + 9.981497171225348, + 9.933707880260938, + 9.950100422020565, + 9.970215564487955, + 9.967432299096533, + 9.939655547758925, + 9.962255332463974, + 9.958712813995563, + 9.990491985124917, + 9.974449297131168, + 9.91814877802199, + 9.937176647413457, + 9.968452309000844, + 9.956698655059826, + 9.948625030199729, + 9.899241682894727, + 9.912522484915172, + 9.94685690091981, + 9.948168511144107, + 9.97960213609267, + 9.92749654354401, + 9.929930607552949, + 9.958164629131229, + 9.92403527859789, + 9.910344529176081, + 9.946842506934304, + 9.953553974648823, + 9.948806366954042, + 9.963187151093214, + 9.9466321239682, + 9.98039891542095, + 9.94497999513198, + 9.958407439159695, + 9.94136417405958, + 9.922438652637634, + 9.901656552447353, + 9.921860877933707, + 9.919742063250371, + 9.950856657756074, + 9.959886880234597, + 9.97345890456819, + 9.934831755286519, + 9.953352284092626, + 9.963666576764634, + 9.979092205334856, + 9.950588927248935, + 9.943774508742564, + 9.895453967052948, + 9.936170684971772, + 9.919132742189824, + 9.94446508374692, + 9.92950345473921, + 9.934093407131687, + 9.95582043624751, + 9.948376676428351, + 9.949675021966112, + 9.941284315906158, + 9.94269090300468, + 9.941907752788994, + 9.949280820398384, + 9.964671656237895, + 9.940403275738964, + 9.913327792842496, + 9.93224577276118, + 9.958261337980012, + 9.941601685622436, + 9.96564789182801, + 9.988802714260569, + 9.99127940522213, + 9.982884777191778, + 9.967373610102284, + 9.93692270104154, + 9.870951872727701, + 9.931051534047867, + 9.955247190030015, + 9.980005952392629, + 9.971106250359226, + 9.954719468648209, + 9.943407150010946, + 9.934579541562586, + 9.958610903097034, + 9.931505387407169, + 9.921722499499435, + 9.908237256451214, + 9.93737995836693, + 9.945925373239106, + 9.937815484389143, + 9.93347046704045, + 9.946801582233892, + 9.95450528785785, + 9.919884218085416, + 9.945006550391048, + 9.932157437350968, + 9.937922577114628, + 9.940667111486578, + 9.900670073031893, + 9.924461305579978, + 9.952967089907228, + 9.947046866190933, + 9.947633323761096, + 9.94900133507427, + 9.953688849206365, + 9.950514864879278, + 9.969054653464596, + 9.957053993419438, + 9.936457982930976, + 9.943794519827458, + 9.910716214651, + 9.95853829809925, + 9.911188997557385, + 9.927161853888585, + 9.932845131569538, + 9.962880952857951, + 9.963035979113606, + 9.955264255002552, + 9.952297557996985, + 9.940746487593609, + 9.956701277198862, + 9.910137357085915, + 9.949419276021311, + 9.909807020881008, + 9.92600149736827, + 9.949108158903192, + 9.974808238564671, + 9.934933265153587, + 9.924490149286672, + 9.909767191185535, + 9.975224186918425, + 9.962156935795667, + 9.929885591792893, + 9.961539404637241, + 9.949616794483918, + 9.964754301332468, + 9.972707024180258, + 9.923670967090576, + 9.904399881397781, + 9.950191031122607, + 9.97077776623266, + 9.979435258738413, + 9.98756893782027, + 9.9806376376041, + 9.958221545092101, + 9.950862232738528, + 9.94588475054544, + 9.963116248432117, + 9.951595131109398, + 9.92825509571373, + 9.944884617516093, + 9.928342074703373, + 9.961772215958367, + 9.971290467694404, + 9.951465803403742, + 9.934246406807697, + 9.962477151926475, + 9.93907127097066, + 9.915033274660885, + 9.927822665908584, + 9.951532251606125, + 9.957069784388139, + 9.944706325381587, + 9.92975283431889, + 9.916879374753165, + 9.916220105736729, + 9.940279737632293, + 9.971704391552441, + 9.990202838003299, + 9.938150688642535, + 9.929905829015937, + 9.97010654890114, + 9.977627074678603, + 9.989040745918452, + 9.967074498623791, + 10.000501883557996, + 9.972812172807899, + 9.949186778880556, + 9.944378641601814, + 9.941136457856398, + 9.95677195160954, + 9.950258305896694, + 9.96525931986813, + 9.966854744020262, + 9.96450048973677, + 9.95162258482723, + 9.932430606286722, + 9.96796269963072, + 9.976959204155563, + 9.972927934234018, + 9.962603718307168, + 9.97090020442229, + 9.908174278700296, + 9.951919533365103, + 9.890609458161789, + 9.925809582693258, + 9.945305677491984, + 9.954490798784624, + 9.986046635142415, + 9.961201281764568, + 9.938258065124685, + 9.963709583115616, + 9.988339892324571, + 10.000827008854444, + 9.953502673068678, + 9.95573726556523, + 9.901451014164278, + 9.905036487618457, + 9.962077091882716, + 9.948248596191725, + 9.962518524815225, + 9.960790754502279, + 9.939663154837906, + 9.934169765801876, + 9.950193556942413, + 9.938187115907692, + 9.94914208611377, + 9.949046743118181, + 9.943052617454741, + 9.944892852591686, + 9.931308785616867, + 9.941201210228456, + 9.937357272496424, + 9.985701311263346, + 9.955886895184408, + 9.9700455915457, + 9.949127672082144, + 9.95455358009459, + 9.932651854829139, + 9.935640459957424, + 9.938321432898697, + 9.960937826218856, + 9.935257649938613, + 9.955401249325774, + 9.94244095986479, + 9.953743625111034, + 9.934527859524211, + 9.957235714710027, + 9.950122093866165, + 9.996137911924933, + 9.911183757511424, + 9.92047131602446, + 9.936622869708183, + 9.919528021065366, + 9.928050279861454, + 9.907065554574325, + 9.967907189636604, + 9.98504928054149, + 9.975074736827722, + 9.942435241020474, + 9.964294770883846, + 9.943073417263333, + 9.908020168064134, + 9.962295768652428, + 9.98214373942103, + 9.959842060419911, + 9.963743934637447, + 9.973863982453922, + 9.948605037695966, + 9.986285142208118, + 9.95211592194466, + 9.937499826345585, + 9.927617494286476, + 9.956055831300992, + 9.925815497371975, + 9.923416701510082, + 9.935669864986043, + 9.993092773408149, + 9.989003019425661, + 9.956189128537863, + 9.944493884913724, + 9.936911969594984, + 9.934837350868438, + 9.918651947218146, + 9.894068878107, + 9.902118971917897, + 9.944376381196328, + 9.95425252526045, + 9.95515496075748, + 9.947042774750063, + 9.96408517672112, + 9.97728797716213, + 9.933897607360066, + 9.907683143923094, + 9.913275038350198, + 9.956374632689696, + 9.972488750488417, + 10.00835901340376, + 9.978799882724369, + 9.945566298970792, + 9.94887787946401, + 9.921855592889557, + 9.946936769022875, + 9.96027813695313, + 9.984574560252303, + 9.981556252639196, + 9.93168687697562, + 9.959107769080427, + 9.943208976593493, + 9.983130934512674, + 9.991327847655665, + 9.926904117524682, + 9.929615806216919, + 9.930091656250505, + 9.954743459521925, + 9.917618641569698, + 9.982853140152166, + 9.999046923018929, + 9.981502205853031, + 9.959711568888665, + 9.969743771488533, + 9.940309265599785, + 9.940352116603545, + 9.935847404187104, + 9.944566076444909, + 9.962694262654601, + 9.948473647184972, + 9.94057678076404, + 9.93043849584482, + 9.938359616159886, + 9.949825566726464, + 9.934161268480805, + 9.926039608303695, + 9.937573765954026, + 9.979293287364685, + 9.983113692725428, + 10.008238291975065, + 9.958208836613032, + 9.971222215892727, + 9.947476349761907, + 9.975715180458872, + 9.967967592704632, + 9.957069981139803, + 9.924078432657469, + 9.944428830749207, + 9.916503103272499, + 9.968804173065879, + 10.002400721112659, + 9.961470952223802, + 9.961634397746934, + 9.968682047836195, + 9.992442529760236, + 10.018137083445524, + 10.002617558851295, + 9.964922914133446, + 9.958049137402451, + 9.974831938588848, + 9.94092849999638, + 9.941308231122793, + 9.988347428227685, + 9.946564122574069, + 9.9382954744194, + 9.924498995037617, + 9.948444640903475, + 9.935417913143887, + 9.94823786792474, + 9.93034248207153, + 9.952609709523957, + 9.969957282777834, + 9.955134967331187, + 9.9196365377123, + 9.89360063519766, + 9.921159327594719, + 9.950870665894936, + 9.953557360035909, + 9.967862087997522, + 9.94993065129397, + 9.955297689302384, + 9.93315168048656, + 9.940077064728369, + 9.96766663490206, + 9.977358181009086, + 9.949878965015678, + 9.968425828931727, + 9.984595687466047, + 9.954097255363537, + 9.957411182040385, + 9.954971249151871, + 9.961711957966479, + 9.97725698112592, + 9.956582979345987, + 9.92705371211335, + 9.957001005955984, + 9.942791869520411, + 9.935553442191631, + 9.909980342987762, + 9.959137044825216, + 9.977562219767506, + 9.932200496981405, + 9.939683333905686, + 9.93317344470058, + 9.9776450601772, + 9.981273446056372, + 9.93890459010877, + 9.957249606529993, + 9.946282877365963, + 9.985289511401874, + 9.971423083389606, + 9.973798889303685, + 9.962067970147338, + 9.957984869761598, + 9.949409858938058, + 9.95257850493505, + 9.942137170769156, + 9.969611201538498, + 9.966077079910729, + 9.90906303397579, + 9.91895050854157, + 9.9090117324731, + 9.912516548482307, + 9.922044116810394, + 9.939452687504417, + 9.930504534734707, + 9.909373794519887, + 9.907480535818259, + 9.931259844131114, + 9.968576399514397, + 9.919605256962205, + 9.905511453739724, + 9.91528133458207, + 9.964955991553412, + 9.948930026111793, + 9.98797572988279, + 9.940096417143366, + 9.951047881516564, + 9.937971475475894, + 9.913276046811278, + 9.947981932881438, + 9.931185663247481, + 9.943160676387304, + 9.981105472033613, + 9.971846041733599, + 9.924402182844974, + 9.952505542472776, + 9.973292291428162, + 9.965664011791407, + 9.970645053709266, + 9.954516276498575, + 9.914838641514148, + 9.909629743057183, + 9.91710409483631, + 9.904976408437722, + 9.929080008640748, + 9.95099058631109, + 9.941167442842701, + 9.920704724764425, + 9.937842369220697, + 9.931377324876072, + 9.936482683669096, + 9.935909512872488, + 9.962708306279412, + 9.947296869102683, + 9.941123436795666, + 9.92208545466528, + 9.937670393477498, + 9.986859368060918, + 9.947254797021792, + 9.953041582236636, + 9.951609154686302, + 9.952344984331148, + 9.976282995657227, + 9.964373935834736, + 9.949968754728998, + 9.972587089037285, + 9.971804833212357, + 9.945676052605162, + 9.954812971224197, + 9.940213427994417, + 9.936103616492423, + 9.979289811538889, + 9.977754261414649, + 9.997654336176343, + 9.93512847591714, + 9.953581038941753, + 9.974609275161189, + 9.943914516541177, + 10.000746954045368, + 9.99358349390995, + 9.961618941900989, + 9.931366331137395, + 9.954621905679426, + 9.970441776995036, + 9.917296781014564, + 9.926726294199721, + 9.95563979786791, + 9.970802623008796, + 9.955979429252807, + 9.90595548003027, + 9.90209418245815, + 9.911069138523812, + 9.931144133547917, + 9.945803659868035, + 9.927356005236685, + 9.90861780711408, + 9.962559610124849, + 9.936740101806532, + 9.95573259419426, + 9.916815056656944, + 9.921867657925322, + 9.891200098055858, + 9.89401401456114, + 9.906265067882954, + 9.903624010537985, + 9.922710598340686, + 9.925904903117686, + 9.917747479009861, + 9.928714438204583, + 9.908697925888905, + 9.959686952807026, + 9.941573491573424, + 9.93802065761271, + 9.940789890168329, + 9.925615208871607, + 9.938409742604641, + 9.947876902705495, + 9.969140688602668, + 9.968048142318777, + 9.961876317454472, + 9.958939473299568, + 9.95996624284517, + 9.944902049956756, + 9.966576123126965, + 9.980660913523119, + 9.934940266056623, + 9.920479861768703, + 9.946018013788718, + 9.916748151406296, + 9.94182377983282, + 9.927985856754592, + 9.958918010928537, + 9.94699187883815, + 9.947761804114574, + 9.967507211378466, + 9.94965272569558, + 10.001196953540656, + 9.949102769488704, + 9.943639522992118, + 9.910953914837178, + 9.931206345989477, + 9.956743943855047, + 9.991360772247429, + 9.939496251057683, + 9.980707245746352, + 9.958086455352845, + 9.969348121630304, + 9.95338997477472, + 9.964161853877703, + 9.941826051652535, + 9.944201537513925, + 9.96065072520341, + 9.949654972238024, + 9.978281899828396, + 9.936599386131041, + 9.929270508064644, + 9.91310487558911, + 9.94318922499172, + 9.973319670591815, + 9.965084528587948, + 9.958669518585248, + 9.997896114489604, + 9.944681458089825, + 9.956722961851076, + 9.946768843007865, + 9.956500804022008, + 9.990293225982125, + 9.965600268276454, + 9.949785960563524, + 9.979007253949815, + 9.99853454694612, + 9.982999135362517, + 9.939638776447863, + 9.929456603721698, + 9.921923634300086, + 9.942194757832102, + 9.953306418139846, + 9.973976230886626, + 9.960464317217363, + 9.939577713617597, + 9.977476758480934, + 9.939409990216788, + 9.953637387214068, + 9.928894780468628, + 9.970875271267937, + 9.943317713803351, + 9.969275279590963, + 9.914192231248082, + 9.961136891691725, + 9.945851169436134, + 9.927811704712425, + 9.929234136933697, + 9.927954877211008, + 9.931268135113541, + 9.918781866148986, + 9.909906223709521, + 9.928265933310588, + 9.87631160798306, + 9.906697765175053, + 9.925340612313388, + 9.917437385639936, + 9.95828956761874, + 9.962331125325795, + 9.989609027393024, + 9.977911776660275, + 9.934730575874344, + 9.939994279034963, + 9.927615333910126, + 9.96750446972247, + 9.968437033659018, + 9.954323629401086, + 9.93617252224718, + 9.960050343653917, + 9.964879905932987, + 9.941546871416268, + 9.945369837015276, + 9.942915153509176, + 9.995130103042014, + 9.997899616514164, + 9.97180508527011, + 9.949963379591841, + 9.937646464044716, + 9.924071586629132, + 9.962274439263682, + 9.952229625152826, + 9.948034768366789, + 9.919521649792493, + 9.958930881383809, + 9.953824418197463, + 9.931787128063778, + 9.930180647979745, + 9.940461082874489, + 9.964811085302664, + 9.96065260677059, + 9.961002902111579, + 9.94799590282333, + 9.933975323121421, + 9.938492292101644, + 9.942440264978437, + 9.972234521660267, + 9.99507196636204, + 9.975225668234552, + 9.961601270831919, + 9.948900455271994, + 9.89308739699078, + 9.957949739916954, + 9.94158598209467, + 10.01608386096839, + 9.954429005306032, + 9.946450730248165, + 9.927789128928254, + 9.922602666626272, + 9.97663391162057, + 9.947399076658666, + 9.94842478212677, + 9.948321649204384, + 9.960828593114947, + 9.965370393205982, + 9.931438474271536, + 9.972874293430324, + 9.970979985638996, + 9.947555181426006, + 9.927856116668057, + 9.970649731338332, + 9.938964435969005, + 9.92063251941483, + 9.942822065302801, + 9.928452898060366, + 9.917576130983145, + 9.926873154609186, + 9.962241698393694, + 9.954253587413309, + 9.911029320202323, + 9.93373900911995, + 9.979770468297898, + 9.910343071818511, + 9.927291323054451, + 9.926250915282218, + 9.957076122724539, + 9.977587344382632, + 9.97825416260959, + 9.984691788146362, + 9.9571434233503, + 9.938749007487013, + 9.934984706523089, + 9.983623019172349, + 9.939913008831262, + 9.918162893438234, + 9.950069915547648, + 10.016481200195669, + 10.009558812320508, + 10.024681595134263, + 9.990746379140933, + 9.937363402541326, + 9.9590482735411, + 9.993087186472039, + 9.968322003205468, + 9.978506733146633, + 9.971335292860276, + 9.917574716623292, + 9.943362013752857, + 9.969577293459789, + 9.966201136248184, + 10.021068621102918, + 9.979697952281466, + 9.963480593743979, + 9.921604862863516, + 9.97062487108695, + 9.955476370809592, + 9.933641825503868, + 9.92758198841282, + 9.938942597337324, + 9.912701642805978, + 9.955487786885891, + 9.959086943191231, + 9.937486527200754, + 9.950361255937613, + 9.967538728594372, + 9.946174152862142, + 9.943661152963367, + 9.967497251228309, + 9.972611163790594, + 9.946695128330354, + 9.961931264178997, + 9.956517823698638, + 9.976110127055444, + 9.984003743241557, + 9.958352400815345, + 9.986293706553393, + 9.945249026441532, + 9.944891551297381, + 9.92170226453205, + 9.927141138382014, + 9.971135188205063, + 9.919735982469094, + 9.934275179141622, + 9.956230672145868, + 9.931320730246828, + 9.931690410264158, + 9.976127144140136, + 9.979889476220892, + 9.974646208433779, + 9.951092986089929, + 9.954714210636835, + 9.963525998341419, + 9.970109428392668, + 9.962127938796188, + 9.925345664238751, + 9.936845285109307, + 9.944107042204209, + 9.946423816545595, + 9.91521179399111, + 9.928059372971507, + 9.917863571372369, + 9.918439399989069, + 9.967450838474534, + 9.996454307683276, + 9.966002284720695, + 10.001812494278768, + 10.006934761426852, + 9.950709988754507, + 9.944360527626337, + 9.949807827727053, + 9.945228232317312, + 9.967544171010642, + 9.916859144169516, + 9.934375824478844, + 9.926673892092948, + 9.965484203949849, + 9.955008236453338, + 9.96648448292567, + 9.952482700883577, + 9.959497325969277, + 9.9699677839047, + 9.952563334472975, + 9.978028376552546, + 9.916893682526617, + 9.918065096047206, + 9.905101566031517, + 9.972523958091058, + 9.967200880880029, + 9.951820322827691, + 9.96446188528207, + 9.97046215598869, + 9.954407492384506, + 9.98006142799111, + 9.98232544697641, + 9.972169976497819, + 9.9142920200885, + 9.975445709817528, + 9.970001316755713, + 9.980289958518902, + 9.969972416864275, + 9.9387586873039, + 9.969094667270523, + 9.953364792587232, + 9.924436286844115, + 9.87391697643617, + 9.904705074014709, + 9.964020267172303, + 9.95494291180749, + 9.963218309160185, + 9.958947164759852, + 9.975991429799942, + 9.977321935172014, + 9.980022564412065, + 9.94277557350453, + 9.954810025535823, + 9.948853798833028, + 9.986809724628054, + 9.972075148619377, + 9.957044033066692, + 9.936836405450594, + 9.925507423255851, + 9.943457650595585, + 9.950228862907782, + 9.985327704224353, + 9.988534528729959, + 9.96505066548419, + 9.960264624461116, + 9.95622874424155, + 9.948494195372481, + 9.930546330090541, + 9.949554818121873, + 9.953331341992453, + 9.982115831076978, + 9.996764239596354, + 9.915895832453392, + 9.958967222450777, + 9.946925906080093, + 9.940445500587153, + 9.91786157568381, + 9.942611805055341, + 9.952861782345936, + 9.978492491443836, + 9.952330151668942, + 9.974537934457121, + 9.991947024760854, + 9.97014836046392, + 9.964417326489217, + 9.97757254432219, + 9.934738073110928, + 9.969089219073552, + 9.930379357048064, + 9.953476994288721, + 9.946557214298416, + 9.983088324575814, + 9.982450847805609, + 9.933299207471526, + 9.947708056385872, + 9.952335115983193, + 9.919698118334102, + 9.962815588959032, + 9.929588945861495, + 9.92026293615634, + 9.943042540936007, + 9.987933207467645, + 9.958203117514103, + 9.936997117133327, + 9.90770846668682, + 9.940080461117061, + 9.928389281720554, + 9.94544983466293, + 9.943504271046576, + 9.941468618747471, + 9.938704385871198, + 9.95871772356963, + 9.97536985485524, + 9.964485530752142, + 9.925829589281125, + 9.9287130610943, + 9.924546688308093, + 9.903506445244938, + 9.941005219272213, + 9.951278387316371, + 9.907130609390977, + 9.91158487404636, + 9.907111616816342, + 9.946433589635529, + 9.95212358560042, + 9.946436433547493, + 9.933372852550805, + 9.930739634846189, + 9.936375911085522, + 9.941098071138107, + 9.958513010806582, + 9.918664398618796, + 9.94769994767044, + 9.989924063566834, + 9.979659906650204, + 9.9688054667139, + 9.931506450313352, + 9.976712281314256, + 9.938811381792805, + 9.955786011233293, + 9.918114224042723, + 9.902647981589643, + 9.949486250539021, + 9.951004609577748, + 9.951015323835685, + 9.95365716942672, + 9.94543243133184, + 9.902316325580193, + 9.940316472208341, + 9.930981630141115, + 9.953319295258686, + 9.955315612446594, + 9.894064523813572, + 9.909350196100855, + 9.909494126721857, + 9.912795598263015, + 9.917379938209463, + 9.932788805045499, + 9.91752857421363, + 9.940374333072006, + 9.963857517575216, + 9.94640851610471, + 9.95452729798187, + 9.981815987255818, + 9.949825704252437, + 9.962232485852798, + 9.95854194272891, + 9.891017562288228, + 9.923999456336794, + 9.926787850010575, + 9.931019474228687, + 9.970893436005667, + 9.962627114428516, + 9.932339790215725, + 9.927242206415075, + 9.941996978035055, + 9.909656752641345, + 9.943124778481767, + 9.952117314024935, + 9.935364681916557, + 9.961810163858521, + 9.951881123423249, + 9.955358703164832, + 9.939237148503908, + 9.902079548409564, + 9.928395973304834, + 9.939417174744214, + 9.967319077560058, + 9.930571678451747, + 9.948333249951755, + 9.946079824968196, + 9.940229877507077, + 9.96556247634493, + 9.97774788726181, + 9.954357639661604, + 9.958498699921364, + 9.922168693876422, + 9.896539824295735, + 9.898465983254543, + 9.899754447783444, + 9.97284059489982, + 9.966551744573488, + 9.945409801565999, + 9.961183060137545, + 9.965244078324009, + 9.943220835320627, + 9.955837585464751, + 9.930353626986747, + 9.952388678477346, + 9.9464104024401, + 9.947184084699927, + 9.959842714698144, + 9.94563920914098, + 9.945716127233874, + 9.936108421520606, + 9.93116005169094, + 9.912346338054189, + 9.908175697873814, + 9.89928239256356, + 9.911345391341161, + 9.954711742711199, + 9.978866084054749, + 9.980715909950664, + 9.969345620630088, + 9.95015451576627, + 9.918033036319633, + 9.936572426832795, + 9.948023436431944, + 9.91191326688223, + 9.91166065318685, + 9.878386603014754, + 9.94099249587123, + 9.955979348540222, + 9.945572433938013, + 9.987310250576309, + 9.970873964295064, + 9.94049887146194, + 9.95639252885185, + 9.949482109438987, + 9.91537836288029, + 9.952014958296992, + 9.947973260015308, + 9.932298286678465, + 9.996131969986413, + 9.963030408242929, + 9.957054089290947, + 9.98343460191071, + 9.977641276360204, + 9.95065197276601, + 9.964576006131644, + 9.951857771006429, + 9.919977558627378, + 9.970747760793014, + 9.937892137138101, + 9.946254692182082, + 9.899653723258847, + 9.904337696688671, + 9.934272160454071, + 9.95070640813381, + 9.981251971652476, + 9.941454941986574, + 9.973431284561823, + 9.955763535938145, + 9.930998247467423, + 9.96673768392061, + 9.976180201028052, + 9.959294021370482, + 9.936638590390833, + 9.962482035935434, + 9.953735695521896, + 9.966838941637619, + 9.93055306740962, + 9.957964345190616, + 9.963805354404556, + 9.934308555461186, + 9.97966354627097, + 9.953698292871554, + 9.903877099684243, + 9.897235841941407, + 9.962220329528169, + 9.949567443531668, + 9.945613522790154, + 9.950752814227716, + 9.98959969400884, + 9.932374845830592, + 9.961915892135021, + 9.93003567592565, + 9.962872468230284, + 9.925407342041504, + 9.962078284818277, + 9.983961426221615, + 9.958744199724144, + 9.959280261750493, + 9.954298972885363, + 9.95572281064191, + 9.947343217978801, + 9.958829452594298, + 9.989144814523211, + 9.930845555506297, + 9.912535035970734, + 9.948806829899258, + 9.952503999777859, + 9.959786309969642, + 9.979477776342897, + 9.981386876814446, + 9.949657390609023, + 9.945889050353019, + 9.905042402663106, + 9.933070127632691, + 9.88358297186078, + 9.920773535823873, + 9.91523130531598, + 9.953558387547922, + 9.921777216366628, + 9.946995669021765, + 9.929554282294129, + 9.955969546782514, + 9.974079925051491, + 9.964117743016201, + 9.99341614416185, + 9.983716031451703, + 9.972867337478334, + 9.989487205176038, + 9.989803107660695, + 9.968359975823619, + 9.992677313072667, + 9.99354587811669, + 9.96090001319069, + 9.988003586495255, + 9.986338909194362, + 9.96073999653252, + 9.925259308371519, + 9.939488315463489, + 9.922067970175739, + 9.957565834327195, + 9.968477409832802, + 9.986669493654478, + 9.957731412724145, + 9.918945427715418, + 9.930221473742098, + 9.934552108545535, + 9.98277026232032, + 9.959389324392248, + 9.953091026545682, + 9.937126936560954, + 9.959109897184224, + 9.98639261417432, + 9.986161736184386, + 9.957353814594063, + 9.934615154494434, + 9.930938237223106, + 9.96410400078236, + 9.945244020010517, + 9.934764895609078, + 9.988406275275889, + 9.93275107807641, + 9.9325981436578, + 9.974407415046874, + 9.98236258058087, + 9.970600550217233, + 9.93738484461217, + 9.968811408017961, + 9.928499572364773, + 9.968210638845505, + 9.936245437934952, + 9.944003780448089, + 9.933455489112266, + 9.97554189472665, + 9.965986526476643, + 9.953412717132723, + 9.934196865761475, + 9.963972340672951, + 9.976515449576267, + 9.949385680433608, + 9.932980073293235, + 9.91866322722688, + 9.955108693294273, + 9.961548501669482, + 9.987826147746127, + 9.930385663760015, + 9.946424784115097, + 9.908329926119658, + 9.916515994615215, + 9.900710598160874, + 9.946473899304376, + 9.97520692992772, + 9.939635986289854, + 9.954241682145929, + 9.960623092524484, + 9.936062638999056, + 9.93430124302755, + 9.914115110143948, + 9.964966626187136, + 9.975593680824968, + 9.960970968773227, + 9.905106870836638, + 9.890180905200584, + 9.927337468098871, + 9.919962904812035, + 9.910968352416337, + 9.94438516699804, + 9.98898755439969, + 9.971243123237274, + 9.958839012640691, + 9.935508780102083, + 9.905875365218566, + 9.931336784726957, + 9.929161051333676, + 9.915966991996024, + 9.915744868575326, + 9.94253516959697, + 9.936478998059481, + 9.89525812853158, + 9.948429515462088, + 9.961279066717484, + 9.962587550509802, + 9.976202064244099, + 9.97878676707457, + 9.949652346123974, + 9.954405430699635, + 9.923761315851504, + 9.932911105971144, + 9.939134977554948, + 9.927036372101629, + 9.914590552081892, + 9.929484149659816, + 9.952886249157094, + 9.97790659031227, + 9.980104445355552, + 9.926999684887399, + 9.970993244717274, + 9.97205555345866, + 9.945556437068737, + 9.952210372188409, + 9.933603408626315, + 9.916153196184904, + 9.950477690225304, + 9.971828048245662, + 9.94987558962984, + 9.970740690793036, + 9.96773634450648, + 9.964570422817834, + 9.961859997193105, + 9.901883301793156, + 9.912530180799424, + 9.935956330426592, + 9.974142288774994, + 9.961068672737783, + 9.95821558988274, + 9.961814548343986, + 9.879150758256266, + 9.929582205534793, + 9.911443901780213, + 9.930163156633554, + 9.964658269272132, + 10.023461172227679, + 9.975642822810403, + 9.962886404022882, + 9.952660606911628, + 9.923068911390647, + 9.94620221744662, + 9.942776125482634, + 9.962803610809171, + 9.944300664415422, + 9.943397132272349, + 9.902700807096666, + 9.94589042077237, + 9.916562174294738, + 9.909084997843227, + 9.89510847147565, + 9.903156299093503, + 9.932729896981074, + 9.965499826071929, + 9.97340720860692, + 9.975928918630196, + 9.923211864989344, + 9.908023293977054, + 9.9188150841398, + 9.869438457065485, + 9.922763330377935, + 9.942313294362332, + 9.911920256853657, + 9.88959191981128, + 9.890797446563028, + 9.91956579399621, + 9.939846793043372, + 9.945262021862616, + 9.940944889353556, + 9.93521478229758, + 9.945518269712034, + 9.956801719466482, + 9.959972933159671, + 9.945737881889968, + 9.932306369583653, + 9.906392509728157, + 9.929166359706384, + 9.968210628917971, + 9.939790391257597, + 9.969720072833642, + 9.981298766013351, + 9.970642395373346, + 9.979581602421048, + 9.96475789681905, + 9.971764209711086, + 9.963120591089135, + 9.952243538525645, + 9.94650033354137, + 9.929417025076397, + 9.943694041883607, + 9.947984623294131, + 9.978499857871784, + 9.960406341271371, + 9.98337681453299, + 9.961437130373472, + 9.934766278443506, + 9.946975961844103, + 9.951882552136084, + 9.952203433192862, + 9.950670173648613, + 9.899553678932614, + 9.920000568739324, + 9.945022614576105, + 9.944332168815604, + 9.948402939761705, + 9.950587615583817, + 9.962355012413965, + 9.985787786441017, + 9.996551417024781, + 9.960113093864777, + 9.950645547398679, + 9.96352717690099, + 9.957915868880594, + 9.956394336132563, + 9.957543742606317, + 9.954950289066625, + 9.946847643521382, + 9.953063177470263, + 9.947017789175032, + 9.922410227339752, + 9.958874306768132, + 9.941251086362344, + 9.972100459892083, + 9.958698995869028, + 9.93767811957942, + 9.969288765772509, + 9.917785395824234, + 9.924023049287163, + 9.955687875485598, + 9.92413289527381, + 9.912571216817135, + 9.94368472033582, + 9.951340119014924, + 9.946059313096937, + 9.914380233467922, + 9.960285083118382, + 9.933694457326732, + 9.952149871677275, + 9.949347762707925, + 9.982079074075886, + 9.917326668191459, + 9.905872999374248, + 9.943918683090518, + 9.932605568710056, + 9.961362684269332, + 9.935489742357632, + 9.901172651461236, + 9.906169338131708, + 9.900708277795422, + 9.9632763252479, + 9.933038586029783, + 9.912603054435266, + 9.96895005051215, + 9.949245984626117, + 9.908256496291132, + 9.977641612703025, + 9.949912632190452, + 9.944088933127192, + 9.988576412158414, + 9.968012023972694, + 9.921913839501705, + 9.943142105523068, + 9.918187575143419, + 9.959212392877017, + 9.973152690528748, + 9.975938207878077, + 9.942124406741508, + 9.933680473938313, + 9.973091043194609, + 9.982125003984153, + 9.919298221589871, + 9.954854195975162, + 9.976618375857438, + 9.94929796016038, + 9.955089425573833, + 9.925900376876571, + 9.941312621638502, + 9.930686642103069, + 9.907158356215213, + 9.916692909132358, + 9.932384492376155, + 9.958743253061613, + 9.959782830422919, + 9.947707365130157, + 9.970196204740612, + 9.934829403178792, + 9.959157071709514, + 9.894351496038514, + 9.917477785621102, + 9.88905960754998, + 9.918834991477565, + 9.955997772008214, + 9.962675607383456, + 9.947937495700211, + 9.931467333891916, + 9.917109361058678, + 9.951717067053472, + 9.956879858085237, + 9.920049088737766, + 9.919426231884223, + 9.963585665852705, + 9.961707265337804, + 9.982642317100366, + 9.928620838323397, + 9.91714198059471, + 9.95181937508032, + 9.941738015908163, + 9.955851985435034, + 9.939020291182747, + 9.950230906863922, + 9.957541827092408, + 9.975635851781933, + 9.951975088619092, + 9.983610183647663, + 9.971786086120618, + 9.952242520009724, + 9.94648039574855, + 9.90423208883673, + 9.911062188895981, + 9.982283417317294, + 9.94986837283855, + 9.940238210638636, + 9.947708183174857, + 9.948652483491728, + 9.923085677639067, + 9.909202926681502, + 9.911287484811577, + 9.910593909699845, + 9.904001847866294, + 9.950877766256927, + 9.97819493704169, + 9.963933219582778, + 9.979067306353194, + 9.929778727571826, + 9.94131949370237, + 9.983229679789023, + 9.984901254634803, + 9.99762693331218, + 9.999531318721198, + 9.951928887013406, + 9.93764583151472, + 9.920268356429311, + 9.957610837370334, + 9.931742050181004, + 9.956775677712667, + 9.94964927648074, + 9.958878121093722, + 9.950458176543167, + 9.930852152422501, + 9.933314285032742, + 9.947220852077166, + 9.912983016686006, + 9.878915066487068, + 9.923850970164636, + 9.964530789567918, + 9.893993469201074, + 9.924443160454773, + 9.919566226850115, + 9.933291885414562, + 9.958492794056346, + 9.942043876902376, + 9.911858808823313, + 9.861252676621469, + 9.8239794725381, + 9.860304377064509, + 9.885653391068068, + 9.893309209980412, + 9.911104949644429, + 9.882242381959234, + 9.843265627943081, + 9.831078446309482, + 9.84612987819225, + 9.864491027527333, + 9.879372728272937, + 9.859309610195234, + 9.839792531367438, + 9.859704233512897, + 9.857565328787476, + 9.884725600096035, + 9.894921108626304, + 9.912276003718118, + 9.92209312791802, + 9.923750002418439, + 9.903719067111371, + 9.914636980623268, + 9.955728460206343, + 9.964880557840965, + 9.956063937969263, + 9.968668714685217, + 9.944070198665768, + 10.003932312057348, + 9.957128513870892, + 9.97185062835824, + 9.950813479715524, + 9.944919553306354, + 9.944842136681762, + 9.957690330254351, + 9.929701809657264, + 9.934518695324405, + 9.929193151294363, + 9.948012842630943, + 9.916533122941557, + 9.90485395721477, + 9.938354015390981, + 9.967346359254789, + 9.970102564729372, + 9.914513501879487, + 9.97226077925589, + 9.938397228765064, + 9.942975563996669, + 9.965740921453543, + 9.987957179697691, + 9.960937604348018, + 9.928721006229837, + 9.94053520258658, + 9.9417247002603, + 9.953414698421316, + 9.98671442039485, + 9.970274639632704, + 9.942391762262908, + 9.940405125629619, + 9.974967931188555, + 9.963350605183324, + 9.988569868196336, + 9.990074129398595, + 9.954641790262723, + 9.963999459003315, + 9.95896576989073, + 9.937567931420594, + 9.963723816003878, + 9.959075051908878, + 9.893252339057987, + 9.93028332171366, + 9.965705992823851, + 9.972572740757931, + 9.964972699097618, + 9.986131449505828, + 9.936235767414551, + 9.948863885578175, + 9.904651988402433, + 9.915515110117745, + 9.946796272675542, + 9.917022323323431, + 9.912695856188368, + 9.900565341784487, + 9.910672054612204, + 9.96188032178315, + 9.940309857743866, + 9.945427348729522, + 9.973258552165015, + 10.015515612482242, + 9.955555470599787, + 9.946639888171916, + 9.955915754626693, + 9.978166344981547, + 9.967746869112041, + 9.983937202360867, + 9.958381872081791, + 9.93760510641761, + 9.95026828526336, + 9.937841451638521, + 9.929494992996624, + 9.952618573079441, + 9.921674197583219, + 9.920689372427681, + 9.95509543316306, + 9.985061944086189, + 9.960884293805826, + 9.92486672812625, + 9.91856624862116, + 9.957414096178434, + 9.987556866212696, + 9.962714597485975, + 9.980437756890142, + 9.945708825974586, + 9.940610520845665, + 9.931116404967831, + 9.95022034788811, + 9.96127074729879, + 9.961348389550334, + 9.9573839889926, + 9.93437364181888, + 9.93639970815216, + 9.947145738391017, + 9.957822707553035, + 9.95215051495369, + 9.97423464434334, + 9.978909303743631, + 9.99370960592195, + 9.992096402762979, + 9.984898744012533, + 9.912529690478733, + 9.928129598506567, + 9.931952960716279, + 9.94631353875913, + 9.938721422843352, + 9.9344060855786, + 9.933029388408311, + 9.939392509770299, + 9.921711619645354, + 9.902237467477875, + 9.924310016639765, + 9.918549591585705, + 9.909471598769162, + 9.913639008132801, + 9.91488273584458, + 9.918092432066658, + 9.901591124950494, + 9.945993307070914, + 9.980355211635963, + 9.989407293319086, + 9.967307261364715, + 9.960965848107428, + 9.944619641043678, + 9.925747957160574, + 9.956703370906137, + 9.955749426028483, + 9.910822569519363, + 9.962612471293559, + 9.96743739794588, + 9.921864743630039, + 9.927415548300894, + 9.959233291383306, + 9.973155153597302, + 9.964038420156962, + 9.97358594624713, + 9.948982448466921, + 9.960615856433275, + 9.964514473843376, + 9.959662106278621, + 9.964905383275601, + 9.922388953722002, + 9.939394151772296, + 9.958585183163244, + 9.984072890092921, + 9.981641341225428, + 9.947503617497308, + 9.945182887818255, + 9.926562746130728, + 9.963338430012891, + 9.929687162096918, + 9.976804500794987, + 9.956438771937401, + 9.930856558858297, + 9.923824788390672, + 9.96402721054885, + 9.942112982698461, + 9.915882714563729, + 9.944619396027658, + 9.973498625934086, + 9.955528396930703, + 9.959619807622955, + 9.93168477111365, + 9.92005228617086, + 9.991469576079682, + 10.001752541121947, + 9.989281513236454, + 9.99408068938717, + 9.985785859560213, + 9.974532128100272, + 9.969467047061102, + 9.949946710257795, + 9.954089334893615, + 9.941025449048858, + 9.950875200540303, + 9.956703896797082, + 9.907806707542537, + 9.91288501102945, + 9.920800764137686, + 9.967707454286826, + 9.956703781158426, + 9.949104237713119, + 9.973629174754645, + 9.925550691032203, + 9.912979875886048, + 9.95994024862912, + 9.967009894476853, + 9.98915529618705, + 9.951300690585224, + 9.959491006926092, + 9.940756259481518, + 9.973871116350589, + 9.945684298177506, + 9.947583134637036, + 9.953615014814366, + 9.954099613558228, + 9.918048448607859, + 9.903275971337841, + 9.926310350735143, + 9.92073758298326, + 9.937110328828677, + 9.930400848156163, + 9.930968591290721, + 9.950170181282797, + 9.949933297830645, + 9.95063996318681, + 9.933252148363657, + 9.96492319874502, + 9.944901012920708, + 9.950715550065048, + 9.963026889377748, + 9.890653646128337, + 9.928315857137736, + 9.8952498864123, + 9.915518635186471, + 9.920102429305972, + 9.916196823120403, + 9.943541377165793, + 9.962913425586608 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 1", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 9.962913425586608, + 9.975642604212574, + 9.972565179320402, + 9.940082743589347, + 9.953570714409272, + 9.944734593068677, + 9.984758758408061, + 10.00695187507671, + 9.928273840091304, + 9.935938728513745, + 9.964915729830697, + 9.965153839440354, + 9.944331651125148, + 9.921647486127881, + 9.925711723908103, + 9.960111543647807, + 9.965544104892818, + 10.003203023787036, + 9.942450805881395, + 9.928710094800865, + 9.929486050919092, + 9.931394551981349, + 9.948771043144978, + 9.91934831622071, + 9.939058444205362, + 9.934512796412447, + 9.977179452955399, + 9.944274019646704, + 9.967274649016135, + 9.93052119081981, + 9.9639709062564, + 9.957241105733903, + 9.963315843977988, + 9.958304862855808, + 9.967747153609517, + 9.90478750245824, + 9.941684778051089, + 9.960964303598393, + 9.957480105207027, + 9.984477623516957, + 9.953316344574398, + 9.955301564416594, + 9.896960198151211, + 9.856353271133942, + 9.951279229464406, + 9.904410258777604, + 9.949683028442912, + 9.957882757873493, + 9.943707146215466, + 9.951417024582506, + 9.950509168817765, + 9.964659275146015, + 9.936093405579996, + 9.942746399099878, + 9.932256082858334, + 9.959689252963429, + 9.975620729525364, + 9.958397729459636, + 9.969622444449142, + 9.979867435029488, + 9.96872287802659, + 9.985662026140991, + 9.98056670474807, + 9.947802747778713, + 9.958375687192662, + 9.940847581960666, + 9.94517691800743, + 9.930387004053216, + 9.939050322320607, + 9.946317019119503, + 9.940811644701842, + 9.936133066686466, + 9.93301095130989, + 9.951514756914206, + 9.95422433155882, + 9.929199596702823, + 9.932353905445057, + 9.94630793516456, + 9.94820662739933, + 9.963397770996249, + 9.956802573217507, + 9.975371922618589, + 9.993762888196127, + 9.991433908651038, + 9.964329195532692, + 9.918176707924117, + 9.919059891444787, + 9.920308771557794, + 9.930597222074248, + 9.96096483484826, + 9.91454759660251, + 9.956730011723185, + 9.956209953652422, + 9.923893651176197, + 9.944494407779196, + 9.94426103173074, + 9.914484539168747, + 9.896030135992412, + 9.910727229461866, + 9.916784452244581, + 9.962749242680363, + 9.90673383781924, + 9.932858283105967, + 9.958901643799958, + 9.939082697303286, + 9.94747985326334, + 9.931360992177812, + 9.972784922741848, + 9.932270129135668, + 9.943188688364469, + 9.945192671022102, + 9.944156823346525, + 9.972348794097071, + 9.968736011098533, + 9.988556116748555, + 9.979255154154984, + 9.945872931671854, + 9.95156731954278, + 9.943547399805288, + 9.961906957510957, + 9.956333171153805, + 9.99877864062969, + 9.929501118078763, + 9.928659459085871, + 9.969027612111773, + 9.960204966371538, + 9.979968107924941, + 9.951176197440416, + 9.96305419090844, + 9.9717892007071, + 9.980001543474096, + 9.987297480589113, + 9.960058103193294, + 9.977647579009895, + 9.957520982410108, + 9.977556875361117, + 9.9780968935468, + 9.948598740847173, + 9.928461297548667, + 9.930500299087848, + 9.957778988996631, + 9.959147159181963, + 9.961751311204258, + 9.982712416942606, + 9.989372974059169, + 9.98541126845286, + 9.964741110551369, + 9.980745741776248, + 9.961352315565899, + 9.956950294344324, + 9.955927409010055, + 9.965972033006139, + 9.967457440973337, + 9.945028900670238, + 9.929450961281463, + 9.940811365573062, + 9.95843483797369, + 9.957819304766952, + 9.952429696755598, + 9.946827794791567, + 9.972475701775616, + 9.952920159472676, + 9.976813815329667, + 9.926764744862895, + 9.91241287632654, + 9.889626657975635, + 9.931946159294274, + 9.917801855886902, + 9.936056308021847, + 9.906330062541018, + 9.938066625302442, + 9.9285241193851, + 9.920735301387069, + 9.998112482222815, + 9.958535115863832, + 9.94516611535778, + 9.938805944088806, + 9.936207881100277, + 9.939143939764184, + 9.942827476460764, + 9.927940094031829, + 9.953821788888966, + 9.95299658243605, + 9.966717667089519, + 9.977832115572914, + 9.96941965967454, + 9.940686771646707, + 9.934633160618416, + 9.918091349855345, + 9.941394753360214, + 9.946395738871164, + 9.985933613588534, + 9.9788278141018, + 9.938775167695846, + 9.957484278936017, + 9.933991602038475, + 9.958310041009481, + 9.956354613553264, + 9.934825263977064, + 9.917926722539224, + 9.955470107319659, + 9.993600132874317, + 9.962968082080216, + 9.941337583302424, + 9.928344679621796, + 9.92467398173332, + 9.9425438722827, + 9.951102399609411, + 9.95657697496764, + 9.942280580222839, + 9.930715276985431, + 9.949536735365644, + 9.961451116839555, + 9.986397823095796, + 9.991785380602677, + 9.95233970319183, + 9.944361187799412, + 9.937972321274614, + 9.968098477403409, + 9.978208484654898, + 9.97575800765609, + 9.940017639334918, + 9.95026976451918, + 9.942550229631898, + 9.942158528586976, + 9.938596879001496, + 9.952793097912437, + 9.968522157449883, + 9.986384729195022, + 9.953379136682473, + 9.936550206845931, + 9.934920743991668, + 9.940700702895466, + 9.903336783586928, + 9.909442223540621, + 9.90240609635907, + 9.911741508006909, + 9.904573261601426, + 9.947673342643323, + 9.962702853111955, + 9.96685616893421, + 9.966470816670919, + 10.002485293412265, + 9.975261796922366, + 9.976252646962234, + 9.960758938785697, + 9.950205935022025, + 9.944911914526257, + 9.971366391636453, + 9.94590363597515, + 9.974030266714207, + 9.999584633648055, + 9.951325385837245, + 9.980031449692392, + 9.984207743327966, + 9.964417713531493, + 9.953650159238009, + 9.98472736794662, + 9.943673917593406, + 9.993074153086871, + 9.963624009276563, + 9.952625058179812, + 9.980279762034305, + 9.937957862195164, + 9.94341881499078, + 9.980766339051094, + 9.964897041342823, + 9.990015769829153, + 9.945151106028526, + 9.894859714515382, + 9.905778112859037, + 9.936392153426535, + 9.905093582158512, + 9.920862202655304, + 9.935079023747903, + 9.932731056004116, + 9.962932680830619, + 9.950680680094832, + 9.919896303000684, + 9.91172592190619, + 9.92075884470875, + 9.950031014613554, + 9.96160437493816, + 9.939441130067873, + 9.955489591385627, + 9.946716790051498, + 9.957164492698583, + 9.942062171382133, + 9.95584885187985, + 9.944122845456167, + 9.943572330814757, + 9.919484038171987, + 9.98235523855528, + 9.96282207016087, + 9.949510401673704, + 9.945874078602525, + 9.94294057980604, + 9.970517681674723, + 9.949757464188307, + 9.960219141645139, + 9.98123319203786, + 9.977792413482447, + 9.9733720358573, + 9.969891006742412, + 9.907018781335305, + 9.960756410767251, + 9.955157438136196, + 9.96432848776872, + 9.938146261208585, + 9.944608911243128, + 9.949000591850826, + 9.963853640837943, + 9.942049568853644, + 9.94901383709252, + 9.956665370627977, + 9.946136776271441, + 9.928348439677688, + 9.920137610389208, + 9.936903300346101, + 9.925675242995517, + 9.948847800728538, + 9.987072030573492, + 9.946106607817907, + 9.972973786025813, + 9.974874446860829, + 9.96459457610131, + 9.94326323553391, + 9.9289201938898, + 9.9339362806372, + 9.951203286293293, + 9.907902632446802, + 9.88141512583591, + 9.859550907268986, + 9.888474774109094, + 9.933753826680102, + 9.9473229279569, + 9.926682439740695, + 9.958664642611355, + 9.94502781182715, + 9.913622252575278, + 9.91492941089189, + 9.948432520498102, + 9.9186644434293, + 9.946597043639239, + 9.965865850592687, + 9.951359004466612, + 9.94759020402472, + 9.94600798651199, + 9.992338006463674, + 9.961545645535546, + 9.960244058102532, + 9.980684041157208, + 9.940867793975661, + 9.996132601617987, + 9.988210472274874, + 9.953207824382098, + 9.946468012117538, + 9.934096337804029, + 9.937158954415084, + 9.94941710027016, + 9.920146248434538, + 9.921376032626876, + 9.92565959419597, + 9.924403195863466, + 9.958165718092143, + 9.983929146345858, + 9.984437713460915, + 9.951185511819954, + 9.965238498845103, + 9.957998096498779, + 9.935195836393705, + 9.900520255072372, + 9.930633112537267, + 9.96318047129178, + 9.99456302746531, + 9.960859967599438, + 10.003997244502118, + 9.970157802287094, + 9.943462319860291, + 9.967787847935172, + 9.98552704537974, + 9.971917555616352, + 9.929280912780824, + 9.903348097606536, + 9.956310764436788, + 9.941808526296683, + 9.965318396170716, + 9.998909221239145, + 10.012976888502395, + 9.986064594461915, + 9.93930756227495, + 9.966144649538327, + 9.987247948956835, + 9.972490636135415, + 9.97496854112185, + 9.967112261798576, + 9.986293520123333, + 9.960631920923358, + 9.899661085434667, + 9.944698805189754, + 9.945206736184826, + 9.971723012450866, + 9.95066434636915, + 9.958567781418543, + 9.945776353116317, + 9.967595553552323, + 9.959755353378915, + 9.915868879784533, + 9.941192689709556, + 9.892397685063395, + 9.919248852459887, + 9.985479087631598, + 9.968286629154292, + 9.954843876600618, + 9.944304942104617, + 9.993016715671411, + 9.974984393550246, + 9.969944032714842, + 9.954191976895538, + 9.943776715283931, + 9.915336200434234, + 9.96497376816435, + 9.987102380745936, + 9.969499420859156, + 9.943546288531074, + 9.938513575228214, + 9.954212206347847, + 9.922852517049664, + 9.936565341069448, + 9.961621576260825, + 9.974704193247202, + 9.961315928685497, + 9.957146059592692, + 9.962823194788553, + 9.964475350718793, + 9.955297541232909, + 9.92420768760472, + 9.930996555329875, + 9.946483567563712, + 9.962742901967497, + 9.94322788114708, + 9.917230498652964, + 9.912486449020212, + 9.937845913915384, + 9.955220244169924, + 9.975104678513874, + 9.936973432474979, + 9.932604053909241, + 9.909564947412779, + 9.908279253218323, + 9.918397594519963, + 9.922097487182846, + 9.93313688549784, + 9.940408479515034, + 9.97326557625412, + 9.962368015263165, + 9.927419824087165, + 9.956092923704691, + 9.957170862795188, + 9.931291893171691, + 9.942332828332962, + 9.96721294620352, + 9.973858753528441, + 9.94361056552564, + 9.916495869102565, + 9.91842257958901, + 9.943883997567518, + 9.933156584298565, + 9.94921595228881, + 9.949459786914302, + 9.91965569179459, + 9.934398571971988, + 9.927676221354911, + 9.93410978145518, + 9.939749716545661, + 9.946262855412773, + 9.973522055952834, + 9.94583766088389, + 9.960231604396904, + 9.908473543556337, + 9.942685169342827, + 9.933062022853731, + 9.919950836255465, + 9.885200525092984, + 9.908761949774, + 9.92000918792526, + 9.93602856472869, + 9.9546029995507, + 9.92883266469648, + 9.953408527771987, + 9.955278501722914, + 9.953459683776158, + 9.963687049171995, + 9.973822318880597, + 9.97443178530044, + 9.925508106135867, + 9.921306388136761, + 9.942453332811931, + 9.927277472741826, + 9.943112649861371, + 9.94740976968061, + 9.919542462581601, + 9.960510514365042, + 9.943072761711697, + 9.989172606589873, + 9.978956364252419, + 9.961793323294735, + 9.957916443215469, + 9.933270139266893, + 9.926154822456548, + 9.943883159406631, + 9.96900300608836, + 9.95208184997472, + 9.985462964389349, + 9.952873442177378, + 9.934323512289838, + 9.968510958066535, + 9.950658264478664, + 9.946639665586623, + 9.917393850204439, + 9.930605065964627, + 9.945691633159225, + 9.954753962060886, + 9.952240086811166, + 9.951936068425626, + 9.966225684361952, + 9.940983565453134, + 9.99936709293871, + 9.973114549668196, + 9.977368577732038, + 9.934011729119806, + 9.921225825094213, + 9.915318277442818, + 9.915104256481706, + 9.902417198763084, + 9.94545374916875, + 9.928634907720165, + 9.944932582752541, + 9.915680985501739, + 9.934179465161229, + 9.96048680655547, + 9.956860182566603, + 9.938732003921052, + 9.968968012109187, + 9.962666415171396, + 9.95264905399726, + 9.951399585833189, + 9.93995987234958, + 9.961324378650266, + 9.94406789751993, + 9.956329945601748, + 9.958189760646633, + 9.935629426918606, + 9.935952916572877, + 9.961794627667254, + 9.929192658821929, + 9.925969834545798, + 9.91512944771775, + 9.944643716407992, + 9.91738049498517, + 9.914090049180272, + 9.933725199189885, + 9.94976514642731, + 9.918307072344735, + 9.964508920886257, + 9.9605193347863, + 9.967223492639258, + 9.958113262838072, + 9.960520079229559, + 9.978912320142559, + 9.932128159356592, + 9.956724648109528, + 9.969853848670633, + 9.970431801714374, + 9.940023967736733, + 9.938213688384842, + 9.966445166419522, + 9.955574929523097, + 9.967781603348225, + 9.961671162920783, + 9.955216149301167, + 9.970874680227983, + 9.945838086738236, + 9.922121273352262, + 9.935543720720254, + 9.943308841369337, + 9.939703672723667, + 9.966858194234607, + 9.927016119624225, + 9.943237642923126, + 9.960917112734334, + 9.923896723902802, + 9.932446668860386, + 9.947967523358189, + 9.934204728516512, + 9.939187774577576, + 9.930885599269446, + 9.89654839344387, + 9.928805367761615, + 9.95046507358705, + 9.952057944666768, + 10.00151365520981, + 9.969326973339331, + 9.980648944155837, + 9.953822401653905, + 9.954881206718284, + 9.96421653982946, + 9.943639205608779, + 9.947961203434444, + 9.93705270693517, + 9.944925019312953, + 9.981464342100464, + 9.957074301796425, + 9.96004620151959, + 9.945814684624166, + 9.937401831132174, + 9.937624624912338, + 9.948007004929654, + 9.967847210092257, + 9.9457778995789, + 9.907540987764724, + 9.939041084784492, + 9.973262393950877, + 9.953117444358845, + 9.959081965028828, + 9.968220767239705, + 9.955901546615792, + 9.942254429713529, + 9.902258857312688, + 9.936708086201575, + 9.942399890912736, + 9.931980146501035, + 9.969982394592263, + 9.988007124115084, + 9.93969583160345, + 9.968708729791697, + 9.970154748419825, + 9.96294006865558, + 9.965498222775139, + 9.948108833647321, + 9.949382808727144, + 9.93362344455008, + 9.923031196662974, + 9.961371133267457, + 9.946715518290773, + 9.943381588939278, + 9.920644009365533, + 9.926251748482615, + 9.977282985002375, + 9.978920426707466, + 9.969052979187156, + 9.97419736848995, + 9.957923776974871, + 9.946736223152781, + 9.93963611539095, + 9.945616627486697, + 9.998900523477257, + 9.966883342600086, + 9.92583546322383, + 9.951334104305559, + 9.971972175883977, + 9.920642295907053, + 9.923220069262916, + 9.931174873972505, + 9.904258000256858, + 9.95659931725413, + 9.929084537746332, + 9.96213762337937, + 9.978959787333542, + 10.01213653737452, + 9.967820091948361, + 9.945442008138471, + 9.951977075447633, + 9.957841209128944, + 9.922020287643484, + 9.913733673877742, + 9.917462714105472, + 9.95122946866635, + 9.943113449073556, + 9.971582713928722, + 9.96386356342667, + 9.895685639841078, + 9.941026954582638, + 9.95321059495407, + 9.966555975095181, + 9.968683606924827, + 9.974898875260287, + 9.918308294145403, + 9.928007916014613, + 9.895902752239037, + 9.937387970739527, + 9.934489099980642, + 9.923711136697094, + 9.912312536785004, + 9.938829245477509, + 9.929059058141975, + 9.895634084272578, + 9.957589354276129, + 9.928706616234296, + 9.909965856504122, + 9.927793426381577, + 9.936942416740038, + 9.934084828094454, + 9.944592977408192, + 9.954084117612135, + 9.95298779304888, + 9.989777664371603, + 9.970791527961097, + 9.996177990870388, + 9.965881776069722, + 9.937091370159932, + 9.952485185678233, + 9.981305154194347, + 9.927505676403655, + 9.972493703504497, + 9.923531926774675, + 9.9113941829883, + 9.928875659480005, + 9.945914776991854, + 9.910916200951712, + 9.88386396708485, + 9.946529116667755, + 9.960882468057488, + 9.92113482213305, + 9.944874593177978, + 9.930291036067931, + 9.95271606833758, + 9.966175105494417, + 9.967632557778071, + 9.946020784638364, + 9.99500178396137, + 9.933875853347585, + 9.957541891454456, + 9.978892770351228, + 9.963810831315282, + 9.931188371842296, + 9.925910942055399, + 9.923442225367914, + 9.941517393310935, + 9.909545565794236, + 9.957248342572559, + 9.983110397428018, + 9.97844164124186, + 9.97485933128711, + 9.986486717648043, + 9.967257255477035, + 9.92233784248879, + 9.949716982070445, + 9.940362378429985, + 9.944507164444872, + 9.950114345237502, + 9.97057474308337, + 9.95906448149839, + 9.93967114465572, + 9.884957036767249, + 9.95716484280641, + 9.967850081440327, + 9.955760460765319, + 9.945049716996675, + 9.947599985720279, + 9.953285061623546, + 9.976151770819481, + 9.995255050331373, + 9.958326529067332, + 9.94264166008996, + 9.96629133788768, + 9.949909643125311, + 9.960680165837694, + 9.99552903078032, + 9.97046399518806, + 9.947699802531432, + 9.96228285245034, + 9.967804695791786, + 9.975383474732421, + 9.960620153814197, + 9.963144450169098, + 9.986219981183282, + 9.983712831850081, + 9.954711334004863, + 9.975626748214124, + 9.987643417665364, + 9.958101858699465, + 9.960339571238736, + 9.940813926187367, + 9.952961702808974, + 9.931844508577301, + 9.946544492785646, + 9.97686931241151, + 9.92704017034291, + 9.953686873187536, + 9.956404746116398, + 9.94650874801839, + 9.938456611188535, + 9.916374914597084, + 9.89397470848654, + 9.91532838977694, + 9.891275201125488, + 9.91959359424586, + 9.903509091367306, + 9.930178346177357, + 9.93977479359517, + 9.962815823743489, + 9.978897888415585, + 9.931362869130265, + 9.954000650086973, + 9.965630995130445, + 9.959262094211738, + 9.925569332249225, + 9.933383189113865, + 9.972517889443242, + 9.931554362273433, + 9.968804721964935, + 9.981464594628198, + 9.960169100954998, + 9.943159604470532, + 9.974385779276737, + 9.967821361653437, + 9.975375384637632, + 9.950701628494818, + 9.934239276386565, + 9.942137654948402, + 9.98280938470844, + 9.967067773482023, + 9.960411078844704, + 9.944433957951917, + 9.97764244744358, + 9.951242006347362, + 9.992308627128564, + 9.98045266093048, + 9.94998778210585, + 9.90640611738803, + 9.967518705105837, + 10.00381383040159, + 9.987747556072321, + 9.985385480724627, + 9.993658034117596, + 9.986326304229234, + 10.00582792109211, + 9.947117932808496, + 9.961374468274089, + 9.976661376413178, + 9.958431912386075, + 9.98010152521822, + 9.945766164824171, + 9.963906589510062, + 9.965960707093506, + 9.976920591333544, + 9.979062770438038, + 9.989003275987129, + 9.949621615726938, + 9.931547532205148, + 9.921312057524366, + 9.981597432148494, + 9.974824517371754, + 9.949562932452075, + 9.94500897360057, + 9.967282295098428, + 9.97046839152568, + 9.9547067018449, + 9.963181074981959, + 9.948443942599429, + 9.949755547046129, + 9.946352749155622, + 9.985531794849473, + 9.914921168221364, + 9.948303858683907, + 9.950246130683322, + 9.956807442378517, + 9.973754458183725, + 9.947719402973995, + 9.954092487375267, + 9.954879259557293, + 9.916001676953101, + 9.925423152434927, + 9.924384964030939, + 9.93615215965162, + 9.912227273002031, + 9.955222737586709, + 9.95716778490142, + 9.979178972882176, + 9.994307598752712, + 9.929559634052511, + 9.953728136620416, + 9.92132604894027, + 9.942205059412931, + 9.941306617382711, + 9.99307462322028, + 9.991060586094198, + 9.971389244348845, + 9.960481345291841, + 9.947478899202197, + 9.942792393753429, + 9.933310030231663, + 9.960692430539813, + 9.95076241244628, + 9.971024111887091, + 9.927441667112783, + 9.929350966763451, + 9.961548945388685, + 9.951948505997551, + 9.954778150140658, + 9.928339202156979, + 9.962710362048318, + 9.92776533156729, + 9.959420715187651, + 9.951638544193932, + 9.956868131042242, + 9.977456134784042, + 9.923060418247507, + 9.970131275526583, + 9.956945108278044, + 9.916445575690586, + 9.947288098331594, + 9.98884533306413, + 9.982869938965043, + 9.955935878281664, + 9.911925995950783, + 9.960554423034386, + 9.993237387986477, + 9.960520223290425, + 9.992701631856, + 9.964221852042424, + 9.979828718228086, + 9.963261193975564, + 9.901566183782645, + 9.95944182192157, + 9.975404977790845, + 9.929875911954495, + 9.964925720310617, + 9.945745786817335, + 9.96119210113965, + 9.925080209362456, + 9.907833456978942, + 9.883626645102192, + 9.952163792155494, + 9.964406069057434, + 9.970688122350012, + 9.984733965086013, + 9.940848114543568, + 9.956160207389637, + 9.966818081187203, + 9.942220410177656, + 9.906066289480641, + 9.913071560958501, + 9.953087864834776, + 9.944990607022527, + 9.992472783901515, + 9.95864263458034, + 9.933870690952041, + 9.951024756650657, + 9.951464592911556, + 9.958831446131539, + 9.933486097048668, + 9.954798210766707, + 9.945532171313534, + 9.950721806000276, + 9.944438028512582, + 9.932791056413704, + 9.914796910506995, + 9.942107766372837, + 9.930273000213207, + 9.944896658031285, + 9.962032131378171, + 9.882770509277165, + 9.911697089626076, + 9.949706795239578, + 9.933691149889412, + 9.947771341893747, + 9.910498514279674, + 9.946527655137201, + 9.935794608326235, + 9.96835999235247, + 9.933515650067042, + 9.940037077081637, + 9.927179754286428, + 9.959479949562054, + 9.967356899539089, + 9.965812054291197, + 9.938361671304897, + 9.982930785461665, + 9.93677099034133, + 9.909028123509747, + 9.893271777608716, + 9.954896276140856, + 9.985126400108419, + 9.975354028353928, + 9.963816078246442, + 9.95069423267525, + 9.93412068106554, + 9.92398616773627, + 9.921262954364776, + 9.926884054639801, + 9.939587892175552, + 9.95694914907156, + 9.977555693875559, + 9.995837502315835, + 9.987699417327342, + 9.966999049976287, + 9.973600882623076, + 9.929075607860156 + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 2", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.14627265523349112, + 0.09249825063118461, + 0.05864638094297092, + 0.29939728890762946, + 0.21984407544230936, + 0.3815425425336365, + 0.26476914307147803, + 0.2972736444877533, + 0.3197654954898758, + 0.36675083245741247, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.18222284147805604, + 0.09146714114865447, + 0.13750274901415122, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.06885296393026999, + 0.8526659535856848, + 0.31532002776348655, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.1884001842285637, + 0.29544687481761756, + 0.48875172337385187, + 0.4106995692076558, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.011646499474023766, + 0.16166528592369075, + 0.21537499880135694, + 0.11051465870664842, + 0.29325460593707986, + 0.257339504075334, + 0.3080347504065253, + 0.11825655999624235, + 0.0908277661568195, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.0524786366803062, + 0.12973008483739817, + 0.1312086196845979, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.42071214012958413, + 0.48698265068922736, + 0.5083508047316404, + 0.4882811588271051, + 0.3874660692988012, + 0.4521545197499185, + 0.634453336665064, + 0.3901278594237819, + 0.34113783525571956, + 0.31130304878486226, + 0.20669372830284927, + 0.31062850812352916, + 0.26084769855470447, + 0.21103812386349868, + 0.24715692122072525, + 0.10000355669152555, + 0.2022906545452066, + 0.34002009996336235, + 0.20526745090784462, + 0.1597940275138265, + 0.36557555976648254, + 0.4011910521603971, + 0.5474228490122541, + 0.1468407050288577, + 0.3541439756364462, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.057839265628922214, + 0.3252271458267658, + 0.21024820394826874, + 0.32969440084172796, + 0.223844532936726, + 0.35561655921255186, + 0.2803559091230649, + 0.25940434126811773, + 0.12950010078547672, + 0.07003863535601987, + 1.059165966438313, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.16681348386893693, + 0.04601269427644372, + 0.0207445091432104, + 0.07011940332457094, + 0.2037120977283152, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.12363543754802661, + 0.28039689738658324, + 0.2684297954819648, + 0.329231869811411, + 0.4382296665826228, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.003147187408442312, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.07626680036074457, + 0.8221520338022736, + 0.7324403870278046, + 1.2787302368505704, + 1.5933305810168692, + 1.6198624370138168, + 0.6980561577266191, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.18298110550911148, + 0.10056890069661495, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.5660828152171675, + 0.727863913326424, + 1.266614913969334, + 1.3241779793501485, + 1.777172500968637, + 0.7654749785812428, + 0.7052873569007863, + 0.9058052251998259, + 0.8733464751495077, + 1.300934368336553, + 1.468526080260115, + 1.18793729806842, + 1.1991858885684528, + 1.2493881676438447, + 1.3747786033478315, + 1.667557301624477, + 1.4939552084824506, + 1.521295349085257, + 1.4483085254013175, + 0.7125865325827673, + 0.9076486803287592, + 0.7199164295308215, + 0.39487234688083206, + 0.6539523962139939, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 2", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.24999183759836885, + 0.6037586825859343, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + 0.2923807993150283, + 0.13057316999913074, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 3", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 3", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 4", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 4", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 5", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 5", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 6", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 6", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 7", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 7", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 8", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 8", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 9", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 9", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 10", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 10", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 11", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 11", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 12", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 12", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 13", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 13", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 14", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 14", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 15", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 15", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 16", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 16", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 17", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 17", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 18", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 18", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Source 19", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source 19", + "showlegend": false, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Source traces", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Source traces", + "showlegend": true, + "type": "scatter", + "x": [ + null + ], + "y": [ + null + ] + } + ], + "layout": { + "annotations": [ + { + "showarrow": false, + "text": "\tBurn in: 4000", + "x": 4000, + "xanchor": "left", + "xref": "x", + "y": 1, + "yanchor": "top", + "yref": "y domain" + }, + { + "align": "left", + "bgcolor": "#ffffff", + "bordercolor": "#000000", + "borderpad": 10, + "borderwidth": 2, + "font": { + "color": "#000000", + "size": 12 + }, + "opacity": 0.8, + "showarrow": false, + "text": "Total Site Emissions are
the sum of all estimated
emission rates at a given
iteration number.", + "x": 1.05, + "xanchor": "left", + "xref": "paper", + "y": 1.05, + "yanchor": "top", + "yref": "paper" + } + ], + "autosize": true, + "shapes": [ + { + "line": { + "color": "black", + "dash": "dash", + "width": 3 + }, + "type": "line", + "x0": 4000, + "x1": 4000, + "xref": "x", + "y0": 0, + "y1": 1, + "yref": "y domain" + } + ], + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Estimated Values of Sources With Respect to MCMC Iterations" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0, + 4999 + ], + "title": { + "standoff": 20, + "text": "MCMC Iteration Number" + }, + "type": "linear" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + -2.720180351477456, + 1.6418787783379458 + ], + "title": { + "standoff": 20, + "text": "Estimated Emission
Values (kg/hr)" + }, + "type": "log" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQWYXcX5h7/sxpUQgaBBAsEKaXEpWpxSrKVocSvwL64tUqR4ixQoUKTUsOJWrGiAlOIS3BKIQAIkxP/PO8kssyfn3Hvumbu792Z/w8OTZPeckXfmnDPzm+/7psOsWbNmmZIIiIAIiIAIiIAIiIAIiIAIiIAIiIAIiEAqgQ4STzQyREAEREAEREAEREAEREAEREAEREAERCCbgMQTjQ4REAEREAEREAEREAEREAEREAEREAERKEFA4omGhwiIgAiIgAiIgAiIgAiIgAiIgAiIgAhIPNEYEAEREAEREAEREAEREAEREAEREAEREIFiBGR5Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hKBuQi89NJL9tvf/taWWGIJO+6446xv376ilEJg7Nixdtddd9mjjz5qJ598si211FJ1wemrr76yhx56yG666Sb71a9+Zauuumpd1Lu1Kzlp0iR74IEH7LbbbrNPP/3UunTpYiussILtueeettxyy1mHDh1au0oqr44IMHYuv/xyW2eddeyQQw6xrl275q799OnT7X//+5/97W9/s8UXX9wOO+yw3PfqQhEQARGodwJffPGFnX322fbee+/ZSSedZN/73vfqvUmqvwjUHAGJJzXXJapQGgE+CEceeaR99NFHhQCdddZZLb7Y/f3vf+9EAVJrlFcIRBve9M4779hll11mr7zyis2cOdN69+5t55xzTlnx5Pnnn7fjjz8+s+Zbb721HX744am/ZwFPmclU6p7ktYy9P/3pT/b444/bt99+q/4tMYbGjBljZ555pm255Za28cYbG0LZxRdfbM8884w1Njbar3/9a1t77bVLjsKPP/7Y/v73v9vw4cPtyy+/dPctvfTStskmm9i6667r/s3ieO+9965oYd2GQ78uiw7fZ8kGrL766k74/OSTT+yYY46xiRMnprbx4IMPtu22267pdzw/p59+uj377LPNrl900UXt/PPPt27dujX9Pu/7gYymTZtmt9xyi/ufMUOq5Bkv1UG8t0q10d/bo0cPW3DBBW211VazzTff3BZeeOG67HdVOh8BhPQXXnjBnnrqKUNYJzEG+KYts8wy+TKZcxVjlm/c22+/3ew+/5ylCYizZs2yUaNGOUGfb9OHH35oM2bMcO/HhRZayFZZZRXbdNNN3feVdyl13GKLLezzzz+3O++8015++WV7/fXX3beYxJj9v//7P3d/Jenee++1Cy64YK5bSs2BEDlfffVVe/DBB43v+7hx45r4IXqutdZattFGG1mfPn3sL3/5i/uWDB48uGS1st4t4U2leFbS5lq+NpwvVesdWMvtVd1EoC0ISDxpC+oqszABJgBXXXWV3XPPPWUnyEyon3zySbd4Y2LS0pYCb7zxhlscyvIk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L4snhA845ZRTbNCgQfarX/2qRU/1k3hSfAzWy51FxJNHH33UBg8e7AQCRIuFFlrILf7feOMN1+ws8YTwGFyz5pprZuLxAskee+zRTDzxwsqWW27p8kd0uPvuu51QkSaePPPMM05YySNipJWJEFKqLWkNaJfiyUsvveTEERKL8B/+8Ie22GKLuaMex40bZ4888oj95z//sd/85je29NJL18tz0a7qKfEkvrslnsQzlHgSx1DiSRw/iSfx/CSexDOshngy/dUXrEOf+axx0GJmjY3xlaqjHGpdPJk57nOb+dknZrPMZnz4jjUuNdQ6LrmsWcdObU45j3jy+9//3u66667UunI89BJLLOEszjfaaCPr3Llzm7fJV6CtxBPKPfHEE23jjTe27bbbrhkPFrZ//etf7Y477jC+3/x+1113nWsnvdrX1Uyn1HFFiognvrmIIaF4Us5ygpiheHMkLUpCfFniiS8rtC657bbbbMMNN5xLICGPK6+80o455pjC4kkdd2l01XNbnvijikePHm3HHXecDRw4MLVwTtoZMWKEHX744dbYzj7k0b3RChl48eTei8+3maM/rqDEDtbQf6DZzFlms2barJkzzfh/1pw/Z875WfDvDt26W4eevZrKmPnlF9ahUyfj59bQ0Lzs6dNt1ozpZtOnm82YbrPcnzOsQ5++ZrOYeTT/uc2cUUHdq38pH7+OHTtWP+N2kiPvE0TXDh06tJMWV7eZCHgzZ87UOzYCK88w36iWGoOzJk8y69zFZn09wTouseycd9rs95p71/E/79A6TYw/xqG+88U7sBrfkZljRs+uQMeO1qFHL2uYf6DNmvzN7O8m31nesw2NZg0dzNyfc37WgT8bbeb4MbO/44lEXh269TC38p/FL8M/3Q9c/5f6vavD7AuDP+fkE/xsVkreqfck6jJjxnT3/PItqcU086sJZt9Obl61jp2scfAQ69ClS3WrPG2azfx6ohsDLrl3jH/XzHDvmoZ+A8zmfHNfGfm2DfvJT92lyy3Q30acd6p16DK3SfxnE7+y0+97zL6Y9K2dtvZKNrhrR5v57WQb37WX/fPdT+3fIz+wHwwaYL9abQXrQTcwl5s+bc48bpr7d0O/gdYwYMHm7Z0+remd6K5nzud+NvvvTX9O+sY69OzteLn6de46m920aTbj4/dn50mbmqYSc/7i5xbhHGOun/lr51StQwfjv6Y8fd5hzV1ZvrAOTghpaGwwnqBr3/zI7vrgM9t3ucVt6yUWmpOP2dQZM+3Sl96xiVOn2aGrLGOdGxvtohfedGP3V8OWsR6dZ4tpU2fOtEv/N9ImTJlmh31/qHVubLALR7w++7ofLDf7ug4dbOqMGXbpf9+0CVOn2mE/WN46d2y0C599ZfZ1q69oPbyQFXAp2a5SXIK2ZnJJ3P9dWd9xbeqgpmv97xqs6057V/dZqHJuLSGeIJJcfvnlrqbejSf82YEHHuhOtkV4efrpp5tdV87yBJeetdZaq8k1Junqs9xyyzW59iyzzDJ21llnufxDd58sdyCsXcgbYwkvEHrRBiMK6nzGGWfYDjvs4P7HAozTebF+4TrKIFEm//buQLSXg2aSXLiWa3x7+LdnkvxZsnwsfUjezcm3FYsgn3zdYezz4++UQZ3oI/oH65yQT27xhAKwKCEzwGclKn/JJZc486Revb5bOFd5LCu7ggS8eHLn/j8vmINuEwEREAEREAEREAERqFcCr374ia161K9d9Zfr3d2e2mxYalO+nWV24dedbeT0DvbrXlNtcMc5Qhg6yaxZdsWkzvbo1I52SPeptkGXtt3Uasu+uH9Ko42d2cGGT2mwzbvOsC27fsfiqSkNdsWkTnZcz6m2XKfZ/N6Z3mC//aqT7dF9mm3YZbZ4We3r2pJHJWXP988nKrm81a+ttniC68rvfvc7JyC8/vrrdv3119upp55qWNLxc++Og9sNv0OAQBAhsbbGiIGFfNJth9+HYgD/9qJEKLggElx33XU2cuRIJ2pgDYPAMGzYMLe+P/fcc+3oo492bkc+hbFUwnz9732MF8pbbbXVnOCBeIJV2iGHHNIkEPk20fYHH3zQWdlQ5pNPPums2M455xzbf//9HRfc7nA/QlB58cUXXV1vuukmGzNmjB188MF22WWXNTFBzPGCB3nCzYtC3sIGF6Z11lmnWbuoDwmxiHKouy+TnyPowJSyKJNEHXOLJ5iXnnfeeXbUUUe5ADRZ6ZNPPnGdQCNKXdfqo18FOgISTzQQREAEREAEREAERKB1CDQMHGQNfQfY9PffMpvybesUWqaUaognFPHElAb7/aQutmnn6bZfj2k10bbWrsR70zvYY1Mabeuu0+23X3exTbtMbxJPvPg0YabZSb2nWs85RiuTZ5md/3VnQ2I5qscUa+zQwYlU1bquB5ZmdZLam3gSigGIEggNoXVDUhTx1hiIEeXEkzSxIy3vsA7eIoQgsz4lg9omxZfQ8oR7QlHEW5SQB4n2+eC2adeFgW+p18MPP+yEDy/e+LriYoRwsfLKKzdZqXhRBWsRL5h4QYo8FlxwQadJfPrpp5lBakPLnNAKyAspSeGINuUWT8gcNepnP/uZYfqSljBfQ+F5++237fTTT7cePTD5VKolAqF40jBoUeu47Iq5qocJ+qyvJua6tmoX8e5v7GgdcP9q7Oj8uTvM+bOtfbuJ2dGzZ8+qNbW9ZcQpXfhIy+S/WM/j9jR16lTr1q1bsUoRE3AAACAASURBVAx0l33zzTfWvXv3FnPbAbFzqWCjEXfFtPdYjbob5Bke03ATmDnTiH2gVIxAVb8jM2fazPFjK3cFw5un/4KB24PZrEmTbNY3c773zszeu0WEf85enDW5vTUz3c++frbLQ9rv+WngEpF0JZjrvg42ZeoUa2honB0QNHCnKFanOe4fibrNrpNr6XfuGmWYlJqfzHjvTce3rZNz29luttvO8ksOthf/dZO5ed7Ub82mTLFZUybbrClT7Ft2wx960t76fJydvuWGtmT/7zZPcdv68/D/2W0vv2n7rTXMfrzisnbZE8/Zva+/4/L1P3t37Bd28j2P2MQpU23VRQfZsRuvY9ax0V4cNcZuf/F1W7Tf/LbOcsvYeXfeb8svuojt/qMN7L/vfWAP/fcl+9WuP7Uvx39hf7jldhs38SvbdtWVbY81hlmjc++ZW6yZPmOGvTTqc7vntbetf49uduA6qxo/e/2zcXbXq29Z3+5dbbdVv2fXDH/BHn7rfRvYq4cdt/E6Te2iTTeOeMX+/ea7dsoW69vg+ecr2VWjvvjSbnzhNdtz9ZWtY0ODnXD3w7bFcks7FqRPJ3xlJ979iC3Zbz47eqO1rCtjdY7L26VPPG8jPhplZ2y1oftZNa9bqE+dWP43NFjXHfdq68ehZPnVtjzJK574RTthMBAUSKXEE0SLUNTwooC3KAmtVdLEkzRLFg8my1Xogw8+sD59+jjXIi9e5BVPEEd8HX3bsIJJlhUjnngBxp8YlBSFQisgLGFCy5NQPLn99tvtgAMOaIpRlFs8oWH333+/O23nyCOPdKY2PjGBAiDuOgSVRWXaeeeda/phaK+VC8WTxqWWs07fX6u9oijcbgWMLYyu6UYFjI1jqICxcfy4m+B+uJbWaryE+Ba2bA4KGBvPtxoBY+NrUb851HrA2FommydgLPVnccNmKLu5bKAutdRSrlmcMsNi45prrrEll1zSufUT24DEOgDr87322qspLgJjncUb15x88slO/Gej9bTTTrOFF17YLVo++ugj9zPy4rQSgtVuvvnmtuyyy9ryyy/v1iA33HCDu3/ddddNxcuYIB/yXX311V38RYRe1ijkyyEX7Fxzmgl1OPvss12dcI1gw5f5HW0i0CYuFBzjnJX4Dl977bWuLpxaQhtZH22zzTZN7X7nnXecC8T666/v6hImAvI+9NBDrhw2k6p5XanwCrU8LmuxbtUWT0Lri9BKgraHAoe/7thjj3XH+/oTe7LcdrzLDu4vuKGEAWR9zA4vkITiCeX6Y5WxAkFQQHRIc9sJBRbeDffcc49xug+iTaXiCa46uNFQN9xidtttN/eM77777u7Eoeeee66ZhQnPvbdmSXPbSbM8oW2UQ3Dm0EXHj7Okq06aeJIMxAufisQTduo4ppgXJi8bdj150YwdO7bp6GJeSASUldVJLb4CmrvtNA5ZwTqtskZtVrSGayXxJL5zJJ7EMZR4EsdP4kk8P4kn8QwlnsQxlHhSnF+l4smzzz6bWhgneRx66KHNYhwiGGBiz2LIB5X0IgyZsAhih9mLDUOGDHHCQRiE//nnn3cCyJlnnmkrrjjbQpodaa7bZZdd5jrNJqwcwg7rEKzkvWDhy8diOCyLNQ2HXJx//vlNoQbYEOb9Vsqyk3kgu9GI7yweqXuaeEI7WBBvvfXWqeIJAlEYsLNa16266qrFB4fubEagqHiSjD/i3W4Y+2kBY5OBXYn54YOlIpwQ94QApqzBk0FhqbC3PCH/UAzhGfVBU31QVO8ulPw3+YRuNPzbW22kDYtkYFvEFbQC6kd70QIQNSgHyw2eZ9yDuA/L36eeeso4Mtnng4jy8ssvu2tCtx9fL/LJChiL9Qtl4qLj/77jjjvazTff7OqTFjDWx2rxbeManueLLrqo2fWh6w5lVCSekDlKLUoTMHhB+YT5PZXkZVnuKCY9l21HILQ86bjsStbxe6u1XWXqtGSJJ/EdJ/EkjqHEkzh+Ek/i+Uk8iWco8SSOocSTOH64f7LQ6d27d2ZGXnRgJ5h4A1ieMAdiocYijuN3SQgEa6wxezOuUvEES5CkVQaiA6KCL5N808SJtIr7OnMqaFI8CX/GvViY3Hnnnc3EkzxUsZBhgYbYgQVjlniCZQGWAxxfXMryhDKreZ0sT/L0Yr5rioon+XLXVfVIoGLxxDeSyfuoUaPs448/di9eXqgSTWp/CDQTT5Zb2Tqu+IPar3SN1VDiSXyHSDyJYyjxJI6fxJN4fhJP4hlKPIljKPEkjl9R8SQslZ1jdqoRJRA6+LM9iCe43GA1Uioh/mA9gKULJ3jg0uPjvMEeaxd29XGHIlXzOlyhlKpDQOJJdTjOS7kUFk/mJQjtqS1ePLn1kD3Nhq5ivYbmCxjbnhiVa6vEk3KEyv9e4kl5RqWukHgSx0/iSTw/iSfxDCWexDGUeBLHrxriibcGIYaUtxJpD+IJx7wSsiAMfs+8BlcDLHAIYUCsFlwTiBnDdeFBGlj84L6EaxB/kqp5nTaz456N8G6JJ9VjOa/kVHXxZNy4ce5IY/wddVRx7Q0TL54cds311qmhg/WeE/k7WdM+nTtZpzo+CaKlyWMWqo9Tccq4/2HmqmCdxRjik42AQpA5pWIEWPzDr+lkjmLZtNu7WHgxDt1JJ0qFCOg7Ughb000EAuUbolPbinFkI+jN8V/YxJmzbPTk9COUZ0yZYv+77hqb8OH7tupBh1rvhb87LIJSv3z/PRtx5WXWqXt3+8EBh1iPAQPtq1Gf2vOXXWxLbPwjG7zBRq5y06d8a//781XWoaHRVtlzb2vs0sWmfDXRnrvk9zb/0kNs+Z2aHzIx9o3X7aW/XNusTH/9ouusZ4v/cIPMRvuyuvfr35Svb0e3vn2blfXBfx61j5583Fb75eHWpdds96WZ06fbjGnTrFOO0+x4DzIG+Y5k1e/j4c/Ym3fcaqse+Evrs+hirowJH31oz19+iS374+1tkTXWdD+r9nXFRkXr33XUnJOJWr/kfCVKPMnHqT1dNZd4wsv08ccfdwzWW2+9pokli51XX33VRd7OSnzIiByNKw8CisST2htKoXhSe7VTjURABERABERABERABFqDwMvjxtsHk0rM678Yb6P/ep3N+PorG7THvtZl0EKuWrOmT7dJb79l4+65w6Z/NdH6bb619V59LbdmmDF5ko26/hqbNX2aDdzupzZrxgz7+pUX7duPPrBZ06bZgG13sE79Bti0cWNs9I3XWpdBC9vAnXaxxjlihYup8vgj9sVDD9iA7X9mPb+3isv32w/et1F/vdZ6DF3e+m+9nTVkCLfTxo21T6+7yjrN19cW2Hk3a+zew6Z9Md5GXXeVNfbqZQvuvIc19uhhM6dNs7F33WbfvPGaDdrlF9Z18cGurmPvud2+fvEFW3CPfazbYoNzd8P0r7+yUX++0nqvtqb1WXOdpvtmfDvZxtz6TxcrZuD2P3MMxtx+szu+fsD2P7XGrt3ctdW+LnfF2/jCK9au7fABEk/aeIDUYPFziSfeBI+6htGnfQCmrIjbYdsWXXTRioMv1SCbebJKEk/myW5Vo0RABERABERABESgIgIfTvzKXprw3eEP4c1j7rzNvnp+eGZ+jT16WucFB1nfDTexLoss1syKb/K7b9vn/7rZZk76xnqvsY7Nt/a6NuaOW62xZy/rs9a6Nmnkmzb+vu9ihjR0794kziTL7bXqGtZ5wEAbd++dTXXpNmRZW+Cnu1pDwvoSQWf0Ddc0Xdep/wDrt9WP7fOb/mYzJ01yP6esgTvs7PKbNnZM07UL7r63dVtqiH3xyIP21X+ft0G7722dF1gwN88s8cQJI5Mn25ePPmQTRww369jRiSvzrf3Duepf7etyV74NL5R40obwVXQhAnOJJ5igPfDAAy6zTTfdtJk5JEf63HTTTe48do7zwZcvTPg8Pvzww84PMBReCtUs4yaUW/wKMVknYfrP0WP1bnrNyUX33XefO56JoFJpLiEIWEQ2v+OOO1z7OQKOs6srcR8JxZNB3braEr16pJKeVUGn0Se1nqpdQ/xV8xzHXVG5FV1cnvgsq3KG5YvMfQVjGXP/hsbG3PdU+8K2GrbV6BfcJbAGrOTZh1+LjIgqZ1rl7DKHDT7o8Au/HdXom6LjNHe7c19YtCbZ94VF8w3i3d8abjst0i85Oea8rBBsxmDJ41AL5dq6N+XumyqDJLu2ctupclNapMPyzMv4jkycPNm6d+tmnRsbWqQe83qmYcyTeb2tLdW+ZXv3aqmsq5KvLE+qgnGeyqSimCefffaZvfbaa8aZ0VmpJWKesNAaPny4O06M49LwVQ8T/q7LL7+8bbvtti5QU6ULirbuUQQTjj3j+GdOLSJ4VLINLJQ4pxuB6qijjrIuXbrY2Wef7Sb+nGefZyFPO0PxZKlePWz5+bKPqGtrLrVavgLGxveMAsbGMVTA2Dh+3M27lCMmFXenGEsFjC3GLbxLAWPjGCpgbBy/PAFj40qY9+9m4xMBlI1cpXmTQKx4guHBSSed5IIJc+pSPaT333/fHT/O+rRcvcP2zTfffO6+jTbayPbbb7+qNPVPf/qTM9poLXa+7aXaUJF4wqKRCVMpcQIl2+/Kx05KEQzuueceu/baa12eeRIiwi9+8Qvbcsst6yqYoj+2jAl9mnjy2GOP2YUXXuiOhFtxxdkn5DCoEU4OOOAA22yzzfLgaSaeDOnd04b2qW3FN1ejWvkiiSfxwCWexDGUeBLHT+JJPD+JJ/EMJZ7EMZR4EsdP4kkcP+6WeBLPsNZzKCqe3Hbbbc7YAEGhtQWAGKYYLNxwww220047GULCc889V1II4Xo291l3I3AgphD7tKh4Qpn8v8EG2UGhi7Qv7I9y93OEeKl2VySeZBWGYMILhFStnbzPP//cWVYgENAZq666qg0ZMsQWWmghJ4p4SwsWESzEJk6caBwdNmLECOPcec5WR+mrp7POOTeedifFEx9v5ssvv3RMYEzCXPDUU081PoCnnHJKLusTb3ly6o1/t8V6dLdFeswOVKWUn4DEk/yssq6UeBLHUOJJHD+JJ/H8JJ7EM5R4EsdQ4klxfq+88oqttNJKLoMVVljB+LdS5QQknlTOrN7uKCKesF677LLL7OCDD6478SRZ93L9VW3xBPGFtMUWW5QrOvfvK21T1cST5Gk7WJ/wwsXnlJN1nnjiCdeIdddd17mV5HUjSWv5e++9Z+eee65tsskmTsmq1A2HhQUCyt/+9jdXF1xh6iFliSeffPKJHX300a4dJ554YhMPFvEXXXSRU8fglUco8uLJ2X//p/WUmWGhYZHHAqtQxu3oJt4nuNvpiMlinY5gzbsX9z2lYgT44MOv3uNlFWt9/F2tGfMkvra1mUO5mCe1WevaqRXvQJ5fuUxU3idvvfaa/Xjt2UfkLrbMsnbpvx+pPBPd4WKPMf5iLe3bM8qtFx1U082vVDxhoc7m/dNPP+3ig5511ln24IMPOgOAm2++2Qhvwc8GDx7sLCy8ewyeBUnBACGBkA54GJD4ZngXIP69zz77OI8EEj8n3ihlkNiIx+XmlltuSXW9Ceu51lprNcuHupOSdUJUoEzSgQce6KxL8oonYXn+Xv+zlVde2fr372/Mbc8888ym/BdZZJGm9o4aNSpXG5N1xIIm2R8UkOTu2/Hyyy87qxv6Kct6piLLk+uuu84FK6XRHGPMxPOaa66xv//97y7WCMLJXXfdZcOGDbO999670KSUyv7xj3+0vfbaK5cYUOqJY3cb06Mdd9zRBgwYUNMPJ5XLEk/eeecdJ56sv/76dvjhhzdrB/dwPPTvfvc7W2655Zr9DjOqZPKK3mHXXF/zPFRBERABERABERABERCB6hL44M037NAfbeQy7bvEUrbTX/5R3QKUmwjkJDAvnraTZnny4osvOjHCCxMIFt46BVTnnHOO7b///k5UIbGYJ3QFsTe4jrU1bkBJFxmuRXTBNciXweEuHOCCSPP666+nutHceOONts4667jyWBu+8MILdsQRR7hyQ6sZ3438/IorrnDxRXFF8tdg4FDObSe8d8EFF2y6PhwiV111VTM+tCkpzJRr4+67755aR8oJWadxR+AitsrQoUNd/dANosUTGsACffPNN3dCCenDDz+0Y445xpZYYgmn6mBtws8uv/xyp+h495Kcz4+L3H/33Xc7Fx3gViONGTPGWWbQCbW+w5glnjz//POO59Zbb50qniBY8YDALUw8dMlE3BSSxJNqjC7lIQIiIAIiIAIiIAL1RUDiSX3117xc2/Yinvigp34Tmw1vb/3g+zcZnDUUCxAsSGH8lNDFJevnaS4oSXGHf3vxJhRGfJnh+PPWMv369XNiRx7xJLQ68Xlxr2ewxx57NFndhG1KE0+SHFnfJ9uYrGMonlCXJHfW3//5z3+a3Kyq5raDby7uObjB9O3b17UdixPMiTCx8VFw067L+9BjroMfddrRffi2fvrpp7bkkktWbB5Hnu5Y1IbaPootSzxBNTz22GNt4403rsjyJI17eNoOvx/cs7t1rnEuecdPa10nt5140nLbiWMot504ftwtt504hnLbiePH3XLbiWMot53i/JJuO5f8++HimbXjO+tlfVHLXbTNogvVcvWsUrcdGlMq5kkontx+++3OJadUeAovPGy11VZNFiZpAkKMeBIGiQ2FhqR4QhkYJeC6g9BDTJe84kmaNYvveJhgPBFa5mRZnpQTT9LqmBRPktyT/VU18YSgSFieHHTQQc6dZvTo0c7qhDgcKDgEcSURdAqzntNPP92Z9VQjcdIOAVFfeuklFzAV06V5MZWLeYJAdeSRRzbFifAn9NDJlcY88ZYnmyw00Lo1Ns6LOFus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x0/iSRw/iSfx/Oohh2qIJ9USEqqVT2twr6e6Vsojt3hCxogi1113ne24446Zbjvjxo2z8847z4455hjr27dvpfVJvZ4JBnkeddRRJfNkUYsJ0/XXX28rrbSSE3AOPvhgJ6IozSYg8SR+JEg8iWco8SSOocSTOH4ST+L5STyJZyjxJI6hxJM4fhJP4vhJPInnVw85FBFPQreV5557zi6//HLXVDwj1lprLefS8vTTT9uBBx5ou+++u11wwQX26aef2kILLeT+PPnkk53LC3FGl1lmGTvrrLPswQcfbMrn+OOPt0cffdRdf8QRRzjDBl+mL2fDDTdsypd1+5FHHmk77LBD0/Vcx0EwvuzwmkMOOcQuvfRSVxfqzGExDz/8sJ166ql28803u5/762kDa0vq1K9fP3c9IT4QT/g395Jow+DBgw13I65966233LWDBg2yffbZx/bYYw975pln3J/EM63lVJF4QkM++ugj+8c//uE6P2lZgtUHcN977z07//zzqyqenHnmmc7c6dlnn7WJEye66ODA3Wijjaxz586O8SeffOLisay55pp26KGHNsVEYRD4a2q5M1qjbhJP4ilLPIlnKPEkjqHEkzh+Ek/i+Uk8iWco8SSOYa2LJy99McFGTfrWujQ22NA+vWzBbrUVl0DiSdz4k3gSz68eciginnhRYsstt3RrV2+FMXToULviiits2223tQUXXNAJF1yDqICgsu+++7rrcc9BdCEEBqIIiTVvaM3BNffcc48TQzgB98knn3SeIcQo9Xn5fFdeeWUn0viy+blP/vrkNfz+yiuvdMYQiDP+XoQR8uf6nXbayf0dEQdjhcsuu8y1x7d5zJgxrn6PPPKIvfDCC04kQRTiWtI555xj+++/v73++uvu914IqvVxUZF4Mnz4cKccYYFSKlX7tB0mGChmCDfJhIXJiSee6NQtAseiZtEpxGVhkUvwWgb+GmusUet90Sr1k3gSj1niSTxDiSdxDCWexPGTeBLPT+JJPMNqiCeTZsywydNnuMp079ho3Rob4ytWJznUunjywvgv7eNvJjfrm+/N38d6duxYE4QlnsR3g07biWdY6zlUUzzxYgZWJz55axSEB9aviBM+IZZgtcI1pcQTxAmSt9hAcPn444+duOHzDQWQpHiSdg31qOTn5BmKO+HfEWjIa5tttjGMIbA68QkxZdSo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UaoOi1osJBDiaW12j/Mrc12hyTr+UPvUkQfgn//8p9r+hMUWPhijIkXwN91eH5foXPWHNGvY8F/+8pcqW+e+//57JTfBBh/QwA0f3qyLVn2fEDGQgBAuCCc+9thj1bxE6La12T0ukfkhNB3RN7iX4IYysQ899JDKq6Gb13PLbn+JyhBbPyDZIM9DNZTE7du3rxICEG34H47FXEKUCrZI6YgT6/l231vsHpeo/DAu62sTkgkVii655BIl0JHM2c17gd33DLvHJTI/SDS8LyASCdGbyCl2/PHHV/v7xjno7CmGkifowe7ffa+Pczb6+B8dSp5Y5ypee/hyAtEmoV7ruAO77w92j4s/FY6ABEggFAHKE84LEiABEiABEiABEiABEiABEiABEiABEqiBAOUJpwcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJ5wDpAACZAACZAACZAACZAACZAACZAACZCAOwKMPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAmkCAHKkxR50LxNEiABEiABEiABEiABEiABEiABEiABdwQoT9xx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIpQoDyJEUeNG+TBEiABEiABEiABEiABEiABEiABEjAHQHKE3fceBYJkAAJkAAJkAAJkAAJkAAJkAAJkECKEKA8SZEHzdskARIgARIgARIgARIgARIgARIgARJwR4DyxB03nkUCJEACJEACJEACJEACJEACJEACJJAiBChPUuRB8zZJgARIgARIgARIgARIgARIgARIgATcEaA8cceNZ5EACZAACZAACZAACZAACZAACZAACaQIAcqTFHnQvE0SIAESIAESIAESIAESIAESIAESIAF3BChP3HHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAilCgPIkRR40b5MESIAESIAESIAESIAESIAESIAESMAdAcoTd9x4FgmQAAmQAAmQAAmQAAmQAAmQAAmQQIoQoDxJkQfN2yQBEiABEiABEiABEiABEiABEiABEnBHgPLEHTeeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCIEKE9S5EHzNkmABEiABEiABEiABEiABEiABEiABNwRoDxxx41nkQAJkAAJkAAJkAAJkAAJkAAJkAAJpAgBypMUedC8TRIgARIgARIgARIgARIgARIgARIgAXcEKE/cceNZJEACJEACJEACJEACJEACJEACJEACKUKA8iRFHjRvkwRIgARIgARIgARIgARIgARIgARIwB0ByhN33HgWCZAACZAACZCADQIff/yxPPvss3LdddfJaaedZuMMHhKOwO7du2XBggXyxhtvSI8ePeSss84iLBIgARIgARIggRgRoDyJEWhehgRIgASSncCePXvkp59+klmzZsmnn34qO3fulAMOOEBGjhwp+fn5EW+/uLhYhg4dKqtWrQoci8X2zTffXOXcvXv3ym+//SYTJkyQb7/9VkpKSiQtLU2aNWsmJ5xwglqgb9iwQX7//Xfp3bu3LF26VL766iv58MMPpbS0VBo1aiRjxoyRNm3aRBzT1q1b5d5771ULVt3+8pe/yPDhw6V27dpVzsc1J06cKJ9//rksX75cwAP3fdhhh8n5558vLVu2VGM+99xzq52rO0IfgwYNkhUrVlQbWygWEW8gAQ5IFHny/vvvyzPPPBMggnnw4IMPqjkaqj3++OOCsVtbuGcfC8yYG5g/06ZNk8LCQhk4cKCcffbZsbg0r0ECJEACJEACJCAilCecBiRAAiRAAp4SgNx48skn5aOPPlJS47bbblMSI1KzLm6PO+44JRHq1KlT5bSNGzeqKAYImpNPPlnOOeccadWqlbrO5s2bZd68efL8888reXLttdcqUaGbtf+LLrpI+vXrJ7Vq1apxWF9//bXcd999UlZWJocccojcddddUlBQUOUcRANgkf3vf/9b9t13X7n00kulc+fOkpmZqc6D6HnxxRflhx9+kCOPPFLuueceycnJCXtd8Pvll1/UdSGGcM4dd9wheXl5Vc757rvvpGHDhrLffvtFQhuT3yfaeELdNGTY5MmT5aWXXlJyb//995cHHnhAmjRpEpLRtm3b5JFHHpF169aFfPYxARt0ET2PKU/iQZ/XJAESIAESSGUClCep/PR57yRAAiQQJQJY4I0fP14gOyASEL1Rt27dsFfDcRATiBaBjAi1MFy7dq0SCn/++afceeedcuyxx4aUHzgOkSEHH3xwlagVRKkg0mDXrl1KgCD6JFiEWAeI40aNGiVz5sxRYwoV+YGfQ4zgfs844wy5+uqrJSsrq9p94rh//vOfKlIGi/EGDRrUSH7Hjh1qUQ8ZFIoF+oMk6tOnjxIA8W6JNp6aeEBOTZ8+XT1btGOOOUaGDRsWdn7i2SKSKDgCKl7MIfTuvvtuRp7E6wHwuiRAAiRAAilLgPIkZR89b5wESIAEokcAC87Vq1fLN998I2vWrFEyo3v37mEviK0uM2fOlC1btqgtMsHCAIvzxx57TKZMmSJ2okYWL14sX3zxhQwYMCBwTYiLSZMmyaZNm9Q1+vfvr/oK19DH66+/riJIZs+eHVKeYNwPPfSQtGvXTv7xj39Uiw6x9o3ImOeee06uuuoqY3kCruPGjZP7778/IeRJoo0n0szGXEAEEyJREN2D7S/XXHONZGRkVDs10eQJxo5IJEaeRHrK/D0JkAAJkAAJeEuA8sRbnuyNBEiABEhAREVi4Bt+RFC8/PLLSpxgwRcqKgMLWESEnH766fLJJ5+EjLaA7EC0Sf369W3lK0G+kalTp8rxxx8fyC+CReeXX36pImEgPNq2bRs2HwvOh5zAVp0lS5aobTnBkSeIlsE9YVsOtib17ds34rP//vvv1VabffbZp8Zja4o8QU4YRPKsX79esYh35EmijSfiQxBREUCYC126dFFzD9urkND2zDPPrBbNRHlihyiPIQESIAESIIHkJ0B5kvzPmHdIAiRAAjEngAUnGvJ1IAksErVCWEBcBDeIEciJG2+8UcmA4K0qWmQgasROzpBwN6sXzH//+98jSg9s00Bkwu233y6vvPJKSHmCaBRsrcF2pIcffthTiRFOniBvChb7yOlibVaxU15erhLkQlqtXLlSRc5ge89ll10WSNyLSB4k9/3ggw+UzEH+F9wvtrMgT8wVV1yh8shgiwhyufzxxx/qcsgvg2idE088Uf0+0nggxvA8UR0Gcik4wSnGOnfuXHn11VfVNZCD5tBDD1XXx7YrnZNGV5lB0l/kJ7nhhhvUdipsXULy1COOOEIGDx6skgHbaXou3HTTTSoJK+4dnLAdBtt4rM0qT4IT+loTyFpz6mjJB7GFe8RzwO8RzYQEyuDyxBNPyMKFC6Vx48Zq7IcffrggxwpYIV8Q5gByBSEixrrlzRp5ggTJ2DaGqC00VN+55JJLquUKwhY0JDN+9913Fa/c3Fz1LJDIWCc+Rl4XRGshumvIkCHqNYuxIj8Ptsshnw8bCZAACZAACaQyAcqTVH76vHcSIAESiBIBLU+QBwRbVbBIR4LXW2+9tcrWCJ1XpFevXnLUUUeFzPOBCA8s5pDrxKTijF4wI3eFXuhioY4oDiwmdUPEzAsvvKCiXCAKdNWV4Gs//fTT6r5at25tK4+JE9SRcp5gTFjoBkee6NwqWPgikgKLblQ+gmTA1iLcK6J/ZsyYIUjwij6wQEfuF0TYYPsNqs8gHwgEDBL/ghdkCcQBfg5hErwNK9R4sEjHNcAIzy54mwmePaQFpAnmBTiiyhC2ZyFhLo5HNBKOwzghWfR4IXEwng4dOqjqRvg5BNEtt9wi6enpEVFb54JmhjkRqgJPcOQJ5gdkBVhgzlorL+Ge8W8dFYRkvhj3jz/+KO+9956quAS5MX/+fCVp8HOIElwXog6RV7g3/Pv//u//FI/g7WVankB+/Pe//1UyCclvIZPw/8E5XCBqRo8eraKdkMwYDdvR3n77bVWdClFTiJ7Cc33nnXfU75G7B9f59ddflWzB6w+vXzYSIAESIAESSGUClCep/PR57yRAAiQQJQJanmCBh0U5ok/QsNhv37594Kr4HaIOsHDEN/+hkqRiWwgWb0gEG1xBx8nwrQtmXRY5VD4W/G7s2LFqUYnyx6HkCbZ5YPGMRbtJNEy48buVJ6gkg+gM5F/R5aERuYMktdjGZF2IIwoC3HEcpAoW+liMIxIBP8OzAB9rgltEJSDKJvg5hJM5uD9EO0CgBcsTjBNRLRgrokx0w2Id8wUCAtFKEFxoWNwjsStKTENQQESgFRUVqcgNzB87yXhxjnUu4N8QDHieEB0QIohA0dEeobbtLFu2TI3xoIMOqiJP9HOD/LGKLeRVQfUoXAd9454QVWOtTAVBhYiaevXqqfvS14D0slZo0vIE49TPD8fr7VNWUYX+UVkIkS/WbXMYBxgi+kiLMD1PIIYQwYJoJIgr9AehFmrLnZPXH48lARIgARIgAb8ToDzx+xPk+EmABEggAQlY5QkWYFhIIkIA2wTwrTYWjta8ItjSEU4Y6EUkoilMkmRaF8x6Ufnmm29Wy8eCn+Faepyh5Il1rNatG149CjfyRJ/TokULuf7666sMRUfaICoBVY0gSDRX5KNBxIa1bDOeDaJOsH0JWzZ0ZI5euAdH4dQkT0KV1tX5YrAlRG990gPWkT+IgrBGk+jxooy1tfKNvm/IA8gTO1t3guUJrq2rNOE61gSyXsgTvd0H1wkWPOFKD4c7p6aEsYgognDScxLbgCAeIUMQxWNtel7jd3q+4Gd4nXq9Dc2r1wX7IQESIAESIIF4EqA8iSd9XpsESIAEkpSAVZ7gFkMlfMXC/KmnnlLf4CPvQzhhoL+1x+LYutBzii54wYzrB+djwaIei09U6dGJWEPJEyzwkVAWeSSQCwKLTR3p4XRcoY53I0+C83GE6te6xSicjAh1HvJhIC8NokVQNchUnuiol06dOlWJ3NDX1oLAyjaSPAmO9qjpOYSSJzge21cQGQKWOoEsth0Flyp2GnkSK3mCKBHIEsguSBpE7+g5Ho6HVf7VJMG8mNfsgwRIgARIgAT8TIDyxM9Pj2MnARIggQQlECxPsE0AW0MgUa688kqVSwQRHkg6qssFhxMG1p8j6gBbN7BFw2kLXjBbE9HqfCyowII8HYhs0LkzwuU80REDyDkBeaK3kTgdl1fyRC/ozznnnEBui5rGYkeeYLsHEpsiEufCCy9U3BGJYipPtBwJF7Wjx5aXlxeI1IiFPAEvbN1BUl40iBRsXfKLPAmWNGCG7TrYmoPXTqRGeRKJEH9PAiRAAiSQygQoT1L56fPeSYAESCBKBILlCS6jq9M0b95c5X9ANRidKBS/rynaAklPH330UZWDBPlImjZt6njkoaINrPlYkFcCSTohCXSeDVwknDzRkSuIjLG7OLU7aDeRJzpCB7lLwpWFtl6/JnmCyBokMkW+DFRBQmJRiC6vtu2gZDMkGOZCqK02ofJ9xEqe4N51BZ4GDRpIx44dVSSHdatQokae6PwvEHmYz6tXr1aRKNj+pLeh1TQHKU/svkJ5HAmQAAmQQCoSoDxJxafOeyYBEiCBKBMIJU90ngtsjUDlD0QdWBd0NQkDiAFEAeBcRK5cfPHFVXJ0BN8OKqigcgm+bccCGC2UPEE+FpRjhdhBrhAk58Q2B2tyzHDyBJErqMqDhKihqvaEQowxoG+rnAl1nBt5oqN7sCUmVMldMEHC1549e6pkqDXJE/27Ll26KNGlo3C8kic6YS/+P1QJa50c9m9/+1sgMilW8gTPw1qBB/8OjrRJVHmit0Ohog8iujRnzCdE0yBVx6zVAAAF9ElEQVTxq7VhzqA89amnnqrkGOVJlP8wsnsSIAESIAFfE6A88fXj4+BJgARIIDEJQCignXvuuVUGqCNIsHgPrrwTSRjofBRbtmxRC/rjjz8+pEDBwlfnIrFKiq+//lqV3w1OjqrzsUCGBJfgxeDDyRP8zlql5ZRTTlF5MpCMNVRbtGiRqjx05plnRiynG4kFxjRt2jRVghaVapDsFFtckDAUETpIxArxgDLEYA1x9dZbbymRdMEFF6jhhRMkWjQhegXJZHUUCyIysNBGVRrIhJtuukmQkBT9hxsPRFGohKjo64033lDRR127dlXXsHLDli5EvuBayNOix4soCsifUAljneQ8CTcXgsWCrsATLE90hAcq40C+6Xw3YApJsWnTpipJV2OR8wTz/plnnpGff/5ZJeHFdjJrYmQ8eySGBe+MjAxVpQj8e/TooZ6znuvWeZWYf104KhIgARIgARKIDwHKk/hw51VJgARIIGkJYOGIBSUaFsVY1OumvwlHolBIDB3RgEUevjWHvEB+DUSMQJDUqVOnCicICPSNBKaoHINv1/FtOnJxoHwwBAvEDRLLYruFbpARKJeL0qzIvWLNT6IjNnAsfqdL1OLf1vKvhxxyiKpUU1BQUGVMEBPYeoJcGVjoX3755arcLbZ6lJeXq2//kWgVSXHPOOMMtXCtqYEFRAByiyDiBtEfkAZWji+++KKSIeDUuXNn2b59uxJVuM+nn35alSUObuCFrTK4P4xr0qRJSnpgXFhst23bNnAK7hvHYuzIB4PnpaNmUA4Z/0aJZjA5/PDDJdx4dF4ZjAfVXlDiWEf1aPE0b948gXhCaVyMDXlnnn32WSVnMGY0jBeRRMi/0qFDBxkxYoQ0bNhQ/Q5jxTzDnLjzzjulW7duNUYl1TQXgpn98ccfqu9jjz22irCxVpDC80GZ4R9//FFtQ5o/f75iBS4QFagktXTpUhUNhPmO0swocYyGfjAvIYqsfKyvBxxnPQeyTz9HbKnC/YLze++9pxjdf//9gWTHOBdzCOdjfMHNWlUIzxrHQb7gdYV5zPLESftnmjdGAiRAAiTgggDliQtoPIUESIAESKA6AWu0hPW3wUlBsciD8NBRITVViQn+xh/94jpz5sxRi0Usbnfu3KkWpegTC/2TTjqpinTRkSPWMVmrzuDniEhBRAvO19eAUMDCPriFSnKKxT0WyCivu3DhQhXpgYYcLVhAQ5rYSShrlwUWxIg6wfYWLLr79+8fiNzAgvyzzz5TcgU5L1C6F9syUCYa0R3hnlMwa+QlQX4ZXAsiAAv17OzsgNQZPHiw+rleoAePB1IjuNJLMPfgsaJ/yAhszWrVqlWNzwJlq9EQbWFtoeaM/r2duRD8vCHFIET09fTvwQV88Ds8Z/CBTILcgyCDgMA2MJR8RqWi4DFinMF86tevryKycHzwOdYy3WALSThr1iw11/QzhkALFo64LiKEcDzkCsaNLWoY31//+lc1Vr0dyzpGPRZddYp/80iABEiABEgg1QlQnqT6DOD9kwAJkAAJkAAJkAAJkAAJkAAJkAAJ1EiA8oQThARIgARIgARIgARIgARIgARIgARIgARqIEB5wulBAiRAAiRAAiRAAiRAAiRAAiRAAiRAApQnnAMkQAIkQAIkQAIkQAIkQAIkQAIkQAIk4I4AI0/cceNZJEACJEACJEACJEACJEACJEACJEACKUKA8iRFHjRvkwRIgARIgARIgARIgARIgARIgARIwB0ByhN33HgWCZAACZAACZAACZAACZAACZAACZBAihCgPEmRB83bJAESIAESIAESIAESIAESIAESIAEScEeA8sQdN55FAiRAAiRAAiRAAiRAAiRAAiRAAiSQIgQoT1LkQfM2SYAESIAESIAESIAESIAESIAESIAE3BGgPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAmkCAHKkxR50LxNEiABEiABEiABEiABEiABEiABEiABdwQoT9xx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIpQuD/AdcvFELuB5fAAAAAAElFTkSuQmCC", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Number of Sources 'on'", + "line": { + "color": "rgb(248, 156, 116)", + "width": 3 + }, + "mode": "lines", + "name": "Number of Sources 'on'", + "showlegend": true, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + } + ], + "layout": { + "autosize": true, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Number of Sources 'on' against MCMC iterations" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0, + 4999 + ], + "title": { + "standoff": 20, + "text": "MCMC Iteration Number" + }, + "type": "linear" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + 1.9444444444444444, + 3.0555555555555554 + ], + "title": { + "standoff": 20, + "text": "Number of Sources 'on'" + }, + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQeYFEX6xr+Znd0lChwoKooioBIUEDAgQVEBsxgRA2bP8L87E2IOqCCi55kQPRVzQhEDZs6EYE4gSJCgAqIoCggb5/+8tdRs7WzPdPd0ze6Et57H546d6uqqX1WHevsLoWg0GhUWEiABEiABEiABEiABEiABEiABEiABEiABRwIhiidcGSRAAiRAAiRAAiRAAiRAAiRAAiRAAiSQmADFE64OEiABEiABEiABEiABEiABEiABEiABEkhCgOIJlwcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUDzhGiABEiABEiABEiABEiABEiABEiABEiCB1AjQ8iQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEggywhEo1H56aef5LnnnpOPP/5Yrr/+emnfvn2WjSJ4d3///XeZOnWqvPbaa7J69Wpp3Lix9OrVS0455RTZZpttgp+ALZBAjhJ444035N5775W9995bzjvvPGnQoEGOjpTDqmsCGzdulLvvvltmzJghf//732XQoEF13YV6Od/XX38tN9xwg7Rr105GjRolLVq0qJd+8KQkQAIk4JUAxROvpFiPBHKEAF7SRo8erQQEs+y5557q5QWb6URl0aJFMnLkSPnzzz9rVTnkkEPkn//8Z0ZSmj17tkycOFHmz58vlZWVstlmm8m4cePyTjzB/N1yyy1y9tlnS7du3WTp0qWKw8KFCxWTMWPGyI477phwDiFAzZ07V5599ln54osvZP369VJcXCw777yzHHjggbL77rvLr7/+Kv/73//ktNNOy8i1kEudWrJkiVxxxRVqw3HNNdfI5ptvXm/Dq6iokAceeEBeeOEFtfk79NBDJRQK1Vt/bJ/YvG9m6/0D1+x7772n7v2rVq1SiMLhsFx11VXSt29fX8hKS0vV/eKDDz6ocdy2224rt956a8JNMDh+/vnn8uabbwruy2vWrFHHN2/eXLbffnvZZ599lDgViUTUehoxYoT67e2331b3nA8//FDWrl2rjsGzCvevZPcsp0HhnJdddpm675kF9y+wSCSK4d6G8aIvixcvlpKSEsWvVatW6n667777Svfu3QX32ZkzZ8qpp57qman5bHXrh+dGs6Dif/7zH3n55ZdVT7GeIOSzkAAJkEAmE6B4ksmzw76RQBoJ4EVw8uTJarODjQ/K0KFD5ayzzlIvrskKXryxCcdXI9Q//PDDXY9J41A8Nz1lyhS555578lI8gZXJlVdeqb7wXXTRRVJQUKC44e8333yzssq58cYb1QbGqZSXl8t///tfAcPevXvL0UcfLdttt506/p133lEvwBBTUDJZSPO8WLKg4ksvvSR33HGH6uk//vEPJVjUV8GG9JJLLhEIOlhDuD9g05tL5d133xVs9rLd8gT3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AiRAAiRAAiRAAiRAAiSQ9QQonmT9FHIAJEACJEACJEACJEACJEACJEACJEAC6SRA8SSddNk2CZAACZAACZAACZAACZAACZAACZBA1hOgeJL1U8gBkAAJkAAJkAAJkAAJkAAJkAAJkAAJpJMAxZN00mXbJEACJEACJEACJEACJEACJEACJEACWU+A4knWTyEHQAIkQAIkQAIkQAIkQAIkQAIkQAIkkE4CFE/SSZdtkwAJkAAJkAAJkAAJkAAJkAAJkAAJZD0BiidZP4UcAAmQAAmQAAmQAAmQAAmQAAmQAAmQQDoJUDxJJ122TQIkQAIkQAIkQAIkQAIkQAIkQAIkkPUEEoonixYtknnz5sk222wjbdu2lWbNmkk4HM76AXMAJEACJEACJEACJEACJEACJEACJEACJOCHgKN4smbNGrnkkktkyZIlsbYgnLRq1Ur22msvOfXUU6Vx48Z+zsO6JEACJEACJEACJEACJEACJEACJEACJJCVBBzFk/Lycnn66aflrbfeks0220y6d+8unTt3lvbt20vz5s0lEolk5WDZaRIgARIgARIgARIgARIgARIgARIgARLwS4AxT/wSY30SIAESIAESIAESIAESIAESIAESIIG8ImBdPFm9erWMHz9eRo4cKS1atMgrmBwsCZAACZAACZAACZAACZAACZAACZBA7hHwLZ6sX79eFi5cKH/99VctGmVlZfL222/Ljz/+qAQUiie5t2A4IhIgARIgARIgARIgARIgARIgARLINwK+xJOPPvpIxowZIxBQkpVtt91Wbr31Voon+baaOF4SIAESIAESIAESIAESIAESIAESyEECnsUTCCbXXnutfPPNN9K3b1/p1auXSl9sFlqe5OAK4ZBIgARIgARIgARIgARIgARIgARIIM8JeBZPfv/9d7noootkv/32kxNOOCEhNsY8yfMVxeGTAAmQAAmQAAmQAAmQAAmQAAmQQI4R8CyeVFRUyO233y677LKLDBo0KCGGyspK5dbTuHFjCYfDOYaLwyEBEiABEiABEiABEiABEiABEiABEsg3Ap7FE4BBoNg333xTzjzzTIlEIo6s/vjjD7n//vtVnXi3nnyDy/GSAAmQAAmQAAmQAAmQAAmQAAmQAAlkPwFf4gmGO3v2bFmxYoXsv//+EgqFahAoLy+XmTNnyuOPP64CyzLbTvYvEI6A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k0LcMYdThARIgARIgARIgARIgARIgARIgARIgAQMAgnlyaBBg6Rnz55qi9iioiISIwESIAESIAESIAESIAESIAESIAESIIGCJJBQngwYMECw7i+d46CDDpIhQ4YU5FbF6fDiOSRAAiRAAiRAAiRAAiRAAiRAAiRAAu4lkDTy5LTTTpOOHTsmlSCVlZUyadIkefrpp6WqqkqOO+44ueKKKyhO3DvmbBkJkAAJkAAJkAAJkAAJkAAJkAAJkIANAo5yniCp7COPPCLTpk0TbFXcp08fgXAp5K2KbbBnURIgARIgARIgARIgARIgARIgARIgAQ8QiCtPgsGgLF26VNq2bSt+vz9uN3799VcZPny4fPXVVyrK5Nprr5WjjjqK+VE8MOhsIgmQAAmQAAmQAAmQAAmQAAmQAAmQgHUCceVJqtMXL14sw4YNEwiUli1byuDBg6V169apTuPfSYAESIAESIAESIAESIAESIAESIAESMBzBGzJk+rqannvvffksccek/Lyctl3330Fu/I0a9bMcx1ng0mABEiABEiABEiABEiABEiABEiABEjACgHL8mTLli3y5JNPyjvvvCOQKF27dpV+/fpJrVq1rFyHZUiABEiABEiABEiABEiABEiABEiABEjAkwQsyRNzfhMmhvXkOLPRJEACJEACJEACJEACJEACJEACJEACaRJIKU+WL18ud911l/z8888qMewNN9wghx9+eMLEsIhKwS48KOvz+dJslvdOQ2TOSy+9JFOmTBFs34xdh8477zxG5sQZSmxt/eijj4b/UlpaKvfcc4+0b98+/G8bNmyQp556Sj744AOVtLhXr14q2il6Jyer5bw3o+K3+LfffpOJEyeqOXb55ZfHLWSVie5yXmOM7yokxsY26z169JCDDjoobhfw2b7zzjvl008/Df+9TZs2Ku9Tw4YNw//29ddfqyWNqHO33XaTK6+8Uvbee++YOq2W8xJPCHZEJn700UfqM4p7RN++fWOWdIZCIZkzZ4488cQTsmbNGtl///1VsvEWLVpEdFd3OS+xRN8XLlyo5tKKFSukSZMm6n6C/8VL4D5v3jy5/fbbpaKiItzN/v37S5cuXcL/bfX+ZLWcl3iirfjMPfzww7Js2TLF88ILL5TOnTvH/Eax2n/d5bzE0/hsYqdFfO7x2b3qqqvU92dRUVFMV3i/tze6U6dO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/vnny0EHHRTujtX+6y7nJZ7YJQ/fl1gOhwgz3LcxJ8ePHy9XX311OGEs7/fpj2o8eYLarN47dJdLvyfuODOePIE4hcjDcvF99tlHsHUxIiBxrzJ/JxT6vcgdI8hWkID7CFCeaBoThGAiWdU777yj3vhhu8ju3burbU15iOAH55NPPil4a4cbEh6c8LCKB0vzA6vBCluVojwiTvAggB+6xx13XMxbWKvl8mEMjN2bzH2Jt5OTVSa6y3mJcfTuG2g73jaZk5kiagTRT8jgHwgElByA6GvZsmVMVzGnkd8IeRSw/TZ+kOEhFiHX5sNqOa+whDhBODkYxTsgSyH7jCgICBVIKfx4xblIlghOCKc2H7rLeYUnwukhliDg4x3YZrRLly4q1B9yCf9DWfBDlMqxxx4bZm0+3+r9yWo5r/A033cQDYY8PEcffbQS+PGWllntv+5yXuGJzyxeDGEZCT6jO+ywgxIpiDhD8mzj4P0+/RFNJE+s3jt0l0u/J+44M548gdTHPMZvIAhA/LZM9J1QqPcid4weW0EC7iRAeeLOcWGrSIAESIAESIAESIAESIAESIAESIAEXEKA8sQlA8FmkAAJkAAJkAAJkAAJkAAJkAAJkAAJuJMA5Yk7x4WtIgESIAESIAESIAESIAESIAESIAEScAkByhOXDASbQQIkQAIkQAIkQAIkQAIkQAIkQAIk4E4ClCfuHBe2igRIgARIgARIgARIgARIgARIgARIwCUEKE9cMhBsBgmQAAmQAAmQAAmQAAmQAAmQAAmQgDsJUJ64c1zYKhIgARIgARIgARIgARIgARIgARIgAZcQoDxxyUCwGSRAAiRAAiRAAiRAAiRAAiRAAiRAAu4kQHniznFhq0iABEiABEiABEiABEiABEiABEiABFxCgPLEJQPBZpAACZAACZAACZAACZAACZAACZAACbiTAOWJO8eFrSIBEiABEiABEiABEiABEiABEiABEnAJAcoTlwwEm0ECJEACJEACJEACJEACJEACJEACJOBOApQn7hwXtooESIAESIAESIAESIAESIAESIAESMAlBChPXDIQbAYJkAAJkAAJkAAJkAAJkAAJkAAJkIA7CVCeuHNc2CoSIAESIAESIAESIAESIAESIAESIAGXEKA8cclAsBkkQAIkQAIkQAIkQAIkQAIkQAIkQALuJEB54s5xYatIgARIgARIgARIgARIgARIgARIgARcQoDyxCUDwWaQAAmQAAmQAAmQAAmQAAmQAAmQAAm4kwDliTvHha0iARIgARIgARIgARIgARIgARIgARJwCQHKE5cMBJtBAiRAAiRAAiRAAiRAAiRAAiRAAiTgTgKUJ+4cF7aKBEiABEiABEiABEiABEiABEiABEjAJQQoT1wyEGwGCZAACZAACZAACZAACZAACZAACZCAOwlQnrhzXNgqEiABEiABEiABEiABEiABEiABEiABlxCgPHHJQLAZJEACJEACJJALAm+//bY89thj0q9fPznppJNy0YS8uWZlZaUsXLhQXn75ZenYsaOceuqpedM3doQESIAESIAECp0A5UmhzwD2nwRIoGAIVFVVyddffy2zZ8+W9957T8rLy6VNmzYybNgwadiwYUoOv/76q9xwww2yatWqcFk8bF9zzTUR54ZCIVm2bJlMnjxZPvvsM1m/fr34fD7ZYYcd5N///rd6QP/jjz/k+++/l86dO8vSpUvlk08+kSlTpshff/0lTZo0kREjRkirVq1Stmnz5s1y2223qQdW4zj00ENlyJAhUqtWrYjzcc13331XPvzwQ1m5cqWAB/q9//77S/fu3WXHHXdUbT7jjDNizjUqQh0DBgyQn376KaZt8Vik7IALCrhFnkyaNEkeffTRMBHMg7vuukvN0XjHAw88IGi7+Ug09tnAjLmB+TN9+nRZs2aNXH755XLaaadl49K8BgmQAAmQAAmQQBYIUJ5kATIvQQIkQAJuIgC58dBDD8lbb72lpEb//v2VxEh1mB9uO3XqpCRCWVlZxGkbNmxQUQwQNMcff7ycfvrp0rJlS3WdjRs3yqeffipPPPGEkieXXXaZEhXGYa7/KskNQQAAEZ5JREFU7LPPlt69e0tRUVHSZs2bN09uv/12qaiokL322ktuueUWadasWcQ5iAbAQ/azzz4ru+yyi5x33nnSvn17KS0tVedB9Dz11FPy5ZdfykEHHSS33nqr1K5dO+F1we+bb75R14UYwjk33XSTNGjQIOKcBQsWSOPGjWXXXXdNhTYrf3dbe+J1GjJs6tSpMm7cOCX3WrduLXfeeadst912cRn9/fffMmrUKPntt9/ijn1WwEZdxJjHlCe5oM9rkgAJkAAJkEDmCFCeZI4tayYBEiAB1xLAA95LL70kkB0QCYje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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter = elq_model.components[\"source\"].plot_iterations(plot=plotter, burn_in_value=burn_in, y_axis_type=\"linear\")\n", "plotter = elq_model.components[\"source\"].plot_iterations(plot=plotter, burn_in_value=burn_in, y_axis_type=\"log\")\n", @@ -563,10 +462754,78639 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "id": "1c2058b5-4655-46ea-ab41-5551840b69d6", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 0", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgb(250, 231, 184)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 0.0014669410086606076, + 0.0004176050878489616, + -0.00022938137698525488, + -0.0003545391409071656, + -0.0004095487644462397, + 0.0003360745034889504, + 0.0010186974501970505, + 0.0010326482966657767, + -0.002187700981169795, + -2.20378504633748e-06, + 0.0014184202720227378, + -0.0001090762178514777, + 0.0008607153957351094, + -0.0003256972049288041, + -0.0017518492112961206, + -0.0009570430065181932, + -0.0004242571858891229, + -0.0015637291396799321, + -0.0013582669096586831, + 0.0003828442570700818, + 0.00017479957580277287, + 0.0014032587634241805, + -0.0010928638852340895, + -0.0003408188641952017, + -0.0021767219554672313, + 0.0008259492687958586, + 0.0005385768865451727, + -0.0012265350423014585, + 0.001188667582520299, + -0.0005068959655728795, + 0.0004020318896230689, + 0.00037304213140802137, + -0.00023609347928114878, + -0.0010182211127400878, + -0.0006962266963266421, + -0.0010213388164462534, + 0.0020854575898188125, + 0.0018452383539374168, + 3.778240851008333e-05, + -0.0011120525766697721, + -0.0026707146129197547, + -0.0004911766725086844, + -0.0005304709465731596, + -0.0019030063166717954, + 0.0009905427706474147, + 0.0004269627281508071, + -0.0014437718767133785, + -0.00041022134049111545, + 0.0010165004396162126, + -0.0003125390491652364, + -0.0002693472973766761, + -0.0005261275446106617, + 0.0005511655201900107, + 0.0001937248114272768, + 0.0002025935347021905, + -0.0014171566266417196, + -0.002318892836858471, + 0.0015511703564577537, + -5.996264661750087e-05, + -0.00017943565831566688, + -0.00029392656154704277, + -0.0013907398264673052, + 0.000492005896938507, + 0.0010564638542046741, + -0.0006369837143281505, + 0.0013425862157474648, + -0.00010949055814152156, + -0.00056408247377704, + -0.0005747187858383991, + 0.0006089097528110041, + 0.0004931551998321227, + -8.41010297992609e-06, + -0.0013848127320767439, + -0.0007220184448311896, + 0.0012223682040267045, + -0.0005502896672590674, + -0.0006838334742298032, + -0.0004036777797577894, + 0.0001704166391149418, + -0.00030974289358869816, + 0.0005437094152810494, + 0.0011277876061412118, + 0.00048353189272289717, + 0.00020192685289058027, + -0.0012662847829611832, + 0.001373725167672892, + -0.0005627246564371846, + -0.0006016119993508501, + -0.00060806543934596, + -0.0009247067730935089, + -0.00015102881587684364, + 0.00023853799054790028, + -0.0007643616492182781, + -6.208204474615812e-05, + 0.00024319374326802696, + 0.002101871367417518, + 0.002406500093749241, + -0.0013619014356853788, + 0.00024695083794410214, + 0.0005569696312574165, + -0.001561883451663186, + -0.0023400963470538256, + 0.0007802721814431519, + -0.0003992541879633809, + 5.1848364876699874e-05, + -1.2657860278666825e-05, + -0.0008729004870337789, + -0.0006281313169220453, + 0.0016511939759728475, + -0.00039996792416071745, + 0.0020435057841071934, + 0.00029743246182483487, + -0.0020198345821348584, + 0.001172168041513664, + -5.564005544087931e-05, + -0.00022633826910584668, + -0.00046258514728857094, + -0.0009585845855167503, + 0.00069776915773562, + 0.0005927832666925504, + 5.275578187926764e-05, + 0.0009401861201985042, + 0.0005754130094372579, + 0.00012650715641680246, + -0.000800921783793872, + 0.0004287226427178397, + 0.000672130871726954, + -0.0003955334075189061, + -0.0005062568311763446, + 4.288849697724089e-05, + -0.0008533000308205977, + -0.0008481697228678775, + -0.0011867909740869624, + -0.0015501003435376113, + 0.0001911734797321233, + 0.0010365309617426754, + -0.00174077060163738, + -0.0005223807856117244, + -0.00010518757456500478, + -0.0006606992235103022, + 0.0003527709344073573, + -0.0014686998527834486, + -0.0004597985602260978, + 0.0006862727980854954, + 0.0003787051394667699, + 0.0012067764707688164, + 0.0006487705388526091, + 0.0011359117367337299, + 0.00014701779905507186, + 0.0005517142444495379, + -0.0009109331994270537, + -0.0003010620428104183, + 0.0009150942032648688, + -6.519809790122039e-06, + -0.0013178232565040427, + -0.0008795255938615901, + 0.001162758269175413, + -0.0007426692306449609, + -0.0018814743938727993, + -0.000418481116203577, + 0.0006902832384077052, + -4.438586273535391e-05, + 0.0006404551511580748, + 0.0005977552611443365, + -0.0009610998215319411, + 0.0005362269672989931, + -0.0004781779388862744, + -0.001830979028051998, + 0.001857424199664023, + -0.0015945575279553634, + 0.0012619192013005184, + 0.00011337999595702441, + -0.0008501315384019447, + -0.0008435876221458329, + 0.000253292193111017, + -0.0008385923094158802, + -0.0004532394189343372, + 0.0004865408770103253, + 0.0003241875035981894, + 0.0012068038813373577, + 0.001136542501752612, + -0.0012497790054968715, + 0.001857808683077015, + 5.170699427531387e-05, + -4.461254610875172e-05, + -6.44417738816062e-05, + 0.0018414124285299736, + -0.0012196683861482776, + -0.000758731445947869, + 0.00077990062193333, + 0.0025200982929235766, + -0.0004298534685224885, + -0.0007085138509333518, + 0.0003621059210316573, + -0.0007975541110937011, + 0.00038318249262105764, + 0.001060256474784463, + -0.00011324818379165142, + -0.0010203763466913997, + -0.000992799433390788, + -0.0013742556534056644, + -0.0007366612113519653, + 0.00019113718483872275, + -0.0003798154187657285, + -0.0007043630170530315, + 0.0002285129001159103, + -0.0007872273545233721, + -0.00024159484623139128, + -0.0003479949218676003, + 9.434805505883574e-05, + -0.00010925574239280749, + 0.0006536600340867774, + -0.0007897962924539389, + -0.0008711976743225299, + -0.00021431326929544932, + -0.00138337506892509, + -0.0004962645205646158, + -0.0016628591379321525, + 0.0005334427978876787, + 2.627792053359633e-05, + -0.00018255551480544203, + -0.0014036594258001528, + -0.0014316953530373144, + 0.0006122122833310859, + 0.00023911417443730866, + -0.000621389293797382, + -0.0008062380154294762, + 0.00048336755673053576, + 1.862874819755525e-05, + 0.0008614265989495008, + -0.0011162265434477671, + -0.0002887786384801181, + -0.001238513613875924, + 0.00012475109472547547, + -0.00026639716066621593, + -0.002520084395674345, + 0.0005146609552010763, + 3.9941260120005745e-05, + -0.00035598615132513886, + 0.00011195233166099041, + 0.001220501988845919, + 0.0001066445719264029, + 0.0014857129602972858, + 0.0001710236703712038, + 0.0007991343008930418, + -0.0006941580418937727, + 5.432804846124081e-05, + 0.0007910308678026374, + -0.0016524952996642887, + -0.0009086640716795889, + 0.0006648814856646534, + -0.0022182765774838293, + -0.00022445947675726573, + -0.00027878091074520767, + -0.0016124799063701226, + -0.0013038604724973785, + -0.00011274313640577261, + -0.0013938037761951564, + -0.001334706810199391, + -0.0008200284947787342, + -0.00038805650328519527, + -0.0007294882983062844, + -0.0003651031986479881, + 0.00030386447806181175, + -0.0021576672453539262, + 0.0024628528746891854, + 9.784219686688596e-05, + -0.00010568502494112057, + 0.0016048795150531965, + 0.00030755518928157, + 0.0005494068865934718, + -0.0007053907124803251, + 0.0008040581114445534, + -0.0007706931443382668, + -0.0014387134377023842, + -0.00028562459003371, + -0.0002681374271411434, + -0.000819029404574377, + -0.00022423766784030133, + 0.0004949573302190052, + -0.002245261857888485, + -0.0011764804805028343, + 0.001235355909137939, + 0.0008476830565811652, + -0.0001277434279831955, + -0.0011167178013066017, + -0.0006456508108364316, + -0.00131971785776246, + -0.0009319003137982869, + 0.0009219236669915181, + 8.372253624327614e-05, + -0.001494379919943101, + -0.0022305260140545406, + -0.0008811032443774174, + 0.0002920991120672439, + -9.686885543963426e-05, + -0.000635317230633547, + -0.000267718112824091, + 0.0014994216452558452, + 0.0005249756104155123, + -0.0004244897430402133, + 0.0015074742986848294, + 0.0003747674038253864, + 0.0007689050366507364, + -5.1194639252723995e-05, + -0.0013534970113366703, + 0.0003831099683965424, + -0.0006034455925651204, + 0.00042718603146413883, + 0.0004089150343599172, + -0.0009066388246472059, + -0.001574808056970449, + 0.00019514976683121928, + 0.0007874661728451496, + -0.000321528100445245, + 0.0015639301802927118, + 0.000742257099640272, + -0.0007866292448295636, + -0.0010387236613821158, + -0.0015487947325507738, + 0.0007681370334109068, + 0.0006002908707064365, + 0.0021949925709448628, + -0.000113342500376747, + -0.0007448710978185942, + -0.00032394420378254027, + 0.00036964145796071116, + -0.00046336539145940805, + 0.0008664082478921785, + -0.00015684490638386657, + 0.00022038175540190782, + 0.00020937175443781634, + 0.000559096049402861, + 0.0010018223576109982, + -0.0005015801829486568, + 0.0012969685431972254, + -0.000597783814481851, + -2.122057164010565e-05, + 7.231561835800474e-06, + 0.00038981660778418027, + 0.00038946007892326495, + 3.0940892677848726e-05, + -0.0001713928554420382, + -0.00022879428915038532, + -0.00015997686405879897, + -0.00018356698254428231, + 0.0003803199719511799, + -0.0006169819554978873, + 0.0007295968235663036, + 0.0010394280297349736, + -0.0012445678565068054, + -0.0011138549678405784, + 0.0006453671896675175, + 0.0004086173421806391, + -7.412014168759766e-05, + 0.0009633829399214539, + 0.0008542356639528728, + -9.831709609443403e-05, + -0.00043363163142364305, + 0.001719615155895543, + 0.0009959438197706073, + -0.0017633851338457534, + 0.0009341626270581004, + -0.00036804901581739927, + -0.0001494794929479567, + 0.0010719111923295885, + 0.001168396091744781, + 0.0005203055349458001, + -5.538895343086181e-06, + 0.0002571509139780953, + 0.0008009798879984551, + 0.0018628837585944974, + -0.000471608607812435, + -0.0015739090204890912, + 0.0010695688042854892, + -0.0005589642031744924, + 0.0025484831443560087, + -0.0004085224744138704, + 0.0001695748344467419, + -0.0007444263768759496, + -0.0012833766814059914, + 0.0017662275942243104, + -0.00040094379558630377, + -0.0005657838141114404, + 0.0019283703833803077, + 0.0007902799185302454, + -0.0002874627566777211, + -0.0005277538419645102, + 0.0009655747167402636, + 0.0003112991244380715, + -0.001036263193391559, + -0.0003204410334979498, + 0.00016382009649870227, + 0.0008951768794440519, + 0.0003951795578670083, + 0.0006523367074015231, + -0.000691975260261837, + -0.0007731460010838801, + -0.001700396333296269, + -0.00016898580299214906, + 0.0010540418283686416, + -0.000386578170676344, + -0.0009827082532759483, + 0.0005465384927491942, + -0.0013985076196398338, + -0.0010307663702067145, + -0.00022895579390100972, + 0.0004171513096137152, + 0.0017843917786221203, + 0.00015113258955427985, + -0.00030926801896755666, + -0.0014984729243537839, + -0.0008881986673529974, + -0.0004839869849805062, + -0.0009067417541875385, + 0.001111391742556928, + 0.0003801778867311786, + 0.00035795157659867946, + 0.0004265601756801203, + 0.0008762833112069135, + -9.429240982413185e-05, + 9.295816386383935e-05, + 0.0007080570080978908, + -0.0013964542858223284, + 0.0008317810972729639, + -0.00045617158939158014, + -0.0006520370781735581, + -0.0006046579399999969, + -0.00035184750602372685, + 0.00012078321880239169, + 0.00029101419714351454, + 1.669713237793064e-05, + -0.0005734131510580657, + -0.0015363577469695057, + -0.0019272150491476633, + -0.00029671417618936323, + -0.0016860285337024132, + 0.0004840914614594259, + -0.0002790986454769015, + 0.001220020894111264, + -0.00034656874665542597, + 0.0023039817655871792, + -0.0005879402662633338, + 3.39853535961e-05, + -0.0010298713194833514, + -0.0007357551186668315, + 0.0019174268527160211, + -5.541496161886496e-05, + -0.001484437567997972, + 0.0013398854588935886, + 0.0009686175183917406, + 0.0010012205481649988, + 0.0006142255712536022, + 0.0002634954541596364, + -0.001897102663544499, + -0.00035939252151105834, + -0.00014372138531769732, + 0.00031127552777815936, + -0.0009603377122753561, + 0.0009968872175718563, + -0.0008030562838189688, + -0.0016374801978344365, + -0.00030018331273047355, + 0.002391653598151991, + 0.00034100139932193664, + -0.001088414550739105, + 9.23031653831821e-05, + 0.0005510749293746338, + 0.0008871261649118191, + -0.0008005301568629238, + -1.7576365133369045e-05, + -0.0011773606878901777, + 0.0009537585660113866, + 0.0006763635626172666, + -0.0009576833129231169, + -0.0014048638818535554, + -0.00013751302537346816, + -0.0012328777491039734, + 0.000154389147140769, + 0.002406858035319626, + -0.002618851413071911, + 0.00038962381534435493, + 0.0012488485768966735, + -0.0008667773640387054, + -0.0014085899981159619, + 0.0008496293883294278, + -0.0006774297317821104, + -8.625965915969097e-05, + 0.0008725104841009191, + -0.0009776629843807406, + -0.0009658204993404752, + -0.0006766897115224551, + 0.0003288866879732884, + 0.0011182045434119932, + -0.0006112789898320312, + 0.0002650680888371304, + -0.0007087388989276189, + 0.0009861790552861726, + 0.000293027227041239, + -0.000924589395093711, + 0.0007505295099423621, + 0.0002183641721999963, + 0.0004835709697088823, + 0.0016679673169416804, + 0.0001967896262919383, + -1.7737429077448508e-05, + -0.0007076895138208211, + 0.00048702583199301195, + -0.00018537280794065416, + 5.15089329890584e-05, + 0.0006344325772616561, + 0.0001022922307091239, + 0.0010993100625879902, + -0.0005320211119842674, + -0.0016065999407341431, + 3.563093449916013e-05, + -0.0009872041662514156, + 0.0006245145390546686, + 0.0008588030636032832, + 0.0001793021122303052, + -0.0004654919706175733, + 0.00017052296827448998, + 0.0007806930852990667, + 0.0012735582297200153, + -0.0005975638040636409, + 0.0009321033359109653, + 0.001876641578707313, + 0.0002683507359439939, + -0.00014908926749792462, + -0.0017610143865382521, + 0.00022052663423729286, + 0.0009499558060371331, + -0.001081132451604792, + -0.0001948039702062185, + 0.002104679599197938, + -0.001653750736738214, + -0.00019119561035816826, + -0.0010962876617753748, + -0.001361489050997305, + -0.0009307738281167825, + -0.0006225386125455695, + 0.0010579842916097408, + 0.00037264123054894864, + 0.001567120207597795, + 0.0009110279989093472, + -0.0018962573358921675, + -0.0004396546723054669, + -0.0002832429175286471, + -0.0002807400101393904, + 9.38882365374396e-05, + 0.0004048185030540798, + -0.0020904059890879552, + 0.0008701080979568366, + 0.0004013442718728972, + -0.0003987461837203858, + 0.0006990477872714456, + -0.0009225693181219921, + 0.0006242000639338672, + 0.0017712360630568666, + -0.0008412148455470025, + -2.5719943457720635e-05, + 0.0003792107223978423, + -9.66138263079922e-05, + 0.0004754442366380009, + 0.0005063404445458719, + -0.0005006669271429488, + -0.0010242251750306884, + 0.0007138824014434268, + -0.0012879991345330726, + 0.00018929842996817087, + -0.001223391603347515, + -0.00017695852372464022, + -4.7287887765729225e-05, + 0.00045277844966034285, + -0.0011313241269935062, + -0.00012089922638951064, + -0.0008447201100825662, + 0.0005957760742919413, + -0.001035930700205584, + -0.00196638053979348, + -0.00018007793636665728, + 0.0004923861898476624, + -0.00039933232538982876, + -0.0018535040412866243, + -0.0007764433665339559, + -0.0022753122515251504, + 0.002144038693902181, + -0.00023755997840116085, + 0.0006190239270276783, + 0.0007892214779254414, + -7.055997625550841e-05, + -0.00042848205844445283, + 2.749620384381851e-05, + 0.0009658426707982842, + -0.0008878992034264097, + -0.00031684870732452935, + 0.000646664313988904, + 0.0003034145778486356, + -0.0008196612041871191, + -0.002833215306035351, + 0.0011175546678409852, + -0.00022116539242228916, + 0.0009731335083363506, + 0.0010292336538580743, + 0.0003473933862670809, + 0.0004027551246924918, + 0.0016150210606761118, + 0.0005496399824092412, + -0.0018209720424876305, + 0.0006768530862219656, + -0.0007401739625987159, + 0.0009012039134780938, + -0.00029239573781262814, + -0.0007025904488863609, + -0.0006750421826996557, + -0.0007241917547019318, + 0.00018965328252167635, + 0.0005575972177135412, + 0.0007584215403467348, + -9.212405732260187e-05, + 0.0008351686183830698, + 0.0004441411345669769, + -0.0007509478500652268, + -0.0003413825855590765, + -0.0011680566912157355, + 0.00017073587938129877, + 0.0003023493953368782, + 0.0002901102113706587, + -0.00021225806450142346, + -0.0021510175414251307, + -0.0007264363861889744, + -0.001069068679012207, + -0.0010992589887502918, + -0.0008508114546453197, + -0.0006865351234660838, + -0.0008915188009049023, + -0.0001264841195333775, + -0.0010936467461850124, + 0.00018800163928959254, + 0.000559503090462226, + 0.0010662203212796957, + 0.0008216043750846766, + -0.0003436191801502483, + 0.0008000236366349656, + -9.028949721410625e-05, + 0.000525500533080323, + 0.0010972014096708711, + 0.0009252587452064861, + 0.000821461314903428, + 0.00035811339065206746, + 0.0002477027826749413, + -0.0011073180770224515, + 0.0006042703659638294, + -0.0019530308399021458, + 0.0008920153298291203, + -0.00026158329735123225, + 0.0006393033402019177, + -0.00029894179820141273, + 0.00021570131325946332, + -0.000295409682778097, + 0.0008389243237387774, + -0.001441885304883763, + 0.0002701469769548879, + 0.0015005049584683786, + 0.0010526961155434172, + 0.0013182449013226768, + 0.0004387210309719807, + 0.0008998761900721985, + 0.0009083107838288994, + -6.455883795018958e-06, + 0.00040666713103090145, + -0.0007794806113683782, + 0.0002129890023802552, + -0.0002708201844649146, + 0.00016255677571460416, + 0.0024080488080417285, + -0.0002275601959512557, + -0.0022065337538272954, + 0.0016301192985264227, + 9.899165342852483e-05, + -0.0002556025666145831, + -0.0010258299026422093, + 0.0006882864765065884, + -0.0005621051659549435, + 0.0011721380413324872, + -0.00023983907750934594, + -0.00034695662708080914, + 0.0016377916969294375, + 0.00035657208103545145, + 0.001273495953902774, + -0.0015503981444170093, + -0.0006647532946180511, + 4.188432971780601e-05, + 0.001062661621942521, + 0.0009671159538056567, + -0.0006369324974731322, + 0.0010722428457834053, + 0.0005224791807525825, + -0.0007606472937354598, + 0.0004657693646942374, + 0.0006616526937189137, + -0.0006262420811333366, + 0.00032327409024423344, + 0.00025837419745996035, + 0.0005311335440950309, + 3.044930037603256e-05, + -0.0010077506642074982, + 0.00036513269039462173, + -0.0010682762873586817, + 0.0002775935521600259, + -0.0006313137118842054, + 0.0012033346968224354, + -2.7771871567971124e-05, + -0.000913085497033882, + 0.0008640172268976614, + 0.0009689459913016349, + 0.0005743524567664952, + -0.0004235452015989288, + 0.0011022106950369862, + -1.5896126744667487e-05, + -0.0007353276596817864, + 0.0007763824687627257, + 0.0010881876706699883, + 0.0006399911875125473, + -0.0014025949500566378, + 0.0011635295122763005, + -0.0005354002772124556, + 0.0006074971625880752, + 0.0004697251329621335, + -0.0005501555013685027, + -8.225339607718734e-05, + 0.0018380026443242854, + -0.0009079871579854175, + -0.0008506288969842132, + 0.0015841734662251764, + -0.0010407832692744504, + -0.0007090395282830554, + 9.447771401365626e-05, + 0.0005383985282947394, + 0.0014071170707140861, + -0.00015973747565060069, + 0.0005120516706177105, + -0.0010739691143995484, + -0.0007949174449968207, + -0.0015096968487160645, + 0.0002216767363389127, + -0.0003851043252657658, + -0.0002877398799239973, + 0.001312643574505132, + -0.0003621279581888253, + -9.079517195671246e-05, + 0.001612107301651266, + 0.0003434867838384702, + 0.0004471099675104316, + 0.0008202292884004745, + -0.0015672282660219635, + 0.0010410893310175194, + -0.0003080832610431722, + 0.0005618258126448508, + 1.1621856715304048e-05, + 0.0013230019071594117, + 0.000980764041079878, + -0.000283921878330055, + 0.0019696438996249627, + -0.0010243044262975471, + 0.0004810279803116901, + -0.0011219380191290636, + 0.0001904039122159786, + -0.00047936275976281093, + 0.0010761656568196362, + 0.0008560880249290579, + 0.0007907949311485, + -0.00022841182099927443, + -0.0003143023763695142, + -0.0015124039063953612, + -0.0005866647787737926, + -0.0022589025095316392, + 0.0009422501968605966, + 0.0007322843190493106, + -0.0014079825549340567, + -0.0005901645757896276, + 8.316083276994123e-05, + 0.0009700794886627807, + -0.001466376479517039, + 8.070906808224884e-05, + 0.0004501609121711771, + -0.0001632886602382045, + 0.0001861183220025798, + -0.0002176643378390837, + -0.0018670272723307266, + 0.002540400278325116, + 0.0006983558187196857, + -0.0012717437872125335, + 0.0018362894369659132, + -0.0008588738474795064, + -0.0005081722156642659, + -0.0002638346796663386, + -0.0004381154611698472, + -0.001981708537314267, + -0.002605540868452393, + -0.0005126133963574236, + -0.00040490758826649225, + 0.0006648084405319226, + 0.0008882237385023157, + -0.0011581906286656078, + 0.0022497204812571624, + -0.0007276698753031847, + -0.00028959379925123853, + 0.00047128273231394305, + -0.0013120450451873256, + 7.742351465945464e-05, + -0.00016973568083401329, + -0.00019289401679143224, + -0.0010404292962456563, + -0.0011526054713415334, + 0.0010449442171637205, + 0.0014796745833896177, + -0.0012538472901980212, + -5.944909196381074e-05, + 0.0016113764168242189, + 0.0013413565624138047, + 0.0010209744882739042, + 0.00048341528203807134, + -3.073396470515356e-05, + -0.0005624380561741859, + 0.0009931365554569696, + -0.0017009907186032146, + 0.0013982918488857883, + -0.0004411735681068602, + -0.0004813914499224262, + 0.0008526119769098893, + 0.00012756052166745875, + 0.000930225948357992, + 0.0017236093196484525, + -0.0002124917505258104, + 0.0003268534063236805, + 0.001422438700906645, + 0.0003794433629870436, + -0.00042897093975849843, + 9.530752055421018e-05, + 7.358494985565335e-05, + 0.00039723163505161834, + 0.0012950430246783163, + 0.0009638932382468431, + 0.0007524641059456153, + 0.0009525152581867298, + -0.0005908805758047247, + 0.0008773784364785257, + 0.001094127053452594, + 0.0009970402202679495, + 2.3352850725025364e-05, + 2.1415636130866676e-05, + 0.0020155285350626152, + 0.00015049208786336113, + 0.0007464979678369016, + -0.001624874229985147, + 0.0006417240981858868, + 0.0003176328660377815, + -0.0016547592762111883, + -0.002060577904900887, + -0.00024455243911337515, + 7.455127901507072e-05, + 0.0012897878452259894, + 0.0003153207695700487, + 0.0009193025819953445, + -8.148870200036236e-05, + 1.1441571275997727e-05, + -0.0007628539406064398, + 0.0011546772348061632, + -0.0010162978083992932, + -0.0011663233837383336, + -0.0011980838225729216, + 0.0007133786600250795, + -0.0014771849587401316, + -0.0008428393595706751, + -6.253857691743355e-05, + -0.000367146182018282, + 0.0006138371592150653, + 0.00027001481310436276, + 0.0006747440688810545, + 0.0004179870728450986, + 0.0014594897605046068, + -0.00043549727379694537, + -0.0005474033655436531, + -6.088974898868903e-05, + -0.0002511773366363416, + -0.0007174638386122269, + 0.00028525564518854554, + -0.00019216939867759713, + -0.002211915900564699, + -0.0015281595424700288, + -0.0006806020385132218, + -0.00166635396114731, + 0.000665319591841962, + 0.0009049413263973998, + 0.0014445250395152146, + 0.0004927061516442958, + -0.0010370714387909425, + -0.0007116999084198842, + -5.447096992162271e-06, + -0.0009320870725174843, + -0.001724558346591853, + 0.0009596394430020404, + 0.0018613417339584056, + -0.0003935138029997327, + 0.0006733073434452526, + -0.0002645700840097038, + -0.0002701635861073544, + -0.000776326004543228, + -0.00014933108134030287, + -0.0005746255969612319, + -0.0011904902013045297, + -0.0006969458102670729, + 0.0005283584655347244, + 0.0022394907484309693, + -0.00016297792089115375, + -0.0015540908607076737, + -0.00023456451190775494, + -0.0010006411404332573, + -0.00023805588575312906, + -0.0004902070342143466, + -0.0013129904190610335, + 0.0010210802690181866, + -0.0008939943242386699, + -0.0010676406126741045, + -0.0014847566596803247, + 0.0015654115776486488, + 8.671463195350208e-05, + 0.0005291185448129515, + 0.0007419935198653637, + -0.0003314334382323692, + 0.0008496748996618784, + -0.00016665334503530456, + -0.0015967865888054731, + 0.0007974710394632958, + -3.613171545114073e-05, + -0.0005190724671317179, + -0.0009517319812039873, + -0.0003584832065263928, + -0.001128790105369156, + 0.0007920362705598713, + -0.002294106837529347, + -0.0014987606544609366, + -0.00040149911622060225, + 0.0003446833683678405, + -0.0001307523985102313, + 7.375079836543137e-05, + -0.00043022925836330576, + 0.0018395955681961443, + -0.0006792604288794711, + -0.0014294271528042587, + 0.0006227345954177959, + -0.0004627923479678895, + 0.0003115156605342857, + 0.0015579682955912072, + -0.0012798738614811143, + -0.000906292449172436, + -4.977065142139004e-06, + -0.0005758968171469765, + -0.000886419381928555, + -0.0010454529012943136, + 0.00031276596888937536, + -0.0010775149912362002, + -0.0006117551123683301, + 0.001011423382950296, + -0.00016077245932500327, + 0.001960629210248242, + -0.0006561117132294935, + -0.0009746553441262341, + 0.00021865696622947476, + 0.0007424466415619959, + -0.00044595033960069075, + 0.00035012588499307666, + -0.0017789921848818805, + -0.0005561780785646517, + -0.0012479386655117454, + -0.00012014487946711996, + 0.0015639314585146882, + -0.001591823719859876, + -0.00021317212501173002, + -0.00026967014846105845, + -0.0010244015984440672, + 6.659825866670943e-05, + 0.0008507111190045765, + -0.0002929755061117849, + 0.0006687051132833005, + -0.00014136667413783478, + -0.0007947177790856135, + 0.00039839213940314437, + 0.0013057551383419401, + 0.0007138079181701289, + 0.0009254946857534999, + -6.4275447575126e-05, + -0.0005240149259382424, + 0.0008751831157276767, + 0.0009014267640023795, + -0.001486377095996229, + 0.0004723258959260644, + -0.0030845094638118384, + -0.000754927388287784, + 0.002399072966870821, + -0.000735220254529608, + -0.0010369657359578066, + -0.00025911875608743455, + -0.0001414277795873866, + -0.0005721230573034121, + 0.0021028278486114192, + 0.00042784479226530266, + 0.0009223769165003687, + 0.0005657451139507164, + 0.0015726895879777602, + -0.0008080479778728326, + -0.000260464967175885, + -0.0027380952865775307, + 0.0005994701641662676, + -1.1327285525571928e-05, + 0.0012583162403806338, + 0.0008056849817355509, + 0.001214172422655757, + -0.0003936574540653977, + 0.00033037230950976515, + -6.211268085771155e-05, + 0.00035024158199514706, + -0.0023276875566876193, + 0.0008784515364328377, + 0.001992040610543779, + 0.00025086174644732697, + -0.00079311743902958, + -0.00045557252076248056, + -0.00037328222794534766, + -0.0017394094265404396, + 5.221417091323887e-05, + -0.0019329240697911496, + 0.0008237021372940815, + 0.0002914083316774292, + -0.00010817289614902266, + 0.0006684028362076108, + 0.0013882782584145519, + -0.0002520213555629456, + -0.0010714109893439048, + 0.0004594458851519142, + -0.0008920770693663321, + 0.0002731086770831115, + 0.0007358205594352787, + 0.0013068889648195242, + 0.0002854662867361884, + -0.0008822635306505135, + 0.00046150678808709307, + 0.0016692317785247154, + -0.0004645337217044006, + -0.0017593369701695873, + 0.0006108760524500415, + 0.0007206101681548302, + -0.0014469541938214863, + -0.00043887185377258303, + 0.000531536475043845, + -0.0005495897336811116, + -0.0021000881401440383, + -0.0010287846115280296, + 0.0014131513323763327, + 0.0005549872052582007, + -0.0005872918736613452, + -0.0009441580121020733, + 0.0008751118326742644, + 0.0011293580363897074, + 0.0005814832624032114, + -0.0011363097957671515, + 0.0006492067917461266, + 0.0013672631146392977, + -0.0005733619754505599, + 0.0003355167340946423, + 0.00022994963484099948, + 0.0009129151496468697, + 0.002074238852664533, + -8.61089683210891e-06, + -0.0006547197258202851, + 0.00035278478118274997, + 0.00015382485707691687, + -0.0013644904252537253, + 0.002212250507394985, + -0.0011135829574783307, + -1.9423906495645688e-05, + 0.0012599454741592869, + 0.0006090916259932577, + 0.0006824233998650024, + 0.0004557927555231781, + 0.00024212288520157737, + 0.0015870974509525663, + 0.001055279424031408, + -0.00011543114566747422, + 0.00023993068769724937, + 0.0014200614917913, + -0.0012814316171939624, + 0.00028121736433736567, + -0.002199867310952224, + 0.0013787282453213159, + 0.0004821657117613827, + -0.0008034019853656649, + 0.0003179632221901624, + 0.0002464365564521144, + 0.0001573819695937271, + -0.00044674366409866445, + 0.00014242280905325783, + 0.001156806035546999, + -0.0009742269764825561, + -0.0012627314680424323, + -0.0012666400055651031, + -0.0002571970037379594, + -0.0019326442619664638, + 0.0010347524697787885, + -0.0005508587977233178, + 0.0021160716907888226, + -0.000297310096397754, + 0.0023062352605601895, + 0.0002606467646002496, + -0.0010217534368866282, + 0.0016471281288346375, + -0.0010816371691632833, + -0.000778292098106097, + -0.00013416414127614544, + -0.0009557672902701021, + 4.8659863099216835e-05, + 0.001158986461548603, + 0.000172529189680331, + 0.00016041776447167985, + -0.0004733657544442947, + -0.0007218378563470036, + 0.001164953843547394, + 0.0014135993395303515, + 7.768497570693002e-06, + -0.0012701488646010965, + 0.0007364539936344746, + 0.002425497090730335, + -0.00042525849747668466, + -0.00046731761030150267, + 0.0011953621862061336, + -3.7659398035232907e-05, + 0.0009434358684005671, + -7.131610493915408e-05, + 5.381217691708748e-05, + -0.0007969521075772839, + -0.0015837229965247196, + -0.0015132135279271124, + -0.0010717602646821282, + 0.0021151959326895335, + 0.00016058626419370201, + 0.0011414897473563405, + -0.00024023191050584318, + 0.0004900025363132559, + -0.0007303111746822291, + -0.0002178732987828337, + -0.00072911272307898, + -0.00021359119483214142, + 4.1563544111679705e-05, + -0.00022736880377043314, + -0.0006847239565378095, + 0.001726886267972683, + 0.0008777623772338588, + -0.0005366002471207977, + -0.000518369581689911, + -0.0003012058791467428, + 0.001536168397325097, + -0.001258173735298124, + 0.0005710456475900717, + 0.000471802364501735, + -0.0004464855787206824, + 0.000205946009773752, + -0.00029336784104294145, + -0.0005944421819627598, + -2.5535302251045866e-05, + 0.00033655009410022454, + 0.0021360726379727195, + 0.0003369185015530038, + 0.00059123284948824, + 0.00031870733376460823, + 0.0002758221669823251, + 0.001112930651153542, + 0.0009453919774963223, + -0.0003044033984954527, + 0.0017552027425381154, + -0.0016062354453727308, + 0.0009853829179887312, + -0.0002698678362313843, + 0.0003522065853350651, + 0.0005068517450169793, + -0.0019701089074320222, + 0.0007184441978577012, + 0.0019258081324525459, + -0.0007562663375157699, + -0.0009150255938148147, + 0.0009590653990644275, + 0.0013855771721260615, + 9.446416649798784e-05, + 0.00019903721358509386, + 0.0006747467137612333, + 0.00011193767610122924, + 0.0008560305940560316, + -0.0011309183292810762, + 0.0003452568830196693, + 0.001491778774054002, + -0.000780559055099111, + -3.7076424171042524e-05, + -0.00011434835466015587, + -0.00034401439678976914, + -0.0007512467753767296, + 7.9566715336353e-05, + -0.0017911313711349217, + 0.00012455176869281899, + -0.0009028184155992044, + -0.001269041607227962, + -0.0006180223165721011, + 0.0012121930363263361, + 0.00183671954919671, + -0.0011617411399426005, + -0.0012261696824258973, + -0.00046912411069552644, + 2.7246313812824044e-05, + 0.0005300839040794149, + -0.00033077466521659073, + -0.0005417564022819689, + 0.0008024868500633735, + 0.0006734859679105334, + 0.0006964330736556402, + 0.000525957162561455, + -0.0007638719881069869, + -0.0018017470294839843, + -0.0003708013844585326, + 0.0009616306289441152, + 0.0005808149593666921, + -0.0012229476989059317, + -0.00042570269935060143, + -0.00042609063992553824, + 0.0010849126320356176, + 0.0014305963780368793, + 7.92967531861325e-05, + -0.00010653925032107447, + 0.0004493261881876303, + -0.00034454018246593765, + -0.000947279529547464, + -0.0008239071376243343, + -0.00010732440565378457, + 0.0003417884508571748, + 0.0010764440264883015, + 0.0008429796149191747, + -0.0005215235072143447, + -0.0002038994630600924, + -0.0018349038697060573, + 0.0001799088268057386, + -0.0010097983475866473, + 0.0009782232721753143, + -0.0007988159795384997, + 0.0004358075343226183, + -0.001155970117185319, + -0.0004175782526836562, + -0.0002934779521218183, + -0.00018509941538405504, + 0.0009449972828504662, + -0.0002648081701760107, + 0.001381524003969021, + -0.0010259639413718069, + -0.0015962234627984826, + -0.0016970479682637716, + -0.00010512383278169487, + -0.0004284383076016244, + -0.0013619868357721589, + 0.00018801933127672544, + -0.0006362143530427879, + -0.0022983023030530504, + -0.0005883595053050592, + 2.98113449939918e-05, + 0.00032073322501607345, + 0.00018394870714732002, + 0.0010060939319686138, + 0.0016589993441475214, + -0.00040780313320236357, + -0.00025999770570489647, + -6.253631834370773e-05, + 0.0020204752341378483, + 0.0004960965846192026, + -0.0008593794412288993, + -0.0001812947080130853, + -0.0013171702106645434, + 0.0010201726007962946, + 0.00018329717858380916, + 0.00041775667117057753, + -0.0010134513757758205, + 0.0004885969642788124, + 0.0005711884079850186, + 0.0005616368430822697, + 0.00045864467184599965, + 0.0014553825174290253, + -0.0011871258263307398, + -0.0013472132782805844, + -0.00042320859599546853, + 0.00018351254631059687, + -0.0005189284013364096, + -0.0017634543082457941, + -0.0007570717690873585, + 0.00016492132073852727, + -0.00012247988614658113, + 0.00013915047819128615, + -0.0007470574386447694, + -0.0014696119837247954, + 0.00027003116600284776, + 9.013438269057419e-05, + 0.0024017602273059733, + -3.333128875571249e-05, + 0.002770534120831621, + 0.00034281698879683355, + -7.59377538820038e-05, + 0.00030714185390284663, + 0.0009106627099128233, + -0.002360901599266719, + -0.0005069607510709515, + 0.00026810114264808765, + 0.0012297005908986464, + -0.000666615077191874, + 0.0009812754972601749, + 0.0004904540089472398, + -0.000992554249746286, + -0.00022262782037718736, + -0.0022364382349796576, + 0.0001396258085648052, + 0.002446347985949953, + -0.001477824991678581, + -0.00010135244235446965, + 0.0003960330223396115, + -0.00023966234897965363, + -0.0010578356668092764, + -0.0013983220452059339, + 0.000632067549933272, + 0.00020688221691457167, + -0.00013819482010419247, + 0.0009365240742070359, + -0.00040601271360316135, + -0.000669714414569351, + -0.0017348221129773213, + -0.0007943788646057942, + 0.0005063476250649693, + -0.0004117505891953004, + -0.00020453920686368534, + 9.948266040916574e-05, + 0.0005928314783914035, + -0.0009223720353848894, + 0.0005622311776379473, + 0.00038642340341431784, + -0.002000964636450035, + 0.0015968101940761865, + 0.000751292313858892, + 0.0016237853698535668, + -0.00045778718815748116, + -0.0005548193236279813, + -0.00018227686311509167, + -0.00028679342022361944, + 0.0018116009676048454, + -0.00016493702225962278, + -0.0011613153876985421, + 0.0008107199541952045, + -0.00017850040962563252, + 0.0020048464441180932, + 0.0003677210042228036, + 0.0007569541425621835, + -0.0013531102983440472, + -0.00019344884415554482, + 0.00018738986862942212, + -0.0011131948205032084, + -0.0001291428489020902, + -0.00029483613188571896, + -0.0012977009401634175, + -0.0008646912825358464, + -0.00219670277998834, + 0.0006878138364321354, + -0.0009074484411233199, + 0.0010344071929201837, + -0.000319361285835822, + -0.0001240238212624633, + -0.0006721116329268292, + -0.00033635882140189055, + -0.0006757233717022491, + 0.0019968696780769224, + -0.00030911555828493054, + -0.0012879630828315626, + 0.0006576899265967749, + -0.0003775491880861822, + 0.0003201767468635593, + 0.0007969513788156498, + -0.0006702774336459949, + 0.00011457604351505489, + -0.000430573340342641, + -0.00137287377246513, + -0.0003968451338656719, + -0.00027852272397422916, + -0.0006015519475314062, + -0.0016626570431750793, + -0.002100031027736654, + 0.001374690434841944, + 0.001087115117439307, + 0.0008082268577259429, + 0.0002580230239054979, + -0.0006557923914224976, + 0.00011206012580976268, + 0.001423176788813752, + 0.0010769899096247525, + 0.0007086014683228986, + 0.0013157400132956403, + 0.002059986213356292, + 0.0014634663657496808, + 0.0009850706955563406, + -0.0006784941033162807, + 0.0018788566967212136, + -0.0001173009412787346, + -0.0006930324270432544, + -0.00033775154913206237, + -3.600498320056217e-05, + -0.00017532924083070526, + -0.001213245170687065, + -0.0024108001454194437, + -0.00017793591777162478, + -0.0008130723932463469, + 0.00013170265521263361, + 0.001167995310761985, + -0.002945166926455898, + -0.0017541913678899952, + -0.0006772048822860325, + 0.0009471691066346948, + -0.0013141380485713627, + -0.001216383167733922, + 0.0010824665044820462, + -0.0004860987262850188, + -0.0010991248844716029, + 0.0022657452863988035, + -0.0009690200364709822, + 9.635535080347758e-05, + -0.0002519047208573477, + -0.001429433905568059, + 0.0007150689052220823, + -5.167746507332966e-05, + -0.0003197231582815278, + 0.0007573603371127314, + 9.297967061424108e-05, + 0.0011580714794309586, + -0.0008416416534057413, + -0.00020580905993724846, + 0.00013283161397901073, + 8.807240510889414e-05, + -1.00813974414108e-06, + 0.0008370286724547485, + 0.0010234463982652375, + -0.000914735600192238, + -0.000800513391195495, + -0.002709008257726048, + 0.00033152698014402113, + -0.00151435009967197, + 0.00147646177833677, + 5.226360912749391e-05, + 0.001067029657645701, + -0.00011700140846737311, + 0.0003706161958223958, + -0.0002549694410474566, + 0.0011592478969445956, + 0.00018063550564548358, + 0.0001378224286545556, + -0.000488527270626346, + -0.0010489222980376277, + -0.0014711006019127672, + 0.0003502465514688925, + 0.0006947915865234849, + -0.0010921621858161071, + 0.00044427473154941483, + 0.0002459880171538859, + 0.0012012035374147966, + -0.0009066496721239965, + 0.002134471391166094, + 0.0008015867331234378, + -0.00047004452917257883, + -0.0008012538804508014, + -0.001006944219063253, + 0.0002140406819992003, + -0.0015609365969730105, + 0.0009489615847304297, + -0.0014408582287871211, + 0.0001503750273485055, + 0.0007318964545463225, + -0.0006460441787439914, + 0.0021122230944904583, + 0.0009517210859281405, + -0.001121964231478373, + 0.0006159515839690013, + 0.0005324066038440138, + 0.00020360228321128918, + -0.0006429504437540451, + 0.001101595035935257, + 0.0010233558156307087, + -0.000363932363582118, + 0.0009629443133424963, + -0.0002472867257646307, + -0.0007927207399069455, + 0.00016973391084808859, + 0.0003318405952708236, + 0.00025028493494045625, + -0.0009342943757697668, + -9.95152550199228e-05, + 0.0011135189123969748, + -0.0005993408026874302, + 0.0006453422716219977, + -0.0006344453679769212, + -0.0004980274839247794, + -0.0013722162915304013, + -0.001989622375310026, + 3.0469891646532496e-05, + -0.00013826718680512483, + -0.0005145302868175863, + 8.961628076741045e-05, + -0.0013521339113830677, + -0.0003607210497865404, + 0.0007737926211033202, + 0.00015707804553858387, + 0.0005521322959026068, + 0.0007099848189831859, + 0.0007905687340459057, + -0.00011922627857382486, + 0.000929787455322395, + 8.849408226271901e-06, + -0.0008952595302427321, + 0.0018001542506037042, + -0.001863519529344492, + -3.0396516868798848e-05, + 0.0011603718959807912, + 0.000730383073462288, + 0.0006596037422921705, + 0.0004940660606898931, + 0.0014549315961199902, + 0.0014908288368803775, + 0.001057267772283377, + 0.00048564928153464374, + 0.0006177543379620486, + 0.00028794048174423054, + -0.002770338786958668, + -0.0001474867494243451, + -0.0012776999401289482, + 0.0008216431830451944, + -0.002139259453128202, + -0.000418758376359125, + -0.0005969381046177179, + -0.00013137009453688227, + 0.0002617759935025151, + -0.0008007372324014625, + -0.0008158343971731066, + -0.0012230904846394532, + 0.0008347855686629445, + -0.0002671609502851785, + -0.0006263990906977282, + -0.0010819482831142223, + 0.0012110175017781798, + 8.734367821576603e-05, + -0.001144672375174943, + 0.0005893687941841407, + 5.250617341345888e-05, + -0.00011728785857970774, + -0.0006174638665541433, + -0.0007883608813341108, + -0.0008452775773495841, + 0.001163763078873307, + -0.0008429297496417477, + -0.00015806586907584713, + -0.0001312545010246467, + -0.00041711793372005716, + 0.0022404372035953334, + -0.0019752069755713847, + -1.915595410604209e-05, + -1.6631683325425897e-05, + -0.002275517221835953, + -0.0020831871608812218, + 0.0003473730525459277, + -0.00020900582058390867, + -0.0017194325904776075, + 0.000305596477618872, + 0.0013110492133308553, + 0.0011194245748569638, + 0.0008133339535919628, + -0.0007573343123006781, + -0.00012925545276588167, + 0.0009322832822087478, + 0.0006479397312932979, + 0.0014888385869867961, + 0.002324757918449595, + -0.0005397888807729468, + -0.0002070013864949271, + 0.001439218909942333, + -0.00011690216051943658, + -0.001673310728917712, + -0.0016834533869199352, + -8.295769438381554e-05, + -0.00030623325679010594, + 0.0011692754579462922, + 0.001711709608307236, + -0.0008810374135260785, + -0.00026313220169263933, + 0.0010084809612262136, + 0.0021727829572647126, + -0.00047434416253456054, + 0.0002732493683887391, + -0.0006405087170355569, + -0.000887431438264983, + -0.0003159831316084356, + 0.00034752558862488403, + -0.0009737953197361975, + -0.0012676481907330688, + 0.0017515081488256687, + -0.0016497361547823904, + -0.00015718290847145818, + 2.88381384116158e-05, + 0.0001978938381467462, + 0.000517172238250935, + 0.0006480769775851413, + -8.386415359777427e-06, + -0.00049999156704622, + 3.030353751993813e-06, + -0.0011429960638134186, + -0.0002883184394787257, + -5.123688052164177e-05, + -0.00013371555921355948, + -0.00041426104931108296, + 0.0005180458706019288, + -1.8482222704971093e-06, + 0.00041487454547683896, + -0.00025506760969307797, + -0.0012888264636052617, + -0.0021750379410564423, + -0.0009520582813968484, + -0.000891154660269908, + 4.242285296006006e-05, + 6.468588308901045e-05, + -0.0003439088686706698, + -0.0004571793736611277, + -0.0012799930267157246, + 0.0007436254161105948, + -0.000981768665261354, + -6.882764334214756e-05, + 3.756112733073505e-05, + 3.6690636450721494e-05, + 0.0007352236348168214, + 0.0022749751751619403, + 0.0005912239514778898, + -0.0016946738103816312, + 0.00029703335389008996, + 0.00157211580331059, + 0.001847913978658612, + 0.001203242944144437, + 0.00036459702579002314, + 0.0010152449636974762, + 0.0004895480079877445, + 0.0010922809612726554, + -0.0014736359407913006, + -0.0005852154260333913, + -0.0006885579874398642, + 0.0008179908110314105, + -5.289176357701178e-05, + 0.00044698558407616, + 0.0006405100636037581, + 0.0006765316131011041, + -7.34620971012602e-05, + 0.0015652221085889545, + -0.0007794070716143278, + -0.0005143320080555942, + 0.001213598229212442, + 0.00027835394809537116, + -0.00023920343587237038, + 0.0007260349175937413, + 0.00023395757751242162, + -0.001435864768375164, + 0.0006049855086164186, + 0.0007498374347093039, + 0.000544133198837308, + -0.0005616216198331796, + 0.00018725303540992994, + -0.0002508375479631576, + -0.0014003870742908212, + -0.0019463370137567317, + 0.0002930666799570562, + -0.00020609923181502692, + -0.0006878374400475431, + 0.0014534059088648211, + -0.0016214841613410827, + -0.00033555241380080913, + -0.0003412180373618749, + 0.0003500134699815476, + -0.0005446149229434124, + -0.00016780047050753532, + -0.0008425466557309949, + 0.0013918143434701212, + -0.0009358643619515249, + 0.0013585726359986285, + 0.00011434720727032676, + -0.0009224396061389954, + 0.0010430744552833197, + 0.001165846699776738, + 0.0004957365477597576, + 0.0006991153572694958, + -0.00027958562310225187, + -0.0013287972883025594, + -0.00019091767041671084, + -0.002021330365768888, + 0.00018782161246525496, + -3.3427848820232083e-06, + 0.0014928436158919206, + -0.0011936941036634517, + -0.0001661388875771902, + 0.0005552639245692335, + -0.0005002272946520811, + -0.0004612755123366777, + 0.0012538190504057683, + 0.00041411308073585965, + -0.000271024894259361, + 0.0020269477416732335, + 0.0006301423639050313, + 0.0012214399087266538, + 0.0015433603268631844, + 0.0021478342927185555, + 0.0009514549689833327, + -0.0023534930860640304, + 0.0005488920844450545, + 0.0014550434386050796, + -0.0004517327507657169, + -0.0009872496203993562, + 0.0008518073816900319, + 0.0007077465959675185, + -0.00037570742507847716, + -0.00026713271562125735, + -0.0012028263851252003, + 0.0003261269371099305, + -0.001109472137260562, + -0.0008415089297956346, + -0.00017672221786859646, + 7.341657965389876e-05, + -0.0019684439377574436, + -0.0008238416772022125, + 0.0005261516162063881, + 0.0009396765096665821, + 0.0016980791813146349, + -0.0006903944046176788, + 0.002330676179639378, + -0.0010054689959600835, + -6.255814248875348e-05, + -6.657745219133854e-05, + -0.0003984645839817169, + 0.0006738007386121129, + -0.00037702136915798034, + 0.0008073966445801302, + 0.0002683318107495243, + 0.0008429337805846672, + -0.00015532296113296445, + -0.0006519271836204192, + -3.047670052160958e-05, + -0.0011234192747516336, + 0.00016194729572247, + 0.00014200759056051435, + -0.0006883647770337462, + 0.00015838697368042781, + 0.0005542490985128469, + 0.0002839324826499675, + 0.0017187162597487988, + -0.0001958973988189627, + 0.0016620687769010251, + -0.00011672705080983496, + -0.0017007653105930189, + -0.00040870421875981644, + 0.0012931542985454379, + 0.0016312984406120583, + -0.000346492548693981, + 0.0004359092952518694, + -0.0002851705764801902, + -0.0003127358445165878, + 0.0005053932132033831, + 8.210526618812681e-05, + -0.001360664744186607, + -0.0010758678298670038, + 0.001147401415712394, + -0.0003172489271263596, + -0.0009068470198622334, + 0.0005267637918925629, + 5.754802295571757e-05, + -0.0008270005374058649, + -0.0007955635590025786, + -0.0006572790933324576, + 0.0006616035491840507, + 0.0007963196408797031, + 0.00024088914975747963, + 0.0014724861243260192, + 0.0005055036988596143, + -0.0001877642689708391, + 0.001658734972532033, + 0.0003947617924964777, + -0.0008473160903382389, + 0.0009967854823293952, + 0.0005083694008870188, + -0.00011788850913030612, + -0.000466930213296634, + -0.0014458285669212802, + 0.0010497929285396153, + -0.001194062544844026, + -0.00016596737834024034, + 0.001668530392564695, + -7.097680734530418e-05, + -0.00043437043772285845, + 0.0008993059164824316, + 0.0001117536139948584, + -7.383986100366363e-05, + -0.0007380626425676749, + 0.0008291688772050187, + 0.0008020956892833192, + 0.0004953662941444217, + -0.001458919315460543, + -0.0003919141402535851, + 0.0018592029487926915, + 0.0005557480344703926, + 5.012673886966962e-05, + -4.4929482104794016e-05, + -0.0008831367571701827, + 0.0006680727461003726, + -0.000791240352624969, + -0.0012528138798143487, + -0.0008259348691476082, + 0.0010436625945104778, + 0.0008279538474118602, + 0.002925207760602619, + -0.0014966990385592933, + 0.0006234655308850841, + -0.0008269431603078807, + -0.0001298932181081541, + 0.0005645552962700063, + 0.00022937549036062532, + 0.0009657710806360699, + 0.0007672880774017779, + -7.139771849465004e-05, + 0.00029685536252089953, + 0.0011356526029027557, + -0.00011829302076581359, + 0.0007878334965995958, + -1.8662505224862785e-05, + 0.00039747434938770083, + -0.001227670758779944, + 0.0004451436170039147, + -0.0006879176230232358, + 0.0008967534997876575, + 4.589283295703067e-05, + -0.0009041764735710052, + 0.00035575855393711294, + -0.000519080574166787, + -0.0005024638557184619, + -0.0013271459876415044, + -0.0004925811546039711, + -0.0018622625384381213, + -5.2654647449671866e-05, + 0.0006088508934848843, + 0.0017294895949486132, + -0.0007671882686183141, + 0.0005391780791078715, + -0.0001191355933323743, + -0.0009206340023438, + -0.0013202150722449624, + -0.0006041650082188328, + 0.0012681665377828422, + -0.0002761365953638448, + -0.0004911826078346251, + 0.0010660911657609732, + 0.0008496853204793495, + 0.00023316427664536995, + -0.0006892921156646982, + -0.001718774028733103, + -0.00029322561239282985, + -0.00010659944872340311, + 0.0002601664980501787, + 0.00020786607907432347, + 0.0003125360238855501, + 9.725514415500303e-05, + -2.8404611524823707e-05, + 0.001535968887180964, + 0.0003774753149241104, + -0.0012532672530258177, + 0.0013235846337210633, + -0.0012507975614088787, + 0.00036902978208720207, + -0.00107988740797501, + 0.0010374767257926147, + 0.00027072860941310714, + 0.0009635751389682408, + 0.0005046047399874296, + -0.00021490943747700585, + -0.0004428062844870556, + 0.0010682424506318385, + 0.000566473922549104, + 0.0004874834358119451, + 0.0009152232263247457, + 0.0016365058972713834, + 0.0008788651850573261, + -0.0006871223704802316, + 0.0012367860871209267, + -0.001050690411213988, + 0.0028950574677528607, + 0.0016831086839237206, + 0.0007228748062512171, + -0.00012140423613468474, + -0.000919840592258851, + 0.0006320765348187487, + -0.002457061282463009, + -2.782395333261189e-05, + 0.00020790518172738562, + 0.0005652577125907709, + 0.0002988602980101528, + 0.0007482384747984114, + -0.0001902785665057037, + 0.00014334711793558084, + 0.0009218973081994185, + 0.000781083276233312, + 0.0014283667738310495, + -0.0011721475863152968, + 0.0007809917868164786, + -0.0009703089078275269, + -0.001612851145363908, + -0.0008889969779117801, + -0.0010104313818812593, + -0.0002976506268120811, + -0.002612640588191492, + 0.0009100742704847296, + -0.00010557571238135137, + 0.0007938909417489399, + 0.0007691607164306854, + 0.0006062577945471568, + -0.0005813657619422498, + 0.00023350508781314554, + 0.0029001007061642157, + -0.00037432470389853954, + 0.0003165427816445663, + 0.0005818814342991102, + 0.0006609853071381989, + -0.0012269753648939963, + 0.0002000725083012909, + 0.0010797226932450022, + 0.0006347223459037255, + -0.0005355392901303517, + 0.00019958835387967407, + 0.0007179012925950255, + 0.0009948014510114294, + 0.001312226572437051, + -0.0016481434641718042, + -0.001227165278467935, + 0.00027006251998423704, + 0.0005228963651819212, + 8.631963844730429e-05, + -0.00027338669095975244, + 0.0008350695420104044, + -0.0003764617967104027, + 0.001083580273366557, + -0.000909655770139141, + 0.0006578313157836329, + -2.813473611084923e-05, + 0.00028996464120312524, + 0.0006502003810265185, + -0.0013933575978703145, + 0.00036052766662761696, + -0.0023065867231478647, + -0.0001286889575194135, + -0.0011545843331223393, + -0.00016476492594017092, + 0.00020906334377991724, + -0.001049890979173519, + -0.0011647449663787762, + -0.0009064853037256823, + 0.0008985055306096243, + -7.077178556555743e-05, + 0.0006498207174179606, + -2.324470946704342e-05, + -0.00012405226039648816, + -0.00038180557443559375, + -0.00011379169583414864, + -0.0008873717279877051, + 5.0106080751212545e-05, + -0.0011935388455066953, + -0.0005747790693965667, + -0.0001344799425697247, + -0.0007206319822476502, + -0.00029483442068769557, + 0.0007924210964415128, + -0.001586979374548149, + 0.0011772750823246707, + -0.0004089156188995707, + -0.0003502242722882476, + -0.0013444240376008867, + 0.0001608487252444253, + -0.00041178159507463996, + 0.00016478044963110145, + -0.0003592277239146252, + 0.0012297719398729362, + -0.0011643734934809035, + 0.0011699094183476747, + 0.0007028808862361751, + 0.0007377187530846794, + 0.0002948086842634875, + 0.0018171572557059061, + 0.0005534175441592916, + -0.000789779216828024, + -0.0001770557347639391, + -0.0006987720463086283, + 0.0001416682684483319, + -0.0007290468476985022, + 0.0012236014840991602, + -0.0014995980443221367, + 0.0008225878606428934, + 0.0018010720525229965, + 0.0014765524504745811, + 0.00022871294781637042, + -0.0013406099267177648, + -0.0014448849176412328, + 0.0005533507673272009, + -0.0007369719575183793, + -0.00032576048786814315, + -0.0005911449915374276, + -0.00019038823438374575, + 0.0006421315159012004, + 0.0010694467455103437, + 9.641245619965478e-05, + -0.00023704780940341777, + -0.0017212851054539124, + 0.0007422277607605434, + -0.0004392946633240281, + -0.0014784973145516983, + 0.0007628540386505204, + -0.0009113715204224276, + -0.0002901921851341963, + 5.4303568273316294e-05, + -0.000566797405873855, + 0.0010330368520139964, + 0.0003052261253342062, + 0.0002487550528721501, + 0.0006192803973021576, + -0.0003528555739386328, + 9.994314748640222e-05, + 0.0007801645724614252, + -0.0005530806143952362, + 0.0010796552905721396, + 0.0012287195507140107, + -0.001638954853558452, + 0.00020688732767030024, + 5.524184703677699e-05, + 0.0008051258995555224, + -1.9604311990989668e-05, + -0.00041246721413842153, + 0.0008579797354344756, + -0.001077356289559307, + 0.0009667620679336006, + 0.002227027879645239, + 0.0007524185740904584, + 0.0007811426732931015, + 0.0007983222685196994, + -9.291905892405713e-05, + -0.0006206029651002633, + 0.0012001647056478558, + -2.449380405447419e-05, + -2.9575321532244454e-05, + 0.00174026207121385, + -0.0008413436683199018, + -0.0010313120662207814, + -0.0001350169056386527, + 0.00010878037575663669, + -0.0005265421665733922, + -0.0001729533470643061, + 0.0002360720672460234, + -0.0002084003062006181, + -0.0004422161001380829, + -0.000458704158850643, + 0.0010501847740834215, + 0.00039765528022830965, + -0.0007201800415484186, + 1.5769100879129392e-05, + 0.0003749458767161133, + 0.00017365328219696817, + 0.0008076609102157501, + -0.0006502765868165674, + 0.0015282571175005513, + -0.00035838373860470787, + -0.001535609348215325, + -0.0005124200525233682, + -0.0004679863977381196, + 0.00010359404778819029, + -0.001647193582855047, + 0.0011204431332043623, + -0.001502523766449747, + -0.0005043170289330184, + 0.0017370375088990272, + -0.0031266433446463502, + 0.0010108964582687396, + -0.0005140993151672531, + -0.000871861589065925, + -0.0008033302744996514, + -0.00128601626333777, + -0.0005272261032347656, + -0.0015122763881272806, + 0.0008051753863833806, + -0.0014742095353293169, + -0.0005736677817361788, + 0.0012519882387327448, + -0.001001845043465625, + -5.4131529257724805e-05, + 4.9428484178548845e-05, + -0.0006910546808541779, + 0.0001908862366312889, + -0.0008632417402876922, + -0.000165419889126953, + -0.0019572178971244895, + -0.0021740702206465797, + -0.0018883012655325445, + -0.0014769603564129018, + -0.0011187615789493384, + -0.001904134823719067, + -0.0017078546098604418, + 0.0003371079513332303, + -0.0009038474355663435, + 0.00019272015076727707, + 0.0006071211449249963, + -9.255894515679426e-05, + -0.0006918327616818057, + -5.077777485655437e-05, + -0.001200997044871549, + -0.00027360159306153277, + 4.360183654389315e-05, + 0.00034425344778154794, + -0.0012467265252127514, + 0.00023466387889643477, + 0.0005966786286771957, + -0.00026589814851551974, + -0.00027312503444587474, + 0.0017055507827054724, + -0.0003876228404236492, + -0.0001569604685585928, + 0.000262646300619003, + -0.0019265237856809652, + -0.0013242289499692925, + -0.0007688356834000492, + -0.0011635076608099962, + -0.00036352749120363207, + -0.0008223431750115962, + 0.0007381595597548931, + 0.0006087576320434163, + -0.0012775818707602697, + -0.000945106048236095, + -3.577915110627102e-05, + -0.001873793300156499, + -0.0017530358952624807, + -0.00016590457604007824, + 0.000653345472447085, + 0.002151606975810534, + -0.002044666269135435, + 4.3110969215061594e-05, + -0.001300743454684588, + 0.0013071104411136892, + -0.0006242092687075194, + -0.00011662780554383822, + -0.0008604728211348055, + -0.0017293029271453332, + -0.0011153125388182882, + -0.0003328022707564198, + 0.0017060428882241763, + -0.001139193423687248, + -0.0007575732921176455, + -0.0013312926231705013, + 0.0012561819434255186, + 0.0012768923891262867, + -0.0001339601542083186, + 0.00039224978679081794, + -0.0009947542731808293, + 0.0027108793000990756, + -0.001416374550032184, + 0.0007943588923071194, + 0.00036912344488687404, + -0.0005796375842107658, + 0.00032783300568385316, + 0.0008339087620308087, + 0.0013003924576110242, + -0.001457129961032195, + -0.0003505632518096813, + -0.0008202758940563356, + -2.8676512335982624e-05, + 0.0009030364715193314, + 0.00045024746196349277, + -0.0006233077822879959, + -0.00044679458178011473, + 0.000838991315995428, + 0.0009868311398042913, + -0.0013989776310722399, + -0.0005076970627504914, + 0.000788812313492652, + -0.001368369647350704, + 0.0006309428096061469, + 0.0004113013020621947, + -0.001531590940892129, + -0.0004717526853845872, + 0.0003265668562606401, + 0.0006271829827699738, + 0.0005438330379346257, + -0.0002981150932027299, + 0.00047277081274169064, + -0.001389635554235139, + 0.0010162117028613036, + -0.0006801680462898978, + 0.00023777124676397737, + 0.00018282911260595773, + 0.00033315800380134906, + -0.0009055889758812302, + 0.0002296262548311043, + -0.00031538653746706463, + 0.0006426133952205075, + -0.00046480924867001476, + 0.0003794928250436498, + 0.0005739749718891059, + -0.0019192592379441507, + 0.0014024874915326115, + 0.0008166045083379769, + 0.00015105593839540173, + 0.0002876358259105142, + 0.0014583402868238832, + -0.00019386834717404018, + 0.00031334167183856717, + -0.0009697718229014966, + 0.0009725516924408737, + -0.001040417722705186, + 0.0014658024396458076, + -0.0003304247182152018, + -0.001873696311121538, + 0.0005390953312033582, + -0.0003987650505892127, + 2.012723853522716e-05, + 0.00016725899095058064, + 0.0015798828165528465, + -0.00040743758139911984, + -0.0006013537668333857, + 0.0003474225052180093, + -0.0010776596706944376, + 0.001840098053493067, + 0.001034155370937642, + -0.0023925425577381687, + 3.262071323318415e-05, + -0.0012099314471067132, + -0.0005132451826061425, + -0.0011767851707354987, + -0.00045280307892948734, + -0.001045129695308674, + 0.00027102690934757673, + 0.00035097456968063707, + -0.0013072744446330166, + -7.05273485735858e-05, + -0.0010459206385548775, + -0.00010967942986843356, + 0.0005693547952033202, + 0.00032825697660096185, + -0.0009485459986364324, + -0.002199158804791308, + 0.00042153395887912517, + -0.000511423470780096, + -0.000684163735253281, + -0.0014108126367518852, + 0.001502155974519887, + 0.00059343669286598, + -0.000664247734977113, + -2.215184280306479e-05, + -0.00026472325944433393, + -0.002503493223548257, + 0.0016488935066011374, + 0.001759650094677933, + -0.002139323014672021, + -0.0008477608643295522, + 0.0009053012676527658, + -0.0007188121387756556, + -0.0004722141410849646, + 0.0003921395351726063, + -0.00039706861778835936, + -0.00036886403335840295, + -0.0005296846597544744, + -0.0003134752204913904, + -0.001602942921744375, + 0.0004398959807614666, + 0.001041869775439606, + -0.0007020559797392901, + -0.000512452475255227, + 0.0012140541607938938, + 0.0010212078516464908, + 3.781502964204761e-06, + -0.00030495401846641267, + -0.0008032363230597946, + -0.0008271334002556508, + 0.00031570729222388976, + 0.00047663758958436833, + 0.0009979649998493728, + -0.00038094495415198646, + -0.0005424019462622017, + -0.00123837851635567, + 0.00038629705286488295, + -7.248109888356018e-05, + -0.0008563181441571545, + -0.0009584566086553199, + -0.0011971948565701284, + -0.001118249449118007, + 0.0013953017639253792, + -0.0011131860016426187, + -0.00039696029459091847, + -0.00015924588454782366, + -0.00018054828070104885, + 0.00039799278205860907, + 0.00014163597486071918, + 0.00020662058897112488, + 0.00036304852884646156, + -0.0003948666979934823, + -0.00032992586357234505, + 0.0003531443213236077, + 0.0008916313046944593, + 0.0006921767525537431, + -0.0005449817934359045, + 6.278696149766941e-05, + -0.0015654081520702075, + -1.4754949213822602e-05, + 0.0008296544298430945, + -0.0009812232720251798, + -0.00029007548840137494, + -0.00023683137768591386, + 6.638100940347816e-06, + 0.0020273087981984117, + 0.0007166910366766988, + -0.00015533022369527776, + -0.000524626940809351, + 0.00030222376885088764, + -0.00046306358386588077, + 0.0010819808174069201, + 0.0008260866721839887, + -0.00043220628205572386, + 0.0003255258284921376, + -0.0001550532982221455, + -0.0001782520097831722, + 0.0012065151673456068, + -0.00025494994557594553, + -0.00044602123120196643, + 0.0003749088344990428, + 0.0005313360514821061, + -0.001067267405179844, + -0.0014896211658936658, + 0.00024186148231677051, + 0.0018017792888010437, + 0.00030887107787128804, + -0.0011893738633088266, + -0.0006567873789368011, + -0.000772478276293044, + -0.00012836305991569688, + 0.00019919635865384258, + -0.000882576423160676, + 0.0012829957177169188, + 0.00023664648266715055, + 0.0010521554386871427, + -0.0014391719176671826, + -0.0007928385568160237, + 0.0002355521369858573, + 0.0003247571181857733, + -0.0004017893306586464, + -0.0006156996162659503, + -0.00035794292432008514, + -0.00025605453488188225, + -0.0007870322188466393, + 0.001356648815616571, + -0.0008627522202138298, + -0.0013587603175876373, + 0.001046066176611419, + 0.0010308356917381287, + -6.191663194648061e-05, + 9.509425159349954e-05, + 0.0030207545103061737, + -0.0019167791974065145, + 0.00012379139860118073, + -5.788712676490567e-05, + 0.0011387948905966696, + -4.434545704493683e-05, + -0.00014789313814940166, + -0.0005356210386446293, + -0.0015782803365486137, + -0.0008416971964812678, + 0.0012862087636294841, + 0.0004575912073261097, + 0.0009661947774162194, + -0.001182651851828391, + -0.0005688366681331128, + -0.0018709826434484627, + -0.0008696096151420246, + -0.00048729086874037226, + 0.00011307789448919277, + -0.0008639371064603731, + 0.0015548993154461356, + 0.0008526356531486878, + 0.00029937845636727057, + -0.0009228823691115882, + 0.00061834603881346, + 0.0004988592042288958, + 6.934466313696893e-05, + 0.00018081132378102417, + -0.0016790335242277525, + -0.00018747276045089157, + 0.0005752894203223944, + 0.0015827997838004145, + 0.0008208251525319943, + 0.0026386364744030986, + 0.0007956091110592346, + -0.000504882557237428, + -0.00016995124116685163, + 0.000795323016494175, + 0.0004093214894707163, + 0.00045809775391658766, + 1.4419208951647679e-05, + -0.0009720034791183918, + -0.00040816715668303923, + -0.0005504577630833357, + -0.0002414657351355739, + -0.0005955471100146642, + -0.0012306077175734417, + -0.0005306848221905616, + 0.0007655121671201732, + -7.970468077030267e-05, + 0.00015137391299539795, + -8.014395986089272e-05, + 0.0017294329250542282, + -0.0009326462148543299, + 0.0012984750741636452, + 0.001391243079997418, + -0.0011332696430801812, + -0.00027957256225944545, + 0.0016077850952340245, + -0.0010099116631840958, + -0.0005858809401131701, + 5.554564813788997e-05, + 0.0010863865796095229, + 2.8750717125723693e-05, + 5.88759022023127e-05, + 0.00026029733949932773, + 0.002558612643143265, + -0.0003003950672996316, + -0.0016867083991940314, + -0.001420756702284227, + 0.0020301239988565756, + 5.823102193960843e-05, + -0.0013201701791173141, + 0.0012541244673897653, + -0.001694845851815293, + 0.0003406129750054729, + -0.0014728249383093705, + -0.0011476006245486146, + -9.978070772036882e-05, + 0.000571504565846614, + 0.0012460871620336186, + -0.001647830389180901, + -5.695050151300646e-05, + -0.0006038702507427205, + -0.0002638149283914981, + -0.0010101256771525206, + 0.0018862548560719798, + 0.00025697644966663397, + -0.0010520792830266705, + 0.0002568710041930001, + 0.001771344392480392, + 8.869924429039928e-05, + 0.00033994506692392053, + -0.0028399210404883198, + 0.0006130000601126156, + -0.0004432289570443829, + -0.0013277715995566439, + 0.00038055269905921073, + -0.00037801710489702994, + -0.0003519768589226585, + 0.0007985822559403975, + -0.0002139384303413195, + 0.00046245367808782237, + 0.0006353390921750248, + 0.002178496402860409, + 0.0019440174994887565, + 0.0004247921430024843, + 0.00013679273713955334, + -0.0010658835688688293, + -0.0006062267307268344, + -0.0013172267190559137, + -0.0007197514568995907, + 0.0020668111099634446, + 0.00038194135989007256, + -0.00052208785417008, + -0.00024470597169139305, + -0.001618322750097565, + -0.0004123686442026127, + 0.001054813945625825, + -0.0012076126236061828, + -0.0009462040659263261, + -0.001408393659317745, + 0.0013522596338459657, + -0.0006558505960639797, + -0.0004386200082029965, + -0.0018569583214278738, + -0.0010621489434628013, + 0.00031185763421009066, + -8.355059839865068e-05, + -0.0015648982968277092, + -0.0007431057848916151, + -4.595163914438869e-06, + 0.0016854034986315055, + 0.0012683750164008498, + -0.00021678751381468402, + 0.0009783387131548362, + -0.0002509599964898599, + -0.0013179305553953887, + 0.000530640389712002, + 0.0004846844034953684, + 0.00014855067415394543, + -0.0015299759708100975, + 0.00017252215054423977, + -0.0013253389431435775, + 0.0015482756265867339, + -0.000617967256288324, + -0.00011798506801786862, + 0.002272088140773624, + 0.0006396883344335749, + 0.0006729152931820091, + -0.0007707299365970305, + 5.230285923153502e-05, + -0.0013979509691053526, + 0.001006385205282626, + -0.0006139714387971132, + 0.00037119168478708076, + -0.00017811052332524773, + 0.0002986510316830998, + 0.0020481091593948604, + 0.000316192627020012, + -0.00030851878084513077, + 0.0005373421087636106, + -0.0010438131360389106, + -0.0007206574395972818, + 0.0003221005534305504, + -0.00042534364645127853, + -0.0007502303969102966, + -0.0015468451145000698, + 0.00133104273368403, + -0.0004755606058064495, + -0.0013972981975302926, + -0.0001765538139423174, + -0.0002560816053763925, + -5.223060127810288e-05, + -0.000835033455540951, + -0.00039937587261345783, + -0.0006728837034860872, + 0.0010535140697707345, + 0.00016137798962434478, + -0.0005641063731500086, + -0.001694052172720862, + 0.0009090227591731266, + -0.0017073885104509137, + -0.0007703132724953923, + 0.00030434948188881925, + -0.0009523068969485405, + 0.00038733943847925415, + 2.6019541486002907e-05, + -0.0016222120166294648, + -0.0016058385682334408, + -0.0003937069533607744, + -0.0014390368707928951, + 0.00028873058082998167, + -0.001631062303141525, + -0.0015349766116527018, + 0.0007368745123124707, + -0.0006355926350508033, + 0.0018747255949504084, + 0.0005703896585983692, + -0.000729911699005818, + 9.1091522989903e-05, + -0.0005834592733879649, + -0.0006908216735594259, + -0.000864833452905959, + -0.0006695676723276166, + 0.001795143305255756, + -0.0015180740287764056, + -0.00210120739863102, + -0.00033201755700055835, + 5.283337237626696e-05, + -0.0008931010804611335, + 0.0006874061257944143, + 0.0009431970439386188, + -0.0011826615548396304, + 0.0013494011051833515, + 0.0006227896327290095, + -0.0016342377136780322, + -0.0011338497656727484, + 4.656837222472164e-06, + -0.0011664994734969663, + -0.0004552254893419864, + 0.0006383350124538738, + 0.0016553036276935667, + 0.0012636327423331919, + 0.00020578996584797365, + 0.00023109404547677566, + -0.0001770615379426897, + -3.5412770922216546e-05, + 0.000720574334379009, + -0.0010238929288154622, + -0.0017444709066335826, + 0.00039604390335965575, + -0.0014553715432158501, + 0.0017434604299425974, + 0.00012401494557044566, + -0.0011648069855184663, + -0.0010510324749181826, + -0.00021082806626281846, + -0.0003183074473746005, + 0.000550896471163073, + 0.0005826951465703096, + 0.002209965043876214, + 0.001409466907460268, + 0.0022841564649711387, + -0.00028749666592913333, + -0.0009687890236077091, + -0.0010610275518289148, + -0.0003266852194286706, + 0.0013103357509591266, + 0.00039787420259287406, + 0.00023386745920777273, + 0.0002998414070987274, + 0.0010734298116155021, + -0.0004636344631782388, + -0.001158139051632458, + -0.0008352075978292656, + -0.0011758030775352159, + -0.001349360742504203, + -0.0010193989226688824, + 0.0008071168422397068, + -0.00022343610289328664, + -0.0011263848379902705, + 0.0007355874506866118, + -0.0010580847637602156, + 0.00012098679580884098, + -0.0007944710801412734, + 0.00022216251024848136, + -9.847327232953526e-05, + -0.00031886825923641005, + -0.0010679413609618234, + 0.00043894179607962045, + 0.002160873334244369, + 0.0006303981493328158, + -0.0017540000785325853, + -0.0003674312153203904, + 0.0006477992639187363, + 0.00040912340080326715, + -9.456225929299865e-05, + -0.0005554375416209835, + 0.0003175507778655629, + -0.0010722036474776482, + 0.0013552471641519355, + -0.0009832960042572298, + 0.0005843106542680999, + 0.0011018182201637339, + 0.002011464230686246, + 0.00044670355767656005, + 1.845269471720368e-05, + 0.00017578833746607298, + 0.0023270772118125908, + -0.0011180348815580398, + -0.0007493585813548007, + 0.00010082839776725471, + -0.0025603261790538368, + -0.00019606028975004683, + -0.0008905215874017802, + 0.0007123618746799855, + 0.00020320024788897509, + -0.00026645101008394, + -0.00019347819002958462, + -0.00037499800738024266, + 6.196550707408917e-05, + -0.0030096263708234584, + -0.00034421165265568864, + 0.001631016209303581, + 0.0006137985882325823, + -0.0003973833588474072, + 4.167143635323772e-05, + -0.000489661545868989, + 0.002507272118554918, + 0.0015505309741224295, + -0.0006068161860412626, + -0.0012300067675236922, + 8.53114293868912e-05, + -0.0007031597540082974, + 0.0002889734763848189, + 0.0016484763406131276, + -9.962491670830492e-05, + 0.0024801102877651734, + -0.0006443747947516717, + 0.0005926165271106109, + -0.0014518768590482149, + 9.78450464283615e-05, + -0.0009039347408810552, + -0.0007659270528403066, + -0.0009263556887289321, + 0.0003621159805755733, + -0.0006630701836231866, + -0.0005072800405249145, + -0.0009169024792835806, + -0.002003266785382957, + -0.0016835562476071528, + 0.0005805651188313827, + -0.0010923225269550095, + -0.002040078810778707, + -0.0010080490549936713, + 0.0001321041583238902, + 0.0005323278409030434, + -0.00013328515717540973, + -0.0007763397983144437, + -0.0007341305359058945, + -0.0001121943387957886, + 0.001226536653383047, + -0.0001983145571761254, + -0.0014289103245724516, + -0.0011504801431393224, + -0.0009735494816080998, + 0.0009060137882669717, + 0.00012866351594286623, + 0.0011384607470193917, + 0.0011882087441518394, + 0.00056968454994588, + -0.000265467000120187, + 0.00016673117835869588, + 0.0009503630904986592, + 8.293961146554462e-05, + 0.0005619112056564883, + 0.0004160697877366922, + -0.0007773802457089549, + -5.46522772255841e-06, + -0.0013968246207610596, + -0.001214298519929965, + 0.0020524506827947725, + 0.0006531947972376577, + -0.0008633727918997118, + 0.00047658258558819417, + -0.00013236476558118915, + 0.00026788121646443414, + -0.0007776621617048335, + -0.001842080438907829, + 5.701757681047852e-05, + -0.0009107504590771012, + -0.0011127339375159328, + -0.00018920359146305237, + -0.00016962829471505353, + -3.462123982520477e-05, + 6.338315940705746e-06, + 0.0006425197986871742, + -0.0029503708717786717, + -0.00024252724741532676, + 0.0037994827149691367, + 0.001589073430012489, + 4.664326061352766e-05, + 0.0007925425471013635, + 0.0004927110013551407, + -0.001044900664519976, + -0.00037845904063865785, + 0.0016229799722754365, + 0.000879124587552329, + -0.0014410579145420674, + -0.002382421100790483, + 0.0014753060101055549, + 0.0004809188156950399, + -0.002552869054847608, + -0.0014953221395429199, + 0.0006926423878848, + -0.0009443251455954134, + -0.0014805371438667897, + -3.084821871713503e-05, + -0.0005110381884514782, + 0.0006025649921138275, + -0.0024836692006822976, + 0.0005476135381347904, + -0.0007918749092641196, + -0.001278562210217579, + 2.3073921098317595e-06, + 0.000982778349183332, + -0.0002210779671601881, + -0.00015094411027408278, + 0.0005661288131801693, + -0.0013160633616911303, + 0.0004184934273814315, + 0.0005143411441754361, + -0.000693598282228607, + 0.000669419845044562, + 0.0004324518677041007, + -0.00018781229222620006, + -0.00015541275647648725, + 0.00035865400064189374, + -0.0006437242821990384, + -0.00028146774972140283, + 0.000768466056102701, + -0.0012822327621005802, + 0.0007032532373140853, + 0.0009810058362687796, + 0.0004787190660036808, + 0.00011827303854383055, + -2.8188103781611135e-06, + -0.0002066811902631008, + -0.0010737957756972389, + -0.0013518991324179852, + -0.00032821217323887527, + 0.0006332552636062477, + -8.523487009648074e-05, + -0.0005799297995597477, + 0.0001603848819399461, + 0.000593159844123499, + 0.0005787148579750306, + 0.0002459243351381186, + -0.0007757775669537914, + -0.0011822085177252068, + -9.90197704929569e-06, + 0.00061265388062932, + -0.0006311396227940874, + -0.0007885151974918594, + -0.0011802472095321288, + 0.0005991347772674673, + 0.0007011652517143457, + 0.0008952000223401218, + 0.0012128217436871737, + -0.0001871350974566705, + 0.000968449901528213, + 0.0007469683939228005, + 0.0012002517395576365, + 0.0007776551182314477, + 0.0005308950140066597, + -0.0002995786219516332, + -0.001972369564903636, + -0.0006324730212821197, + 0.0005238153219783101, + 0.0034653020781891513, + 8.53838310650319e-05, + 0.0022093596907157105, + -0.0011669895075731732, + 0.0008798244677082424, + -0.0003482378049585542, + 0.0012518831984156037, + 0.001907657539145941, + -0.0002550137117357274, + 0.0004927014477988136, + -0.0017000327076147832, + -0.00014550726054625809, + 0.0008058705434928411, + 0.0003804234805401675, + -0.0009037557778955759, + 0.0006419193105777791, + 0.0016010585187884298, + 0.0003164843700831394, + 0.00018344965633435947, + 0.0012354050365094428, + 0.00031854759022489947, + -4.506637043224637e-05, + -0.00011136416414277809, + -0.002053116738435719, + 9.362143940823841e-05, + 0.0011379930034989415, + 0.0013202043933142414, + 0.0013172364222867115, + 9.633451303664376e-05, + -0.00039230415542113305, + -0.001646434152603326, + -0.0009203842537089421, + -0.0005078819457924479, + -0.0001000051843733744, + 1.9317752182261587e-05, + -0.0011623207112037947, + 6.859357657754788e-05, + 0.001030172599956381, + 0.00048089308262030044, + 0.0006329151164193334, + -0.0005276879572700488, + 0.001422241702424021, + 0.0019206288034988024, + 0.00029628097489870094, + -0.0012619571537566521, + 0.0007349271507982874, + -0.00015789367132785614, + -0.0009369127571548466, + 0.0004173558730604802, + -0.0012275663977245647, + 0.0009443094816642983, + -0.0022860527883971473, + 0.0009737847237349877, + -0.0009872573095613586, + 0.0005132370877832219, + -0.00045630560786413235, + 0.001083667485740534, + -0.0006170656965366864, + 0.0007697744755520887, + 0.0011701844800048858, + -0.00032209929786908195, + -0.0011464336473092779, + 0.0010432983523237947, + 0.0004437078498629345, + -0.0008238405859633894, + -0.00019971628795815928, + 0.0013558942676473826, + -0.0027194629444495084, + 1.396169448773125e-05, + -0.00020384310888103515, + 0.0004897615091511592, + -0.0009569435803724843, + -0.0010613563828805069, + -0.0016862510150676344, + 8.234816361791192e-05, + 0.0012521322149923796, + -0.0007716930711459364, + 0.0010397456385830496, + 0.0004643572917031626, + -0.0017074256597101366, + 0.0008048271118401745, + -0.0010003028951300287, + 0.00014999149091487487, + -0.0016324163284892497, + -0.00021544854921900892, + -0.0010816260509729798, + 0.0005778952559175847, + -0.0009437245763063093, + -4.109313088620799e-05, + 0.0005618825613041072, + -9.14660991584195e-05, + -0.00013676915989934595, + -0.0020977548804213047, + -0.0010024060716985039, + 0.000813942628499569, + 0.002910503856971923, + 0.00027743585013141197, + -0.0006118032862173985, + -0.0003054358294928899, + 0.00037045513412074327, + -0.0011582454878222908, + 0.00028258670875434713, + 0.0005781612342585284, + -0.0004666743129803077, + 0.0008228570887929777, + -0.0015667094758936837, + -0.0005685565817077774, + -0.0005997846499275295, + 0.0010993180420094508, + -0.0005702094858259772, + 0.0008456071400093724, + 0.0003644659381475117, + 0.002014402760587063, + 0.0013199945688837668, + 0.0016731879288197538, + -0.00011294713048703763, + -0.0018637533941199829, + -0.0018401445282509245, + 0.0013274383717823775, + 0.0008210559082440651, + 0.0008341192788091826, + -0.0006814910485581221, + -0.0012008000423655754, + 0.00042216658574075974, + -0.0015190790944349787, + 0.00019758347844856552, + -1.1122374925310599e-05, + -0.00023697912660952992, + 0.0019477804434100807, + 0.0006921801247348219, + -0.00029667968446069575, + -0.0016617060744382969, + 3.3040740505330335e-06, + 0.001260025201538233, + 0.0002828446269614241, + 0.0010820161314267732, + 0.00042579776031105576, + -0.0007390576736198619, + -0.00017210601543133107, + 0.0007751667277719757, + -0.0030733766796276854, + 0.0005864982945987699, + -0.00027855694926501307, + 0.0008080757797369345, + -0.00101008746628881, + -0.0020685430249696166, + 0.0015554934466096282, + -0.0005696232051512094, + -0.0019318844342615946, + 0.00048152381252271185, + -0.0013340249686682683, + -8.113884873994999e-06, + 5.8581207583909176e-06, + -0.0003664944546206609, + -0.0008124234875570984, + -0.0007393758360892206, + 0.0002749805927765721, + 0.0007857026169169544, + 0.0013376843747257819, + 0.00010094376427612672, + -0.00023260175357586033, + -0.0005460834997485609, + 1.8080686156123988e-06, + -0.0012709529975755748, + 0.0007490902390655639, + -0.0005604712373798168, + 0.0005170517461923289, + -0.0008360214266937828, + 0.0017424207241518671, + 0.000870975622438546, + -0.00010715166986752964, + -0.00045482948014648384, + -0.0013148238860881836, + 0.0019062824982193495, + 0.0003379866375907695, + 0.0005409233463522957, + 0.00032802586015477544, + -0.00040116417064107876, + -0.001136375750739968, + 0.0008648043338897006, + 0.00211685213047613, + 0.0007394733921106746, + -0.001422855951256798, + -0.0023106060761122066, + -0.0004285260194135304, + 0.000764727516574208, + 0.0005669470126547043, + 0.0012642852216280557, + -0.000723812493486943, + -0.0011884404607782394, + 0.0006267913210194092, + -0.00020311908073093084, + -0.0004264022823420136, + -0.0002443745031971193, + 0.00029368106832980076, + -0.001690525765487102, + 9.667126326717362e-05, + -0.002123172549099909, + -0.0019176399475036568, + -0.0003503639656679751, + 0.0004270236023820176, + 0.0009388492673326058, + -0.0013206858125217361, + -5.382223527325159e-05, + -0.0009665712097343219, + -0.00011529103595023272, + 0.00010294674829624418, + -0.0018236854493635616, + 0.00042544776243640147, + -0.0018216236885013446, + 8.986714110486747e-05, + -0.0013936254462709424, + 0.0004890561338171542, + 0.0009456268048341018, + -0.00014879063425070932, + 0.0004932008296410081, + -0.001985412879949309, + -0.0019460779285533174, + -0.0016319981571238788, + -0.00010217497434549203, + -0.0007406147737175941, + 0.0010547697704510234, + -0.000730249798906033, + 0.0004026355239908254, + 0.00013424914009303209, + -0.001737141044031844, + 0.0007983115957285136, + 0.0006915881619443882, + 0.0012421664328823962, + -0.001979113530535867, + 0.0015455612177918932, + 0.0007005680614601825, + 0.00022917136424097654, + -0.00028548305671926877, + 0.0012392794952678632, + 0.0018033833976897672, + -0.00035358935586977594, + 0.000252192267664189, + -0.0005074733164653379, + 0.0015055123316474676, + -0.0018387158534756234, + -0.0006823090763183634, + -0.0013250217108641018, + -0.0003418165898686746, + -0.0012250048120941305, + 0.00023305549072211146, + -0.0006677346525666419, + -0.0004068516296128657, + -0.0016606463292844489, + 0.0003108468323282655, + -0.0004905640435569638, + -0.0003242532019242971, + 0.0008308500919972655, + -0.0005024468221710894, + -0.0021944695687850947, + -0.0003902358600398116, + -0.0004670859863915425, + 0.00038400183320553964, + 0.0012502876896419027, + 0.0012933714424892854, + 3.0594174225691774e-05, + 0.0008573554019719845, + 0.0023071980759245335, + 0.0008484477360543209, + -0.0015004397364134464, + -0.0008673749959249306, + -0.0003468744154771835, + -0.002097818569918737, + -0.0002446044877129122, + -0.0020208643526938895, + -0.0009368573291960067, + 0.0005730343291981495, + 0.0012002998030520625, + 3.3014553184540255e-05, + 0.0008631821597171851, + 0.0021698016841543047, + 3.8517822691303425e-05, + -0.0004935436956373933, + -0.0005373365314013608, + 0.0009607682513232158, + 2.049181140956154e-06, + 0.0007822987633515368, + -0.0007030456311350856, + -6.891686597563906e-06, + -0.0021062130489541506, + 0.00034609287147937455, + -0.0011190977030234189, + -0.0010639987166455275, + 0.0005412131548046423, + -0.001617479122100571, + -0.0004424825891391762, + -0.00012493495857054582, + -0.0016234124243771609, + 0.0024460350668254653, + 0.0005784464464665057, + -0.0011651762079857228, + -0.000585301465188086, + -0.0007041304213295126, + 0.0011990538232895633, + 0.00013837840483173843, + 0.0010658522296592549, + -0.00040108914407134224, + 0.00032783066250563806, + -0.00011884698213060572, + -0.000855462276604808, + -0.000744956076567463, + -0.0016491241254062102, + 0.00025385841614923024, + -0.00013736058539243797, + -0.0002333460097353297, + -0.0005147768091208899, + 0.0011047375464618293, + 0.002059361503837074, + 0.001602556555925231, + -6.986677411936739e-05, + -4.605457292351225e-05, + 0.00028647498727823594, + -0.000255664253788858, + 0.0016597504696430404, + 0.0010342774720601172, + 0.000981136972606408, + -0.0003813127972811046, + 0.0008936664663781762, + 0.00045757148165723253, + -0.00029759935712718504, + 0.0007747043130495676, + 6.865452762244633e-05, + -0.0007895057511171324, + 0.000282968295391777, + 0.0002243239227064678, + -4.244157923273849e-05, + 0.0006000809317600359, + -0.0004888667060846292, + 0.0004922193022264176, + -0.0012022389482396693, + -0.0010150105635461444, + -0.0013183525664108304, + 0.000822436249630039, + -0.0002691614911437611, + 0.0007324786354678893, + 0.0003361428508106528, + -0.000730466473479751, + -0.0010025319046157387, + -5.210866416014479e-05, + -0.0004278832789257826, + 0.0013635966433536073, + -0.001211459065954199, + -6.714320470011357e-05, + 0.0008640115985963593, + 0.001309457111114345, + 0.0003864492378095713, + -0.00021360478557697673, + -0.0005146921886155855, + -0.0013547760178789024, + 0.00047680355514861564, + 0.0013366686476931273, + 0.00040525217216576514, + 0.0012924209968581514, + 5.448969934684256e-05, + -0.00030968819612447264, + -0.0018233917233371675, + -0.0019594800714508647, + 0.00031105734836450743, + 0.0007058177474352455, + 0.001028067564470791, + 0.0006430564897551909, + 0.001165300251781533, + -0.0012904771597934384, + -0.0012493991550566518, + 0.0007224452284707664, + -0.0006868762531991568, + -7.433822192561543e-06, + 0.000419831007631216, + -0.000615202620135087, + 0.00011227575649486219, + -0.000278422677364653, + 2.745092977693214e-06, + -7.406894581130114e-05, + 0.0008233436816900248, + -0.000599916002358613, + 0.0015848584832032287, + 0.000369002295358606, + -0.001604446661615565, + 0.00011010783377195321, + -0.0020627786783992273, + 0.001340276546740976, + -0.0003700677160689331, + -0.0001749341301310572, + 0.0011890712557522192, + 0.0014637482969635, + -0.0011187955047257706, + -0.0006555655821732263, + 0.0006437238547709282, + -0.0007659802320640402, + -0.0012736505653561142, + 0.002167079932134345, + 0.0013138638228368605, + 0.0006889414454031902, + 0.0006126343432525338, + -0.0010169520914636856, + 0.0011875281503711127, + -0.0003605320589748387, + 0.000510780438342156, + -0.0014684873961559632, + 0.0011391977852365667, + 0.0003398929153577536, + 0.0007867435654827409, + -0.00042408810100382074, + 0.0006097572836255118, + -0.0007744536957718152, + 0.001181236028388171, + -0.0007746073291702536, + 0.00031893627385032384, + -0.0004984754575266347, + 0.0011211728343589308, + 0.0010918431556506058, + -0.000619982486348485, + -0.0005080967275058221, + 0.0012738124746728315, + 0.00020664929747826952, + 0.0007801245803006095, + 0.0003258521766288535, + 0.00023490032275586068, + 0.0003752410970738025, + -0.0005197174852171936, + 0.0011155901952354423, + 0.0007246439808099511, + 0.0027865889010256066, + 0.001578778028889592, + -0.0005849947263398485, + 6.104988772459525e-05, + -0.00018475553217899934, + 0.001076456866430889, + -7.53622018916458e-05, + 0.00154722076760379, + -0.0012283846124204751, + -0.0001222015652617201, + 0.0003537529866226833, + 0.00013146316241471732, + -0.0025803592902775346, + -0.0003405374123815561, + 0.0010602139846087257, + 0.001180416064566177, + 0.0006156041808686011, + -0.000732431543048822, + 0.000409564680782092, + -0.0009185471433802978, + -0.0005078281722235376, + 0.00035921845791313803, + -0.0010788193452080344, + -0.0002702927531471816, + 0.0005978954551864736, + -0.0007505053768835447, + -0.0008399044148253899, + -2.6532418467303472e-05, + 0.00029069536579206184, + 0.000985731820166981, + 0.0013150802809225655, + 0.0013796208485526318, + -0.0009571017062595512, + 5.774979482628108e-05, + -0.00035099830536769217, + 0.00020599610296786637, + 0.0010396111659921152, + -0.00023081893312596168, + -0.0006653132787182625, + -0.0006868199882813954, + 0.0005537573104270205, + 0.0002393629038720559, + 0.0020052776541683174, + 0.0014963901752891341, + 0.00026430941455372, + -0.0019857717911744787, + 0.00039349296202540764, + 0.0008180449316328231, + -0.00016681702075426106, + 0.000392398589262528, + 0.0008132689861899392, + 0.00022293056339078816, + -8.145176168099882e-05, + 0.0003996604852576758, + -0.0015570517774160843, + 0.0002380878821006812, + 5.332798749002582e-05, + 0.0006599982374754875, + 0.0009014421866752351, + -0.0011465141064124704, + 0.0005162077549538458, + 0.0015722865540113188, + 0.0004602303584114511, + -0.00024272536782392096, + -0.0025738020784470666, + 0.00073871961002416, + 0.00010451213239470869, + 0.0011776867252551021, + 0.0007936554503863816, + 0.0006130661765591344, + 0.0008601448041345303, + 1.562337918297861e-05, + -0.0017477411576108475, + 1.8625693746035132e-05, + -0.0008085929982529302, + 0.0005601505007029594, + 1.2646860007249775e-05, + 0.0008622518503659729, + 0.0003971874187048324, + -0.001415290620623809, + -7.364610663021134e-05, + 0.0011551931065254674, + 0.0003858769786357842, + 0.0015523449846720262, + 0.0017670059742932581, + 0.0001097471848901264, + -0.0005666905175071421, + -0.0009624659609773999, + 0.0011766726793869685, + -0.0007581160183263838, + -0.0002485637331608375, + -0.000766389718930016, + -0.0001147866564384636, + -0.0008165767237517452, + 0.0009038278059488839, + -7.095092334352007e-05, + -0.0008393326061074984, + -0.002098248437167303, + -0.0008293399692756631, + -0.0007973206187543041, + 0.00022393027909728376, + -0.0002075892058876811, + 0.0004823878787451149, + 5.6578630575850575e-05, + -0.0015476824482271794, + -0.0003837989246754645, + 0.0011539842852826133, + 0.0008038530832645343, + -0.0018425408164421282, + 0.0006741348147541781, + -0.0026135333467360218, + -0.0002021745722511274, + 0.0016041350763864684, + 0.0002800798348881341, + 0.0005332792656691159, + 0.0009215787798109731, + 0.0005902693991096697, + -0.0002555022523153384, + 0.0009292470287378445, + 0.00031597190088520206, + 0.0005217257288512134, + -0.0011568436992485844, + 0.00020515250677229468, + -0.0006766794218785168, + 8.754057925905329e-05, + -0.00010582786147214754, + 0.00024016414665021114, + -0.0012629119585100116, + -0.00016784270250800917, + 0.00012051252081820505, + -0.0007931617207703749, + -0.0005314224810808128, + 0.0013636939623792308, + -0.00019733045638944388, + 0.0003175259857080333, + -0.00022930891345697668, + -0.0024031463034358265, + -0.0005914244155622334, + -0.002409028898315769, + -0.0006725598047093896, + 0.0013283334241446934, + 0.0013460788382625938, + -0.001374147660756294, + 0.0002902626599468961, + -0.0017506782762682928, + -0.0006412085131022595, + -0.0006349209963699817, + -0.00277875684992486, + -0.00023732270098082684, + -0.0005596210221575188, + -0.000278069944761283, + 0.000490908789191702, + -0.0007939636970208462, + -0.0003602347838674871, + 0.00010166549685505945, + -0.0015112245643525261, + 0.001192383156286273, + -0.0008632109817940913, + -0.001132363204318021, + -0.0005117981424452351, + 0.00028453006556164456, + -5.1195690895280236e-05, + 0.00033953905445530797, + -2.203684166798573e-05, + -0.0012742570948088235, + 0.0006489291508449984, + -0.00042639774254457836, + -0.00196551922655889, + -0.0011956047856194448, + -0.0005808918023858585, + 0.0011066597422632136, + 3.612663983739742e-05, + 0.0005126094077248752, + -0.0016797129724157498, + -0.00018772012091656327, + -0.00159142348290713, + -0.00011416941218344202, + -0.00045332259881387005, + 0.0003234681121386211, + 0.0011408844911139258, + -0.0014624011334223692, + 0.0005493642085944968, + -0.0010793334260166116, + -0.0011413728060256977, + -0.00048025171179311626, + -0.0003320354629259299, + 0.0012035002237285397, + 0.0005237036931881693, + -0.0004853643579361871, + -0.0020352415137207683, + -0.002027424077974949, + -0.00200494683400673, + -0.0007459607687812264, + -0.0006888646964515156, + 0.001260684324967894, + 2.563580813003564e-05, + -0.0006066258043883766, + 0.0008562490859970894, + -0.0001404123993863278, + -0.0007072895690304811, + 0.0004027643755847724, + -0.0006092094233809057, + 0.0018727959138857462, + -0.0011777769625130453, + 0.00041423040635375156, + -0.001567016713522579, + 0.0015947025233432788, + -0.0014298277550677657, + 0.0006539601414297519, + 0.0007303655493469286, + -0.0005159515229014994, + -0.0005388363387749064, + -0.000667669506235439, + -0.0005552806074380231, + 0.00048625581969047343, + -0.0018330117493477426, + -0.000868945592557178, + -0.0003749432890153304, + -0.0007220261173136594, + 0.0016456925699277888, + -0.00039290122536982786, + 0.0005087820442687141, + 0.00021611132457242049, + 0.0006791233180886207, + 4.3672660564131204e-05, + -0.00031703035992492666, + -0.001333363759590335, + -0.002227750789917166, + -0.00011233453211475567, + 0.0006313094493940804, + 0.0006842278125827254, + 0.0009845870310099402, + 0.0006823029772282072, + 0.0006282599654239465, + 0.0004752904541980526, + 0.0007570686600920462, + -0.0009389745358921389, + 0.00034625638050921975, + 0.0007256760214261097, + 8.150687766616784e-05, + -0.00015049426632357776, + 0.002211276410941523, + -0.00047326807129525344, + -0.000201901507063177, + -0.0001433305482424617, + -0.00018795330785152455, + -0.0006202139987968688, + 0.000581863993422844, + -5.2376182603352416e-05, + 0.0012704302508024035, + -0.0009825240175870206, + -0.0006633931188605078, + -8.910139215880162e-05, + 0.0013663134223497475, + 0.0005991260996378422, + 0.00044477970697956324, + 0.0007501715917140904, + 0.0013511337762475806, + 0.0001214256958928739, + 0.0007583777486128648, + -0.0014026249919138845, + -0.0007211981825201494, + 0.0006846442395077277, + -0.00018820538147172394, + 0.0005751380519013757, + -0.0008294203911511591, + -2.6601342756898305e-05, + -6.849333766889348e-05, + -0.0004909509323422891, + -0.00022239412074830857, + -0.00020847754261698565, + 0.0008257006424768218, + 0.0016581652811088793, + -0.0007291942933001395, + 0.0008896394916943732, + -0.001300730569004944, + -0.0011608986454166397, + -0.0006120664013719106, + -0.00010679795470827083, + 0.0002095848364660721, + -0.0011828123831651627, + 0.001320593213208555, + 0.0005841337011111377, + -0.0010932066681299782, + -0.00044588108561541663, + -5.674678625711186e-05, + -0.0001549303051016732, + 0.00010637630488234024, + 0.0018511443688712806, + 2.8921632609092223e-05, + -0.0002807586040852862, + -0.0015963268290256011, + 0.0012288466523686032, + -0.0005698864890856203, + 0.0006378882836946825, + -0.0002694531746827519, + 0.0008374973940131107, + 0.002152731621290208, + 0.00018798830403729807, + 0.0008343823592908944, + -1.3071693133587619e-05, + -0.0003934816410386631, + -0.00016181742398115804, + -0.0016276867471682716, + -0.001239266288387296, + -0.0012434402926105453, + 0.0004054164991831823, + -0.00019315467856389516, + -0.000108445879923718, + -0.0008045191371250114, + 0.0009443589097034293, + -0.00020242420902438516, + 0.0009994778794939342, + -0.0006690483407247866, + -0.0003110409086854358, + 0.000996666995853646, + 0.00048665140933557623, + -0.0003292670533428893, + 0.0005525585997622691, + -0.0002959643820411061, + 0.00023912830408008695, + -0.00039236977722792974, + -0.000720235195100531, + -0.00047629737138278405, + -0.0003729640430239032, + -0.0007888212138015692, + -0.0011899563429616355, + -0.00019467410482964807, + -0.0023938728384074693, + 0.001964806446106273, + -0.001608821448536066, + -0.001358642758237228, + 0.00028685664579147595, + -0.0005396038748098848, + 0.000759550068091111, + -0.0004764150917235405, + 4.509146546107997e-06, + -0.0016609098082102699, + 0.0021547077999567407, + -0.0015770853234237233, + -0.0010451495348943842, + -0.00045599739965561836, + -0.0006418354362705543, + -0.0013118123164979985, + 0.0003160330162135682, + 0.00140538452942483, + -0.0012590560211136576, + -0.0006052548233157692, + -0.0005925501312914538, + 0.00038660109580858153, + -0.0006841522493043743, + -0.0012940730907945953, + 0.002092053366790811, + 0.0002909847383096608, + -0.0001184986865988977, + -0.0009180712202220647, + -0.0009701570645118182, + 0.0006896967015832845, + -0.0015233461784191383, + -0.0027930621627318014, + 0.0015835646317381568, + -0.0006968184641284831, + -0.0004857276526237211, + 0.0005048058896396793, + 0.0007275431037733841, + -0.0019100153724950517, + -0.0010930973147686997, + -0.0008355773432517931, + 0.0011668526295628137, + 0.00020021964891618813, + 0.0016819146078641675, + 0.00043089275001556034, + 0.0017129003148458502, + 7.210290497636275e-07, + -0.0010273402343084009, + 0.000133960980782664, + 0.000912354547184058, + 0.00036961915852731726, + 0.0004929623845970906, + 0.0016968759993682414, + -0.000144204769883751, + 0.0006286751882712885, + -0.0006397505127161863, + 0.0012340516863637665, + -0.00044799897688888355, + 0.00026825912205174975, + -0.0002800249688174469, + 0.001174839660812033, + 0.0006373322143182147, + 0.0008809313360358395, + 0.0009191940398271611, + -0.0002459604081943741, + 3.691788584990818e-05, + 0.0014325655592716119, + -0.0006605675318798914, + -0.000913329286883658, + -0.0003638426505962881, + 0.0005470841610246902, + 0.0011631901580240686, + 0.00021239277940573922, + 0.0006945846526577841, + -5.436662783687133e-05, + -0.0021333884915431547, + 0.00022592771443466912, + 0.0009631340577983418, + -0.0008134907707297848, + -3.599491401519592e-05, + 0.0021843894510439276, + 0.0008147808098185808, + -0.0016387179064752467, + -0.0004684967418960447, + -0.0005334142832204746, + -0.0010268758957526416, + -0.0006717153592404915, + -0.00022170949745977663, + -0.0022325587330628604, + -0.001213530712346098, + 0.0017700695204816365, + -0.001817718810099104, + -0.0001497081860716363, + -0.00037870759509842035, + 0.000865832966021282, + 0.0012125692782022986, + -0.0005861152116053501, + 0.00030006024131923944, + -9.173830990751722e-05, + -0.0012425109131014734, + -0.0012814189473053306, + -0.0007400652960620095, + 0.00038076640339828244, + -0.000617642069344742, + -0.0011851733180349134, + -0.0010520496942468419, + 0.0005887410012730694, + 0.0009905497330408486, + -0.0002155572703811626, + -0.001582993383871847, + -0.0016037872167969584, + 0.00014495867257661982, + -0.0001897760308897799, + -0.00043519278973907133, + -0.0006424044221954241, + -0.0007539053756717707, + -0.0007084186385083712, + 0.0003200479541522608, + -0.0007918115751149085, + -0.0004525474082139826, + -0.000205116714502974, + 0.0004042382251490799, + -0.0002949979444739781, + 0.001106551255169697, + -0.0005815126967648445, + 0.0005067407849244036, + 0.0006460524513034605, + 0.0014887924978461238, + 0.0010105644953590054, + 0.001181819090633168, + 3.883910990068191e-05, + 0.0007940191763439044, + -0.000165608093294929, + -0.00010571552903757169, + -2.5181816148969833e-05, + 0.0007440211838726194, + 0.0007979053100157758, + 0.0002898171077347486, + -0.0009744608727769221, + 0.00039688041970231593, + 0.0010711558506647158, + -0.0023438818275539736, + 0.00021292986795289637, + 0.00041503675307908496, + 0.0009216200092119728, + 0.0004602650591518474, + 0.001173362260458247, + -0.0016331516370187275, + 0.00024047129921990696, + 0.0016656968453725757, + 0.0008273279167119124, + -0.0014548037934627263, + 0.00047086071795068895, + -0.0010083384392413621, + 0.00031795166647274474, + -0.0008242606704852223, + -0.0010804913326859804, + -0.0011458265334717479, + 0.00046722635094077644, + -0.00028466502950329176, + -0.0007992480241543912, + -0.000477813280046476, + 0.0018705299459796858, + 0.0009541099501967494, + -0.0014072980973949365, + 0.0006967389633240432, + 5.087668728594888e-05, + 0.00045375599886690913, + -0.0006412718345660544, + -0.000516124021342654, + 0.00022798568406440743, + 0.0002735813562677324, + -0.00019618745088882902, + 0.0004029282180293909, + -3.645050487006767e-05, + 0.0005709813041700008, + -4.646514324692398e-05, + -0.00023108888779890398, + -0.0020858542387901047, + 0.000477257099629505, + -0.0011147343922426394, + 0.0006332114878604241, + -0.00040164123100371973, + -0.00010212374047788917, + -8.634935624205576e-05, + -0.0007263584747309839, + -0.0017474927031298285, + -0.0002666042297596156, + -0.0004257790583879524, + -0.000535382050788839, + -0.0012259477227380535, + 0.0007712795764427245, + 7.133258340767518e-05, + 5.3509884802214344e-05, + 0.001409166359372516, + -0.0004918117786618525, + 0.0005577813403175204, + -0.00010088633605677416, + -0.001570671850880674, + 0.0017497319640446458, + -0.0011071986792333204, + -0.0001334321844741402, + -0.001697905025402217, + -0.001319970714048115, + 0.0024032930901300487, + 4.063031649065766e-05, + 0.0005998750338648811, + 0.0005807968702618021, + -0.00010114767089529194, + 0.0008291201955352334, + 0.00039089537767464074, + -0.0002337435943369629, + 0.00041485119831830675, + 0.00041062903295235084, + -0.0005091872880191606, + 0.000635590233310061, + 0.00014731552045611486, + 0.00041320444631732817, + 0.0003766878112598191, + -0.0014672959166884998, + -0.001290875480581679, + -0.001234920541792042, + 0.0012117509940392207, + -0.000872681831846063, + -0.0007821361704960821, + -0.0028951007263108655, + 0.0027170640733617, + -0.0004691151098443605, + -0.0002353108942234338, + -0.0016164287198581393, + 0.002659762145740645, + 0.0005390233923847069, + -0.0001286963667155386, + -0.002739181253587849, + -0.0009290900842855405, + -0.00039886163552807914, + 9.98392874445368e-06, + -0.0015750285193356025, + -0.00010545075258252547, + -0.0003656096445653432, + -0.0009742525147178536, + -0.0008683469689164904, + 0.0009380232895085392, + -0.001447695390837758, + 0.0012785138923256708, + 1.4343582713155558e-05, + -0.000628053631327963, + -0.00020025736005281123, + -0.0020621649888766876, + 0.0015063462238918658, + 0.0002742087374198063, + -0.00010869799021815443, + -0.0002677107486376507, + 0.0016985644383963438, + -0.002273973011263837, + 0.0006876784485962671, + -0.0007667822038045903, + -0.00012047469062653027, + 0.00017723604317313713, + 0.0010602087339038936, + -0.00028816829911515517, + -0.0012829769920831534, + 0.00015968558100220022, + 0.0010949041679145007, + 0.0003624079759931261, + 0.001716678977989426, + -0.0014865368095110028, + -0.00024624320403963804, + -0.00018962359873577367, + -0.001475131879835043, + 0.0006578836179177148, + -2.638128094661584e-05, + -0.0012045653294561406, + 0.0018471952478932593, + -0.0013681130858277503, + 0.0011504629342292056, + 0.0011594460361146195, + -0.0009898497527947017, + -0.0006467342238948637, + 0.00012463086965774922, + 0.0007862436869864922, + -0.0006179142604437481, + 0.0008190148181260493, + -0.0002700979592749801, + 0.00024939232855442366, + 6.150578043976072e-05, + -0.00042699770961816905, + -0.00019379276269970686, + 0.0009009534077425097, + -0.0009005774570748357, + -0.0007205104778237747, + 0.0016044183007746012, + 0.00014949866976280785, + -0.0004716142709892259, + 0.0008219751226348238, + 3.0923525114497866e-05, + -0.001091950663318345, + -0.0003182441390251327, + 0.0008034850175198171, + -0.0008735520858494533, + 0.0006410885284087482, + 0.0019201963909479577, + 0.0020951232606051915, + -0.0004701139489623465, + 0.0013101522577056842, + 0.00017593474662716676, + 0.0005359054115362458, + 0.0014541803516126691, + 0.0011368592533270183, + -0.0008116694984707718, + 0.001426476879269572, + 0.0002188285954218074, + 0.00125987154687111, + 0.00012504456276568279, + -0.0014189942737103183, + -0.0010020145399649738, + -0.0009441485667828218, + -0.0009280763430605002, + -0.00036473188360457344, + 0.0014540194966130328, + -0.0025239085054195756, + 0.0007962510228958058, + -0.0003734122400056384, + 0.00187174756657425, + -0.0010122272444886146, + -0.0002161613671363778, + 0.002690439157326255, + 0.0002130206259455728, + 0.0002678621899435048, + -0.0005602890234925605, + -0.00051634941784355, + -0.0003725301078042737, + 2.2399717163246496e-05, + -0.00020270465534419168, + 0.0001633122615867127, + -0.00044584946087845476, + -2.0209984348065463e-06, + 0.00037459234068929284, + 0.0007266674594783419, + -0.0005094737450554702, + -0.00108822820682533, + -0.000472390705645715, + -0.0015397812962806606, + -0.0011841976192919009, + 0.0013260037489881801, + -0.0010073243641000723, + -0.00123435991332459, + -0.0008254600154519698, + 0.0005097685741366842, + 0.0011019273071698505, + 0.0010951643103858514, + -0.0008531950365690771, + -2.2002894548504516e-05, + -0.0008212998112916861, + 0.001182043852917157, + -0.001662414853618538, + 0.0003546079334350781, + -0.001034680373980675, + -0.00013047738775384113, + -0.0003981927513699645, + -0.00023130132844079775, + 0.0009376033794230996, + -0.0003061131332500271, + 0.0004387494117247188, + 0.001461559835628064, + 0.0012952731400943515, + 0.0006928502291391938, + -0.00015802433291885984, + 0.00032736889218481737, + 9.590625266935413e-07, + 0.0005322423797166227, + 0.00029167516991748896, + 0.002265474426906923, + 9.294768617179942e-05, + 0.00010880840745224164, + -0.0011881483685050275, + -0.0015334345451020587, + 0.0009748655400885992, + -0.00026007935985254287, + -0.0004011296554558339, + -0.0023526735820937573, + 0.0006987779636898977, + -0.0006368319087558572, + -0.0006505610918561765, + -1.9031921515521677e-05, + -0.0005716762691623259, + -0.0018857608131461778, + 8.836201197766528e-05, + 0.0001820590880885707, + -0.00024515369192424567, + 0.0004135701631112784, + -0.0012085766731435446, + -0.00048592254981358524, + -0.0007498000216146002, + 4.998139305288978e-05, + 0.0008117855438706916, + -0.0001996169323031093, + -0.0004875628994355697, + 0.0004184022373380142, + -0.0025252734937869043, + -0.00018888757583779533, + 0.000959690211753677, + 0.0004451733204918563, + -0.000552504024717263, + 0.002933458861436471, + -0.0018445809935875759, + -0.001198747419306746, + -0.0006974758038914129, + -0.0006999252369923829, + 0.0002934726964686592, + 0.0009709545933470925, + 0.0007383180239909635, + 0.002525671436889377, + 0.0007192645646370746, + 0.001126931143591391 + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgb(246, 207, 113)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 1", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.001126931143591391, + 0.0001366516959005484, + -0.0015903656318779972, + -1.6141046952390164e-05, + 0.0010141515780524568, + 0.0014183755598595202, + -0.0005928264449893003, + 2.0251600745825583e-05, + -0.0014156428362243638, + 0.0013164401183389494, + 0.00021973283891391201, + 0.0009724863026296366, + 0.000924659278281904, + 0.001325451513325202, + 0.0009668530479842803, + 0.0009612186721239702, + -0.000672235515842028, + 0.00013644959056582277, + -0.0005790234095104245, + 0.0015284633565679601, + 0.0003113080994637032, + -0.000773275080424825, + -0.0022344139741296257, + 0.0020997562127716427, + -0.0007012231494118201, + -9.637168800831716e-05, + -0.0008335824086203008, + 0.0011183307775925017, + 0.0007039680716917274, + 0.001341259538433009, + -0.0011001865847509713, + -0.0014837681632402253, + 0.0006159149024880919, + -0.0002197160931841358, + 4.7122302567410966e-05, + -0.0010259166288988048, + -0.0013620400295850765, + -0.00022595094293072256, + -0.0015740335939073502, + -3.435211670847887e-05, + 0.0007541801071030402, + -0.0004032140891217525, + 0.0015700894033756382, + -0.0005432385746703323, + 0.0001289451971919868, + 0.0007813358844492947, + -0.0002465752262623505, + -0.0012393174614247786, + -0.000295508054343837, + 0.0005156792747163233, + 0.0008311634564697458, + -0.0020460928541422233, + 0.00023253516154396182, + -0.0005625100382057205, + 0.0004460829508404133, + -0.0007011281251223634, + -0.0011601488493758886, + 0.0005383807365162702, + 0.0006335350430294133, + 0.0008355086465069216, + -0.00015834726196869257, + -0.0006686773654045602, + -0.00025379647272931455, + -0.0020332966581009227, + 0.0006860464003001382, + 0.0008889821410372325, + 0.0001760108828055627, + 0.0010121741852197178, + 0.000748115122651041, + -0.0010493977663692685, + 0.0010810319202276045, + 0.0009185747514156867, + -0.0011957526020308403, + 6.992264891079855e-05, + -0.0006164535099501062, + -0.0007928957448012011, + -0.0010831868741394694, + 0.00010273839135493037, + 0.0014037208595317596, + -0.00041127060523931107, + -0.0009649187196545049, + 0.0004561901165400211, + 0.0015166453806362643, + 0.0005153862673314311, + -0.001555689231621431, + -0.0007334389975181775, + 0.0008978713915292089, + -0.0005679525936062184, + -0.0003343448392419797, + -0.0015080138150037894, + -0.0013574122933790076, + -0.0001818735725262273, + 0.00035621195229933666, + 0.0011598531762431008, + -0.000732106989580845, + -9.224495255209884e-05, + -6.920200301530493e-05, + -0.00039854097524154335, + 0.0018128646661889785, + -0.0010467386550527963, + 0.0007874365955585045, + 0.0005148352373045059, + 0.001184297519873447, + -0.0008387169225888131, + 0.0001620083539185236, + -0.0004544854439237014, + 0.0014435865050377158, + 0.0009114638227535225, + -0.0011121874773851834, + -0.0006689141913884242, + -0.0013471246556142767, + -0.0019669757974935327, + -0.0005340438950862949, + -0.0012533673061330408, + -0.0008242765623723733, + -0.000400506520026716, + -0.0010857026760696846, + -0.0003630176112332235, + -0.0003305438538704915, + 1.613101801989215e-06, + -0.001695827934458258, + -0.0006469973382303982, + -0.0002768887147184687, + 0.000711234267255801, + 0.0005374959296455829, + 0.0005010291354970452, + 0.0013655328896184397, + -0.0008651033094811328, + 0.000957018460325614, + 0.0004445285046467526, + 0.0004634626358003315, + 0.0001250956287438983, + 0.0009814802816564105, + -5.913542969880399e-05, + 0.00024059156664428736, + -0.000774000652460641, + 0.0005184447470164419, + 0.0016363967842105346, + -0.0006516973385118717, + 0.00025941933126452286, + -0.0004385700743258704, + 0.001171463854901054, + -0.0009810727296613113, + 0.00017597992509834313, + 0.0016186565418279575, + 0.0002777088089580539, + -0.0010944259877069752, + -0.0002846413857934735, + 0.0007954071674765002, + 0.0012779386207758276, + 0.0015566946564149105, + 0.0025746718917090032, + -0.0023269376478664066, + 0.000693046858208233, + 0.0015757448156827876, + 0.0010496338638337286, + -0.0005326612570837433, + -0.0005152459636464881, + -0.0008965367335374877, + 0.00042967373324542726, + 0.0013343074451989333, + 0.00015868925799671053, + 9.878218320458142e-05, + -0.0018058107756518515, + 0.00023163985333152893, + -0.0013065360234357382, + 0.0017288921215923845, + 0.002467173120371578, + 0.0011292433227409007, + -0.0004952077209646962, + 0.0004971297219294988, + 0.0011635221915711534, + 0.00042312171518775623, + -0.0007547485318006465, + 0.0010072451423153996, + 0.0019405825062723653, + -0.00017438556724143144, + -0.00045438355878542444, + 0.000602426173135403, + -0.0006114818015161131, + -0.0013186792120691143, + 0.0015031247978081858, + 3.108486111033439e-05, + -0.0003607219519723518, + -0.0007553023443461253, + -5.213772624731532e-05, + -0.00016113630380516658, + 0.0005316223063966308, + 0.0018797631811885188, + 0.0011317604973735311, + 0.0001105499983143108, + 0.0006391477767964717, + 0.0016973353061446555, + 0.001491002095371194, + -0.0006752178420190775, + -0.0004134602408195504, + 0.0012432682915026801, + 0.00036195406733182913, + 0.000962240989083526, + -0.0017416576414350945, + -0.0016820608999933563, + 0.0008145318740809254, + -0.0012613218340321239, + -9.811475346797134e-05, + -0.0010718231266453355, + -0.0009918240861324157, + -0.0008084875095440158, + -6.544305367411308e-05, + -0.0004226314168548488, + -0.0016463389351741777, + 0.0016417185599581301, + 0.0012515357126305273, + -0.0007715404139028981, + -0.00033794100739727764, + -0.001371558647158496, + 0.0010772479005707527, + -0.0013614924609903804, + -0.0019378958696946286, + 0.0009655834497069659, + -0.00042273410142852755, + 0.002880476699537658, + -0.0006931669625328902, + -0.0015454302969523308, + -0.0004520126714128924, + -0.0003211542325842148, + 0.0010300608908205577, + 0.0013637695563362285, + 7.019898762653762e-05, + 0.0007022963336557063, + 0.001284750778629835, + 0.0013780578795157354, + -0.0006159455172943725, + 0.0014275252918954117, + -0.0004992585971343146, + -0.0016587081376633203, + -0.00038978435843671456, + 0.0015289567393887656, + -0.0007801216496269912, + -0.0002351487085125739, + -0.0011269450394805485, + -0.0008207060850357216, + 0.003436006888906119, + 3.969894167343236e-05, + -0.000937149048974453, + 0.001627772334418262, + 0.0009394554694743463, + 0.0019199598327396417, + 0.001475548735335455, + 0.0004736504387364243, + 0.0017218902365051167, + -0.0007151789634403687, + -0.000964045571154726, + -0.0017232289531033608, + -0.00023189172058351944, + 0.0007273340029073256, + -0.0014769933782213596, + -0.0005240229991746775, + -0.0010703982666376232, + -0.0011147694178254655, + -0.00046479983943393253, + -0.00024692378629351366, + 0.0005135312558812957, + 0.0008137378216161216, + -0.00022470298599309416, + -0.0007897330365318092, + 0.00024004734106718677, + -9.73668684757632e-05, + -0.0002077905419281723, + 0.00015351522632984062, + -0.0010282630768558365, + -0.0016146349700336612, + -0.002132785870314595, + -0.00021585278062098787, + -0.001256743315064973, + 8.486112819320546e-06, + -0.00019726348075824963, + -0.0005505423875859423, + -0.002176026970044841, + -0.001062651639090081, + -0.000259497106160153, + -0.0014714410195160574, + -0.000771856426681798, + -0.0020508417689438104, + -0.0005448122064344424, + 0.0002024347618679283, + -0.0010138942124668542, + -0.0007335647005357454, + -0.00024167665593139345, + -0.00025524468761861104, + -3.620078457539255e-05, + -0.001591907765008563, + -0.0003036012890598751, + 0.00016070910005241246, + -0.0007324961181870225, + -0.00028772253446395895, + 7.4472019794120384e-06, + 0.0008797096211713593, + 8.779015515382102e-05, + 0.00030202778894021515, + 0.0005401863858402514, + 0.0005642370637142385, + -0.001959472313274904, + 0.0015777412214555218, + -0.0004361961110646103, + 0.0014092383462920438, + 0.00029401238806307453, + 0.0009483105115579143, + -0.0002945067305621721, + -0.0004148480516392149, + -0.0013148667130008873, + -0.0017770183202668734, + -0.000227260646288678, + 0.00018217712677001284, + 4.435561949353904e-05, + -4.881038754528242e-05, + -0.0006441057217582518, + -0.0003939393138002342, + 0.002468002600724897, + -0.0003487563722054912, + -0.0009087350645634162, + 0.0002410580703455328, + -5.565118020245435e-05, + -8.504925945877954e-05, + 0.0026837596708299467, + 0.0006085758662826813, + -0.002115735062611961, + -2.9554599949651823e-05, + -0.0011472261510875354, + -0.0014206758324288931, + -0.0013697209120798178, + 0.0005085856333263151, + -0.00022074100734592087, + 0.0007242100719563329, + 0.0006061667616127033, + -8.504218273974198e-05, + 0.001052180513170455, + -0.0004353675150500951, + -0.00027287111201217097, + -0.0006074636239509929, + 0.0005406081715957534, + -0.0009069478185534231, + -0.0005894916566845345, + -0.0007559776446997182, + 0.0009290486295427513, + -0.0005848156009482677, + -0.0013234134651057274, + 0.0012816329364713508, + 0.0013918858866539554, + 0.0002820799378738546, + -0.00016669286145555326, + -0.0013607171204140448, + 0.0028855198052016306, + 0.0012990342397254625, + 0.00114611538439916, + 0.000212509500131061, + 0.000977499410199533, + -0.0010628364873403345, + -0.00036578063963843007, + -0.00048477666949291686, + 0.001182464059818689, + 0.00028796340567039785, + -0.0008935357197826718, + 0.002587294918188059, + -3.0213050147543e-05, + -0.0008177014289521547, + -2.3944138183508953e-05, + 0.0002399706395612233, + 0.001976631588378057, + -1.8699639300012395e-05, + -0.00040784567006957106, + 0.0007022733195093351, + 0.0005230486736423264, + -0.0008609191407034205, + -0.0007679408449660912, + -0.0005281968796333236, + -0.0009967708920937794, + -0.0017841778972068475, + -0.0009248163228223431, + -0.0011835575700024864, + -7.662339121616209e-05, + 4.006613716965109e-06, + 0.001370152770712739, + -0.0002404893291922907, + -0.0005059111298957453, + -0.001988380319887095, + -0.001119011191610601, + -0.0005513341903388397, + -0.0007386975456214389, + -0.0018212511089920078, + -0.0006755427293500553, + 0.000697271428536339, + -0.0005305929241948159, + -0.0004583447087650934, + 0.0006979454850347394, + -0.0013826282747785139, + 0.00019413112120164608, + -0.00012964505754227838, + -0.000488437395688095, + 0.0019441178101225161, + 0.0016627251466734764, + -0.0002784121491868203, + -0.0013760165213118811, + 0.0003100914694467498, + -0.00043891761579211526, + -0.0003452010162974092, + -0.00042970900957179606, + 0.0005315464392610491, + 0.0005145609484561917, + -0.0009266277077139332, + 0.0016676055856648143, + 0.00010310170172472673, + 0.0006267947422903663, + -0.000813843244867034, + -0.00046175668662486104, + -0.0011051855549051662, + 0.000766568748176574, + -0.0004901851015089507, + 0.0004997582592806301, + -0.00018685614897071988, + -0.0006841129612983082, + 0.0006359707210072352, + -0.0013878255539457908, + 0.0006306695318425152, + -0.00038436204912706853, + 0.00040187645147872963, + 0.0005327496891074527, + 0.0018215454484171879, + 0.0014122287446811403, + -0.0013627802103267576, + 0.001834815630700337, + -0.0013789050044651187, + 0.0008791578290813992, + -0.0004079487607992369, + 6.742889655756288e-06, + -0.0007608680586012468, + -0.0005423188057856521, + 0.0004353665395937303, + -0.00044837763325893603, + 0.0004176333767813877, + -0.0004283839972291703, + -0.0015324093542151726, + -0.00032096089815982507, + 0.00014351917317651032, + 0.0012641863856408294, + 0.0005117710228403071, + -0.00020204055106464973, + 0.001714467483938586, + 0.0013721817533667003, + 0.0010353134466738066, + -0.0009956748862916824, + -0.0012253235095554527, + -0.00040159812187926826, + -0.0008208614928380616, + 0.001187168196060793, + 0.00025811670668278756, + -0.001727293615219509, + 0.0020619919857516275, + 0.0012286392998058534, + 0.0015550122698301983, + -0.000824235532645167, + -0.0011088459869167666, + 0.0006453561978863383, + 0.000304172376388374, + 0.00019185227704995175, + 0.00014400078994488091, + 0.0002621934626265899, + -0.0007018841849211253, + -0.00023862655017042734, + 0.0007368437013361567, + 0.0005470697897602706, + -0.0008665659805334579, + 0.0004912328878566648, + 0.0007228843531089835, + -0.0010973388401202139, + 0.00021224838725703536, + 0.0005610659627445653, + -0.001003775092725398, + -0.0010485519778962095, + 0.0011617421240992737, + -0.0018375080026566326, + -0.00010938933577331743, + -0.0015607000151232706, + -7.606614833399254e-05, + -0.0014707109894170275, + -4.994128343290629e-05, + -0.00017263630127675728, + -0.000497442828742867, + 0.0005302901308364585, + -0.0017790467904629905, + -0.000937603473215549, + 0.0008590520451034984, + -0.0007359864936255547, + 0.0012411592764352548, + 0.0010227162993124454, + 0.0004708468407356398, + 0.0006352043514272376, + -0.0002587332223240235, + -0.0005793099216942158, + 0.00019879172003829193, + 0.0007142016311748558, + 0.0016968696707541225, + 0.002136203753139071, + 0.0014457077216049228, + 0.000663151444715387, + -0.0004756084532110342, + 0.0005907644770401701, + 0.0011939728546392033, + -0.0002730422976530161, + -0.00046504297479287135, + 0.00026121778057862626, + 0.0010627630005665847, + -0.0001647008289112847, + 0.0001957583584909089, + -0.0009472666355688118, + 0.0020059029723023336, + -0.0013900942208887222, + -0.0002277383228516566, + 0.00023424282076068054, + 0.00023586080849691108, + -0.00028614514216585127, + -0.000172464275059029, + 0.00011316055338992836, + -0.00023575310874859507, + -0.001852449345426223, + -0.0006091854487943082, + -0.0011669673003340572, + -0.0018190698475421, + 0.0001533712069457534, + 0.0005415371574470747, + -0.0013616194420570354, + 0.0005204584861483342, + -0.0012853750023257748, + -0.0003141804350609804, + 0.0005306219437932779, + 0.0008302616835632837, + -0.0009429207871689604, + -3.639059939658185e-05, + 0.0012258210010097034, + -0.00036499705686196196, + -0.00023104653887258669, + -0.002028407122626162, + 0.000855728092403671, + -0.0003977749370799059, + -0.001002187384014767, + -0.0002891065425229689, + -0.0017741534913217802, + 0.00021547287523477227, + -0.0004059556331964193, + -6.362426068201474e-05, + -0.0005238630467595715, + 0.0006048901485540863, + -0.0005150874391451252, + 0.0010816348808572458, + 0.0007578331375962778, + 0.0009010917416271786, + 0.001694592536580297, + 0.0012915432529566077, + 0.0005409569383284224, + 0.0007529221675167721, + 5.792459701455743e-05, + 0.0013647824796804702, + -0.0002364192652893131, + 0.0004490828030041378, + 0.00030722241622444825, + -0.0021693091952541574, + -0.0005980276849582303, + -0.0012354366703043753, + -0.002618355249448559, + -0.0006378140011173753, + 0.0011439494263097121, + 0.00020481348232218748, + 0.00038959553128681485, + 0.001980399222745151, + -0.0003244113309123819, + 4.413018756552484e-05, + 0.0018441786311441714, + -0.0018838800203688345, + 0.000364647130840739, + -0.0003227738444545068, + 0.0011531034549167381, + -0.0021293033286783006, + 0.0003430526658861855, + 0.0009999018555349223, + 0.0016192838718220013, + -0.0008146156865538118, + 0.0002390529896026534, + -5.5887586584123385e-05, + 0.0019119681581599114, + 0.0006434246410596273, + -0.0018169838250120275, + -0.0004967239351138738, + -0.00026649570083162434, + 0.0005082294588167596, + -0.0004223064958205536, + -0.0005571182319497729, + -0.0006998623509190253, + -0.0003292084127236785, + -0.0004798345478345899, + -0.0035542913496252695, + -0.0002637837961484876, + -0.0007539669231858044, + 0.0012059501080864026, + 3.0056541184410394e-05, + 0.0003167799005701838, + -0.0006587271035126575, + -0.00011961175459155553, + -3.570192928724015e-05, + -0.0004907642629192979, + -0.0004942205208005026, + 0.00016708254232806032, + 0.0015647715252501125, + -0.0015927614037593333, + -0.0006201486653865878, + 0.0018519637871845418, + -0.0011148978914943153, + -0.0007707750472514635, + -0.000533946018886265, + -0.000839144474014491, + 0.0019251587835180442, + 0.0007134467468104922, + -0.00011098962044035274, + -0.0009627699333336634, + 0.00017618609603078318, + -5.584541549792955e-05, + -0.0010724913099648878, + 0.0013099407053219383, + -0.0014382574451544954, + -0.000724126930454644, + 0.0008410753954079802, + -0.00035128063897199325, + 0.0007063192971454871, + 0.0004817066391916138, + 9.705011162656338e-05, + 0.00010674240767484915, + -0.0015623412680485498, + 0.0011371189307849815, + -5.590574011805238e-05, + 0.000471601286282338, + -0.00047823340518290546, + 0.0002033965770073246, + 0.00039020080089527853, + -0.0006305052222572453, + 0.0005108483593861739, + 0.0010315954321955363, + 0.0003953094348902681, + -0.00070934331033013, + -4.849248608494195e-05, + 0.0006758479677129534, + -0.0013501502648581905, + -0.00018397029986840606, + 0.0007630451829965171, + 7.01017842034387e-05, + 0.001968491712469446, + 0.0003468771390964573, + -0.0009046064684225152, + 0.0004962991107782862, + 3.8586391301767254e-05, + 4.9944029432217814e-05, + -0.0017275923098532212, + -0.0006098382351817569, + -0.0009625959120168132, + -0.0013303095262968188, + 0.0007047702076870971, + -0.0008727194345778993, + 7.49948304212421e-05, + -0.0008348021923673883, + -0.0016256828882563617, + 0.0005788678149860761, + -0.0011658410794675802, + -0.0012104007594123574, + -0.00020636274562619244, + 0.0006135649913953711, + -0.001090330736332045, + -0.0010270892661658274, + -9.963078205533056e-05, + 0.0005195819345371216, + -0.0002817722795390947, + 0.0007087971916211334, + -0.0024783137918979767, + -0.0002200804941706135, + 0.0003858208451332204, + 0.0008389164852453235, + 0.000294876411891952, + 0.0017507439631412032, + -0.0007788746620493313, + -9.892501521430271e-05, + 0.0001326601131176974, + -0.0006044300293587392, + -0.00023472645628515301, + 0.00012888367900715716, + -0.00034075908467430565, + 0.00027469915158700537, + -0.0015759156652018062, + -0.0006726643680504644, + 0.00019359666468269602, + -0.0008768516491710488, + -0.0002638899587238991, + -0.0011681788808004523, + 0.0018518225331391545, + -0.000339810366010113, + -0.0020726592500055164, + -0.0001871767357686002, + -0.001956276565025694, + 0.0006285064790870529, + 0.002319792832808875, + -0.0009302024866675088, + -0.0011426938458960329, + 0.001056463527249823, + 0.002367807210443055, + 0.0019879134348697487, + -0.0008475708653358059, + -0.0017777449336610933, + -0.0007686449443678876, + -0.00046462024068300397, + -0.0006870541005099004, + 0.0006434326298923074, + 0.0002338428417321113, + 0.0006209036132072826, + -1.762423727519622e-05, + 0.0006247490840127171, + 0.00022306974695925912, + -0.0006424999827948988, + 0.0002918693887689834, + -0.0016061425116674997, + -7.737033549829402e-05, + -0.0009045940343160741, + -4.386250440623488e-05, + 7.154792483243035e-05, + -0.0006505368935504646, + 0.001232821283130573, + -0.0004029661503433726, + -0.0012711889384231139, + 0.0002451972799744163, + 0.00036374198606649056, + 0.00015393166823964025, + -0.0005248319230370493, + 0.0001005145817860494, + -0.0015723036566695106, + 0.000972303391551457, + -0.0005233287525009302, + 3.3913765161488124e-05, + 0.0005656812094995245, + 0.0005275985199515649, + -0.00028050661098715256, + -0.00045548298038926, + -0.00026206798139245975, + -0.000840390825984235, + 0.0003495751533143237, + 0.0005380663954297442, + 0.0006470888423573023, + 0.0006874883818883705, + -0.0008703150713908538, + 0.00030307995916695977, + -0.0006775077136722441, + -0.001181921518124304, + 0.0005767099521804254, + 0.0003330070122296892, + 0.0011924023603203703, + -0.0003767901937349975, + -0.0009135668476652495, + 0.0003861392508695503, + 0.0011087743130141284, + -0.0014100274086969065, + 0.0013404495300917102, + -0.00016874714019263033, + -0.00033898195014055827, + 0.0018266527577019645, + -0.00040060585237489344, + -0.0008183501375311675, + 0.001143055387191658, + 0.0004946092839084285, + 0.001185517352532013, + 0.000179290290761112, + 0.0014955758610970748, + -0.000556393805098817, + 0.0009226823757541367, + -0.000141701019012894, + 0.0012468922892753746, + 0.00012076025414857614, + -0.0008933796818030753, + -0.001001787876618915, + 4.295274881942342e-05, + 0.0003804660210684932, + -5.863071997168328e-06, + 0.0007090501122699801, + -0.00036354909116044655, + -0.0011783535461763407, + -0.00015768509907959391, + 0.000222419594593706, + -0.0014645328793503334, + 0.0006077414719953865, + 7.749392205930228e-05, + -0.0005726226557266564, + -0.0005389086316844031, + -0.0015417370816275399, + 0.00020738985110555847, + -0.001238680137873188, + 0.0007788300624382821, + -0.0015026502905072555, + 4.065960443827435e-05, + 0.0002704604245202564, + 0.0005588684466973966, + 0.001473961790394332, + 0.0008138950111990406, + -0.000654266844882041, + -6.399537259759258e-05, + -0.00028811597366787563, + -0.0007599171593815213, + -0.00018348997616228314, + 0.0021114563404289943, + 0.0015400861256707205, + 0.0010307015165472435, + -0.0008964337977420799, + -1.3402700939711894e-05, + 0.00017256141694678906, + -0.0004267957402980235, + -0.00043003145413725573, + -0.00041344538840220143, + 0.001500419513409365, + 0.0006175533105893108, + -0.00011890435838522091, + 0.0001073738792956918, + -0.0005428030717511917, + 0.0004259913951944261, + -0.0005466337500256161, + -0.00013786617924868482, + 0.00013004780547500107, + 0.00033486088672849985, + 0.0010749240730827435, + -0.0008263031185473841, + 0.0005088896071146848, + 0.0023133562301181324, + -0.00015541442574103201, + 0.00036945340665289045, + 0.0016015645297764811, + -0.0011926138058018009, + -0.0007908241040074331, + -0.0007743259722093375, + 0.0021798408075507356, + -0.00018085365352637722, + 0.0008417384402695851, + 0.001059188458991249, + 0.0003938616403376389, + 0.001502730003896288, + 0.0009440873056746446, + 0.00015977200463794734, + 0.0009582588150626653, + 0.0007713462474573261, + -0.0011627467276789233, + -0.0008110978820475603, + -0.00043471660529734147, + -0.0005268309569146806, + -0.0019105224043895646, + 0.0007369689393221212, + -0.0006250203230940373, + -0.0004627184880532901, + 0.001001284342075303, + 0.0015773069813906878, + -0.0008161020869274945, + 0.0007273292154230727, + 0.00018674843947885387, + 0.00010085485308772315, + -0.0017218101831823138, + 0.00044077998783792694, + 0.0005356297685534336, + 0.00022924896558156524, + -0.0011104963173442892, + 0.000999579407246948, + 0.0002446673872653208, + -2.72609287764138e-05, + -0.00015108923559576846, + -0.001151664348937209, + -0.0007364155191234738, + -0.0016630080466208434, + -0.0006457385032875702, + 0.00010552048937404763, + 0.0010070341659481872, + 0.0008738052426455669, + 0.0006424687654960847, + -0.0010379967370064646, + -0.00025853169115226123, + -0.00044752868061825716, + -0.000145306252039326, + -0.000988954551938975, + 0.0008387597298402755, + 0.000854735575468694, + -8.74753050008291e-05, + -0.0016063858317493587, + -0.0011474944216380166, + 0.000582547179485278, + -0.0007681562454809629, + 0.0009032632598055361, + -0.0006230983025357806, + -0.0012442756446951744, + -0.0003462504245769126, + 0.0007879817659734947, + 0.0005654654858035443, + 0.0021023327314016013, + -0.0010175530144982518, + 0.0014899025426558894, + 0.00024301300632386503, + 0.001363295818008161, + 0.00013752256233615925, + 0.0006150874101512865, + -0.00024262967502025406, + 0.0009712776014729804, + 0.001483967050252448, + 6.682269501215147e-05, + 0.0010431375338894498, + -0.0018395796418831432, + -0.0003901801843546127, + 0.0009470264254235924, + 0.0015523793197296904, + 0.0008401451904839624, + -0.0017418734085727012, + 0.001925185641451672, + 0.0005886539890469323, + 0.0012852706961870549, + 0.0013915686078292292, + 0.0006617730678158745, + 0.0011548142796029431, + -0.00014052281690667758, + -0.0014787168914362696, + -0.0012915100971865809, + -0.0003701165050077378, + 0.0021634810156434827, + 0.002374778250694069, + -0.0006543588494897601, + 0.000567903710927445, + 0.0008489199519400467, + -0.0010356957069720977, + 0.0008511868480481264, + -0.0005648501002454, + 0.00022505449123308725, + 0.0013075639233161543, + 0.0005254162056026667, + -0.00266467728163825, + 0.0005472349586673109, + -0.0005844377558589395, + -0.0007316292142464266, + 0.0010765342976612282, + 0.00028422314704339786, + -0.0009703919461452465, + -0.00042870719697929, + 0.0011370385098374521, + -0.0018711994580595222, + 0.0005066993028766408, + 0.0025841794516828867, + 0.0011955066688136365, + 0.0007368009595244562, + 0.0007237260993350595, + -0.00014500813988332461, + -0.0001332619062004114, + 0.0001502684766358644, + 0.0002849967117523045, + 0.000993000306375094, + -0.0007788431345886861, + -0.001189166383798867, + 8.877958669768165e-05, + -0.00020728495203125886, + 0.00020488118567903754, + 0.0015579163443635398, + 0.0004497173387454979, + 0.00014704909397217868, + 0.001079491710826068, + 0.0011277557636237912, + 0.0010185718657773368, + -0.001084770932852381, + -0.0016449141469379524, + -0.00047925930544741617, + 0.0006375356438111523, + 0.00036999385543651014, + 2.4829125882246283e-05, + 0.0017860197558468168, + 0.0010836763310391364, + -0.0005600217367061524, + 0.0026890565530743597, + -0.00020730804016353928, + -0.0007411010403929097, + -0.0010539059508771792, + 0.0005318330344665369, + 0.0007803373273579573, + -0.00040098234523645545, + -0.0004316844837779429, + -0.0004772491985725347, + -0.0007490864342943435, + 0.0011592379781794524, + -0.0011607359366444681, + 0.00011779214038664349, + 0.0013987139199642521, + 0.00022557006615735588, + 0.0017935595510388497, + -0.0005323781252051362, + 0.0002288345517426682, + 0.001101448036143932, + 0.0004334481710940657, + 0.0004254284368068267, + 0.00011235540869107747, + 0.0009119249832900277, + -0.0016370892276454932 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgb(252, 206, 186)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 2", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 0.0015035680730868368, + 0.0015905715129065326, + -0.00032994425887051854, + -0.0005093407848734698, + 0.00045211772191778855, + -1.8849686062192945e-05, + 0.00023234880937773658, + -0.0010723087437518111, + -0.0020166598641511283, + 0.002504815186443923, + -0.0007516653837030712, + 0.0017356209813258203, + 0.00011723804400578649, + 0.0007652258332208473, + -0.0002756920821244731, + -0.0010335229923587265, + -0.0003543216105011325, + -6.217324570137166e-05, + -0.00023629440807315796, + -0.002507455082912319, + -0.0003696963614249946, + 0.0008475884244343454, + -0.001658437150331942, + 0.0009924445886928107, + -0.000852881117535648, + -0.00032903367704074227, + 0.0005263816971479695, + 0.0011472884403490758, + 0.00011529172419721816, + 0.00014630569480115753, + -0.002613084275262309, + 0.0023683029849420234, + -0.0004748544585882899, + -0.0016870680671841889, + 0.0003404964962910956, + 0.0012567003856509497, + -0.000514824234773432, + -0.00010907778889749387, + 0.00013710419175117685, + 0.0006887607859405795, + -0.000783792629009165, + -0.00020480876149518514, + 0.0014780588420490247, + -0.0005889902150182346, + 0.00011984591610041294, + -0.0002690571294367304, + -0.0007177023829824636, + -0.00013169147654139366, + -0.0027381406100259412, + -0.0007561949143757782, + 0.0007169735858459406, + 0.000849895870844912, + -0.0012531315480392607, + 0.00024319624483228912, + 3.787764287205671e-05, + 0.0018824289253136681, + -0.0020696022255353927, + 0.00015809244505736103, + -0.0005118277428795043, + 0.0006188372057925696, + -0.0002128540984479324, + -0.0011500528319911226, + -0.001588116245544318, + -0.0003225035373367562, + -0.00039144006325177817, + 6.417882745921578e-05, + -0.00161687302460201, + 0.0002624968866064674, + -0.0005696521797466826, + -0.0005690352174113977, + 0.0006420055388610771, + 0.0010913792731413326, + -0.0001848303803558282, + -0.0011224748292003126, + -0.00040159937928956844, + 0.00019033248279975748, + 0.002617067269915361, + 0.0017543145033761499, + 0.000284540091833008, + -0.0013537033963257478, + 0.0005961118788606627, + -0.001241984686338487, + -0.0009717632251566645, + 0.0002719863092562339, + 0.0013999535770987332, + 0.0007281004189995009, + -0.0003092179070235481, + -0.0006406968277025611, + -0.0009312372337063062, + -0.0014850455146328287, + -0.000387273016145213, + -0.0011170582320067938, + 0.0006728842803675993, + 0.00010559586352281958, + -0.0006085567880202366, + -0.0006665274887047422, + -0.0011181995644654517, + -0.00156067843652546, + -0.0015785046171054667, + -1.8526799056677178e-05, + -0.0006747971594531136, + 0.0010466707667036667, + -0.00048728227545097053, + -0.0006949812381669585, + 0.0011133928403201303, + -0.0007247701501509307, + 0.001434555877946925, + 0.0004923785009231588, + 0.0012450460636505697, + -0.001066625146282636, + 0.001136527761514016, + 0.0011698564983422418, + 0.0006804252926747884, + -0.0006863250347840601, + 0.0005456792527486956, + 0.0022882648137179146, + 0.0004689860716740736, + -7.955654299739886e-05, + -0.001100382191978874, + -0.0008722403685760143, + 0.0002572255825217976, + 0.0010322401053233315, + 0.0007151621613287427, + 0.000385948341523386, + -0.0011315900906794251, + 0.0005732414147077238, + 0.001273316246184134, + 0.0006043424082097776, + 0.000933543553406916, + 0.0005887658994278099, + 0.00028212192063835324, + 4.6231846844079404e-05, + -0.0003691053805944246, + 0.0007442615263014716, + -0.0004532967357858851, + -0.0002626609640607591, + -0.0005763064080343199, + 0.0017735336568242919, + 0.001173108834997059, + 0.000871555540188278, + -0.0002137897516274209, + 0.001490427896595883, + 0.0003375159424389011, + 0.0006847651129161401, + 0.00029442303154392896, + -0.0012068323288435005, + 8.347162959434473e-05, + 0.0004991820204236427, + -8.622906634119238e-05, + 0.0011373700713055476, + 0.000918965030968485, + -0.00011163246505974087, + 0.0009429086256226467, + -0.0006294745962155331, + 0.001379618890888899, + 0.0009798933135117599, + 0.0013410636066427623, + 0.00019808214400285308, + 0.0007393296253864072, + 0.0013012821728613333, + -0.0006157547346211441, + 0.00011438227118594687, + 0.00094604805356369, + -0.0011605409784749665, + -0.00029539417283126437, + -0.0017963090293169862, + -0.0003331055962165398, + 0.0008686770713970999, + 0.0006695604774221062, + -0.00023853718585022644, + -0.0005910666354201689, + 0.0007020185682106805, + -0.000592772293689145, + -0.0008481427225950488, + 0.001251789952748765, + 0.0008479606857789967, + -5.564046575703261e-05, + -0.0002189902543570688, + -0.0007597158094034982, + 9.558304534676243e-05, + -0.0006858361418145742, + -0.00020295630898702223, + -0.0007592208210934889, + -7.744693169942566e-05, + -0.00014705850824023152, + -0.0003584831079270798, + -9.56744964934882e-05, + -0.00019991503379562434, + 0.0003464489166428406, + -0.001112097014948429, + 0.000323200336870518, + -0.0005252342202096006, + -0.0010544391908673943, + -0.0009754637329714618, + -0.0018041659902804607, + -0.0006054128233967362, + -0.00019573728139381068, + 9.569480718841292e-05, + 0.0004994402921013996, + -0.00032686413346095887, + -0.0023632371381955425, + -1.5019968910413708e-05, + 0.00015977903390339458, + 3.2234586258470945e-05, + -0.001197752335688116, + 0.0002733876206729196, + 7.752310495376968e-05, + 0.00021168517827594872, + -0.001593393939259402, + -0.0007205508969312829, + 0.002030667446704804, + -0.0022758256695977145, + 0.0024077808695034657, + 0.0010848293711354846, + -0.0007826558125619571, + -0.0008553981109095521, + 0.0007473061944311035, + 0.0006249450636915677, + 0.00024108825543840744, + -0.0016158557031241893, + 0.0018251924466883846, + 0.002673672883702174, + 0.0005397761072214202, + -0.0005412633357517372, + -0.0008146074294425881, + 0.0010307394330646522, + -0.00023014019256076463, + -0.001172877398123374, + -0.0007728594043418168, + 0.0010275804622270636, + 0.002226998418420086, + -0.0006288238229147165, + -0.0010745543116427402, + 0.00037118420602052956, + 0.00011792502241203712, + -0.00023429363504809817, + -0.000540174497708277, + 0.0001977154140875628, + 0.0009004948184289311, + -0.0006241151622349955, + 0.0004096038060085275, + 0.0023180645934061926, + -0.0007364671309907674, + 0.0006073057918420698, + 0.0003091540687645274, + -0.000889557395555996, + 0.0008571567985206653, + 0.00040375322150603207, + 0.0009734523345649327, + 0.00157520029809988, + 0.0016030824279074463, + -0.00048733566707013213, + -0.0011235899530448374, + 0.0010562444744713865, + 0.00033417334866694677, + -0.00011540393292033382, + -0.0011100815799001977, + 0.0012334977636145907, + 0.0008695287673419812, + 0.00035968979553288897, + -0.00025912864333042785, + 0.0004830387642856439, + -2.7456171033791553e-05, + -0.0007881677086071239, + -0.000325925883179184, + 0.000526364888980367, + 0.00013917660567333326, + 0.0007404706230969695, + 0.00015817562414481245, + -0.0007317864753099321, + 0.0013164002267589021, + -0.001811607611829565, + -0.0012209067607852598, + -0.0018726548643455485, + -0.0005396698844102088, + 0.001099834362764669, + 0.0011104500962511945, + -0.00026306299099241725, + -0.0019206339942138319, + 0.0009231334383829721, + -0.0008214516793054759, + 0.00016712678332718765, + 0.0008135736478680154, + 0.0006564561669244763, + -0.0006675531172816152, + -0.0018334410290862058, + 0.0008028200341729013, + 0.0002114208315858256, + 0.002187354529654743, + 0.00031894592529099124, + 0.0005786526293388, + -0.0013116081725140516, + 0.0007780938556394199, + 0.0010381736098002013, + -0.0008117127531572261, + -0.0006157129675881959, + -0.00073749687999787, + -0.0011571457612371502, + -0.00039446191050583856, + -0.0009782975426947558, + -0.000706699041129583, + -0.0006217318505997366, + -0.0007859171752851673, + 5.4913305915817656e-05, + -0.0008935718310251182, + 0.001540271794266452, + 0.0008161247505187929, + -0.0015242875289153334, + 0.0003042074922765663, + -0.002459298827629478, + 0.0019399997306879066, + -0.002454044180495347, + 0.00027626654643561453, + -0.0001689552417254464, + -0.0011179154360149708, + -0.0014022552261139527, + -0.0013139841594996533, + 5.910409533223779e-07, + -0.0011689110811372021, + 0.001086503829037493, + -2.785847020148982e-05, + 0.0011927299733171253, + -0.0006439147567583208, + 0.0002000197482356023, + 0.0011199856915481234, + 0.0019035880727728692, + -0.000626133403436979, + -0.0006743695320444897, + 0.0003495025409608508, + -0.0010458816118459236, + 0.00026487769393206524, + -0.001262996272642321, + 4.428374595106769e-05, + 0.0006977868842798065, + -0.0016788534528482913, + 1.1499151399905534e-05, + -0.0011141174769609208, + -0.0009717738445289835, + 0.00046267132168006605, + 7.572364487827713e-05, + -0.0010693253128319358, + 0.0023736176215842057, + -0.0006239086697571503, + -0.0012591165238696265, + 0.0011389813406617235, + -0.0005868362978353928, + 0.0009950159846110207, + -0.0002941419979850939, + -0.0002493320601217735, + -0.0024971833998743264, + 0.0011042055689437606, + 8.26313813793182e-05, + 0.00035257652663140684, + -0.0014220338601629834, + -0.0014712051869916307, + 0.001975944867015426, + -0.00018392178604375225, + 0.00013764072897381468, + -0.0005017786902548902, + -9.553875134796588e-05, + -0.0008441711823408469, + -0.0006363194980423143, + 0.00026091928734425665, + 0.00048795668208635235, + -0.0007105775113397609, + 0.000726409549887859, + -0.0006337043136167285, + 0.001035546207366783, + -0.0014370106571890624, + -0.0006339636945323138, + 0.00046140791843036485, + 0.0009146765754521427, + -0.0003962601835127718, + -0.0016445493113229535, + -0.001960424775955271, + 0.0006931359916849799, + -0.0004176546765442276, + 0.0008528383130510134, + -0.0006353671377422604, + -0.0012546948924209963, + 0.0005070923394514754, + -0.001746395854578701, + -4.542983091533759e-05, + -4.623938760636233e-05, + -0.00011868606247191827, + 0.0009365519720562236, + 0.0004310094079964346, + 0.0007591011684620127, + -0.00026275065488962817, + 0.0015397724660050896, + 0.0004687426394751572, + -8.816487137656076e-05, + -0.00018433411631366424, + 0.0007100851841751874, + -0.0009049824415546857, + 0.0005132851899573254, + -0.0016608289682019997, + 0.00035019261273758586, + 0.0008083282304289484, + 0.0016166355945812793, + 0.00010990211335357268, + -0.0005434094834073723, + 0.00040458899871726985, + 0.0012703737403739156, + 0.0011801232519993493, + 0.00027965553011150815, + -0.0012559649547214625, + 0.0009148701016513639, + -0.0009212326294555464, + 0.0006644180706450052, + 0.00025831705836246274, + -0.001308523022250617, + -0.00026962838698293246, + 0.0015892550298849764, + 0.0006103611438751464, + 0.000770135697984667, + -9.776045539403662e-05, + -0.0015022612546265362, + -5.569955519491573e-05, + -2.390299985227502e-05, + -0.0007619002014714977, + -0.0015154070509321533, + -0.0017401876562093076, + -0.0010094563381343386, + -0.0004657546058779514, + 0.000731561027130598, + 0.0015782751690887294, + 0.0008986778505200442, + 0.001127085099520776, + 0.000556076435723286, + 0.0013992617980892776, + 0.00145760381844386, + 0.0006855131683377188, + 0.0015768224902152545, + 0.0014549019237220415, + 0.002041074676946346, + 0.0009564782581165033, + -0.001629544574276072, + 0.000997642162558631, + 0.0004074826057729128, + 0.00023005009488503693, + -0.0013183334710915543, + 0.00028589885212491786, + 0.002258624083744482, + -0.00026092027438795424, + -0.002510002284751742, + -0.0012336565190641314, + 0.0009000162228878972, + -0.0006137604856853872, + -0.00023054459190146196, + -0.0010345045878806878, + -0.0005264755268506407, + -0.00124652892933001, + -0.00013904116572761383, + -0.00043542577666884634, + 0.001248881663064642, + -0.0006012540699307997, + 0.0013780259780685306, + -0.0007670284153732812, + -0.0007328117136455118, + 0.0004119001235650198, + -0.001332979194690976, + 0.0009372317275763158, + -0.0015637954407420615, + 0.0002941347316383256, + -0.00010426638472470861, + -0.0005672613046775939, + -0.0011689922023360372, + -0.0011308308747164791, + 0.0013347763587938843, + 0.0007123561812916551, + 0.0007434852298938323, + 0.0019573447162317876, + 0.00015103215415317926, + -0.0010110737826976946, + 0.0005914845554418186, + -0.0016633267934152076, + 0.0007321118260509291, + -0.0015167580933756965, + 0.0005476216293336588, + 0.0009330210488791527, + 0.0009636680029251536, + -0.0010196760768947104, + -8.373418654688136e-05, + -0.0013826674790736063, + -0.00025550284164121284, + 0.0004264744969536465, + -0.0007524886378008543, + -0.0003009659269852808, + -0.0006159489722733555, + 0.00113700093707432, + -0.0012561603973552456, + -0.0009022062548954912, + -0.0006427411570381529, + -0.0011128956923057713, + -0.0004314077141315, + 0.0010434773588752656, + -4.711948262118942e-05, + 0.00048026623210886536, + -0.0001596238630386422, + -0.00038626661969986224, + -0.0010941984696999846, + 0.0012095562227640955, + 0.002200437689213837, + 0.0033529523229374174, + 0.002886664756982815, + 0.0010440828461428723, + -0.0012393699154607746, + 0.0005387289777639999, + 0.002132710572704203, + 0.0007829620360852956, + -0.0012029020604366353, + 0.0012962053072641524, + 0.0007405069863184241, + 0.001601116257380587, + 0.002925415983082668, + -0.0012015217639879951, + -0.0014037039311284628, + 0.0013714815066570875, + 0.00021080377921096357, + 2.3929425301301007e-05, + 0.0007792353189030566, + 0.00013671294187298432, + 0.00032374006513349385, + 0.0003139024834614686, + 0.0006308818041844698, + 0.00198411436480774, + -0.00022639178533983968, + -0.0019063492011571741, + -0.0002985652018418041, + -0.00023693504554583346, + -0.0005290791570397571, + -0.0003881253167289362, + 0.0004236897513050495, + -0.0006091791311565917, + 0.00021478313953936598, + 0.001640567660730186, + -0.00048674327983580165, + 0.0002609642503139448, + 0.0004936370025980517, + 0.00010515752408522889, + -0.0004977126478344036, + 0.0006843471350318068, + -0.0004189490881072776, + -0.0006871253576606953, + 0.000632822009971429, + -0.0008262754687094654, + 0.0007024943589937651, + 5.2660936805883044e-05, + -0.0005154204590048096, + 0.000853023461332687, + 0.00038887896751535256, + -0.0008200282387211432, + 0.0006614878847135785, + -0.0012407475950921827, + 0.0006411241615539996, + 1.29929484803025e-05, + 0.000697285313820502, + -0.0005784156607225417, + -7.047824689779675e-05, + 0.0005354436801699754, + 0.000118749091446708, + 9.230220895066357e-05, + -0.0004301137622056692, + -0.0004815093764616196, + -0.0017864191342128652, + -0.0003033082837186868, + -0.0007258391351668094, + 9.120515843939148e-05, + -0.00036320183419492874, + -0.0011245254666841032, + 7.504253426243081e-05, + -0.0005066735813907305, + -0.00018221547650010332, + -0.0004329644311194815, + 0.0018988427666417843, + -0.0013210380740088846, + -0.00045982542147579954, + 0.0012297452637826856, + -0.0005003399044151869, + 0.00039484378749224375, + -0.0007535176609019168, + -0.0011167855949196376, + 0.0008208660109048318, + -0.002283733386064746, + -0.00039064320838977715, + -0.0009083243743266527, + -0.0009011165152819799, + -0.0020088630302936153, + -0.0011652189869975316, + -0.0006424785906036197, + 0.0005594519117731192, + -0.0012598132335701205, + -0.00017611977562644667, + -0.001597452492185892, + -0.0006044015055494895, + -0.0001573165076710734, + -0.0013343354882811072, + -0.0011431017298602166, + 0.000480244750921097, + -2.7187810729124285e-05, + -0.0008327451084673079, + 0.0007963387416181585, + -0.0008713450217711558, + 0.0007709792810732181, + 0.00014516428595927116, + 0.0007331007959218061, + -0.0020609084263222095, + 0.001992000411101341, + -0.00055304839521243, + -0.0015856003573070045, + -0.000642725480874643, + -0.0006818134698537535, + 0.0017236006199169648, + -0.001007546873396707, + 0.0002740760096969612, + 0.00029977339056979995, + 0.00010351058025097623, + -0.0019330406989553092, + -0.0003184227211059216, + 3.134605729036456e-06, + -0.0014527938411526694, + 0.00041151424637422335, + -0.0006052485649080745, + -0.00177436278272001, + -0.0008876780137506493, + -0.0017478968989798616, + -0.00025935059113388516, + -0.00016559598142028086, + -0.000496143953340141, + -2.1961408474205935e-05, + -0.0001773716793927898, + -0.0004201355611024848, + -0.0011132058712680015, + -0.002117709837736209, + -0.000644360167703355, + 0.0010913456055140294, + -0.0013045617797224872, + 0.0002982953466711552, + -0.0002193301880279929, + 2.439510829530204e-05, + -0.0005298858230898078, + -0.0004805623456254689, + 0.0015806260461223751, + -0.0007655498983286949, + 0.0004676282740327066, + -0.000886034064530612, + -0.00043651134634072357, + -0.0004592523802997464, + -0.0005184396417303173, + 0.0005003135385575026, + -0.0019569576263236475, + -6.975141130113065e-05, + -0.0005206946951769739, + 0.00028019125124792774, + 0.0013188450516171753, + 0.0004068126905365287, + -0.0021591927372758253, + -0.001202554103884547, + -0.00011518487396108234, + -0.00030461006871396353, + -0.0014991842906327663, + 0.0011901189050907864, + -0.0009717330274821958, + -0.0013129639304526302, + -0.00030138438360317047, + -0.0005097717433471683, + -0.000280495806622367, + 0.00018184035936188796, + -0.0003200946603779598, + 0.00014171222339981097, + 0.0027165303530351285, + -0.0026254251509681206, + -9.588542743007919e-05, + -0.0009212645105101945, + -0.001382295607285977, + 0.002235978293857213, + -0.0016821718270107033, + -0.000252230106884861, + -0.0009274176731895766, + 0.000636578099642328, + -0.00024822691269018395, + 0.0008060931988996643, + -0.001117004239991752, + -0.0010302715162351934, + -0.001090221326978972, + 0.0004784706344760282, + -0.0007875058499729947, + 2.081778321545056e-06, + -0.0012930818861337792, + 0.0007449919466822159, + 0.0004688975220672308, + -0.0003475257948983215, + -0.00026387709319605155, + 0.001443302254725713, + -0.0026871192474328624, + 0.0009588179079867298, + 0.001682118527922623, + 0.0003551971106164907, + -0.00020458429814726402, + 0.0007247790311189856, + -0.0012216523488391298, + -0.0008484235277200538, + 0.0001310799291155119, + -4.196410849886929e-05, + -0.002650470568507735, + -6.429227500139247e-06, + -0.0006112451468409285, + 0.0022920554523473183, + -0.00042607921555620434, + -0.0010088386329972095, + -0.00082480849563124, + 0.0005694840396240946, + 0.0003910923822081268, + 0.00013505464102497923, + -0.0011982415559743539, + -0.002060035973093295, + 0.0012284719862505364, + 0.0015931633653390137, + 0.0013256440344302405, + 0.001958954920779895, + 0.00021794766876940484, + -0.0010891877442606103, + 0.0010986197449960307, + -0.001182058625720422, + -0.00210811844745946, + 0.00024687004640352577, + 0.00044837380541569335, + -0.000957883588717394, + -0.0011019408699991164, + -0.00020099552979083106, + -0.0003616292740253221, + 0.001113418195703499, + 0.0006234561712260135, + -0.00046462908495797424, + 0.0002730357301667339, + 4.681859299060142e-05, + -0.0008024536033201011, + 0.0011514887822361103, + -8.65754552768733e-06, + -0.0008180995913733858, + -0.0008210284037089624, + 0.0009152327938873547, + 0.001860405081939435, + -0.0017104714449185428, + -0.0006897439184589241, + -0.0010768063077502554, + 0.0009722746398810902, + -0.001194956992100443, + -2.0211121159042638e-05, + 0.0005202043523530403, + 0.00034194545847657313, + -0.002080274563423424, + -5.628163296745253e-05, + 0.001313154060662083, + -0.0004550361402929771, + -0.0015519038089871768, + 0.00011070528889170684, + 0.0005370235201462924, + 0.00045871831758447553, + 0.002180034299893826, + 0.001899447969471086, + -0.001148149100740575, + 0.0012291961387308828, + -0.00046093155745921137, + -0.0020866688128175887, + -0.0015520644598187492, + -0.0007793645349458477, + 0.0004823394709651556, + -0.00032883201713247717, + -0.0003307092405407723, + -0.0013982984184683909, + 0.000628479022184961, + 0.0007999834269546809, + 0.0006832995078508995, + 0.0003582752268088122, + -0.0016531885365504019, + 0.0005190852369624158, + -1.921314987885837e-05, + -0.0002381284627807235, + -0.0014714682740628567, + -0.0006544262146069169, + -0.0014365276089744205, + 0.0005939678714367904, + -0.0004672463182431466, + -0.0006316899412348801, + -0.0007363807130953207, + 0.0002711568676643475, + 0.00041266877212920203, + 0.0007691221955436134, + -0.00014878829823157798, + -0.0012786366664847343, + 0.0004839300962718113, + -0.00028410313522374866, + -0.001080738029363276, + -0.00131516672576523, + 0.00032242835133175523, + 0.0007078990443248499, + -0.001200595904578866, + 0.0005553748054481797, + -0.0006304221892046863, + 0.00240308804629687, + -0.0011919015212775422, + 8.489483625958701e-05, + 0.00017451661163921187, + 0.001417447695629426, + 0.0011306910487632333, + 0.000316269994790583, + 0.0014156929018745061, + 0.00021140377577012515, + 0.001131433192209172, + -0.0012934859219334406, + 0.0008836811079886167, + 0.0003810802681351796, + 0.0003729754469502728, + 0.0021842045991415254, + 0.0011050816655299668, + -0.0012588153319072204, + 0.0004588252818089818, + 0.0006910559513067815, + -0.0011332681472088911, + -6.12717782177387e-05, + -0.0004763413478840519, + 0.0005728464534951814, + -0.000835319831909755, + -0.0005545364214217717, + 0.0011185631954097439, + 0.00023490322296553334, + 0.00043140520114443747, + -0.0010594062914942922, + -0.0001898871664088539, + 8.475304326425257e-05, + 0.0012905682846826867, + 4.24460601047178e-06, + -8.11521637204494e-05, + 0.0004930330092723771, + 0.0016721366604109022, + 0.0010083146670133954, + -0.0005440709051463474, + -0.0009475140064986206, + -0.00034806869259639163, + -4.690048509494842e-05, + -0.0009209290554537393, + 0.0006878185238067375, + -0.00011797757215840305, + 2.6461745077164682e-05, + 0.00028250838804028415, + 0.00044999511102908915, + -0.0015593141717406976, + 0.0012954428869647724, + -0.0021932386193819335, + -0.000960582943018943, + -0.00013595391231946115, + 0.0003617155121309408, + -0.0008625900919841394, + -0.0006153233193662397, + 0.0006698599256757229, + -0.0006835743915779323, + 0.0011808381524254672, + 0.0006772208277542847, + -0.00021035739338349534, + 0.0004115459856381495, + -0.0010519863413117098, + 0.0012605219691040508, + 0.00035355061890402265, + 0.0009113667624232115, + 0.0006447773863082079, + -0.0006012644611557659, + -0.0007255766238914821, + 0.0007040605559664727, + 0.0008144550057212803, + 0.003296349503447766, + 0.0008470026899574738, + -0.0011090014629317074, + -0.0006967320330859221, + -0.0011882877274954151, + 0.0007464634764519629, + -0.00028335899071324494, + 0.0009661908421944607, + 0.00046864511436259736, + -0.001641081053605974, + -0.0005387213411529022, + -0.001444079089352265, + 0.000468090904309038, + -0.00031171063541353216, + -0.0009550969121889197, + 0.00030661421511265146, + 0.0012627419801620823, + -0.0007423550247894023, + -0.0016842376109148809, + -0.0008414301596063827, + 0.000543029911393542, + -0.0003652541962173974, + -0.0016605765038124832, + 0.0006302194623978316, + -0.001106547253706334, + 0.0006870851307356809, + -0.00024621174287278844, + 0.0006793437302618513, + -0.001721085353355792, + 0.0016254062122439128, + 0.00011209803756515473, + 0.0006040831094918568, + -0.0005821862441348284, + 0.0014561715164699328, + -0.0016850298927874627, + 0.0001653179649700359, + 0.001740677097411522, + -0.0002877840071506685, + 9.51882437556199e-05, + -0.0005177013987924531, + 0.0006083290908431722, + 0.00029939507108218527, + 0.001821370564867451, + -0.00035974382704384567, + -0.0004818539409848214, + -0.000540684420072654, + -0.000453075675807983, + 0.00014579181830146976, + -0.0003092096211428209, + 0.0013973813297869845, + 0.000668626690603324, + 0.0012404181010179666, + -0.00031732633309223965, + 0.0001412375210762578, + -0.0008535622291453938, + 0.0011110050134574218, + -0.0021969754984778114, + -0.0011973339410478992, + 0.0011378729334957705, + 0.0006315810221210958, + -0.0015664480268214188, + -0.0014273031159208838, + 0.0007521618058795511, + 0.0002866282881133691, + -0.0007015203704664209, + -0.0012060545900650461, + -0.00048336835336252134, + -0.0006127434100915579, + -0.0011378319162829364, + 0.0009362984706950521, + -0.0011326167948099027, + 0.0004316968877900846, + 0.0011683677705926201, + 4.830749871503603e-05, + 0.0016973359555369821, + -0.0009480789002728493, + 0.0015385821889305797, + -0.0011467465998565164, + -0.0013238723976231374, + 0.000870156444829857, + 0.00030034226811971175, + 0.0029388506061364737, + 0.0016438850227547383, + -0.00020666342184378982, + -0.0001616472142004922, + -0.0010517742150860298, + -0.0005272616152020161, + 0.00014718249575229622, + -0.0008359289346174839, + 0.0009534708848240993, + -0.0003477210749606349, + 0.00012513981419888035, + -0.00010075714500407004, + 0.0010818602089628312, + -0.000571267668204686, + -0.0005354981442931922, + -6.501533912952602e-05, + -0.0009194969639765871, + 0.0011199790784072964, + -0.00203563796784622, + 0.0025046897469167655, + -0.00032048875978008163, + 0.00025196231404817787, + 0.0009161033190062221, + -0.0010390146018018388, + 0.001406837443108627, + 0.00012899696551277583, + 0.00079497804267871, + -0.0009932028493803038, + 0.0014169845949723518, + 0.0005966894120710581, + 5.6261605102035964e-05, + -0.0006587102257121357, + 0.00032760019102833393, + 8.710632006825162e-05, + 0.0016657397087597174, + -0.0005406277736068846, + 0.0010965251857697424, + 6.824915087698642e-05, + -0.0008800912502239495, + -0.0005832544906636066, + 0.0018625989301107348, + -0.0003892733667500673, + 0.00032041061300173155, + 0.00023104653468335374, + -0.0001415059578862125, + 0.0011710380196813654, + -1.772734298995293e-05, + 0.0011973580963849624, + 0.0006764018080784476, + 0.0011952522686270576, + 8.990379623187843e-05, + -0.00025210229464279614, + 0.000638646468974087, + 0.0007568560310302695, + 0.00012107849789326532, + -0.0011089907096990166, + -0.0004313011909152897, + 0.0010609686755719701, + 0.0013660699638166907, + 0.00013681255058657605, + 0.0015470548566327478, + 0.00044826187004150383, + -0.0015814739939564106, + -0.0022763345519819945, + 0.00014518972092249336, + -0.00021156829766927798, + 4.658733897520577e-05, + -0.00018662909086139014, + -0.0010692943699589885, + -0.0006230046169952575, + 0.00014105449204445625, + 0.0006642461825295034, + -5.684065417255326e-05, + 0.0002837435517491925, + 0.0013135587410115525, + 0.00019815291373560465, + -0.00098544720180477, + 5.659772205917457e-05, + -0.0025239375668812155, + -0.0002627956455925353, + 0.0004195877712564811, + -0.0009789661072629953, + 0.00017901596967667113, + -0.0001419511762658154, + -6.889368391944258e-05, + 0.0010166328943991083, + 0.0007174983681690364, + -0.0006511878865993163, + -0.0004460963672975806, + 0.001329553146240984, + -0.001059462882538254, + -0.0009347372999220563, + -0.0022630429169991947, + -0.0017096938221304535, + -5.265304221463934e-05, + -0.0007714848251410365, + -0.0008094055564532792, + -5.6477849948180706e-05, + 0.0004088874005784615, + -0.00162446895677337, + -0.002023961579194859, + 0.0009723078296748024, + -0.00036675723718534786, + -0.00021996202378629003, + 0.00032823832807774234, + 0.00027680826317468053, + -8.599430076446321e-05, + 1.0322102451836882e-05, + 0.001289943025414825, + 0.00021168215793140592, + -0.0008060485798528093, + 4.133148601574848e-06, + 0.0008054262737892835, + 0.0012823538551647766, + -0.0020697813100448094, + 0.00030841362865394965, + 0.0005756587991091007, + -0.0009209513091548477, + 0.0007116147472551831, + 0.00012673109004182715, + -0.0012829688176855857, + 0.00024413926780271172, + -0.0006539869924277886, + -0.00020268535266852047, + -0.0002417427942224228, + 0.0012724948338160577, + -0.0011984926459137214, + 0.0008900913451447357, + 0.0008783061424053854, + -0.0010458721163060158, + -0.0006022052726642442, + -8.828887597004397e-05, + 0.001396798979293003, + 0.0004989865597157939, + -0.0005348790029593974, + -0.0006194644086751569, + -0.0007671904171932672, + -0.0012055981931412393, + -0.00032104341720748115, + 0.001683691610677059, + 0.000552117558209846, + 5.6081920406430105e-06, + 0.0006082844875672451, + -0.00013305075840800844, + -0.0013900975089295795, + -0.0010976193322011672, + 0.0006961676024798065, + -0.0005197946517720998, + 0.0014993852748486608, + 0.0013741650992779304, + -0.001447039495614885, + -9.950555049245738e-05, + -0.0011598046987846636, + 0.00024519997141634703, + -0.00034923664417386513, + 0.0001358911116846764, + 0.002453799311780455, + 9.94099498797496e-05, + -0.000256092834475479, + -0.0008763861367431084, + 0.002057025968982184, + -0.0006743442397776864, + -0.0015887787726295642, + 0.0005356760519903987, + -0.0017911832435620135, + -0.0014774630509457945, + 0.0006839920734285661, + -0.0007241102166030253, + 0.00016351333103982278, + -0.0009433317590419137, + -0.0003918610903856048, + -0.001404466024418185, + -0.00012293588912236375, + -0.00038889169428523617, + 0.00021802992810596657, + 0.0002814364532383221, + -0.002166717633632913, + -0.0014647930150811618, + -0.0012160465847264018, + -0.000576118298282733, + -0.0003958019008615864, + 0.0013935575072528477, + 0.001003994382357883, + 0.001961873277739065, + 0.001301513825971075, + 0.001317674152663509, + -0.0002446965318933963, + -0.0002485061321109793, + 0.0013900404137849804, + 0.0006176119823086444, + 0.001245348432298558, + -0.0003713420654413044, + 7.304316291190732e-05, + 0.0008112706916238822, + 0.000242440257070609, + -0.0009319735826420833, + 0.0005400177514752846, + -0.0012230812865281365, + 0.00029453912875240595, + -0.00012729063881367872, + -0.00193235396628409, + -0.00037271096609875834, + -0.00011798160592213698, + 0.000987905796991368, + -0.001000448425110173, + -0.0003476270161546004, + 0.0012418633967934954, + 0.0023972906696220074, + -0.0014726137116764897, + -0.0007456205226439763, + 0.0002540915969075913, + 3.3501959697294226e-05, + 0.00010061362830924049, + -0.0009777760610758946, + 0.0005751782743654062, + 0.0013041760273851074, + -0.0010729504501011955, + 0.00029778215961452474, + 0.0013983565184399744, + 0.0012670145132723939, + 0.001166512728530613, + 0.0004681663009650262, + 0.001178459603801974, + -0.0002673930419126405, + -0.001923420048539301, + -0.0005179669866831342, + -0.0003421938924086998, + -0.00031454299870890357, + -4.538791223070131e-05, + 0.00114374480329816, + 0.00023551055213126494, + -0.0003008136089731119, + -4.2811320876147044e-05, + 0.0007589492057692653, + 0.0001457501339360073, + -0.0003403904913840951, + -0.00010178391969813625, + -0.0007142384992884296, + 0.00023680330147214367, + 0.0004978988570954536, + 0.00023986813520435277, + -0.00016077655363883135, + 0.0003547036117098322, + 0.000905036487220282, + 0.0011260545090391253, + 0.0009468812685287136, + -0.0015644807722375094, + 0.0009360780741038703, + 0.0008314774348294702, + 0.0006547318026099123, + 0.0005525503275610661, + 0.000405694277185568, + -0.0007222452594205332, + 0.0005190334253660729, + -0.0012324022654431992, + -0.000909436085901894, + 0.0011630285570124745, + -0.0006678278347238176, + -0.0010977699843685818, + -0.00038369027253252336, + -0.00011034292395627632, + -0.002296203295718756, + -0.0010399543416634107, + 0.00022828118275489007, + 0.0006545897041908453, + -0.0012491636236799052, + -0.00012624600361530006, + -0.0003224001547186925, + -0.0003792542692920832, + -0.0013286881857320354, + -0.0008524205751910643, + -0.0022496897855364493, + 0.0012254977396853003, + 0.0007874047149730584, + -0.0021564397729080887, + 0.00016310959945044175, + -0.0011975676453436423, + 0.0005070312304128182, + 0.00204556529833553, + 0.0005393134005811962, + 0.0005317247750383935, + -0.0010077969005854932, + -0.0009912932683317005, + 0.00242949902341733, + 1.7512109027651474e-05, + 0.0006275422371647332, + 0.0014586972303107567, + -0.00042204196159876064, + -0.0010086187225615236, + 0.0006016060100710456, + -0.0009441986634935058, + -0.00037033211370929525, + 0.0010208130082697614, + 0.0002299407658003864, + -0.00040985063448632184, + 0.0002063877195258921, + 0.0014954590584082149, + -0.001494065764751854, + 0.0006832711349654054, + 0.0032684510938328667, + 0.0007933740192714414, + 0.00019276735487706149, + 0.0010344752162035596, + 0.0012499434709434386, + -0.0018695343810786347, + -0.0005535232444692484, + -0.0011512948383571964, + -0.0016394188531021392, + -0.002320950092088118, + 7.641718460858369e-05, + 0.0005775577754542768, + -0.000858262395774719, + 0.0007884237205812623, + -0.0004090280624851604, + -0.000732779780019323, + -0.0014167182386943752, + -0.000557383609727382, + 0.0014815330266955075, + 0.0025123247685384636, + 0.0009120476715233631, + -0.0012637291743742938, + 0.0009974651492620898, + -0.001112020678736539, + 0.0005548649949550477, + -0.0008769670796928167, + -0.0010020058039085533, + 0.0017997655431989058, + 0.00041242608443373217, + 0.0008942539415559499, + -0.0016606562535309121, + -0.0005701221120811762, + 0.0015232268760327333, + -1.2214908633249073e-05, + 0.0020476519679914255, + 0.0006068277978679423, + -0.0009935352837771088, + -0.0012690905447223383, + -0.0003979590925262299, + 0.0003461481533925584, + 1.3483539683909937e-05, + -0.000699361645924636, + -0.0013011416906567534, + 0.000768629333877517, + -0.0011750482240426862, + -0.0007807803663383399, + 0.0015409325066019022, + -0.00022271653099060828, + 0.0002709830865401771, + -0.00021119031367782776, + -0.002585295089106556, + 0.0007971678250533242, + 0.00040218855916707917, + 0.00021781566664876866, + 0.000890775048659973, + 0.0003638996504297788, + 0.0014534689856685787, + -0.0009289352823937419, + -0.0003547309773454183, + -0.00022424799510737837, + -0.0003533832600447177, + -0.001636313354185061, + 0.0004749198669373094, + -0.00019368779061795785, + 0.0006037242490626284, + 0.0015525492804952291, + -0.0013671455964979137, + 0.0005002873264754055, + -0.0016073170645611622, + -0.0005463633249455827, + -0.00016379499108103168, + -0.0003833819756587304, + 0.0013519142722982682, + -0.00043003600322486033, + 8.561976854685265e-07, + -0.001017032875045673, + -0.0021779039666496, + 0.0006002212715751832, + 0.0009474718244681557, + -0.0010365078926927308, + -0.0004216465503457887, + 0.0004554055967928784, + 0.0014330197302398805, + 0.001254033992413942, + -0.0009174047630206721, + -0.00031151507077286413, + -0.0012791246279226316, + -0.00023149279888347172, + -0.0007012013677514452, + 0.0006029603786410563, + -0.0007778232709361126, + 0.0004107997153919694, + 0.0017046919210290936, + 0.00027570828806197683, + 0.0026399773818223896, + -0.00026729365211599157, + 0.0008257369847529638, + -0.0005583404245572991, + -0.0005792197419512357, + 0.0010988608943619522, + -0.0009005864865660768, + -0.00021693349361683666, + 0.00048357924498768003, + 0.0013660410302722915, + 0.0008798951558513683, + -0.0009168487540592194, + 0.00035413674241279884, + 0.0007976898268152435, + -0.0021503642406324693, + 0.0006402308851035156, + -0.0006451527618007633, + -0.0005361454414668712, + 0.0012668783463805843, + 0.0006022513156779528, + -0.000603869426166372, + 0.0006281996589109849, + -0.0007691810723097991, + -0.0015344282144216298, + -0.0020232020679332384, + 8.016997908507344e-05, + 0.0006033210327256757, + 0.0006743328638580946, + 0.0012612393733702888, + -0.0006772825479732828, + 0.0001373943534099116, + 0.00033669540329503596, + -0.0006793269565985049, + 0.00019460901676931718, + -0.000646595308008727, + 0.0011053723371156645, + 0.0008026209913707568, + -0.0020551632241263646, + -0.00017377232230081236, + -0.00013600381891999572, + -0.0016198533783219687, + 8.10704931612298e-05, + 0.0010405086984507893, + -0.0003590773752239741, + -0.001002437322527758, + -0.001161584202027129, + -0.0005603510530274877, + 8.378959630032133e-05, + -0.0009786044357254172, + -0.00015215704412719044, + -0.000841887947634352, + -0.000799642541488621, + -0.0005311068689970131, + 0.0011615899971000648, + 0.0006578141903513387, + -0.00014619974897492192, + 0.00010819065221761499, + 0.0007359759550434815, + -0.0002543562800779573, + -0.00015646500505248556, + -0.0002197242244851538, + -0.0007474886056113806, + -0.0019151497161974448, + -0.001894763729561928, + 0.00221525092711684, + -0.0012944183308610671, + -0.0014081271081109225, + -0.0010292474590757011, + -8.115430300969194e-05, + 0.00012187052485438421, + 0.0008507305732680029, + 0.0008723381312593419, + 0.0012991223156996795, + -0.00010777315793434685, + 0.00041073893528559003, + 0.001041134967781498, + 0.0005237875747731152, + -0.0004338809320102498, + -0.002073816133974338, + 0.0007143912023108507, + -7.190073016017019e-05, + 0.00090210462309384, + -0.0005972669397155522, + 0.0008679099324397089, + -0.0012484539895824909, + 0.0005216716511744462, + 0.0004486132146332885, + -0.0004033816619321438, + 0.0002559761570756555, + -0.001546938403818934, + 0.0013475556530214634, + -0.0009277461716428649, + 0.0006552333753543608, + 0.0016051733046395364, + 9.470638635949893e-06, + -0.0004057598440088229, + 0.0008755745243156812, + 0.0010270304006772446, + 0.0006196581806054191, + -0.00026634314198146895, + 0.0019644925982851935, + 0.0010183263981026354, + -0.001002753327479171, + -0.00017570039837068116, + -0.0005472510027439817, + 7.867960630546193e-05, + 0.0011810746440383362, + -0.0020398517588618064, + -0.0005653474470381853, + 0.00012190197745279131, + 0.0005540217820455889, + -0.0006059887668693178, + 0.001213408139712729, + 0.00039290033160804686, + 0.00016706517784149003, + 0.0018179822944520444, + -0.0006321007517577175, + 0.00030095731294121913, + 0.001886094414933088, + -0.0006268970756422604, + 0.0012258406888773017, + 8.340217443332957e-05, + -0.0010730059026761059, + 0.0016810293355580283, + -0.00021395307575833994, + -0.00027771871527284593, + -0.0009272521921504715, + -0.0018724103577321975, + 0.000814851449405764, + 0.0006162155406466615, + -0.0005744364204685189, + -0.001840751112525641, + 0.00014182262641823667, + -0.0009080665697484129, + 0.0025297735837816245, + 0.0011852758973231172, + 0.0018684575892001952, + -0.0002773458092720576, + -0.0005954342157347672, + 0.0005137385042760067, + -0.00012797350577039267, + 0.00023417605817922422, + -3.8629624666586536e-05, + 0.0007259007029674304, + 0.0003796729458746447, + -0.0012338671649573542, + 0.0016194273544128488, + 0.00033116595255199704, + -0.002156633323316073, + -0.00013974369803923314, + -0.0012712046830490604, + -0.00022847739244118357, + -0.00029560466047043945, + -0.0006142599665759806, + -0.0010464066549965851, + 0.0005872394828794476, + -0.0006601506232705296, + 2.307044141117272e-05, + 0.0007276272497046813, + -0.0013819705744376706, + 3.2758858758459174e-05, + -0.0006135630578201338, + -0.000275150244957289, + -0.0010256759531080955, + -0.00023409633594535288, + -0.0011846803033728095, + -0.0006645616948943231, + 0.0010992524131829223, + 0.0015635150589697168, + 0.0007849387290476648, + -0.0007840932630354567, + -0.00046613319884066174, + 0.00017832613081925812, + 0.00045845663807168933, + -0.0016058607613153829, + -0.00046879668191327753, + 0.001624714197357801, + 0.0014841034915936237, + 0.0017644135938499892, + 3.9035419298184154e-05, + -0.00047239908000549407, + -0.00047374087372559025, + -3.2659753794563966e-05, + -0.0009098010909185313, + -0.001878131437592149, + -0.0005415907904115695, + -0.0008945837898139572, + -0.0006275694311655663, + -0.0018424789903200508, + -0.0008288583591076099, + 0.0012153450496774887, + 2.440362021787293e-05, + 0.0003029447851294308, + -0.0013235378522082767, + 0.0006929491382562639, + -0.001199278677277288, + 0.0004257021548760925, + 0.00023933597297624105, + -0.00012225495966644454, + -8.522990226540226e-05, + 0.00017454211102820147, + 0.0009299427345051384, + -0.00019274529353932986, + -9.372768663313137e-05, + -0.0009395816902243819, + -0.0012827337967690057, + 0.0007669710981980404, + -0.0011340616407460526, + 0.0009886691708712611, + 0.0005216696310271232, + -0.00013748122949247278, + 0.0013293179275433186, + 0.0008041309962498296, + 0.0004119425669489237, + 0.0011075725484613781, + -0.0002454273772698312, + -0.0013270002990211532, + -0.0006552508189581236, + 0.0007841839327576109, + 0.0009257082709316408, + 0.00015935049846924, + -0.001353677438216943, + -0.0003101536905384223, + 0.0006827468484294755, + -0.0005887581205602663, + 1.4466294567207239e-05, + -0.0002783193958011845, + -0.0007096774551859976, + -0.0012489418464952575, + -4.6514230382042655e-05, + -0.0006390639182274582, + -0.0007677893277195797, + 0.0007108351885585672, + 0.0005561776895310307, + -0.0009632513604964767, + -0.0005027759795659089, + -0.00013866259811720258, + -0.0005663346253346797, + -0.0002738001613877752, + 0.00043392491664402325, + -0.00014808070856451666, + 0.0007597508051178058, + -0.00021511183113965738, + -0.00040376233923170935, + -0.0011389573298199215, + 0.0011926471873615527, + 0.0010920534367936203, + 2.7439583067890837e-05, + 0.0013301412579836958, + 0.0018050410736988494, + -0.0007276770039951367, + -0.0005831331778332786, + -0.001022871927100198, + 0.0007392240522404302, + -0.0013415381556776812, + -0.0020526563904035553, + -0.0005652152980091115, + -0.00021745872357599571, + -0.0019746487862727967, + -0.0017153451145541843, + 0.00029155795933890363, + 0.002319630355203508, + -0.0013113963223806452, + -0.0001294221873382525, + -0.00017408063326714788, + -0.0005200002128589761, + -0.0019735440557535496, + 0.00012478131857156878, + -0.0005260956081139925, + 0.0009382583843977316, + 5.582627104092898e-05, + -0.0007215931311952389, + -0.000579857809666777, + -0.000544593472767772, + -0.0011385382165097792, + 0.0007948000627549126, + -0.0009137553096147457, + -0.0005289519784487587, + 0.00018533691705836824, + 0.0005398580458703363, + 0.00016971772399756668, + -0.0004921925659016053, + -0.0006760738544801761, + -0.0012256401801502216, + 0.0015251524782863546, + -0.0008849371781204839, + -0.0002742792656447132, + 0.0013464303868357013, + -0.00015200619862276818, + -8.331708310871281e-05, + 0.001083307733083923, + 0.0007890467767490176, + -0.0003042664822346212, + 0.0009547956944127718, + 0.0007707713099523723, + 0.0012522181105993294, + 0.001543871319612972, + -0.0008199443228660667, + 0.00011285375000587286, + 0.0004630741738959993, + 0.0009013945697030182, + -0.0010489574024819296, + -0.0001903833725376198, + -0.00025666381431434574, + 0.0011260744499346459, + 0.0023436314458386114, + -0.0008923738051725914, + -0.0011642892287812806, + 8.571111660265548e-05, + -0.00028728566138086216, + -0.0019275756228973664, + -0.0009914344712439141, + 0.00065325336656278, + 0.0001230089593329516, + -0.0005620340559111569, + 2.7391907319893895e-05, + -9.394381453933587e-05, + 0.00040659664840809025, + 0.0007191734541323098, + -0.0015035896087217885, + -0.0015866728871699015, + 0.0014847682480483217, + -0.0016015571084391016, + -0.0007555299681517055, + -0.00020017610125920479, + 0.00022026621331653354, + 0.0014777147071756943, + -0.000985673083611297, + 0.0012154835426142954, + -0.0009882905895190171, + 0.0008177141452310676, + 8.363096458943782e-05, + 0.0008254801872588242, + 0.00042970344461200295, + -0.0016355765099335202, + -7.002072173069537e-05, + -0.0002613217659772772, + -0.0004528517321366043, + -0.0006106324178301298, + -0.0007295695103410415, + -0.0009574255731477595, + 3.5319264231312115e-05, + 2.5048416980766137e-06, + -6.323489567834154e-05, + 0.00017803903138327554, + 0.0004883986157143899, + -0.0013018332778485314, + -0.00016593943607465093, + 0.0006854605413267064, + 0.00048767485909681507, + -4.3741239877119755e-05, + -1.2722000333969066e-05, + 0.0002973959779569777, + -0.0006771664804521326, + -0.00040865144133525144, + 0.0006911561058238152, + 0.0005464834256275891, + 1.068542313952991e-05, + -0.0002825797113803384, + 0.0007447849459271404, + 0.0006750125746597848, + -0.00010647771655461612, + -0.0010443174762639934, + -0.0006148876405887278, + -0.001281774071921391, + 0.000884214963056059, + -0.0009211962120539919, + 0.00021519740924755596, + -0.0013094415762291067, + 0.0011209730985217593, + -5.2563070581243424e-05, + 0.0011784129734459133, + 0.0010908884260492418, + 0.001121108021591094, + -0.0011324861261581534, + 3.767306682754646e-06, + -0.0004021740471330644, + -0.0019929828712680637, + 0.0005564546270876054, + 0.00047698697022544837, + 3.8808496130810614e-05, + 0.0011208681466245824, + -0.0017908305662381306, + 0.0005468357589374526, + -0.0010380684676747, + 4.1203979339640286e-05, + -0.0007406199329201499, + 0.00016965906451039449, + -0.0008458012653423028, + 0.00035941436661643313, + -0.0008024410947947481, + -0.00047082902339540413, + -0.0018517984045651535, + 0.0005215613504340325, + 0.0009191854381750063, + 0.0004161140764378989, + 0.0007005283910660447, + 1.5872750119012833e-05, + 0.00047501871149123194, + 0.0012065020366808926, + -0.0010390505552356425, + -0.00142236706007953, + 0.0003769242948156944, + -0.0005355051663895864, + -5.637059993671412e-05, + 0.0021085506650261017, + -0.00033512967573194727, + -0.0013865606939118616, + 0.001988689436393826, + 0.00042794527275678666, + 0.0007236796186709461, + 0.000207312140507114, + 0.0013779236447015676, + 0.00034710880475028637, + 0.0004751840223299953, + 0.0028898846903955295, + -0.001547874270212295, + 3.39964487835445e-05, + 0.00012962059392089933, + 0.0010139244886734934, + -0.00019121839856399092, + -0.0005768483537160632, + 0.0011758642240558951, + -0.00015823867993311144, + 0.00027516550222868286, + 0.0008484441706154387, + -0.0006333176731583799, + 0.0015395147356479148, + 0.0007693462325582032, + -0.0012354667980856568, + 0.0008589993289658408, + 0.00046892741753519035, + 0.0014966578199703672, + 0.0015137642536561433, + 0.0009151391090631963, + 0.0007560128893052371, + -0.0007246807122151445, + 0.0007777990701347045, + 0.0007558309868820272, + 0.00019305460833536826, + 0.0007070112359797129, + -0.0001326880674508584, + 0.0006300270522281987, + -0.001277381012083592, + 0.000938027907226287, + 0.002201943929337727, + 0.0006145693077624208, + 0.00036262069721010266, + -0.0005946631862239267, + -7.907669372864243e-05, + -0.0001015930486038088, + -0.00021637633345259228, + -0.0016791187571208153, + -0.0005002115227751338, + 0.0012424120401219635, + -0.0002028774556686876, + -0.0015076894351393204, + 0.0011755859028551104, + -0.0018532761038118476, + 0.0008170232017505365, + -0.00027068889874022357, + 0.0012315480508447209, + -0.0008793001516126271, + 0.0010077280864361673, + 0.0021555177062483996, + 0.0010516370897761967, + 0.0013706960570655912, + -0.0009775071731418254, + -0.0007266901081408426, + 0.0009684739001165906, + -0.0005196632465673016, + 0.00043798175906892604, + -0.0004761523148838627, + -0.0008015009559432673, + -0.0002743951830099175, + -0.0002101258541340768, + -0.0017535883167070945, + 0.00108318374785234, + 0.0010856079409741687, + -0.0006809524949173706, + -0.0012925443599986946, + 0.00031305398881067596, + 0.0001688828716820786, + 0.0012475675109088664, + 0.0013161845832167741, + 0.0008294131358979759, + -0.0005521582900165403, + 0.0001834289408128992, + -0.000725922060341002, + 0.000641204890282848, + 0.0005466261028535946, + 0.001619021485926928, + 0.0002455297060089909, + -0.00037621266155112574, + -9.805031289324159e-05, + -0.00043354887386529357, + 0.0006073273670017484, + -7.720405912905545e-05, + -0.001008381198249245, + -0.0007607993959550132, + -0.0006791157271967338, + -0.000611914669127093, + -0.00010675234371518604, + 0.00048435635073753534, + 0.0008674813478139841, + 0.0006265747605093991, + 0.0005195534036523024, + -0.0019626760030845196, + -3.1292711165564424e-05, + 1.6852298050166345e-05, + 0.0008372240129639294, + -0.0005075233129397342, + 0.0001702126167809307, + -0.0006612670176947515, + -0.0014133890156392544, + 3.022223005620058e-05, + -0.0007614504201546305, + 0.0010166843133909474, + -5.9598213080940344e-05, + -0.0005685352850292359, + 0.0007236654248102324, + -0.00028579610494040413, + -0.001840838642758128, + 0.0003973586781973919, + -0.0005754113090886242, + 0.0009390449080833442, + 0.0002531262740978972, + -0.00021228461443984878, + -0.0013934827726272243, + 0.0003820729581589727, + -0.0009652317669157452, + 6.373110656479822e-05, + -0.0005188179749127257, + 0.0006139867975434936, + 0.0014621329768889325, + 0.001396554611494456, + -0.0002020845202515054, + -0.0007701459863187674, + 0.0009551463092044626, + -0.0006157176532608947, + -0.0006731535991849483, + 0.000843132098280149, + 0.0009629342800641876, + 0.0009833547129192398, + 0.00037913624629173074, + -0.00016296380946954176, + -0.0003946064377629643, + 0.0011307565819540957, + 0.00048002682233348905, + 0.00013530736234440495, + 0.00015190909005770452, + 0.002525424314312132, + 0.0013983892843201589, + 0.0014719485720329994, + -0.0004870718591990938, + 0.0006182078263376038, + -0.0011856032754067613, + 0.003093780169936306, + 0.0014920250882651583, + 0.00031958248378246407, + 7.437426845314787e-05, + -0.000304905064233707, + 0.00035071326276614234, + -0.0007851997939006672, + 0.00037091106699067475, + 0.001326124868538595, + -0.00018414257610840644, + 0.0004674118783336765, + -0.0007706200653478202, + 0.000613778414457533, + 0.0011505195759888823, + 0.0018965219985330323, + 0.0005310451011945201, + -0.0012168026571109318, + -0.00028918306808454054, + 0.0009817133197341896, + -0.00019582802657454578, + -0.0004985991191709413, + -0.0010123380044174406, + -0.0013482871083811698, + -0.0002084431898089644, + 0.00021632655875696163, + 0.001937610683059438, + -0.00011419763189451319, + 0.0008098705601005431, + -0.0003048253915429597, + -0.0008458522928350008, + -0.00031281600702254953, + 0.0006882586826327576, + -0.0017247605011207114, + 0.001231783530519311, + 1.2386043745770664e-05, + 0.0007975930720058807, + 0.0015368579100151596, + 0.0008558762370825001, + 0.0009148739628520266, + -0.00039788447823082765, + -0.0003703737725833197, + 0.001585576444592436, + 0.0012262147696407593, + -0.0007353257925480993, + -0.0006481903932046089, + 9.147906492094841e-05, + -4.0676275173697306e-05, + 0.0005099071325796534, + 0.0007508179629184206, + 0.0005035773938286783, + 0.00037593167820039794, + -0.0005558980405911102, + 0.0008509115849267475, + 0.0004283354355305198, + 0.0001620461503859995, + 0.00021287942353907655, + 0.00013219193070519887, + 0.001894987670036629, + 0.001236209528800909, + -0.001733864374115713, + -0.0003265120875991358, + 9.999903762181897e-05, + 0.0004653840265722703, + 0.00017573299522958565, + 0.0015237490291014366, + -0.00037777764997797426, + -0.0006096532543440503, + 0.00019441395923034869, + 0.0004804104123186151, + -0.0003675825435076717, + -0.001331789891608182, + -0.0010167366804148435, + -0.0021342206134845544, + -0.0008948512704052287, + 0.0012038334559044514, + 0.0007843498666707582, + 0.00020704397463610765, + 0.0013600640893818774, + 0.00016244447215666352, + 0.0009151657924688093, + -0.0003173974654030323, + 0.0010343588160444245, + -0.0017715987954647222, + -0.00024964424125906463, + -0.0006133634110585387, + -4.7403826189359006e-05, + 1.4081461780296855e-05, + 0.0009572007674778298, + 0.00014855922423804825, + 0.00016011424720519324, + 0.0016366476683309205, + -0.0019441869472850257, + -0.0013713899074354597, + 0.0009544233399055267, + 0.00014151272508743313, + 0.001849610474993914, + 0.0023086161976397478, + -0.0006584695164297568, + 7.099257787946181e-05, + 0.0008474780704654086, + 0.0007507395277653367, + -0.0006938021044001769, + 0.001105309923747922, + 0.0026484486668228863, + 0.00025791839023851505, + -0.0018335430145064436, + 0.00040057846376246177, + -0.002276054535832052, + 0.00010477382019932218, + 0.0005736983256690269, + -0.0007251625737340841, + 0.0010856163854539944, + 0.0008312307112969851, + 0.00045610690999727807, + 0.0006722330850960164, + 0.001099332833617504, + -0.002008291287024973, + 0.00031644843532334984, + 0.0011340946825470347, + -0.0008618698663098958, + -0.0006677779035184153, + -0.0013770926536694284, + -0.00021775976294652013, + 0.0005913797126289503, + -0.0008559844308059121, + 0.0008641270352021477, + 0.0016487981302435505, + 0.0008188570501479655, + 3.617473112294436e-05, + 0.0020450903115102072, + -0.0007403821702958648, + -0.000616406968915607, + 0.0003834785405674865, + -0.001257297514153456, + 0.00159311756981004, + -0.0004139914077143578, + -0.0021851014808886007, + 7.268411711279082e-05, + -0.0006680390957399413, + -0.0007132746254335545, + 0.00125917339330871, + -0.0012568424283987208, + 0.0009071119641645683, + -0.00024939889062963624, + 0.0007046374996207801, + -0.0003759305608103504, + 0.0001906148304746912, + -0.00027128337909546643, + 0.0002913782418141792, + -5.5937351025074896e-05, + -1.948912788451046e-05, + -0.00037707753998497435, + -0.00042215623449753736, + 0.00018610233934877895, + 0.0004533676659774569, + -0.0007404728166798479, + -4.1456783695517814e-05, + -0.0013566458423544517, + 0.0002619538826103473, + -0.000844663148301194, + -0.0014506180739125613, + 0.0006408893640781722, + -0.0006727401470046621, + 0.0001719690883771914, + -0.0011708962981574955, + -0.0013129497005538767, + -0.0007324546853346176, + -1.6664476801845397e-06, + -0.0011021842888350745, + 0.00010651137282659544, + -0.00036614840475089844, + -0.00089251220834823, + -0.0013746802309841713, + -0.0011209009404559392, + -0.0009941312272154813, + 0.00015346970355666273, + -7.456606022138165e-05, + 0.001802263302140037, + 0.000517210990024804, + -0.0008786614782110772, + 0.0005504823700663182, + 0.0008694190642231708, + 8.275979252450808e-05, + 0.0001135415682457096, + -0.000957848022248403, + 0.0008350381278633296, + -0.001469625482599283, + -0.000543641073186527, + -4.843580104432465e-05, + -7.227086379148414e-05, + -0.0003262974648046803, + -0.0007475210266285093, + -0.0005243710510408663, + 0.0005836498262651517, + -0.0017000372916839818, + 0.00031528030205108144, + 0.00039108929283332037, + -3.892507614385109e-05, + 0.00013744908554576813, + -0.0006266822600186013, + 0.0004492356488404556, + -0.00023616775762699303, + -0.0018113748419439832, + -0.0019154894665313375, + -0.0015038519416110375, + 0.0025257577663450872, + 0.00024575534037567877, + 0.001018132096598654, + 0.0011276723901545147, + 0.0012170113290382195, + -0.001468094714436184, + -0.0003707827301416084, + 0.0015993048070901848, + 0.0016613983599902155, + -0.00048120036673072997, + -0.0011054418990079247, + -0.0011639491791715013, + 0.0012572148259509175, + 0.0002351258559832181, + -0.0009772673289506046, + 0.0006753431046667082, + 0.00023474325185870244, + 0.0008185661479336855, + -0.001073854447963591, + 2.8775742886413597e-05, + 0.00015641903990770592, + 0.0009285896349597373, + 0.000743250129913201, + -0.0008331179548047691, + 0.0005355414096374265, + -0.0013218463003704824, + 0.001001596755478037, + -0.0008589446410832784, + -0.0019354519871264569, + 0.000497754549132331, + -0.001031132625449232, + -5.5287744397359774e-05, + -0.000461092022819292, + 0.0006878269473303165, + 0.0008140125171906518, + 0.0001865062300536076, + 0.0004573438898734228, + -0.0006251437937052994, + 0.000458186685785606, + -0.00036661997441944747, + 0.0010578673099163245, + -0.0003191060279543737, + 0.001516869303763067, + 5.8002911440035456e-05, + -0.000729406055894024, + 0.0019126553428177413, + -0.0004488887070002623, + 0.0013038712498697144, + 0.00021836372883111645, + 0.0013708568438696932, + -0.00048348176142772443, + -0.0003373367335606932, + -0.0004092620006579989, + -0.000387317205606125, + -0.0003458906091736601, + -0.0008864137479464472, + 0.0005795548994785292, + 0.001528856426004212, + 0.0008451893088704214, + -0.0016155264235716198, + -0.00013085269757767202, + 0.0008548009293915774, + 0.0004655052232301872, + -0.0009612275713714917, + 0.001495149627345742, + -0.0015110227535005693, + -5.398680162478129e-05, + 0.00030641385290882425, + 0.0008455037285357802, + -0.00024112528139992384, + 0.0007676527438743029, + -0.0018032512630167129, + -0.0002800194526780565, + 0.00018984600991876503, + 0.0007822918707247971, + -0.0002237655434517622, + 0.0013652562680243772, + -0.0011799321458752074, + -0.00014521541745525943, + 3.289011562759349e-05, + 0.0022342661360973187, + 9.015856255705198e-05, + -0.00018010839058522134, + -0.0007215057256109542, + -0.0011082243018008583, + -0.0002667076767502756, + -0.0005261539957797791, + 0.0013993127573978497, + 0.003265046460816678, + -0.0011015280618956657, + 0.0007260930045290512, + 5.7629904537836756e-05, + -0.00028638261620400455, + -0.001390587919662593, + 0.0007280342031323194, + 2.4607841459044983e-05, + 0.0006126861856732723, + 0.00015221106915931922, + -3.9795884162908e-05, + 0.0016976784132201844, + -4.441078884960588e-06, + 0.0012071314200436587, + 0.0002878010434859319, + 6.687493229507888e-05, + -0.0014030877049524377, + -0.0019404936783602256, + -0.0005866504384310143, + -0.001928732082071324, + 0.0013257466148185926, + 0.00016279104232788755, + 0.0016392434395581595, + -0.0008073274070459788, + -9.640679839250063e-05, + 4.685827425682756e-06, + 0.0007897111274014245, + 0.001558754097916548, + -0.0017592421270404127, + -0.0001654192155494504, + 0.0003517491358873672, + 0.00034093630853618447, + 0.0006077586784839686, + 0.0006474605723020388, + 0.0006388140713417663, + 0.0015170142597995052, + 0.0004654329998929194, + -0.0015695121547723446, + -0.0011430885396366238, + 0.0001434207320023562, + -0.0008380448714112393, + -0.0005408059582948132, + -0.0009324220574122204, + 6.693939549958164e-05, + -0.0002508079081981275, + 4.136817792736838e-06, + 1.618081116186152e-05, + 0.001018976250163648, + -8.40069795943809e-05, + 0.00046482800517817346, + -0.0022356860340191206, + 4.3435421115747965e-05, + 0.0005163331871297355, + -0.00047840448283746476, + 0.000692205317261706, + 0.00035152329844499974, + 0.0012795117540978004, + 0.0010522895441960488, + -0.000341116015046483, + 0.001568593697676441, + 9.509066736981997e-05, + 0.000586615963982806, + 0.0004725103068407806, + -0.0010242752443036774, + 0.0013882467967714076, + -0.0006033589883686911, + -0.0012333263522328367, + -0.0007531743257335888, + -0.0014574076047991465, + -0.0015059215209906388, + -2.347764583313335e-05, + 0.000371356217118998, + -0.0016945400304788742, + -0.0008332352469380139, + 0.0006038170507731652, + -1.616205066087793e-05, + 0.00019746420688783594, + 0.0016668351774683115, + 0.0017904348867460367, + -0.0013013889096081478, + -0.0021743166286298608, + -0.0010956401869055884, + -0.0021798971720281054, + -0.0004441018659725227, + -0.0008161370681621995, + 0.0006106662471064867, + 0.0004427959024771751, + 0.0003578806611534797, + 0.0003950280990076959, + 0.0007639644098898555, + -0.0019433600549193294, + 0.0009302199882789731, + 0.0016756945095897581, + 0.0015079974420787808, + 0.0014184176166538909, + -0.0010630878684409367, + 6.196931215447108e-05, + 0.00026608653793414147, + 0.00045096629890946214, + 0.001414108451954919, + 0.00018483475519180518, + -0.002002897491224868, + -0.0004509178949781823, + 0.0006629891795862403, + -0.0003078377817845097, + -0.001567161286627393, + -0.0004978760926414897, + 0.0007569147505966891, + 0.001070009903976791, + -0.0003712160842059673, + 0.00018684409001309157, + -0.0006336110382974539, + 0.0011004190471000904, + -0.0016739928882195598, + -0.00034703788002232115, + 0.00019871353899854436, + -0.0005468132970981666, + -0.000249205178927374, + 0.0017233362891174273, + 0.0005472001855544726, + 0.0012685029433823654, + -0.0009097811292589578, + -0.0017114287863480508, + -0.00101898702723107, + 0.00011982019108519567, + -0.00019359811928305618, + 0.0006768536962535475, + 0.0006123563454089686, + -9.018929529091749e-05, + -0.0010212149839001078, + -0.0004676323796079595, + -0.0005066529809368607, + -0.0003338072701387057, + 0.0017523254105596246, + 0.0007690972474130011, + 0.0011201990185337287, + 0.0018850516438518612, + 8.334444946398031e-05, + -0.0028401848322393325, + -0.00011999140933778583, + 0.0006844020995328622, + -0.00019272650499091792, + 0.002936425377206464, + 0.0008670290252309245, + 0.00038211229365440466, + -0.0013498569691882286, + 0.0004799976662060204, + 0.001828967440935169, + 0.001914132765174544, + -0.0016478157303258278, + -0.0012530665724742268, + -0.0005653292526978639, + -2.5349085679602093e-05, + -0.0005993533047246497, + 0.001649989264464849, + -0.0012528023834720437, + 0.0017834144539955509, + -0.001371745798100629, + -0.002734462051293549, + 2.3204426337626257e-05, + 0.0009141313033954536, + 4.660129193926474e-05, + 0.0002144790066795692, + -0.0009319137471683911, + 0.00025984436479200017, + 0.00010308788274394013, + -0.00031749837196479733, + -0.0017828246008499075, + 0.0012526903125452476, + 2.1771538000902446e-05, + 0.001088260448894503, + 0.0003677828035028675, + -0.000558747391115069, + 0.0005041394602016987, + -0.001138033053844944, + -6.23150902407085e-05, + 0.0018783646449274068, + -0.00014494498759946357, + -0.00011696864003333216, + 0.00026284299270724643, + -0.0002073399855087799, + 0.0014852881110754685, + 3.192402723965778e-05, + 0.0011040818227787993, + 0.0009887957247828392, + -0.00034822704306298476, + 0.0003905003605618267, + 7.330666920743814e-05, + -0.0016833845777142432, + -0.0017390243198330544, + -0.0007162157679018235, + 0.00019865775919477687, + -0.00023642356711129646, + -0.0024441893837757384, + 0.0017955115893068144, + 0.000741909064140193, + 0.0008349012955597332, + -0.002026955013157408, + -1.581815416314698e-05, + -0.0015218203411315383, + 0.0007687622804029824, + 0.00029391503443699233, + 3.4122025292181594e-05, + -2.560331040589045e-05, + 0.0019007020871942882, + -0.00034544129001194354, + 0.003557835077478187, + -0.0002795439610740551, + 0.0007514285415800593, + -0.00030795271361549505, + 0.0003372709182163526, + 0.0004626901169909172, + -0.0003851582197672319, + -0.0030279236599633228, + -0.000286526900467021, + 0.0003803282182809005, + -0.0010225610682635209, + 0.0012919327417925135, + -0.0011330578281085653, + -0.0009836523010256515, + 0.0017395092869649045, + 0.0001849486531105705, + -0.00029150321747448284, + 0.001027387773071351, + 0.00017527713481810248, + -0.0004108014034116368, + 0.00020858272046883722, + -0.0007317583729402373, + -0.00035975249514288185, + -0.0009393629378463398, + -0.0009844456050515245, + -0.0005402659092349822, + -0.000141922689109883, + -0.0014455034619169401, + 0.00015626401036542386, + -0.0006304560249768649, + -0.0002677096213974779, + 0.0005867537810346726, + 0.0018096788981932777, + 0.0006850803813493349, + 0.000516616189326046, + -0.0002942678046703701, + 0.000417289759649822, + 0.0004760850562627093, + -0.0003948012123376384, + -0.0013264691544975027, + 0.0010073958191313221, + 0.0006306625726465239, + 3.496987040924595e-05, + -0.0026268353900620856, + 6.548202615851645e-05, + 0.0002028025640440027, + 0.0012990100406530798, + -0.0003954179757786647, + -0.0002440076354471901, + -0.001233914100780611, + -0.0006424922828602943, + 0.0010382335142582189, + -0.00012119170311751802, + -0.0005858541740403283, + -7.322736432990516e-05, + 0.0007375099014723533, + -0.0003305917169705829, + 0.000584448551558744, + -0.0008376522313478504, + -0.0007251303185604539, + -0.0003567672658000261, + -0.0014355605147025813, + -0.00026181343124394264, + 0.000320712739834777, + 0.0006760181541346304, + -0.0016535602552355377, + -0.001572905155083836, + 0.0010961919870006818, + -0.001115395085767427, + -0.00042064826550643284, + 0.0006702826598838646, + 0.00034509633955101993, + -0.002122015601178394, + -0.0006064478222700618, + -0.0012652499804975481, + 0.0006219810806378105, + 0.001142048313904458, + -0.0006314944707305318, + -0.0009540737378551243, + 0.0005794579293618401, + -0.00026120169211103273, + -0.0008315633884495717, + -0.00019748029512572235, + -0.000953566735161883, + -0.0021116170644907757, + -0.001728216866839024, + 0.0001582406241708997, + -0.0017409591587196644, + 0.0010969194722740222, + -9.461381203448883e-05, + 0.0009582897630927376, + 0.0016830736269277113, + -0.0008157697100017447, + 0.0003670753350875375, + -0.0012191129809339754, + 0.0007658808399851639, + 0.0003796681875339566, + -0.0013770655824550972, + -0.0005267742917370929, + -0.0005584685906499217, + -0.0007822176494629672, + -0.0005196715942298276, + 0.0009997384834065056, + -0.00017504821640420992, + 0.0006352121347851666, + 0.00026817863382142557, + -5.502241969132733e-05, + -0.00038418125925261, + -0.00035883269857816744, + 0.0007925172983948271, + -0.0002344323496084963, + 0.00019497413741875855, + 0.000144331118737367, + -0.0013355294543028835, + 0.0017604377739360959, + 0.000275950071211116, + 0.0003179461327165811, + 0.0003843412015255869, + 2.753648599225288e-05, + -0.0021047398875741826, + 0.00026337705467750387, + 0.0005361866137628879, + 0.000998040095302974, + -0.0008450338193509184, + 0.0011862797743129494, + -0.0005860964029664875, + 0.001634453455502039, + -0.0003421695391271015, + -0.0013785514072309445, + -4.4412493499724654e-05, + -0.00010023983801042895, + -0.0009540176214967126, + -0.0013307338580113017, + 0.00014917414756980806, + 5.30939216761763e-05, + -0.0008104581113308546, + 0.00024922492433364753, + -0.0019035431765627006, + -0.0018843588268179772, + -0.0004360183333796188, + -0.0007873496261828522, + 6.626202295858627e-05, + -0.00040416012062166156, + -0.0018754145206709037, + 0.0006963869066665488, + 0.0013928182454410088, + 0.0001780503333831502, + -0.00086077840351334, + -0.0001843109905023953, + 0.0004268470877057779, + -0.0006788353782538826, + -0.0007513373810255713, + -0.000772816932977752, + -0.0010087297466834949, + 0.0009809960460268117, + 0.0006157824620774759, + 0.0005989219302314738, + 0.0007358455393352784, + 3.649620538141509e-05, + 0.0004218081906971112, + 0.00038146608576598227, + 0.0015046603990252045, + -0.0004499315568817043, + 0.0012244792855013416, + -0.0003297198082633805, + 0.0017208278675342173, + 0.0022854617022098917, + 0.00019694598005794348, + 0.0009169036569568076, + -0.00129459010403295, + -0.0005551433881706311, + 0.0015978407142861763, + -0.0008433435397222343, + 2.8591511899297312e-05, + 0.0010458383507140458, + 0.0010092691676554676, + -0.0001812610838982912, + 0.0016161272547695945, + 0.0008596084153549631, + -0.0003545759397259728, + 0.0010462017580410426, + 0.0014219934233993083, + 0.00237335905856123, + 0.00046065982292397455, + 0.0010805252354400725, + 6.507528527669609e-05, + -0.000626304921701766, + -0.001794774233010495, + 0.0007267554417711085, + 0.0009126654246274499, + 0.0010559260038011677, + 0.0009230436710758591, + -0.001902581540530775, + 0.0003654557801602491, + 0.0005800799988011512, + -0.0033340756450773766, + 0.0008726941896723444, + 0.000538059714702815, + -0.0006718117416287521, + -0.00035864880280347294, + 0.0010030572396837263, + 0.0006439276569690846, + -0.00026421482554970594, + -0.002004466079034058, + 0.0010270548604495882, + -6.765372456779415e-05, + -0.0006749849938722388, + 7.365076942221301e-05, + -0.0006742999818953278, + 0.0011963057304072002, + 0.000851641348910192, + -0.0005753600383772655, + -0.0016614572573830219, + -6.763618444797049e-05, + -0.0029285495258218825, + 0.0015505038425327076, + -0.0024716565958539435, + 0.0004190533486815135, + -0.001072948286014181, + 0.00015903624686190411, + 0.0004726727036552604, + -0.000641322305402358, + 0.00015990120406461368, + -0.0003429141195161341, + 0.0004363224664492928, + 0.0011012843707588875, + -0.00035424518074134143, + -3.428635678915166e-05, + -0.0015050166383300523, + 0.0007148761153111705, + 0.0008708883068277364, + -0.0010591745876791982, + 0.0006857203752685349, + -0.0009343209699367675, + 0.0010786965664631707, + 0.0004811161242079709, + -0.0003960314965092296, + 0.0010798478617578733, + -0.0004894696922184365, + 0.0010648684081689147, + 0.0021116065868851982, + -0.00034902216750604424, + 0.0005688491561788352, + -0.0011392708319514278, + -0.0009246739987052115, + 0.0004906323365061174, + 0.0001016020541439463, + 0.0009709881718169685, + 0.0002733172068755977, + -0.0005723257129124503, + -0.0010712989215100758, + -8.353123380830579e-05, + 0.00024520964899673437, + 0.00037962861059987976, + -0.0011179272175123323, + 0.00010370286483887437, + -0.0012466594270231436, + -0.0011984746780518223, + -0.0009055953263519949, + 0.000698919431213246, + -0.0001949282016705857, + -0.0008323143308226142, + -0.0006310377617045073, + 0.0010261658141385856, + -0.001270323789347878, + 0.0007249904855817779, + 7.618922055742729e-05, + -0.0010662899796454754, + 0.0024290245264099604, + 0.00019724861278483128, + -0.0008197180503462248, + 0.000541986864411404, + 0.0008762052698665123, + -0.0020367836220982617, + -0.0006983091560407313, + 0.0007907111481241515, + -8.051741177478234e-05, + 6.904764075846977e-05, + -0.0012671994324011237, + 0.0006261275629279884, + -0.0003100646968289137, + 0.0014755812457022182, + 0.0003704308381445851, + -0.0004738234704678045, + 0.00018578099988906627, + 0.0002510021075090419, + -0.00011898655734953685, + 0.0008731152714027092, + -0.0001370960934079376, + 0.0005670356351413834, + 0.00033477045408995023, + -0.0004810817849481285, + -0.0011628942752404693, + -0.00010622937193330902, + 0.00015353102339531855, + -0.001065581106855093, + 3.145056111827852e-05, + 0.0010830773295431079, + -0.001416813350807714, + 0.00041086804580690465, + 0.001984227573184978, + -0.001025142958872697, + 0.0002759973818029427, + 0.00012705958610982108, + 0.0004898418907996751, + -0.0017048211908945576, + 0.00015637811587208448, + 0.001134339477398398, + -0.0011775904112617274, + 0.0004126463946632433, + -0.00038039185532152264, + 0.001328324380046137, + 0.0009524970309257773, + 0.0006688682403231115, + -0.00022446811234982404, + 0.00046218689003712984, + -4.154578449739491e-05, + -0.0007188113078850507, + -0.0006079033512233554, + 0.0002126148980862491, + -0.0014419632902723696, + -0.000573182229045245, + -0.00010310009062434848, + -6.496437203388216e-05, + 0.0011841397537095191, + -0.0004972337389560333, + 0.00030230754208484184, + 0.0020026443947031313, + 0.0008305116587609503, + -0.0010213663377505204, + 0.002053620047567983, + -0.0004724859170421962, + 0.0006625199515041684, + -0.00043025358649050234, + -0.0013395520237662966, + -0.0018059270770898212, + -0.0006187606804874967, + -0.0014877717799980502, + -0.0009253735974744888, + -0.00015244728767588425, + -0.0005706760168874745, + 0.0008031287420463456, + 0.0002666311245734936, + -0.0006414778638364167, + -0.0012763142437378296, + 0.0019280971527940458, + 0.0015709477665830584, + 0.002112479800926662, + 0.0002927665417095457, + 0.0012613941274041132, + 2.8953279176245414e-05, + 0.0002163104880467424, + -9.634920860143502e-06, + 0.0005092474323463634, + -0.001522392030728911, + 0.0007823580744418865, + 0.0007853940649910969, + -0.0003516817490771846, + -0.001534158001762932, + 0.0007757677344664486, + 3.829104249979957e-05, + 0.0008454174176234744, + 0.0014083553179271738, + -0.0002770894802909225, + 0.0008903489619454017, + -0.00024916844919485045, + -0.0014103286216258992, + 0.0005198043240507232, + 0.0005315762730975564, + 0.000880217684120804, + 0.0010884193849485598, + -0.001467230472780465, + -0.0002739573140116297, + -0.00035417492827115803, + 0.00018876181115181392, + -0.0020381939070593124, + -0.00016905016354514898, + -0.0008025930951161389, + 0.0002728767526497198, + 0.0004791407122928107, + -0.0004649430133933861, + 0.0017378780676155377, + -0.0010310376203248525, + -0.0017777865095276494, + 0.00036914608335901695, + 0.00019595872056319444, + -0.0006291051739577331, + 0.0014065075042974107, + 0.0006125603032584132, + -0.0008017662975304168, + -0.0009110324444558224, + -0.0008492925176916579, + 0.0017037152568377568, + -0.0008964391219258213, + 0.00016070108870437684, + 0.0009781719005479107, + 0.0003628500227465482, + -6.638166636980288e-05, + -0.00108944537060748, + 0.0015687966487523742, + -0.00027366942915733465, + 0.00013568435754192953, + -0.000814938493846736, + -0.001536632583560098, + 0.0009505000332500374, + 0.0003496309088835152, + -0.0001151284419426169, + 0.0009080642453158739, + 0.0011365033243411439, + 0.0006379316210148564, + 0.002393642545932737, + 0.00011142776439769224, + 0.0005780531677954321, + -0.0008858907408472109, + -0.0007541006911148596, + 0.0008385244833476419, + -0.0006087183626857443, + 0.001593472510514978, + -0.0013487166781078223, + -0.0008354280720872926, + -0.00041012410719375885, + 0.0003619113287072999, + -0.001369150844074662, + 0.0005024264234958163, + -0.0008359507467170995, + 0.00028265050940293445, + -0.0008705168209695201, + 0.00023144904881944192, + -0.0014771969275321276, + -0.0012848059163578069, + -0.0003834748775178319, + 0.0011288218827225085, + 0.000771870501998759, + -0.000974746817954589, + -0.0002614400422415277, + -0.001750032779343996, + 0.0007265733903706631, + 0.0015595570563578553, + 0.00020935657422601646, + 0.0003463556094909756, + 0.0016663121931271214, + 0.0006751526297328739, + 0.00032118702019758846, + 0.0005928602585107664, + 0.0020137512841064235, + 0.0003892015830727995, + -0.0004137011109170637, + -0.00032006244533247616, + -0.0019336663868592177, + 0.0010071750074663781, + 0.0009355789057167713, + -2.6453637922158415e-05, + -0.0013145249646509412, + 0.00028971519256880786, + -0.00012339448513946482, + 0.00010890002579121937, + -0.0004899491528714729, + -0.0006791811560789372, + -0.0003173426505060313, + 0.0004192425934119667, + 0.0007488812178221671, + 9.839980122605308e-06, + -0.00016853991478161268, + -0.0014226414191464058, + -0.00036786087460593164, + 0.0015296996753292969, + 0.0005740549455921472, + -0.0005709752733770841, + 0.00025722593937081614, + -0.0016442590340357973, + 0.0004783684540635529, + 0.0003173849225475298, + -0.0006230908881111472, + -0.0004486601374990159, + -0.00045078908563134993, + 0.001173426840750734, + 0.00017385931397010564, + -0.0011858945913997133, + 0.00038086403550019216, + 0.0010359728335621642, + -0.0012502403045321939, + -0.0006589310508533715, + 0.0002243837865310579, + 0.0007776086006743119, + -0.001426519429810563, + 0.00047783021719439425, + -0.0013775283152041864, + 0.0016443823265672392, + -0.0019648451690640967, + 0.0007649191894161946, + -0.0018324635586461008, + 0.0002968092515632492, + 0.0007922926955653667, + -0.0013209250104351756, + -0.00025764329289975013, + 0.0010829925098395754, + 0.00032484510118147903, + 0.000876592489434139, + -0.0018881155975042424, + 0.001024464429173137, + 0.0010352609134045168, + 0.000582293571980844, + -0.0004980386705196973, + 0.0006688697166515269, + 0.00071067981633595, + 0.0015297684930416942, + 0.0028500624040536256, + 0.0016324572106880618, + -0.0011947692976863279, + -0.00027579123607741565, + -0.0011700573756989014, + 0.0006396704606969145, + -0.0014225841977521896, + 3.1262845648401456e-05, + -0.0001518918899035438, + 0.0008662344685436856, + 0.0012405824981236288, + -0.001340788905713784, + -0.0006697389528440285, + -0.0012256764069272473, + 0.00022661477437968763, + -0.0007334348839099476, + 0.00037617279885977307, + 0.0011611581896679233, + -3.711190712947173e-05, + -0.0012300577152468085, + -0.001602539812974489, + -0.0005039473321363119, + 0.002036777448203969, + 0.0013606934821015222, + -0.0009535968166324098, + -0.0005753655028315853, + 0.00014785241652355896, + 6.532689365845346e-05, + -0.0018083243495166132, + 0.0002049520122105015, + 0.0005310537777235337, + -0.0007166997119444433, + -0.00022963360696144863, + 0.0011577199123444211, + -0.001198863992518308, + -5.625308778107079e-05, + 0.00017382782408746763, + -1.662601135153637e-05, + -0.0010883056756355578, + -0.0025706092227455635, + -0.00010065298992105619, + 0.0004444180105185181, + -0.0017488897251078906, + 0.00019136687112542909, + -0.0019452598941475917, + 0.0009520137217587165, + -0.001456679505526382, + 7.038873176476714e-05, + 0.0007419165797440983, + 0.0002322955015251731, + -0.0008473023319302635, + -0.0005423889130233687, + -0.001061218462374725, + 6.934503658956778e-05, + 0.0011329308831260973, + -0.0003628591840198675, + -0.00044820820330055105, + 0.001802354307914952, + -0.00024865985010664174, + 0.0016961650513849641, + 0.0016870124455915768, + -0.0005577427042654316, + -0.0005183648759356831, + 0.0010162220015493277, + 0.0011659923126931418, + -0.0016292770025841403, + -0.00031693263683612753, + 0.0009640302493103153, + 0.00019872073468382503, + 0.00034132094858594676, + -8.025435537974985e-05, + 0.000861598032787511, + 6.359121410902768e-05, + 0.0005254149134516767, + -0.0003548331846325563, + 0.0013207677976448176, + -0.00155672974143273, + -0.001521156831991042, + 0.00018412495274440483, + 0.00011476890661674105, + -0.0001165482935132758, + 3.133345225163991e-05, + -0.0006949036322876056, + -0.00019485850643860151, + -0.0006674011032870338, + 0.0014749788525805455, + -0.0005540621675291889, + 0.00019326768954522946, + -0.0007179508581458386, + -0.00018939253488784184, + 0.00024307012094107154, + 0.00015181890071486442, + -0.0011233870240056779, + 0.00033911100604657444, + 0.0005090287350265855, + 0.0007730230637399151, + 0.0014333886959244273, + 0.0004088554461736817, + 0.0007612808696967785, + -0.0006155656793882077, + -0.0003009157948908619, + -0.0007512553543005915, + -0.0008413620581407833, + 0.0007541044015561399, + 0.0002461140728944589, + -0.0006122142182654429, + 0.001154308587538255, + -0.0012127220724463877, + -0.001088088555849265, + -0.0008390001570542734, + -0.0011000553293955505, + -0.00014003650462086884, + 0.00036765117823609654, + 0.0020704518587099465, + 0.0005406643664980289, + -0.0003733928510357078, + -0.0008883757779070555, + -0.0006289700423084354, + 0.0007298872403729086, + 0.0003864248034544588, + -0.0006586464541991777, + 0.0013473437642778916, + -0.00027885315259040924, + -0.002018548621039416, + 0.001384909547548247, + 0.00040578507608652286, + -0.001354530462666709, + 0.0012513472604702327, + 0.001056888710379289, + -0.000701814665041014, + -0.0003155459329550304, + -0.0023964493499505097, + -0.0005415371192886857, + -0.00029473945463360737, + 0.0005487969960457738, + -0.0009825356243672958, + 0.0005074818813275231, + 0.0013391180313152937, + -0.0019551278245614097, + -0.00041694492756562293, + -0.0010176623847202781, + 0.0016980301516164433, + 0.0012782710676808424, + -0.0017919123655144758, + -0.0007817193686920176, + 0.0014440552623852302, + -0.00019436497804306988, + 0.0009291360868545506, + -0.0007080463254550232, + 0.0003612551231689631, + 0.0004254117689453218, + -0.0027551777114055856, + -0.0010908163041354537, + 0.001443851845598292, + -0.001527597423290753, + -0.0001782809117614939, + 0.000703877457596425, + -0.0017319711775847881, + -6.302808930339479e-05, + -0.0010494912232362637, + -0.001574813902758041, + 8.125511974679707e-05, + -0.002048575187814052, + -0.001264670302206216, + 0.0027085830963085, + 0.0003428038403636121, + 0.00110896449360817, + -0.0011564006905771635, + 0.0012119363287262015, + 0.0004163038600218388, + 0.0004399678242225722, + 0.00047275133724984934, + -8.614494204530001e-05, + 0.002451461865302492, + -0.0009126210660967014, + -0.0009508056945302507, + 0.0004463685543200681, + 0.0001824736283397573, + 0.00021767378540348304, + 3.915963205380529e-05, + -0.0002283211471239302, + 0.0008610714152712176, + 0.001018073952330058, + -6.812155952890626e-05, + -0.0006693286141424676, + -8.973357473661749e-05, + -0.001177594016520772, + 9.166396430729097e-05, + 0.00025609519477545067, + -0.00022628369182960391, + -0.0007111219280199763, + -0.0010464460347779103, + 0.0018081058995989521, + 0.0005419205651023522, + -0.0007754269603658753, + -0.00016198029050177004, + -0.0007931971727846166, + -0.0002085619552547213, + 3.6813245034070116e-05, + 0.0001931475361933464, + 0.00038061120422494695, + 0.001447932437549385, + 0.0006600009205976433, + -0.00036387303167379034, + 0.000906492234093854, + -0.0006033077913853598, + -0.0019359720723728835, + 0.00045231980122347804, + 0.0007840964352239444, + -0.0014113514947951614, + -0.00040844497304239004, + 0.0007878781858692721, + -7.198995784322966e-05, + -0.0020151712411230183, + -0.0003147848442016908, + 0.0001601645655844682, + 0.0011543278713577328, + -0.00040080180009349764, + 0.0007094177096093364, + -0.0004230323698486641, + 0.002617299904179692, + 0.0004394294936563145, + 0.00010630370427490435, + -0.0003974531511473615, + 0.0007826634626139081, + -5.861231369911958e-05, + 0.00017280709714499195, + 0.0006976885841032597, + -0.000896315690664997, + 9.359656165988183e-05, + -0.0007388077597697595, + -0.0006912494182246327, + -0.0004962482385722195, + 0.0013685233025896048, + 2.5610853915704135e-05, + -0.0013438661942063127, + 0.0006560186517041166, + -0.0011161073001387245, + 0.00018664732565078248, + -0.0016198718808310584, + 0.0003315070337847953, + -0.001045454655341231, + -0.0011588678518335454, + 0.00035768627914696175, + 0.0009966377276639587, + 0.00030977751444383455, + 4.630637214051347e-05, + 0.0010452540909216467, + 0.0007250719367156122, + -0.0005952455200512156, + -0.0002806418474033419, + 0.0008595709778568632, + -0.0011125282422603643, + 0.001012659561542045, + 0.00046863715163080014, + -0.00018059658450282422, + -0.0003039522441279611, + 0.001796803922454952, + 0.0011989842008038208, + 0.0011191510673456025, + 0.0013215417133164323, + -0.0009632400066918309, + -0.0002127826168528242, + -0.000702179510879195, + -0.0008217711369770713, + -4.302308568191473e-05, + 0.002100191325661988, + -0.0010448438614768887, + 0.002363095840501933, + 0.00035950064131795345, + 0.0009599591301855114, + -0.000289391005460689, + -0.0006613301709076088, + -0.0012420480152291156, + -0.0009304003595808666, + 0.00032159399620205266, + -0.0008417128030874001, + -0.0002926033188077826, + -0.00013538772837540204, + 0.0007089798124670901, + -0.0018879122528927927, + 0.0004927812177975456, + 0.0003727892321154164, + 0.0014873989922146583, + -0.0001197500807007658, + -0.0010280432846177525, + 0.0004706175569911269, + 0.0006965459110793581, + 0.0010238224951821214, + -2.8729990888315717e-05, + -0.000333081080938718, + 0.0016018703902058856, + 0.001660155127613086, + 0.0006471528747097445, + 0.001165618076147417, + 0.0018939332416813967, + 0.001532212556758808, + 0.0001329932569723505, + 0.001152399718184035, + -0.0020751582207858606, + -0.00017419293576059443, + -0.00013854015400111005, + -0.0019573221468361674, + 0.00041600652910179006, + 8.961369937502463e-05, + -0.0004681320776940685, + 0.0006332794087324736, + -0.0015372656381396634, + -0.001094589460855294, + -0.00016637710660003834, + -0.0003778789090790658, + 0.0013515501902470076, + -0.0016922007454362113, + 0.0009684838226576352, + -0.00013378805549828275, + 0.00034117233052194563, + -0.0005592631823954061, + -9.295182833524892e-05, + -0.0008986826450659008, + 0.0007287349564529254, + -0.0010691375257190282, + -0.0019999954353964486, + -0.00022575830664931293, + -0.000255288095097036, + 0.0015603489013670676, + 0.001364213578932329, + 0.00041380938498613196, + 0.001752693564614695, + 0.0011966653405817878, + -0.0006786664411609745, + -0.002047029808962588, + 0.0004648501570511676, + -0.0015124057405897086, + -0.0002739673171021624, + 0.0005999617349878457, + -0.0024397238208253447, + -0.0011125280411501384, + 0.0014761349977725267, + 0.0015142996349756233, + -0.0009265841353997555, + 0.0004045579547325952, + 0.00015113901232740996, + -0.0019705246289893645, + 0.001000373100957598, + 0.0007436972854924302, + -0.0009837146315436584, + -0.0007071004453367717, + -0.0003867622680904984, + 7.657530786988585e-05, + 0.0004433727997343322, + -9.079291148882644e-05, + 0.0004627834401409007, + 0.0009478766262763546, + 0.00258377762861029, + -0.0013753649630472169, + 0.0006682752064332866, + -0.0004221170870720839, + 0.00025175510708288525, + 0.0009543042429410243, + -0.0007041491060518844, + 0.0012307693022459785, + -0.0012422499743505679, + -0.0008530184525521483, + 9.72451047189493e-05, + -0.0001390034217173857, + -0.00048104012181447714, + 0.0016482360594985178, + 0.0005295103705406325, + 0.00013094270173467573, + -0.0009539486275726986, + 0.0014865050100100036, + 0.0005111380364258881, + 0.0006078004278594967, + 0.0005850862225710898, + -0.0001528535220817575, + -0.0011507670084295928, + 0.0013504118233021016, + 0.0015351538776242775, + 0.00020531355592425405, + 0.0007614330156160973, + -0.00024286150800976132, + -0.0016653979670013131, + -0.00015864244293614869, + -0.0005426302330473944, + 5.9064044631579407e-05, + 0.0015523778533128123, + -0.0011527330456006955, + -0.0010001539474503982, + 0.000724420212412111, + -0.0004837630082385407, + -0.00036344065038509694, + 0.0007718872527551972, + 0.001128957000996732, + -0.0001456649295266359, + 0.0016086184494662023, + -0.0008996102314984345, + -0.0013040989961051169, + 0.0022170798314928145, + -0.0018612679495345736, + 0.0024593869370725424, + -0.0020737029720620742, + 7.788590419284744e-05, + -0.0024386117128866744, + 0.0005211559355315133, + -0.0005229606420129444, + 0.0019852748534696534, + -8.586495358463097e-05, + -0.0006424848469075644, + -0.00026106707254420635, + -0.001193582432638701, + 6.782070917251915e-05, + 0.00047554235542452035, + -0.0014073608373334563, + -0.00022933826567233764, + -8.54395478166468e-05, + -0.00023136876496587601, + 0.0003738763035443888, + 0.0008825320461507265, + 0.0006825762823653178, + 0.0005032107999024213, + 4.9326443481572275e-05, + 0.0008266632114562513, + -0.000978940860757041, + -0.00018265926371648536, + 0.00017571583810081377, + -0.000726447250868847, + -0.00025418781097224006, + -0.0002963071433530984, + -0.0006131586277026258, + -0.0016851670069397912, + -0.00045528595470490805, + -0.0007781811297920229, + -0.0006436495939243147, + 0.0004783227284742935, + 0.001252069115614168, + 0.0003942105487946167, + -0.00036941508555099847, + 0.0006025148702540255, + 0.00031832410376531333, + -0.0015067317837104382, + -0.0010466731167431487, + -0.0008226852550625451, + -0.0002268653005854956, + -0.0007906630288133775, + 0.002079433366420755, + -0.0011376719476259747, + -0.00020955218403079733, + -0.0004479076963242605, + -0.001071773655354379, + -0.0009005346866991613, + 0.000986922921217492, + 0.001159123043739503, + 0.001456921674032751, + -0.0007829667998357393, + -0.001594470500420748, + 0.0006870689174539302, + 0.00055320175407545, + 0.0007642142728202214, + 5.376549404896665e-05, + 0.0013441245212873836, + -0.0017044603716034508, + -0.0014498090662959148, + -0.00027181340847180476, + 0.0018909796824393616, + -0.0012734685635313573, + -0.0015823083004680315, + 0.0018161895334893176, + -0.0021803143572518085, + 0.00048242408707148697, + 8.57036053017308e-06, + -0.0002085326936527721, + -0.0013075165001846124, + -0.00046765002388701325, + 0.001022459995412957, + 0.001380661075354185, + -0.0023140158987776135, + 0.001189317750876463, + -0.0007722038023140344, + 0.0011920251817480465, + 0.000987894261006111, + -0.0008124349412666742, + 0.00022134009723489921, + -0.0011054869937097028, + 0.0009681801049489388, + 0.0006539128808143757, + -0.0006013827857176004, + 0.0003075327002348927, + 0.00024373739886298333, + 0.0008302990679250575, + -0.0003753011272084131, + 0.0005109520323251899, + -0.0013817977711579844, + -0.00018974928911658098, + -0.001183605507971301, + 0.0008074341944103269, + -0.0006826030559427618, + -0.0006263508592719514, + -9.258622033382968e-06, + -0.0006209314191103898, + -0.000186575578496411, + 0.0010804686845015837, + -0.0012086215354043645, + -0.00026248335980286056, + -0.0011135516572875364, + 0.0015548419414046746, + 0.0018782516683678073, + 0.0022240718550316143, + 0.0031565068514551172, + -0.001183113381690507, + -0.000544335667309328, + -0.0010403736815884131, + 0.0010757616766869397, + 0.001838940788284405, + 0.00018814445730822905, + 0.00013308931275764834, + -0.0005074968069464272, + -0.0011734766611657002, + 0.0016224131536529802, + 0.00022731179189549333, + -0.0002676578685703246, + 0.0005794738418400066, + 0.0010573810547626849, + -0.0003794623443386546, + -0.0002245221804859095, + -0.0014002501349662014, + 0.00039899802088371437, + -0.0010685112698148687, + 0.000147053301863462, + 0.0011459493859173144, + -0.0007650413608488012, + 0.0016247222392791454, + -0.00032261016657270103, + 0.0002688734904483511, + -0.0001424215857826061, + -0.0003420492602592397, + -0.00011857987234067023, + 0.0001058503748305937, + -0.0003490618861828058, + -0.0002545247389864329, + -0.0014716626360516184, + -0.0008580920342083349, + -0.0003742543185174886, + -0.0013441260009760063, + 0.0004238063706353973, + 0.0012662848398706274, + -0.0001688963239219816, + 0.002332797535718786, + 0.0009451828179396805, + 8.013162396622268e-05, + -0.00045187352814132856, + -0.0013237622151474429, + -0.0005627440677723121, + -0.000676066678618679, + -0.0007157647566082273, + 0.0013455739994148654, + -0.0006496450271913398, + -0.0010220454865914864, + -0.0003345249756591392, + -0.00032598073010156413, + -0.0009584278061355389, + -0.0006660983443757227, + -0.00012267341552801218, + -0.00155183220757393, + 0.0005575677585302541, + -0.0013088248113695767, + 0.00026942117460407035, + 0.00051170614706913, + -0.0004627630556479523, + 0.003080955339508296, + 0.0006305518237531682, + 5.255861301299282e-05, + 0.00029440313586262605, + -0.00011747009619393397, + 0.0009601918492969042, + 0.00035653759822097203, + -0.00020678524325737035, + 0.0009479009940505297, + 5.164913655104396e-05, + 0.00021551036498827718, + -0.0015736786451705414, + -0.00016287913338867375, + 0.0011516618337436778, + 0.0009662773567151769, + -0.0010373527621515527, + 0.00013570271646885874, + 9.320125019033231e-05, + -0.0004445539804408568, + -3.320883889040561e-06, + -0.0009202371848223119, + 0.0008432461430553284, + -0.00012143106633595341, + 0.0007717402346202905, + 0.0018352153202608277, + 0.0005537473905609891, + -0.0009230921694098213, + 0.0011049175387017984, + -0.0005281354295117535, + 0.0009206061549980967, + -0.0005291083229256553, + 0.00025956671268724475, + -0.0007655848237809394, + -0.00023825102697096654, + -0.0009035835907770976, + -0.00013716830779151432, + -0.0005240137202249759, + -0.00021329493235026242, + 0.0018499252487215031, + -0.00030744490485622346, + 0.0010217139307060516, + -0.00017451278650555666, + -0.0002913084336596014, + 0.00027953546089362846, + -0.001030612905533342, + 0.0008085156167829031, + -0.0009138833924032083, + 0.0011228063569840385, + -0.0006728360035748534, + -0.0014329803829520379, + 8.46780302693856e-05, + -0.0012679494449958988, + -0.000509734699394406, + 0.0004979073601621889, + 0.0003237360763997573, + 0.0001677960044384647, + -0.0011801767499055905, + -0.0008802083130489896, + -0.00018350002692807066, + -6.22607831232506e-06, + -0.0007108837586555458, + -0.0007156719619109391, + -0.0017033477235185457, + 0.0005929393259397905, + 0.0011002715883978557, + -2.7070194972690123e-05, + -0.0007926395911593567, + 0.0003831877604446749, + -0.0010282870858502689, + -0.0001195559618167497, + 0.0007591493978948484, + 0.0005697816954507284, + 0.0002754913631332623, + -0.0027777111145190466, + -0.00043187354964714864, + 0.001985210171421646, + 0.0007185145324203643, + 0.001670540368259076, + 0.0004506170281232193, + 0.0002965715158643806, + -0.0008111251351336212, + 0.00033878976707213035, + 0.001262192669711168, + -0.0007601678593962906, + 0.0010214689507571965, + -0.0005423141093926622, + 0.000581504066715571, + 0.0005032185817370482, + -0.0004136236975598597, + 7.124350955889892e-05, + 0.0007593535256108686, + -0.0010583787609269766, + 0.0003022574679926746, + 0.0009206562351031318, + -6.535694473973532e-05, + -0.001558334799133563, + -0.0014233740091728888, + 0.001461812350965739, + -0.00022814603102701086, + 0.00042684972147299775, + -0.0002453308205314363, + -0.00034688779819956367, + 0.0007170802359644606, + -0.0003789683481162647, + 0.0004698804251982203, + 0.0008638138292805104, + 0.0003485969352622669, + -0.0003297888696724047, + -0.00037160337973840367, + -9.946195272870229e-05, + 0.002060195372199494, + -0.0006070512516272921, + -0.0012372146680853023, + 6.770005674804357e-05, + 0.002608351444917248, + -0.0005309371375061322, + 0.0005761838496097993, + 0.00032175324417468794, + 0.002802344244896149, + -0.0011742723188937043, + -0.0019769423095364435, + 0.0004471099443485736, + 0.00010571914290857492, + 0.0019903998878682072, + -0.0010053132471082688, + -0.002864162640812851, + 0.000609184084168474, + -0.0007337258248123324, + 0.00030122079125624146, + -0.0020480567253461828, + 0.0011792868896510643, + 0.0010391560981358233, + 0.001359754154752723, + -0.0001182329516691866, + -0.001079803510397864, + -0.0015544089399187099, + -0.00030198664613400163, + -0.0022755011194045644, + -0.0015535312596843094, + -0.0009718299776438958, + -0.00012045922744787513, + -0.0012472337731358556, + -0.0010896305659641257, + -0.00046649947201468623, + -4.1682925322373085e-05, + -0.0007211805585872805, + -0.0006406932051308384, + 0.0009988203445831015, + -0.00042764835007217793, + -0.0012928035986501363, + 0.0004687638519027501, + -0.0002266459416114011, + 0.00029206834095334405, + 0.00019899428065742184, + -0.0005753004373494108, + -0.0006987357048746107, + -0.0034692730077841667, + 0.00030697272262116985, + 0.0006251690162397335, + -0.0007784141282825941, + 0.0004195744197333686, + -0.00011719126432659384, + -0.0014161616417048058, + -0.0008074354654179327, + -0.0008783066560004434, + -0.0005004684269458661, + 0.001235689278435729, + 4.391704416259733e-05, + 0.002220906032178774, + -0.00035719472115491754, + -0.0012771766520437231, + -0.0006602258621008399, + 0.0006091317896811618, + 0.00043514918077230524, + 0.0019517273136516345, + 0.0014670756861295024, + 0.0008344699333116092, + -0.0002657134417767466, + -0.0023335110583119793, + -0.0013163778153809454, + -0.0010444418456525312, + -0.0010726224907823543, + 0.00026511568887380106, + -0.0005107025657778317, + -0.0004005029525549348, + 0.0001099196211472485, + -0.002331819494313685, + 0.0003256410936996321, + -0.0007139839996178086, + 0.000648147271965264, + -0.00034413200626611277, + -0.0006604362107016407, + 0.00022600727997866573, + -0.0015172936990234375, + -0.00030107508562141115, + -0.0007847989095364538, + -0.0002336018315060915, + 0.0006166421720157154, + 9.468353018521304e-05, + -0.0007233794958996789, + 0.001880113451483197, + -0.002063128225196618, + -0.0011770546720425911, + -0.0016138136579460082, + 0.00010200693065554252, + -0.0012961415811450635, + 0.001336124884859521, + -0.0006220679036800858, + 2.5680702624603734e-05, + 0.0009873181188727103, + 0.0006996490712181962, + 4.983499150118195e-05, + -0.00017986537002832818, + -0.0004950443464237102, + 0.0016931654205746833, + -0.0005308193096023618, + -0.0013632306644051078, + -0.0001660959598918989, + -0.0009597349024640581, + -0.00041168369322948476, + -0.0005621760279119143, + -0.0012932446412184848, + -9.194888321917136e-05, + -0.00037756266819120545, + -0.0009653742377443291, + -4.6697193748493496e-05, + -0.0008707144868391217, + 0.0001889610224317508, + -0.0010897556290158095, + 0.0021260193534135786, + 0.0005089263905169784, + 0.0006592261195676585, + -0.0006424789497865379, + 0.0011361965002610822, + 0.00047490223251035095, + -0.000976653446061763, + -0.001746809907474428, + 0.0001803946580580679, + 0.00126243618696519, + -0.00032316656485398536, + -3.572528832808377e-05, + -0.002104193845245404, + -0.0002977284357668375, + 0.0013001628557653528, + 0.00021136754853135585, + 0.0023913660332199214, + 0.0009119840716275228, + 0.0006517780717412527, + 0.0005628608963902324, + 0.00019982873572453177, + -0.0015315773453236437, + 0.000878672802232242, + 0.0004447791436563503, + -0.00038173046306797485, + 0.00036386893743969205, + 0.0016336194116616186, + 0.0006557197501895471, + 6.830331707647158e-05, + -0.0014084098470089706, + -0.000572288517582246, + -0.0017409650683158685, + 0.0005233228238131777, + 0.0008007667867791893, + -0.0008712098797778491, + 0.0007344606219315424, + 0.001408220458186559, + 0.001023775602349374, + -0.001201142125835015, + -0.0010519543423458952, + -0.0004121614390430572, + -0.0010112745977988718, + -0.00046365178508041424, + -0.0009115832066351721, + 0.000657704053250026, + 0.0010357615321403503, + 0.00037972993921673556, + -0.000410258253137175, + 0.0006470887230564782, + 0.0011761247594136103, + -0.003424219295664522, + -0.0004889337524517556, + 0.001106705995790295, + 0.0007559081655517533, + -0.0006550420688263116, + 0.0003225673036814578, + 0.0015417448843029352, + -0.00034509326165891755, + 0.0016211121622767388, + 3.766436333303854e-05, + -3.124013828198199e-05, + 0.001067348818029985, + 3.578596336685506e-06, + 0.0005555074614820373, + 0.001450746102309227, + -0.0007396788616690379, + -0.0008897922031082732, + 0.002688973897478119, + -0.0004631112267165844, + -0.0006796253672268016, + -0.0013140755244596116, + 0.00021877573254397846, + 0.0009937394561225262, + -0.0012899992407447978, + -0.0002871274481063209, + 0.00017417697846407938, + -9.739571089665385e-05, + -0.0022727728118505748, + -0.0007288248421349671, + -0.0012636900326079147, + 8.722152959657765e-05, + -3.8739786893369444e-05, + 0.0008894104252434351, + 0.00042332384139670315, + -0.0006198488154987104, + -0.00039846115269295633, + -0.0009885738984275368, + 0.00013489184889357804, + -0.0004142710349633778, + 0.0004055039590159102, + -0.0005199750218848322, + 0.0007838667468765293, + -0.0005132842565453143, + -8.316346875410097e-05, + 0.0013420080864496142, + -0.0005031396229072068, + 0.0009061291443036533, + -9.654512418230382e-05, + -0.0008646344216846185, + -0.0006210629692049451, + -0.00014046712984914223, + 0.0008557345344040985, + -0.00015734659326429283, + 0.00027182383333330614, + 0.0011354924445927236, + -7.054488014462387e-05, + 0.00013501791798158254, + -0.00035905919746354053, + -0.0008599113386225905, + 0.0012089439742939316, + 0.00011971931738091358, + 0.0013918558614402544, + 0.0006104055709859901, + 0.000803598024969401, + -0.0005108285184772382, + -0.001679856836063439, + -0.00042377076492844303, + 0.0007453185198676538, + -0.0003410322760572163, + -0.0014337272302809055, + -0.0007388794785772293, + -0.0005319896929011458, + 0.00030414337931318003, + 0.00030592548788574593, + -0.0001657230546983293, + -0.0012380297452205726, + 5.265871304660524e-05, + -0.00043792249868181116, + -0.000645498221652276, + 0.0005827224537247542, + -0.0006445820153918616, + 0.0003098943335212848, + 0.0006536451217670151, + -0.0001891412857169579, + 0.000728875246244769, + 0.0009175279221132473, + 0.0016904558797875536, + 0.0004791129267598225, + 0.001674270624749641, + -0.0017480790774720646, + -0.0016804064257480548, + -0.000455178421218037, + 0.0007207024543280489, + 0.00028343746089278996, + -0.0010662517192957404, + -0.00015062770837972548, + -0.0006782604315337522, + -0.0015799722660680097, + -0.0015827214337972594, + 0.00012618741620403217, + 0.00019940707314612698, + -0.0008216592505899698, + 0.0005882730943077643, + -0.0012147202245430455, + -0.0009879425711637887, + -0.0002445164769030832, + 0.000873745226854559, + -0.0013574281421159205, + 0.0007246434360054919, + -0.00023996976129911682, + -0.0006333575832866417, + -0.00051982556756536, + 0.0002804455305600656, + -0.0002894678001380708, + -0.0006446602298442408, + -0.0009986559528179907, + -0.0002927077968917345, + -0.0007820853307127719, + -0.00024453398020265934, + -0.00034626810637039567, + -0.0004091936107483485, + -0.00042845723851188996, + 0.000541245140109995, + 0.0004754827754367739, + 0.0012660545033800126, + -0.0006710108488288963, + -0.0003595747296855654, + -0.0005007750914624058, + 0.0007441627973388086, + -0.0006179056939899734, + 0.0002693901257705288, + 0.0004997279539502166, + 0.001071238810759061, + 0.0007660940708769345, + -1.8835996325920188e-06, + 3.2345559794118954e-05, + -0.0005842344921063585, + -0.00021698673523280794, + 0.0002473469420383359, + -0.0004184861596124886, + 0.0011351664565308788, + 1.96661563827779e-05, + -0.0018931052815205718, + 0.0012987062007067214, + -0.0005102413931990617, + 2.0144414019072243e-06, + -0.0007769496289455365, + 0.0011743506117766278, + -0.0008126064386111251, + 0.0006536730265362789, + 0.0011354501703560616, + -0.00023344548304108205, + 0.0003777374495660597, + 0.0031588444667913977, + 0.0018337162931296538, + -0.000972227257711783, + -0.001148706780809101, + -0.00031147614745973223, + -0.0010423909383941654, + 0.00011538031252625418, + -0.00036346606981099564, + 0.001146838933590245, + -0.0002829802714776374, + -0.000693865917584732, + 0.0012878295029957432, + -0.0030949160075525554, + -0.001097714923003788, + -0.001504749783595392, + -0.0001798457793551102, + -1.5351720711619523e-05, + 0.0005510197624010406, + 0.00030383103395813027, + -0.0012212440374171937, + -0.0014265307766954686, + -0.0013237895043297638, + 0.0012447342625592818, + 0.0017378763243150446, + -0.0008981545619859277, + 0.0021957450810403457, + -0.0001549686868879726, + -0.0010319125207945653, + -0.0004066950248048364, + 0.0014955234590860618, + 0.00016854535413197554, + -0.00020695489379563415, + 0.0007392231282312651, + 0.000769920381726385, + 0.002471105942562716, + -0.00012822655258183077, + -0.00022215675475327154, + -0.00036601604645808807, + -0.0001732737849465924, + -0.0007620019468430265, + -0.0009944787208302002, + 0.00048233527292673137, + -0.00029735466365488566, + -0.0014352300785371998, + 0.0005141555480328656, + -0.0010517829423798328, + -0.0008957303988823225, + -0.001624697152105041, + 0.00052180537309285, + -0.0009414772564394274, + -0.0006722128278665128, + 0.0007764394962161059, + -2.7565385003651774e-05, + -0.0010730793149797916, + 0.0017006690909062165, + 2.7494641244978433e-05, + -0.00035567988998815183, + 0.000751798736424647, + -0.0010951922878401777, + 0.0007123045660396841, + 2.4712747711410565e-05, + -0.0014637873925980609, + -0.0001571050774361707, + -0.0016119016172263672, + -0.0005733379050241759, + 0.0009615924495816305, + 5.31209374029018e-05, + 0.0008374361365073411, + 0.00028452333820044574, + 0.000693076968537557, + -0.0007446954603803065, + -0.0001172204981713922, + -0.0008311734628633209, + 0.00036768765310675515, + -0.000646857839730778, + -0.000613979811642949, + 0.0011438499329748998, + -0.0016122818261782561, + -0.0009437833631765623, + 0.000920894101357385, + 0.0002421229674028909, + -0.0002724290604621721, + 0.0006233408496247436, + -0.0002983813202844854, + -0.00048615966426590585, + -0.0004168469843142726, + 8.597351009412595e-05, + 0.00020722534332272966, + -0.0014606481076358578, + -0.0003841405305784256, + -0.0005611798367683908, + -0.0007479375934353052, + -0.0001369379488085168, + 7.656810667384587e-05 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgb(248, 156, 116)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 2", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 7.656810667384587e-05, + 0.0001256778022451755, + 0.0006803383513394059, + 0.0005913748726034556, + -0.00046198254944434375, + 0.0012410920223214878, + -0.00040138166517459853, + -0.0002800044166297697, + -0.0004106074250724932, + -0.0016568538165286453, + -0.001575294446057357, + 8.784789930013175e-05, + -0.001021966993939227, + -0.0011198557417276065, + -0.0004899717050034798, + -0.00019820659639728616, + 0.0006230428769635692, + -0.0006312910478055595, + 0.0019445098312711275, + -7.339481524944843e-05, + 0.0009022775825106951, + 0.0005165427235979671, + -0.0003866495086094546, + -0.0005167627928576664, + 0.00013126327335612295, + -0.00011229893031209793, + 0.0010297976104828453, + 0.0005217088817497572, + -0.0004106299826263494, + 0.00024264324076145395, + -0.0002545909615866985, + 0.0014519905837697869, + -0.0008574807674147787, + 4.142391672583503e-05, + -7.693694681016428e-05, + 0.001930290513228398, + -0.0010514723901097417, + 0.0012093500123567852, + 0.0007050291526787955, + -0.00023193918713375458, + -0.001298117239233432, + 0.0011997566277297522, + -0.0016381090925030775, + -0.0004574536787650868, + -9.523630682031805e-05, + -0.0003819370809435414, + 0.0019598043150892306, + -0.0012574415071627137, + -0.0005232501062589213, + -0.0008985188367688316, + 0.0006296303945132072, + 0.0003313602426791109, + -0.000712179299388236, + 0.0022772999520417375, + -2.8714496974101e-05, + -0.0006203607578209316, + 0.0021790190421467604, + 0.0002515466351341073, + 0.0017802315076032333, + -0.0004335458075040455, + -0.001509239868055148, + 0.0007989291109843954, + 0.0010832258803820834, + 0.0008299548457119785, + 0.00048366295097322827, + -0.0004127819245310625, + 0.0002044777874548027, + 0.0006593402633857175, + -6.339931410250175e-05, + -0.0003419831832560999, + 0.0001822028826325183, + -0.0014586056722016216, + 7.311320300336662e-05, + 0.0003933645668108879, + 7.333316629242988e-05, + 0.0006415136661925926, + -0.00043693353565740935, + 0.002169723919694998, + -0.00048411041561265285, + -0.0010434666490311195, + -0.0006417965592222072, + 0.000917363654582779, + 0.0015603730916762984, + 0.00025381226452547294, + -0.001444162731765251, + -0.0001424324083090046, + 0.002164392889446073, + 0.0005331385048497212, + -0.0006791239565219688, + 0.0003482804575702447, + 0.0004898560480680788, + -0.0016670309407238433, + -0.00023420350003576515, + -0.00022511593831405893, + 0.0002911285330302844, + -9.728054697610982e-06, + -0.0012367010289177885, + 0.0010065752338042511, + 0.0012921996607867287, + 0.0004630303489263868, + 0.0008360674053848421, + -2.4464388383966096e-05, + 0.0007521987517516874, + 9.929576869310043e-05, + 0.0002231912338237039, + -0.0004939322200450301, + 0.0006492609832046414, + -0.0010933070829457097, + 0.00044328764585801393, + -0.0019024809358814743, + -0.0006110359806541519, + -0.0009663675358201398, + -0.0014433489277816411, + 0.0007731577446759787, + 0.0007285816021498828, + -0.0003859034841851037, + 0.00038100303379425476, + -0.0005062521720210321, + -0.0011819526446204807, + -0.0008651084442082644, + -0.0011860042973092018, + 0.0008971149853369809, + 0.00091511732075445, + 0.0016146242319610422, + -0.0003414335139811339, + -0.0015902351413743523, + -0.002090656237246091, + 0.0025966765067673117, + -0.0007633201122500201, + 0.0017964433923448205, + -0.0005880579388441268, + 0.00021295755401424128, + 5.950350469623563e-06, + -0.0026121912367479483, + -0.00041275738944371955, + -4.303541233569487e-05, + -0.0003796279763034086, + 0.00033940182475835756, + 0.0002405161717219509, + -0.00047779148096005426, + 0.0007618692567594534, + -0.0024004280644209066, + 8.409445000637571e-05, + 0.0014546531384872516, + 0.001279913401986711, + -0.0025306762429573243, + -0.0001652962749854122, + -0.0012396498783174628, + -0.0008900953505076999, + 0.0014699298167008198, + 0.00041543477452937885, + 0.0017279951616540178, + 0.0009387473750906241, + -0.0007308345090737305, + -0.0008775635686911344, + 0.0013656745533087052, + 0.0006769974920156209, + -0.00022178022371391185, + 0.0009379351352966593, + 0.0005754718774719712, + 0.0018449481110084838, + -0.002495744620302533, + 0.0002832495805457348, + -0.000911212078544719, + -0.00027859826186327983, + 0.0007858469485473108, + 0.002562329056475527, + 0.0005536343773912894, + -4.979122779059024e-05, + -0.0005123210955463594, + 0.0002909388123919796, + 0.0009712318245413129, + 0.0011245948905022696, + 0.0002693657959982866, + 0.0004220197797298344, + 0.00023061917939314546, + 0.0002646287748336065, + -0.0002597588590502653, + 0.0009642260885560972, + 0.0006662879055731158, + -0.00018814743906531717, + 0.0012185343930607379, + 5.1348515880526696e-05, + 0.00035661334004022464, + 0.0002597941131424154, + 0.0014988490846613647, + 0.00018457602231675466, + -0.0024881659101287854, + 0.0010775592174517977, + -2.926453420716347e-05, + -0.0022653591750177817, + -0.0024384204921957604, + 0.00039694209646267645, + -0.0004066038774147856, + -0.0008058468424243844, + -0.0005106168570948902, + 0.0013057416619176223, + 0.0002491886356428618, + 0.00017485923534036406, + -0.00015831161604490932, + 0.0017895801512216123, + -0.00048821750753410187, + -0.001372925227030343, + 6.16798747403428e-05, + 0.0007273075467913353, + 0.0005256027386211588, + 0.0005336295442531012, + 0.0017069790730582458, + 0.0002004222974359483, + -0.001000884434248139, + 0.0022413590638423603, + 0.00013775927765809166, + -0.0008896690754834542, + -0.00047862230609269806, + -0.00014079599922373184, + -7.986194385217831e-05, + 8.597201457294862e-05, + 0.001155624247421614, + 0.0005742490253098929, + 0.0007007874558009597, + 0.00021897481469138736, + -0.0006865264641133674, + 0.0017598979011100113, + 0.0009188943761541144, + 0.0009128316037874819, + 0.0020195297471148456, + 0.0005990614171478886, + -0.001092958281347565, + 0.0002610174053430764, + 0.00030129335276857504, + -0.001156035008833989, + 0.0008161984109847374, + -0.0012663327722824231, + 0.0008124856969300245, + 0.0006236131752623091, + -0.0003637674682128274, + -0.0023162752175557564, + 0.000277008578838728, + -0.0002255277656063046, + -0.0019458005302910816, + -4.8328519458773246e-05, + 0.000497277029697064, + 0.00031891609930624615, + 0.0006503769135425756, + 0.0010910698808943705, + 0.0021664846411657, + 6.043496163095584e-05, + -0.00041625892971193214, + 0.0006461144990224931, + -0.0012222272766978285, + 0.0020555733714601007, + -0.0005141025051228614, + -0.00024613728136080245, + -0.0014003512257620904, + 0.00017287680330570603, + -0.00046912819885271026, + -4.914163039153718e-05, + -0.0019851412623615064, + 0.003015022651360246, + 0.00030495269277895393, + -0.000788672472246912, + -0.0015920723429650777, + -0.001682611304676194, + -0.0022241498207114835, + 0.0003098032283633992, + 0.0006694751711510025, + -0.00010009338192901343, + -0.0009104225746528711, + 0.001721486002883049, + -0.0001246647221755968, + 0.0005245299374259847, + -0.0010346925491329694, + 0.0011678694962924236, + -0.0010790005702792556, + 0.00019482555355903951, + -0.0007371293863957622, + 0.0014136253482511876, + 0.0009508284056432728, + 0.00016922568616981667, + 0.001961784546556514, + -0.00039760782151291603, + -5.79313972587264e-05, + 0.000141142631336062, + 0.00010240686203960431, + 0.00186382668057399, + -0.000782192103676854, + -0.001327746704691137, + -0.0004930588592163732, + -0.0009279487690603255, + 0.00027707273978354183, + -0.0009003757501213505, + 0.0005606940164143682, + 0.0015153573704626288, + -0.0005261242108606947, + 0.0011673561590171081, + 0.00047286247859146767, + 0.0006999532538937268, + -0.00014304499222049082, + 0.00024838122622449795, + -0.0016064420583193904, + -0.0007034912817409548, + 0.0010446359935622723, + 0.0008915366304369096, + -0.00046720874871117237, + 0.0015530928065914705, + -0.0006344795432080147, + 0.0005423277625345727, + 0.0001901017281567245, + -0.0007933464678237682, + -0.000889711410170383, + -0.00017709209690889956, + 0.0011756242912645955, + 0.001328869345415833, + -0.000331314588091063, + -0.000522610145379927, + 8.268232544945186e-06, + 0.0023119921722877814, + 0.0010009935241784998, + 0.0013453570478506947, + 0.0012923744245959036, + -0.0003293477848174495, + 0.00031251024948496145, + -0.0007648390221323798, + -0.0011288096027664784, + -0.0017379789521631127, + 0.00039042558742397976, + 0.0003891332441938658, + -1.6909608973275856e-05, + 0.0002931386950514126, + 0.0025838488985807616, + 0.000138023220235142, + 9.174168507933326e-07, + 0.0010396858522528842, + -0.0003287024990613856, + 0.00034997926552376106, + 0.0004196220201370197, + -0.0018569014743020187, + 0.0004974543011606329, + 0.0005593814797620915, + 0.0009393119495851943, + -0.0004987278654006886, + 0.0022173436423840657, + 0.0002832411735820875, + -0.00036842863783054225, + -0.0009157995036543642, + 6.534964496955823e-05, + -0.00010073484533912367, + -0.0010398958864292396, + 0.0002773683796138288, + -0.0001910611479985523, + 8.74175958719328e-05, + -0.0009362435542332598, + 0.0009606977680647401, + 0.00030517946056540763, + 0.00157129556000269, + 0.0005894564853408592, + 0.0005312287747137559, + -0.0010446449730483263, + -0.00013255936994009766, + -0.0004649476418798705, + -0.0007769287559563996, + -0.0016535770539318566, + -0.0004796528739675703, + 0.0004666426708757414, + 0.0003861706701556473, + 0.0004169082456481669, + 0.0017745173139152334, + 0.0006104007010054861, + 0.0005913540071494191, + 0.0007750192821092731, + -0.0003136712427539865, + -0.0013270803496100655, + 0.0003202700655071269, + 0.0008098401941082809, + -0.0006989981320712459, + 0.00038913593367489893, + 0.000845818406851873, + -9.542848067790744e-05, + 0.0013879125562539264, + -0.0008272544930317306, + 0.0006168671032644434, + -0.0008166866151760641, + 0.0011319201905270685, + 0.0005629132827121433, + 0.000703204080880013, + 0.0010963790923262738, + -0.0004735344615684247, + -0.0011605136622136654, + 0.00046075923474681317, + -0.0012032685837064536, + 0.0009445506842183625, + 0.00033993566119163473, + -0.0007824086252408686, + 0.0012413216723488583, + -0.0009395094395431245, + -0.00018660508364277373, + -0.0002850592640570084, + -0.000728203456889436, + -0.0004020646666655352, + 0.001040649279828233, + 0.0015776083902998232, + 0.0003247876525104651, + 0.0005162552348196342, + -0.0014753464323529974, + 0.0008167924494942172, + 0.0002514859946837411, + 0.000461088602395402, + -0.0007282489454601424, + -0.0008091480405252856, + -0.0021072462548547242, + 0.001254862927192882, + 2.4353936970571817e-05, + 0.0008805206469146094, + 0.00030407130285250766, + -0.00025851382569795883, + -0.0008098050196918451, + -0.00045060702403185214, + -0.0012215153865736913, + -0.000510432340385013, + 0.0011743585982175154, + 0.0013607741535355496, + 0.00019559728444057381, + -0.00039218134282061696, + 0.0009194346348626505, + -0.0009608628134851246, + 0.0011151100304853192, + 0.0010584264142533839, + 7.951160546544137e-05, + -0.00017219615071221775, + 0.0010642757544033108, + 0.001363423026633646, + -0.0005373750536942919, + -2.5122683896552736e-05, + -3.0194235636172747e-05, + -0.0003877772963214069, + 0.0017447528381280212, + 0.0013203198769163647, + -0.0010500536207065409, + -0.001974839892724997, + -0.0006635927728094529, + -0.0013697723326030827, + -0.00036819431521866955, + -0.00022885108265983012, + -0.0012124276528123143, + 0.0018741395993203379, + -0.00018429501379276476, + -0.0012061807101650397, + -0.0007114303885674934, + -0.0001704281639173684, + -0.0002902647480552818, + -0.0021316579653950477, + 0.000840724040309528, + -0.002270283285063283, + 0.00014579352740310333, + -4.2617012540697825e-05, + 0.0009994480867402031, + -0.0013028464197692403, + 0.0003476503997589411, + -5.4253320728446165e-05, + -2.753708998585495e-05, + 0.0016047490373884295, + -0.0002697242636728243, + -0.0007666917396651779, + -0.00047582373249751946, + 0.00023884397870724012, + 0.0009308469270305214, + 0.0008123458074812748, + -0.0009328950563823488, + -0.0011177703499250307, + 0.00037143009613781083, + -0.00020726367059795643, + -0.002303393615214204, + -0.002793721756849554, + -2.5728449402468657e-05, + 0.0011468744660400928, + -0.001571695501781529, + 0.00020145568389266203, + -0.002149464823230124, + 0.0006239363550951761, + -0.0005867817236052229, + -0.0008612183249308038, + -0.0031817658641994906, + -0.0004407992339830858, + 0.00014339844705015691, + 0.00017267518793793272, + -0.0014912839126622866, + 0.0010009928456718481, + 0.00017022772330617692, + -3.6247996846902e-05, + 4.237990065729516e-05, + -0.0013477832162152358, + 0.0010344149590962176, + -0.0004369057018921014, + 0.0006383823089301994, + -4.403657223125046e-05, + -0.0009344663533514067, + -0.0007010930300830766, + -0.0017570004109139887, + 0.000277845759728913, + 0.00043327178141536616, + -0.0010580386754333955, + 0.0012430936163134636, + -0.0003675026486269816, + -0.0001511328050503158, + 0.0018941164767350646, + 0.001266271677166076, + -0.0010592884443769207, + -0.00011452560268288247, + 0.0007146810343947118, + 1.5756075773200387e-05, + -0.0004745457694690946, + -0.0003522081954843037, + 0.0006675934501205533, + -0.0010433595785623103, + -0.0003834979385608979, + -0.002501801860598904, + -0.0018136865475181926, + 0.0009300804530495134, + -0.0005297465294748548, + 0.0018508840844826148, + 0.0008380550931781602, + -5.501046629709679e-06, + -0.00020345070015758757, + 0.0019934048672262416, + 0.0003925708268564418, + -0.0017617039401661195, + -0.0003819298469448349, + 0.0016469739173229148, + -0.0002852405698555429, + 0.00031787198339223175, + -0.002803203054383214, + 0.000595845301372, + 0.00015929045828726724, + -0.0009499384605075085, + 0.00013877363328001506, + -3.6797718475834335e-05, + -0.0005314015111995258, + -0.0018909207661100991, + 0.0011014078077046033, + 0.0005922003260568318, + -0.00045403529533698565, + 0.00014247653245925247, + 0.0008570031246436952, + 0.0006470883643467999, + 0.00021100605180033306, + -0.00025459353458318073, + 0.0011466348457035973, + -0.0003796967233145412, + -0.001089158038852652, + -0.0002341372257283146, + 0.00012156407306893055, + -0.00014126183503740752, + 0.0014084609923506817, + 0.001053930469377752, + -0.0008035612890979618, + 0.00040566623715225714, + -0.0009450281806155571, + -0.001155656202499346, + 0.0016704528152892452, + -0.000749954306779651, + 0.0001246089277976504, + 0.0006259169758657284, + -0.00029483216122053554, + 0.00020291000484258976, + 0.0008188085134657201, + -0.0006860392486118361, + -0.00036482522563124545, + -0.00027150492510474367, + -0.001283420540156794, + 6.239095523909898e-05, + -0.0019288652746448768, + -8.94958188347466e-05, + 0.0008485096956863327, + 0.0012221465407332172, + 0.0007202533278187952, + 0.0002100253294332832, + 0.00032556592270938556, + 0.0015641394680157071, + -0.000295167170202217, + -0.0005746162733151228, + -0.0005267537754201669, + 0.0010486295606297782, + -0.0003563399286307688, + -0.0005150274012289881, + 0.001460478869421561, + -0.00010706928115644342, + -0.001610593853087558, + 0.00012731286283294027, + 0.0009197967181578887, + -7.716137494461068e-05, + 3.2978023688373916e-05, + 0.00052580595995742, + 6.713737647407029e-06, + 1.985824372119015e-05, + -5.324105312324413e-05, + -0.0003004230410000078, + -0.0016708783410769497, + 9.485231676994294e-05, + -0.0008400710015779521, + -0.00013190405896179008, + -0.0011528536352223338, + -0.0016908033781673276, + 0.0005996773116794083, + 0.0006888858993406239, + 0.0004394505031924274, + -0.0019564399847518967, + -0.0014281397512002293, + -0.00022150089909260925, + -0.0012110803924512737, + 5.04310846367052e-05, + 0.0009015187757675187, + -0.000943932152890365, + 0.0003551971721559812, + -0.001419783753010987, + 0.0007653143809036742, + -6.0266383168315045e-05, + -9.836482918994821e-05, + 0.0010795982849539267, + 0.00019854117429511469, + 0.001789751916052169, + -0.0007594400827912356, + 0.000773563937524272, + 0.0008961239562376637, + -0.0004602401357350056, + -0.0010122124628173814, + -0.0005113088200393357, + 0.0006065362689693768, + -0.00022444950823412605, + 0.000752998145266807, + 0.001229427322759726, + -0.00022665862521176704, + 0.0005984100703677375, + -0.0007472576395503315, + -0.000881498808480848, + -0.00038328424587436005, + -0.00035184486797430596, + 0.0017862753837829108, + 0.0004567545293852018, + 0.0002619756186426928, + 0.0006495138868335868, + 0.0002445922905642797, + 0.0003787820390551562, + -0.001008786479454329, + 0.00034096953550406486, + -0.0007840650142016289, + 0.00021494762590105966, + 0.0003641293469847391, + -0.0008041390306453059, + -0.00042868523651311594, + -0.0005303941584919906, + -0.00028581501303200573, + 0.0014960742763090234, + 0.0005367550359833152, + 0.0010417299070879522, + -0.0011044544007497148, + -0.0006065346924526825, + 0.00016587905807490422, + -0.0006210309057767814, + 0.000597319547961875, + 0.00013471708428275928, + 0.0017206276058143294, + -0.0011510461111533565, + -0.0002485366535156265, + 0.00020983621810322895, + -0.0005423729614942041, + -0.002158828291913015, + 0.00044002101156295005, + -0.00035977119675304457, + 0.001904887448916243, + 0.0008296219098086778, + -0.001707066574412792, + -0.0014904466181882457, + -0.0006014675358503941, + -0.00010179176065810389, + -0.00030874887170816205, + -0.0008639215149397838, + -0.002244468309832077, + 0.0019349041284327756, + 0.001191479887085305, + -0.0008683429714424665, + 0.00031075384003832057, + 0.00017812236124244396, + 0.0007791059842557649, + 0.0007245244368670253, + 0.0017605533717406328, + -0.0008096801079058605, + -0.0006992789241611811, + -0.00024535911953812246, + 2.633323516875053e-06, + 0.0003812623870828303, + 0.0005863003736609306, + -0.0009867110269935987, + -0.0007648865384620152, + 0.0010780352020335418, + -0.0002789455866623805, + -0.0004914221293336151, + -0.0007587016180505357, + 0.00035613213827447634, + 0.0014964679278022634, + 0.0008231185025089593, + -0.0005939936458498039, + 0.0006272094390813142, + -0.000398160950235131, + -0.00012254117866166892, + 0.00014987917150937786, + -0.0010290723853311997, + -0.0020408741209716657, + 0.00046823692148837597, + 0.0002721883294276684, + -0.0008070948042842753, + -0.0007176311861785703, + 0.0013166170970188816, + -0.0009952787444930877, + 0.0008223542288445742, + -0.001089325812991741, + 0.0007043280008889586, + 0.0005715792761183837, + 0.0009096120756983156, + 0.0005336907277170804, + 0.00036727992844107313, + -0.0002799026694320279, + -0.0007172428722121905, + -0.0007345327674635754, + 0.00048522152651575307, + 0.00010195684599415958, + -0.0007111014461936245, + 0.0013705466901287853, + -0.0010291196205530948, + 0.0015104060154639998, + -7.28223225644797e-05, + -0.002213914845081422, + 0.00191118314223775, + 7.431065095257667e-05, + 0.000392653677461934, + 0.0016864957798449092, + 0.0018111238290088752, + -0.0011266727596784636, + 0.0016348506242050776, + -0.0008502771507828571, + 6.915849312201183e-05, + -0.000776488604783856, + -0.0008389171491044452, + -0.00018767712166534772, + 3.375526632793528e-05, + -0.001963722906934987, + 0.0002847409331890699, + -0.00026167410661947436, + -0.000902841807637602, + 0.0014977529702436853, + 0.0018889554126777011, + 0.0017935949740477946, + -0.0007068339801629388, + 0.0005219413042715401, + -0.0002551518982338158, + -0.0010188565323870737, + 0.0025073067624296974, + -0.00014560191243280984, + -0.0007221651315943252, + -0.0018812867341764777, + 0.0013835999655679135, + -0.0012266959334664644, + -0.0007955733975550133, + -0.0005780694640991179, + 0.0002303939949118471, + 0.0013171042191918272, + 0.00033510962049424387, + 0.0004233644661454179, + -0.0013893491055372415, + -0.0012053766259647687, + -0.00024083890779543252, + -0.0004755312216196075, + -0.0006087591665366053, + -0.0001331325388253756, + 0.0007797191144816566, + -0.00014752978636978768, + -0.000337732119516129, + 0.001042051058375504, + 0.0008704887441414064, + 0.0012754415639450955, + -0.0020588672815765583, + 0.0003007684233623938, + 0.00013513231597938078, + 0.00038878803486611075, + -0.00094106056671009, + -0.0011130685806486202, + -0.0007320589029872756, + 3.742374637671408e-05, + 0.0016924645427456213, + -0.001509926096401841, + -0.0007586238447456048, + 0.0020926437588967123, + 0.0020046722325913085, + -0.0001956850766341046, + -0.0003572337252814789, + 0.000795240175474334, + -0.000207674690406096, + 0.001715335255982106, + -0.0014133791441005442, + -4.73467651082631e-05, + -0.0001434092810568783, + 0.0008668149937825248, + 0.0003772407610208521, + 8.927969130562437e-05, + -0.0004075688576260636, + -0.0007562716627201976, + 0.00017263859815034766, + -0.0002727618160032937, + 0.0003634311264587644, + -0.0003969001479080198, + 0.0005750488117243685, + 0.0014028399000779281, + 0.0009523583326846977, + 0.00011937457416130827, + -0.000867827387308768, + 0.0013895796641168639, + -0.0005384693199435318, + -0.00022170236639162185, + 0.0012688204920828267, + -0.0005155087553797865, + -0.0016171781154221683, + 0.00019273043840492785, + 6.05400905724785e-05, + 0.001526590622714586, + 0.001321230554870473, + -3.125407937410362e-05, + 0.0006530708414912342, + -0.0004244221699182637, + 6.5093144041870094e-06, + -0.0009249519711157076, + 0.0005951550970643876, + -0.0010087620059996286, + 0.0011416375998841346, + 0.0004215224742540853, + -0.00014150044343647257, + 0.0004091571942092952, + -0.001642656693183743, + 0.0015323464881712386, + 0.0001649383252042196, + -0.0008735941940370457, + 0.00010994249033523816, + -0.00032416820076257475, + 0.0018146398762113644, + 0.0026226609140734543, + 0.001513095449298825, + -0.0010674531460475277, + -0.0013893384511894074, + -5.9886539118880244e-05, + -0.0007817190922656954, + 0.0003976203199105395, + -0.0015897165903643548, + -0.0005319040181826537, + 0.0020255983690700727, + -0.0015619109599287694, + -0.0006674739203056095, + -0.0012459172832557824, + 9.558099039910073e-05, + 0.00019841863918110695, + 0.0013149064409836999, + 0.0012453298882578003, + -0.0011728191449651485, + 0.00030955916486962706, + 0.00014938778318738293, + -0.001770822610332583, + -0.0004674120226858995, + 0.0003193903887486289, + 0.0015826576019005235, + -0.0002145507413838174, + 0.00016956563761580788, + -0.0015821786109463274, + 4.636934764081868e-07, + -6.5529624539878546e-06, + -0.000910545809920793, + 0.00026363200852265207, + -0.0006352783850071999, + 0.0007430346508666614, + -0.0007584574500557427, + -0.000350836628007373, + 0.001826069643479992, + 0.00038883931640081514, + 0.0012151748174372983, + 0.00023075605410517188, + -0.00037719802965800926, + -0.0012142793071346157, + -0.0006622683539599716, + 0.0006803262959615222, + 0.00043146077720037507, + 0.0008270472834066952, + 0.0012893162931136583, + -0.0015554794788822063, + 0.00038089480382909845, + 0.00046535342722879287, + 0.0010582636704176923, + -0.0013047075227688714, + 0.0008924509361585241, + -0.00011672046286511743, + 0.0016466957932452753, + 0.0004694514717989001, + 0.00021618799396451094, + 7.233795385160803e-05, + -0.00033410306948384677, + -0.0004856951891653224, + 0.0002490498322420274, + 0.0002291288341693471, + -0.0011763817398184036, + 0.000995101256672553, + -0.00036662664710421266, + 0.00014247916095569632, + 0.0002764575284355977, + 0.0004712936494350812, + -0.0011953046531295716, + -0.0001932853205817861, + 0.0003231879670319909, + -0.00021712522024175355, + 0.0013671008907419186, + -4.9926934284278275e-05, + -0.0015689521191738372, + 0.002270482679311869, + -0.0002983722233201883, + -0.0005019507446934675, + -0.0005751016111442322, + 0.0015159117492781619, + 0.0007610841109799923, + -0.0006855190423934663, + 0.0012723173671336018, + 0.002230525312155088, + -0.00025335638705477565, + 0.0018564796552419896, + 0.0012340652878858802, + -0.00141562598334178, + -0.0006079785008845521, + 0.00033674605114971854, + -0.00044062808674288234, + 0.00040264828284959994, + 0.0016390898517184443, + 0.00026665026546064305, + -0.0002503483251249077, + 0.0014159714732116134, + 0.00023803736151676024, + -0.0004084707525186938, + -0.0007376759738016058, + -0.0011879263586698676, + 1.9928701650405975e-05, + -0.0006637427961113709, + -0.0010768025137168717, + -0.00021630615103722473, + -0.0008244831301827721, + -0.00022617012035002848, + 0.0010285696260966246, + -0.001151272308031289, + 0.001133194587036383, + 0.0006973062187150196, + 0.00020579794856829116, + -0.0007120345800856968, + 0.00047700639147278223, + 0.0011561715167156144, + -0.0001424799668470613, + 0.0010306005723754146, + -4.837838060842088e-05, + -0.0006971168957809865, + -0.0009108044724800979, + -4.752089877120043e-05, + 0.0003249859213228721, + 3.942521212270479e-05, + -0.00019715315962356525, + -0.001984900595475657, + -6.379011696598591e-05, + -0.0006458139732965269, + 0.0016282179565458937, + -0.00126005336464622, + -7.428535359632794e-05, + -0.0006567022295510357, + 0.0012463292031156838, + -0.00022024605413766978, + 0.0011030068598674716, + 1.380375021493714e-05, + 0.0008355692721740414, + 0.0008804907679214166, + 0.0009940532392220325, + 0.00015370657372750854, + -0.00024228088418645443, + -9.432797788890617e-05, + 0.00031518129739299775, + -0.0007905716527070723, + 0.0008675511971248253, + 0.0005692618701240886, + -0.001270431048964984, + 0.00038064402825383365, + 0.002945002101068528, + -0.0001700091171736281, + -0.000126576666676782, + 0.0006601026952044155, + 0.0006355245484148813, + -0.0002202738853410731, + 0.0004768919494026339, + -5.159020528141428e-05, + -0.0005251087951984706, + -0.0023972890644364006, + -6.208082513425858e-05, + -0.0006621435540546064, + -0.0005903211386581622 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgb(238, 216, 248)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 3", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + -0.0009303180558804877, + -0.00010777824184881921, + 0.002088586455366441, + 0.0005298002565262404, + 0.0005486359207586131, + -0.0015590340703278119, + 0.001207376823757164, + -0.0005500853108815796, + -0.0004017032438708017, + 0.0004594716679103444, + 0.0011209984725097666, + 0.0006566245302667959, + 0.00048265616511703423, + 0.0009289901000581074, + 0.0007197996002403641, + 7.006381042143934e-05, + -0.0006286893836198714, + 0.00021207612493974364, + 0.0009178910294273088, + 0.0010418552019964764, + -0.0016030076241167986, + -0.0003276377161755113, + -0.001361505878970405, + 0.0012586369960036858, + -5.120375628176304e-05, + 5.3610632965588096e-05, + 0.0014339350300816176, + -0.000413366381937992, + -0.0004925197441239827, + 0.00022847249767117664, + 0.00012158304961439929, + -0.0012804331447590855, + -0.0010493893753050648, + -0.0013653106770466906, + -0.0005240928782199498, + 0.0001822550226436166, + -0.0003270040593190999, + 0.0015536459715715174, + -0.00042030224431097423, + -0.00042665275353291924, + -0.0006277189300611389, + -0.001045658779814822, + 0.00010525670680057828, + -2.754596887335696e-05, + -0.0008693916422722983, + -0.00030959581164974526, + -0.0005176499652143422, + 8.279983085659218e-06, + 0.0005172508214161392, + 0.0012031091218396713, + -0.0011032456483729143, + 0.0002571070961482405, + 0.0011240065861725112, + -0.0007600007209792286, + 0.0014422456686905966, + -0.0012393822280376099, + -0.0006305030557590789, + -0.0013388853076231853, + 0.0010043459531090576, + 0.0005111564687418996, + -0.00119026282868673, + -0.0012053237808103327, + -0.0005778342668652701, + 0.0003380393623795088, + -0.0007081172406666013, + -0.0003757705198031928, + -0.001219560803528857, + -0.000194210343808353, + 0.0011551638149023533, + -0.0017982968670574508, + -0.0012411058924412933, + 0.0012402802915267295, + -0.0018189692980517807, + -0.002834433006904448, + 0.0025252512574025594, + -0.0005147546316660863, + 0.0011986168188525626, + 0.0007705497202776568, + -0.001606742109088356, + -0.0008135402604437834, + -0.0006820126163255293, + 0.0013884682263370616, + 0.0008289898472654356, + -0.000735820053175518, + -0.0012383359600533499, + 0.0009507881492658572, + -0.0004184732703508317, + -0.0005385231478858465, + 0.0002722859636715835, + -8.618129526353917e-05, + -0.0027162126857230864, + 0.001525253766317808, + 0.0003965965415435172, + 7.309963048669821e-05, + 0.0007706895042472312, + 0.0008625540947894295, + -0.0003743177596015043, + 0.0009156657872001082, + 0.001329853651399565, + -0.001681477444920888, + 0.00028000572096539275, + 0.0005890224477154986, + -0.0015461410232074835, + -1.2100788940112515e-05, + 0.002212328903234944, + 0.0016067848573834936, + -0.001132437118764622, + 0.000747374472488397, + -0.000800692033127989, + -0.00013874644853377943, + -0.0008562940749357428, + 0.00029741768753507376, + 0.00041454718995205867, + -0.0007404855664196614, + 0.0003852564290078629, + -0.0002462704457778775, + -0.0008308412136477593, + -0.0007171211442121159, + 0.0008966939201617819, + 0.0009323917909237469, + 0.0005078595720212184, + -0.00034827991811443013, + -0.0012158378539805976, + 3.779829571454994e-05, + -0.0004293392051896029, + 0.0015581181637979672, + 0.0004037747314374897, + -0.00045101458970950027, + 0.0016462748677710543, + -0.0006396442714663818, + 0.0005058503125598632, + -0.0005082889211766824, + 0.001683368698978231, + -0.00012607214364646811, + 9.188089093396847e-05, + 0.002680930611742657, + -0.0007614335756274767, + 0.0005814753409697263, + -0.0010599442185599457, + 0.0020518647847024485, + 0.0005251400791293062, + -0.0004217790551772758, + 0.00041475001778251024, + 2.1670068631583758e-05, + 0.0006637849931919919, + -0.0013491304793733327, + 0.00047488575026966213, + -0.001081389567113599, + 0.002581265134846775, + -0.000801645717679328, + -0.0006715888656564353, + 0.000404366039744133, + 0.00046132435415073705, + 0.0005348750452881974, + 7.033599538939998e-05, + -0.0016792162677044917, + -0.00192671792396413, + -0.0009623576082025432, + 2.4859013071592786e-06, + -0.0007342249523544865, + -0.0007629755040791412, + -0.0009698836132735155, + -0.0013088833650793572, + 0.0005271282163901081, + 0.0014443703832852212, + 0.001434234703546221, + -0.000355613396114928, + -0.0017780583173621944, + 0.00047875820340226137, + -0.0018821081024611543, + 0.0003419860828810924, + 0.001585833010780949, + -0.0014959943822632357, + -2.258476421203373e-05, + -0.0006980322812536892, + 0.0006070969473333436, + 0.0011394322718128419, + -0.0008064361144026648, + 0.0011322507375026599, + -0.0005081042855349789, + 0.00042448926326200937, + 0.0005734190696056041, + 0.0007266764118390618, + -4.1970288128080225e-05, + 0.0013644598560458093, + -0.00023958041246408858, + 0.0012705349020651052, + -0.00042619741233528935, + 0.0005579116896774008, + -0.00014401188683053722, + -7.517966699438416e-05, + -0.0014831540573658252, + 0.00212083835758936, + -0.0004631371921509906, + 0.0013235931509471793, + -0.0006439991446930393, + -0.00027410478730495935, + -0.0008667511636217903, + 0.0008330558766406501, + 0.0006866720997202363, + 0.0007946410044779253, + -0.0006070423386848846, + 0.0011359418910959168, + -0.0008078662626106906, + 0.00014972730561417998, + -0.0003341534066397852, + 0.00011442678087343258, + 0.0005567655308577781, + 0.0012614159012590983, + -0.0010328536640539804, + 0.0008393960855060801, + 0.0010403672550445082, + 0.002311284760906602, + -2.1317877156588093e-05, + 0.0006957448114635563, + -0.00033555960204448504, + -0.0006541762660787926, + -0.0010448834140259333, + -0.0001764942228716736, + 0.0003560879328678843, + -0.0007339872747510199, + 0.001251495543889825, + 0.00013266774943251867, + 0.0004787143072178658, + 0.00016049674511350357, + -5.060484556363128e-05, + 0.0014672508316391313, + 0.0005973753529329272, + -0.0026711253226962225, + 0.0006314292210398358, + -0.00011555270719097799, + -0.0005971939197898639, + 0.0007611186760933938, + -0.00033288102271468683, + 0.0020582384415706034, + 0.0005287398166842755, + 0.000702813863639905, + -0.0006677349723898797, + -0.00010004890344280557, + 0.0006801840506364844, + -0.000989468908567757, + -0.0005365376635559763, + 0.00044172397545401843, + -0.0007641533269126465, + -0.0019280220451004166, + 0.0009381592583407436, + 0.00037617411709424213, + 0.0007789347594479946, + 0.0011472132738133327, + -0.0012105555511180278, + -0.00012348589385708416, + 0.0015377702119803997, + 0.0008981202006352735, + 0.0003504102399756909, + -0.0009268333048512982, + 0.0012252443328266047, + -0.0024352170603734757, + -8.389746677320169e-05, + -0.00015993924404936123, + 0.0018205587667313177, + -0.0005212788762898849, + 5.884481117874953e-05, + -0.00039729581309635076, + -0.003069235277901448, + 0.0006592649082636372, + 0.00019571923556045205, + 0.0004446669181611707, + -0.001797795852312073, + -0.0004298016515255425, + 0.0016391738233578928, + 0.0004118844330514097, + 0.0009027784886589327, + 0.0008849190676926189, + -0.0017397630516676474, + -0.0004484369104234251, + -0.0004790835861238543, + 0.0001837631652449188, + 0.0013085243560706813, + 5.193251766466635e-05, + -0.00039879002693516514, + 0.0007990390650648944, + 0.001790928287916429, + -0.0007539436567172821, + -0.0003549783132044163, + -0.0004815721939455998, + -0.00023476210411107172, + 0.0016617992269471757, + -0.00033506031570276616, + 0.00030906586427068635, + -0.0009782291552757802, + -0.00042678448652716034, + -0.00011307279552671651, + 5.9982630731210786e-05, + 0.0008979729691165904, + 0.0002346408297663058, + -0.0007958276742147831, + 0.001695889298899769, + -0.00013896061956306381, + 0.00026886521567377427, + 0.00027170355418763343, + -0.00011706314743764918, + -0.00024013787512426707, + -0.0014128657659196772, + -0.0007353519535565584, + -0.00038787375425060994, + 0.0009849241649961186, + 0.000760905896191089, + 0.0006735802991134132, + -0.00128190719451602, + -0.00042022691466976777, + 0.00123652382104401, + -0.0008243954681723068, + -0.0009432212463069586, + 0.0016542041668594235, + -0.0016772543456659592, + 0.0003341665142336454, + -0.0007279969217685552, + 0.00016325030319240926, + -0.0004904252869229817, + -3.6280845693388065e-05, + -0.0006813007134820431, + -0.0013156696691612388, + -0.0003216564547836021, + -0.0011177598464857607, + 0.0021008306207029627, + 0.0008909197310504763, + 0.001232995495083748, + 0.00012199274118418513, + 0.00022576580193611566, + -0.000349208717252375, + 0.0009935947973655965, + -0.0013735219464305437, + 8.10406124658522e-05, + 0.0002370984925314595, + -0.0016267232094759505, + 0.0003523086559274265, + -2.1037061171434263e-06, + 0.0005796438795616851, + -0.00019854632505087144, + 0.001944874183174392, + 0.00045421824809940484, + 0.0009401285021983766, + -0.0006224196001054178, + 0.0001954490851015107, + 0.0018716544274630063, + -0.0011305146494378251, + 7.455128312441425e-05, + -0.00044371881656180944, + -2.7378766656625046e-05, + -0.0003037276326432362, + -0.0014420851081470545, + -0.000983857503502445, + 0.0005969392835893443, + -0.0004230295863909593, + 0.0002899640922082274, + -0.0012256164610864044, + 4.9559346696907014e-05, + 0.00025769721684813665, + -0.0005613642297889525, + -0.0013316189595609259, + 0.00011510917313886183, + 0.0005871262433242583, + 0.0007234132534584827, + 8.20028032426036e-05, + -0.00013864734698634752, + -0.001945717303656023, + -0.0009897594888779464, + -0.0007847709062024574, + -0.00020830629359322466, + -0.0013533258209926775, + 0.001442388990994019, + -0.002136901955884838, + 0.0002501238189915611, + -0.0005275268475585895, + 0.0006961923132632882, + -0.0012605641838596827, + 0.000194171095121369, + 0.0016259323197247062, + -0.001476075931450764, + 0.0002812551455151873, + 0.0013378687487488256, + -0.0007295501343777081, + -0.0003447398050779333, + 0.00016430317633202754, + 0.00023771051197248868, + -0.0018052072165714627, + 0.000503576657584097, + -0.0006688770789994125, + -0.0013749536749936122, + -0.001035994546151461, + 0.0017327034925443243, + -0.0005211637834242671, + 0.000357841817849526, + -0.0012796752725740016, + 0.0018200486542749067, + 0.0002890143723996947, + 0.0010233110205555495, + -0.000806539546970521, + 0.0003891125114938746, + 0.001904234952358271, + -0.000160367120978465, + 0.0008592145391111167, + 0.0005115970506404234, + -0.0004655799876257063, + -0.0005908575716444449, + -5.988975372881486e-06, + 0.0001083413960534439, + 0.0011849265252636269, + 0.0008636001839513722, + 0.0005224426938894332, + 0.0006821861466950063, + -0.0005703499880555987, + 0.0014161137401237738, + -0.0005493832367918067, + 6.740870039431691e-05, + 0.0008921848043262228, + -0.0003786679381189822, + 0.0004314308097919339, + 0.001410642505789544, + -0.00115106015601303, + -0.0017400268648448728, + -0.00041251324384283724, + -0.00033074558601235384, + -0.00029944956777411947, + 0.0009255754245574897, + -0.0019769081805974774, + 0.0011606803198226645, + 0.0003574964638226974, + -0.0006292488201924427, + 0.0004691649734750036, + 0.00012193142030874805, + -0.0002483637229166602, + 0.0011236206107471485, + 0.0006093000988976268, + 0.0004241193675992493, + -0.000558958999839737, + 0.0008844409065286887, + 0.001022548714090623, + 0.0004575684801073614, + -0.0002162028806142064, + -0.00143331236324647, + 0.0002913845927970428, + 9.407702417516475e-05, + -0.0013806798908275518, + -0.000922044295027247, + -0.001284117506210439, + -0.0012110474884195115, + -4.729913620070103e-05, + 0.0001161629722260717, + 0.0008756375975669809, + -0.001213587732524296, + 0.0008959106596381707, + -0.0018643078308040902, + 0.00211531037867053, + -0.0017645666169974767, + -0.0001877622911088491, + 0.000677445121512379, + 0.0009122109502897481, + 0.00045912834030890795, + 0.00018821715123047548, + 0.0010625807234733602, + 4.2455938626148986e-05, + -0.00044620228990695037, + 0.0005475427986331929, + 0.0012996269390391179, + 0.0016710874151155534, + 0.0009599709966488876, + -8.226206725341317e-05, + 0.00020811669678760483, + -4.491132896083069e-06, + -0.00019371873877980497, + 0.0009138938456414224, + 0.0002375635918839766, + -0.00022756442681356223, + 0.0004233527652890151, + -0.0019500545982865424, + 9.20871913918934e-05, + 5.9915104297489195e-05, + 0.00011368955336014124, + 0.00022028647779218967, + 0.0006453286735953592, + -0.00026117453207689825, + -0.0016705083897134321, + -0.0010404571954528527, + 0.0006749185866072668, + 0.000588039230915149, + 0.000571112247342972, + 0.0018516828452045024, + 0.0003315915876839677, + 0.0012225433136588385, + -0.0015610730776793027, + -0.0008098520484834332, + 0.001755612027582988, + 0.0011480925385896612, + 0.00016690417979251754, + -0.00042601629983010506, + 0.0003465709336449733, + -0.0009543624239769994, + 1.922220480948149e-05, + 0.0005637874953348935, + 0.00038944113992280243, + 0.001314427546658777, + 0.00045184499357690084, + 0.000264098327857061, + -0.0004855782633826739, + -0.001006926670266169, + 0.0005507411022677279, + -0.00014061014477277815, + -0.0015885481605515317, + -0.0009623177447799416, + -0.0009430006944492593, + 0.0008601627968222319, + -0.0009659510221302378, + -0.0009950254613130054, + 0.0017929852682232385, + -0.0015410952645494094, + -5.112483769285881e-05, + 0.00015605261918068419, + -0.00016446131595257546, + -2.8491031165893212e-05, + 0.0002578303277806609, + -0.0006210837212270851, + 2.3473628847417834e-07, + -0.00017613013782797113, + -0.0005719421332458475, + 0.0004356694316838061, + -0.001512800330596525, + 0.0004979591422476178, + 0.001461586749963096, + 0.0008429246940114652, + 0.0003256808125031199, + -0.0004206789638834836, + -0.0016086743260031082, + -0.0002371855274463296, + -0.0008101884905998697, + 0.0013809734420410086, + 0.001342274996546509, + 0.0010842690361499436, + -3.799865686101451e-05, + -3.0733734600971826e-06, + 0.0007326923331233237, + -0.0014207834744494766, + -0.0016475387684717455, + -0.0006592420085849514, + -0.001662793313522587, + 0.000888396584728998, + -9.393301796810294e-05, + -0.0009321487190289748, + -0.0001346769321906459, + -0.0011351353047785683, + 0.001612065989961944, + -0.00012049271182203897, + -0.0003208668819571889, + -0.0005518112953999528, + -0.0002889191461603554, + 0.0009854269768276467, + 0.0008042305364449915, + 0.0005956712393510096, + -0.0006846566502680413, + -9.284576134070327e-05, + -0.0007752373360914583, + -0.0008521041858867439, + -0.0006251199148116966, + 0.0012331489454291977, + -6.9262936274731195e-06, + 0.002077686433545488, + -0.0013031467680759826, + 6.192336982877715e-05, + -0.0008128552055207014, + 0.0003477818874621076, + 0.00021383731811284415, + -0.0005131021909236212, + -0.00030657942626655506, + 0.0009735291903079762, + 0.0006032056301560099, + -0.0016143534429789352, + 0.00027820577783485616, + -0.0013583738052702799, + -0.0016748961873443483, + 0.0003894501124223052, + -0.0007973428594318589, + 0.0010233688621676916, + 0.0012457365922382729, + 0.0002588275125361696, + -0.00020834268417370627, + 0.00015645519629192695, + 0.0002227583408968344, + -0.001855040925719069, + -0.0004254105152154962, + 0.002167686664152822, + 6.29643649913323e-05, + 0.00018976128013824156, + 0.0005493649529416855, + 0.0004902770991126039, + 0.000323425542021392, + -0.0009059191177727292, + -0.001220788826742381, + -0.0011428251242127719, + -0.0005717433469563279, + 0.0009860185356092364, + 0.0013111026100791879, + -0.0010890284549386687, + -0.0015845347757002348, + -0.0019479207781568993, + -7.44212446461903e-05, + 0.0005712642315552406, + 0.0001842303520964912, + -0.000710576302002897, + 0.002563391298191524, + -0.000681580935309953, + 0.0013066324697706628, + 6.647791838070363e-05, + 0.0016379752672207016, + -3.791935184739626e-05, + 0.0016612998155143446, + 0.0022031906293870467, + -0.0019298214958296635, + 0.00034262522885756934, + -0.0014191935714222069, + 0.0003377486096500906, + -0.0009931553506756377, + -0.0005156742839491313, + 8.449444307079133e-05, + 0.0007822560431886654, + -0.0005074029133078654, + -0.0012401362343599945, + 0.00022120959949320623, + 0.00023235798582692935, + 0.0012735341293862315, + -0.0011887682947962922, + 0.0006033909369591345, + -0.0006194849874239789, + 0.0007847765690349227, + 3.1398938847827565e-05, + 0.00026083523295287336, + -0.0011789294714741583, + -0.0004440407508986455, + 0.0004721056350300587, + -0.0006228769717259079, + 0.0020458105700758224, + -0.00010406269939206562, + 0.0024664456534604935, + 0.002184192357692285, + 0.000967774783308341, + -0.0014531430809925957, + -8.914587532459596e-05, + -0.000700943861506826, + 0.0006687169683231345, + -0.002898327111071698, + -0.0005007676155727121, + -0.00020009886917855455, + 0.0005826958587454231, + -7.394898875723966e-05, + -0.0013107460804846628, + -4.776188409714072e-05, + -0.0005831037340111692, + -0.0013627945703657575, + 0.0005462828518223436, + -0.0015023934232286516, + 0.000369672850650793, + -0.0001544508793758788, + -0.0004916695468319349, + 0.0011121438928644463, + 0.001044227423161726, + -0.00039737154165286626, + 0.00018511607172595296, + -0.0002446444195365002, + -0.0008110584086387556, + -0.0004529429661049197, + 0.0008860529025694042, + 0.00019192351785673795, + -5.3487810119705997e-05, + 0.0009592337045553618, + -0.00015265944687976472, + 0.0009820325091422586, + 1.879979627182896e-05, + 0.0010564177210690073, + -0.0007555102679391707, + -0.0006355320891536338, + 0.0013442622375881067, + 0.0009543279445381679, + 0.001211578522290413, + 0.0005469604243064617, + -9.548107041529305e-05, + -0.000651371607134226, + 0.0014085796504796394, + 0.0012159927402428511, + -0.0013590471467936618, + -0.00038248075825545954, + -0.00020561531320163664, + -0.00025444362148901545, + -0.0011796946712992096, + 0.0016754492354202515, + 0.0005808064684614668, + -0.0009723960471276554, + -0.0005967292689959973, + 0.00015005255765686957, + -0.0004407436504638262, + 0.0006139475268282666, + 0.0005113575013888743, + 0.0011398167290974808, + -0.0004754311397895311, + -0.0003056362406266341, + 0.00031711381773365596, + 0.0006564298586238526, + 0.0010351065202142838, + -0.0006852406244954358, + -0.0007911802644676832, + 0.001513780428861238, + 0.0007491865742775635, + 0.0005724061619111724, + 0.0004994040827876237, + 0.000507198869715837, + -0.00034063112144513383, + 0.000937216155535552, + 0.0003967969716874739, + 4.6047839764064454e-05, + 0.0009637730451095652, + 0.0007828519485420294, + 0.0005159964860139635, + 0.001419078669517883, + 0.001465136831404672, + 0.002716542460906816, + 0.0006256629626247992, + -0.00035146729220043773, + -0.000149057099995725, + -0.00035044874556389665, + -0.0002729052811887125, + -0.0003011605702015898, + 0.0005076078210006155, + 0.00027707628467503394, + 0.0003273862447007097, + 0.0008252815504944652, + 0.000437817562607573, + 0.0003095039649053467, + -0.00011129061936432125, + 0.00045268716680407046, + 0.00011098238614762637, + 0.001437323898802565, + 0.0009501985593845442, + -0.0009325910133725674, + 0.0010855170504324376, + -0.0006874028579548875, + 6.768031930624743e-06, + 0.0011808156642576062, + -0.0005858623818468077, + -0.0017304502538527996, + -0.00015671805624702884, + -0.0011621206869633235, + -2.9722455725288186e-05, + -0.0010573619364649244, + 0.0014224020413878403, + -0.00028111437399719357, + -0.0003780024089991388, + -0.002084259258611678, + 0.0004499460162377185, + -0.0011344754100559458, + 0.0027528052687315575, + -0.0009616211013117027, + 8.989321117606036e-05, + -0.001934434061731797, + -0.000929706373399455, + 0.00047951763673658365, + 0.00023702557402088302, + -0.0003940496906167559, + 0.0009259717215942139, + -0.0006550732782087338, + 0.0020252835864960433, + 0.0005679211371655726, + 0.0009415546815432594, + -0.000817918151048495, + 0.0008849861103025461, + 0.0012911377621096622, + 0.0009920511858599597, + -0.0005295152835416106, + 0.0003924003091358153, + -0.00016604222216691343, + -5.625046977503586e-05, + -0.0005868476262407639, + -0.0012608402140471284, + -0.001886659402837631, + -0.00030138275243957093, + -0.000578407795930812, + -0.00010497994591168149, + 0.00042907639948802434, + -0.0009651138483986885, + 0.0004047232525180603, + 0.0004455790421586485, + -0.00015552574344563963, + 0.00038003758665985216, + -0.000909062014085509, + 0.0008264256811092232, + 0.0014605425676038181, + 0.000957907650759181, + 0.0012560589772496807, + -0.0006761034674696751, + -0.0003063665844561069, + 0.001025837497952354, + 0.0010559044263517246, + -0.002016134648161382, + -0.00025370804500766004, + -0.0011903440304644331, + 0.00011763471539772888, + -0.00025586811439329944, + -0.0013140684586468887, + 0.001063949587033997, + 0.0016079417339154478, + -0.00027005962066605356, + -4.9896021782858596e-05, + 0.0018036085177014086, + -1.3242863039352379e-05, + -0.000370464883608831, + 0.0005253795010233804, + -0.0010550720368660877, + 0.0009843615508388882, + 0.0005052587059935999, + -7.200427847089098e-05, + 0.00021656067551668835, + -0.0005298952611377647, + -0.0013510329858606577, + 0.00047166107037202067, + -2.2753490566765213e-05, + -0.0017243380887106562, + 0.0001282609503282018, + -0.0009644207247127198, + -0.000632905115181153, + -0.001222822177394733, + 0.00014230809666259276, + -0.0006171638393577757, + -0.00038568134333437, + 0.0006816674619532226, + 0.0019250076234702818, + -0.0008162558636945553, + -0.00014091711454136246, + 0.0007450824936787381, + 0.00013701540525450843, + -0.0002675713461458645, + 0.0019803736969557857, + 0.00023770333562425996, + 0.0006539491887226954, + -0.000845662108372465, + -0.001798211892267436, + 0.0006551382762578841, + 0.0005860413078789611, + 0.0013212609432497408, + 0.0009662582389440316, + 0.0016667192033221184, + 0.0002957497936395337, + -0.0008842531763227118, + -0.0003867554707469004, + 0.00016455514092908019, + -0.0017343526338858511, + 0.00043167015353904725, + -0.00037510866801545776, + 0.001349440718643087, + -0.0007356792527564557, + 0.0002796539713056939, + -0.00010456958582257037, + 0.000759838603805453, + -0.00066765429789457, + 0.0005464200389038203, + 0.0005472907665275242, + 0.000917075996920265, + 0.0002104375297198613, + -0.0005377981890269889, + -0.0009425217515400545, + -0.0006350964413461594, + 0.0015435676501087726, + -0.0014248763349409368, + -0.0016178697574167594, + 0.0015746318317727966, + 0.0016452027520921326, + 0.0018980507027746923, + -0.00045514766780039944, + -0.00019829983428500255, + 0.000391290896198773, + -0.00013529991030940765, + -0.00017395504074974475, + 0.0013129539003466357, + 0.0021163539602083318, + 0.001727104704058241, + 0.000130199394754533, + -0.00026279976102937225, + 0.0016505051722020716, + 0.0024775334563633252, + 0.000398993231902493, + 0.00150816041326375, + 0.001899483832103008, + -0.0011138685265515333, + 0.0010339031106784138, + -0.0011843654098404152, + -0.0023989768329784307, + -0.00019579606398153142, + -0.00044906199043559004, + 0.0006898708870543896, + -0.0007317734730881999, + -0.00025441209579075096, + -0.001079743111894744, + 0.0006035693567079875, + -0.0005020316232734204, + -0.000779146076403621, + 0.0005309279186043163, + 0.0007042963632496575, + 0.0009648155685061311, + -0.0007477694294407668, + -0.00044712525873204223, + 0.0005965694560973031, + -0.0016242981463805645, + 0.0020862627891011813, + 0.001650212485463628, + 0.0016929245275113637, + -0.0008103811964044548, + 0.0003241115551760189, + -0.0003634194995033641, + -0.0011456834423111805, + -0.00019721521505089657, + 1.0967191289876136e-05, + -0.0003055158185716143, + -0.0005561654401731239, + 0.002524556628928737, + -0.0007621392164932619, + -0.0007154933741599451, + 0.0019613820511164464, + 0.0007095141599296029, + -0.0011243194086522862, + 0.0015398842717804606, + -8.754013655881813e-05, + -0.0006967254773693353, + 0.0002430751386562385, + 0.0006139167136733713, + 0.0010916823559315519, + -0.0010534043934812476, + -0.0015976961525587508, + -0.0011529635965258982, + -5.3212934335729044e-05, + -0.0005053639720839684, + 0.0007747805386346093, + 0.0009775445870755786, + 0.000739325192601155, + -0.0004659263064994246, + 0.00046818202153427717, + 0.00011278178957539778, + 9.044886752954747e-05, + 0.0006141892367734302, + -0.0004918597541847818, + -0.0005154175906562858, + -0.0009140236781779287, + 0.0006552776463507936, + 0.00039227157202345055, + 0.0006214742822698792, + 0.0007898365620953958, + -0.0002876640509141676, + 0.00015868171674336513, + 4.531587315562329e-05, + -0.0010470341848768442, + 0.000433712237236632, + 0.0012425190920630738, + -0.0010495395055907348, + 0.0011171822841987975, + 0.0005772581756745686, + 0.0007517035996516376, + -0.0004898365548998053, + 0.0001526366791706129, + 0.0008200725241807773, + -0.0010752387593821189, + -0.0018421875997318101, + -0.0006217430011401663, + 0.0007809722990515992, + 0.0006971165056352466, + 0.001926189538865788, + 0.0007194954872232737, + -0.00038847414472279997, + -0.0001247792364874643, + 0.0010357379985849577, + -0.0015062205098017288, + 5.154112472895782e-05, + 0.0002792134021063016, + -0.0004207857235323415, + -0.0004332498243307635, + 0.000558103041767236, + 0.0001706723468752833, + -0.00035743967246674633, + 0.0009108597694364666, + 0.0007168907274739526, + 0.000694039208092905, + -0.00034496316196781996, + -0.0011746568240667934, + 0.00010227257192664283, + 0.0005614917532907717, + -0.0014467073420850105, + -5.376165560446483e-05, + -0.0007498916368970831, + -0.0002177398391874587, + 0.001749657777600733, + 0.00014736369086120927, + 0.00024734204186359793, + -0.0009265937930020519, + 7.3489970699699e-05, + 0.00013611061361601466, + -0.001959995849180806, + -0.0027380704979124127, + 0.0010616021021082583, + -0.0002563762484970965, + 0.00010486315469053979, + -0.0007952412795700076, + -6.690455543943946e-05, + -0.0006607923406144933, + 2.577474202006856e-05, + -0.0009152448558570436, + 0.0012315132173716368, + -0.0016777913228968348, + -0.0006494825208743727, + 0.0003641046129585107, + 0.0014768433211970577, + -0.0011236323118523, + -0.0007270841484337412, + -0.000391515167838633, + -0.00047894182114546785, + 0.0009445917597344016, + 0.001230196646020817, + 0.0006763431875355542, + -0.00017022201413473625, + 0.0013102892850428867, + -0.0008782934710158001, + -0.001161803736768837, + 0.0013685319935039222, + 0.0004955186727972875, + -0.0013318226412301654, + -0.00013128237544820793, + -9.864455739871006e-05, + 0.0007586172690062041, + -0.00047942758193542193, + 0.0016109468297748738, + -0.00037840688966552796, + -0.0009650743085479088, + 0.0004105674151323433, + -0.0006740933893210565, + 0.001252607980886482, + 1.533349462681608e-05, + 0.0015100770136416799, + 0.0013235363416770228, + 0.0005270688742155176, + 0.0016851758832662276, + 0.0015043125800109469, + -0.00020837410573395522, + -0.000771085049757031, + -3.924844886700266e-05, + -0.0019024551880538075, + -0.001069645213625228, + 0.0005117881366391125, + -0.000651962977351271, + -0.0016293180648297254, + -0.000449129254085856, + -0.0003294565475094636, + 0.0019218159642947, + -0.0017059027762724528, + 0.0018983987889937008, + 0.0008452161871526266, + 0.0018281414144059637, + -0.0006927346877134435, + 0.00045511213899072396, + 0.0023821126279983448, + 0.0017102526206593154, + 0.0016761481081322147, + 0.0018077506358179017, + 7.229202435976942e-05, + 3.089775979146892e-05, + 8.861206836619377e-05, + 0.00025147902792452183, + -0.002042886035811616, + -0.0003657568361135069, + 0.0019475809478604752, + -0.0002346465345692403, + -0.0010562342729524673, + 0.0013378439701146234, + -0.00011074030231299862, + -0.00013228117835065016, + 0.0004798890185091307, + -0.0002171696656070822, + 8.470284458469685e-05, + 0.0008407877304882137, + -0.0005807993422908525, + 0.00191272454441652, + 0.0025484784089813257, + 3.0198457454401878e-05, + 0.0019161633886140407, + 0.0005353880646184057, + 0.0002675351161951421, + 0.0017348923931165912, + 0.0002826295370601012, + -0.0006706191628614198, + -0.0002299071360605032, + -0.0004174977503835835, + -0.0019899615879023906, + 0.0007175781644509222, + 0.0006634886871893825, + -0.0009377413218355679, + -0.0008426342064217005, + -0.0015930991777660707, + 0.000997048573844018, + 0.00041889517175919743, + 0.0023189964181158785, + 0.001469186081343138, + 0.001898313059492254, + -0.0006373932975935738, + -0.0006628396364094008, + 0.0007872471670567636, + 0.0005161228394654283, + -0.0005802395121652618, + 0.002006830655831874, + -0.0009604110618613619, + -5.513067713430552e-06, + -0.0004733265298251218, + -0.0005589745558545933, + 0.0008023064408789781, + 3.993171599777218e-05, + 0.0004772479479955048, + 0.0006314969163536722, + -0.0007622424979829893, + 0.001365708430296562, + 2.3387620921907445e-05, + -0.00017600999529904986, + -0.0008215368682622261, + 0.0024740228510553445, + 0.0014087275999687043, + 0.0003567297884790639, + -0.0018268463985575956, + -0.0012093633195378666, + -0.0005065994113875369, + 0.0012753343203818239, + 0.00040446478152861265, + -0.0013797312935964392, + 0.00032363427623288314, + -0.00039257664297489176, + 0.0012650970976389685, + -0.000923717192094478, + 0.0009556804831880311, + 0.0011760880956437037, + 0.0011013768356549821, + -0.0009539574959954805, + -0.0011361698306031438, + -0.001330675160174049, + 0.0011490297050380164, + 0.0007508766761579114, + 0.0006192641348561043, + -8.892098672517606e-05, + -0.00108908845127698, + 9.240695477762782e-05, + 0.0004332074330305459, + 0.0010141527475428138, + -0.0005460676685000871, + 0.0007682457155028315, + -0.0003390036706974749, + 0.00021556935447541455, + -3.060649381372825e-05, + 0.0016988264164007369, + -0.0004113841701025839, + -0.0009482353432319253, + 0.00037811204440629776, + 0.0008388913313451541, + 0.001169014426356206, + 0.0007055976294812209, + 0.0006588510418357543, + 0.0012595387695809755, + 0.000400207950198758, + -0.00033890682643714564, + -0.0001222751886738986, + -0.0006325612529045625, + -0.00043459544415624344, + -0.0026306494643976923, + 0.00033471648554814676, + 0.00026047335706009855, + -0.0003843877865149501, + 0.0005324044717094304, + 0.00035005526121856446, + 9.878874070057976e-05, + -0.001969678152592698, + 0.0012556979259426033, + 0.0006094730497087756, + 0.0008495614373679341, + -0.0002372839168725829, + 0.0006731613445334488, + 0.00044161601451060933, + -0.001015256328667752, + -4.9912639959951405e-05, + -0.0001675489229602686, + 0.0008763275094262327, + 0.0013554752362407434, + -0.00040488511946781055, + -0.0011023068036507934, + -0.0012723228477627138, + 0.001184889942986137, + -0.0022070180318332143, + 0.001742768587308996, + 8.318452337768087e-05, + 0.00021438453718295656, + 8.416680601290794e-05, + 0.002064456378700187, + -0.001206504915118086, + -0.0004938231429530905, + 0.001816992541711524, + 0.001493433243146369, + 0.0007548946432659059, + 0.00012190587908655743, + -0.0001529620140125664, + -0.0002277455747249631, + 0.0019637358940780727, + 0.00118461558389221, + -0.0012730519608369574, + -0.0004205222328779663, + 0.0006757621110418169, + -0.000397812878990069, + -0.0018617809704919261, + 0.001230904591092523, + 9.120264383357667e-05, + -0.0008132031080813665, + -0.0008768791476131614, + 0.00046185682147335144, + -0.0007020372462348266, + 0.0005031785891036465, + -0.0005750520950148612, + -0.00048357615970212847, + -0.001442714405992387, + -0.00034472891598246824, + 0.00012683970866482323, + -0.00015999204701650405, + 0.000250033111682561, + 0.0017767509309878778, + 0.0010834621805325814, + 0.0011463154921412958, + -0.00017949046611190773, + 0.001239272285167846, + -0.0008980055866871449, + 0.0010731712867402077, + 0.0005791722441821183, + -0.00160478431920395, + -0.0011831350303927817, + -0.001930250172676784, + 4.6355013928170275e-05, + 0.0016506979659834556, + -0.0006021647741795181, + 0.0001950894883487943, + -0.00019849666382507614, + 0.0007444518798552362, + -0.00013834590766928774, + -0.000981059809504268, + -0.0006244475967116386, + 4.9894988239295606e-05, + -0.00013569285909377672, + -0.0008557182063186092, + 0.0008095369565191392, + -0.0013406582293886927, + 0.001997544581789637, + 0.0015023671009247767, + 0.00017987153470589877, + -0.0006065965542365139, + -0.00064873045846562, + 6.32014938724188e-05, + -0.00042019435867433414, + 0.0010565741873882705, + 0.0005292279919301688, + 0.0009221998891740037, + -0.0017298401806531043, + 5.1639441775207336e-05, + 1.829658805076752e-05, + -0.0015885136632400989, + 0.0008550758241499487, + 0.0005007594794835651, + 0.002756469885109962, + -0.000810124015040431, + 6.416430270202283e-05, + -0.001559830158816268, + 0.0005680949699386236, + 0.0010006571158879239, + 0.0014309630279937707, + 0.0002953710190814225, + -0.0013338353321664706, + -0.0011709041541787615, + -6.451375776795136e-05, + -1.992347285616994e-05, + 0.0004965891310653275, + -0.0009099934280729914, + 0.000764980409602487, + -0.001074138238558374, + 0.00014430673878274814, + -8.131472673301386e-05, + -0.0001456026419653014, + 4.1487716027278286e-05, + -0.0008164690786023857, + 0.00015321335523945065, + 0.0008352910044425946, + -0.0011394435488351943, + -0.0013005529065059384, + 0.0006325367749826957, + 0.0011054378264147469, + 0.0005000268042923545, + 0.00018779744458085614, + -0.0008675667951673914, + -0.0011767081893848997, + -0.0007921883262470515, + -0.0003640366039997947, + -0.0004152424532324004, + -1.992360403483695e-05, + -0.0006952712530768802, + 0.0007995303336122397, + 4.985105618613579e-05, + 7.350646755830514e-05, + 0.00211525707619069, + -0.0003374023810236057, + -0.0005915778897160394, + -0.0006991899311200821, + 0.002384999561688205, + 0.0008073704692499521, + -0.0003153718920969853, + 0.0008631423053992839, + -0.0006536856676270326, + 0.0001308411524544501, + -0.0005990241410834699, + 0.0021144390989202783, + 0.0009762520934799912, + -0.0008716637069129974, + 0.00030659104693444477, + 0.0010606091820671674, + -0.00026629324254801734, + -0.0007921609275321596, + -0.0011112578011463917, + -0.0007499979442201426, + 0.0004610330261336065, + -6.70412807957202e-05, + -0.00020665600208794662, + 0.0020685173604460282, + 0.0003222528797995473, + -0.0013097278044493536, + 0.0016880702554601902, + 0.0014381835200060116, + 3.822020987664266e-05, + -0.0005497842484271919, + 0.0008198429467682942, + 4.064222997131295e-05, + -0.0014573430616352018, + -0.00020675798559879096, + -0.0007166517390622442, + -0.001447266261230775, + -0.00013088013601808058, + -0.00026029683255667977, + -0.0009099155308393169, + 0.0010760225674248355, + -0.0007214743860542588, + 0.0006100106007747412, + -0.00039117050460846155, + -4.249999426412418e-05, + -0.00027488431234823726, + -0.000961686051321507, + -6.145482194724853e-05, + -0.0025715905532133487, + 0.0007578399094670952, + 4.232591140432224e-05, + -0.0010790639729080116, + 0.00032126379433442795, + 0.0002782944646885457, + -0.001187081752471195, + 0.0009434094025455687, + 0.0004491943569962825, + -2.0096642339629883e-05, + 0.0016069634589923765, + -0.0017806818784833153, + 7.563542054786712e-05, + -0.0005944899699850278, + 0.0003552987064186936, + 0.00010007420171131737, + 0.0003668047595627205, + -0.001016696940467383, + -0.0006039067348816122, + -0.0012648432293641519, + 0.0002878269885324598, + -0.0002550713814871874, + 0.0017094906479371524, + 0.001478389561343857, + 0.0011378593495203664, + 0.0015713268561144155, + 0.0020105571215585346, + -0.0012176640251628488, + -0.0008537939836814534, + 9.773333983537124e-05, + -0.0021187195967467595, + 8.076637510502418e-05, + 0.0005005338717450431, + 0.001113254624821905, + 0.00046964713202598033, + -0.00028311235194612586, + 0.0004814001301197522, + 0.0012607612793599505, + -0.000535726262298499, + 0.0006102140578899146, + 5.06871555659608e-05, + -0.0011922008634399034, + -9.267582278214082e-05, + 0.0003473450178442978, + -0.0010569534477273092, + 0.001550963737174649, + -0.0003492027935451607, + 0.00017297559794453152, + -0.0003204649824830752, + -0.0009743598301450292, + -0.00083766082015091, + -0.0004464260794383419, + 0.0005705384904062833, + -0.00010515423490803239, + 0.00030534462408318333, + 0.00015395207518025108, + -0.0010657854382375217, + 0.00013876192838468943, + -0.00030626778402942194, + 0.0026518901498859067, + -0.0004370625026077131, + -0.0018146641169740649, + -0.00011346601811004057, + -0.00013979314592486814, + 0.0014919279999856005, + 0.0007709361280709893, + 0.00122378839626141, + 0.0023156387399364113, + 0.00046195501540024223, + 0.001150981690521675, + 0.001797160417661795, + -0.0015489911364238126, + 0.000678285270074863, + -0.0002885924677747516, + -0.0007857987977117786, + 0.0010007384616462429, + 0.0007756853861417109, + -0.0004280892848076514, + 0.001111585629339907, + 2.6949054280969512e-05, + -0.00019605548836299072, + 0.0003041871522418706, + 0.0009412624328200805, + 0.0014036891711410803, + 0.0007553957555529882, + 0.0010001484815469407, + 0.0002697203510076846, + -4.2762716125927e-05, + -0.0015125455742582945, + -0.0009534060870377649, + -0.000976194786672257, + -0.0006870510220565474, + -0.0008925080363086, + 0.0016612523800189078, + -0.001322452459588795, + -0.0005485679667470788, + -0.0009437515173584295, + -0.00038368523360741, + 0.0017068209764914842, + -0.0010864679395628137, + 0.0005717737106405327, + -0.0007399763953869933, + 0.0013416689165641701, + 0.0006015031330369105, + 0.000544975686447945, + -0.0022036398464190866, + 0.00038810991641795485, + -0.0013342519420334144, + 0.00033921987217814544, + 0.00032689631520558355, + -0.0004925546478395807, + 0.0009802809994681392, + -0.0004514897012284418, + -0.001334388955237637, + 0.0010309679488576206, + 0.0007157629336326758, + -0.001798233212964768, + -0.0016032016022219863, + -0.00029696172566167424, + 0.000570910881902866, + -0.0005865315983503076, + 0.0009698536860330889, + 0.002193970378940868, + -0.0003234646934001343, + 0.0013902962459850312, + -0.001864460244956055, + 0.0005876394588249941, + -3.8772219433925506e-05, + -0.0011023567892121443, + -0.00022339235143950195, + 0.0003976347781947588, + 0.001796720449285344, + 0.0003780280891824962, + 3.906949260984868e-06, + 0.000133485840747398, + -0.00015771751759292233, + 0.0010280231293337532, + 0.000584705355778401, + -0.00019188415904585265, + 0.00042607245845565825, + 0.0007358923815094354, + -0.0002076262477330948, + -0.000670515724109988, + 0.001157918615871617, + -0.0004607264503548885, + -0.00010461711905705616, + 0.00046783687509210865, + 0.0009471643933631665, + 0.0005495328016866186, + -0.002484423491294987, + 6.105687017135073e-05, + -0.00022651032502450855, + 0.0008887424580984958, + -0.0006664937426369872, + -0.000640473260960489, + -0.0015013456174385847, + 0.0014510873321040083, + -0.001190511030271455, + 0.001994342999162736, + 0.0004453866598114827, + -0.00020843443397400608, + 0.0003674121350397877, + -0.0009744239303578073, + -5.3706833647987126e-06, + 0.0014049759284517432, + -0.0007552745590733897, + 0.00035448730954559555, + 0.0002909190601975046, + -0.0014614176472380878, + -6.70028607011355e-05, + -0.0008002561556322402, + 0.0008301750997052984, + 0.00017528589253389706, + -0.0004003451130818483, + -0.0015859964352441087, + 0.0018287717464551677, + 0.0023397235298993797, + -0.00024290407273608024, + 4.1770818190105275e-05, + -0.0008080442794796474, + 9.947274342375154e-05, + 0.00048385633741903895, + -0.00029723894286428184, + -0.0001972951993316202, + -0.0016880584110921888, + 0.0009151525978770975, + -0.001021205428766413, + -0.00020588373509252675, + -0.0007827273540250648, + -0.0018006942576633373, + 0.0007018268026796126, + -0.001052902199097359, + 0.00052984168724511, + 0.00106575112657017, + -0.002281925712009188, + 1.2762516459512977e-05, + 0.0018713901630945664, + -0.00035963432122916697, + -0.0009759462766142736, + 0.001294555861841064, + 0.0008482684709366014, + -0.0009123762156264765, + 0.0013120395792246583, + 0.0005321547154240227, + -0.0010929113415594376, + 0.0019157652649077173, + 0.00019791187361884068, + -0.002326194692083678, + -0.00114468973615779, + -0.0025078175652571283, + 0.0009473246864057908, + 2.4216220760984674e-06, + -0.0011796505291225762, + -0.0017708187903297508, + -0.0010419344044262664, + -0.0006009441454786792, + 0.0007142941714543716, + 0.0008528877168511911, + -0.0006371885619108479, + -1.0638515695732826e-05, + 0.0001289157477399098, + 0.00020449170929643507, + 0.001603976899296821, + 0.0008995301430895128, + 0.0005484579890655215, + 0.0001221762830639653, + -0.0013514028489319447, + -0.0007360833808620107, + -0.00024440374548781826, + -0.0008715867286279012, + -0.00018886288947739938, + 0.0012503611580790652, + 0.0001682329466786142, + 0.001649732414584317, + 0.00024748212070604486, + -0.0010729772780704156, + 0.0004167484313764093, + 0.00011823621394526965, + -0.0008544912651046137, + 0.0018490096086763938, + -0.0006461733817404494, + 0.00043435012686105764, + 0.0006880564329347361, + 0.00037375916250563556, + -0.0011945854942792486, + -0.0011995908772441492, + -0.00029613599316109964, + 0.0005800191319515308, + 0.00016718301616394106, + 0.0026294517341341615, + 0.0015443425432065004, + 0.000244654056121409, + 0.0016502129026897917, + 0.0007682041619056254, + -0.0005180864091665706, + -0.0017217850837873477, + -0.0005825429018127021, + 0.0015657238623302285, + -0.001062330322112029, + 0.0002613927053560573, + -0.0005646781616035993, + -0.0009041310101541067, + -0.0021305254995616814, + 0.00020981300491252846, + -0.00020872878987205796, + -0.00017327929729006266, + -0.0004645627680139781, + 5.2860784287443744e-05, + 6.474553051276422e-05, + -0.0015124783743978175, + -0.00024181181032403707, + -0.0006467091425430259, + -0.00031082906941381567, + 0.00015185522958817925, + -0.0002604792640641457, + -0.00012367702571700824, + 0.0016039812940240805, + -0.0017213505501223428, + 0.0015297429903428255, + 0.00010039601872642981, + 0.0001256162175516639, + 0.0015324927577362105, + 0.0005456831164746019, + -0.001438351844269319, + -0.001611638511364475, + 0.0014726785362738158, + 0.0006347712633022035, + 0.0005800352229904098, + 0.0011451868285747495, + 0.0010266390852198112, + -0.0003667335035955541, + 0.0009338490317186204, + -0.0016658435197123799, + -0.0005767264127018752, + 0.001158165624102872, + 0.0007364870042694904, + -0.000795136454381588, + -0.0014128338790569774, + 0.0005830665239967298, + -0.0002653577319609347, + 0.0010287206768751468, + -0.0012476728918531424, + -0.002132004030946236, + -0.0004145088530900429, + 0.0011134070599395018, + -6.875922576252214e-05, + 0.0008444404778924495, + 0.00021564565144513252, + -0.0002580713757344136, + -0.002294290749876739, + -0.00018682251704947253, + -0.0005313587419874803, + -0.00102422193769517, + -0.00019012496524300863, + -0.0012235612649773005, + -0.000715539382866668, + -0.0012616577346273436, + 0.000808909767628437, + 6.035029331326409e-05, + -0.0003388636237408945, + -0.0010419149690275241, + 0.0019313733927669085, + 0.00038176854872780115, + 0.0005567086015386071, + -0.0010924437494492934, + -0.000420356657639819, + 0.0003691891602111207, + 0.0006792531573617034, + -0.001379217330189695, + 0.0005485714616325317, + 0.0014079625775858117, + -0.00045950549235473394, + -0.0015862990963964809, + -0.0013107929964476619, + -0.0013862735372958917, + -0.0002506381859214882, + 0.00038078737360679654, + 0.0013381140337826271, + 2.4399631039768272e-05, + 0.0001492702935098749, + 0.0024288961735486323, + 0.0018677662119966543, + -0.0001789138932231335, + 0.00025727574056601016, + -0.0021953118895842406, + 0.00038931445500987925, + 0.0006612230854057046, + 0.00010852260042373469, + 0.00024280996028534123, + 0.0008757086829970045, + 0.0008764376487981017, + -0.0009740978045741453, + 0.0007219815800849244, + -0.0003565364278229531, + 6.5777507688912405e-06, + 0.0005415593445459046, + 0.0006730769282630538, + -1.4800366656133674e-05, + -0.00021746743654477296, + -0.0015638887715287181, + -0.0007303962220105879, + -0.00045943831459683865, + 0.0003511054966896977, + 0.0005876947967273032, + -0.0013297600241490698, + 0.002739503586257773, + 0.0009026488159153461, + 0.0008781275789229018, + -0.0017859958794654862, + -0.00033273349494432846, + -0.0012674601192469393, + -0.0004366288164434769, + 0.0008174802292239769, + -0.0018246249040768615, + -0.002072325106807602, + 0.0007153371940350976, + -0.00019347565623278675, + -0.0008982184431837382, + 0.000900172085032128, + 0.0005183592285662534, + 0.000844267804530251, + 0.0014768446662064795, + -0.0008199892653648114, + 0.0013990714029320805, + 0.0018516331502291736, + 0.000691848568435418, + 9.36441498095554e-05, + -9.414571092320103e-05, + 0.00016261560781658332, + -0.001481588834923151, + -0.001132825055051839, + 0.001149691181368136, + -0.000347068262111772, + -0.0008113525401705261, + 0.001725464990660541, + 0.0005482236786694601, + 0.002176818028802421, + -1.0348319753822381e-05, + -0.0019484352835653456, + 8.40037035222399e-06, + 0.0004392607473551884, + 0.0023643970950279316, + 0.0005047481908008856, + 0.0012863289159799269, + 3.206985165688043e-05, + -0.00036099180085173103, + 0.001371698246399203, + -0.0003058675851685187, + -0.0005636883840480614, + -7.264840267754672e-05, + 0.0002589576987828703, + 0.0003294097977184119, + 0.0014879105687874222, + 0.00044246526939843223, + -8.106780635062195e-05, + 0.0005936328806399314, + 0.00014341032448242965, + 0.0006435231877281845, + -0.0020374198979289213, + -0.0007472609030710821, + 0.0013005286700999775, + -0.001319983568593352, + 0.0004890579668972191, + -0.0003256855785789255, + -0.0005731602718053551, + 0.0004079325875176317, + 0.00031362722776067406, + -0.00041699085151184774, + 0.0009618420508906433, + 0.0002829776880295858, + -8.22578447729986e-05, + 0.0011276461632798436, + -0.0011872068534876797, + 0.0009693929691085639, + 0.0003574681559604581, + 0.00052483354443982, + 0.0008295556060055934, + 0.0007989969380302463, + -3.057644724228015e-05, + 0.0014954956130620446, + 0.00023882558298174918, + -0.00036524560560813004, + 0.0005772403146000475, + 7.18349967930384e-05, + -0.0002191542569050168, + -0.0006774232941072857, + 0.002358352440821882, + -5.203260532876893e-05, + 0.000978177656275709, + 0.00038004195832186757, + -0.001894902836053963, + -0.0003881159656061031, + -0.00010448366786267404, + 0.0011212617873285738, + 0.0005742005573031785, + 0.0019852510200126655, + -0.0004831996489606564, + 0.00041678822680290433, + -0.0006493152862719049, + -0.0005040557336816799, + 0.0008703535476496683, + -0.00037433251607775795, + 0.0001788591887870375, + 0.0015583689263962632, + 0.0022691900278381813, + 0.0024460690107249213, + 0.0012153688026639699, + -0.0007565533358773605, + -0.00034724152818839567, + 0.0021866652196375264, + 0.0003178627181977002, + -0.001040014930841016, + 0.00022794085411448, + 0.001035300294460343, + 0.0009678319656295303, + -3.821103153336623e-05, + 0.0017561103304614477, + -0.0003770997453407404, + 0.0006693314888024147, + -0.00028488778733563375, + -0.00016197890302748096, + 0.0004362133392306338, + -0.0006253301613473778, + 0.0012283433593406777, + 0.0005364213097002379, + -0.0016083930740757486, + 0.0003508654383284587, + 0.0009817986466880472, + -0.0009353661695944533, + -0.0005056772118382318, + -0.0011454414883550503, + -0.00018132192991428907, + 0.00042501896747568777, + -0.0015482339835533462, + -0.0016820470190745725, + 0.0015755677866380593, + -0.00015212549850185858, + -0.0021415068199211467, + 7.337303373816661e-06, + -0.0002544795092830162, + -0.0019376797170542394, + 0.0009977172354901558, + 0.0022775278845615188, + -0.0008650391218262108, + -6.939981265004886e-05, + 0.0015286636625700414, + 5.5376951196799053e-05, + 0.0002759675516396233, + -0.00041279527987986156, + -0.00039405884733543725, + 0.0003074446875210117, + -0.001274154185189459, + 0.0007934001217655187, + 0.000388678033450612, + -0.0007590533083510694, + 0.0016374194359920781, + 0.0005207427022680483, + -0.0014094838487586049, + 0.00043521285875973035, + -0.001640973181606086, + -0.00040367084817069217, + -0.0009127741788614218, + -0.00037879787569832147, + -0.00046872906354013347, + 1.6395307981247914e-05, + -0.0003039854226801893, + -0.0016044932684108066, + 0.0006604291202095097, + 0.0008611592581350415, + 0.0014445143850206697, + -0.0005320821870426885, + 0.0010240601868046744, + 0.0010375513759635637, + 0.00023633201404891818, + -0.0008448620440687195, + -0.0008247279353218095, + -0.0011686249877825695, + 0.0009110899334799681, + -0.0020158089805177477, + -0.00034002212930956007, + 0.0009820784337922104, + 0.0009561366292991226, + -0.0015394622428511141, + -0.0004901224687856475, + -0.00016083727190332081, + 0.001656002234259759, + -0.000603771229916215, + -0.00023437281847174226, + 4.595702612780961e-05, + -2.3408530959864837e-05, + 0.00042840740155110287, + -0.00035670898412634765, + 0.000517792239566865, + -0.0003134412761339907, + 7.847605076981748e-05, + -0.0006312950550881476, + 0.0011094879522909006, + 0.00023458743345106703, + -0.0004078328109789182, + -0.00033436577242555065, + -0.00014529477761373636, + -0.0009366016835406493, + -0.0007652970161557303, + 0.0009311456489675788, + 0.0008059978714946721, + -0.0017416193443506227, + 0.00038815752859720396, + -0.0006275473591685718, + 0.001340379447825876, + 8.158577844872169e-05, + 0.0014059303585521132, + 0.0020999772813337786, + 0.0003201854343205137, + -0.00023507289596440004, + 0.0007343836920452807, + -0.0006617607019832121, + 0.0019551921742684904, + 0.0017444496741423473, + 0.0007786465008634028, + 0.0007433830735005559, + -0.0001567636533883078, + 0.0005596499524565984, + 0.0007692393322582541, + 0.0015419855641159276, + -1.6640502999188237e-05, + -0.0006780374383531493, + 0.000225897762562542, + -0.0005605902409894806, + -0.0014765609673162191, + 0.0003927002682821529, + 0.0002824427819414027, + -0.0005762832727944636, + 0.0002994414302936243, + 0.000758271649876609, + -0.00023158210627132288, + 0.00034907542288914434, + -0.0008723918828609225, + -0.0019983737651810963, + -0.001171495442710779, + 0.0014711527320150702, + 0.0017397842971038936, + -0.0001473580900082856, + 0.0003009903072086094, + 0.000445754490410219, + 0.001413429978515736, + -0.000666108558128693, + -0.0008753775965786972, + 0.001620924791704102, + -0.000690110809500927, + -0.00048308025075216067, + 0.0007469677372406923, + -0.0007764501025383416, + 0.0011956066972339376, + -4.857603191335111e-05, + 0.0009614519827580292, + -0.0009311590678032966, + 0.00028353924367816193, + 0.00014068675750580786, + 0.00080152029402705, + 0.00030638827121942945, + -0.0017033546804785728, + 0.00118902661119735, + -0.0008388612214059104, + 0.000653550650989027, + -0.000473047233296401, + 0.001599228130621545, + -0.00032954528118571647, + 0.0010967859367472187, + -0.000614454677647616, + -0.0011595859349145168, + -0.0014359484966068386, + -9.353597414935486e-05, + 0.0011176161139497503, + -0.0009386848199470825, + 0.0011942524987620922, + -0.0010843201716985035, + -0.0010042304631491083, + -0.0005333890660609552, + 0.0011160191099241746, + -0.0014099989678995491, + -0.0005052725180936423, + 0.00039940763566592767, + 0.0004812514284449609, + 8.79127356556091e-05, + 0.0005412594998735391, + 0.0006480066557071756, + 4.372303477437694e-05, + 0.0006108667296467113, + -3.1757960668116076e-05, + 0.000232851129627199, + 0.001793598597615017, + -0.00020245920938489229, + 0.00037182797391540885, + -0.00019165513725215077, + 0.0010472230439782203, + 0.000651623058754857, + 0.0012488260436242181, + -0.0014133828445971309, + -0.0015832651756844671, + 0.000427192796472418, + -0.000682495844145374, + -0.0009492752205371592, + -0.0008510432566546802, + -0.00029264472565930586, + 0.0005428072282675176, + 0.0011420187351353726, + -0.0001371340829746204, + -6.574558541507293e-05, + -0.00021521810964083313, + -0.0005584816534837364, + -1.2481808179721978e-05, + 4.328910560301671e-05, + 0.001551473818107546, + -1.7370728272810145e-05, + -0.00011147449210261918, + -0.0020966128167920336, + -0.0016478578104100296, + -0.00023836399280338769, + -0.0003934709179434244, + -0.0001954177683805187, + 0.00024006629855098763, + 0.0019437947950467574, + 0.001147509538672602, + -0.0010445820417658662, + -0.0004661507557717149, + -0.0012121742830700044, + 0.0007408636729030401, + 0.0013813684123607508, + 0.002428579594729068, + 0.0004566702009323177, + -0.0011579827327128846, + -0.001516658429315572, + -0.0006296233199129155, + -0.0013389301998944488, + -0.0001938101457804074, + 0.000372569402242443, + -0.0013580042054341147, + -0.0009365202580051406, + 0.0014330546496883658, + 0.0008111422336097238, + -0.0012462601199678327, + 0.002343495096694586, + 0.0015308739867676187, + 0.0003027784658183141, + -0.0015685522647677188, + -0.0007477888097463911, + -0.001415656009527933, + 0.0006339637061140557, + 0.0016428737773384412, + -9.340981497572807e-05, + -0.0004071413471978307, + 0.001096445330979068, + 0.0006228768951962169, + -0.0007328570612140096, + -0.0012421590589496287, + 0.0002381978580383397, + 0.00021353883458689738, + 0.0006127000602263917, + -0.0015957430878166898, + -0.0008214800593939335, + -0.00032298667879754176, + 0.000561719937809558, + -0.0010958448924416786, + -0.0014305136353833091, + 0.00018791998201281104, + -0.0010313158361834518, + -0.0011424037467276055, + 0.0016102639719487387, + -0.0009084545399730611, + -0.0006254188171753298, + 0.0010311327835071582, + 0.000576440408162209, + -0.001298499580328168, + 0.00023826537048987832, + 0.0007244267217093179, + -0.0007905610422155467, + -0.0007636209070405859, + 0.000439069470931857, + -0.0004585768566687382, + 0.0015524542136690017, + -0.000869387509673273, + 0.0009414511165836013, + -0.0013076041848999777, + -0.0013714966967809056, + -0.00039472660810975664, + -0.00040518645701625295, + 0.0023961546429754716, + -0.00040300257861724327, + -2.744042078628406e-05, + -0.00042133721435594346, + 0.00034458608126861084, + -0.0004091525666152333, + 0.002114258938370696, + -0.00011945181239147124, + 6.622478926699147e-05, + 0.0006234533119170626, + -4.3528473954350295e-06, + -0.0012408460912243706, + -0.0013178770668568539, + 0.0007101501645054546, + -5.165950302788903e-05, + -0.0016902412408299602, + 0.0015126571825348188, + 0.0004765787935339555, + -0.00047958016845813466, + 0.0008770907205263376, + 0.0008147965698337045, + 0.00019181855749259745, + -0.0016380714558549797, + -0.0003642822927037895, + -0.0007709197795052632, + 0.0003665899239151067, + 0.0002744808032335426, + -0.002359521901536031, + -0.000605417869186165, + 0.0002983097016812514, + -0.0005202483812447768, + 0.0015308855383594827, + -0.00025662426758649073, + -0.0007565947696268481, + -0.0005202254559876444, + 0.00018344596920064144, + -0.0006721454835467306, + 0.001796356102570537, + 0.0005502038425917774, + 0.001010939076285576, + 0.0003063168287288142, + -0.0004577960017273686, + 0.0002656676652578654, + -7.717256443780281e-05, + 0.0002294197257954555, + -0.00020026021711493281, + -0.0004259732863904414, + 0.0006751085792519777, + 9.620506385120056e-05, + 0.0001564052633383125, + 0.0010224247487476525, + -2.8332988332357916e-05, + 0.0017443318620064606, + 0.0008604280922685426, + 0.0003680317998976993, + -0.0010927240001162622, + -0.0006473370211537532, + 0.0002308602863378496, + 0.0023527563584418852, + -0.00032386454680245855, + -0.000373038206558341, + 0.0007404101448320426, + 0.0015816206383512054, + 9.856684112150799e-05, + 0.0008142677221394199, + -0.0005789552686308254, + -0.0007375801404057064, + -0.0020245422015812945, + -0.00021462856963585576, + 0.0015323412818560212, + -0.0008850126990845662, + 0.0007805625780603216, + 0.001263440710242871, + -0.00018418685669543302, + 0.00033253105774079625, + -0.0021207894367698942, + 0.0001130844007594011, + 0.0007260981013613283, + -0.00010660751370841694, + -0.0009316707105626264, + -0.0018027342356164095, + -0.0009632477245917985, + -0.0005680591055207315, + 0.0013534265741852094, + -0.0024381121160576094, + 0.0003107748233309092, + -0.0011207199541883425, + -0.0016807989484303688, + -0.0003479534596051985, + 0.0013434228571147443, + 0.0017718810502717903, + -0.0005273632953546887, + -0.0021002239470003688, + 0.0006976018798512707, + 0.00013817511286227352, + 0.0005087504631851684, + 4.986998955428451e-06, + -1.6769798607543676e-05, + -0.0009083002392748948, + -0.0001124508676429066, + 0.0004634226859396735, + -1.4654450493455364e-05, + 0.0006582972648173997, + 0.00023221882602789167, + 0.0016677070032594856, + -0.0005063444925018134, + 0.0006313961303253775, + 5.553100170373969e-05, + -0.0010494155163897829, + -0.0004976029545324535, + -0.0006946410625583721, + -0.001027870877329655, + 0.0008288342815816306, + 0.00012750891552571947, + 0.0005075815392947252, + 0.0029929230392071768, + -0.0010230827237102259, + -0.0016938763509311736, + -0.0003281411837005315, + 0.00021541999726197347, + 0.0005379771134872255, + 0.0007081351870514423, + 0.001659922005327155, + -0.00038780736911781427, + -0.0017596973354063988, + -0.0006844945840320447, + -0.001653046357771775, + 0.0005323126887893464, + -0.0012149967376942155, + 0.0001514282608900639, + -0.00034088522294773533, + -9.413523238307255e-05, + 0.0002552742372601219, + 0.0011184875781187443, + -0.0006338201853201165, + 0.0003136007036807697, + -0.0006831159293839686, + 0.001197593887295791, + -2.652016841440732e-06, + -0.00035091420708202175, + 0.0006530141083300361, + -0.00024831250640292983, + 0.000837677314191885, + 0.0004700443797853085, + 0.0004563831672439356, + -0.0007839912058107035, + 0.0007292869852568323, + 0.0011614529441879328, + -0.0021861405824484584, + 0.0003593046735249144, + -0.00043435827580903265, + -0.0011043268084642472, + -0.0002162932808999981, + 0.0008380108791029238, + -0.0003106804391430424, + 0.001997794841562154, + -0.0006191916912678759, + 0.001488761618392644, + 0.00048229331191524365, + 0.0009721390361737995, + -0.0003172808379678208, + 0.001061574013792161, + 0.001280560046998281, + -0.0012309576209725921, + 0.0010425573231177111, + 0.0007907561617477984, + -0.001539651755983461, + 0.0005410159692292031, + -0.00034973845889793733, + 0.00015778227587578383, + 0.0009829688824269716, + 6.720642501832303e-05, + 0.000956278278232665, + 0.0013525758285242253, + 0.00026970715503013006, + 0.00014643045994850118, + -0.0003322551319262843, + -0.00025224300735307125, + 0.0004650344645347146, + -0.0021020122553705362, + -0.0013245779462011118, + -0.0008207770772314271, + 0.00032808480929532333, + -0.0006099907176648594, + -0.00016380633175211586, + -0.0014209029072682145, + -0.0009326612599706788, + 0.00036820725088570344, + -0.000852493713703593, + -0.0005328229600329452, + -2.590346704774944e-05, + 0.0009784547506208933, + 0.00022851084354357442, + 0.0010916737952472927, + -0.0006529665159508432, + -0.001149807412999239, + -2.9824471036258966e-05, + -0.001493967247069508, + -0.0008028615862079691, + -0.0023305867799424903, + -0.00027557709897148617, + -0.0007792528371648686, + -0.0005301829178054355, + 0.0001896319401948172, + 0.0025539006417058395, + 0.0009689238401690807, + 0.0014652597683576444, + -0.0002962575124882185, + 0.0017802207594098834, + -0.0005326519505361227, + 0.0018593470629078778, + 0.0007798298687501769, + -0.0011633402248087286, + -3.200720841161789e-05, + -0.0010482906744838892, + -0.000529454189980235, + -0.0004028380905605427, + 0.0014698825382554062, + 0.0010967830400649434, + 0.001383405393396269, + 0.00071517220356453, + 0.0002164159809077532, + 0.0006860057172816111, + 0.0001937452665944256, + 0.00044624472933121005, + -0.0005497903247697625, + 0.0017820743101841015, + 0.0007658552929929637, + 0.0006946789215544942, + -0.0029027985251905398, + 0.0013616156344715778, + 0.0012594256295004175, + 0.00039668794023958384, + 0.0009923127565245624, + 0.001241760326257789, + 0.0013152261508327012, + -0.00028536480674967247, + 0.0005436779071710193, + 1.4110662120598704e-05, + -0.0002958531007693781, + 4.974725480681015e-05, + 0.00048145508494389804, + -0.0016431726343815501, + 0.0019006266734170837, + -0.0006151280752536081, + 0.0002543731357222648, + -0.0005035798991182117, + 0.0007071128760432465, + -0.0011469767569602346, + 0.0003144054011359, + -0.0005519822641978431, + 0.0026472443169182104, + -0.0007687217125820219, + 0.0027809844888395992, + -0.0004608914678239658, + -0.0016026508736615395, + -0.0004680928374706901, + -0.0007445600507236087, + 0.00179601481167981, + -0.0007914858962458186, + 0.0005177487252302804, + 0.00014701134561610895, + 6.724804362754077e-05, + 0.0009515561170750569, + 0.0013087233838390664, + 0.0003598821238845363, + -0.0007567899728660463, + 0.0008730898585230936, + -0.0010510292778822031, + 0.001056433954255969, + 0.0012089031897267331, + 0.0021748169533757715, + 0.0013940095050185908, + -3.755353399572295e-06, + -0.000743635378239424, + 0.0015028021425313282, + -0.00045208412849344744, + 0.0019567295997602965, + -0.0007176163918530209, + -0.0007333555258956035, + -0.0016804592047878245, + 0.0010698908081462467, + -0.0011157748952318417, + -0.0008413385224357131, + 0.0003148666437249423, + 3.36039164150578e-05, + 0.0008542998869617265, + 0.0006772410517818126, + -8.286482819870939e-06, + -9.088682747321022e-06, + -0.00010877091133263642, + 0.0011212614418390197, + 0.000581673437909349, + -0.0012872410840232941, + -0.0002103042425140582, + -0.001370963678759745, + 0.0017497008852365196, + -8.172156599624899e-05, + -0.0007442142324287842, + 0.0015659493716710569, + 0.000583544698531086, + -0.000744600011270551, + 0.0008930709505492132, + -0.0014969740101942444, + 0.0007660519509459178, + 5.191640936217562e-05, + -0.0007841162010920703, + -7.820149309890382e-05, + -0.0005682525818117385, + 0.00042670036718965977, + 0.0006162666076533955, + 0.0013915041378351482, + -0.0001299445680523206, + -0.0006452950454907389, + 0.00023451803863765587, + 0.0009972249996829745, + -0.0011070075366425734, + 0.00039904424848144856, + -0.0007234984961317467, + -0.0010251002879321444, + 0.0014836090167731112, + 5.0749145606860836e-05, + 0.00012599315223669626, + 0.0016438410489306244, + -0.0021645573613187584, + -0.0017919148232956492, + -0.0006871455222614308, + 0.0017730849732513322, + -0.00016491547114193806, + -0.0006441148421911325, + -0.00020346001695570543, + 0.00020091924693323163, + 0.0009509211485534581, + -0.0001377762789400114, + -0.0014343362508586644, + 0.001708565364034798, + 0.0005219718294641379, + -0.000219510958703988, + 8.811664645978053e-05, + -0.0006224514851772229, + -0.00021889469686123145, + -0.0007046019130069077, + -0.0002677065925271808, + -8.052218880969025e-05, + -0.0006270260281342212, + -0.0005154109567344631, + 0.0008246984344477578, + -0.001241331788699384, + 0.0006449239882889491, + -0.00016318281917491561, + -0.00010466346567318506, + 0.0013193783655602643, + -0.0005577119576392916, + -0.00040992084838934443, + -0.002130147074458596, + -0.0005607572800872515, + 0.001252194681247076, + 0.0017056498496639972, + -0.00017398035720431863, + -3.09480322770399e-05, + -0.0017432514169185304, + -0.0002516520545283721, + 0.001469312635573621, + -0.0005068776648076448, + 0.0011442734561974263, + 0.002469021311323047, + -0.0015852264920188722, + 0.0005714982812081057, + -0.00020642589099394943, + 0.0007274858648080288, + 0.0006740322192353804, + 0.0015155604741075867, + 0.00043184914895475044, + -0.0006654642739315751, + 2.3506528716795705e-05, + 0.0017425615270847436, + 0.0016105667003940534, + -0.00023761247279870947, + -0.0014898497514368267, + 3.342772233501411e-05, + 0.0006116911883412261, + -0.0008078196150099095, + 0.0001486032975515706, + 0.002005173277654884, + -0.0004672528703311903, + 0.00011822126847900848, + -0.0009942220047291048, + 0.0013255309340289621, + -0.0010631021566857256, + 0.0009986895012279932, + 0.0002971917553769897, + 6.861591029133491e-05, + -0.001145552669175372, + -0.0015996811894263604, + -0.0013371814203603759, + -0.0007202625849105015, + -0.0002804183078662832, + -0.001379848497834437, + 0.0007017581404995034, + -0.0006343646249618208, + -0.0005741915218229991, + -0.0009605145502981141, + -0.0026381553278220344, + -0.0011047103264691205, + -8.955979883021483e-06, + 0.00016483358349963438, + -0.0014368633863314966, + 0.0004723380284056077, + 0.0013648540833220604, + -0.0009618842671725112, + -0.0003175828910587935, + -0.0001780716658013684, + 0.002115744401349556, + 0.0004951022924753676, + -6.462602875363752e-05, + 0.0014607965806438215, + -0.0022264253337576185, + -0.0012099443992618197, + 0.0010908101632765208, + -0.0013328479307470817, + -0.0003749703356691381, + -0.00021374331916564936, + 0.0003631531729115999, + 0.0005124450011267749, + 0.0011157275350498705, + 0.0020477702828844545, + -0.00044221606468976607, + 0.0007828433553943128, + 0.00021284728734052976, + -0.0001715141835143652, + -0.0008107279981388699, + -0.00024386364625176782, + -0.0002510237745329659, + 0.0006841842596602454, + -0.0005103279524930366, + -0.00011484946645998171, + -0.0010878029481469677, + -0.0007797374386003012, + 0.0011819022247989003, + -0.0015129934637353475, + -0.001344956937557258, + -0.0005764428320890134, + 0.0016359574168386187, + 9.496067141946617e-05, + -0.0009406475275030333, + -0.0013192548699302834, + 0.00025784717801298593, + 6.748123568565018e-05, + 0.00021002495155283732, + -0.0005566997977772358, + -0.00012283612156649675, + 0.0008088470445154607, + 0.0006518824531068353, + 2.660196830914297e-05, + 0.0014350155845991917, + 0.0004541786246193126, + 4.737002204397086e-05, + -0.0005620732610432, + 0.0005932670130890925, + 0.0013074866071071832, + -0.0020152940881511617, + 9.135104062793096e-05, + 0.0021324812103577745, + 4.753217813507073e-05, + -0.00018516038574835732, + -0.0012798961916182148, + 0.0008139177416209319, + -0.0003760436792389282, + -0.0020011081899446405, + -0.00018223427390190824, + 0.0005233730240659236, + 0.0007848304141595025, + -7.075536977044539e-05, + 5.770152099407607e-05, + -7.129153466372259e-05, + 0.0010261380131196944, + 0.0010394056080418972, + -0.0008754421003046428, + -0.0012835347253098055, + -0.0008215343586256087, + 0.0007505126139505294, + -0.0004565096642046009, + 0.000748589200576165, + 0.0008322353332105189, + 0.0006240110232674391, + -0.0009842905655170076, + -0.0008901882198597405, + -0.0001777386088922019, + 9.455280845114019e-05, + -0.0005494075133046489, + -0.000668043731156558, + -7.136203590880902e-05, + 0.000216098745731402, + -0.0015139396072893284, + 9.213042232536501e-05, + -0.00023591283781976947, + -0.0011025792107634024, + -0.00033631954927111434, + 0.0012250750343095502, + 0.0010035768561202341, + 0.0017796572712545603, + -0.0006400070288697731, + 0.0003733074243449724, + 0.00044263906627598664, + 0.0012994355069348895, + 0.0006125426126993235, + 0.0012253301771817362, + 0.0007101262202350554, + -0.00028982185324827466, + 0.0007854062275590555, + 0.00032066946306256474, + -0.0006680290815226875, + -0.0021199144324107557, + 0.0027652527668606684, + -0.00019814041738051315, + -0.0002339112862153793, + 0.0010344652545786308, + -0.0009959558922682406, + -0.0003806195770104112, + -0.0007193969573155002, + -0.0014889449944887824, + -0.0001936503395513231, + 0.0009729326564787799, + -0.0008940251765100235, + 0.0018967022158037365, + 0.0005106567226462211, + -0.00038498214555283673, + -0.0004897212478125266, + 0.00047326645784367694, + -0.0006274919385717124, + 0.0013503102225105605, + -0.0008277517152341265, + 0.001674721980662918, + 0.001342509879342613, + 0.0010756351156762662, + 0.0008440392875917248, + 0.000126524456574246, + 0.00011805927114429647, + -0.0013493783292458702, + -0.0006931847830813489, + -0.00019464294604736336, + 0.0003290663465072499, + 0.0002922721721879952, + -0.0012486828539472212, + 0.000544918877771488, + 0.00041605985608636763, + 0.002558458759383894, + -0.0017020232213625422, + 0.0019766196189253933, + 0.000516099454455516, + 7.077975886555157e-05, + 0.000540910829684167, + -0.0024177365003361, + -0.0005142360303994665, + -0.000912953400436699, + -0.00027125780376538764, + -0.0001194106326688135, + -0.001351229145931053, + 0.00029959448167192785, + 0.0006088856315177854, + 0.00022084779252099873, + 0.0001917226115585177, + -0.0005325600851576792, + -0.00014764823589880495, + -0.0008966781048891506, + -0.0008020836728280206, + 0.0013728365233776547, + 0.0005479594683074377, + 0.0017424089057755832, + 0.0009503511165308097, + -0.0004475175666625027, + -0.0006995975636744822, + -8.28842103242846e-05, + 0.00027112026331650713, + 8.442830497189238e-05, + -0.0008358938049392275, + -0.0006368560244861885, + 0.0012125687926267527, + 0.001561900701990395, + -0.0003889949592719235, + -0.0021486149782155525, + 0.0006026579385508468, + 0.0008930173105332963, + 0.0004163448028542012, + 4.335736011406367e-05, + 0.0003807001606099618, + 0.0009605183371911605, + 0.0019962168064455604, + -0.0006306654336877232, + 0.0011650453186353193, + 0.0002694382566677372, + 0.001480843532659203, + 0.00038011431781949904, + -0.0004728712295562272, + 0.0002531691636017218, + 0.0018458345276755434, + -0.0007291842470513029, + -0.00020454686028267686, + 0.0011944215894808732, + -0.0005960668183699625, + -0.0005010992206357415, + 0.00020701148196729003, + -0.000503547489312463, + 0.000528740096995221, + 0.00015272834287833364, + -0.0019066158326731266, + 0.0002871919855110456, + 0.0012108132645593532, + 4.4834924827932346e-05, + -0.0012363400870938463, + 0.0002671636067103153, + 0.002162983949433178, + 0.0004623840141864275, + 0.00017469956551333338, + 0.0010309358379078243, + -0.0006599015291042261, + 0.0009518827381440358, + 0.00015333299289808767, + -0.0003996915558282059, + -0.0013791387385498348, + 0.0006504256278597551, + 0.0008424377782038722, + 0.00359589092348068, + 0.0004250242438632512, + -0.00036928336137009594, + 9.208873525465912e-05, + 0.0009692386041386471, + 0.0007078103122500692, + 0.0014782836153955318, + -0.0003347408792310767, + 0.00035049081702197564, + -0.000920370486758462, + -0.000505175199857332, + 0.001439731063638546, + 0.0017590786247109278, + -0.0006349564096096598, + -0.0006591719673532025, + 0.0003499138862514602, + 0.0014016517763536479, + -0.0007613271964025961, + -0.0003042939299990055, + 0.0009931741037792795, + 0.0013110843190967656, + 0.0004039405514366386, + -0.00032968801383516974, + 0.0007134165156761852, + 0.0005585119941361237, + 0.0005017975485484282, + -0.0005603451334525485, + -0.0010650194710708806, + -0.00018083036279163917, + 0.00030002717829923976, + 0.0007192008579033225, + 0.0007343976700407872, + 0.0014658023310651213, + 0.0002728685095595683, + -0.0021980286830938327, + 0.00081795757749025, + -0.0007738193069210928, + 0.00038206733953491325, + 0.00025616003563193584, + -0.000155034049522874, + 0.0008355795592422431, + 0.0005702791776794262, + 0.0009168364914096187, + 0.0009721651275992492, + 0.00030640268551714413, + -0.001351487207282347, + -0.00011649487258778523, + 0.001957442898589568, + 0.0009775816609704643, + 0.0009410895371097052, + -0.0009733294978599081, + -0.00036005433223396197, + 6.0246199849393225e-05, + -4.69967405320962e-05, + -0.0016256514406905742, + -0.0002984562839716131, + 7.427480544061279e-05, + 0.0013132118333200092, + 0.00024911243003528755, + -0.0014494735937355444, + -0.0005916763886415848, + -0.0006303826722378856, + -0.00017092760738026688, + 0.0005301498066974993, + 0.001887505380426441, + -0.0004957447249259827, + 0.0005288332325675463, + 0.00010065282460434193, + -0.0011228745655016297, + 0.001715111012994252, + 0.00020248510175037917, + 0.0014439722918324605, + 0.00041488400316413006, + -0.00015533705407354685, + 0.002499335418177656, + -0.001704981765175746, + 0.0013992784626082827, + 0.0013222058544507707, + 0.0006914176990885747, + 0.0004991538410737026, + -0.0003336561032035131, + 0.0007158132561365173, + -0.0016087713045979581, + -0.0014151922610548076, + -0.0007481464610372649, + -0.0008399363605646913, + -0.0002836353906178976, + -0.0014293210441319551, + 0.000522482698317965, + -0.0005281666017045822, + -8.189952457471703e-05, + 0.0012890296984659644, + -0.00039823755319617356, + -0.0004168134771345332, + 1.8650543511110676e-05, + 0.001957134334557882, + -9.592174717962777e-05, + -0.00014705020074459567, + -0.0009803180817926282, + -0.0013351882497214293, + 0.0008401118130149297, + -0.0014383712722480192, + -0.0009988946963033324, + -0.0008425084629347056, + -0.0011095490162978125, + -0.00014316928707833843, + 0.0006148296656101154, + -0.0009274914552852472, + 0.0006106346164522902, + 0.0007237434031094965, + 0.0008673404169977046, + -0.002880795841944561, + 0.0003963029283435807, + 0.00026162888002909595, + 0.00012579557827932628, + -0.0007939375943254024, + -0.00026330864655339114, + -0.00042600645256668236, + -0.0003397327423342759, + 0.0013043733003764316, + 0.0009962656828378356, + 0.000781114019129351, + -0.0007025740587056526, + 0.0010175301659552144, + 0.00015305580453279724, + 0.0017274490683275422, + 0.0017940428724999558, + -0.0005457543014472437, + -0.0016249911171704516, + 4.091644451802143e-06, + -0.0011844455754496175, + -0.0005551847737911608, + -0.0005277632903330206, + 0.0007600844770796664, + -0.001573582571747452, + 0.0013104114238422435, + -5.3630336949633356e-05, + -6.415298148966338e-05, + -0.001061730425902835, + 0.002808480853425946, + 0.0004392202782263637, + 0.0005868643901906399, + -0.00034991171525736815, + -0.0007437429008840212, + -0.00016029300169717654, + -0.0002625240367903201, + 0.00025573628217535926, + 0.0011793733224952927, + 0.0015356594810722638, + 0.0019787147265058523, + -0.0002982619137195132, + 0.0005077139537845828, + -0.0004740268945027693, + 0.0007430151620314687, + -0.00032862159947583217, + -0.00016324587333142078, + -2.9530014196455016e-05, + 0.0015292968989686357, + 0.0012364191879786982, + -0.0020840753092336347, + 0.001299799832377028, + 0.0005416037873350683, + -0.0014882639388038848, + 0.0012626490376774233, + 0.00127941200884351, + 0.0006940028587990467, + -0.0018017037608480274, + 0.00022445377137645506, + 0.0002474042129336027, + 0.002224491563468685, + 0.0009005387384173672, + -0.00033707884669867497, + 0.000377873247096031, + -0.00012112911408293145, + -0.00020497701065300957, + 0.00018281107538239128, + 0.0003702737440431677, + 0.0008265114346697118, + -0.00023087949548472348, + -0.0008895338970722097, + -7.233039359985714e-05, + -9.695482324701157e-05, + 0.001079196633520655, + 0.0007281923780977198, + 8.438588602469563e-05, + 0.0006969450641857704, + 0.002012715522015295, + 0.00038551239878984264, + -0.001605013199221039, + -0.0004271562890902593, + 0.00016299317818572884, + -0.0008684497882191369, + 0.001806632112654166, + -0.0006508531198880682, + 0.001029099831892873, + 0.0015230004051628473, + 0.0012302455376744918, + 0.0003522526737123412, + -0.0008710514188605598, + 0.0005255948341094381, + -0.0027065749350163775, + -0.0013273020004516166, + -0.00040362946415291345, + 0.0019809341085995215, + -0.00043641283122201744, + -0.0003948579160228597, + -0.0009019466793328684, + 0.0006506136227106263, + 0.0014894487214036959, + 0.0008344697315164984, + 0.00022797532919476476, + 0.0010602151764064506, + -0.0015716372689556616, + 0.00020588628234275265, + 0.000631786991398417, + 0.0020239261933032086, + -0.0012462555584498859, + 1.3817466668687861e-05, + -0.00018046749668087413, + -2.2534239119913694e-05, + 0.0021333000683835886, + 0.0008999232234480257, + -0.0014834037677984864, + 0.00025267440879150687, + -0.000726567222091647, + -0.0004462472968754703, + -0.0006611588165190096, + 0.00123102631572915, + -0.00035299897419923694, + -9.630765381110325e-05, + -0.0006695637144469044, + 0.00044883762738695277, + -0.0006149202101783155, + 0.0008512124562648426, + -0.0009738297844662396, + 0.0008102203596492935, + 0.0008541970722178353, + 0.001230955671094133, + 0.00158010406957959, + 0.00024338370232563302, + 0.0006015063244248749, + 0.0005995838677216508, + -0.0004662017605350482, + -0.0008314769853798176, + -0.00039934038375279114, + 0.0004120279829709584, + -0.00037019454777104045, + 0.000854762654147967, + -0.0016027510337066784, + 0.0007506644608232443, + 0.00254121570021943, + 0.00044651238548845635, + 0.0005182890870842424, + 0.0012042321748079018, + -0.0005914372919221114, + -0.0012741910861909865, + 0.001665450081415484, + 0.0007246427313059104, + -6.504308212842903e-06, + 0.0008238044143953896, + -0.00044557023613054275, + -0.0008485268457649295, + -0.0010350732923208818, + 0.0028417768815095458, + 0.0001313867349150801, + 0.0015148918718029146, + -0.003882809138476061, + 0.0004862058117387321, + 0.0008684282285372168, + -0.0002375613307508695, + -0.0007018283249407599, + 0.00031318606504553853, + 0.0009034155818544703, + -0.0002829266206144352, + -0.0006456152742325461, + -0.00024640646265026544, + 0.00018626047742683263, + 0.0006535651130010384, + 0.00013253005129367222, + -0.00037745927670790856, + -1.0283587736500456e-05, + -0.00041339769579246507, + -0.0008347984885536537, + -0.0012623641316704818, + 0.003198565504009603, + -0.0021565978830661767, + 0.0008118512945633643, + -0.0008100701754180479, + 0.00012439979841866484, + -0.001732756595978752, + 0.0012654279441859449, + 4.105005089553503e-06, + -0.00031373511652144504, + -8.901231796338797e-05, + 0.001087625535320535, + -0.0008623642655136073, + -0.0008372245985592571, + 0.0003900373690626107, + -4.0617873051241186e-05, + 0.0027164610125039908, + 0.0009064593629970404, + 0.0009201957097455264, + -9.014163320803264e-05, + 0.000482377486146999, + 0.0005383095647131007, + -0.0006239059951280696, + -0.00022650837223111984, + 0.00047508514371761077, + -0.00044052854907114416, + 0.0014202223183027475, + 9.615906909280023e-05, + 0.0009400582085216473, + -0.0011335991835765794, + 0.0009348805698369181, + 0.0006814731604012816, + 0.00029881714881217314, + 0.0014176547757752305, + -6.093780768167312e-05, + -0.0014162846216166304, + -0.0008717941774186094, + 0.00020693391878619125, + 0.0004017131283972428, + 0.00026322864292926696, + 0.0005363398163580454, + 0.0008586336983615606, + 1.9737554331540527e-05, + 0.00046909218062612165, + -0.00020407565815967892, + 0.00030924020072817444, + -0.0001750055789586507, + -0.00040047967313308895, + 0.0004889194630347263, + 0.0003807877723634319, + -0.0002273903571626278, + -0.0008029964239537614, + -6.188837580838829e-05, + 1.9029064646817546e-06, + -0.0007232017945920786, + 0.0006508255585086683, + -0.0014538432789055157, + -0.0033698569839623327, + -0.00017777528700414953, + -0.0007715567746102573, + 0.0004393140972587318, + -4.393917288344568e-05, + -0.0007552427982265755, + -0.0004056972957881511, + -0.0001603278862755604, + 0.0011393388622767736, + 0.0018126993502013734, + 0.0009134765511756367, + -0.0006966552839788413, + 0.00014082821402552513, + 0.000690390481275387, + 0.0019043725883880263, + 7.891094591967981e-05, + -0.00022185121989130594, + 8.131768067417644e-05, + -3.90501210078499e-05, + -0.0013512533591511302, + -0.00039735135881990814, + -0.0006082009170923563, + 0.00020488542451141943, + 0.0008696528408042559, + 0.00041548140015184324, + 0.00041668733590919727, + -0.00114183849728229, + -0.0017046138649099948, + -0.0018640063985242829, + -6.186591099418663e-05, + -4.732943675997501e-05, + 1.2872485873498104e-05, + -0.0004783898028773713, + -0.0002923862538404533, + 0.0009843623794713338, + 0.00020549816863464133, + -0.0010299345552360212, + -0.0010547284695133314, + -0.0012226429292873588, + 0.001385232915377796, + -0.00012329144726607672, + -0.0001566688913889467, + -0.002419984116694407, + -0.0010854703942341506, + 0.00031282763086883553, + -0.00033978392224494477, + -0.000919196612431654, + -0.0007506129345695922, + -0.0007316899725001453, + 0.0007896825261314592, + 0.0013264360966085901, + 0.0008177002449256801, + 0.0008545419579151467, + 0.0003729878608991719, + -0.00042809503597289163, + 0.0008904294570492014, + -0.0010787326065935974, + -0.00016538802465809968, + -0.00024800256077800854, + -0.00041957556381877996, + 0.0010328390113968971, + -0.0009603886669770956, + -0.0007348457672694507, + 0.000915743041458313, + 0.00031503151310605375, + 0.00012298349867736067, + -0.00010601470283550478, + 1.3550927441332368e-05, + 0.003093165095283135, + -0.0016830000106511428, + 0.002847877870750326, + 0.0006063264475426826, + -0.0013386419098185309, + 0.00029378298061518283, + -0.00027142623955094187, + 0.0012721942654849202, + -0.0003243472169759716, + -3.862124282040416e-05, + 0.0005578710478072369, + -0.0012270978585922647, + -0.000660612161998056, + 0.0009811671701857887, + 0.0011110925257387463, + -0.0002756855339495337, + -0.0008883550861992307, + 0.0002686126987125112, + -0.0013617178740533186, + 0.0005234166341375377, + -0.0004618215999313075, + -0.0008335656035469502, + 0.0003990780352607424, + -0.001042035574527573, + -0.00044846057178022714, + -0.00039967321751272026, + 0.0007365273487516362, + -0.0005604324649248837, + 0.0012576920398567973, + -1.9080378662064053e-05, + 0.0014895504961676292, + -0.001408142899708975, + -0.00019354892402107573, + 0.0005868020881535755, + -0.0009527643213672623, + -0.0013236871518075813, + 0.0008047862563435627, + -0.0016146432327098813, + -0.0001486444193615148, + -0.0006325250638503229, + -0.0005789198928273141, + -8.676510064612114e-05, + -1.0070230778204862e-05, + 8.220687153147742e-05, + -0.0022812788845162284, + 0.0006089324110030306, + -0.00022242229498952945, + 0.00024711491074784546, + 0.0002594707034469208, + 0.0005415727496284126, + -0.0011523833279632792, + -0.0008559824248876613, + -0.00023703287988943437, + -4.852097913605096e-05, + 0.0024262149804167884, + -0.0014782658626248243, + 3.342560123643753e-05, + 0.00032549776339988465, + 0.0001536015239032428, + -0.0004010068299898637, + 0.00074512008270632, + 0.0018027778283845487, + 7.394780405829557e-05, + 0.0020400237790667002, + -0.0011981147096202696, + 0.00047277300878238515, + 0.0006848855570845431, + 0.00051216264900692, + -0.000653578223830173, + -0.0001559092315238754, + 0.00027682462750829294, + -0.0011622460673250312, + -0.0001517411635020831, + 0.0010854646875826663, + -5.891024504243822e-05, + -0.0014514283065740672, + 0.0005104873848902136, + 0.0007583611985331998, + -0.0019253617322511887, + 0.0006708605873806126, + -0.0003085286668635589, + -0.0016796197731153433, + -0.0011502011915689534, + -0.00016406232315483406, + -8.284354360364667e-05, + 1.5851511109504784e-05, + -6.474248823768487e-05, + 0.0007861618167828177, + -0.0005627877000523511, + -0.0005815398016683855, + 0.001284128040598037, + 0.0011194491926147358, + -0.001603236658480143, + -0.00027609058150616017, + 0.002165793974074465, + 0.0008518025923223041, + 0.00020654576018870634, + 0.00035863307289465946, + 0.00013562090646288469, + 0.0003373725725708917, + -0.0005158064034471784, + -0.0002484318245770268, + 0.0003598108267413451, + 0.0014471437236881592, + -0.0006623223314848838, + -0.0005772360993915072, + -0.0008650400998671263, + -0.001886920857463405, + 0.0005671676991361365, + 6.003598597985565e-05, + -5.111600839022779e-05, + -7.188172126914119e-05, + -0.0003351699834309307, + 4.352736179306453e-05, + -0.00015144743483892062, + 0.000453588867882997, + -0.0004256907876332319, + -0.0018884055677558715, + -0.0005913711819079907, + -0.0011944727581674603, + 0.0008322723744668733, + -0.0014460153168294858, + 0.0014357265550351162, + 0.0004918439739645979, + -0.00010863575397043672, + -0.0009807506098928253, + -0.00019507945805671107, + -0.000423736130160426, + 0.0004471187417536688, + -0.00014648648057167664, + -0.001152917583385986, + 1.1556862298495e-05, + -0.0008768402849708667, + 0.0008229281153344315, + -0.0003225551818547284, + -0.0013841928186533346, + 0.0005181348261610761, + 0.00048775358905497966, + 0.0009358459095280013, + 0.0009204457684420559, + 0.0010815965225041521, + -0.0015499366436078083, + -0.0010323616082665544, + -0.0006152553940905548, + 0.0009177064500724013, + 0.0005486548962079097, + 0.0008212703809765041, + -4.89166226639001e-05, + -0.0013636850881096946, + 0.0013811400092565622, + 0.0013967383663765064, + 0.0001786228375392266, + 0.0011846945606219493, + -0.00016629791245207146, + 0.000829836664680761, + 0.0003691613299289007, + -0.00021433939215416504, + 0.0003063895550980921, + -0.00017114634455798013, + -0.0003218406203784842, + -0.0006482909702307245, + -0.00020714952215862827, + -0.000506296710766811, + -0.0002456394644720231, + 0.0003097853139876022, + -0.0013662613894363284, + 0.000635756695776062, + -0.0002805100986807595, + -0.001116733522344486, + -0.0006954986817822579, + 0.00033724780792680726, + -0.0006581230951055712, + -0.0002215808252077568, + -0.0004512295358660859, + 0.0008592449196989094, + -0.0006651681739575212, + 0.0005331114270578802, + -0.00022716133653138883, + 0.00044798665312514277, + 4.840412135873119e-05, + 0.0016087962089940454, + -0.0002842673390260694, + -0.001816064757595224, + 0.001121420296572009, + 0.00048749018168651564, + 0.001151587599810429, + 0.0004990323757458156, + -0.0006484623411776956, + 0.00013787103571810254, + -0.000242658624280929, + -0.001421627258140475, + -0.0008167813549340438, + 0.00034904800598009546, + 0.0006220221819684887, + -0.0005640865193557756, + 0.0003190662812718171, + 0.002206721476930736, + 0.0007365928042976959, + -0.0013213056832381512, + -0.0016033082731433087, + -0.0019129550932310117, + -0.000273717581111457, + 5.245087924400654e-05, + -0.00033537594161124314, + 0.0007171947792873556, + -3.487817277352202e-05, + -0.0007188989123434209, + 0.0003224096543873004, + 0.0007662404667502308, + -0.0008349499159151645, + -3.8849957170544065e-05, + 0.0012234483651600452, + -0.002478283237703946, + 0.00168801323597241, + 0.0008259514708961593, + -0.0004984340433380717, + -0.0006924598211645983, + 0.00044328613651542644, + 0.00020167758475095446, + 0.000496467565818422, + 0.0007063966719003885, + -0.0006204174242077555, + -0.0014301228087017991, + -0.0026234317067067208, + 0.0004816697568408415, + -0.00015967190665229738, + 0.0018745739820610712, + 0.00010842714243400586, + -0.0011197224062763078, + -0.0014206806097236703, + -0.0005989830914093382, + 0.0002556257024482322, + 0.001332981271218962, + -0.0006057020049746593, + -0.0010514545922812465, + 0.0019475012018238887, + 0.00042465587985546964, + 0.00020833238919879186, + -0.0002751285652501693, + 0.0008267623188739203, + -0.0004040159264615945, + -0.0005340841993495568, + -0.0019257448925993979, + -0.0021435432549450867, + 0.0003757323892519585, + -0.00025882421728230576, + 0.0009896889777688909, + 0.00104678161557469, + -0.00012837558650582765, + -0.001236305416557364, + 0.0008327238486467903, + -0.0003879736461293409, + -0.000379159597438043, + 0.0010559992730584892, + 0.0016185774627953179, + 0.00048417558350294886, + -0.0016766017538999156, + 0.0008743703760019925, + 0.001862377579052536, + -0.001977645274405627, + -0.0005884461199387966, + -0.000567478527907414, + -0.0005799708214407659, + 0.0002185456180693989, + 0.0005199627954071387, + 6.442163459540464e-05, + 0.0010830320723623419, + -0.0010918680530115398, + -0.00026673500400430057, + 0.00123362846192931, + 0.002436701741763233, + -0.000787313631587485, + -0.00017241377860115317, + -0.0011892818448458059, + 0.0002845683362634208, + -0.0007960894017363236, + -0.0004400193302154929, + 0.0003905935704397181, + -0.0010015641860458544, + -0.0008135449734252002, + -0.0001457549798515913, + -0.0013549234836304274, + 3.514835860662146e-05, + 0.0002841643418933622, + -0.0002408503269707159, + 0.0005585681577735125, + -0.0007639542539279791, + 0.0003019127364803162, + 0.0010042084297101456, + -0.0005014814740446781, + -6.036333591691319e-05, + -0.000725741294198608, + 0.001534891935295563, + -0.0008064288266645432, + 0.0006160517841404059, + -0.0006667970478533964, + 0.0008848030135536917, + 3.8606434084422015e-05, + 0.0007498238826240229, + 7.02719048692325e-05, + 0.0011174017299647111, + 0.000560521531678369, + 0.00014627546563599533, + 0.0006812777037958677, + -0.0016207723872071324, + -0.0003544710378489807, + 0.0001307002839148772, + -0.0003465601148240904, + 0.0004754054441682656, + -0.000758368383089291, + -0.0021615891251426625, + 0.0007411174671755877, + -0.0004231837484136033, + 0.0022030634575773765, + 0.0006417200744654985, + 0.0005571130010231662, + -0.00016312922694492594, + 0.0010712212439888912, + -0.0012757753286105132, + -0.0009896739895494872, + -0.0001046082440486584, + 0.0021429919373376527, + 0.001110013829746581, + 0.0005061765738488312, + -0.00106325526229832, + 0.0005977753839526987, + 0.00036706656210657167, + -0.00020449067027971407, + -0.000743078267886058, + -0.0009224673445646103, + -0.000308523930115392, + -0.0021174765362231293, + 0.0005646345328769474, + -0.0020011157184402356, + 0.00033867088930172585, + 0.0012946261534088164, + 0.0006203897347835873, + -0.0010308964408502503, + 0.0008337171806602768, + -0.0019288499659682078, + 0.0001674536658004238, + 0.0010696727764201593, + -0.000454299780286957, + 0.00033062480976981355, + -0.002465139494189151, + 0.0014160852402069699, + 0.0009759094955850585, + 0.00028720133108568, + 0.0010429197290613597, + 0.0024974909138242947, + -0.000601817234426543, + -0.0008230487659452904, + -0.0022269916594953422, + -0.0016400116680298008, + 0.0020509907683300436, + 0.0009540552561496183, + 0.0005748465880884964, + -0.00045525339329050983, + 0.0003445480497648954, + 0.00016395656346035028, + -0.00045861894869365894, + 0.0011631045492326794, + -0.0008045584476961722, + -0.00034092588572599115, + 0.001850418122906537, + 0.00228739319576137, + 0.0010368952608175522, + 0.00010760644139527237, + 0.0013814102199189101, + 0.0017439150622343145, + -0.0019226743104948608, + 0.0020362452737475137, + -0.0008648066334482254, + -0.0012318205383298688, + -0.00040392865036647943, + -0.0007327517285148139, + -0.0008126496523691004, + -0.00023498056466663114, + -4.1610538067866524e-05, + 0.0005670191229093787, + 0.0011799206290233227, + -0.0011788993996905328, + -0.000672156023725853, + 0.0009153893705932475, + -0.0008493148234958069, + 0.00022194915851187744, + -0.0014487204233154074, + 0.0013540915084576633, + -0.0008176033113674228, + -0.0011665186166627877, + 0.00014176447575836286, + 8.374471476993355e-05, + -0.002461651853910593, + 0.0018802010106362711, + 0.0014683806652027213, + 0.00021132126904394746, + -0.0005325310940829865, + 0.00014364235004742348, + 0.0002428474187113311, + 0.0021190966796334142, + -0.00012759210634297896, + 0.0003788583989145702, + 0.0006822072102348468, + -0.0008939521449940554, + -2.6066844241565793e-06, + 0.0002872607398839556, + 0.00012276801155143726, + 0.00022211905128194555, + -0.0014730419328023738, + 0.00022257376462732134, + -0.00026351175480372063, + -0.0018696247513397797, + -0.0008663539676869117, + -0.0009484848953238499, + -0.0005088172241830954, + 0.0007009085179490633, + -0.0007886743950273725, + 0.00022576838720346398, + 0.0001674683234712702, + -0.0008222935852854178, + 5.628196891506392e-06, + 0.0012262772831698385, + -0.000654904781410701, + -0.0011541718040989995, + -0.0006733906245252385, + -0.001125244397459283, + 4.124994515223607e-05, + -0.0005181058922957913, + 0.0001385578656422105, + -0.0006167820478066201, + 0.00011804864603426763, + 0.001976147041494728, + -0.0012389348978482553, + -4.567471173643025e-06, + -0.0010358018795193474, + -0.00040198409453266694, + -0.00022813982236908988, + 0.0008048173579807625, + -0.0007807304641213796, + -0.0015223802204750619, + 0.0003117025093194575, + 0.00034902896881372687, + -0.002265119329297484, + 0.002006802938723157, + 0.0023018995350625004, + -0.0002851701843516549, + 0.0023375493710745994, + 0.0009375961514604932, + 0.0012520233058393997, + -0.00022600333210942203, + -0.0005990655976114411, + -0.0001437279820689161, + -0.0008626448715888855, + 0.0002740565803004274, + -0.0009816526366928566, + -0.0005450370621256152, + 0.0009237657698407558, + 0.0006179738289859525, + 0.0001937808772818176, + -0.0002972212159249236, + 6.587747550287687e-06, + 5.503069099021156e-05, + 0.0006856532150265749, + -0.0012603519138339916, + 0.0002334530302558209, + -0.0004140613520645428, + 0.0002365538332223839, + -0.000341247839018576, + -0.0007079490152603809, + 0.00011260566780909727, + 0.001448922576488141, + 0.00025658839126089963, + 0.0008111184629851472, + -5.723973941342476e-05, + -0.0011481554814266525, + -0.00044502162166221496, + -0.0003557933722147034, + -9.39847935478315e-05, + 4.631412869492393e-05, + 0.00019940778808060617, + 0.0002617053662860541, + -0.00020865140156721545, + -0.0012088898362131943, + 0.0010842214062673134, + -0.00046114183788773146, + 0.00032283186602135433, + -0.0011452382363233925, + 0.0002812638158647765, + -0.0010520354891151338, + -0.0005047317808650112, + -0.00014542832537011425, + -0.0011435755655259281, + 0.002394118983254886, + 0.0012290058740228973, + -5.792612755789201e-05, + -0.0007734132387633606, + -0.00043423085302548225, + 0.0004481720696858633, + 0.000338411808253392, + -0.0005250160797128224, + 4.787234205301903e-05, + 0.0012880004082762358, + 0.00041716333399734683, + -0.0003609285742299479, + 0.0003791136400628284, + -0.00011033155932926275, + -0.00042368966016396423, + 0.0006718102086449794, + -0.0003185838093470073, + 0.0006426552984865948, + 0.0006769147501108709, + -0.00024020679836134678, + -0.000648233362376601, + 0.001284541417771413, + 0.00010958408202171051, + -0.000601932545530757, + 5.986335404643548e-05, + -0.0011959222345728326, + 0.0008886021504291367, + 0.0007705587146058073, + -0.0022369151205815043, + 0.00024847865384409855, + -0.0009658315899904338, + 0.0010936493823156686, + -0.0009836266706682647, + 0.0002841910623406032, + -0.0005650412265953714, + -4.8373076961627764e-05, + -0.0013564949382723944, + -0.0013657552231730041, + -0.0008708825137819511, + -0.00024588369291775244, + 0.0007071743382980713, + -0.0009440543584465435, + -0.0009428309937201595, + 0.0008228966917440034, + 0.001235524894305022, + 0.000389297789063711, + 0.00022863868009271413, + -0.0018985711727970674, + -0.0010096785285141606, + -0.0023799277234212, + -0.0004773348313252322, + 0.0005203324855606704, + -0.001253387300471353, + 0.0009707319445859415, + -0.0005441272226412773, + 0.0007097383790492345, + 0.0016737220799141548, + -0.0014637324483796998, + -0.0003863731462711662, + -0.001993532139187593, + 0.0009683092338756639, + -0.0012366733053724365, + 9.175619470745371e-05, + 0.0017318879305757465, + 0.0008403509076948859, + -0.00011481497058055613, + 0.002652229683316656, + 9.22545200987718e-05, + -0.0014647417545261192, + 1.8914238193339055e-05, + -0.0005686698812389322, + 0.0004868017536366425, + -0.00015814442438484775, + -0.00033028988800296076, + 6.095056031805079e-05, + 0.0012371381336408749, + -0.00019194670688352846, + -0.0016794868716364874, + -0.0010656607889357379, + 0.00031860459063425353, + 0.000981636224613313, + -0.0013751817107984698, + -0.00113900466668359, + 0.00048629395747663563, + -0.00020202751433457877, + 0.001298060557719582, + 0.0005364020184371262, + -0.0014532395610463854, + -0.0007847986924487358, + 0.0003272418640333137, + 2.617614614407895e-05, + 0.0005667940063745422, + 0.0009810177621875583, + -0.00029416117808267266, + 2.7094453331332205e-05, + 0.00034280384595009234, + 0.0008608122783333185, + -0.000655250075802904, + 0.0004557456214505912, + 0.0009430150865601365, + 0.0013255357980613686, + 0.0001741212250382969, + -0.0010043933279160365, + -0.001620197610392219, + -0.0014476194478147575, + 0.0007871356166719997, + -0.0010301523995945845, + 0.00026422261359938836, + 0.0005132275123416069, + -0.001863885214343323, + 0.001199838593113465, + 0.0002040230755290785, + -0.0009373161354638515, + -0.0008677951118924944, + -0.0008838293876886029, + -0.0001496420511699912, + -0.0007309579606825403, + 0.0016179665344073259, + -9.512836398153415e-05, + -0.0008370197497091482, + -0.00045124659262564743, + 0.0007654730191447597, + 0.000652875586962387, + -0.000572115033127332, + -0.00016920181718666605, + -0.001153385090565984, + 7.747340539171638e-05, + 0.00019787485509900222, + -0.00017325911645637898, + -0.0001295227958582967, + -0.0006928733801940873, + 0.0008890883718044577, + 7.458990908830023e-05, + -0.0010816437795086891, + 0.0009451338772618682, + -0.0002690234944038079, + 0.0008583242469898168, + -0.0021828988715177446, + -0.0002588811977784322, + -0.00013183900787409338, + 0.0002385468333945656, + 0.0004011331520533043, + -0.0010888985956560699, + 0.000641585119347045, + 0.0008763167679253412, + -0.0012414058812921223, + -0.0011520932675319808, + -0.0012649167419784267, + 0.0027464342170573646, + 0.0005170822144189109, + -0.0008168659315525608, + -8.703512966490588e-05, + 0.00036438689170603287, + 0.0011498763317880415, + 0.0023414393023389823, + -0.002003850212197018, + 0.0014493789401555774, + -2.205421910861787e-05, + 0.000342658639142131, + 0.0010820005700430066, + -0.0004151543370323254, + -0.0017900844643711355, + 0.00019219862664420612, + -0.0006950183643426634, + -0.001557007414533963, + 0.0005970964193272384, + 0.00047767964218115223, + 0.0006727549124685024, + 0.0011255781987608068, + -0.00085593307293505, + 0.00018441134644261992, + -0.00039351803554526897, + 0.0009800172329456258, + 0.0002582268586205242, + -5.539773653240881e-05, + 0.0010774337278560329, + -0.00046209862621862923, + 0.00010011508452694337, + -0.001425035522870046, + 0.0008443083276845958, + -2.6498866609427614e-06, + -1.564279624750313e-05, + 0.0006911659028570937, + 9.90493039600962e-05, + 0.0007146980551293364, + 0.0018973865226947935, + -0.0009496102145444029, + 0.000574344896437039, + -0.0005284909367476707, + -0.002120712400918996, + 0.0014515207034766274, + 5.2860419327090776e-05, + -0.0004542135118660421, + -0.0006172437897907282, + 0.001215372733199387, + -0.0008531598985234254, + -0.00148630133477965, + -8.598356617185222e-05, + 0.0009037115904868927, + 0.0012703482830987971, + -0.0008564605442509851, + -0.0010568145541721356, + -0.0011760571870155939, + -0.0007468338883563968, + 0.0002775086674859024, + 0.00020107422868034645, + -0.00132588653159671, + -0.0009696377183151774, + -7.074650724462693e-05, + -0.0010280909061548727, + -0.0007286787246399955, + 0.0004310649489202204, + -0.00040312227226349035, + -0.00021931130541270777, + -0.0011778909483695275, + 0.0011936933238930968, + 0.0017089398514418895, + -2.4862033999108996e-05, + 0.0015028783030374255, + -0.0008860720991187263, + 0.000518807255151107, + -0.0011928473780159934, + 0.00021505585352974926, + 0.0010046339803532838, + 0.0011740602548738909, + 0.002099093778812176, + 0.00022627483157963533, + 0.0006942389506503637, + 8.074821588255002e-05, + 0.001524127360557513, + 0.0001762070231677272, + 2.804048603008681e-05, + -0.0016078043723066083, + 0.000728621693897913, + -0.0013538578374767598, + 0.00011431258784097979, + 0.000497756443045607, + 0.0012928002941907655, + 0.0005479590034154506, + -9.195930617359488e-05, + -0.00043459027521448277, + 0.0010892038741085973, + 0.0008884443625756734, + -2.3679832776050875e-05, + -0.0013365349417105465, + 0.0011127188328922085, + -0.0011261509922059992, + 0.00045169151615794917, + 0.0003296720268932217, + -7.502345902581194e-05, + -0.00022361825975265382, + -0.0009933904046691556, + -0.0001961699270783188, + -0.0001704910905083032, + 6.560045224795558e-05, + -0.000839075129995869, + -0.000602458512590548, + -0.00043110147030840683, + 0.0005386446244938, + 0.0014534268291830391, + -0.0007131895048170271, + 0.0006134425171185099, + -0.00025925243804215975, + -0.0002730524188580887, + -0.0011506183481426538, + -0.0012073150595091394, + -0.00029954656245283337, + -0.0012141586648917178, + -8.551406591944897e-05, + 0.0009348071153585697, + -0.00020999076397294324, + -0.00020782777446837772, + -0.00032958973459154295, + 0.0006586285318528036, + 0.0003798650939169778, + -0.0006230141624516979, + 0.0008467762376429045, + 0.00035541541809611734, + 0.000978269421056936, + -0.001021248017436795, + -0.001544616654858942, + 0.001549369928273804, + 0.0019093611083588423, + 0.0010411610739986137, + 0.0001155587857479226, + 0.0003102568899433588, + -0.0006826724815324467, + -0.0009787277863079619, + 0.0003158411309710181, + -0.0005344774853959588, + 0.0017113696894091874, + 0.00036937331639225527, + 0.002193885073956533, + 0.0006200567305916849, + -0.0002898727567682886, + -0.0006535551034384504, + -8.228816497070651e-05, + 0.0011022655314822838, + -0.0008015478777396991, + -0.0017217501759068834, + -0.0010300767191685108, + -0.0005490129101086225, + -0.0006149643034976803, + -0.0010662210435196434, + 0.0010329979623313866, + 0.0008896145810628759, + 0.0005316421212484445, + -0.00032145087630628424, + 0.0010647140484811054, + 2.1824047919203155e-05, + -0.0003544779876704582, + -0.0005265920212594604, + -0.0007746763532102374, + 0.0013422348227651486, + -0.000938657261024299, + -0.001916343635025589, + -0.0017661783869117778, + -0.0005398813621431448, + 0.0008733738877869919, + -4.723713789368796e-05, + -0.0019521463318326116, + 0.0010513201292424942, + 0.0011555451848804554, + -0.0011375541653575027, + -0.0008744524784028045, + 0.0008793679626290667, + 0.0005246040496906279, + -0.0011860678933141647, + 0.00022744467807361162, + 0.00010474980370907795, + 0.0006349428777894739, + -0.0018738111625433713, + -2.8502596554474804e-05, + -0.0019431073132711403, + -0.0006580927300100538, + 0.001142708533014749, + 0.00021708616974232508, + 0.001045328520699578, + -0.0008172815079565423, + 0.00021416887416483184, + 0.0008208121949366847, + -0.0007549216636065386, + 6.924300578171804e-05, + 8.196826829172628e-06, + -0.0006309202982365785, + 0.00014505255632849532, + 0.0017807506108151539, + 0.0013255943810613728, + 0.0005078804582418213, + 5.082281617810799e-05, + 0.0008813697889075644, + -0.0005041775068115163, + -0.0014727781400161572, + -0.00019610923435184837, + 0.0009295253626784055, + -0.001044554631747051, + 0.0009976722582213209, + -0.0013734732486260482, + -0.00029298428501352714, + 8.125889592854728e-05, + -0.0014077600989814637, + -0.00014251508379840115, + -0.0010329434479462193, + -0.000421842426941728, + 0.0005377994703911128, + 3.0122435422378804e-05, + -0.00035493573458627746, + -0.00042761735859269794, + -0.00044286411435337747, + 0.0007842457991552392, + -0.00037135872017233276, + -0.001666788226563419, + -0.0005938015035094075, + -0.00039875495872406495, + 0.0014582186166326085, + -0.00011161384190868506, + 0.0009064364076999367, + 0.0002873881540392017, + -0.0011345968091148282 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgb(220, 176, 242)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 3", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + -0.0011345968091148282, + -0.0011352936311848575, + 0.0028328654530108736, + 0.0004879792374491136, + 4.044460349473798e-05, + -0.000127024213727682, + 0.00045476088002346324, + -0.0012211675696379382, + -0.00011974218605859685, + -0.0020490534715780348, + 0.0005109818512646753, + 0.0005709890655565807, + 0.0024773239962690347, + 0.0009275672240579495, + 0.001483106026917013, + 0.001065697959813219, + -0.0001777374061820118, + -0.0012802361856831034, + 0.0009778803903601222, + -0.0008106720782795153, + 0.0010007861637401393, + 0.0010001071383940988, + -0.0010772350791259826, + 0.0012144530550111906, + -0.0005832952625162228, + 0.0007268548592657051, + -0.0008895099481190926, + -0.0012450355530321522, + -0.0008010949337078925, + -0.0002798613765556619, + 0.0001361522328628964, + -0.0007248909945125654, + 4.836622184365765e-05, + -0.0009574665873282719, + -0.0010408745703901275, + 0.0002250622818528657, + -0.00011288205646415053, + 0.0005146509741145163, + 0.001199356830995025, + 7.575759606194611e-05, + 0.0009542320287106569, + 0.0015587115315622124, + 0.0011912987978374284, + -0.0002718920955558488, + 0.0010601514889376597, + -0.0009664841556979419, + 0.0005754750161452957, + -0.00046165570247116343, + -0.00041544166415550637, + -0.0006390470640601244, + 0.0013193209868507098, + -0.0006826203984999722, + 0.00029761463633055165, + -0.00031200383948995497, + -0.0016446567688536055, + -0.001474697918977142, + 3.6263816911584685e-05, + 0.0012688064251157173, + -0.0009305801847842945, + -5.350030748910838e-05, + -0.0010212735786975854, + 0.000539504668544406, + 0.00038898118025718634, + -0.0013130280738549798, + 0.0013100087712851166, + 1.1244280102980323e-05, + -0.0010959183394442195, + 0.0005332505668320032, + -0.0002813473151631482, + -0.0010647916641325504, + 0.0016245896021100479, + -0.0018681752338797783, + -0.0011956001883669971, + -0.0010058659495776657, + -0.001265084866708506, + 0.00020279176175484395, + 0.0018086886849504986, + 0.0002758530187399426, + -0.0002022923386035081, + 0.0006124948267689698, + 0.0013306522949087512, + 0.0015136656997164536, + -0.0019413402343945558, + -4.8979014726842636e-05, + -0.001454986233769379, + 0.0010107076566254413, + 0.001125062636377078, + 0.000941849011636438, + -8.97082235330034e-05, + 0.0007180331247360254, + 0.0010060730057458599, + -0.0006177553035232674, + 0.0010039118617475654, + -0.0004312943573880039, + -7.589444368285517e-05, + -0.0007262214634066759, + 0.0007755209410635437, + 0.001440006175956381, + 8.343612230715664e-05, + 0.0007100446548468068, + -0.0010963600859929903, + -0.0005252891031523452, + 0.00015037367034779876, + -0.0015971340517660602, + 6.92561780242854e-05, + -0.0005362437280591875, + 0.0027905631090967224, + 0.0012827354429079476, + -0.0021885029821244392, + -0.001495256725521392, + -0.0005522427283879441, + -0.0004965733434344765, + -0.0009457902598834847, + 0.0005531949132181978, + 0.0005734509163622726, + -0.00039893314310810303, + -0.0015846158698905517, + -0.001106425120259252, + -0.0012229378552278377, + 0.0002519420669607126, + -0.00019732449427532807, + 0.000949005520969708, + 0.0007685771364653657, + 0.0016099126512225468, + 0.00046410769603777327, + -0.0013097655517501279, + 1.06309692800162e-05, + 0.0021040909756712433, + 0.0019807637514269, + -0.0015417882219040597, + 0.00133931486547842, + -0.00011268296094524505, + 0.00038167527200736026, + 0.0004028607419002884, + -0.001708534419116063, + 0.002178671897879258, + 9.468608085864894e-05, + 0.0002454519863121095, + 0.0012356759123159226, + 0.0007737819818650233, + 0.00044283676892914806, + -0.0013933309194666137, + -0.0005064794287235709, + -0.000652464086105222, + -0.0016979351008982073, + 0.000490115320472407, + -0.0018038831140816788, + 0.0004272723877042774, + 0.0011876036772151633, + -0.0004830815285979303, + 0.0005096456900355905, + 0.0008116620941809843, + -0.0004796475550768617, + 0.000597520409584973, + -0.00019472570598395497, + 0.0009515977367932915, + -0.000814525457353689, + -9.736976554874296e-05, + 4.451430275606397e-05, + -0.0004569046490416888, + 0.00037934614610915426, + 0.0005300449324398648, + 0.0008450663611804558, + 0.0005741961988702703, + 0.0010432032551690674, + -1.6198680854391295e-06, + 0.001359194274257276, + -0.000452595794775603, + 0.0003238894945032673, + -0.0007699750749031704, + 6.345480322392064e-05, + -6.895493843732327e-05, + -0.0002183240739830803, + 0.0002719452324609611, + 0.0001496333317363556, + 0.0012121880933086118, + 0.0006909553162944506, + -0.0007264513416435122, + 0.00016610390638039328, + -0.0008555619051827072, + -0.00023161127451981685, + 7.148587066608686e-05, + -0.0007454556738085146, + 6.94502742815314e-05, + -0.0013290818568350764, + 0.0006808265930835034, + -0.00017090296908973664, + 0.00032731285979431556, + -5.6677534908868894e-05, + -5.921941072414389e-05, + -0.00036122312852166215, + 8.660024888453834e-05, + 0.0013394924227384324, + 0.0009934541427356377, + 0.0019427272737212327, + -0.0009781988940933365, + -0.002027672737402089, + 2.4590016862560146e-05, + 0.0012411816679957935, + 0.0012074968444073437, + 0.0003485653576033737, + -0.0014690220082438192, + -0.0014105758737259586, + 0.0004232877192014573, + 0.0004818847380598733, + -1.2745732278720125e-05, + -0.0007527174563961734, + -0.0004367090692852843, + -0.0011006941248931867, + 0.0012972937421712868, + -0.0009180123036620576, + 0.00042313151735648945, + -8.830587102373205e-05, + -0.0004796979432232879, + -3.633179256286271e-05, + -0.001009228467705239, + 0.0004169300071092582, + -0.0006575982307071125, + 0.0006386238039471845, + 0.0007906213403935528, + -0.0010661250843305174, + 0.0006750587386434607, + -0.0006031429163394463, + 0.0013396451621591084, + 0.0001942633916700468, + -0.0004614257689462302, + -0.0006059847363278554, + -0.0017241175436280918, + 0.000428828205761167, + -0.0014811806208219432, + -0.0006259995157831877, + -0.00033515231851087525, + 8.561888821753586e-05, + 2.217697442436953e-05, + -0.0003451408079282578, + -0.00015931141596598044, + 0.00010408023445775976, + 0.0011296541744060164, + 6.5082676488161785e-06, + -0.002213793526125386, + -0.0005124387493542128, + -9.74342661083846e-05, + -0.0006502245724262296, + 0.0004065283816015984, + 0.00018789822866408613, + 0.0005318710827390783, + -0.0011244862225080303, + -9.843867685430494e-05, + 0.001530578363598788, + 0.00032806301255962307, + -0.0012500560318800518, + 0.0008068535170515787, + 0.0009104872609724457, + 4.5469424395942774e-05, + 0.0023740347649895605, + 0.000808668049793506, + 0.0004928392830175658, + 0.00036282020729605936, + -0.0005524993862106005, + -0.0009004506022524439, + -0.0001250406103524139, + -0.001132081279354095, + 0.00033765340628494236, + -2.0385983862998595e-05, + 0.0012105265009422499, + -0.0020373000881307116, + 0.0002330683472575695, + -0.0010529757001541188, + -0.0026684211409163526, + 0.0017837340388172662, + -0.0006555067325563043, + 0.0007018839180394053, + -0.0009795527855606522, + 0.0007034602113248666, + 0.00226468431482109, + -0.0006196427684462601, + 0.0010388827064113037, + 0.0008790003448427491, + -0.0018724238767776986, + 0.0016835980623994202, + -0.0007557311381780848, + 0.0017174341153960138, + -0.0001881720358849571, + -0.0012363629429438553, + 0.00014724502464770795, + -0.0005967817793340999, + -0.0017690030600592207, + -0.0010033430408388838, + 0.0014116750978680089, + -0.0008679416415689682, + 0.0011102427816870905, + 0.0011196579120122112, + 0.0005735173995920985, + -0.0008472981879152819, + -0.0008366165194399446, + -0.0006424422249765185, + -0.00024393908707101393, + -0.0001244679606409823, + 0.0020060891322725696, + -0.00021233762708132285, + 0.0017815620684137484, + -0.00042609231321134324, + 0.0006141798569623964, + -0.0006639168510015933, + 0.0005467071772141366, + -0.0004797275964051827, + 0.0009101579633162192, + -0.0006459894048675645, + -0.00037257640647661366, + -0.0003029245721316128, + 0.0006414437406629035, + 0.0005880670278052728, + 0.0007873821198368815, + 0.002139348000008852, + 0.0014643621439594976, + 7.25703850454027e-05, + -0.00013206124440462164, + 0.00012848470989729012, + -0.0004227263296856066, + -0.0006564034300115121, + 0.0006031371206176275, + 0.0013395663674214146, + -1.8473315681659582e-05, + 0.0009454796827907408, + 0.000795034839371586, + 0.0005643113614296862, + 1.1458998504919546e-05, + 0.0009528550990933012, + 0.0006466961520689234, + -0.0013769496057708937, + -0.0008019950587967705, + -0.0002006855607800146, + -0.00044402564548780927, + 0.002553896724513826, + 0.001429597043467394, + 0.0012504938792266625, + -0.00030417639049298866, + -0.0001503833150617484, + -0.00019187105150454058, + -0.00031794159988367043, + 0.0004046005361619549, + -0.0008689957643267143, + -0.0007751860995803515, + 0.0002573228404323334, + 0.00131585440767996, + 0.00035637370640458283, + -0.0014062150903479055, + -0.00021506721000441855, + 0.0009129303531423193, + -0.00019802366824420224, + 0.0007287289173733798, + 0.0003664255923884009, + -0.0015908006078683204, + 0.0012812824203924944, + 0.0004762362276968797, + -0.0006175223670872605, + 0.0017171547873418385, + 0.0013177849965086861, + 0.0004609201509669587, + -0.000636275462447756, + -0.00022181272891956522, + -0.0004860835867272129, + -0.0015431552900779164, + 0.0010157155186157555, + 8.384874913364913e-06, + -0.0022003358247471953, + 0.0017516822857354156, + -0.0007296985270800716, + -0.0018544526066314614, + 0.0008413972474362151, + -0.0010121533334243712, + 0.0008977089127787828, + 0.00043695845526902526, + -0.0001270331939564472, + -0.00024952127985397913, + 0.0013929189423087264, + -0.000632739572583471, + 0.0012262815675275584, + -0.0014463762941345942, + 0.0011969387859215135, + 0.0010139566388496202, + -0.0011095346460981233, + -0.00022750706571733324, + -0.00018804975859120957, + -0.0010788918407297027, + 0.0006163301261866656, + -0.0001634685808988138, + 0.001209912805722195, + -0.002659324913627653, + 0.0010507187176326432, + 0.0008706167946335917, + -0.0012477960773050122, + 0.0002424210081173168, + -0.0005516303680711787, + -0.0018026047855402314, + -0.0009691210993947504, + -0.0002498870275022445, + -5.225427835150992e-06, + 0.0001320395790238926, + -0.0018242067548793102, + -4.5445615357434126e-05, + -0.00020079617830415708, + -0.0005067514816701942, + 0.0006805749171862209, + -0.0011467334430734816, + -0.00134818535826861, + -4.000701296655254e-05, + 9.510494960404052e-05, + -0.0016987921224142799, + -0.0011212671687610574, + 0.00016182424071245239, + 0.00030180751415431013, + -0.0008738618905945097, + -0.00042051130417933335, + 0.00013399475130515282, + 0.0014269538988957576, + -0.00028563566146197673, + -0.001538114270770824, + 0.0002452656409936184, + 0.0001091361615895872, + -0.0006352989534583433, + -0.00019709482580536477, + 0.001815829284812415, + 0.0014863776606531438, + 0.00021304097616593732, + -0.00045688655891213786, + 0.000519119094484015, + 0.0011073516133247247, + 0.0002459726577723135, + 0.0012992759395594384, + -0.00018608907784751873, + 0.0008206178486815109, + -0.0014393305725788593, + -0.0009420952782408943, + -0.000106406300381771, + 0.0001659087729265652, + 0.0003684643520026587, + 0.00018854580467610687, + 0.000447384404010978, + -0.0007250239822652038, + 0.000300500596909111, + 0.0014951456119357278, + 0.0007693855266453203, + 0.000608130386694872, + -0.0009419099401658967, + 0.000394142050196356, + -0.0003264144042109948, + 0.001089928430658076, + -0.00018227778630054117, + 0.0002595073859460528, + 0.0006896995950358722, + -0.00021177396222842775, + 0.00030330160250243023, + -0.0015813716870943647, + -0.0025346419449633257, + -0.0010378914828373027, + 0.00017991429068617797, + -0.0005024356961743526, + -0.000902908299434763, + -0.00043253292393898886, + 3.2593550461452554e-05, + -0.000971916358668886, + -0.002143200283407482, + 0.00026902995997568017, + 0.0009635269121446957, + -0.002142119684467751, + 0.0004366557976927534, + 0.0014166644537028257, + -0.0009804896281190088, + 0.0004019973178546629, + -0.00062610341845985, + 0.0005664872941845794, + 0.0005244804239627989, + -0.0014023341804215166, + -0.00016385225247000243, + 0.00031276897627344235, + -0.000841468560202266, + 0.00110103810290347, + 0.0005585548643618402, + 0.00042209482154667127, + -0.002047456498875736, + -0.0003612053413314929, + -1.4698225197797151e-05, + -0.0016003376690670373, + -0.0001004612092075541, + -0.00021035022219686268, + -0.0005540795409281844, + 0.0007138512478584124, + 0.0013979698108285662, + -0.0009816673630147455, + -0.0002041292777044633, + -0.0004722998892000093, + 0.0007050343318152107, + 0.000190877241034586, + 0.00018188175515734353, + -0.00012720771745731115, + -0.0008774489980259871, + -0.00044148988806275196, + 0.0006080097570423206, + -0.000188537914342244, + -0.0013352329910822037, + -0.0003642186433746423, + 0.00013332762497934598, + 0.0002728867696818614, + -0.0005192926661142978, + -0.0001767379170440732, + -0.0016779718694135111, + -0.0005710950524476865, + -0.0012001994674361218, + 0.0017816108535161175, + 0.0003423409244141015, + -0.0009978646060915313, + -0.0008018981015234798, + -0.0009962965167995407, + -0.0007473291423762364, + -0.0011219228596356034, + -0.0014986596190155526, + -0.001722050141701561, + 0.00229429217430404, + 0.0008929038775621137, + -0.00029180959223305754, + 0.00015880396942555554, + 0.0007104386982989371, + 0.00028673228454150824, + -0.0020923916342179215, + 0.0002885054409565847, + 0.0011707143940313267, + -0.0006849704355735021, + 0.0009264501714133015, + 0.00022653708991198616, + 0.000663767012498146, + 0.002610117530449907, + -0.0008236331565103872, + 0.0022387351668442827, + 7.31514849939929e-05, + 3.2798513680106555e-05, + 0.0004382462774872855, + 0.0003169342627248736, + -0.0003370164733668951, + 0.00101621756588477, + 0.0002858144313756998, + -3.752067645479931e-05, + -0.001160829140767746, + -0.0004095177348319679, + 0.00019440443049001326, + 4.1557081050137774e-05, + 0.0006712621337085641, + -0.0009697774385234184, + 0.0014417764493191972, + 0.0003004624964337338, + 0.002118595502012883, + 0.001117361603141845, + 0.0018565230772310602, + 0.0007284352116729267, + -0.0013099641927609125, + -0.0026904739881791206, + 1.1328378760481472e-06, + 3.3896878948003236e-05, + -0.0013561268734602686, + 0.0007943263331190525, + 0.00033454048948213726, + 0.0004563082149416879, + -0.00127680514158798, + -0.00041506774359991073, + -0.0012407359099361334, + 0.001927909604047435, + -0.0006093975883320961, + 0.00035673302718777235, + 0.0003574668193792334, + 0.00024366743528909723, + -0.0018216790046960175, + -0.0005882207147303211, + 0.00020664584549704888, + -0.00013057660642231403, + -0.0003579240437848589, + -0.00015671131056324477, + -0.0019667630241909234, + 0.0007173069156390745, + 0.0012176240064491572, + 0.0011699032667580123, + -0.00022475969857516619, + -0.0003319038053953, + 0.0009157692692667857, + 0.00010511589853770866, + 0.0019154683254815556, + -0.0007084240858907752, + 0.0011126529128677842, + 0.0009208214591908968, + 0.002726152373971731, + -0.0008435360133112632, + 0.0010647642248646338, + -0.00011588845565872413, + 0.00040190928346350494, + -0.0007110817976363628, + 0.000989527522272785, + 0.0006342489366676532, + 0.0018792755603577356, + 0.00028024915527671336, + 0.0004304511397844444, + 0.00040824507531053245, + -0.0009857646731250005, + -0.0009771961987549468, + 0.0010189298735427434, + -0.001340224950216132, + 0.00026021684041570466, + 0.0002750377319240482, + 0.00035363101951111357, + -0.0007017643610869721, + -0.0002530116980056903, + 0.0007561661946889019, + 0.001284217466325744, + -0.0024554125740775716, + 0.0006064276606196361, + -0.0026595958021479412, + 0.0008008000091089038, + -0.0011009800860320843, + -0.0007533383015586599, + 0.0015140518443298413, + 0.0004999647056944941, + -0.0016417008877083242, + -0.00043145994758721174, + -7.210441075043162e-08, + 0.001794692240922303, + -0.00045031932532312886, + -0.0001126120382376579, + -0.00018618730597959245, + 0.0004687882019564298, + -0.0012683289218580246, + -0.00010249444862500662, + -0.0004277369121565318, + -0.001101842377782821, + 0.0001479834050216282, + 0.0003915418841186371, + 0.0005136470747143289, + 0.0014027990267728072, + -0.0009294513277130409, + 0.0006235823655864837, + 0.001548331139671327, + -0.00036053240687628125, + -0.0005021760293711275, + -0.002001948890619978, + -6.509045742854899e-06, + -0.00024250929454369577, + 0.0015782509765314544, + 0.0011995418607585089, + -0.0008745727022865683, + -0.00014879176311513524, + -0.0011799232069409024, + -0.0016960676860857643, + -0.0011374961419333824, + -0.0005344576353282002, + 0.001095821176795178, + -0.0017820916683385453, + 0.0005108777504676928, + -0.0008735429769146127, + -7.151070896104539e-05, + 0.0011565230389116768, + 0.00036072099820840225, + 0.001243282441963039, + -0.00031813845416906654, + 1.9951062827124287e-05, + 0.001318381572826376, + -3.982012297092679e-06, + -3.7978166371625076e-05, + 0.0007779329756749063, + 0.0018803720404833345, + -0.00037768898665115584, + 0.00023724523704473112, + 0.0002642366064965282, + 0.001243004777867005, + -0.002168612715485521, + 0.001322006257457387, + 0.0004896220885760361, + 0.0009170410683236268, + -0.0014947382586198018, + -0.0009649186989794586, + 0.0009205624160361918, + 0.0004388894431166028, + 0.0020410052564639627, + 0.0007715372877425752, + 0.0007627900847671227, + 0.0013142425766801183, + -0.00038755736546448443, + 0.000629458468688454, + -0.0003662344336885999, + -0.0003379377961187284, + 0.0014643445023604677, + -0.000702482554368167, + -0.0010372845106553924, + 0.0015284460008341066, + 0.0004103096430424406, + -0.001032550657460313, + -0.00010424370219662623, + 5.2630077858666565e-05, + -0.00014460863240206006, + -0.0011504344573038487, + 0.0007494388957368272, + 0.00036398297585981516, + 0.0008181195360469584, + 0.0009214888073520355, + -0.000162120057957732, + -0.0004680976448359527, + 0.001946096443749578, + -0.0003061940480984437, + 0.0015799973756416988, + 0.00044919507653670384, + -0.00025382745461145285, + 0.00040211111049425163, + 0.00256388650806712, + -0.0007961903952110704, + -0.00042465060673956484, + -9.14787582963835e-05, + 0.0004084272880433602, + 0.0009174841009083313, + 0.0014944804831477014, + 0.0010505667060865531, + -0.0006502684171805022, + -0.000977144386611978, + 0.0016196069760195286, + -0.0018410410735274422, + 0.000494148510818571, + 0.0009262769053095737, + 0.0006684638750611176, + 0.000903348848294256, + 7.046734308056385e-05, + -0.0008421684537428144, + 0.00015938506939302833, + 0.0009640211079311771, + -0.0033688255974265863, + -0.0014604249420422455, + 0.0015843509342613807, + 0.0021358104007634555, + 0.0016193262267935888, + -0.0016058040398684843, + 0.00039604966472115257, + -0.0010184829289109241, + -8.693590722064546e-05, + 0.0009692071555424253, + -2.4011683258587696e-05, + -0.0004812936682533527, + 0.002425669833196007, + -0.0009620417659678435, + -0.0010695178355759436, + 0.0008206602033884932, + 0.0010836542829876705, + -0.00030904890517557466, + 0.0018741912697991952, + -0.00055203950151789, + -0.00043811399059244185, + -0.0009099924441403068, + 0.0007292759191767654, + -0.00012132492171632567, + 6.479312557396114e-05, + -0.0016390961420922842, + 6.460453215590736e-05, + 0.00032656535945330324, + 0.0012106729559742467, + 0.001421436033211804, + -0.0008130254497262692, + 0.00014887359577358674, + -0.0008417501377520041, + 0.0010648599528403579, + 0.0007904612163497468, + 0.00019477188877853416, + 0.0020946396237429728, + 0.00023427141035955936, + -0.0017854377301372748, + -0.0001694239500986536, + 0.0016898956112690754, + 0.0008735066079788168, + -0.0009436969466938487, + 0.0009728439917390306, + -0.0005821528817903685, + -0.0005619546204267358, + 0.0017727699273255638, + -0.0009510655691568182, + -0.0019963812718179898, + -0.0025959292126753485, + -0.00013363958663705107, + 0.0013978044850930433, + 0.0005989992456943917, + 0.00034393131849056103, + 0.000699929837541098, + -0.002025791955696721, + 0.000265949614604873, + -0.0014333621060770609, + 0.0025866320539738048, + -3.244184637110185e-06, + 0.00036094081892434795, + -0.0004061598769303685, + -0.00025851844382351896, + -0.00016978676024106227, + 0.0024812720759203196, + -0.0010018723388130763, + 0.0005469083651309429, + 0.0015821397926420924, + 0.0007168800191633259, + -0.0007282550197280762, + -0.0006328328073742619, + -0.0005150809168622914, + 0.002750086707148638, + -0.0008517682352144598, + -0.00010251578654149366, + 0.0010436010237911497, + -0.0015185957443393963, + -0.0009360527966580038, + -0.0003110853126526294, + -2.8573111628070583e-06, + 0.0013997945593994254, + -2.9364939617452094e-05, + 0.00038761184818510386, + -0.00010470173259512821, + 0.0004290696430128744, + -0.001642914690294761, + -0.0014642762560815965, + 0.0015546232833970701, + -0.0007796415523304567, + -0.0008679688796976734, + 0.0022103810341161955, + 0.000348228837332411, + 0.0013125092853495174, + 6.842625450198349e-05, + -0.00047436899567570255, + -0.00022013026715939988, + -0.0012535339671352935, + -0.001523348167082572, + -0.00038390868156241374, + 0.0007945285322293532, + 0.0007574062344048908, + 0.003558615983102008, + -0.00020495425482590216, + -0.0013471978669995456, + -0.0007405599391066903, + 0.000601828913886717, + -7.480013020725228e-05, + -0.0013290040217790828, + -0.0005268637794223627, + -0.0006956400993031179, + 0.0002471855663032847, + 0.00015750516962478812, + 0.0005507801174011429, + -0.001112716950819593, + 0.0023897249774593593, + -0.0002441502269873142, + 0.0004906291981679835, + -0.0008381856620964735, + 0.0007151802192318778, + 0.0007263047801777168, + 1.422302077920859e-05, + 0.000926060514637613, + -0.0021364630604466836, + -8.761210904137463e-05, + -1.7578715648135922e-05, + -0.00022614331186997184, + -0.0012287159029206766, + -1.3697848361134341e-05, + 0.0001665437859012434, + -2.533731592928888e-05, + -0.00035124042946494625, + -0.00088444214884431, + -0.001112510622298578, + -0.001237640451052715, + -2.1384672245810295e-05, + 0.0006785048799702278, + 0.0015184610392780975, + -0.0003490026288515567, + -0.00029303010968627894, + 0.0012587515782349166, + 0.0016864473879033787, + -0.001830944515002053, + -0.00029313309936785113, + -0.0026227352497161568, + 0.0006257910181674272, + -0.0011245533313200828, + 0.0018911708850953008, + -0.0013793426651233281, + -0.0004882183311235666, + -0.0006763973331321345, + -0.0015617738241589887, + 0.0006369599586626845, + -0.000703576088449516, + -0.0011166938725041412, + 0.0001293279182177053, + 0.0012397632442762558, + 0.0010928733658864638, + 0.0009507446808617388, + -0.0010321512100305908, + -0.0006561887562055445, + -0.001406136494026578, + -0.00041547553507592514, + 0.0003644299477297355, + 0.0005272766182353227, + 0.0010970762553978704, + 0.00024908944826814274, + -0.0012397826325983591, + 0.002263610595893462, + 0.0007878709752757361, + 0.0003323172147487219, + 0.00022745210295737673, + 0.0005259134910468897, + -0.0014802013992577165, + 0.0007272164097654218, + 0.0005431338903763188, + -0.0014373654363627184, + 0.00030226624761275716, + 0.0001503210945554013, + 0.0007971140393302223, + -0.00015714479114096596, + 0.0014296022095218333, + 0.0005178739029175293, + -6.35737333337981e-05, + -0.0011913470770732713, + -0.00036508363735917037, + -0.0008328121211277351, + 0.0002905738622381344, + -0.002294277921377389, + -0.0006050820622869966, + 0.0007753362560085412, + 0.0009700984451353674, + -0.0015797108130679509, + -0.0007442289717301771, + 0.002063464540310377, + -0.0008337894220568002, + -0.0015476249231817978, + 0.0005372341925509786, + -9.712554399021475e-05, + -0.0003341543389786581, + -0.00033092163518090437, + -0.0010899119388314152, + 0.0002946178821005206, + 0.0005443151717781717, + 0.0004371398937166027, + -0.00018762491706623952, + -0.0005242334056786565, + 0.0003266238235419937, + -0.002785172041174267, + 0.00180091139906357, + 0.0013355943111254798, + 0.0005756242772627214, + -0.0014411748827808872, + 0.0006759566571140188, + -0.0010757949943180085, + -0.0007844969999729613, + -1.4894248011527565e-05, + 0.0009871792821941406, + 0.0005942629228431432, + -0.0007842303549069994, + -0.0012780179339363326, + 0.0012454517616857896, + 0.00022626782005085705, + -0.0012035643913628526, + -0.002299194041254451, + 0.0018992060280718932, + 0.0006766476658442874, + -0.0006235920661509385, + 0.0013850135250791213, + 0.0004273604485846383, + -0.00041503441127226266, + 0.0005069186323071284, + 0.0007089174457376794, + -0.0013494906203273106, + -0.0005542763920650677, + 5.529110926166521e-06, + 0.0009517870304450625, + 0.0011180583377635622, + -0.0016437173428224434, + -0.0003553552491446512, + -0.0003873033474879661, + 0.0004468932779563405, + -1.5785521211141177e-05, + -0.0002954998560332294, + 0.0008441554357716528, + 0.0005139200534167576, + 0.00013043788416063304, + 0.00015828331880827985, + -0.00048578337987950187, + 0.0006074329411101697, + -0.0001712983129469019, + 0.0007119848497950082, + -0.00019678961298235964, + -0.0013273428492823166, + -0.0007936769685683391, + -0.0008008326435273383, + -0.0011886270040316217, + 0.0015532868080178873, + -0.00037194595043182525, + -0.0011748135827589754, + -0.0006186901420122532, + -0.0005000678205576992, + 0.0014517360606727198, + 0.0006869629047726866, + -0.0016860258541409438, + -5.2686920761236336e-05, + 0.0004862760530018516, + 0.00016294281976048629, + 0.0007401543615424505, + 0.0009573169181252603, + -0.0005780097081434316, + 0.000312743779477393, + 0.001506859963045649 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgb(195, 226, 175)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 4", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 0.0012878708550621623, + -0.00023553883548678057, + 0.0006301217354896346, + 0.0006581773739279949, + -0.00010408068832771299, + -0.0009961720087409962, + 0.002429056670076534, + -0.0001527356982634971, + -0.00096472758108272, + -0.00045403769850273516, + -0.00027807015576871097, + -0.000479809118805495, + -0.0010466830336601893, + 0.0004453378772602189, + 0.0011116654669481466, + -0.0004021272115980826, + -0.0005102808848130889, + 3.8729245910954646e-05, + 0.0008090427211161428, + -0.001152263392248982, + -0.00039309925612592456, + -0.0009997374072779114, + -0.00020593274705657264, + 0.000886301406569014, + -0.0014795696648299344, + 0.0012586277336107594, + 4.92797065797839e-05, + 0.0008606607742101411, + -0.0015381744740838538, + -0.001670410742464297, + -0.00032692506255555746, + 0.0007127762923279004, + 0.00017634978187253288, + 0.0009590427687236406, + 0.0010637571829405375, + -0.0002591970607177648, + -0.001238392703039846, + -0.0005524674454384371, + -0.002103126812936375, + 0.00043437071690760945, + -0.0025458164119843527, + 0.0004452708511651977, + -0.0011990854623461192, + 0.0007130409778771179, + -0.0020756638014171, + -0.00021954069013129405, + 0.0007436265267447969, + -0.00045101433604896563, + -0.0009635573111624574, + -0.0008646934869589775, + -0.0008414737687750631, + -2.622661740645562e-05, + 0.00043138846533062245, + 0.0003358169165795232, + 0.002431288051388599, + 0.00014439948337751095, + 0.0005830291749347385, + 8.811840345960062e-06, + 0.0008792023820543079, + -0.0007248332021901991, + 0.0005067398360960875, + 0.0005375074538891046, + -0.0010782461686508775, + -0.0009208063239873013, + 0.0015612721893987764, + 0.0018599787701800137, + 0.0009051441720629666, + 0.0010781368356236772, + 0.0011344970338296864, + -0.00041593278118266016, + -0.00026725934802732495, + 0.00020200521611095005, + -3.3309230850119215e-05, + -0.0009414001616593578, + -0.0007034824089111627, + 0.00183570072668198, + 0.0005546484968992316, + -0.00012329932045471845, + 0.0009935186099753, + 0.0011071498551810987, + 0.00145827915487664, + 0.0006163497803207301, + -0.0006029109467392122, + 0.0007335455144676831, + -0.0006016891512100516, + -0.0007536928242391953, + 0.001034274246120894, + -9.847404072477428e-05, + -0.0004952031432672744, + -0.0007032789610249371, + 0.0020033989972201836, + 0.0018027233165007575, + -0.0004703139763408286, + 0.0005107084306554323, + 0.0006783917721465291, + -0.00043492128987989104, + -0.0013465935418635181, + -0.0006697598293782964, + 0.001885007568681777, + -0.0008567800825666809, + -0.0004412564490479909, + 0.0005874344161016193, + -0.00025876662087807737, + -0.0016014688365223954, + -0.00014460215471540848, + -9.314459729404634e-05, + 0.00022513894158274518, + -0.0017878211657053986, + -0.0009168966134520208, + -0.0017600757419590015, + 0.00013192916283445073, + -0.0009284457857198227, + -0.00028703694692601694, + 4.7941274631079936e-05, + -0.0010747705899739823, + -0.0012403800803368209, + 0.000325628564376494, + -0.0003009328901546366, + -0.0011063035921074294, + 0.00011634438591849621, + 0.0012177363457942254, + -6.37285885574961e-05, + -0.00047205939188254404, + 0.000489552807010757, + -0.0013551513448665726, + -0.0009648781436929963, + 0.0005982965894519597, + -0.00029987222895760653, + 0.0010016793430685114, + 0.00048600270200829576, + 0.0006731850881073815, + -0.0012187768831101251, + -0.0013260311552568665, + 0.000712916967638754, + 0.0003540604549967532, + 0.0011190645177278809, + -0.0006565225421198949, + -0.0004332627224416748, + -0.0004336532221724074, + 0.0001759995409931512, + 0.00016282831449272877, + -4.82052996998581e-05, + 0.0007337228363513918, + -0.00048098559399616954, + -0.0017015862176158816, + -0.0007112757037700716, + 0.0010774924172320488, + -0.0007163453084956914, + 0.0009118025949580965, + -0.0005516024200256813, + -0.0004897780527135632, + 0.0004960777834246843, + -0.0014177244289713894, + -0.00031616756215594117, + -0.0004615145002152928, + 0.0001658992374252505, + 0.0008270709240004526, + -0.0008596819055119962, + 0.0005201990034490325, + 0.00086380949570854, + 0.001286624200341268, + 0.0014610884634395412, + -0.0004771145138305547, + 0.0013611938945454704, + 0.0028954293466169, + 0.0010588212508869865, + -0.0002287950962048081, + 0.001823694930651885, + 0.0007969261620054423, + -0.001466630225871133, + -0.0009360355799338392, + -0.00019352525429207758, + -3.130041482947412e-05, + -0.0003922539569893617, + 0.0011473257630216834, + -0.0007336716913909644, + 0.0005909208923741926, + -0.0007469709454790513, + -0.0009108409705733749, + 0.0013218323482735337, + -0.0008377113124485712, + -0.0005594173631240241, + -0.001317735073990341, + -0.0004045603331335792, + 0.00019962485911930117, + -0.0007164562212385623, + -0.0016356228232130747, + 0.0005385439258487966, + 0.0009514330850892421, + 0.0020892076379961785, + 0.0002928154512609477, + -0.00010938447470601166, + 0.0005292879028626604, + -0.0011840306654061154, + -0.0011198176325283107, + -0.0004967363013218721, + -0.0001297358799606129, + 0.0017682523640977306, + -8.259793904396017e-05, + -0.0006162708672588068, + -0.002349709923467164, + -0.0003283502096264909, + -0.0003764598005480321, + 0.00046228380920140615, + 0.0022064905271713645, + 0.0006040573470710259, + 0.00016406381062359382, + 0.0008944522889243882, + 0.0003097589233567878, + -0.0018446390630957863, + -0.0016498240426646366, + -3.9478346707820863e-05, + 0.0013706855209197285, + -0.001110495371705376, + -0.0007597232243316893, + -0.002114961666162835, + -0.00021129612914939724, + -0.0006701486646377057, + 0.0017357919468778782, + -0.00014286035535863602, + -0.0001941326208367354, + 0.0007055248750207862, + 0.000628364971816922, + -0.00043522016146611104, + -0.0010750895664690225, + 0.002370922802868075, + 0.0009168630132704377, + -0.0017103030487787998, + 0.0011726360671172208, + 0.0009358128513327413, + 0.0013310025286831526, + 0.0006499933652641418, + -0.0015727421442042406, + 0.0008911627157963145, + -0.001199659098321034, + -0.0013389809540536404, + 0.0013048674384298021, + 0.0017739385770932587, + -0.00027720555636384506, + 9.105376164983135e-05, + 3.070347461936159e-08, + -0.0010400132263376314, + 0.0004521742735943701, + -0.00021375833314154802, + -0.0004099961199407572, + 0.00019705424703920165, + 0.0004945709643297021, + -0.0007287820504051012, + -0.0011776686884175539, + 0.0014027540591486547, + -0.0005575521399101861, + -0.0006308019301559071, + 0.0004641632544563311, + 3.5399256101034725e-05, + 0.0005627763999764253, + 0.0007634254464243802, + -1.3595277314050962e-05, + -0.0007439111845906854, + 8.816121937232552e-05, + -0.0001812757612646976, + -0.001041632006180606, + 0.0005203105959162994, + 0.00018767896622872186, + 0.0016230055428327222, + 0.0008015848960590511, + -0.0012140008686465382, + 0.001700373973132311, + 0.0013323867183892607, + -0.001977565551000603, + 0.0007399552086123678, + -0.0014928657054647393, + 0.002007696044706234, + -0.0007818466741344095, + -0.0010601693014754211, + -0.0006594221612887145, + 0.00030551512567590134, + 0.000503805814560758, + 0.0006837497053619444, + -0.0003384390791744818, + 0.0005672321473590791, + -0.0007188581858162268, + 0.0009448180307553944, + 0.0007850419647429863, + 0.001106263612036253, + 0.0010031286242651457, + 0.0012913556909718822, + 0.0016019329981475277, + 0.0022621632762958575, + 0.0012980642819339588, + -0.0005581741526697436, + 0.0005512229187863764, + 9.478267691989174e-05, + -4.131423310975255e-05, + -0.0008192467814128695, + 0.0012043884736228608, + -0.0001904683832498971, + 0.001046926488941517, + 6.857889113952901e-05, + 0.0007338000174284328, + 0.0011194548378557947, + -0.00014313557848210994, + -0.0002258373101364591, + 0.0020925943639353056, + -0.0002663466871554782, + -0.0007102218685214928, + -0.0004791270704207863, + 0.0009921976590797524, + 0.0002818578521200952, + 0.0015882384353110666, + -0.00010031780889372135, + -0.00033973070303563476, + -0.0010939506371176703, + 0.0004066448239398994, + 0.0006677314234326458, + -0.0017322024467548666, + -0.0008648084174550805, + 0.001459255449089184, + -0.002284865974997087, + 0.0013186801182572616, + 0.0001673667718362454, + 0.0012888024710358582, + 0.0007161723850013357, + 0.0009165417171918123, + 0.0013198329640604959, + 0.0006255308850887003, + 0.0006203378953340489, + 0.0021669159442043243, + 0.0015161554414575883, + -0.0007935645140422894, + -0.0008704048527287751, + 0.0006620136888235554, + 0.00044050217543701014, + 0.000597814342151944, + 2.8445364792651398e-05, + 0.0017646237324615622, + -0.001210730619887219, + -0.000945710374194555, + -0.0019003616869349795, + -0.0006208825259135344, + 0.00044909568880005583, + -0.0010843108463033688, + 0.0007644975582601552, + 0.0015285600419655922, + 0.0016936831059927296, + -0.001280925629988473, + 0.0010997080393767454, + 0.0006271178632484579, + 0.000686063853520915, + 0.0007851226433271477, + -0.0009021141808139226, + -0.0029976200849362736, + 0.0011339583797109946, + 0.0009790593048100889, + 0.0015141524269431596, + -0.0006494009655833657, + -0.0004476735224352178, + -7.827703130446978e-05, + -1.2788599268928372e-05, + -0.0018871543950064302, + 0.0002622218326208135, + -0.0003368278497428632, + 0.0011220457353459143, + 0.00026330939403762505, + -0.0022163768902724143, + -0.00045702270107443344, + 0.0016851510665843504, + 0.0009590572839504747, + -0.0007858762362365375, + -0.0006146422444084721, + 0.0017001867049526152, + -0.0008302230317367154, + -0.0007374978324849495, + 0.001297379498654708, + 0.000991778446000834, + -0.0006077001688193396, + -9.890010595922272e-05, + 0.00021724715911378611, + 0.0005669004478371888, + 3.6641020349633617e-06, + 0.0003994609294269563, + -0.0009706562322706952, + 0.0006431667256392795, + -0.0006360877141200923, + 0.0012329252325825942, + -4.861211305484579e-05, + -0.000258091801670109, + 0.00047484529617237026, + -0.00013171858096616056, + 0.00081320798754314, + -0.000794317939941006, + -0.0008473226007513052, + -0.0007636262509750155, + -0.00019990527105205187, + -0.00024574820159940574, + -0.0004696611002852865, + 0.002189963355343948, + 0.0004573595915713723, + 0.00037970736537077206, + -0.0005254325253980276, + 0.0017347235470892416, + 0.00011053288142797739, + 0.0024115826133777724, + -0.00013512186416943795, + 0.00044043277436920606, + -0.0012854736310377022, + -0.0008589068350108631, + 0.0007836777571593483, + -0.0005224562361390182, + -0.0009762640618591924, + 0.0018511841224838966, + 0.0014829748739124383, + 4.307675570564577e-05, + -0.000447667801646377, + 0.00022546566700132917, + -0.0004943563443865985, + 0.001465471719980036, + 0.0004043673004655593, + 0.0015295288950871375, + 0.00016258504464271173, + 9.582449447066233e-05, + 0.001775277990821866, + -0.00016952543753811543, + 0.0002188523923323898, + -0.0015695061723704734, + -0.0013015848341578478, + 0.0002750426009911152, + 0.0026138466130763943, + 0.0011840276159607067, + -0.001222779572165061, + -8.138709631429611e-05, + 0.000146326767731438, + 0.001180236457568625, + 0.0001634060189054248, + -0.0004916992725586822, + -5.608449475525742e-05, + 0.00038356210100409175, + -0.00034000981582668567, + -4.73824639152646e-05, + -0.00022031439714189927, + 0.000711023090409523, + -0.0008234195817024331, + 5.835724246894757e-06, + 0.0007315220926503276, + 0.0018799342036781373, + -0.0013219716716238279, + 8.985953262276535e-05, + 0.0018669198721084758, + -0.0005616694276612879, + 0.0005541517141775604, + 0.0002357984108958094, + -0.000264676167490081, + 0.001824357237597088, + 0.0005377577371938236, + 0.00043617136554066616, + 0.0002526996681055445, + -0.0005367104363290852, + 0.0006976374623303231, + -0.00040148904344593597, + 0.001408902271738122, + 4.024705775008776e-05, + 0.0006825381299268356, + -0.0008488499628440257, + 0.001735293682084476, + 0.00034724609869632016, + -0.00015246710377954696, + -0.0006372346535192302, + 6.230995813855048e-05, + 0.0010875627516810347, + -0.00034558094619665657, + 0.0009160444041575683, + 0.00042651127640002556, + 0.00016600561248474824, + 0.00044951293265609027, + 0.0017467546751208636, + -0.0009529896790622664, + -0.0001999063898242386, + 0.00026490234662655734, + 0.00022268300509123196, + 0.001751221244660234, + 5.7287841194742696e-05, + 0.0015275945977415368, + 0.00031180348347226747, + 0.0007986359336255709, + 0.001473751112505277, + -0.002388227112994923, + -0.0011157320711927608, + -0.0007087274669940443, + -0.0003383703554487519, + -0.0019038089943586402, + -0.002500859571352878, + 0.00020498306086958867, + -0.0010894521724985444, + 0.0007848339134206778, + -0.000558924664546561, + -0.0018829309518665733, + 0.0013552821362307575, + 0.00045017276353310673, + 0.002799477058571264, + -2.2401381900184912e-05, + -0.0006096727841614047, + 0.0014446533861797839, + -0.0003517869049482088, + 0.0009901502099169163, + 0.000803933263642373, + 0.00035055571853534424, + -0.00019862992869541676, + 0.0010672274860094163, + -0.00037257754875217024, + 0.0005144655616613156, + 0.0012402105755638915, + 0.0005008938205444017, + -7.792330635764407e-05, + -0.00010839349658342635, + 0.00208515214621542, + -0.0021237494336259727, + -0.0008574151719533416, + 0.00021226751605842026, + -0.0004729349343294125, + -0.001158136943021616, + -0.0008591334399384162, + -0.0009576505287624858, + 0.0002481051472971234, + 0.0016044318247322579, + 0.0012036477730156512, + 0.0006308303847769788, + -0.0007646157884609637, + 0.0008947054629303918, + 0.00023596435203404218, + 0.00020114929449959278, + -0.0005079209437758916, + -0.0005505500730898483, + -0.0007632777716099217, + 0.0002837429460710391, + -0.0007128364305835564, + 0.0009985893051040423, + -0.0013561244019526229, + -0.0008187566580431728, + -0.00031392748156983667, + -0.0012896245224471733, + -0.0009302712819810691, + 5.198238076531303e-05, + 0.0011669431587386539, + -0.002313376446932083, + -0.0012050175176738826, + -0.0016240857961008662, + 0.0019589782255866168, + 0.00019731152834787625, + -4.778142849759379e-06, + 4.0239137489979056e-05, + -0.00034801756148153135, + -8.707809328110106e-05, + 0.0005161122874204271, + -0.0001341343527968926, + 0.0009750051378516223, + 0.001746813818526088, + 0.00018382270841079217, + 1.0313615159348985e-05, + -0.00024412569746786874, + 9.906149808230815e-05, + -0.0015901381949925946, + -0.0007304690172874376, + -0.0014294123244128012, + 0.0008282269193405005, + 0.00017348383717334174, + -0.00045351135080374866, + 0.0005106566884621601, + -0.0007954467910813436, + -0.0018004907769546292, + 0.001454540172034186, + -0.0003609196328329495, + -0.0005366487357471766, + 0.00017697187754589177, + 0.0015259166745355379, + -0.001380194295203564, + 0.000836322687722781, + -0.00045451048637786104, + 3.4055697176501044e-05, + -0.00012549616534756743, + -0.002165301434302016, + 0.0005251187988807266, + 7.104472028609634e-05, + -0.0008402099443658276, + 0.0007924742350810699, + 0.0011332132367920724, + -0.0021237572540878076, + 0.0009789785941072182, + -0.0007172297591851824, + 0.0022947888016745764, + -0.0009972787322558884, + 0.0013590657238524595, + -0.001835198556376015, + -0.0003411562984083007, + -0.00033290954158546684, + -0.00037751508092104345, + -0.0009360494219451836, + -0.0005102621241437836, + 0.0008969084661393195, + -0.0010827825409004323, + -0.0010948139557954968, + 0.001106222650112146, + -0.002259461730621677, + -0.00019602554192515501, + 0.001077751874245976, + 7.23064807285131e-05, + 0.000770234732552195, + 0.0022944771574407914, + 0.0009347457786095843, + -0.0011412091107356442, + -0.0013078555006109912, + -0.0006939918084305964, + -0.0011932879354346947, + 0.00024879971619787744, + 0.0018259060890569302, + 8.584913116893095e-05, + 0.0016676581031464172, + -0.0016744629657189844, + -0.00041172388888034494, + -0.0007522424571024164, + -0.00022857558858684998, + 0.00028784245003787357, + -0.001242347103672217, + -0.000530276565346576, + -0.001059304741788426, + -0.00030288338548587954, + 0.00027944502833164087, + -0.0006794015179506659, + 0.00048360729149951435, + -0.0018230363052461431, + 0.0005625878562578372, + 0.001048015952301071, + -0.0001280098347078686, + -0.0004435389105461859, + -0.0005390412809013602, + 0.0006764964257336964, + 0.0006372235585843647, + -0.0002039493851529559, + -0.0008393743671029615, + -0.0008888874311433045, + 0.0006892194250191137, + 0.0006949744404903518, + -0.001357050918027894, + 7.597048466024466e-05, + -0.0002947851007435244, + 0.0002773095877969067, + 0.0005816553637087922, + 0.0008474052242508299, + 0.0004430939779207069, + -5.332058583252575e-05, + 0.00022298497656419796, + 0.00014793482316082223, + 0.0015911643348360824, + 0.0012719280933258636, + -0.0008833225722606744, + 0.0014215091807425482, + -0.0014481066847127602, + 8.384295014870986e-05, + 0.0003388394659963385, + -0.002420659955805056, + 0.0005936603116793061, + -0.0007393322795299497, + -0.00028778247465139695, + 0.0011625162788207507, + -0.0005436069972848431, + 0.0007500129711187916, + -0.000984496828556229, + -0.001430640379376776, + -0.0018889644118454845, + -0.0005921577113108498, + 0.0009446244055671232, + 0.0012003079039186078, + -0.0003406598317767691, + -9.755372284824685e-05, + 0.00025904198417875537, + 0.001338619461837988, + 0.00014974211832802424, + 0.0009017747405131102, + -0.00040659719127117183, + -0.0013547652625349052, + -0.0003814212047376245, + -4.147320396326139e-05, + 0.0021917199493884532, + 0.000999366392190595, + 0.0004944455574166059, + 0.00037781375214701184, + 0.0012367136187183966, + -0.000248944897811168, + -0.0005395271792621838, + -0.0024510765001865883, + -0.0002645200986854951, + 0.0009391573448988839, + 0.000850807021763682, + -0.0006826307121110404, + 0.00012557313594749176, + 0.002417651594719624, + 0.00024853160595727136, + 0.0010620358213619169, + 0.0006224245980328946, + -0.0012015539721645801, + 0.0007517860700532928, + 0.001091252831408061, + 0.00031317866031868585, + -0.0005866242518609716, + -0.0013323087728870984, + -0.0013158780169076208, + 0.00034115754844111807, + -0.0007726185316091444, + 0.000573477405217463, + 3.628552140468834e-05, + 0.0009386485759178219, + 0.0015423225304524067, + -0.0009312273104883704, + -0.0005719539817821105, + -0.0001946234660713176, + -0.002700738164704372, + -0.0011097299575452755, + -0.0008705051809392853, + 0.001458526897060889, + -0.0018459709893641563, + -0.00027654590998296366, + -9.013150552348276e-05, + 0.00012291222340480182, + -0.00014457971801976754, + -0.0020471870473098923, + 0.00038680824250356284, + -0.0008107818801461474, + 0.0020654703412531514, + 0.00013710755902259652, + -0.00012635378344705715, + -2.9380576077717003e-05, + -0.0015243323001517596, + 0.0021632241477184885, + -0.0007640850588632237, + 0.00011526194064316508, + 0.0017506045823123052, + -0.001040758579411985, + -0.0014778793308839592, + -0.0015704937219603954, + 0.002454874857528938, + 0.0005156294968423725, + -0.0019299133363175492, + -0.0007973401938002536, + -0.0007848002581573397, + -0.0005286332888998958, + -0.0008630848148277135, + -0.0002438159901143498, + -0.0011319522353099645, + 0.00040568117125295536, + -0.0020877923741222113, + -0.0015029787016075968, + 0.0003386887103806255, + -0.001830072243798838, + -0.0014351386925662392, + -0.0005009445879730589, + -0.00039548396648733355, + -0.0009612539861704981, + -0.0011958542904645312, + -0.00039663053817207296, + 0.0012486900028530782, + -0.0015506665899602974, + -0.00031948046371855555, + -0.00017472115566614875, + -5.773680522507365e-05, + 0.0009000587214912585, + -0.0007348308942339279, + 4.3293194493553255e-05, + 0.0008364516514317515, + -0.001018670105662579, + 0.0004211970805239683, + -0.0011376351345513704, + -0.0002604283587985751, + -0.0002865641017552107, + -0.0004474641901811294, + 4.531043669634324e-05, + -0.0004848521411243678, + 0.0007292514801735331, + 5.591444447191203e-06, + -0.00022630420347331917, + 0.0004428679125191053, + 0.0002615975914505055, + 0.0009234047948222785, + -0.0012950322394224979, + 0.0011895694830036084, + -9.675361303620975e-05, + 0.0014590816559473458, + -0.00021798419593116821, + -0.00045653604218182553, + -0.0008743930432221623, + -0.0013952389904491442, + -0.0009456457003168316, + -0.0013816359842592828, + 0.00036382448772204526, + 0.0006462266339139255, + 0.0021174262234186815, + -0.00012400133193361693, + 0.0004374174642854989, + 0.0009999709862665903, + 0.00019167583565264106, + -0.0021596481280874843, + 0.0017069823200832636, + 0.0005728389370582372, + -0.0005343141009287104, + 0.0008240343141526063, + 0.0008190575096673245, + -0.00015267826017124976, + -0.00016252217782686314, + -2.9893928291338512e-05, + 0.002041132396645942, + 0.0006115824237366483, + 2.7921515344025828e-06, + 0.0019234101776023041, + -0.00040420681893744, + -0.00015191007607646512, + -0.000705226341444568, + 0.0010273681138929175, + -0.0008283352181775228, + -1.2033705826132057e-05, + 0.0003283169668616083, + -0.0011089892098373186, + -0.0011358769989559267, + 0.0005612942986917985, + -0.00029556073625959766, + 0.00126935533120291, + -1.1755523685290646e-05, + -0.0013855244982603487, + 0.0015021051362840373, + 0.0010376499512765303, + 6.671101682262111e-05, + 0.000579396968058827, + 0.001186241133278756, + -0.0006715872869941845, + -0.00035686934180123765, + 0.000555114289819549, + -0.0014531744293434983, + -0.00045462575288233927, + -0.00013856462032130562, + 0.0013106733944181115, + -0.00036074368733307973, + 0.0001858251811257562, + -0.00010190735563578209, + -0.0001889786089074041, + -0.0014856523499486953, + -0.0007082544009093847, + -0.0013160159112737188, + -0.001681369525872486, + -0.0024293655252879197, + 0.0005984110943000845, + 0.0012009193900176796, + 0.001628878005532657, + 0.0010737168853255665, + 6.137056257027121e-05, + 0.00016365132107071243, + -0.00019624533859061795, + -0.0008776519535825512, + -2.2870789910266763e-05, + -0.0010492166326976022, + -0.00036022767831738275, + 0.001982782681800143, + 4.83276523798441e-05, + -0.0007590449030128929, + 0.0010239821755862507, + -0.00010331542257191708, + -9.132391572626972e-05, + 0.0008709298101432465, + 0.00047972221961090013, + -0.0008304856458332383, + -0.0008493435411264115, + 0.0006320842830438867, + -0.0017608658700366344, + -0.0004853750982836261, + 0.0009412498705111185, + 0.0004657232629277594, + -0.0009037265898754147, + -0.0012647861557463205, + 0.0009409596747493593, + -0.0007482097435011809, + -0.0003226835237489455, + 0.0003802374421523083, + 0.0015483189209599484, + -0.0008647699301155481, + -0.0009914442223296692, + 0.0008046923126154411, + 0.0014843067953221232, + 0.001410452313234094, + -0.00044037342839865946, + -0.000806475303628691, + 0.0004467646609489609, + 0.0007751417547428704, + -0.000731627637524538, + -6.835389678925786e-05, + 0.001405010222788636, + -0.0005264174794474843, + 1.9936769042516006e-05, + 0.0007169355547207401, + 0.0008687136211738575, + -0.0011945343031240627, + -0.0006718530177851445, + 0.0011293578449579032, + -0.00039948716629170737, + 0.0007118314247655964, + 0.0022313554680750305, + 0.000465246382652829, + -0.002358636981397455, + -0.0007975243896194346, + -0.000920023652128667, + -0.00034014761837665095, + 0.0023908550249342425, + -0.0003519757450740095, + 0.0010233442126364944, + 0.0012082195104204344, + -0.00183821941184843, + 0.0004952676734348817, + -0.0001323742735906722, + -0.0009431956669701153, + -0.000914588519723022, + 0.0007305817250934797, + -0.0004662142561587467, + -0.0004976468389823085, + 0.0007609597579593194, + 2.128587966872874e-05, + 0.00016525315839730252, + -0.0011064917028908241, + 0.0010837438901587916, + 0.0005146373023782714, + 0.00017230020568405677, + 0.00042959351582677743, + 0.0005048643669154112, + -0.0006168847457455151, + 0.0005344636388787669, + 0.00122282389056016, + 0.0005889218118815208, + 0.0011150504650950567, + -5.2223983158897506e-05, + 0.0001319706378673401, + 0.00020312065515131955, + 0.00043888195626288253, + -0.00028083022595374815, + -0.0003251204931730723, + 0.00011136015053805559, + -0.0016397580604273522, + 0.0002324517198912364, + 0.0002808657444093635, + 0.0015334930183137211, + -0.0009355387376591987, + 0.000893324237492613, + -0.0009238907509713382, + 0.00124310860959242, + 0.0016514180310683705, + 0.00026693523416265773, + 0.00017687617038784193, + -7.26714055804118e-05, + 0.001541330599080581, + 0.0005841790269881369, + 0.0019806233897562264, + -0.0012406861598198093, + 0.0009549761131583321, + -6.534560174479572e-05, + -0.0006175957166927147, + 0.0010379501880727925, + -0.000730192172290413, + 0.00153538350305216, + 0.0009534870384671429, + 0.00047143587730778477, + 7.491109460011381e-06, + 0.0008195544833584766, + -0.0007882196383744557, + -0.00028358165329655534, + 0.000766793816189472, + -0.0007233946510001359, + -0.0021064584115060504, + -0.0011689971548469104, + -0.0001766120879350402, + -5.5159449471943997e-05, + 0.0007701010389310204, + 0.0009709692543210449, + 0.0007183197441855779, + 6.18439910280167e-05, + 0.002282277340730401, + 0.0009335293567560545, + -0.0009749981554539909, + 0.0008453462972586921, + 0.0005958226131253581, + -0.0004033556397155943, + -0.0012132454270161516, + -1.7382106265461522e-05, + -0.0006242184889469245, + -0.00016551170676190456, + -8.14165267706583e-05, + -0.0011765038481001894, + 0.0005081723585925627, + -0.0010779691393508885, + 0.0025050879209342325, + -0.0007782156601813777, + -0.0017889665646459642, + -0.0005026521424005973, + 0.00016589117859486954, + -0.0009809032676799771, + 0.0006340085375115262, + -0.0004639798241964138, + -9.866809204316012e-05, + 0.0018592934816004632, + -0.0004112695841125286, + 0.0011203831899861147, + 0.0006414731004285953, + 0.0014245010037976012, + -0.0014529773601122615, + -0.0017987374680565006, + -0.00033783259952824436, + 0.00013410990625536918, + 0.0013609510035921721, + -0.0008014360149565566, + 0.0017037021656526447, + -0.0009003848900151005, + -0.0002802187699289738, + 0.00038963565648648024, + 0.0009019753388567136, + -0.0003040684630249747, + -0.0006587252531709641, + 0.0005635978690678343, + 0.0009429259210338645, + 0.00038826831752047984, + 0.00043054684073762396, + 0.00014477868930336352, + 0.0011890484898402299, + 0.0010388987301424863, + 0.002313342319873869, + -0.001134302231574355, + -0.00015097073362008937, + 0.0006992634902959924, + 0.0020145373101550876, + -0.0004167850331253428, + -0.0010674799914575676, + -0.0008014302386266293, + 0.0005610601419880047, + -0.0002743190063780945, + 0.0004140148830036848, + 0.001020964190258762, + 0.0017074092720775651, + -0.0003135920316336197, + 0.0018364002468503028, + -0.00015607296111617037, + 0.00034117102080231346, + 0.0013279154552949808, + 9.136930738720031e-05, + 0.0005785873040491905, + 0.0009511735034821304, + 2.761459103488848e-05, + 0.0005548150443704557, + 0.00029041591955009485, + 0.0006493167164043868, + 0.0006881848628087305, + -0.0011859143898144769, + -0.00038767372187038264, + -0.00032747755773665407, + -0.0002650776012161945, + 0.0009681781476617453, + 0.00029893281675413185, + 0.00047034220821275975, + -0.0001917000692344949, + 0.0007567457246011726, + -0.0011139439941947485, + -0.0020077884477892986, + 0.0004278241861882905, + -0.0004570140856845621, + -2.3929300783253377e-05, + -0.0013367078217559694, + -0.0014649243541808967, + 0.0006032587444130442, + -7.471692786929013e-05, + 0.0010215854099624715, + 0.0009862033819462465, + -0.00035666691400653957, + -0.0003622222427913829, + -0.001237726777174816, + -0.0008228915602373104, + 0.00035198160548658054, + 0.0010564389849066333, + 0.00017273633767120723, + 0.00015260134994813542, + 0.0004285648698123567, + -0.000326238616815912, + 0.0012955928491479652, + -0.0029705984703266514, + 0.0004125396359568002, + 0.00013242703039263807, + 0.000849653152847197, + -9.223962566949607e-05, + -0.0012736103150230494, + -0.0016526578994689044, + -0.0016811731798656415, + -0.0005456168262187439, + -0.001426176288165137, + 0.0015176518538013823, + -0.0006757359045290039, + -0.00022526331749210743, + 0.0003564969827015156, + 0.00037242391917335747, + 0.0004173632137727465, + -0.0005472545791527467, + 0.002108324920477683, + 0.0006418958262402657, + 3.628406279194874e-05, + 0.0008480612438377028, + 5.18906844084182e-05, + -0.0022042370511177233, + -0.0008535666100540209, + -0.00038185209734992897, + 0.0012768735805081081, + -0.0004997113362365213, + -0.0012240899357091964, + 0.0006986789946743762, + 0.0005814825101834095, + -0.0007441462748465636, + -0.0012205442400458442, + -0.0007278738308896556, + 0.0003243507988882179, + 0.00010353471008652235, + 0.003052480590301398, + 0.0003701978570782784, + -0.0011641107348104483, + 0.000569915906611676, + -0.0002528433207035878, + 0.0007608144565147929, + -0.0011211533593713074, + 0.0003777754056269379, + -0.0001651282061044216, + -0.0005741753959555545, + -0.0001130401387712723, + -0.000514549534673166, + 0.00035943099232545195, + -0.00048262887463514055, + -0.0005166350814629309, + -0.001679402106274306, + 0.00038951547047101474, + -0.0008213495102861475, + 0.0003667035636789426, + -0.0009031578989076328, + 0.0004355152640528551, + 0.0004396034765773414, + 0.0002841768993654472, + -0.0005753570891499391, + -1.6092513177801612e-05, + -0.00024979300282926075, + 0.0018182163572443234, + -0.001291148778648523, + -0.0015192950991530405, + 0.0004800097919629742, + 0.00019062045241325152, + 0.0011565044167162566, + 3.7741672305892574e-05, + 0.00033795168335612176, + -0.000640503666681213, + 0.0009385117573167581, + -0.00199848053788627, + -7.088990205317846e-05, + -0.00016450453998163717, + -0.00014054920145090623, + -0.0005811081663282071, + 0.002166579625459635, + -0.00039118287006192735, + 9.301806250606672e-05, + -0.0006033705577140463, + -0.0007933472054699645, + 6.653195284759739e-05, + 0.0001392536538791336, + -0.0011729946195312838, + 0.0003593080216590934, + 0.0008294213774772169, + -0.0017252728575906271, + 0.0005179768693870729, + -0.0013272991752507136, + -0.0006178236833662258, + -0.000730912513518537, + -0.00043094685044922887, + -0.0003279716413835768, + -0.00011873514879510241, + 0.0004912709287400554, + 0.001743108278303608, + -0.00012996788579032432, + 0.0004348090865548823, + 0.00013989424389303822, + 0.00016207229213893026, + 0.0005271451877002643, + -0.0002003496757770858, + 0.00020745832143755744, + 0.0006762615299525364, + -0.0021266696834329898, + 0.0016407783021133544, + 0.0026405941730587904, + 9.786754462351824e-05, + -0.0004985970026028056, + -0.00012032871061891262, + 0.0013855549493025203, + -0.00039887095802504374, + -0.0021815613895344106, + 0.0018227010240098255, + -0.0006901027489592224, + -0.0011631303010353215, + 0.00039654516203022164, + -0.0005543445682006566, + -0.00010603294481355507, + 0.0011080070211361953, + -0.0012212154116763828, + 0.0010443321555957661, + 0.0006486180634792124, + -0.001059869695555227, + 0.0020147660967333825, + -5.713136268499473e-05, + -0.00022591945763149264, + 0.0009490988592058512, + 9.487088078914181e-05, + 0.0022326194608021607, + 0.0009336786820719994, + 2.146747582416044e-05, + 0.0016397831130401494, + 6.082346456202405e-08, + -0.001490522313261468, + 0.0019287750540325703, + 0.0012769370385611308, + 1.4554229679737668e-05, + 0.0002804887001643633, + -9.673446542930523e-05, + -0.0017123394072204106, + 0.00029307982391016505, + 0.00024564020169194796, + -0.0014440453671915466, + 0.0008460427871661132, + 0.0010627001791076176, + 0.0004103930400740631, + 0.0016033725844874368, + 8.408286011970564e-05, + 0.000279265894507296, + -0.0003461708837352291, + 0.0015118843781492977, + -0.0001559325628309097, + 8.525136042881716e-06, + -0.0009134472450330669, + -0.00017956841260219082, + -0.0015237148785826552, + 0.0004155504355133786, + 0.0007970826341351755, + 0.0019941813889628114, + -0.0007346933497275374, + 0.0013014792877882359, + 0.0019125746842347038, + 0.0014651939402909448, + 0.0015674157293866092, + 0.0005907188131709521, + -0.0008737372249517258, + -0.0005001301076269519, + -0.0006436574661139145, + 0.00044564388784009047, + 0.0009619418741547083, + -0.0011525593516118486, + -0.00029635739224682706, + -0.001202512868388681, + 0.0011918161192297754, + 0.0009289544583406312, + 0.0001784812168356638, + 0.00034233664745351983, + 0.00039157482030684567, + 0.0005775209088116946, + -0.0015198103858270566, + 0.0003520687391028243, + -0.00032453529740622794, + 0.00020596157195023744, + 0.0014318686544236856, + -0.00029013231028376745, + 0.0002018707258997992, + 0.0003097340826878729, + 0.002140305508636821, + 3.699026918734806e-05, + 6.874873528701258e-05, + 0.0019554231974936824, + 0.00024071772866135043, + 0.0025284879543177475, + 0.0011641919550779425, + -0.0020595432611778598, + 0.000891716291021828, + -0.0007946859128901019, + -0.001507435585757026, + -0.00019799894235210071, + -0.0005862252456197279, + 0.0019324885453846903, + 8.684223048108423e-05, + 0.0019510300452152004, + -0.001236687422281942, + 3.349812954802527e-06, + -0.0010270355915634884, + -0.0011796015403083243, + -0.00038468445854859297, + -0.0005209321447850946, + 0.0007490277522416925, + 0.00028285657527032265, + -7.782079893020491e-05, + -0.00099691421708157, + -0.0010489178973846758, + -0.0007668128315678887, + -0.0003282215410536555, + 0.0002317376494425151, + -0.000632018026105997, + 0.0006431944755951307, + 0.0001538517964516919, + 0.0013705220552673013, + -0.0007512793191464536, + 0.0004921093890289518, + 0.0006267259145556641, + -0.001236904841153024, + 0.0007003904370608272, + -0.00013050553060296282, + -0.00036454481966518605, + -0.00012391798301091927, + 0.0012614406864767007, + -0.0019651848918708493, + -0.001066452912231608, + -0.000420927569047054, + 0.00081246847887626, + 0.0002629759202901745, + 0.00044469716172683437, + 0.001269611297706237, + 0.0007115235776344875, + 0.0005427805587787298, + -0.001615216165402733, + 0.0003079506754934271, + -0.0014020827894141023, + -0.0018903672365799251, + 0.0002947368231772709, + -0.0005194169973690803, + 2.0443775883277745e-06, + -0.0005773247977025149, + 7.262636618133411e-05, + -3.957099883248893e-05, + 0.00011615610637832746, + 0.0003986564766680241, + 0.0004304202431456032, + 0.001639583057528353, + 0.0013392546017216445, + 0.0002133286916936441, + 0.0005771561631307241, + -0.0006917064952434115, + 0.0001517600346324265, + 0.0009774651732716065, + -0.000267398897883614, + -0.0004751798544889752, + 0.0008565161778537148, + -0.0003784133696760469, + -0.000851296134215468, + 0.0009243630964946243, + -0.00017073180869199827, + -0.0008428802366639031, + -0.0008330302222155142, + 0.0008040290047267671, + -7.15495170024769e-05, + -0.0010396308525499722, + -8.395421048131099e-05, + 0.00014962607438535352, + -0.0005779781883200332, + 0.0011907171899151572, + -0.0015712012106431192, + -0.00060958514727428, + 0.002176110993676498, + -0.00022300369221068172, + 0.0001130995488451244, + -0.0006672250773911878, + -0.0005392712357626733, + -0.0023605160067329163, + -0.0020090262291101216, + 0.00017553730736549576, + 0.0006973740328678243, + 0.0008884162351001439, + 0.000579011440645177, + -0.0002285221062009376, + 0.0006972918985489604, + -0.00012834164316563026, + -0.0017156056312168852, + -0.0016401432771004428, + -0.0010734574848231108, + -0.0007620526527132837, + 5.633827502602297e-05, + 0.0016724125513445066, + 0.0001288216583450889, + 0.0004627005152091788, + 0.000720981078381373, + -3.593082844634285e-05, + -0.0005476232896976551, + -0.0009310500592957817, + 0.000398846821178556, + -0.0002780792077918966, + 0.0009170063810255206, + -0.0014174663594748763, + -0.0008712408580731147, + 0.00010542528755803315, + 0.0017190536630029593, + -0.0009941170772507608, + 0.000720492531001457, + -0.00030298907553244004, + 9.028807118249002e-05, + 0.0017727608716047347, + 0.0014247293457695864, + 0.00026583044860158757, + 0.0010691034759723556, + 0.0006653358889128366, + -6.0289296643990396e-05, + 0.0007170246810325555, + -0.0001772635598047155, + 0.0010242516622548034, + -0.00012754571146043577, + 0.0006986279905977467, + -0.0004662650323473371, + -0.00027148621617442063, + -0.0011332946950846745, + 0.0004857604291582493, + 1.8392686292690045e-05, + 0.0010263561289250132, + 0.0006692695934926536, + -0.0010917229972155738, + 0.00010642375730265514, + 0.0001505600506550884, + -5.315643550322299e-05, + -0.0013117349253805252, + 0.0018266968300293695, + -0.0010168981355759142, + -2.090707796501901e-05, + 0.0006117082758057074, + -0.00043141510065777843, + -0.000675200630714386, + -0.0011100276013735176, + 0.000834122124232128, + 0.0017647333675279873, + 0.0005721938341880505, + 0.0010308241783285909, + -0.0020950842859250715, + -0.0007996268702325485, + -0.00046331539785424744, + 0.0007802610319530841, + -0.0022111436864162178, + -0.00020413724446541792, + 0.0002194445735454737, + -0.0005886538904392968, + -0.0008299263059211461, + -0.0004315881162397551, + -0.0018701744885482184, + 5.5827611433751075e-05, + -0.002287758541656858, + -0.0009916221663198493, + -0.00032620677079856083, + 5.524510685156676e-05, + 0.001036636705146271, + -0.001140519087703874, + -0.0002223606434355412, + 0.0003755719699740441, + 0.0006439801923375267, + -0.00011404258335382189, + 0.00251371480468376, + -0.0010295836417316135, + 0.0025031384622400256, + -0.00020629320280083464, + -0.00048640218694303466, + 0.00018256192264430552, + 0.0010684305265089731, + -0.00015727076155438118, + -0.00043371371051356016, + 0.0005092366110206641, + 0.0005978656964138574, + -0.00034364105792880335, + 0.001711346594461766, + -0.00028734994303640575, + -0.0010657257417652373, + 0.0006282300231981693, + -0.0006077072570183182, + 8.968189831397167e-05, + 0.0010740825577277863, + 0.0014993333093505743, + 0.00017409649045377676, + -0.0003643123592104899, + 0.0006136205565031417, + -0.0029550171038326043, + -5.4422216105728935e-05, + 0.0013334226592108664, + -0.0007508246072583765, + -0.0013941854304582574, + -0.0005905774425539237, + 0.00200543907885873, + 0.0008953891803911723, + -0.0007023162375861102, + 0.0004101627964129163, + -0.0011165800878538035, + 0.00034119427998366913, + 0.0012934921467422352, + -4.288524458159203e-06, + -0.0004095056802531749, + 0.00048760404975068024, + 5.1164780209833805e-05, + 0.0007519032045682428, + 0.001781119325887321, + 0.0012969307176218903, + -0.0010432538081608423, + -0.0003483401881634771, + 0.0003655288151099536, + 4.81401746414276e-05, + -0.0007372116627143661, + 0.0007437951092335851, + 0.000487167755924309, + 0.0005571561703812941, + -0.0002960969924137321, + 0.0016637409412377094, + -0.00023609044206923685, + -0.0005446138714709309, + -0.0029271161822800366, + -1.3876279745288146e-05, + 0.0015258308340250657, + 0.0027876124340834698, + 0.002130312712877964, + 0.0006166464591757542, + -0.0003635459677533737, + -0.0004373975549256638, + -0.0013170560900721343, + 0.0014706391137113337, + 0.0006858719923126346, + 4.1998200664075186e-05, + 0.00026241022251566434, + 0.00043421005330608956, + 0.0005955818331820132, + 0.0007160714201264933, + -0.001585259016945055, + 0.00187655245215351, + 0.0007449409036323872, + 0.0005880868914384926, + -0.0001490101263906837, + 0.00026433441986556866, + 0.0006024004540044645, + -0.0004030963456187832, + 0.0007100875424710137, + 0.0009490935119439741, + 0.0001806102354244134, + 0.0013206049333546444, + 0.0015819488914603141, + 0.00025593206588251174, + -0.0001919860395079832, + -0.00023196856346891957, + 0.0002736004728982768, + -0.000562476952793028, + 0.00024701479391206943, + -0.0006739696086320152, + 0.0003793219485343968, + -0.0007104914248624755, + 0.00047225099829307506, + 0.0011568018022847645, + -0.00037444032683480073, + 0.00024999861797823616, + -0.0007180845329182011, + 0.0015698682165246373, + 0.002350223835353602, + -0.0003610708012757299, + -0.0018486320042065774, + 0.0006501071635946506, + 0.0007269120126822176, + -0.00021292263099631685, + -0.000929171541346941, + -0.0010174648098872177, + -0.000434706191714284, + 6.468686654172092e-05, + -0.0007280274933216658, + -0.0002626831112414394, + 0.0006355756289539638, + 0.0005895551054632018, + -0.0013304046548541083, + 0.0005695062646713414, + 0.0003761493522762651, + -0.0012764377802444431, + -0.0013261958649585437, + -6.625994567448741e-05, + -0.0010284251515546778, + 9.483091526032493e-05, + 0.001237628522379248, + -0.00033832999864816504, + -0.0015563350603975223, + 0.0016573568742981944, + -0.001606688356168757, + 0.0009224999569706538, + 0.0006178164039575342, + 0.0009762236637908839, + 0.00086687627244328, + 0.0001379004826568866, + 0.00045705122626727297, + -0.0001579479306644462, + -0.0008365160930007844, + 0.0005762875441957301, + -0.001167512950292, + -0.0008983706160349432, + -0.001689038337171571, + 0.00028142285708987897, + 0.0013178926535026417, + 0.0004503473720088592, + 0.0014146533701613552, + 0.0013253162380101186, + 0.0004998232644834583, + 5.290342500448878e-05, + -0.0005012035274449386, + -0.00020088647731621861, + -0.0006707777446907511, + 0.0005071506396508677, + 0.0009239287990547452, + 0.0007545217951357074, + -0.000389014536252052, + -0.0010449636370830507, + 0.0010879145775940435, + 0.0003784889243694282, + -0.0001665967578268188, + 0.0004892879765644296, + -0.0001657206701506488, + -0.00024494191731663925, + 0.00036197834305822565, + 0.001223592408571795, + -0.0004523189159419235, + -0.0005376116294582162, + -0.0006206248471504681, + 0.00013909918755704905, + -0.00044896287863415113, + -0.0005627232648196806, + 0.000772123331121406, + 0.00010249726726378705, + 0.0009153971960275898, + -0.0009197282894971401, + -0.00045519562034976476, + 0.00016669430066948145, + -0.0003746876952879202, + -0.00040777272743272846, + -0.0011217160001924327, + -0.0007578837130124816, + -0.00020118211088882826, + 0.0005477454997083084, + 0.0015266859083543495, + -0.0007267286701718553, + 0.00031333267545393995, + -0.0003905004531857886, + -0.0002626409148692156, + 0.0006210975738909206, + 0.0005692053176784493, + 0.0002471904187534572, + 0.0004202334071888203, + -0.0008758805062718748, + -0.0008755113860840459, + 0.0005199381127051587, + 0.0004228147553757501, + 0.00046525874764905066, + -0.0003406667184536375, + 0.0010832769880539037, + -0.00020571028975966148, + 0.0017154072136917069, + 0.00046214639320422794, + 0.002296137800467784, + -0.000536557949295023, + -0.001363228464168958, + -0.0008845396748552836, + 0.0004523567416136685, + -0.0011675735141674787, + -0.0014157376609192404, + -2.1309482088694813e-05, + 0.0009819289953206152, + -0.0011217166984518376, + 0.0016886939708782495, + -0.0008606007177433313, + 0.0012413990173761869, + 0.0019678041325869784, + 0.0006577588725285937, + -0.00033212293355130306, + 0.00034161268359059497, + 0.0006357620049501744, + 0.0002684146348073688, + 0.0006768422271464937, + 0.0004255999739123123, + -0.00012083520404429209, + 0.0009282216996406468, + -0.0012642781564152301, + 9.636499595830557e-05, + 0.0011269621707507994, + -0.0013002593754769718, + -0.00041480480993879535, + -0.0007438234429205293, + -0.0004576224653695943, + -2.3006913923526054e-06, + 0.0004155419225138681, + 0.0005637195920429009, + 0.0018109672268161008, + -0.0006803468160840597, + -0.000978668247340769, + -0.0010457457607455367, + 0.0014532824324067525, + 0.00031428302620476503, + 0.0008473864881522489, + -0.0004038502249465877, + -0.00035168664208942344, + 0.0012497321081667272, + -0.0011779391596057173, + 0.0014459931863595066, + -0.0006917240395299719, + 0.0007826872417370597, + -0.001983922726816535, + 0.00031211658236380966, + -0.0016642731928292992, + 0.0006457684399964211, + -0.0008840307031810044, + 0.0002575626278183798, + -0.0007976613000731452, + -0.0017378999773860868, + 0.0006917324697463624, + -0.00042994369663791767, + 0.000646213143650333, + 0.0005808223879659657, + -0.0004837317110888426, + 7.006022750460564e-05, + 0.0010701231116745057, + 0.0001860455972480184, + 0.0010069395296796895, + 0.00037300559762443495, + 0.0004718674311970173, + 0.00026747394699864075, + 0.002056035210732013, + -0.00038258935503495556, + 0.0023023584826631664, + -0.0005729251626906213, + 0.0017414142876610909, + -0.00036285436448906016, + 0.00013914574695984334, + 8.537061468300811e-05, + -0.0006507929974028419, + -0.0009902075049961097, + -0.00014534835187156339, + 0.0008011601243841169, + 0.0006536570948133596, + 0.0010755835620837903, + 0.0027051487492524592, + -0.0010759480275824805, + -0.0006679509166157534, + -0.00035877333150166634, + 0.0009405242917487607, + -0.00047363856406517664, + 0.000746024185244431, + 0.0008578505689944092, + -0.0004050758003578346, + -9.191442198925878e-05, + 0.00039385712397631604, + 0.0007704332824512292, + -0.0010329516951823766, + -0.0008999030191037841, + -0.00022237595150884768, + -0.0006170706387995061, + 0.0012438346958089717, + 0.000694946855991502, + 0.0005006325292872363, + 0.0001946121960917966, + -4.925005804333845e-06, + -0.0004474654396015772, + 7.930547007301549e-05, + 0.0003868642891328513, + -0.0009500511580074082, + -0.0006867173363567777, + -0.0008464713881161284, + 0.0031039730624192858, + 4.886044059518839e-05, + 0.0005644991336594874, + -0.0013859159103341893, + -0.0005929312802932834, + 0.00026685278155860704, + -0.0002111085569876581, + 0.0014970386430557432, + -0.0017712281597664162, + 0.0014216532617942934, + -0.0021174234994814386, + 0.00041958815376622554, + -0.0010927797635086863, + 0.0011985900513689618, + -0.0014686443008694553, + 0.0002379946533815922, + 0.0018487841207025942, + 0.0009082972406576487, + 4.4636113454160615e-05, + 0.00043704650823309354, + 0.00021469217473028617, + 0.0009534277182634642, + 0.001220541186762788, + 0.0011204789244905668, + -0.0004430560544479446, + -0.00031927684284348783, + 0.0015054097103833221, + 0.00038278633429526983, + -0.0017937210931580892, + 0.0011230607620261348, + 0.0008848318830002251, + 0.00022407916705654885, + -0.001133343717793609, + 0.0004974920119606922, + 0.0006487392330315712, + 0.000959920496905682, + -0.00032528761024580994, + 0.0002954286334577505, + 0.0002356698530428147, + 0.0015135392704725607, + 8.582654792625309e-05, + 0.001731359287360543, + 0.00043657912063054026, + -0.00043448799756485104, + 0.0010832101711840533, + 0.0004469977825550753, + 0.0016393022211248422, + 0.0012508822087971571, + 0.0009069994169907739, + -0.0009854903871732567, + -6.738491853782431e-05, + -0.0008438089736984706, + 0.003040511913836118, + -0.00020127738260005096, + -0.0003268878345488779, + -0.0002638169084476959, + -0.0002654262262502875, + 0.0004553221851271461, + 0.00029780787837211943, + -0.0006797406250546596, + 0.0020352535359487007, + 0.00207371634853183, + -0.00034204153665693456, + -0.0014920248441876879, + -0.0001087936968271581, + -0.0011033652470752765, + -0.0004292118095880727, + 0.0022066913761092087, + -0.0009977770975421578, + -0.00016760414304673965, + -0.0007344645837178269, + -0.002090213893778146, + 0.001499253059072946, + -0.0018573102785715578, + 0.002444001168088495, + -0.00031095665778576616, + -0.0004933070493622671, + -0.0014633181920125245, + 0.0007661037672903099, + -7.562673989100029e-05, + 0.0004145956404444759, + 0.0011247962234635118, + -0.0006032649252224925, + 0.0015355817505588215, + -0.0005018120953866782, + -0.00040655889522591055, + -0.0006871751346987695, + -0.0005702592909882783, + -0.0007564936623216378, + -0.0004767695067898735, + -0.0004355374775725016, + 0.0010664629232728518, + 0.0007325651494028702, + -0.00041646303270053114, + -0.0012683802713499206, + 0.00035127573024596863, + 3.2498725038979416e-05, + -0.00025078749935329936, + -0.0016744168730469255, + 0.0009255207928369723, + 0.0022102186685992306, + 1.7559510323701414e-05, + -0.0007867432401042623, + -0.0019566281182925496, + -0.0005903922836065611, + 0.0005282682418484356, + 0.0009146066046952404, + 0.001518324171575518, + 0.0016983749134160187, + -0.0020420516925946904, + -0.00041014957257958873, + -0.002737283500868878, + 0.001050402802014528, + 0.0009813011138617368, + -0.0006465867017089623, + -0.001113692821570002, + -0.0023273432857858455, + 0.001242523924259801, + 0.0005133350231876415, + -0.00035948389691077066, + 0.0006515730282112115, + -0.001728159143126945, + 0.0015730412393557597, + -0.0003952895969778639, + -0.00022544452258179464, + -0.0006116980549704186, + -0.0018924072223298865, + -0.00041037608515875917, + -0.00048583050295111893, + 0.0006155232371486295, + 0.0016007363362547484, + 0.0007785983086166559, + -0.00024409210665449888, + 0.0007679124570879911, + -0.00028679009121127387, + -0.0003687245510402493, + -0.001666690539968886, + -0.00018626118816316038, + -0.00016162809430291967, + 0.0007524840790413286, + 0.0012899803383710563, + 0.002167000543415662, + -0.0006591150440894533, + -0.0005442472354968654, + -0.0011542360052475855, + 0.0006360180030806232, + -0.0007078695065471899, + 0.0001015864423232246, + -0.00018682020137399943, + 0.0008134969224366926, + -0.00014432568811629972, + -3.8203024611328e-06, + 0.000516772990578648, + -2.5487452561308505e-05, + 0.00083602622239238, + -0.0006928794062869177, + -0.0006527701063132219, + -0.0015461305740111695, + 0.0010056830973898855, + -0.0020942666082410274, + 0.0005385419780381823, + 0.0010671923788050913, + 0.0011852530484686764, + -0.00035331939919131807, + 0.00019502549202917677, + -0.0016562110631784346, + 0.0013191888226484689, + 0.0017196229565636806, + -0.0009416772335146618, + 0.0002568802988165745, + 0.0008464086249796074, + 0.0007409224982430108, + 0.0012315952276362762, + 4.3949033480048265e-05, + -0.0013702230270855355, + -0.0006792919640733166, + -0.0011108179604585986, + -0.0024027807087709224, + 0.0004960119102958906, + -0.001813473753139475, + -0.0002349185288989846, + 0.00034660169007418615, + -0.0007941480409042476, + 0.0014229509722838386, + 0.00019518810847198728, + -0.0007949942375118666, + 0.001400807976513943, + -8.12842648015443e-05, + 0.00013508436683492086, + 0.0014417808708860522, + 0.000378772462137583, + -0.0011046895738008025, + -0.0008882611913874892, + 0.00025669799672491415, + 0.0025933173863521607, + -0.0008459702665513126, + 5.149761488883737e-05, + 0.0011487586694216981, + -0.0014860015005643402, + 8.517123748599697e-05, + -0.0004998891593126572, + -0.0007976438989824416, + 4.3896401291477005e-05, + 0.00010758435413238098, + 0.0016518298141300863, + -0.0010196530598296837, + 0.0007091379536569979, + -0.0007133069535816812, + -0.0018742165286075784, + -0.0004045769528929075, + 0.0006748904542124681, + 0.001757745601615578, + -0.00011890960633063712, + -0.00010271534615162307, + 0.0013032470840092921, + 0.00041125377855313487, + -0.001305166998534857, + -0.0005521453893417717, + 0.0008062233654258206, + 0.0030786504471115293, + -2.2861534178959065e-05, + 0.0017366995810142699, + 0.0006920702948833313, + 5.4103632099657786e-05, + 0.001198834844659814, + -3.573000031922003e-06, + -8.09237760861293e-05, + -0.000371506005848875, + -0.00014198028653675325, + 0.00020757243036667098, + -0.0001422792297794209, + -0.0016796565172008152, + -0.0004916482754442175, + 0.0011471023341559571, + 0.0012413236314681197, + -0.0004509543834026801, + -6.219990317515942e-05, + 0.00033176940192359753, + -0.001928704497830712, + -0.0005887296276708093, + -0.0009144337161338149, + 7.978748570077073e-05, + -0.0022026527155974696, + 6.527982076363355e-05, + 0.0015753277972892492, + 0.0003632395022228636, + -0.0003234424517184052, + -0.0008067346032315295, + 2.729896681615207e-05, + 0.0004030638238344673, + -0.00031401947235481007, + 0.0008495230127960287, + 0.00011412395243138208, + 0.0004932191187614227, + -0.00048582959683132905, + 0.0009816623379415481, + 0.0006756043183105817, + 0.00045270975436274353, + -0.000751830261741521, + -0.00044365543690873445, + -0.0011341815010785347, + 0.0023070519466879976, + -0.0004382719866488848, + -0.001018960679058511, + -8.727789364469362e-05, + -0.0011897991745239186, + 0.0011074828446653495, + 0.0013159136833457712, + 0.0010715309699888946, + -0.0009656014397601501, + 0.0008265005774812823, + -9.948915980828967e-06, + -0.00033330749039548325, + 0.0006325785485342117, + 8.214343605144887e-05, + 0.001068509430054195, + -0.0014894665253088056, + 0.0012736805247660088, + 0.0005219867044718438, + -0.00038872129621062175, + 0.0014001965214772555, + -0.0011490483821123773, + 0.0002996616515409758, + 0.000798672100637385, + -0.000309945323523887, + -0.0006244892309762365, + 0.0029802559417434218, + 0.0004434365986832532, + 0.0004889718968611389, + -0.0018729053156029969, + 0.001405573175253757, + 0.0014950520016731293, + 0.0016948008408618784, + -0.0014062865248524585, + -0.0020750680309280876, + 0.0005003537335061857, + 0.000669087057778642, + -0.001221038371129248, + 0.00043851974913572845, + -0.0006706250709762307, + 3.408044118043779e-05, + 0.000710618220207835, + 0.0011333451938229102, + -0.0007215777035157556, + 0.0005174433316260862, + -0.0010775659650933368, + -0.000589899040965068, + -6.61543181639095e-05, + 0.0009415776541288087, + -0.0002478892596428069, + -0.00014002197462386647, + 0.00023240762640711738, + -0.000175911923955305, + 0.0006057491272360183, + 0.0019387024608126383, + 0.0005681285965741367, + 0.0001280259036012815, + 0.0014426374700978795, + -0.0009101578783801592, + 0.0013910525179000965, + -0.0007614481524008041, + 0.0011648967381662552, + 0.0010454252824402283, + -0.000736716459810265, + -0.00019292592143259644, + -0.001502062442450998, + 0.0002933201581719788, + 5.823887536861321e-05, + -0.0017683269634040592, + 0.0008538313129892646, + -0.0001943212420804147, + -0.00035487040279335284, + 0.0011929436548053214, + -0.0002867754136660252, + 0.0006044729136736709, + -0.0009790250126811343, + 0.0002746713059972119, + 0.00024813891652056025, + -0.0001899764023408396, + 0.0006373214233755371, + -0.0005732337301033437, + -9.90755234826322e-05, + 0.0014524586681033992, + 0.000536638073594778, + -0.000553913834347903, + -0.00035892586899493933, + -0.0005530194516179637, + -0.000829032213394943, + -0.002319130947440106, + 0.0003092128170312275, + 0.0008860303316466758, + -0.0002715697771111552, + -9.558299736645202e-05, + 0.0005731428695824436, + -0.0012859663704473294, + -0.0009412372594540031, + -0.0004331174717290989, + 0.0013721106522304606, + 0.00016026915342325524, + -0.0021434973483585055, + -0.00036432185084437274, + 0.0012556045901478642, + -0.0012505347063499217, + -0.0019212228420040765, + -0.0009134406481040899, + -0.0002714900681015126, + 0.0003280597479885204, + 0.0008508357178301739, + 0.0010146665950453283, + 0.002080346969960871, + -0.0009705249761286089, + 0.0003837489794637984, + -0.0007804417617474581, + 0.00034978718527047686, + -4.7698372572765956e-05, + 0.0006500836515209771, + -0.00010850800379972724, + 1.4287371117127996e-05, + 0.001076252256231218, + 0.0006961822319767089, + -0.00013953710589188938, + 0.0006823888816105162, + -0.0004177527461523892, + 0.0011732523821572222, + 0.0007599494480286087, + 0.001565661512484428, + 0.00029546790315511314, + -0.00023699817130997568, + 0.00044278431226628775, + -0.0016274662174556877, + -0.0001607435703807978, + -0.0005833446590773067, + -0.000968037081439408, + -0.0025648118211459496, + 0.0012110043619535413, + 0.0007193025823097549, + -0.0005776771800597406, + 0.0017964715008824594, + 0.0003941662104688755, + 0.00021568150565389084, + -0.00018222369448689136, + -0.0007546495124508482, + 0.0006997574701818913, + -0.0013680805865911372, + -0.0011211941871729486, + -0.0011560316609825095, + -0.00039225412975455164, + -0.0013585645377528763, + -0.0008219556581984715, + -0.00029066909806836985, + 0.0007628010491761821, + -0.0007281410603627487, + 0.0005615522635028695, + -0.0015042037383958776, + -0.0008364892437008077, + 0.0019681793040294457, + -6.254677510887135e-05, + 0.0002700986902573726, + 0.0001523863545947569, + 0.0013376051431337218, + -0.0013703642212491145, + 0.00021529675540306345, + -7.486027515047502e-05, + -0.0014293032594004957, + -0.0005514362418977993, + 0.0005726705981698307, + -0.0012479850434206176, + 0.00043136315817428393, + 0.0025378553037492596, + 0.0009757100993807986, + -9.472691353754364e-05, + 0.0015055684653727407, + 3.931134618955226e-05, + -0.00043851541858065337, + -4.1036544429463254e-05, + -3.842682783960564e-05, + -4.3250524568643224e-05, + 0.00129018671022347, + -0.0030086459643550193, + 0.0009217567354945855, + 0.000785018368149809, + 0.0012670415718882414, + 0.0007875895508526483, + 0.00018181705798076206, + -3.6991064192091853e-06, + 0.0006155158449542591, + 0.0012336471397443615, + 7.715513542238357e-05, + 0.0002197941329175255, + -0.0005864492104574435, + 0.0004598454588440684, + -0.00019190294029785708, + -0.00048807294422192004, + -0.0017370360648190698, + 0.0009771986608078664, + -0.001439525802027698, + 0.00018313138745092744, + -0.0010580568907313508, + -0.0007345220164723862, + 0.0011793979858195126, + -0.0008878739886988248, + -0.00010858477586699596, + 0.0013029622304863622, + 0.000659987991213686, + -0.0003326499335729999, + -7.969150181176944e-05, + 7.526777628483276e-05, + -0.0007202656987057851, + 0.001396569784280414, + -0.00045292822647700714, + -0.000438831497481421, + 8.429208031479423e-06, + 0.0006383311018976789, + 0.0001432219954091256, + -0.0008794825372134586, + 0.0006356437781460733, + 0.0001849379184373617, + 0.00036404414270894156, + 7.940992140712138e-05, + 0.00040063692561626815, + 0.0006308509681774953, + -0.0006189503860329371, + -0.0005427685317731339, + 0.0005697084461804421, + 0.0014045859584337723, + -0.0009759173240037042, + -0.0010088193758311772, + 0.0018960303312117782, + -5.825188009073909e-05, + 0.0004678371079239552, + 0.0003115902347709542, + 0.0012377277411283584, + -0.0001954128625998719, + 0.00016674869624721465, + -0.001464923011013419, + -9.736108605695745e-05, + -0.0005409635506695504, + -0.00026075421199933245, + 0.00016096688388816865, + -0.00042451795611181343, + -0.0006719611019264551, + 0.0006827369692636345, + 0.00032284673326642187, + -0.00013391479299982754, + -0.000923597796163585, + -0.0002885386957590647, + -0.0009566975376257862, + 0.0005367450047287716, + -0.0006880047740640894, + -0.0002378971837485898, + -0.0015241866204656156, + -0.000545716856755515, + 0.0010057484522171093, + -0.0020405865595726153, + 0.0010849099221871704, + 0.0007596157681280694, + -0.001475639601416342, + 0.0024409919578312683, + -0.0010725390801587045, + 0.001121313014246824, + 0.00011382948932185048, + 0.0003930158232060277, + 0.0006721417364515884, + 0.002066659348854288, + 0.0007439015243084137, + 3.2116050196290005e-05, + -0.0009743639273392011, + -0.002314148908537225, + -0.0017315444396056757, + 0.0005290868289741774, + 0.0005757463143595294, + 0.0018203972349010022, + -0.0002048093492187653, + -0.0019882929509317474, + -0.0008051745842583483, + 0.000832873909829012, + 0.0002707089169512266, + -0.0016738672762943898, + 0.00181378256735303, + 0.002171695296025117, + 0.0017116837232992938, + -0.0007005322861866137, + -0.0007602267247068059, + 0.001598379083539657, + -0.0007713503122972662, + -0.0006595661917908693, + 1.6036303371571794e-05, + 1.549850894058341e-05, + 0.0006672458076368972, + 0.0010804159695939042, + -0.0011418647317475927, + 0.0003029538501656355, + -0.00029534863945953526, + -0.0015144798233418825, + 0.002749099277906878, + -0.000593562259860837, + -9.586465421105964e-05, + -0.0001308329103076589, + -0.00026133845082829495, + 0.0017877580543388951, + -0.0005506448073121118, + 0.0015190768116289755, + 0.002100607435512208, + 0.00039743454180640573, + 0.0002512293169214053, + 0.0011621611089851565, + 0.00042094742591658745, + 0.0005506990120583307, + 0.00045787215691683717, + 6.804005600364113e-05, + -0.0014721573633570079, + -3.3944070767212564e-05, + 0.0003353836778454074, + 0.00027540062822130703, + 0.000250570568427631, + 0.0001798875976213458, + 0.0017844812405691407, + 0.00015924514126987131, + 0.0006126033519844281, + 0.0021033643754724014, + -0.0010171233042226332, + 0.0012198673242134973, + 0.00030762808453295545, + -0.0005548400853897163, + -0.0003517005064024618, + -0.0017413860287663827, + -6.928546327441635e-05, + -0.0007134837633368578, + 0.0009267204354751437, + -0.001651013245699486, + -0.0015276134426585868, + -1.6227946546363065e-05, + 0.0006875569735571034, + -3.3157322824918105e-06, + -0.0019693129615744793, + 0.002199326494282608, + -0.00020603700785601966, + 0.0017720283254745123, + -0.0003313242891641789, + 0.000910195352676802, + 0.00045651095055703974, + 0.0008351033175933645, + -0.0004410152193419628, + -0.00012630723574614196, + -0.0013370727921135708, + -0.00035396990670544335, + 0.0014176571114269795, + 0.0013930930072078268, + 0.0004722999905004119, + 0.0014693965610438101, + -0.00042916566158147056, + 0.0005621070573505573, + -0.0005760705201069183, + -0.00012765475829311097, + 0.00038530765737376885, + -0.0007569419445913848, + 0.00020815713453087162, + 0.000593612351822954, + -0.0011531119791245213, + -0.000883389500892818, + 0.00011686364426042724, + 2.3673254115118476e-05, + -0.0008844460157940021, + -0.00030931797186430266, + -0.0002779891107953262, + -0.0007716662785516295, + 0.0018545762446522227, + 0.000316836916696387, + -0.0003817881651234466, + -0.0001454040015674206, + -0.00035183984571986887, + -0.0004290109731034398, + 0.001012284142362051, + 0.0007692591856941546, + -0.000687650724839588, + -0.0026482058689647663, + -6.620087198019601e-05, + 0.0007500136834095814, + 0.0003013815005643659, + 0.00014018763822672812, + 0.0009765105663566904, + -0.0006457958098827655, + 0.0003213169300759794, + -0.0006857899393825612, + 0.000877418202770739, + -0.000340835937923241, + 0.0009405984659241509, + 0.0008593863184912461, + 0.0015163770417988287, + -0.0018680747556735528, + -0.0007108099134894574, + 0.0008207114588319146, + -0.0006471453896947527, + 0.0016795494512058472, + -0.000871317424449607, + -0.00029658255814511464, + -0.0021662644178583393, + -0.0007183544710262316, + -0.0005958413043207557, + 0.00022023592952792235, + 8.854591715185243e-05, + 0.0006983350367500724, + -0.0013536435118818363, + 0.0013810568670779466, + 0.0013859067562158982, + 0.0010408008940697975, + 0.0016900175124781353, + -0.0002070896407100607, + 0.0011103312209492554, + -0.0009650876023872913, + 0.0012419614021689966, + -0.0010232246406937794, + 0.001179009535007403, + -0.0003813577468799026, + -0.0012825709386096778, + -9.638405421328937e-05, + -0.0019554313415493336, + 0.00013140597729061765, + -5.097658841204586e-05, + 0.001005563615664396, + -0.00015404432844152858, + -7.984771933036345e-05, + 0.0005847826459754031, + 0.0005803540257620482, + -0.0012039092358176959, + 0.001943794825560436, + -0.001298709004960633, + 0.00022102287352781906, + -0.0004605530350079147, + -0.00040311441637874733, + -0.0012324306643413851, + 0.00027626060798294737, + -0.0019480613053157977, + -0.0007578344766677275, + -4.919317638848016e-06, + 0.0011750387735194538, + -0.00022775763637681863, + -0.0006968743817363835, + -0.0013608140825012661, + 0.001538411887195385, + -0.0006622705826679073, + -0.001430241988332547, + -0.00012891324724551364, + 0.001539519513499533, + 0.0010948380766810809, + 0.001435236552428577, + -0.0005571121424959591, + -0.0006625731777781629, + -0.0012629909096832225, + 2.3327593382480507e-05, + -0.0008104408638140252, + 0.00022597474343200578, + -0.0006141172315833714, + -0.00035722733313017774, + -0.0008927313917654462, + 0.0016834575713991743, + 4.323180551106156e-05, + 0.0006399888089239227, + 0.000590283612262646, + -0.0005242379431548588, + 1.2442091154998977e-05, + 0.0008773026250528369, + 0.0003897574990135616, + 0.0012367960521980643, + 0.0008830816356103413, + -0.0013937208976184787, + 9.992860244225209e-05, + 0.0004821984082841701, + -0.0006407203277833426, + 0.0003861569765001049, + -0.0011653931248765438, + -0.0012932758707489235, + 0.001985031298876247, + 0.0007281592514124627, + 7.06413428931995e-05, + -0.00022228017011346844, + 0.00017485888263265204, + 0.00023878577267823903, + -0.0006312652688841843, + 0.00036606681444763744, + 0.0004819158369644572, + 0.0008091567020647278, + 0.001992337648651008, + 0.00028859014704786496, + -0.001207332305332751, + 0.0015792193633917518, + 0.001091840982151092, + 0.00016349956238119064, + -0.0004798322088795257, + 0.0014695431890058275, + -0.0001535008056017357, + -0.0007214202085622899, + -0.0002147096547969971, + 0.00148579236969923, + -0.00014908980750034473, + 0.0014681073436739768, + -0.0013933247638389754, + 0.0012175610428330392, + 0.00029115959242036264, + 8.104951358990204e-05, + 0.0028104310783185985, + 0.000898470216779737, + 0.0012963957581133621, + 1.2019094277023316e-05, + 0.00039887871028306145, + 0.001309997965690429, + -0.00022122351124894242, + 0.0008978620494293635, + 0.0008541264207681861, + -6.8169192989617265e-06, + -0.0005571453387280054, + -0.0004650500919993806, + 0.00044222048345225355, + 0.0001595742609433113, + 0.00033519405513611017, + 4.749395621650464e-05, + 0.0006688627350544909, + -0.0015422503864247553, + 0.0006767265424793942, + -0.0008118605281472501, + 0.002006351735427475, + 0.0020662311498204373, + 0.00016357777131296384, + 7.431175808237243e-05, + -0.00010938858781290496, + -0.0004487566207156841, + 0.0006384256053243702, + 9.00385980318124e-05, + -0.0023556046452070925, + 0.0009902928179931162, + -0.0007606926969610341, + 0.00044011964973954005, + 0.0013069778268202626, + -0.0012291331815587204, + -0.0007886872939892976, + 0.0015630567199437883, + -0.0006901481203194408, + -6.60580581846627e-05, + -0.0005819410191630573, + -0.0002916292450572172, + 0.0002772901938584163, + -8.867307947547425e-05, + -0.0002527194436678395, + -0.0017204153789815548, + -0.001344668107065351, + 0.0022833800725550395, + -0.0008509720303107863, + 0.0006584706121308343, + 6.327340506566827e-05, + 0.0016672313491822883, + 0.00037494968258890843, + 0.0008581673536921159, + 0.001156813185160631, + 0.0004062012108067546, + 0.001038448968650109, + -0.0009974712506253729, + -2.9385059134662164e-05, + 0.0005410553163273259, + 0.00012183518434963797, + 0.00010943509901799401, + -0.00010668994133985704, + -0.0010874529402470187, + 0.00013646520524175887, + 0.0007760833278297478, + 0.0006848954139354455, + -0.001933390486571139, + 0.000260622828014281, + 0.0004792762321968903, + -0.0018138343663319163, + -0.0009329712043942731, + -4.51569582223556e-05, + -0.00021169619188264108, + 0.0010489437225182211, + 0.0012008862000079561, + -0.000312915003465908, + 0.00037461686640326806, + 0.0004205562522097855, + -0.00023727106450829503, + 0.0002047945211978479, + -0.00030018605516235025, + -0.0013056300574065174, + 6.219385908185171e-05, + -0.0007152668617116499, + -0.0003704201860074468, + 0.0006454258722790297, + -0.0015019765193197189, + 0.0017652426051855425, + -0.0011089293777632792, + -0.00017641662971626447, + -0.00019787717893354358, + 0.000446075578841597, + 0.0010517376334796735, + -0.0027345529434203574, + 0.002830595714471801, + 0.0010436067828545601, + 0.00014119047278579724, + -0.0006494054680286921, + 0.0008059543272682357, + -0.0013022544367229589, + -0.0027568357514884253, + -0.000999063600721828, + -8.092567417104514e-05, + -0.00018948229364000493, + -0.001008010800876659, + 0.0007093274976979958, + -0.001097593389980581, + -0.0012032788805165031, + 0.000996410983161391, + -0.001084331129040611, + -0.0006486564434120376, + 7.749600202462334e-05, + -0.000519892893298179, + 0.000770090721626396, + -0.00017712598998314354, + 0.0007853768196128087, + -3.723864404557582e-05, + 0.00010672381062945289, + -0.0006392821447555979, + -0.0013840959668740107, + -0.0007827623699292418, + -0.00064565096628055, + -0.0003038016294392106, + -0.0003085340538149838, + -6.545078923184556e-05, + -0.0014843906290062465, + 0.0008099704258801589, + -0.00011058626504548319, + -3.52107276460381e-05, + 0.0001233792612752766, + 0.0009734262288108894, + 0.001190439093721866, + 0.00200238079563318, + -0.000352856905338311, + 0.00013355927962910804, + -0.0018521983737970228, + 0.0006739920799319837, + 0.0015451208442081733, + 0.00012016087670518232, + 0.0003466269705591849, + -9.331855818914755e-06, + -0.0006675925661375055, + 0.001396899830058125, + -0.0013217084338070437, + 0.00030270569088602386, + -0.0009049907602717835, + -0.00047428374232107146, + -0.00035594918478441687, + 0.0012604706574826838, + 0.0004819111486879655, + 0.000721213933054072, + -0.0008841751579305574, + 0.0009867943844729826, + 5.3591694187782475e-05, + -0.0006503995971833765, + 0.00032018135984425184, + -0.00015658406172815766, + 5.274765699579021e-06, + -0.0003813955892497758, + -0.0005702573062830622, + 0.0003063129220168738, + -0.00012470784135123122, + 0.0015074951693353801, + 3.2956844287557335e-05, + 0.0007703881715423223, + 0.0005565166632115152, + 0.0009069669888606224, + -0.0005340631838705842, + -9.71086494564866e-05, + 0.00016652079361663112, + -0.0015799570286807122, + -0.0002884746231072969, + -0.0006598026902722472, + 0.0010472793796788287, + -0.00016708077269041494, + 0.0009891234097519127, + 0.0005629287024826008, + -0.00044307396566573313, + -0.0009241807060414775, + 0.001375373042533029, + -0.0021265349535770153, + 0.0021107496131213353, + 0.0007719403773804556, + -0.0005331586280111576, + -0.0010636817943743477, + 0.002462566299862286, + 0.0008938947351640246, + 0.0010627000649178276, + 0.001264546835758891, + -0.0001430858931953322, + -0.00036333342739231086, + 0.0005040245009697238, + -0.0001657490271643572, + 0.0005943250000740832, + -0.0011163144041981543, + -0.0023129192597369304, + -0.001018267891353, + 0.00014820162110645876, + -0.0005583849245924568, + -0.00047931505440228846, + -0.00020901810646028872, + -0.0017153210125288138, + 0.0008326892046802803, + 0.00018450631814322745, + 0.0003650591614258385, + 0.0002455432461715907, + -0.0004775697497831601, + 0.0004549189215217869, + 4.560445862393727e-05, + -0.0006338920505529785, + -7.676650303415136e-05, + -0.0003725774131224557, + -0.0003205813375107155, + 0.0006280853967677863, + 0.00036530633296881596, + 0.00036084427800279237, + -0.0001294021487431137, + 0.000100207698751301, + 0.0008087889406538822, + 0.001404077664948341, + 0.0019018798626143597, + 0.0013792029266607479, + -0.0001526639747023215, + 0.00041283921970686763, + 0.00046422962351989417, + -0.0005104283314696025, + 0.00038607079785322345, + -0.0007511255379117103, + 0.0008621065434974189, + -0.0004611526217625331, + 0.0005648230247355937, + -0.0011962694983664924, + 0.0018317378643445993, + 0.0006587652582732003, + 0.0005683552828845131, + -0.0007476340817783222, + 0.0006784715543033694, + -0.00011928311977084635, + 0.0004529250809870564, + -0.0007584978568720618, + -7.658070559971969e-06, + -0.00011671086515769958, + 0.0012369427525197704, + -0.0005404387253565102, + -0.0008124561469710079, + -0.00015304847390923008, + -0.0010156961470841066, + 0.0013298970276790026, + 0.0002231541244948696, + -1.3462130786837939e-05, + -0.00035242305041531004, + 0.0006638166200322713, + 0.0005659504131768599, + -3.047163638927281e-05, + -0.00019106159638284666, + 0.0013720749355996275, + 0.00042009049684750023, + 0.0016424822614117954, + 0.0021197761232213197, + -0.0016124078738751213, + -0.001398324269453354, + 0.0001821631011831432, + -7.375389461739364e-06, + 8.420805337012609e-05, + 0.0015729260749026983, + 0.00026738231564163114, + 0.001648581914360777, + 0.0006055461292191359, + 0.0010381967636624947, + -0.00036761735443377203, + -0.00019155750650971798, + 0.0014578260758855038, + -0.0006223361727098365, + 0.0007224914858226252, + 0.0018644796243158213, + 0.001900130755250011, + 0.00036264849217318434, + -0.0006740589492760133, + 0.0015356820770237164, + 0.0007538969924013435, + 0.0001294022712607404, + 0.0021185224162859236, + 0.0007320685122835652, + -0.000141467806247334, + 0.00028818726991109957, + 0.00165403976812858, + -0.00027974356980997107, + 0.0016134808552933074, + 0.001315613028755425, + -0.0005801713619779085, + 0.0009928718024778515, + 0.000740592570745679, + 0.00022712367043525153, + -0.0029820960693425235, + 0.0005127886575992882, + -0.00012351000050377943, + -0.0007740001319371513, + 0.0008146894923544536, + 0.0003791825567533454, + 0.0008024431903472268, + -0.0002988165368458108, + -0.0007016097914847886, + 0.000960494361703853, + 5.745467271583534e-06, + -0.0006064962338265246, + -0.0007749093917073794, + 5.812509395079399e-05, + -0.0003015799757455017, + -0.0004343040603262557, + 0.0012569020810587216, + 0.0008212758881515393, + -0.0015369041005230174, + -0.0008937881601016068, + -0.0006667049269385028, + 0.00015628758589804836, + 0.0003046012963000835, + 0.0008900693095916173, + -0.0006355254709604693, + -0.0004791741848140483, + -0.0001867974147068191, + 0.00044975074610199015, + -0.001558047114961829, + -0.0003927966255019036, + 0.00043911117332175425, + 0.0011510192305397315, + -0.0011655148850895467, + 0.0008259301027769745, + 0.00030510505559930116, + 0.0018062937432003342, + 3.266022489856901e-05, + 0.0027685168528206435, + 0.001263168567567731, + 0.0010128646260335872, + 0.0006096697754274106, + 0.0008774814171748672, + -0.0003035558895437319, + -0.0006323418543268308, + 0.0008004404952062423, + 6.073945907961291e-05, + 0.0014649346433702657, + -0.0017316338874490687, + -0.0023839398496435047, + -0.0012586088455320964, + -0.000675038306247472, + 0.0013014414553251964, + -0.0008987417837579903, + -0.00022979314158411723, + -0.002341210675058874, + 0.0018209672743265987, + -0.00034704990382788877, + 0.0006816005139529054, + -0.0009545384722810892, + 0.0011829126481316136, + 0.0008448633529478066, + 0.0006834785579906926, + -0.0011255190714471708, + 0.0009860539519203036, + 0.00129221420163543, + -0.0004333702377567157, + 0.001374108443474598, + 4.0891589195290036e-05, + -0.0007882041523231869, + 0.00035807843192393055, + 0.0004146917353638658, + -0.0003463545985046798, + 0.0009262233291460144, + 0.0020915458598948986, + 0.00055490823842391, + -0.00010627884440286202, + 0.0008983072059073778, + -0.001569258664130797, + -0.0003535345078239857, + -0.0017171349275280335, + -0.0012913349954850493, + 0.0005275304106180892, + -0.0005713489413040826, + -0.00010442510717678319, + 0.0006731654399770024, + -5.559900706479052e-05, + -0.000504718061321424, + -0.0021613442162916646, + -1.5034044998885225e-05, + -0.00017666931560125987, + 0.0011314715894343017, + -0.00012371401684781592, + -0.0007271516757476716, + -0.0007372420110550401, + -0.0003674216773570187, + 0.0002131547541037959, + 0.0009435780413051167, + -0.0003724031262548714, + 0.0002049337505649494, + -0.0006243878927061638, + -0.0021065399292045364, + -0.0005689898056789802, + 0.000704293147096235, + 0.0008813327997456342, + -0.00012061595677987811, + 0.0009312070824045463, + -1.765606063651974e-05, + 0.0012780133226575072, + 0.0005204442292887271, + 0.0011474200794531952, + -0.00041621200804822865, + -0.0015805307866735498, + 0.0010057884867938002, + -0.0006059174242274861, + 0.000286930284700429, + 0.0015204572068002228, + -0.00025314108279485693, + -0.0015085137834595014, + -0.00046865316538870455, + -8.575425305343696e-05, + 0.0002419280509264832, + -0.0005489155240746355, + 0.0006897614569735156, + -5.817290565096332e-05, + -0.0008639039320284633, + 0.0003012434101337055, + 0.001910285450887686, + 0.0012341646656101454, + 0.0006708313733210764, + -0.0006361162926521117, + -0.0011728032535918474, + -0.001085696727318442, + 0.00045847047473448186, + 0.001085930676619312, + -6.370910885503792e-06, + 0.0012372114959275737, + 0.0005047289079242608, + 0.0005737151501188827, + 0.0028815326314919005, + -0.0007441299613699944, + -0.00034779174968042594, + -0.0010459151057719647, + 0.0009572686009381193, + -0.0008725029572376223, + -0.0008407691693181039, + 0.000785758279820467, + 0.00021580686027619045, + -0.0014373080386645754, + 0.0009342673678004001, + -0.0007398400180719713, + 0.0012709732228900316, + -0.0009633667854724939, + 0.0006547509762885522, + 0.00030350005785710935, + -0.0015698748931531868, + 0.0007908546499953723, + -0.0009170197532010201, + -0.0013804624294256936, + -0.0008374945720185393, + 0.00020845531380985548, + -0.0005940499733472185, + 0.001017179004519859, + -0.0009137713101204024, + 7.23257555934599e-05, + -0.00025667727755224624, + 0.0011121305152187633, + 2.2086090273904608e-05, + -0.002052398675441633, + -0.001233132615892488, + 0.002225298202510878, + -0.0016442880897690458, + -0.0007776496519613316, + -0.00038132271982335285, + -0.0002736082523018861, + 0.0013850880228224707, + -0.000954373053228605, + -0.000344626040972683, + -0.0013009563643818747, + -0.0002682891846515424, + 0.00044040139245718577, + -0.00022072710879601133, + 0.0005984263861333195, + 0.00045058654034326124, + -0.0011226761328185886, + -0.0001886760355273112, + -0.0006784636400990673, + -0.0005113206747991932, + -0.0011657250423925335, + 0.0007564614774283806, + 0.0005747119853019108, + 0.0007052961557858465, + -7.262454066611447e-05, + 0.001379571725721846, + 0.0005174879112237471, + 0.0007455821066278115, + -0.0008289127854025178, + -0.0005559465392837373, + -0.00045444896739837905, + -0.0005555639934270691, + -0.0015066789242312443, + 0.001271488138509423, + 0.0005789957212842685, + 0.00041893954765033015, + 0.00010309088159067172, + -0.00016800982025347256, + -0.0009976674939514945, + 0.001322259283358313, + -2.133247115727495e-05, + 0.0010808419310738401, + -0.0006473855602846022, + 0.0008490652337747972, + -0.0004069179491366801, + -4.301617474317167e-05, + 0.0007251701752127196, + -0.0005169782856819848, + 0.0007891467531570009, + -0.0005415107647100884, + 0.00013821533580995343, + 0.0001613517856085241, + -0.0015276745433027662, + -0.00017353730625796073, + -0.00012942859050214955, + 0.00045996900571050386, + -0.00033996833932050275, + 0.0014336865661513922, + -0.0010793475691574818, + -0.00018064946826454147, + -0.0002284578399010279, + 0.000580237899144713, + -9.939613431216424e-05, + -0.0018999844596687267, + -0.0009242090091976372, + -0.00012889902961934083, + -0.0007847254171736298, + 0.0007645874196133213, + -0.0007776366739492627, + -0.001997921842760315, + -0.0009661289839358805, + -0.001907379698348613, + -0.0003290008726985339, + 0.0018375281566994502, + 9.284633718707302e-05, + -0.0011067084258972158, + 0.0005707627468747322, + -0.0009435290736901443, + 0.001056675845438622, + -0.0009624524797040145, + -2.9038375368966652e-05, + -0.0013692277948142311, + 0.000687909714226233, + 0.0003536750492214561, + 0.0005990842057032548, + 0.0006937764915826994, + 0.0011280496554336402, + 0.00023695031052286983, + 0.0005922655029230238, + 0.0011614708287032822, + -0.0006379844612434566, + 0.0006827870817342388, + 0.0007837321292354232, + 0.00020394160788245262, + -0.0012543613818481578, + -0.00015742781985569987, + 0.0019240300725466514, + 0.0004826953334055798, + -0.0008357745561007433, + 0.00035419435694117573, + -0.0001492668018588858, + 0.0010180531654346361, + -0.001464518177212288, + -5.944639479073495e-06, + 6.123342907189341e-05, + 0.00038128210468592533, + -0.0013967673410015776, + -0.00032106555534843634, + 0.0001363131165875804, + -0.0028865869954809967, + -0.003069112374332812, + 8.747108767560167e-05, + 4.514278323509476e-05, + 0.0018173218614659361, + 0.0009109741305486393, + -0.0011539013046932757, + -0.00017561605372201687, + -0.0010490148784501163, + -0.0022891327249201614, + 0.00146145489387484, + -9.235263004765601e-05, + -0.00018764560890713965, + -0.0004025182437396315, + -0.0014559242043898273, + 0.0016969971900553217, + -0.00018139876143843735, + -0.00024956228263626546, + 0.0005452001563935614, + 0.0007474841013352802, + 0.000903803036592932, + 0.0004255984973357533, + -0.0012102413715973088, + 0.00010054167142227073, + -0.00042241143834747044, + -0.0007714339177291637, + -0.0002763064564506665, + 0.0008230525403967591, + 0.0004956932486556874, + -0.000378839878300373, + 0.00036422584546897123, + 0.00023627457334910086, + -0.0008614779302974015, + 0.00023039958489818953, + -0.00039973956155930614, + -3.217906984726433e-05, + 0.002181804340768052, + -0.00011168696363116616, + 0.0012846955216863022, + 0.0006299367908550638, + 0.00011248155433745011, + -0.0008675732885425608, + 0.0015451056419572443, + -0.0002717955172875594, + 0.0002900186817213372, + 0.0006981545236841696, + -0.0005245648014066315, + 0.0003834688778261519, + 0.00027329187591182554, + 0.0012203785856395833, + 0.0015223096617153038, + -0.0010758109800474225, + -0.001118888697518165, + 0.00021300294054700853, + 0.0018327808631657411, + -0.0003004879883883407, + 0.000492974639727383, + 0.0006186790288642404, + 0.00011696263175439479, + -0.0001676618399622593, + -0.0006026524548352391, + 0.0012793192023180678, + -2.900683830165719e-05, + 0.0007915966879860432, + 0.0007460638762196012, + -0.0010458243610375617, + 0.00010801973861389212, + -0.000160300032203106, + 0.0022722227193146156, + -0.00032238125385517825, + -2.2975237142478942e-05, + 6.572255079473413e-05, + 0.0004068483439680207, + 0.0006697321846439483, + 0.00036538768894314353, + -0.0013861741624145547, + 0.0009888470930235114, + -0.0016210841043350014, + 0.0003079318121003775, + 0.0013927530941640425, + 0.0013675414225718806, + 0.0007026058218836241, + -0.0014521923733552917, + 0.0001516424490589538, + 0.0008868622816129256, + 0.00036524000388769043, + -0.0005513601116523767, + -0.00017332739728552512, + 0.0004586727175568812, + 0.0009727756315207189, + -0.0002107938447581968, + -0.0010464566306728684, + 0.0011469218455477184, + -0.0012367127790049372, + -0.0009133124706330814, + -0.0013753207336532863, + -4.059268006678023e-05, + -0.00027899395611897284, + -0.00017659262520673504, + 0.00017187313387308288, + -0.000791175482562765, + -0.0010135284058649637, + 0.001156603879301105, + -0.0012550013778332657, + 5.827622044832795e-06, + -0.00031936377922566373, + -0.00012100672259030037, + 6.770791745249864e-05, + 0.00034501104683366346, + 0.0007024375742827453, + -0.0010781246546052942, + -0.0013327521174273781, + -0.0002522487214066025, + -0.00031674854419124415, + 0.0004518443278984192, + 0.0007994470910198431, + 0.00028071776558417363, + 0.0010912849258078727, + 0.0012787216917935086, + 0.0005052691238139361, + -0.0005650942844142371, + -0.00042337616494530334, + 0.0003781576079423613, + 9.530974164260686e-05, + -0.00030849313229667683, + -0.0031193006694185924, + 0.0022670183509380802, + 0.001171731469832165, + 9.78740268990622e-05, + -9.469832479739484e-05, + 0.00026000201824837965, + -0.00012016905994308218, + -0.0007264522440204367, + -0.0017493971121007184, + -9.275394081801747e-05, + -0.0007740114448425237, + -0.00037218466114239117, + -0.0007099099685143693, + -0.0004662791257595807, + 0.0012088168540454803, + 0.00036189236544825884, + 0.000945381153148393, + 0.0004873998008445885, + 0.0012196068903705577, + -0.0010329130710450077, + 0.0009337782485492911, + -3.249364179456047e-05, + -0.000480332755355327, + 0.0009730184014662231, + 1.0794772629874513e-05, + -0.00015094334165906747, + -0.0005566047029352928, + -0.0014509390039299174, + 0.0005844538732315639, + -0.001731464265206915, + -0.0002322093929408984, + -0.0008502900821467868, + -0.0005965804607999747, + 0.00048585299823799514, + 0.0016606984731025068, + 0.0004036125680252273, + 0.0005645416293388164, + -6.0915338370214344e-05, + 0.00028925972678313524, + -5.928988887419615e-05, + -0.0006695047369765151, + -6.288520186713555e-05, + -0.001145361270955996, + 0.0010781282177699508, + -0.0002667026693390698, + -0.0013511685975223856, + 0.001072841347066111, + -8.53072444596456e-05, + -0.00017636702106662005, + 0.0002529512864936384, + -0.0006066750673669247, + 7.195050436201358e-05, + 7.205691244194004e-05, + 0.00020241442368761545, + 0.0003865243506242979, + -0.001144155089446211, + 0.0012340283779316175, + 0.00017839984309292375, + -0.0006953951237933033, + 0.0002943467941384806, + -0.0009325858399700468, + 0.0017878754643828457, + -0.00036275254137774167, + 0.0006705964938302992, + -0.0003256406318857619, + -0.00021700042922214195, + 0.00033859416442820153, + -0.00029878804219833144, + 0.0009561660927068722, + 0.0004839506528245555, + -3.347803005555503e-05, + -0.0015309930839908811, + 0.00042513035565039283, + -0.001407226442408588, + 0.0014557266045541646, + -0.0008763999872252436, + -0.0011642044672046036, + -4.2692937590323675e-06, + 0.0012722961365951575, + 0.0007151111767318214, + -0.0007657161491250387, + 0.00039891336720112387, + 0.0003526843011982683, + 0.0011834087275479441, + -0.0005429703242998836, + 0.00018929231814812978, + 0.0013089055591673174, + 0.0011133023445265807, + 0.0013044492785735228, + 0.0005559659183861474, + 0.0002493728594338802, + 0.001215887105295827, + 0.00040847813634229573, + -0.0013083525782002392, + 0.001393953010563807, + -0.001046547628184329, + -0.0011398421182698076, + -0.0020518082843693003, + 0.00101083501947976, + -0.0009945379699844614, + -0.001705497496733492, + 0.0006481762029014484, + -0.001096873374413694, + -0.00022974115474106604, + 0.0010813327126114377, + -0.00028580559093805503, + -0.0006930083163540488, + -0.0005509472625360788, + 0.0009220746923431427, + -0.0008784565314563749, + 0.0013750857362360184, + -0.0008599370599289504, + 0.0008187052579896375, + 0.0008793477199501586, + -0.001030190664103411, + 0.00012128476976114286, + 9.897516607732003e-05, + -0.0006455539441480903, + -0.002606419515530739, + 0.001849383332403368, + 0.00041303951364004844, + -0.0006652641016396568, + 0.00042012591497674116, + 0.00011752344091581606, + 0.0005770913640969064, + -0.00040530482334281856, + 0.00027527090831395117, + 0.000124020907821278, + -0.00025660565270397103, + -0.0006000213306560186, + -0.002172674502320714, + 0.0004901704119207538, + 0.0009492001666231187, + -0.0017485835969971697, + 7.820110565129307e-05, + -0.0013987317335643575, + 0.000642688717042095, + -0.0007319515442575774, + -0.00013931380771413257, + 0.0017924826929539282, + 0.00038145086877561897, + 0.0008529921851633036, + 0.00023270517499609692, + -0.0002252757268348084, + -0.001039793228757711, + 0.0003867669846047163, + 0.000293320836545468, + 0.0007253447830198973, + 0.0007074429219376353, + 0.0010309800646244934, + 0.0008363069614534241, + -0.0008784069211487612, + 0.0006638113365307767, + 0.0012895976582658257, + 8.012938776622725e-05, + 0.0006302323825378951, + -0.0017031237912514322, + -0.00011834497746140974, + 0.0003569037873912115, + 2.8407475669371426e-05, + 0.00037386443371246916, + 0.0007458843626708402, + -0.0007978966357362804, + -0.0007560381507562723, + 0.0017032663011070596, + 0.0003243134616326503, + -0.0012621412712968461, + 0.0005022188777911228, + 0.0006680046770605018, + -0.0016612286575032635, + -0.0002509421001519416, + -0.0010493135609273866, + -0.0019582418541716443, + 0.0009935517363179709, + -0.0001847446963092433, + -0.0012776711063967664, + 0.001132613593539543, + 7.471334272933672e-05, + 0.0014282791344222715, + 0.0026731260893816428, + -0.0017602831994593237, + -0.000863509290085142, + 0.0005411528900271204, + 0.0013666200250392025, + 0.0006864238049012312, + 0.0014902113998566775, + 0.00031069870222786314, + 0.0002658616236408342, + -0.0015183725026183923, + -0.0008932667210413511, + -7.902994354951748e-05, + 0.00023153271529064015, + 0.0009436611366154065, + 0.0007599006899286002, + 0.00036136575193623896, + 0.001429273622321123, + 0.00029991155123661677, + -0.0023318945469842246, + 0.001034084497938634, + 9.713637982826677e-05, + 0.0007035939657444041, + -5.2273230518242006e-05, + 0.0009931522013438981, + 0.0012731465027181522, + -3.705811902204158e-05, + -0.0009170008955705402, + -0.0009345276070096028, + 0.0005189986526606422, + -2.788937641492472e-05, + 0.00105126517293376, + 0.0011195716360412672, + 0.0009226004959339502, + 0.0008445182369853631, + 0.0001948278003838094, + 0.0024711288744978465, + 0.0003571532699398032, + -0.000891398976567102, + 0.0007252732814270581, + -0.00016616827886418807, + 0.0009555595595198485, + 0.001730252295622138, + 0.0010286174370766805, + 0.0010408179019181312, + 0.0011369804321080543, + -0.00017513488902484112, + -0.0008914466634123699, + -0.0018795665249371203, + 0.00029083796441283904, + 3.9307936948265455e-05, + 0.00211821035644391, + -0.0012757043406768458, + -0.0002532984402214004, + 0.0011731440168927774, + -0.000434988550634534, + -0.0006583912519959606, + -2.1075169257345956e-05, + -0.0009107068080433441, + -0.0003157868295047266, + -0.0002792229637028134, + -0.000501434958041948, + -0.0010556147724089511, + -0.0012729807937543055, + 0.0005019392697199367, + -0.0009334713014208503, + 0.0016730187616781128, + 0.0009892529472505728, + -0.001081398133277029, + 0.00020036077597873018, + 0.0004204525010970422, + -0.0005953749177081265, + 0.0015672240142157049, + 0.0006830651662875261, + 0.0002314222437041839, + 0.0009217428917507767, + 0.001338940861234259, + 0.0001826618948247333, + -0.00046369743806065736, + 0.0005186436260405081, + 0.0007625373410986454, + -0.001148025600911879, + -0.0008306300632965355, + 0.00021445082558180418, + -0.0008458195378108467, + -0.0012246053352938575, + -0.0008557196807022703, + -0.000788751871556342, + 0.0007594308427977214, + -0.0005561522534591551, + 0.0006268617667178364, + 0.0002107231480426548, + -0.001031389724811933, + 0.0010274292545086312, + 0.002016801072846163, + 0.00039289103336574086, + -0.0008979060955231924, + -8.520140882858459e-05, + -0.0013911094172084457, + -0.001712006508084265, + 0.00132529148598315, + -0.0009274908958889814, + 0.0005011153800411763, + -0.0006546402795995341, + -0.0003612259793739466, + -0.0014230681997067054, + 0.0001806363785780675, + -0.001259672502809567, + -0.0012270201013427386, + 0.0007991570646689219, + -0.001704049574303474, + 0.0013798640213348891, + -4.065404848090592e-05, + 0.0006750965493779593, + -0.0012100866576516638, + 0.0009179674929640301, + -0.000129834974578113, + -0.0015184514882516465, + -0.0007109946437924488, + -1.0458893809534151e-05, + 0.0002450787722332609, + 0.0006909714625212448, + -1.7479370026661343e-05, + -0.0019221756985645115, + 0.00031449570330787475, + -0.0007203851420038508, + -0.00013559393310120984, + -0.000554308471381656, + 0.0002835678065080654, + 0.00036766406162612935, + 0.0021886489608623524, + -0.001428867334888325, + 0.0005597566287027072, + 0.00024633450548789364, + -0.00046650651645918314, + 0.0009581440712927568, + -0.0005531704216184058, + -0.00147474435813375, + 5.310055945501704e-05, + -0.000906424115174042, + 0.0003954249610864393, + 0.00017526057366341871, + -0.0009814181518538214, + 0.001056006661013063, + -0.0005658961074841252, + 0.0015446047189861527, + -0.0006058262141727731, + -0.00018436154480208446, + 0.00021106054354502851, + 0.0005487543398050155, + -0.0004027749829825196, + -0.0001260023712031468, + 0.00031835909451197154, + 0.0008111861612069974, + 0.0012099482816517399, + 6.770704940902962e-05, + -0.0017151255860038603, + 1.2688769444306485e-06, + -0.0011554766846750136, + -0.00028765034754541717, + 0.0010566690111154546, + -0.0005896936490856625, + -0.0014617085581096613, + -0.0010685765097562918, + -0.0003309451405907886, + -0.0009565208873112466, + 0.0015002401078423138, + 0.0008204291371259255, + 3.484946107186812e-06, + 0.00030069778334070496, + 0.0008425880074580234, + 0.0003781367799368045, + 0.0009909072440766275, + -0.001204015890637245, + -0.0010127787955564577, + 0.000353592061438816, + 0.0006029178497056445, + 0.0013523826709406907, + 0.0003779767200044062, + -0.0019137039469091493, + 0.0006263910895225357, + 0.0006180123554949662, + 8.233429355312255e-05, + 0.0009035658662609571, + 0.00022703540891756696, + -0.0008985469459485363, + -0.0015357486204413335, + 9.636230121341928e-06, + 0.0006548353004207411, + 0.0024194905535851606, + 0.00036827961348361916, + 0.0007853866607990034, + -0.0003802369809299363, + 0.0007955074942843988, + -0.0006118004174908111, + 0.000889815702786573, + -0.0008739336856675587, + -0.00022061502147397105, + 0.0007580734637105235, + -0.0018249712322521334, + -3.3609321815204594e-06, + 0.001169005441544025, + -0.00010121589814147313, + 0.0001065708387711936, + 4.332959677821074e-05, + 0.0009987436800995666, + 2.378759613430569e-05, + 0.0006624211023016326, + 0.0004877246268687347, + -2.3509017143947606e-05, + -0.001373895156295282, + 0.0005092578384081933, + -4.476236490337331e-05, + -3.8268248052877494e-05, + -0.0003472081580304894, + -0.0011185876145193814, + -0.00021860821317851625, + -0.0004681516159747666, + -0.0006804252503649867, + -7.632476514533848e-05, + 0.0005432977573736055, + 0.000518576236152502, + 0.0014209956980831499, + -0.00026394126031994427, + 0.00028550463928226385, + -0.00025768472193059765, + -0.0013612217082030129, + -0.00039098566555599253, + -0.0016644879386733804, + 5.729712525789581e-05, + 0.0013253975584584324, + -0.0008288136024754328, + -0.00019562398376782818, + -0.00019069323822708034, + -0.0006483329104501894, + -0.0016408954406616002, + 0.00020843560931864397, + -0.001421048803340618, + -0.0014504835578725626, + 0.0010780343441499317, + -0.0003719393733407415, + -0.0016552153587296426, + -0.0017106754040280725, + 6.351282760921883e-05, + -0.00015812206436359504, + -0.00035506478611046805, + -0.0006624532008132749, + 0.00030902024365176664, + -0.0007666284174588485, + 0.0013807912685058128, + 0.000208725918700736, + -5.884329201639733e-05, + -0.001238244811469316, + -0.0010027280088346488, + 0.0009516409181583483, + -0.0005161361555515103, + -0.0013125259747473084, + 0.0012350520545319596, + -0.0009556477178373873, + 0.00013132373104429783, + -0.0001495877906603141, + 0.0005676862261436723, + 0.0006201339728011202, + -0.0001811764185464995, + 0.0010252642555266327, + 0.0003968855059199518, + 0.0007706064080626111, + 0.0004781755053493437, + 0.00031844207741618257, + -0.000670459572112164, + -0.00014082554674420934, + -0.0006235783598592863, + -0.0013133319257630494, + 0.0007614550543689095, + -0.0013279664591175104, + 0.00058605112468763, + 0.0023659217057520675, + 0.0018587861968062075, + 0.004053859069800638, + 0.0011351324999930414, + -0.00016349553418869406, + 0.002988013336174016, + -0.0010893144538369098, + -0.000150958749880181, + 0.0011478177424046308, + -1.5944622060213014e-05, + -0.0009007910571289181, + -0.0010734488159294155, + 0.0021624633104431732, + 0.0017048381221182892, + 0.001604674385895456, + -0.000396543489646672, + 0.00023724717755289036, + -0.0005847699892269919, + 0.0005207709238720604, + 0.0006853468806079614, + -0.00011719493029776882, + 0.00042098243798168914, + 0.0012252118188043981, + 0.0010091965604128903, + 0.0006787457629735124, + 0.0003999172882258536, + -5.6430656866952e-05, + -9.55421412378436e-05, + -4.4309068146795904e-07, + -0.00015488916693739583, + -4.346316837245464e-05, + -0.00012058698503706327, + -0.0008118627128823576, + -0.0010423249993214245, + -0.001824001853610297, + 0.0016250075434855362, + 0.0010161552784193665, + -0.0005250671952258366, + -0.0005299900279766179, + 0.0005421763545526803, + -0.0018676600818868714, + -4.4458210020727765e-05, + -2.5335678199900008e-05, + -0.0008975112774775045, + 0.001066511578150333, + 0.0003054623150820819, + -0.0004177769378117926, + 0.0007874218265441745, + -0.0005064115953624905, + -0.0011281961423091644, + -0.000762641008421995, + -0.0007724664447736208, + 0.0014608151894001937, + 0.0013221127722438779, + -0.001056067337650343, + 0.0013030614900052505, + -0.00018577944874536046, + 0.00014187820251897315, + 0.0022343522344852023, + -0.0006834009339310948, + -0.0008140572080033072, + 0.0018812665448868727, + -0.00035454921477747023, + 0.0016858470247194043, + -0.0007665109299426587, + 0.00039617481992435227, + 7.809802737750534e-05, + 0.0009192118213225211, + -5.556182234060053e-05, + -0.00081838842198566, + 0.0006529038738071222, + -9.530634387464414e-05, + 0.0024778850895648525, + -0.0016404444068672758, + 0.000488608917904257, + -0.0001330675098081428, + 0.0013599429681204875, + -0.001010456949815215, + -0.0011222321013174448, + 0.0007838095091696564, + 0.0006210817607305527, + 0.0004977534478895724, + -0.0006251811448079138, + -0.00038775466919386056, + 0.00018588704084686924, + 0.001486521271250069, + 0.00047474188977217807, + 0.0009744390096818211, + 0.0005946373210468743, + 0.0018407514587017474, + -0.0018401327134862848, + 0.0004799836461585638, + -0.0009509236157977105, + 0.0014475529128894027, + 0.000751490480467199, + 0.0002785551661067298, + -0.0017504506582099592, + -0.002837564619525817, + -0.0007243189792870314, + -0.0010641511166764352, + -0.0013013374592708632, + -0.0005407672736049354, + -0.002363354616941829, + 0.00046198338814549655, + 0.00024600510251613863, + -0.0002520037465374319, + -0.00019859431468975135, + -0.0006657692426234993, + 0.0010706908309473947, + 0.00045988146270105226, + 8.70341303520509e-05, + 0.0002526049536571788, + 0.0004965910806198618, + -0.00032613843605969417, + 0.0009483953219807891, + 0.0008326441933796528, + 0.0010971544615796416, + -0.001357304213424669, + -0.0005457583734637598, + 0.0007274998347870842, + 0.001336599113024565, + -0.0005432860294104365, + -0.00018920187166619463, + -0.00036861942897709315, + -0.0002963543274790792, + 0.0007678472251214362, + 0.0006542918528289093, + 0.0006060654684385878, + 0.0010374531551956196, + -0.0030534741562593705, + 0.0006370165991894991, + -0.0008990089388630766, + 0.0006767333829114776, + 0.0009789125071537966, + 0.0007034291522853036, + 0.0005907228161291241, + 0.000801657121399884, + -0.0009126082749561348, + 0.0012594552954873087, + 0.00043249666605088566, + -3.202709893601301e-05, + -0.0003321121945996936, + -0.0008781791160216426, + -0.00022565216252684494, + 0.0003059179048585839, + -0.0011162246366463622, + -8.648809826695695e-05, + 0.0004356848442482429, + -0.0006502948265924521, + -0.00044381626722528566, + 0.0006490805092599286, + 0.0001894265643466127, + -0.00012362733886400566, + 0.0008677873746835471, + -0.0014008552869335857, + 0.0004890214410738804, + -0.0006883915224825168, + -0.0007498726977340367, + 0.0032717084968604286, + -0.0011980838402885518, + 0.000436417143800905, + 0.00019956725554547128, + -0.0009286622832890046, + 0.0013220260180247933, + 0.00018347894805179087, + -0.0011536240340918671, + -4.9292063270163944e-05, + 0.0017018065333003834, + 0.0010192031287435, + -0.001194320995856422, + 0.002050686185096398, + -7.246549295257667e-05, + -0.000779490124762468, + 0.00048744181443425823, + -0.002919593899363083, + -0.0010407691191183339, + 0.00033651537675285885, + -0.0012899452004851467, + 0.001257989458543878, + -0.0016276793518423087, + 0.0008521401832289169, + 0.0005476530878631524, + -0.00023754333284196, + -0.00039702733834291455, + 0.0006477865604007427, + -0.0013995956467179177, + 0.0010880740975831758, + 0.00014907232468746424, + -0.0009530021719219938, + -0.0012274909848342742, + -0.001374606912073654, + -0.00018623707113019634, + -0.0007937790256283197, + 0.001080883699436845, + 0.0013200865198072667, + -0.0003312619519139035, + 0.0005972845165148676, + 0.0008463886787063459, + 0.0003939052666734153, + 0.0010346065662859274, + 0.0011744071191602619, + 6.386019150577145e-05, + 0.0003985983062481252, + 0.0003679311147497924, + -0.001035169918125309, + 0.0016598660697269203, + 6.124820636583758e-05, + 0.0009051273460843331, + 6.677542505361687e-05, + 0.0004958929234359646, + -0.0008887015061008706, + -0.00047236390273872357, + -0.00026469325513072187, + 0.00019640139635483995, + 0.0018565372273628262, + -0.0002905248626799059, + -0.0015310116453125583, + -0.0008629472331507179, + 0.001101988249061705, + 0.0009955349092346192, + 7.732722888070046e-05, + -0.00037609558638052325, + 0.0003369242391248067, + -3.6783315013010235e-05, + -0.0002707172126899546, + -0.00029615942739123676, + 0.0024794938712129227, + 0.00034871145084924875, + -0.00047278411568818453, + -0.0012459238686367208, + -0.0007674091362382995, + 0.0007222777485386288, + -0.0011230319656972568, + -0.0008764374707034428, + 8.299919163112581e-05, + 0.0002033791607997887, + 0.0007072270561358003, + -0.0006396628945814968, + -0.001072290958636228, + -0.001423467877886089, + 0.0018519388092291518, + -0.000259248198503193, + 0.0004556979370242538, + 0.0007404293878452907, + -0.00023791358669612912, + -0.00032357082296696337, + 0.0006059039568328373, + -7.641548242042805e-06, + -0.0007719301574001275, + 3.4870253894984555e-05, + 6.929953511135991e-05, + 0.0008781208114843097, + -0.00020293452944665833, + -7.808531185393946e-05, + -0.0005029808623441501, + 0.0006805494887429794, + 0.00020524602316267094, + 0.001686793354963515, + 0.0011280526146853172, + 0.0001495947896767982, + -0.0008829443164750599, + -0.0003638527892343552, + -0.0005137750058121068, + -7.42907114167757e-05, + 0.00029533409612306634, + 0.0008663357864162398, + -0.0014060994108004128, + -0.0003151226063291366, + 0.0013434820144553386, + 0.0003955905062394066, + -0.002057055821004725, + -0.0013509207028255775, + -0.0004382900014593153, + 0.0012246241601256455, + 0.0004956368361490642, + 0.00034782438806598315, + -6.878977405662981e-05, + -0.00011038684292155188, + 0.0007882875676297338, + 0.0004989426519785498, + 0.0003119186432382632, + 9.854573490964021e-05, + 0.0013889213263407931, + 0.0011517460123658307, + -0.00041493031009473606, + -0.0015405766806927432, + -4.241639160843216e-05, + 0.0029827594111169592, + -0.00020423549442950289, + -0.0015510160307961858, + -0.0011142570286062853, + 0.0010566093266476209, + -0.0012537520289973177, + 0.0012310642416683976, + -0.00014442081654550371, + 4.0064722177269735e-05, + -0.0009679443721978172, + -0.0006930917774293382, + 0.0001404948073181892, + 0.0004994392192029685, + 0.001023560270414444, + -5.2979174966054566e-05, + 0.0012694096284795566, + -0.0007919189373367649, + 3.6440839531206926e-05, + -0.00047523200306348406, + -0.00019765897541452752, + -0.0002318900083980701, + 0.0003840059544152134, + 0.0011554610855485706, + 0.0015844493871051818, + -0.0003793980611573789, + 0.0017374233276633416, + 0.0017076873490052085, + -0.0001363502751318, + -0.0010968894072466095, + -0.001108688675760321, + 0.0007953146756818954, + 0.0022984821723956625, + 0.0005798972867437477, + 6.965824426681858e-05, + 0.0011577687267947296, + -0.00015480874557697064, + -8.205521418318235e-05, + 0.00015404964256291047, + 0.0004914376293001344, + -0.0006598744047788542, + 0.0007573312724167332, + 0.0013529399793313676, + 0.002011944710797308, + 0.0009519811977249128, + 0.0012171656366099732, + 0.0004129223801181352, + 3.211546434418508e-05, + -0.0004940322211578196, + -0.0007238365611321691 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgb(135, 197, 95)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 4", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + -0.0007238365611321691, + 0.001422208145662363, + -0.00046182355799379504, + 0.0011620804712767657, + -0.0011408612997585931, + 0.001416304506282927, + -0.0005659085706556084, + 0.0001279477549734417, + 0.0005288093017844829, + -7.251451285450602e-05, + 0.00045612085557627234, + 0.0005023209150001255, + 0.00037729300341992657, + 7.33261630105511e-05, + 0.001711878951579515, + -0.0004614795592223112, + -0.0014604621689125314, + -0.00019991528134689888, + 0.0002152418887634345, + -6.332086292248451e-05, + -0.0014599654520228763, + -0.00038911644994872726, + -0.00048637414143617227, + -0.0005029427731240875, + 0.0012092957729230012, + -0.00013680124753370204, + 0.0005475455595027821, + -0.0008247179835368995, + -0.0009121884399465949, + 7.89074459792849e-05, + 0.0008469150504367454, + 0.0011956782931071945, + 0.00045930601164634636, + -0.0004756841452093029, + -0.0011948769064725464, + -4.7636800009693e-05, + -0.0006461712640670269, + 0.0007807839617459063, + -0.0031971252373712714, + -0.0006601904427072654, + 0.0011028378647499363, + 0.0005652695771979489, + -2.4077873402667376e-05, + -0.0005456862901858016, + 3.222265692706238e-05, + -1.1343049574277019e-05, + 0.0022080098251223658, + 0.0015982953501356776, + 0.0007063552764253195, + -8.838082280356033e-05, + -0.0018587902917707913, + 0.0011673166812714453, + 0.00024631659100155315, + 0.0006297080955478578, + -0.00028172616903434863, + -0.0004660523469458749, + 0.0006930429209739539, + -4.64471896188143e-05, + 0.0018177773434797408, + -6.695781545775592e-05, + 0.0010765548533736703, + 0.0023931967426326127, + -0.00041348899256754605, + 0.00016411288070877268, + -0.0004547910245910287, + 0.0021714070080258844, + 0.00048652843827208194, + 0.00010614905418559258, + 0.00037477353856155414, + -0.0003970630951097627, + 0.0009508715946501343, + 0.0003769956772366626, + -0.0009909075997357993, + 0.0009195967988910253, + -0.0016141095207942036, + 0.0009252312917785455, + 4.810858811047034e-05, + -0.000939877612565175, + 0.0010913569032763432, + -0.00046463148820169225, + 0.001125429279106306, + -6.390788196614326e-05, + 0.0008527642048399472, + 0.0004829632237732729, + 0.0004514643453100141, + 0.0001666458461478224, + -0.00013914174208523583, + -2.9942483670795166e-05, + -0.0004481041740533328, + -0.0017172174610491826, + 0.0013657041823595022, + 0.0011210337366774129, + 0.0003793011290843295, + 0.0006251331114176253, + -0.0001433961806182851, + 0.00015787326770752157, + -0.0014841095792207184, + 0.0002952184639200647, + 0.00028585681069920576, + -4.420390560267052e-05, + 0.0014718495318283454, + 0.0001364292489354064, + -0.0009322689612773639, + 0.001577087710576127, + 0.0011213507610268372, + -0.0012822591116111205, + -0.0004059135096327446, + -0.0008561709537986574, + -0.0008206977855334642, + -0.0007679666214122866, + -0.0006065823452661657, + 0.0001208630623800935, + -0.0011072881590551734, + 0.0006126003303089226, + -0.000325829051594793, + 0.0004916982979405825, + 0.0010193954202890507, + -0.0014336513505836441, + 0.0010067007065290095, + 0.0005252646665343508, + -5.6387705996322954e-05, + 0.001367915533191685, + 0.0004220612744915387, + -0.0012114679028643555, + 0.00032144316048838715, + 0.0008489953918027776, + -0.0003590760157824851, + 0.0008105274441405817, + -0.000714528876752989, + -0.0007893960625268588, + -0.0005021055772081865, + 0.00035224763423704995, + -1.5337935856080523e-05, + -0.0005786436030457609, + 0.0006296202061855066, + -0.00018616576825935757, + -0.001165222064088171, + -0.00046995560245363763, + -0.0007629959564891876, + -0.0009632136304821064, + 1.5526622864127612e-05, + -0.00040537424428572393, + 0.00045305010340137143, + 0.001108450507505691, + -0.0008712541546862861, + -0.0007103010216942613, + -0.000513692054770527, + -0.00037807655570159165, + -0.00042780619139920587, + -0.00026773087464870577, + -0.0002581650218683429, + -0.00018848704220397508, + 0.0016823112230514017, + -0.0007579074769087805, + -0.000648233333056778, + -0.000256786914237066, + 0.001715521051064902, + -0.00036816232571808716, + -0.000340039749341688, + -0.0013220440746121692, + -0.00019591750929088986, + -0.0008222357370946239, + -0.00023690297596095776, + -0.001697925172351127, + 0.0005254831696373273, + 0.000271230068150164, + 0.0008995975641467532, + 0.0004248535349361467, + 0.0012727324575987878, + -0.000726373066329425, + -0.0017572341468704814, + 0.00020628353875646493, + -0.00161419531904653, + -0.00013955592798595124, + 0.0008376331145086771, + -0.0007507449613305766, + 9.898356729787462e-05, + 0.0011941052830030698, + -0.0006343473578655406, + -0.0012372455666982236, + -0.0004152989708004281, + -0.0007588321804300718, + 0.0004325148036016525, + -0.000600219954311918, + -9.275670182372171e-05, + -0.0017143738269025342, + 0.001510548834102675, + -0.0008035028902209076, + 1.2708905779949893e-05, + -0.0006489971367776926, + 0.0006990204489041703, + 0.0008926057381214938, + -0.00016347359283302597, + 0.0004106808802412155, + 0.00040227311994521373, + -0.0018850813852388261, + 0.001142660958671691, + 0.0006307064027069697, + -0.0008989785165685945, + 0.000364483399707008, + 0.0016340115145942417, + -0.0004389516995922807, + -0.00027196910174533253, + -7.761062184878678e-05, + -0.00019938732051917363, + 0.0003651572884900039, + -7.627618869108697e-05, + -0.000724253106644665, + -0.000669758785357515, + -0.00011487640651810057, + 0.001175815214667405, + -0.0015339062186388124, + 0.0005961684018592823, + -0.000390703909434209, + -0.0004850007496444813, + 0.00039124329037329333, + 0.0010086915101876325, + -5.80699852345969e-05, + 0.0013344223040084482, + -1.0907823391804279e-05, + 0.0003368875830162695, + 0.0005781871328787241, + 0.002184504290940195, + 0.0002649936476800098, + 0.000926401546344197, + -0.000378422519455473, + -0.0002254115438635363, + 0.00038436155393561537, + -0.0003271915088285945, + 0.0009124631615701811, + -0.0009833709506648937, + -0.0001501127948525052, + -0.0008357181305968722, + -0.00038128728122640096, + -0.0004718984977272366, + -0.000819225740681075, + -0.0017786949437522174, + -0.0007901514553305185, + 0.0005638426134811152, + -0.0006759404166608696, + -0.00036336984065795904, + -0.0008849148990369064, + -0.0015478726858738395, + -0.002453229088108021, + -0.0006498686523118619, + -0.0002147680186552147, + 0.001288810546661206, + 0.0020435877975585235, + -0.00044063502653045485, + -5.775566602854738e-05, + -0.0012089430489153712, + 0.0015136623093321296, + 0.001045212585032999, + -0.00040485433400219543, + -0.000285290514070837, + -0.0013679719746415473, + 0.0010477524592620452, + 0.000743242537428548, + -0.0014748717587624118, + -0.0013227933857136356, + -0.0009688135607361184, + 0.0003112829038999454, + 0.0007902808125112518, + 0.00019759481909771548, + 0.0003432972171380161, + 0.0008921357715696713, + -0.00046245411053831814, + -0.0004703983085095954, + 0.0013721030268556257, + -0.0025184847152837793, + -0.0003340167890080206, + 0.0011820477927572076, + -0.001199016760903875, + 0.00100698146108661, + -0.0010128930892239496, + -0.000167106546398138, + 0.001357342300144174, + -1.9571293084940424e-05, + -0.00041720652675691444, + 1.2939743502707458e-05, + -0.0007664524543223647, + 0.0010858392164519663, + 0.001662305538785085, + -0.0008089054492150511, + -0.0005899814193597277, + -0.0005335394676817513, + 0.001360623628490032, + -0.0011431742513734495, + -0.00034395498656340524, + 0.00015510305106545012, + 0.00015143038800854565, + 0.0013230369085794162, + -0.00017375166442134944, + -0.002653803142705925, + -0.0004262521171834654, + 0.00029853558924274113, + 0.0014000888992237095, + 0.001063202183479995, + -0.0005423356138541092, + 0.00015087342569985963, + 0.0004553718839223916, + 0.0002450898265932137, + -0.0003762180077407949, + 0.0016504195784577463, + 0.0010319182996547107, + 0.0008556322080491087, + 0.0002856770479979268, + -0.0022891118108569423, + -0.00015547823304119313, + -0.00023081562888186503, + -0.00065173769730832, + -0.00042521337135338817, + 0.002205599704953996, + -0.00043303352940165715, + -0.0008717371266828727, + -0.0006627860166022061, + -0.00043791242548280127, + -0.0005911576251195973, + -0.0009286538287877216, + 0.002949361149666518, + 0.0010930264207674283, + -0.0024112221003779995, + 0.00025162143084730504, + -0.00016078809913564574, + 0.0008352226392735363, + -5.763535746452858e-05, + 0.0004447098246362991, + -0.00034378702580607377, + -0.00045876068337602125, + -0.001615326379187349, + 0.00010156574922523782, + 0.0007484700101767971, + 0.0012247210558484587, + -0.00014755826189157714, + 0.0014110709594243088, + -5.146627170490106e-05, + 0.00046207508490231597, + 0.0017375038848491604, + 0.001165350561270629, + -0.000991959050113435, + -0.0015986306560700468, + 6.42698060081221e-05, + 0.0006192679364016078, + -0.00036133421250225727, + -7.935251548523534e-05, + -0.0013097084381533085, + -0.00031729858415355104, + -0.0006062469449475171, + -0.0014123239098951118, + 0.0002978963859549895, + 0.0015420898569655289, + 0.00020502223617775464, + 0.0004229418198999238, + -0.0018278807787927584, + 0.001524318505405761, + 0.0011376210940991344, + -0.0008100526094624113, + 0.00016119579459366123, + -0.0001331142378005871, + -0.0009006579712072171, + -1.4564702179709903e-05, + -0.0009686876664416143, + -1.883990067719327e-05, + -0.00024123046384144482, + -0.0018191211036702158, + 0.0012567332566025748, + -8.97218355739255e-05, + -0.0010059519338432186, + -0.000494322027031096, + 0.0024622466437733605, + 0.0011315897263767386, + -0.0007907101493628186, + 0.0001367519215813352, + 0.00010842726680522751, + 0.0004432846153434119, + -0.001328661977608437, + -0.00028511266771717204, + 0.00032529855760680666, + 0.0007718936080112677, + -0.0004001351761146059, + 0.001491470617006801, + -0.00012240413221891608, + 0.00033354948995761743, + 7.713578172131934e-05, + 0.0006812119139887892, + -0.00115112360244216, + -1.7236674174519937e-05, + -9.885211120216027e-05, + 0.0014452852235678495, + 0.0006115414327961086, + 0.0005211946286289098, + -0.0012734766524451304, + -0.0005234382478110564, + -0.0008351299906608991, + 0.0015974891302450117, + 0.001224263012737884, + 0.00049278357141085, + 0.003346971752693694, + 0.0008487614258890781, + -0.0009705891489852981, + 0.00035407310634192235, + 4.1676220430103816e-05, + 0.001466982051464213, + 0.0013722113012781074, + -0.0003287838910881543, + 0.00043697666735823394, + 5.945820106607565e-05, + 0.0004000621130078526, + 0.00032160906007513133, + -0.000773186768488416, + -0.0013610972396548085, + -2.1557723276585736e-05, + 0.0010502022222916426, + -0.001531064958006946, + 0.00170986723044179, + 0.0005241328046616948, + -0.002007323254688498, + -0.00015331737609274105, + -0.0001593485208753324, + 8.658037310236487e-05, + 0.00088231311226219, + -0.0006801281008300223, + 0.0017040494517913424, + 0.0026100565922349828, + 0.00011009421065398535, + 6.317715102023021e-06, + -0.0021384725013907442, + -0.0014752975294774642, + 0.0021008091543584413, + 0.0003787150500437275, + -0.0023983346930032704, + -0.0003998185366157188, + 0.003188246893459123, + -0.0015089765403111103, + -0.00043411878655987777, + 0.0012757102353140536, + 0.0013836891078196534, + -0.00018344064651495192, + -0.0003309450075536727, + -0.00011270757529273602, + 0.00010519669933031635, + 0.00039261927570263745, + 0.0020648875745154383, + 0.000723662697837917, + -0.00048065053628505, + 0.00030960715466952094, + -0.0010881660858897018, + 0.0004029387893334566, + -0.0008167473398209687, + -0.00044895488135305905, + 3.2119153246386415e-06, + -0.00021170454080080155, + -0.0001295772673231328, + 9.516573552006665e-06, + 0.0007037112137984183, + 4.2995397551150254e-05, + 0.0004839699447218462, + -0.0006679233159645124, + -0.0014647440058847357, + 8.80069927893211e-05, + -0.0003175702388435268, + -0.00027441959956426117, + 0.00023124328787579195, + -0.00024744367483302255, + -0.0011757279548115676, + 0.00014112757389588742, + 0.00017702936398504392, + -0.0010440386681471454, + 0.00017836419650207424, + 0.00020522760586237285, + -0.0008506195183065297, + 0.0009612393862779437, + 0.00018783208133828526, + -0.0016615863570391075, + 8.311016166010579e-05, + -0.00011630541270614028, + -0.0006295587025951466, + -0.001085654538136273, + -0.0007552605110128703, + -0.0004910550713411064, + -0.0005437057917675124, + -0.0013891719431200246, + 0.0006109381061598482, + -0.0007152431628770143, + 9.902868048215504e-05, + -0.00012621717132294734, + -0.0008513811053565613, + -0.0012452067183734566, + 0.0005606463003541551, + 3.68323467491883e-05, + -0.00021415758181421522, + -0.0005038447296894682, + -0.000573204836737336, + -0.0007251323057947369, + 0.001970950172595187, + 0.001963468259072027, + -0.0006591567783317644, + -0.0009292275791368456, + 0.0007759193887822151, + -0.00045679521797735944, + 0.0012379198284648073, + 0.00040184604674859596, + 0.0009036914103188085, + 0.0019266563407728684, + 0.00033683872685270845, + 0.00094612322141669, + -0.0006180256345187389, + -0.00026583958812155707, + 0.0001399099407603922, + 0.0005568381199359748, + 0.001632479162481636, + -0.001299976563456823, + 0.001013114132002727, + -0.0011980593143740223, + 0.0013865685929376132, + -0.0005462097448166678, + -0.0002812158849421047, + 5.7418581110528104e-05, + 0.0002650675912443683, + -0.0003034362922177684, + -0.0003821142302607046, + 0.0022459816973009533, + -0.0007232282486911239, + -0.0006689346095781845, + -2.7733044776806273e-05, + -0.0015452022423842848, + -0.0008755771114483511, + 1.2993860390524749e-05, + -0.00023974336786903146, + 0.0006123347460271954, + 0.0008872547535505915, + 6.406397000764738e-05, + -6.431479537221966e-05, + 0.00018270886680164222, + -0.0002997080008497201, + 0.0005364521026656822, + 1.6254228030522237e-05, + 0.0003009144623393353, + 0.000634526095710903, + 0.0005016020067073444, + -0.001957347814112462, + 0.00012709405060673063, + -0.0005825789454200212, + -0.0003958031501202634, + 0.0012344284620282007, + -0.0003063092575515519, + 0.00111757350859361, + -0.00012076172630020362, + 0.00017960335472195783, + -0.0010636615169906595, + 0.001552258142746394, + -0.0011905442864170324, + -0.0007758608775009365, + -0.0008687502020424402, + -7.616752354641545e-05, + -0.0008404453864246696, + -0.001017767640100169, + -0.0008256073290495635, + -0.00016628004727607229, + 0.0004779393235048397, + 0.00024606438122612575, + 0.0009347658372985729, + -0.0009581932208877167, + 7.495319451072588e-05, + -4.780089336655041e-05, + 0.0010856258421815717, + 0.0010912164296719793, + -0.0005318873105469881, + 0.0005489670909048778, + 0.0010700350163257478, + 0.0003243710464227528, + -0.00017787217626488922, + 0.0006246837255503776, + 3.6757292634335574e-06, + -0.0002102784942757932, + 0.0011265180483430702, + 0.0003851552898195938, + 0.00023077037807121636, + 0.00017543552903838576, + 0.0006349513913741242, + -0.0014960358095413371, + -0.0005111395546019087, + 0.0009200811382933227, + -0.0007712218373275806, + -0.00048119665770077625, + -0.00031070126511941696, + 0.0018406134362704918, + 0.0006337665228903924, + 0.0020908036501096515, + 0.0013355035924873964, + 0.00019857588708616943, + 0.0008343889394385137, + -0.00037559915245597634, + 0.0010998814339937219, + 0.00077462049370484, + -0.0007788265441138704, + 0.0013546234743782816, + 0.0017214964338923909, + 0.00022937929310751738, + 0.0015951295780263707, + 0.00034392879052559335, + -4.359902964342122e-05, + -0.0008781632942955398, + -0.0015682769262077285, + -0.0005590435482558116, + -0.0005460135620964128, + 0.0016154914618236422, + 0.0009101233895410567, + -0.0006435120284352115, + 0.0012874421159774529, + -0.002614593817786214, + 0.0006040516376992328, + 0.0003394320622833906, + 0.0005289387730919442, + -0.0010410386654589043, + -0.000659746222258844, + -0.0010660858344503097, + 0.0007941841167202154, + -0.0010380862098687438, + 0.0013239224454106309, + 0.0016145131774186652, + -0.0017637192147740865, + 0.00029915518030899853, + -0.0012974445027922508, + 0.0005461507181240203, + 0.0005398078700133772, + 6.054725891239001e-05, + -0.0013696252521094728, + -0.0009851983279995456, + -0.0018605354991156524, + 0.0007495071328595978, + -0.0002679483166377749, + 0.0007486684311735171, + 0.0003340287055921791, + 0.0020146701789841254, + -0.0005276618400795759, + 1.0286104745398921e-05, + 0.000788194463253015, + 0.00043016328377743456, + 0.000468253114361496, + 0.0001792887447255863, + 0.0010992467363449866, + -0.0012004559476363383, + 0.0006364207869134482, + 0.0011492670258776447, + -0.0008769982332771887, + -0.0004199599737627579, + 0.001673962801733359, + 0.0005056045186734605, + 0.0007776894717784241, + 0.0008980380927862944, + -7.155605173659064e-05, + 0.000555701607956322, + -0.0005792802323171866, + -0.0007034845964765793, + 0.0013780691541659118, + 0.0003153361921941404, + -7.604190504850099e-06, + -0.0006111598599960297, + -0.0007952625085795436, + 0.0016242591627966157, + -0.0019647170476768524, + -0.00040712239338599045, + 0.0009729259647410259, + 0.0013770700351839228, + 0.0004905016361399547, + -0.0008206996205607982, + -0.0004429642160752262, + 0.0004507777726777126, + 0.00016613937629348616, + -0.0004259234293151949, + -0.0023797849376673862, + -0.0001336016418498702, + -0.0006112555817461645, + 0.0014062413028096525, + 0.00036929652826374516, + 0.0023432928214458955, + -0.0023748252904396837, + 0.001490409680097558, + -0.002190075164713981, + -0.0004492064011518462, + 0.0013756802785433798, + -0.0007621168956519408, + -0.0005321087518156795, + -0.0005353382980096994, + -0.0005307376031690108, + -0.0008632313709779676, + -0.00045871924146127167, + -0.001483409351279098, + 0.0017975738868545536, + -0.0003588037565447153, + -0.0011498533964625934, + 0.0001522041006744905, + -0.0004941328296139519, + 0.0002297212766880021, + 0.0003511090135370736, + -0.0013037919233471944, + -0.0010542766880271847, + 0.0013221841823288162, + 0.0007078081973218092, + -0.0013440971630171675, + -0.00032935695087707797, + 0.0004239449295254006, + 9.523884240560027e-05, + 0.0006724684645119475, + 8.861735275614632e-05, + 0.0010163584729922914, + -0.0007119348493207103, + -0.00013872117928633625, + -0.0008916194319646577, + -4.45318806680887e-05, + 0.0006332695732981366, + -0.00019007643812849747, + 6.434364578461794e-05, + -0.0014604079248171497, + 0.0007896900499986713, + -0.0006714053372930869, + 0.0010151801684065358, + 0.00025498867785931625, + 0.0012914120114307876, + -0.0009162523132757735, + -0.001322012713796777, + 0.0008191204811466476, + 0.0006723249055115289, + -0.00020900338728610003, + 0.0011289938638934962, + -0.0006538701015629086, + -0.0012765264189969804, + 0.001083659512966029, + 0.0002952738702534643, + -0.0004602025337262946, + -8.103192129590953e-05, + -0.0008969667023343441, + 0.0008117089696100372, + -9.769399695185435e-05, + 0.0010531905624631551, + 0.0002977086873459602, + 0.0011235354312997764, + 9.434636126851466e-05, + -0.0006497667648771048, + -0.0027810497762467347, + -0.0005540470572392248, + 0.00035727370381484654, + 0.0012045245656987446, + 0.0023320764981077883, + 0.0009955241560718467, + 0.0004768194280954253, + -0.0010214431576724338, + 0.0007636504916737487, + -0.0010514625563676906, + -0.0007706576014277622, + 0.000316044643441275, + -0.0005573213085070858, + 0.0002630757795269662, + -0.0006648747277195213, + -0.00013556900985660361, + 0.0007905640498806209, + 0.0004426462982015968, + -0.00229846926324013, + 0.00015152476202965985, + 0.0008363125371629512, + 0.00012708833740708675, + -0.0007544709467359782, + -0.0013527157135673252, + 0.0011777733220507142, + -0.00015766991987597545, + 0.0004383091532579459, + -0.0017856731144353425, + -0.0006613255526893334, + 0.000685832276029459, + 7.271660895234633e-05, + 0.0011711553587968031, + 0.00021607329288691354, + -0.00012144065326816751, + -0.0016095813022596877, + -0.0002564332986784003, + -0.0004073988883325421, + 0.0011211937939208019, + 0.0004969347688462875, + -0.0001843415958645364, + -2.2287496425896388e-05, + 0.00115464019331488, + 0.00023055693964400787, + 0.000686532157911574, + -0.0002833880074800904, + -0.0010843357740837397, + 0.0014301529305135677, + 0.0007442567474705815, + 1.0624402870961714e-05, + -0.0011109894480185822, + -0.00020133351470009292, + 0.0017709382582731976, + 4.728519291513384e-05, + -0.0014232168121446269, + 0.00016218771129781028, + -0.00033632016893614966, + -0.0003482536313586384, + 0.00038472972157577254, + -0.0004742319096869395, + -0.0003485546527758369, + 0.0011072264971884573, + 0.0006655657132380085, + -7.186237457386876e-05, + 5.232084673894177e-05, + -0.0003642263367411763, + 0.0005682500086202813, + -0.00015777323371741713, + 0.0007570702390019906, + 0.0011531968537553698, + 0.0011225155162283183, + -0.0004208972852554439, + 0.0012921118939538889, + 0.0006021868150946911, + -0.003072255944013091, + 0.002150456016400565, + -0.001983812471625505, + -0.0005580646583528594, + 0.0017421924197424145, + -0.000935691861521009, + -0.0005187944048144685, + -9.472331487206306e-05, + 0.0021896322444351756, + 0.00021686853077183447, + 0.0014145688745353239, + -0.0011909284042162587, + -0.0021461988391582, + 0.000372809510794301, + 2.200617922757347e-05, + -0.0003784593707531899, + -0.0009569936231183275, + -0.0005576046870325851, + 0.00030120486972245574, + -0.0015690630874381402, + 0.000668356725256216, + -0.001043381564703055, + -0.0015345191211776346, + -0.0010347675700382295, + 1.3830850912866665e-05, + 0.0008794922151196486, + 5.746661672894043e-06, + -0.001462558698066981, + -0.0005470104227108711, + -1.4770236830331587e-05, + 0.0001688332100768854, + 0.0008598487757289594, + -0.0015328412475415808, + -0.0016081592733622452, + -0.0011774931222778842, + -0.000997385759441901, + -0.002969046195251004, + 0.00033927907144973085, + 0.0017105881895072479, + 0.0001757839888251729, + 0.0013577411727607209, + -0.00042495034547297683, + 0.00010198405607027103, + -0.00107634232444726, + 0.0001221766975861962, + 0.000743388390688408, + -0.0005301075475979998, + -0.0012558231406793153, + -0.0008225885864900694, + -3.564187950956459e-05, + 0.000908755787945808, + -0.00027808024036125173, + -0.0033879464295087916, + -0.0012064584404954779, + 0.0018030805211043273, + 0.002592018223280558, + 5.7696735812046206e-05, + -0.0009365256732370843, + -0.0003982002645639484, + 0.0007416541505397477, + -0.0005947261615294452, + -0.00038659344150184985, + -0.0007807322107632247, + -0.0006394461888985372, + -0.0009955499151535455, + -0.00024519264581849003, + 0.0005980067677151872, + -0.0004857096416333224, + -0.0011050460322296848, + 0.0006613412106464309, + -0.00013784861479275, + -0.0003798426286631207, + 0.0008153297609344905, + 0.00044969637190695025, + -0.0017166973388478795, + 0.0013378297788796578, + -0.0013415338068376397, + 0.0001342498970824885, + -0.0003637746374411413, + 0.00022765365873110593, + 0.0009338171621699764, + -0.0015715515053374548, + -8.85280182747584e-05, + 0.0005985542336447197, + 0.0018539668953761288, + 0.00263143198296604, + -0.0008828655482656072, + 0.0010259761846601442, + -0.0019524672181921365, + -0.0007468369430596157, + -0.0007040680496744861, + 0.00024298058246243734, + 0.00024645105903755405, + -0.0009493287818192987, + -0.0005655475588869529, + -0.0013430493838073986, + -0.00018989672319441595, + -0.0005062566342539206, + 0.0010799449852211633, + 4.7074386458403e-05, + -0.0007517640800298653, + 0.0007556471183069093, + 0.000861398800893826, + 0.0008343793914534104, + -0.0020053660136698957, + -7.873207628875093e-05, + 0.0009224387129456842, + 0.0009703608645603651, + -0.0003599546196541329, + 0.00046026792914965624, + -0.0011784642996144775, + 0.00036832348485371115, + 0.00011358780178188562, + 0.0005778654046965261, + -0.0008516290081619637, + 0.00025613750931190437, + -1.4120298816577826e-05, + -0.0007775692549802584, + 0.0006003600906583129, + 0.0019884019600072676, + 0.0009811759398147878, + 0.0006171102367326794, + -0.00039880750790190526, + -0.0006991613435029897, + 0.0008658139101821944, + 7.303919471758216e-05, + 0.0020613643172815127, + -0.0009673931838452871, + -0.002377239872857705, + 0.0007925821559617899, + 0.00016976092234818007, + -0.0005221853997889041, + 0.0011913482619466981, + -2.939881712615536e-05, + -0.0006090283801624698, + -3.954436479760143e-05, + -0.0001817985272956997, + -0.0012043680178022377, + 0.0006397349376885931, + 0.0014776101746117268, + -0.0009180386739747606, + -0.00026445576861175077, + -0.0005461841797474845, + 0.000538110578847551, + -9.761321069716105e-06, + 0.00022879620623738705, + 0.0008297276862322028, + 0.00033878437217689863, + 0.0007023323179537419, + 0.0007487092933553971, + 0.0012044067939321246, + 0.0012469358405186412, + 0.0004720178085473363, + -0.0003730924980369895, + 0.00035317321624182027, + -0.0008074095519903419, + 1.0120908367325834e-05, + 0.0005813152421634613, + -0.0021084580832184383, + 0.0008288018348197844, + 0.0014841721814225642, + -0.0006828795206993835, + 0.0024569724104001336, + -0.0018878233037531317, + 0.0012253057265853072, + -0.0012577695709598022, + -0.0019735900583964924, + 0.0009569201056478602, + 0.0005625144782727089, + 0.0004907471455850584, + 0.00026489811915886985, + -0.0008643510573893862, + -0.0006360259212254687, + 5.4698924388043315e-05, + 0.0011572896469576482, + -0.0013115502696920583, + 0.0006549425139459206, + -0.0013506451096913555, + -0.0007247214820359092, + -0.0007714820837054951, + 0.0025926897935431474, + 0.0004430275791750872, + -0.00019987460901114447, + -0.00046638656277430963, + 0.002144517379305736, + 0.0017020398474777733, + 0.0004277844683805462 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgb(206, 220, 249)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 0.00026074825497593207, + 0.00043786470728437164, + -0.00016353344663857665, + 0.0009540978047292491, + 0.0015356667264795178, + -0.000334404341190529, + -0.0007940840289983011, + 0.00047133154238722516, + -0.0008928752571540099, + 0.0015305401387753638, + 0.0004677349047857996, + 0.000961295697216432, + -3.703246172284138e-07, + 0.0020264825268103597, + 0.0001868794952014119, + 5.9168838250670957e-05, + 8.378989483645195e-05, + 0.0008426501528011827, + -0.0025493346236219513, + -0.0011758854044988346, + -0.00046030255195458387, + 0.000149948978987752, + -0.0003902746978965827, + -0.0004595332802675642, + 0.00015238477626142565, + 0.0005860904929684942, + 0.00010624093647989302, + 0.00040478154666438677, + 0.000961809678365172, + -0.0020901397889015526, + 0.00028218265491215485, + 0.0006876661552023372, + 0.00043797240362398565, + -0.0006438489005672756, + 0.0016845199828930853, + -0.00031678479196742634, + 0.0002777027448523781, + -0.0003420727133744269, + -0.0020590962855586417, + 0.00047176279814764674, + -0.0002637728513498152, + 3.764434320719515e-05, + 0.00022337232571449108, + -0.0008413274446842841, + -0.0005526052376058184, + 0.000797277551903889, + 0.0016551422576397677, + -0.0017607676006218837, + -0.0015640762136635879, + 0.0006418881284846274, + 0.0008451148980582373, + 0.0008290183281051366, + 0.0011254626786853536, + -0.00023653307312937466, + -0.00103261239197174, + -0.0006928151979443517, + -0.000594586024586499, + -5.2415784310728795e-05, + -0.001081564214461471, + 0.0002111973083745355, + 0.0011984158390346536, + -0.0014197076621521405, + -0.00047352948655283143, + -0.0006079206754357277, + 0.0007145812946923709, + -2.957006140716809e-07, + 0.00029223113852220293, + -0.002111661483138153, + -0.00021935013284135813, + 0.00030332116257872626, + 0.0004706604102355576, + 0.0021220616173072623, + -0.0009681411113502878, + 0.0011501363262812103, + -0.0011946788004190498, + 0.002032547698991146, + 0.0002858130686416318, + 0.0012315070526718707, + 0.0005426033857705643, + 5.087070261118262e-05, + -0.0008091564062000354, + -0.0007185108206841581, + -0.00024111708203528048, + -5.075850968149898e-05, + -0.0015897065011863396, + 7.810671336664878e-05, + -0.0012284214920108129, + 0.0003281329191085481, + 0.0007005510477914971, + 0.000645256509478472, + 0.0007557099893288612, + -0.0008921477389145321, + 0.0009704704992735462, + 0.0005724238426442129, + -0.00035470815938423955, + -9.145213909400089e-05, + -0.001388819644578388, + 0.0002538204661271025, + 0.00042963501624427653, + 0.0005153938621340041, + -0.0018841851819872718, + 0.0006725904287193875, + 0.0005920197210193166, + -0.00046471681008577423, + 0.00046284322966451684, + -0.0007712633096208235, + 0.0008059193521931213, + -0.0006819714252867165, + 0.00014482948698606429, + 0.00017465596458313728, + -0.001216601162752407, + 0.0002926427941137309, + -0.0005645781305142236, + -0.0003976324156299406, + -0.00043167368228757945, + -4.2779673171537236e-05, + -0.0001854111750743031, + -0.0016334343119489103, + 0.0013252011941363327, + -0.00012104696759230006, + -0.00027251590557574235, + -0.0002459640497978384, + -0.00034647240075949597, + -0.0010009161162650216, + -0.0017535266069109439, + -0.0008812352198381019, + 0.0011981273152303908, + 0.00017484084058187678, + -0.001265233741646761, + -0.0007256125181855901, + -0.00033286541009788133, + 0.0007075982684356508, + 0.001995159012400541, + -0.00020788991207423184, + 0.0009629384047305069, + -0.00024185553071128085, + -0.001818751978143259, + -0.0017165391535874416, + -0.001051270337024126, + -0.0007090198602242294, + 0.0008976249475935647, + -0.0016287017834125778, + 0.00047067995997681006, + -3.73260075381568e-05, + -0.0001488410712409123, + 0.0008488016720630152, + -0.0005397762052360288, + -0.001140175084797778, + -0.0010821377101877068, + -0.0005357698972158947, + 6.387117636194649e-05, + -0.00170377227814941, + 0.0014151656860796078, + -0.0005674461136353067, + 6.160224637056895e-05, + -0.0019322563700312852, + -0.0012100201686595356, + -0.00014431380077109115, + -0.0014800308153126603, + -0.0005022363360584263, + -0.0007395207270002624, + -0.0003175405321816116, + -0.0009859559935696534, + 0.0009092590838902287, + -3.5298049910194006e-05, + 0.0013050016748227186, + 0.0003759230659988603, + 0.0012700172727081347, + 0.0010697413012524535, + 0.0009718211412146674, + 0.0005014985224662614, + -0.0013449834292336795, + -0.0007720243776426818, + -0.0013061043099754264, + 0.0004003184381113444, + 0.0014464984364076935, + -0.00032776654060134814, + 0.0011838682818579717, + -0.0008464648390424688, + 9.917011755501303e-05, + 0.0004558710894732222, + 0.0006797737540613134, + 0.0002788655054543009, + 0.0012848801290790792, + -0.00011515172711270706, + 0.0018382580652758036, + -0.0005823077676533508, + 0.0008902121408339736, + -0.0004850863714593787, + 0.0008013145346660905, + 0.0008294287963628738, + -0.0007465480695348742, + -0.0006683378577577736, + -7.905737776835794e-05, + 0.0015116334424616496, + 0.001246098405414887, + 0.00025753836199600346, + -0.0005804429879187298, + -0.0009496817873819714, + 0.002573783494942757, + -0.0003983934533377413, + -0.001185056524278888, + -0.00016682359840237791, + 0.0010118398379333287, + -0.0018817190501189706, + -0.0014376931544674795, + 0.0005511970863387027, + 0.0006629864496490189, + 0.00020765156954700832, + -0.000972945274043485, + -0.0007190698611448766, + 0.0027949217611375945, + 0.0013557351024080337, + -0.0022820103987233518, + 7.869083879122175e-05, + -2.1759667202504176e-05, + -0.001862340601150541, + 0.0003616652128968629, + -0.0009040425500021162, + -0.0002830328337428453, + 0.0006032357477397071, + -0.0002503043690709899, + 0.0008064803258206025, + -0.00022238691474077332, + -0.0004969294727703486, + 0.00012127674256472124, + -0.0011665109290263675, + -0.0008114225054201728, + 1.2357712542422178e-06, + 0.0022017272672762225, + -0.0008076351457061505, + 0.00045473420622565264, + 0.00055546223369008, + 0.0009935536047961868, + -2.2016378200412882e-05, + 0.0016688117010253034, + 0.00012284777603730227, + -0.000850448379249597, + -0.000473668541689733, + -0.001166205477097483, + -1.133752195682725e-05, + 4.949985765680897e-05, + 0.0010285958235324826, + 0.0007490705142834429, + 0.0012493314009230539, + -0.0005531621573881454, + 0.0016974652455400952, + 0.0009702095696325187, + -0.00045083021611477727, + 0.0007951875174136917, + -0.0003600001738688269, + 0.000273847861274408, + -0.0004170382737159634, + 0.0006856992389437341, + 4.8258382161019326e-05, + -0.00024828105541891223, + 0.00126425448538951, + -0.0023403602140173647, + -0.0005084125051990258, + -0.00014002232923275757, + -0.001111345565736703, + 4.541438603146399e-05, + -0.00018349837750024247, + 0.0007377542586056762, + -0.000461256785372628, + -0.0011442078436011444, + -0.00020558964082968302, + -0.001313751956876986, + 0.00019644362020675534, + 0.0014008018102915911, + -0.0012713400674629217, + 0.0005507911407015706, + -0.00012111239724278716, + -0.0013000084912160184, + 0.00010258250126716875, + -0.0013366361143595015, + 0.0006060590951300587, + 0.0019667258716224716, + 0.002085352327047821, + -0.0011669913474864249, + 0.0001704435775541555, + -0.000470770724850965, + -0.0006395411217294097, + -0.00013869849865695417, + -0.0002554183070688959, + 0.0008916680454933593, + 0.00048633050790804775, + -0.00198793181618576, + 0.0004003656885436565, + -0.00023206751190514902, + 0.0006039974974319576, + 0.0018442792613836308, + 0.0005538904451151193, + -0.0006023036639014254, + 0.00041162085573544, + -0.0011316233546041759, + -0.0016556453806326297, + -0.0012355308477676288, + -0.00241915496312795, + 0.0008328422066480375, + 0.0016371743855092809, + 0.0010706709713199272, + 0.001186870223421534, + 0.0013730972874655611, + 0.0010047570635808452, + -0.0014527634464739166, + -0.0002512700457869587, + 0.0007685037863858007, + -0.0018249981127539158, + 0.0001522889470344231, + -0.0012846562860712417, + -0.0004172265806479241, + 0.0002389330167739199, + 0.0007295327736375567, + -0.0014168416001278036, + -0.0006626082586573222, + -0.0002948455045694453, + 6.110015362805328e-05, + 0.0011610891691950342, + -0.0010731421671482735, + 0.0006204862774235848, + -0.0005511470284290225, + -0.0009662557807866334, + 0.0003982723259630793, + -0.0009233935830652126, + -0.0002745013307088319, + -3.499121492831391e-05, + 0.0009496786237179098, + 0.000273516163906474, + -0.0010250840131831504, + -0.000367052107612439, + -0.0005284374568188793, + -0.000990361415124244, + -0.0011075624519298985, + -0.0006130349649796815, + 0.0012579391401308486, + 0.0008512876362642477, + -0.000604083176412863, + -0.0013587442988978718, + 0.000848664171939314, + 0.0006418714612420052, + 0.00042807255663877174, + 0.0008151882025780629, + 0.0008740910440841431, + -0.00041737412592504793, + -0.0021965861788827232, + 0.0006054609432573632, + -0.0013598591655825957, + 0.0005311392680995492, + -0.0007461743331075465, + 0.0003132828630140483, + 0.0002291374897444239, + 0.00046466978127445205, + -0.0007164392942758438, + 0.0016684925398429103, + 0.0003707590821351537, + -0.0001419391568242266, + 0.0014661517157017853, + -0.0015743665490040213, + 0.0009902106387093094, + 0.0008503924545835413, + -0.0016232019476696566, + -0.0013813222924108097, + -0.0003900465271230719, + 0.0005695703723620751, + -0.0004542187310289362, + 0.0011699923088801633, + 0.0005695979691112044, + 0.002289360438818631, + -0.0002320131092537814, + -0.0020557712326814853, + -0.0007275025436667193, + -0.0011869527384367508, + -0.0006783590047973211, + 0.0004181177343446547, + -7.803832861731431e-05, + 0.00014259143494909976, + 0.00014144094659853854, + 0.000657062673174435, + 0.0025118384221039366, + -0.0010411737812096166, + -0.0008286212371263535, + 0.00027587145844005855, + 0.0014013751802344852, + -0.0007716593437237581, + 0.0011408861265586447, + 0.0010935729343722587, + 0.0006028666078600827, + 9.90306043637145e-05, + 0.0007091611791105321, + 0.0018936086128750992, + 0.0015773238499111244, + 7.97752773678456e-05, + -0.0007566332427803809, + 9.320443276871764e-05, + -0.00045245844741497826, + -0.0011115590485595635, + 0.0004718444282825323, + 0.00018894863136665544, + -0.00024509402234944495, + -0.00023625239622295248, + -0.000788245231428212, + -0.0018158612462880839, + -0.0006753262519509994, + -0.0006584759877075526, + -0.0008210748610504293, + -1.6038389298229027e-05, + 0.0010058786523099088, + -0.002804663137196348, + 4.6083832154624436e-05, + -0.0010279304347548751, + -0.000861523422511304, + -0.000923756364885975, + 0.001258196225389135, + -0.00010756439398247071, + 0.0005949983814966525, + -0.0005260653362618614, + -0.0011769346887755337, + 0.00019644678990862855, + -0.0015007926431246914, + 0.0009655012190384177, + 0.00035410939805708254, + -0.0017942079282110936, + 0.0003910522316119045, + 0.0010350726158982666, + 0.0011809144062356932, + 0.0006371346046043438, + -0.0008844102694799303, + -0.001400303861058635, + -0.00022556001898284828, + 0.002281741315883073, + 0.0012836272228193297, + -0.000993062416983482, + 0.00030717898754058383, + -0.0008283195573599538, + 0.00022926674991314273, + 0.0005852033863420282, + 0.00011158658385838823, + 0.0012570394899794493, + 0.0009254023404772235, + -0.0009532311455138227, + 0.0003477960792841218, + -0.00037983814290513794, + 0.0020600747941197837, + 0.0008839071434775227, + -0.0012211242811163954, + -0.0012882449290621872, + 0.0005751135508002176, + -0.0005229153963688458, + 0.0006411631470444265, + -0.00046983758404841707, + 0.0006560102202978332, + -0.0003233232480027269, + -0.0005956763372148415, + 0.0001537936166980211, + 0.00047939434123666074, + -0.0017865072851596963, + -0.0001394184686762036, + 0.0006695184138911742, + 0.0004421338655044377, + 0.0012519906866303569, + 0.0008488693185785131, + 0.00014487364760620123, + -0.00017605165764500978, + -0.0007703200430307326, + 0.0012377393452624392, + 0.0009281596310554711, + -0.0003755756113475325, + -0.00013937826283202286, + -0.00045479346868586155, + 0.0010836074001727126, + -0.000370639001605122, + 0.0008836756102626164, + -0.0008253044882265733, + -0.00043231090370436794, + -0.0005887097629625804, + -0.0009090664658824295, + 0.0005434186715312378, + -0.0006037932846321064, + -8.49172806883554e-05, + -0.0008510967243236434, + -0.00056803664865564, + 0.000804136024192495, + 0.0013400693833429615, + 0.0011854772371144562, + -0.0008681588101459271, + -0.0002895491623305969, + 0.0005252585012689237, + 0.0009898392861721877, + 0.00047423851341840104, + -0.0021528978822424193, + -0.000881788500150431, + -9.590375690010893e-05, + 0.001288999347667436, + -0.0005198418011624396, + 0.0004390031258354239, + -0.00021551267025932794, + 8.42176710930648e-05, + -0.0023257132760846518, + -0.0014528219078068052, + -0.001346230038628489, + -0.0003454005425121264, + -0.00023780795237144287, + 5.630576199574398e-05, + 0.0009591402574458808, + -0.000974011070717332, + -0.00017721319279485987, + -0.0021935990444144488, + -0.0005498451964495439, + 0.0013032971690729275, + 0.0007808880819836085, + 0.001077418348818, + 0.00038787285597497774, + 0.00035126987863895584, + -0.0002420701802648156, + -0.00039939712391031485, + -7.734259376626657e-05, + 0.000776575422476568, + 0.000546847408366647, + 0.00015249298700638545, + -0.00033606759197178166, + 0.00047071440386112115, + 0.0002738753504798068, + -0.0018869663671056507, + -0.0005971374620916024, + 0.0011747304764669303, + 0.0017886033396086044, + 0.0007064427340371217, + 0.0006546345315396921, + 0.0008700475665382865, + 0.0009272719091569144, + -0.001985446651842067, + -0.0010143150029357888, + -0.0010192662363510527, + 0.0005805702232148208, + 0.001657204409059489, + -0.0004751201880360219, + -2.9685200569170008e-05, + 0.0006047580294052148, + 0.0002098742438069941, + 0.00016923833900880426, + 0.0019862679524747817, + 0.0008880292185983528, + -0.001022457372290891, + -0.0010174395589564666, + 0.0004140747136789646, + -0.0009424057739917178, + -0.0005320830098550704, + -0.001892527178740062, + 0.0004927404952430863, + 0.0005452043652381865, + 0.000611211189655407, + 0.001135555690230214, + -0.0008574300103283309, + -0.0010856374782473033, + -0.0005250949617425049, + 0.0013361627875726205, + -0.0005775196145264953, + -0.0007469326219090861, + 0.0006270393573782202, + -0.0008431456136861951, + 0.00012365193822307842, + 0.001394326738654133, + -0.0003483465098639043, + 0.0004699506477035538, + 0.002034356498109025, + 0.0026840991136781794, + -0.0007703621159367766, + -0.0013073305842521163, + 0.0006884238967715122, + 0.0010373530009723632, + -0.0006205004111556378, + -0.0004680962215183174, + 0.001503815626188523, + 0.0020977424446532813, + 0.0006066909453152869, + -0.001782007819435275, + 9.830230140254329e-05, + -0.0010801344388880153, + 0.0006012879343343288, + 0.00046946720714396365, + 0.0009161021180541273, + 9.765492135838948e-05, + 0.000739369929154352, + 0.002206595083680164, + 6.697063395693902e-05, + -0.0005051645348876266, + 0.0016435078026663234, + -0.0003514807097833861, + -8.088743944119157e-05, + 0.00016624062018540702, + 0.001083412193643537, + -0.0007363970502113671, + -0.0005600084197934018, + 0.00261866949149773, + -0.0009476091995026907, + 0.00225737830488681, + 0.0005112868284124115, + 0.0017305411202099845, + 0.0007374692072241539, + 0.0007985657904148742, + 0.002683492645785201, + -0.0005817866056233203, + 0.0008010478777942592, + 0.0008493278950375116, + -0.000131586175810261, + 0.000830188661174459, + -0.0005368958310417891, + 0.0008983059529881366, + -8.111102418425528e-05, + 0.001048504232466868, + -0.000411663388932615, + 0.0010710733587017264, + 0.0013562620025853822, + 0.0005394309183138915, + -0.003314172692765406, + -0.0017041674258889623, + 1.2170229562391625e-05, + -0.002480438633050976, + 0.0016230364302719617, + 9.65733879135511e-06, + -0.0009216677351830137, + 0.0006014421463655531, + 0.0005211459141323079, + -0.0015978574348146982, + -4.599697838315126e-06, + 0.0006098441145435748, + -0.001965059770434839, + -0.00015484419558918863, + 0.0007238161987252679, + 0.0011938848542444919, + 0.0016700232699921494, + 0.0005030471801214791, + -0.0005908091199266707, + 0.0005518613898952959, + 0.0010940782694951643, + 0.0005951073441343049, + 0.000743145705310708, + 0.00210675832024904, + 0.000871239235068985, + -0.00034888560179885885, + -0.0017449055732838975, + 0.001068720876044692, + -0.0018411202944211365, + 0.001535171482972436, + -0.0006750020942024394, + -0.0010560832961864356, + 0.001315422396160994, + 0.0002962911399735451, + 0.0011890997491999626, + -0.0011620925857084388, + -0.0019447019039472387, + 0.0005529657284848353, + 0.0009401942898092884, + 0.0011493458757242218, + -0.00021266109988215482, + 0.00235926248143098, + -0.0012293923758548901, + -0.0006028952064697336, + 0.00026125808686061364, + 0.0016159173411086354, + 0.002280386011459549, + 0.0010650561629682472, + -0.0013630438226679262, + -0.0008807377545629174, + -0.00015440735033958285, + -0.00031927079476377375, + 0.0006895566413241967, + -0.0002913824278697022, + -0.0011289738888671296, + 0.00015097870586717538, + 2.524050402373038e-05, + 7.420284806740373e-05, + 0.00024449053368135875, + 0.0008294007984864793, + 0.00025292845168428126, + 0.0008216475644184779, + 0.0010993141681821408, + -0.00027382335244195916, + 0.00011435416783111551, + 0.000544889844991507, + 0.0002599076363763611, + -0.0009584534875462486, + -0.00018814030033040746, + -0.0004905718168140415, + -0.001220040226507474, + 0.0003800081661201053, + -0.0007851200250805112, + 0.0005919946018299638, + -0.0010782839251206617, + -0.0006742843544999144, + -0.0006477470237910159, + 0.0021153047466545864, + -0.000680558298218911, + 0.0010590503914186943, + -0.0005467839425608074, + -0.0012670743646043875, + 0.0005918211670503614, + 0.00044066133166978567, + 4.1259856509715914e-05, + -0.00010009366297374569, + 0.0009185698015976391, + -0.0003395678486669952, + -0.0001627351719039492, + -0.0005965117691926947, + 0.0003325034702222143, + 0.00032179230566566053, + -0.0017223472113372547, + -0.00038731761973141357, + 0.0009319354212549651, + 0.0009213806873753638, + -8.206455647330857e-05, + 0.0018584142980721011, + -0.0007575903863516104, + 0.0005658635849837821, + -0.0002682048352080327, + 0.0012615455554843174, + 0.0005900851585490552, + 4.017023292051166e-05, + -8.04375400509896e-05, + 0.0010416708649265143, + 0.00012587327760331217, + -0.0005446106637594888, + -0.0010283367509870468, + -0.0020652934980180896, + 0.0010492606439295822, + -0.0024637415909223794, + -0.0005679872134912439, + -0.00010864161433538216, + -0.0008010528776575352, + -0.0001409818952152164, + -0.00037098223370387283, + 0.00013778787381891225, + -0.00044904901763711494, + -0.00011200983344791937, + -0.0003720261021943552, + 2.773092098541336e-05, + 0.0005871721356499883, + 0.002125663662551348, + -0.0008976985029108347, + -0.0006369713752997791, + -3.290260321370531e-05, + -0.0014669383694995454, + 0.0005901081693299035, + 0.00029241999002175574, + 0.0019392756121596696, + -0.0007839288373711077, + 0.0017674071696910313, + -0.0004888431821088326, + -0.000147164905031259, + -0.00020325992659570713, + 0.000266380452451967, + -0.00035935413943672447, + -0.00016625400989214636, + -0.001048279398167707, + -0.0017992311703060157, + 0.0005332264374436018, + -0.00047342557400087697, + 0.0007537428950003614, + -0.0007276320062981694, + 0.0012587251346360875, + -0.0013507069488336869, + 9.517390156301431e-05, + 0.0008868974550728262, + -3.186209334524896e-05, + -0.0008332826270392177, + -0.001726767489999449, + 0.0007176169538380304, + -0.0011263420403317698, + 0.00025720049900155293, + 0.0008341680533605993, + 0.00020188868701597487, + -2.1132820776765578e-05, + 0.0004078419836116959, + -0.001392346971107948, + -0.001403634806413093, + -0.0014081078206575734, + -0.0015489494798161957, + 0.00025788914561739176, + -0.001109871091202612, + -0.00041390236097047384, + 0.00018948620782237036, + 0.0001888155854229897, + -0.0005130574509815886, + 0.0005100459389216181, + 0.0011995659024188088, + -6.5350265799066e-05, + 7.488726681247307e-05, + -0.0013086163183329994, + -0.0005525474513888189, + -0.0015811446967128626, + 0.00029008854375110564, + -0.0005375845489266323, + 0.0008281206820049867, + -0.0014716610615702038, + 0.0003545298060704352, + -0.0008838122614034907, + -0.0010547084692821525, + -0.00039874157598006934, + 0.0009479806836740894, + 5.250256315447605e-05, + 0.00030233992337431374, + -0.0004864246389362549, + 0.00018057600897518057, + -0.00017467704162217894, + -0.00012835642706477343, + 0.0008114257985528475, + -0.0005448202484212697, + -0.0011783919491375864, + -0.0011279511656978527, + -0.001150674780198691, + -8.318006892949971e-05, + 0.0006249158512258152, + 0.00042979163065178124, + -0.0012688587281309248, + 0.0002736692958153045, + 0.00038892719688834884, + 0.000519879066294838, + -0.0006784118597441738, + -0.0008534831617338515, + -0.0020287705352912883, + -0.0011615864735728173, + 0.001438257481196342, + -0.0015944304983788048, + 6.028806522380562e-05, + 0.0001413921380618839, + 0.0009711788076163963, + 0.0028025327800875626, + 0.0005295044764736799, + 0.0008080292088372437, + 0.002780047178874589, + -0.00029783450483772725, + 0.0016667053994251812, + -0.00013770042587624547, + -0.001992806300857909, + 6.00972544847621e-07, + 0.0003041233002791822, + 0.001279249257551985, + 0.0019001856452872294, + -0.0005003968386922142, + 0.0008558144005534708, + 0.0004435753886185813, + 0.000801331077184924, + 0.0006552941820050049, + 0.0007195934801920143, + 0.0007583305663677116, + -0.0001372809751295039, + -0.0003043087798964713, + 0.0009623263207158982, + -0.0003505416563648018, + 0.0009663994726778032, + 0.001002740094025693, + -0.0009540514440514853, + -0.001491600504667927, + 0.00024160840405758018, + 0.0016042653794747241, + 0.0005090878912441829, + 0.001410129755398295, + 0.00048090941816463574, + -0.0003207637764132416, + 0.0006032006988280051, + -0.0008934921240285835, + 0.00038124947439242775, + -0.0015911418870639643, + -0.00034291482993900244, + 0.0003308114046235202, + 9.899071398701406e-05, + -0.0003899885815572532, + 0.0005506213014751052, + -6.915549778087674e-05, + -0.00015874686482065953, + -0.001562801188915166, + -0.0024326244927761025, + -0.00048564187733265047, + 0.0002999361887748924, + 0.0007175737074864592, + 0.00025839865325741676, + 0.0010386956498715204, + 0.0010300845089105967, + 0.0008877335247930677, + 0.0009153332407808467, + 0.0004483549872643937, + -8.22109272626941e-05, + -0.002331545776187096, + -0.0006691633248852477, + 8.838361989614669e-05, + 0.001003831047064805, + -0.0012970742102415438, + -0.00030634703054389174, + 0.0010567375980656973, + 0.0009164627371168663, + -5.588020936498549e-06, + 0.000839171480447556, + -6.162259612518374e-05, + -0.0004159481305155471, + 0.0007766929227479429, + -0.0002935555586979207, + -0.0014047322852113221, + -0.00042427749745367393, + 0.00021998271667081663, + -0.0010806970854739216, + 0.0001664035399436784, + -0.000926479150556392, + 0.0003609573772157139, + -0.001397670499763587, + -0.00033784816956651954, + 0.0009827314885947945, + 0.0017634609332568961, + -0.0001660068361410769, + -0.0003196402560593736, + 0.0004885455193620375, + 0.0002666247351789592, + -0.00013315026033416602, + 7.064302282489934e-05, + 0.0003928697604741463, + 0.0004975901157410482, + 0.0005067097166436126, + -0.000503016191310159, + 0.0003595585244750453, + 0.0016083764228973661, + -0.0006940358650660625, + 0.00039171030300676516, + -0.0003871869932269575, + -0.0011324476817833437, + -0.0013738380217006257, + 0.0007581243777364632, + 0.00041287947416167596, + -0.0016406006505154966, + 0.0011685569719606967, + -0.001932268065361946, + -0.0014745247732347038, + -0.0004874910835926606, + -6.30118066862096e-05, + -0.0015270159299257196, + 0.0006857433667550247, + 0.0007323786623280249, + -2.4999466008865186e-05, + -0.0019185598082263602, + -0.0005069752397727518, + 0.0002890868062702814, + 0.0005162581761000195, + -0.00011586893259780132, + -0.0012571101125134528, + 0.0009452615152888528, + -0.0009206350365435561, + -0.0013093606228851713, + -7.909213112529035e-05, + 0.0010066338371386957, + 0.0004387001356691175, + 0.0005507388060688841, + 0.0003248509687632261, + 0.0006452004093331609, + -0.0023803743453187317, + 0.0009511967778090182, + -0.0029272976328545905, + 0.00042424147480009145, + -0.0005857754148372415, + 0.0007335374266072532, + -0.0010009270359942464, + 0.00025782933813261295, + 0.0015682885811400455, + -0.0011548653276898294, + -0.00038073059005243445, + 8.318188309219554e-06, + -0.00037371506621301337, + 0.0008745266831811059, + 0.0006383432560851278, + -0.0007314158712630233, + -0.0009509677337097485, + -0.0012043498532280823, + -0.001289349652781952, + -0.0006140725871039447, + 0.000480721615929204, + -0.0012879900911316304, + -0.0009659819058580652, + 5.740425446200722e-05, + -0.00011027509354901718, + 0.00043336293978316884, + 0.00033027738295277585, + -0.00014606166564253166, + -0.001337988671928727, + 0.0012658103175145507, + 1.3668872661110497e-05, + 8.101704926955243e-05, + 0.0008467783894956569, + -0.000531789928210527, + 0.0012647999424688897, + -0.0005902183917738951, + -0.0004725395032129933, + 0.0007903434363974282, + 0.0004461988301413895, + 0.002351882639100626, + 0.001377830964754509, + -0.0012179268421697396, + -0.001227319795541897, + 0.0012198082315095062, + 0.0008730070490560794, + 0.0006068365445641423, + 0.0007946141646259139, + -0.00026335182695306743, + -0.0006253442215826157, + -0.0017276867919623522, + -0.0011033520490369856, + -0.000977471261018238, + -0.00016058363969462738, + 0.0010071182603168909, + -0.0016436019179064502, + -0.0007701301021613294, + 0.0003899397553056678, + 0.0010173197151352065, + -0.00045198439931016724, + 0.0012237558530434234, + 1.0883781241956198e-05, + 0.00012323412647940264, + 0.0001260355032881855, + -0.0009297541079876743, + -4.33097949308707e-06, + -0.000542698680661903, + 0.0006867462740530835, + -0.0002353785838209618, + -0.001077357714891856, + -0.0022928095218385453, + 0.0001609559239683983, + -0.00025603433151131073, + -0.0008588251553425499, + -0.0008127009136887102, + 0.00017956346621502518, + 0.001233837156174947, + 0.000991434215853774, + -0.0003234473773978024, + 0.0021873800166716767, + -5.5940510849396296e-05, + 0.0002617571069784721, + -0.0005911583684228095, + 0.0008890844834016781, + 0.0005596176396429372, + -0.0004709451958861166, + -0.0013883438696238185, + 6.393187605083861e-05, + 0.00032720146111720426, + 0.0009839747755482563, + -4.6409490130750977e-07, + 0.0027168359008024447, + 0.000899594917061271, + 0.00029129436734675517, + 0.0009064776026806061, + 0.001110133155595373, + 0.0006715728738467932, + 0.0002792875929323569, + -0.0003431089187408314, + -0.0012733178290640066, + 0.001750324544996587, + -0.00011363632479263523, + -0.0011003555586875193, + 0.0010554206533746066, + -0.000511052936939654, + 0.001090841806287997, + 0.0010989252546990643, + -0.0006349435404090625, + 0.0008736235729645512, + 0.0004980270095942764, + -0.0006093901358915836, + 0.0008906934528360664, + 0.0008560231846574065, + 0.0020253285020856147, + 0.0006104958683274085, + 0.0004978210839991157, + 0.0011390558085112034, + 0.00022886481790233569, + 0.00012787055354145847, + -0.0012394115581366252, + 0.00019644721834212296, + 0.00011904007629873056, + -0.00010440985538749677, + -0.0003029588794726922, + 0.00048100636881796404, + 0.0009946610739816643, + 0.0005037071935247829, + 0.00014445557640497088, + 7.923905706904203e-05, + 0.0007441039254984929, + -0.0013665255089948404, + -0.002483652823101948, + -4.875004494250917e-05, + -0.001080836090919664, + 0.0005891406011406585, + 0.0010864067683071742, + -0.0004095091357713202, + -0.0004693603878016251, + 0.0009856647113023161, + -0.0017057920877921815, + 0.0018401747477436294, + 0.002611424464296575, + -0.00019002387271629294, + 0.0002228673058426058, + 0.0002689235545542153, + -0.0004978730148322813, + -0.001063600961483807, + 0.00012633105386641378, + -0.002343599447329161, + -0.002082683666438487, + 0.0006360037709290307, + -0.0002811660396331736, + 0.001224251183258506, + 0.0003475160293856512, + 0.0007068000533031835, + -0.0008770407736775661, + -0.0004343715086147099, + 0.0003888230009467231, + -0.0003822558822547912, + -0.000993386348767932, + -0.0020194107536365582, + 0.0005357837512105723, + -0.002911012433734214, + -0.0016170688065570843, + -0.0015563444228361843, + -0.0015769902117541534, + -0.0009162120754311898, + -0.0005918790502920378, + -0.0011953232530831134, + 0.0005605143204393976, + -0.0008599228503991868, + -0.0003931221946021755, + -0.0007494577128208009, + -0.00111012139510722, + -5.898112777271764e-06, + 0.0035422007670121514, + 0.0009476275023654472, + -0.0012487935326615305, + 0.0006294533375358118, + -0.0006995028837772912, + 0.000855823258021239, + 0.0003205436861839593, + -0.0013439864973206995, + 0.000365240145841325, + 0.00022743560677479085, + 0.00017470634345791307, + -0.0014719457671304443, + 0.0007722844576927412, + 0.0001764845612196122, + 2.5442129892154085e-05, + 0.00043202430044732515, + 0.0010665957806917912, + 0.00018668709153743144, + -0.00041686990763140053, + 0.0010791269155337822, + -0.000333173099401764, + -0.000719634171831092, + 0.0005186291409645239, + 0.0005057541853220684, + -0.0008473844104167033, + 0.0014065152861109339, + -0.000548642700080185, + 0.0023109465980042463, + -0.0009378864569380572, + -0.0006935437258549359, + 0.0008520623414247158, + -0.0008423670526673636, + -0.0006188159179610974, + -0.0009467037945128585, + -0.0019206018579787096, + -0.0010842532759778208, + 0.00031477855063928215, + -0.0005300252706276011, + 2.783526984907933e-05, + 0.00022826929204834606, + -0.0006175227085129718, + -0.0010913035338271434, + 0.001065618670333013, + -0.0005955671070965918, + -0.0008315605394007454, + -0.001714487576308789, + -0.0003748408382780242, + -0.00038451417496312046, + -0.0005963807284135246, + 0.001212466695725966, + -0.0005170384099724883, + -0.0021417653168325666, + -0.0011474931212809602, + 0.0013240041013663495, + -3.8787213664371006e-05, + 0.0009414633779417857, + -0.0002307923843382866, + 0.00038612641506054744, + 0.0008244236148472269, + -0.0005223650957435268, + 0.0006707153484019655, + -0.0007715769176576111, + 0.0006037031024516172, + 0.00044884206705970265, + 7.137968964199649e-05, + 0.0016582487930403708, + -0.0012225760060134109, + 0.0014555907848599094, + -0.00021666719000300246, + -0.0014219642997711347, + -0.00018034319311363017, + 0.0008245157682404528, + 0.0013382272792405489, + -0.0012178863080609646, + -5.137089444807403e-05, + -0.0013303756253474244, + -0.00035157571221675906, + -0.0002286943088461679, + 0.00023186601960840329, + 0.001035470106964414, + 0.001020298726690383, + -0.0021723382115726463, + -0.0003938075092432584, + -2.266212068179527e-05, + 0.00114642209688495, + -2.35852901151092e-05, + 8.161168843515627e-05, + -0.0005952892297162325, + 0.00012655156425028812, + -0.0004919090161970985, + -0.00018813631039281777, + -0.0005873190354269569, + -0.0018877701393794732, + -0.00012407007086853844, + 0.000554667812846068, + -4.4326410199528155e-05, + 0.0010752504775920315, + -0.0016469066597938884, + 0.0006445704538974419, + 0.0007795504106198557, + 0.0011774583806958678, + 0.0010358949582659357, + -0.0006121488903080726, + 0.0001212713596521115, + 0.0008679544129527769, + -0.00033319667384300474, + 0.0010731407700463264, + 0.0003499241233224939, + 0.00031673572744905294, + 0.0005300713962859494, + -0.0017136707190596723, + 0.0014311890970794719, + 0.0007628118421898396, + 0.0006615868791637344, + 0.0002688338455092237, + -0.00016114330595114914, + 0.00019709200819086054, + 0.0003327065371010457, + -0.000814737962036055, + -0.00062421946106519, + -6.719114671205505e-05, + 0.00019623180200003227, + 0.0002664774506508726, + -0.00016604675625265562, + -0.0010873026586098499, + -0.0007592967846395574, + -0.0006906243373310912, + 0.0003260281593502313, + 3.0217232714399528e-05, + 0.0005963578220192446, + -0.0002470328639291143, + 0.00048531635557954363, + -0.001153204200063859, + -0.0005006204611586649, + 0.0006664097768193643, + 0.00032712869765003035, + -0.0010700205393335013, + 0.0014534232085966128, + -0.0004478711293649646, + -0.0009484947538087433, + -0.00038113483790741065, + 0.00010213597738686202, + 0.00027636023461368185, + -0.0025303660548717925, + -0.0005223207236732299, + 0.001206992060227668, + -6.613956821078208e-05, + -0.00030371652882549657, + -6.390443658009585e-05, + 0.000582720513456561, + -0.0009364651692644022, + 0.0007326345167447062, + -0.0016994709437195919, + -3.170296067324137e-05, + 3.5017595233803118e-06, + -0.0011126359598553459, + 0.0006656235211167638, + 0.0007478719340118298, + -0.001866863018126851, + -0.00033742262990643727, + 0.0005511471020748174, + 0.0004729035282319602, + 8.898412382027742e-05, + 0.000411246740217658, + 1.885418884576093e-05, + 0.0006669920290011137, + 0.00034995697059108874, + -2.253722184389915e-05, + -0.0005485471742502213, + -7.709598383473598e-05, + 0.0003663154306885707, + -0.001255475568262609, + 0.00020896658366221293, + 0.0008065008250941468, + -0.0011425001433814591, + -0.00033589345378667526, + 0.0013547918949819511, + -0.0002929320388013729, + 0.0003411724213304036, + -0.0010749859218644197, + -0.001310362802522499, + 0.0017807008909497117, + -0.0002511610760394316, + 0.0006178431109671789, + 0.0016915149059616409, + 0.0016741548946791907, + -0.0007392536051671045, + 0.0011810944082827379, + 0.00024127985602289404, + -0.0005680592282323782, + 9.575135902640064e-05, + -0.0004196876764414938, + 0.0013189361278944248, + 0.0017270727086587106, + 0.0011179346859670578, + -0.0007516760482670026, + -0.0021437150484349605, + -0.0029223206367818234, + 0.0011809639630113256, + 0.0010808138085992985, + -0.002082912751766748, + 0.0017845749240998111, + 0.0008287330252159776, + -9.406571178897218e-05, + 0.0010996149985667458, + -0.0009011730461825852, + -0.0009152457937238982, + 0.0002850321578312071, + 0.0007308841281437219, + 0.0005012801041448546, + -0.000999952834509625, + -0.0013806630401753674, + 0.0010928356732245288, + -0.0006389272037987038, + 0.0006817684888949976, + -0.00012588319114115767, + -0.0010021835188818906, + 0.0014549293965708295, + 0.0009066369797943553, + -0.0001570461472848086, + -0.0009085948286405866, + 0.0009962740514062062, + 0.0005451694382410784, + 0.00123047886098377, + 0.0005275069264500518, + 0.0011132117543538858, + 0.0005960841478596676, + 0.0004428320704815466, + -3.996372630858914e-05, + 0.00022954508174240364, + 0.0007916220304607185, + 0.00159535662943411, + -0.0003187704537475713, + 0.000519268591655902, + -0.0008635969595575264, + -3.721424566214258e-06, + 0.002398523076143591, + -0.0010683378750533585, + -0.0004673466783922786, + -0.00030486795846337194, + -0.0032330079832658307, + 0.000295642130445215, + 0.0006040828969539611, + 0.00013380705429148835, + 0.00013661941137656718, + 0.0003504328477420739, + -0.00035967072086235004, + -0.0002575274401190704, + -0.0019999401819952543, + -0.0009857388296214229, + -0.0011535969462931896, + -0.00026340113836352547, + -0.0006992409885086626, + -0.00140977060113016, + 0.0007441080502916683, + 0.0003310247544200444, + -6.55503010259585e-05, + 0.002638947297089823, + -0.0008680677512878721, + 0.0006640167797764707, + 0.0006521331954376349, + -0.0011232856632296894, + -0.001407305035230953, + -0.0009208520672763145, + 0.0010143782899501457, + 0.00025661222886842955, + -0.0019213931568669922, + 0.00046588477050940814, + 0.00037979692014511804, + -0.001178494704727536, + -0.0007426720749451897, + 0.00035244729589521364, + 0.0009148328875129036, + 0.0006475392271107265, + -0.0011088489359737266, + 0.0007979278200797045, + -0.0015359853994207089, + -0.0008319739727559577, + -0.0003857061151385044, + 0.0003424252171432842, + -0.00020798211177086795, + 0.0005821114000255751, + -0.0006752087708052583, + -0.0004685670253176094, + -0.00042060288889455346, + 0.0015032397052025782, + -0.00021591443460466944, + 0.00026227822490864597, + -0.0004993570008078628, + 0.0007206259438005208, + 0.0019629137229960534, + -0.001322130188576797, + -0.0013506977797525489, + 0.0008999064879338775, + -0.0006930063016921635, + -0.00032807071319863385, + -3.724547690228119e-05, + 0.0015277130680854106, + 0.0007320595931487144, + -0.0004524584614943479, + -0.0007111963437842468, + -0.0007693400113246525, + -0.00031560528479501846, + 0.0016795515461713166, + -0.0035369860326698774, + 0.001634580213117284, + 0.001691961644841958, + -0.0003883967475599598, + 0.0012720312740341368, + -0.0016028435419697651, + -0.00035996247780623714, + -0.0003272691522820384, + 0.0003336783903004546, + 0.00019656037080421996, + -0.0006105519723773964, + 0.0002982808359413793, + -0.00032691078222181675, + 0.0006467168324483273, + -0.00026392120330017386, + 0.00011041064570940353, + 8.448895330610232e-05, + -0.00031357011072842745, + -0.00033562951889145476, + 0.00010553930364784806, + -0.0006966633451033236, + 0.00015067333878440557, + -0.0003331678422529707, + 0.0010983017224869018, + 0.0012285428978690632, + -0.0009983525308654986, + -0.0009476267055474691, + 0.000266347220014817, + 0.00156919426101508, + 0.00043587459383136255, + 2.6657326137083444e-05, + 0.0007679596063732189, + -0.0003582788216934352, + -0.0012651787142096713, + -0.0023636259901191167, + 0.0009000993201349861, + -0.0012573050982631186, + 0.00016487774064207617, + 0.0007183775527685425, + -0.0014596324867913347, + 0.0001439315850485988, + 0.0007777405654151467, + 0.0012150047729006257, + -0.00047046146322168956, + 0.0002611072069032055, + 0.0005485958990610743, + -0.0010381162134582556, + 0.00033847638372658034, + 0.00037385015634496964, + -0.00039130532239593763, + -0.0005125706629553018, + -0.0019021759752171287, + 0.000422126501991074, + 0.0013189866813687822, + -0.0007878544311154853, + 0.0006116025363653018, + -0.0006341655179368497, + -0.0002561770109954604, + 0.0004538214504272212, + 6.661551612557922e-05, + 0.0011432482269402365, + -0.0012604753630508386, + -0.0016474179630384528, + 0.0001603260641947138, + -0.0001893845330141064, + 4.799991962797949e-05, + -0.00041351664395761407, + -0.0003061387912563817, + -7.859516446087251e-05, + 0.00030632029538249744, + -0.0006939191219247784, + 0.0011192180723698303, + -0.00014091254933462904, + -0.0005176751210278609, + 0.0014402604901214125, + 0.0021375074753001203, + 6.689575108868623e-05, + 0.0007279834918209673, + -0.0008277274100100897, + 0.0003430810892325677, + 0.0004596498655881797, + 0.0009376107225524442, + 0.001221962828470341, + 0.0001637869573184842, + 0.00035434225236977764, + 0.00032647587295909255, + 0.0004424573908621379, + -0.0009781961086975529, + 0.0011405263134305528, + -0.0008125821704024521, + 0.0011592552118091144, + 0.0003283017476317557, + -0.0017678696184089085, + 0.0005341842337016609, + 0.00038802078949537575, + 0.00040399158867312444, + 0.0006063374849346458, + -0.0003332215795153476, + -0.00031125019761356733, + 0.0013200472757272609, + -0.0002632532114549716, + 0.001954197403902229, + 0.0008247988825105892, + 5.793727940223237e-05, + -0.00149770204361208, + -0.000600439027803505, + -0.0017080316528288043, + 0.0009836663638405781, + 0.00010717600248141628, + -0.00031450948494237785, + -0.0004268553375812572, + 0.0002652914669892009, + 0.00010122194528859039, + 0.0020917618133662374, + -0.00028543932021537946, + -0.00044271594546916714, + 0.0010416379801776116, + -0.00012853305872950158, + 0.0003815434382546712, + -0.001018505261528692, + 0.0008930224270012574, + 0.0037461600660538643, + -0.0001750920366830304, + 0.00037080667566637, + 0.00045284217104759705, + 0.0006842400587289538, + 0.0013320851393038432, + -0.0004589379898874274, + -0.003355507326809006, + -0.0022512833982866994, + 0.0005181862120003484, + 5.5537144973192936e-06, + 0.00013984410482469536, + 0.0010073895982000832, + -0.0003822315506225614, + -0.0012538448795482678, + -0.0010794263111983241, + -0.00037999569342966384, + -1.4740218276441278e-05, + 0.0012278842001350282, + -0.00039781301143004897, + -0.001655322071887964, + 0.00011012541394520989, + 0.0007856754231249778, + -0.0008592354085253508, + 0.001175264446851405, + -0.0024274024761671833, + 0.0003102391873736355, + -0.0013323128302122425, + 0.0005246140752052339, + -0.0005455364622472343, + -8.66562797261922e-05, + -0.0001639059071995659, + 0.0024424696648794285, + -0.0005762148698909832, + -0.0014936558150795147, + -0.0004669444134278518, + 0.0004954160394841183, + 0.0003535657282127433, + -0.00045648713214178243, + -0.0007889258418415782, + 0.0006442317198257458, + -0.0002842958766205202, + -0.00014706636226001078, + -4.353043598147094e-05, + 0.002260445247744689, + -0.0005464889647028946, + 0.00013632426267576214, + 0.000759069166972365, + -0.0003075453034012938, + -0.00041636130737988713, + 0.001193054014148553, + 1.3923184906987815e-05, + 0.0016611090395108343, + -0.00018921455792321836, + -0.00011809674341815152, + -0.0022986228796692556, + 0.00029023861888239586, + -5.336699603369001e-05, + 0.0015803800842614643, + 0.0012918666087414824, + -0.0009604794300063645, + 0.0013397630760727916, + -0.0004853173024374224, + -0.0011580379439667433, + -0.0009711386622074095, + 6.961379648142241e-05, + -0.00046469404445930774, + -0.0006385354903714772, + 0.0010118469811028366, + -0.001131430569337877, + -0.0012913868716924795, + 0.0008469704456183046, + 0.0005093465328938946, + -0.00038349617359934084, + -0.000889079260216298, + 0.00015432573651774992, + -0.0017644979596542715, + 0.00030303436211040003, + -0.0016397583545307967, + -9.6429342768009e-05, + 0.000983269349927758, + 0.0010527595102537946, + -0.0006040123229908015, + -9.905637627426967e-05, + -0.0006105420345654572, + -0.0009311116997096486, + -0.00011919784283248813, + -0.00025494823987904383, + -0.0004470432751406579, + 0.000456384892635661, + -0.00019146974435193956, + -0.0019703621989907243, + -0.0005486696617090406, + -0.00031936313574793825, + -0.002537017809638198, + 0.001507184488647017, + 0.00023319514650509525, + 0.0002431374546048892, + 4.2251428499835494e-05, + -0.0005900772436104839, + -0.0008637766497201027, + -0.0001297733624990393, + -0.0005475766576336602, + 0.00020206115572609734, + 1.3609761410281353e-05, + -0.002109651900216476, + 0.0010259569297857405, + 0.0007662976240661819, + -0.00044055344678645207, + 0.001040373424341014, + -0.00038495517247920375, + -0.0011062304622439427, + 9.269966007447795e-05, + -0.0004076433867492888, + 2.7031570156424304e-05, + 0.001211942683815763, + 0.0010923890962854517, + 0.00040279592722407666, + 0.0002613686539585081, + -0.00016393914864867523, + 0.0007232227449645376, + 0.00010103419238298574, + -0.0006545993799637784, + 0.0014591606746762915, + 0.00010445519625752926, + -0.0011184258247982203, + 0.0008970711673504655, + -0.0012743679008390503, + -0.0004905905269659158, + 0.00032898282766123075, + 0.0004780428078451813, + -0.000713905703398433, + 0.0011015463426088865, + -0.00043442819831541254, + 0.0005603759017289685, + 0.0007162207218599233, + -0.0008009606454275961, + -0.00012868578904904108, + -0.00037306879301151306, + 0.00045328244314980597, + 0.0004657391437685617, + -0.0003519426730922869, + -0.00040461845190072786, + -0.0015660053423261126, + -0.0005542096092325536, + 0.0013750564505314658, + 0.0004331969847871111, + 0.00032849328883141307, + 0.0009802026311597897, + 0.0013861161475754215, + -5.455863180479244e-05, + 0.00030059278281525877, + 0.0004290078172985336, + 0.0002323895159753583, + -0.0005879552560517864, + -0.000335738548445782, + -0.0006965752055936106, + -0.0002846978869100832, + 0.0005894054519634782, + 0.00010201926016769892, + 0.0002636850477940534, + -0.0014144482445750894, + 0.00018833330363494786, + -0.000256043938635182, + -0.001994055898461129, + -0.0005022682906933017, + -0.00012750356360906353, + 0.00043969629071227375, + -0.0010065153329152164, + -0.0014848422660349936, + 0.0007103471317960819, + 0.001395167912176152, + 0.0012632671913906134, + 0.0002790451228742056, + -0.00028704350947258, + 0.0012520560922648519, + 0.0003602087460790615, + -0.0011328734981755017, + -0.0019321236003410145, + -0.0005082939431077308, + -0.00030290423553761166, + -0.0015874546845470793, + 0.0005728954425412373, + 0.0007071705761719296, + 0.00014203381848731738, + 0.0006828117637631351, + 0.00027260180937288124, + -0.0007019257603835499, + -0.0006232630801593039, + 0.0004472040679914996, + 0.0016138173948071486, + -0.0014236022842988897, + 0.0010018051486199895, + -0.0015968967213557223, + 8.82960630871843e-05, + -0.0006811710843155816, + -0.001924300949055567, + -0.0006369226680089443, + -0.00012611458779457786, + 0.0009420890781714963, + -0.0007272201565654175, + -0.001173784742116088, + -0.0008157057410594224, + 0.0008737521300444885, + 0.0003066504950512141, + -0.0014725894641075782, + -3.9999477322966445e-05, + -0.0014165502827496682, + -0.0006405056204220425, + 0.0011591815147022684, + 0.00023891758067360832, + 1.4946538363850159e-05, + -0.0016514268527117932, + -0.0023888258974317047, + -0.0005837675273178713, + -0.00015727418444824287, + -0.00022281500263700798, + 0.0008969376710875734, + -0.0010309113305451763, + 0.00027428385908578076, + 0.0011305799838339306, + 2.912718453769835e-06, + -0.00023872021852227432, + 4.443169739715903e-05, + 9.824988245393663e-05, + 0.0005293288317334587, + -0.0015000660451510513, + -0.0007588384700667409, + -0.0003170801685256561, + -0.0017033729153955084, + -0.0002676249201055363, + -0.001019636053221109, + -2.4170191097250333e-05, + -0.000698276067000585, + -0.0005731000312922935, + 0.0012577113697435978, + -0.0020195884849629414, + 0.0006025286611919327, + 0.0007764936011257414, + -2.3988343434667178e-05, + 0.0008332305908724942, + 0.00035166642830153263, + 0.001626921606031914, + 0.0004122432471701007, + 0.0002873420273614081, + 0.0019738574000820303, + 0.0002818967378226958, + -5.307070900448696e-05, + 0.0007284990718963735, + 0.0017815504483176415, + -0.00097582923528872, + 0.0008852231950764047, + -8.887922500428556e-05, + 0.0006599071355168132, + -0.0007185955705893803, + 0.001876728333248415, + -1.6669575718483736e-06, + 0.00037235048850849404, + -0.0015441462082950274, + -0.001330529520760666, + -0.0003189678207130931, + 0.0016545523466544177, + 0.0006924608433523576, + -0.00036071804656274324, + -0.000995172382567184, + 0.0007235228462470531, + -0.00043516909151721677, + -0.00016005961950106814, + -0.0002805016105580159, + 0.00015503370462487356, + -0.0010568028938595327, + 0.0002489640136303887, + 0.0006374236051045036, + -0.000853365168806077, + 9.647483724096074e-05, + 0.0018031637904824683, + -0.00025022757283944504, + -2.690753614171714e-05, + -0.0003724869578789001, + -0.0016915804942099846, + -0.0009321221862495551, + 0.00033408677815103025, + -0.001813956318659664, + -0.001959686456821611, + 0.0005179510507306106, + 0.000965953778024409, + -0.0018270005719466028, + 0.0001642940862728893, + -0.000902178771319691, + 5.4668896151752265e-05, + -0.0006585117080188745, + 1.0686821211831893e-05, + -0.0008572746406212352, + -6.365416145195372e-05, + -0.0018072333454768, + 0.0003083527897038205, + 0.0003894914814364947, + 0.0007073591563056009, + -0.0007501086935285541, + -0.0002609229169625354, + -1.4835273233632567e-05, + 0.0005740728197414814, + 0.002077697842838812, + 0.0012203704040703101, + -0.00025230731479087426, + 7.1187993533351735e-06, + -0.000751743691629907, + 0.0003024585421054673, + 0.00044278348569028804, + -0.0007216678074421343, + 0.0003445807188183718, + 3.965415852581499e-05, + 0.0003267273604271273, + -0.0009953979712680014, + -0.0006971643906352648, + -0.0007314834257055148, + 0.0007892938269904767, + 0.00023537923028700667, + -0.000704674370920875, + -0.0005562161557151552, + -0.001330150794465287, + -0.0008488348827584847, + 0.0015768963302527897, + -0.0003838943430412023, + 3.611263931999234e-05, + -0.0001260424763000191, + 0.0017582857508070162, + 0.001071168663333574, + -0.0015261726152582939, + 0.00033703775004307, + 0.0001612404181029848, + -0.0007867119902440749, + -0.00010373067417347048, + 0.0005388929955048158, + -0.0002500250276929538, + 0.0005598393569517635, + 0.0001873889557930239, + 0.000447866712015982, + 0.00032874803980375504, + 0.001789567955440124, + -0.0010400848181370973, + 0.0006531295981980971, + -0.0016729612143603194, + 0.00039716815898635104, + -0.001098277477818257, + 4.8004111882857894e-05, + 0.0011745661299262984, + 0.0006399002228892056, + -0.0016341393754232608, + -0.001306117633136951, + -0.0004648921061139214, + 0.0006286305566295303, + 0.0031727735695123824, + 0.0007587445975422176, + 0.0007410942592693386, + 0.00019719280324311005, + -0.0009721044614893103, + -0.0014471192209551894, + 0.0009020049063068945, + -0.00048817314438659735, + 0.0016514438869164854, + -0.0025541281707809225, + -0.0006055022906130284, + 0.00019063046169014427, + 2.81125864648669e-05, + 0.0008200280329799085, + -0.0011246953946596524, + -0.0007966921587427032, + -3.324047831105439e-05, + -0.0008353476548316341, + 0.0006949719724906518, + 0.0002516673021725742, + -0.0010506907961213635, + 0.0008895218677068831, + -0.0004386753012703439, + -0.00015910683644254715, + 0.0007180978657044953, + -0.00031866256401943336, + -0.0007293874740831913, + 0.0003770054192870846, + 0.002547156230695377, + 0.0017419642564596874, + -0.0009870312243733862, + 0.0005641442941789649, + 0.0014526826279348108, + 1.4468795637402341e-06, + 0.0011623108081206877, + 0.0006149992193399584, + 0.0009642544343278944, + 0.0010163807087535887, + -0.0008365427601332698, + -0.0005877125621158661, + -0.00022384486858442035, + -0.001303595926012986, + 0.001619532746114095, + -0.00034600267311039434, + 0.000867498054589249, + -0.000522107194959992, + 0.0007617948291518375, + 0.0003557980722421122, + -0.0014057984533157935, + 0.0002447609302420466, + 0.0008120368267197639, + -0.0008580093772690194, + -3.75763294096475e-05, + -2.80583919367345e-05, + 0.00033008983783906943, + 0.0010103872539010304, + 0.00011789098944362097, + -0.00013457370218809497, + 0.000961028890351726, + -0.00024758542331453526, + 0.00020762218586999157, + -0.0005542545304559909, + 0.0010809288609173677, + -0.0010364077673805036, + -0.000893236024200162, + 0.0005284828596615792, + 0.0005617977224637446, + -0.0006124188074343136, + -0.00028782117954886087, + 0.0009521512706990542, + 0.001116643868585938, + 0.00030967045116280347, + 0.0011047297776586907, + -0.0009364725121086886, + 0.0005880802926890266, + -0.0005824815481756558, + 6.240920732332302e-05, + 5.258567347245372e-06, + -0.0011677844375703077, + -0.0008542514114272211, + -0.0006227895689829041, + -0.0012652039952201126, + -0.0010724705290043458, + 0.0001478368258170029, + -0.0005496296275690209, + 0.0024810237919678335, + 0.001481469335885232, + -0.0015287664519309176, + 0.0008932598255385408, + -0.0006593238645745055, + -4.9962671545459534e-05, + -0.001448908511882577, + -0.0007170074001757937, + 0.0008571007191241069, + -0.0015819478077406432, + -0.00035056502478729055, + 0.0005737007786529236, + -0.0021758453546395274, + 0.0015556794190314015, + -0.0016060759161292642, + 0.0004143787301738753, + 0.0010440157519906038, + -0.002665158520197707, + 0.0009533266131541892, + 0.002772532254348607, + -0.0014585495492420082, + -0.0001904112621321398, + -0.001434124481085377, + -0.0019770492863622775, + -0.00025316981373132356, + -0.0010909097029942571, + 0.00021243419663101042, + -0.0010702134197809463, + 0.0007537863743975452, + -0.00020563354117201198, + 0.0014851946684146476, + 0.000256982796860948, + -0.002403046133681582, + 0.0010300756333014155, + 0.0023526001003678354, + 0.001960682854224633, + 0.0002496200738676397, + -0.0007877185889363118, + -0.0007634497425333959, + 0.0003959417070802775, + -0.0014869655329087233, + -0.0006567763135808856, + -0.0018466138692343206, + 0.0005112049082698658, + -0.00022145847692509274, + -0.00012293869644261217, + 0.00029359626404022087, + -0.0013563126368588262, + 0.0012871505847472974, + 0.002380433164408898, + -0.001091663799005, + 0.0012845931920368275, + -0.0004025439098423579, + 0.0019385144504410776, + 0.0006594072267624246, + 0.00018481030418081626, + 0.001013506700027407, + 0.0001658138782409508, + 0.0019390661884301757, + -0.0006854029114524664, + -0.000505208086194094, + -0.0006162261322101594, + 0.0007315095396016244, + -0.00011916415149292946, + -0.0014114472032291225, + -5.624011320305899e-05, + 9.484413501425137e-06, + 8.797034237295681e-05, + 0.0002344473853369159, + -0.0012688165661441366, + -0.0008339152792872977, + -0.00013716502134772658, + 1.448200842215224e-05, + 2.4556626861001597e-05, + 0.0004102329682189159, + -5.0772848268931206e-05, + 0.0006679450936362935, + 0.00044268369120851325, + 0.000906981686990175, + -0.0001815520391751198, + -0.0014370618552912854, + -0.0023748595386895326, + -0.0004699730469347708, + 0.00041912283127308977, + 0.0004801871677066957, + -0.0005175813675389903, + -0.001776530047914468, + -0.0002962333005998304, + -0.0005385018052123836, + -0.0016907958673039137, + -0.0008205600941354202, + 0.0002771563893219728, + -0.0001803125116029841, + 0.0011680118215806354, + 0.001672988991982122, + 8.19614009055548e-05, + 0.0008890022034468664, + 2.1457720219397994e-05, + 0.00031392053119959264, + -0.0016315182898970968, + -0.0016543764469773151, + 0.0013076141408030046, + -0.001637809697334801, + 0.0016122544782497781, + 0.0014219906569143332, + -4.084994332607433e-05, + -0.00015728093934794192, + 0.0018241794585491331, + -0.00045058448440066874, + 0.0005566819099668585, + 0.0005207760845236255, + -0.0001319243611849681, + -0.00020192939067732453, + 0.0009672724481229011, + -0.0003664095146629166, + -0.0001536168043625131, + 0.0005162969179861717, + 0.0006017021693697598, + -0.0015580016971622544, + 0.0009798667031883565, + 0.0005910733445300461, + -0.00010104819336304431, + -0.001158515946783768, + 0.00023604300258502498, + 0.0012610307936557793, + 0.0015426617211115057, + 0.00018256979283765766, + -0.0008472144368345928, + -0.0003429253321656165, + 0.0013157830989619437, + -0.000374440466882313, + 0.0006923686667196066, + -0.0010885750168397874, + -0.0014178805603492514, + -0.001141275498422987, + 0.0011464895016500473, + 0.00023613360562621045, + -0.0014251331124846647, + -0.001474516828667751, + 0.0004092469248811746, + 0.00024005966166633938, + -0.0010902708981049268, + -0.0005344666598894138, + 0.0001491119877781404, + 0.001658364100021527, + -0.001186595448475922, + 0.0006468691388529613, + -0.0006737320784718535, + -2.3292465239387644e-05, + 0.0005813275875006548, + 0.0006832838013035567, + 0.0003639069340991734, + -4.712799098345064e-05, + 2.698460468939152e-05, + -0.0004049997983958916, + -0.0005484434377935604, + 0.0022137561066784893, + 0.00012375256193496745, + -0.0016372371477768226, + -0.0006112285703965118, + -0.0002651058837194071, + 0.0005987500736116729, + 0.0010424046515384163, + -0.000784020230344142, + 0.0015861295341924487, + 0.0019481931529681442, + 2.5696214017541176e-07, + 0.0011025420577071056, + 0.0030181272028262968, + -0.00012692698808013667, + 0.00010039942965230409, + -0.0004848553458117953, + 0.0005468473717734156, + -5.792120452587164e-05, + 0.001004565241781515, + -0.001171201852923452, + 0.00031353870648016824, + -0.000142054876162477, + 0.0014364436105352423, + -0.0005942531949831742, + 0.0007383054820684372, + -0.0008258622692305238, + 0.0005074792816763258, + -0.00033228178549301273, + 0.0009476808284773026, + 0.0008630923032444637, + -0.0015487845713241437, + 0.0009500481366374247, + 0.0012225944965430164, + -0.0006554745240809801, + 0.0006345274653465379, + 0.00047850667602796236, + -0.00017387967133008602, + -8.835045582693195e-05, + 0.002150146917573786, + 0.001354302122008305, + 0.0008496316231871746, + 0.0015502891738547531, + 0.0002915702318269332, + -0.00018441747406311673, + -0.0019123177170127807, + 1.3567396967397898e-05, + -0.0006607288467805343, + 0.0002716278192331916, + 0.00019370984172820645, + -0.0017304121010248987, + -0.0007767943115912327, + -0.0007364857284229032, + -0.0001870335652011522, + 7.85244958953736e-05, + 0.0011697935149731478, + -0.00031467442542823857, + -0.0013357892554899306, + -0.0012641149836873063, + 0.0004043100496369065, + -0.0009479615510079421, + 0.00018042402435639824, + 0.0014207376357059558, + -0.0010425561811817983, + 0.0006463172839028844, + -0.0010979644389502669, + 0.000855753101040635, + -0.0018865707956130212, + -0.00028227312414865337, + 0.001547149594648159, + 0.000160735663014812, + 0.00012020454319712801, + -0.001682207070976337, + 0.0006562161702503879, + -3.1177347911130098e-06, + -0.0006255310273245945, + -0.0010671429449617647, + 2.5278894509800128e-05, + -1.6651623082980597e-06, + -0.002086322349514762, + -0.0006555476969934208, + 0.0021992529948187574, + -0.0027177453343102927, + -0.0009034430323488792, + -0.0012037910627310455, + -5.599399463343527e-06, + 0.0004749640278065876, + -0.0008172122214950942, + -0.0005999715247237702, + -0.001088669854251393, + -0.0004705311471091777, + -0.00021611472331880884, + 0.0006927827463326292, + 0.001430404669867916, + 0.00057330130486296, + -0.0008751738201584596, + 0.0004175576394620772, + -0.001900418532286306, + -0.0008103618115861961, + -0.0009793395293266835, + 0.0003539132420584908, + -0.0005777879622313562, + 0.0006141339658833766, + -0.000240336191196481, + 7.437856416085227e-05, + -0.00033755495129747536, + 0.0010620144140437052, + -0.00015760388415684168, + -0.0011831553745031145, + -0.0011925208281155521, + 0.001650145989491095, + 0.0011829895745983727, + -0.0006728379730732499, + 0.0001369460652544547, + 0.0012588764456868042, + -0.0005794532446594633, + -0.0010025049039670455, + 0.00015397654306747375, + 0.0006592667613444243, + -0.00026755243220410573, + -5.563789274422466e-05, + -0.0016470800323307552, + 0.00014623254671652735, + 0.0004348119183352214, + -0.0007454134284529246, + 0.00028991624456086015, + 0.0015473456262929863, + 0.0011257909849672425, + 0.00025281778752811695, + -0.0010111249799300654, + 0.0008911928377342726, + 0.00014456369675139042, + -0.000798559814048301, + -0.000692900125831832, + 0.00012526894298311832, + 2.4882378307213365e-05, + 0.00016611894840313682, + -0.0015274716347559885, + -8.404554262003691e-05, + -0.0009291402307032318, + -0.0010963279871902569, + -0.00030243519794928493, + -4.957543892983852e-05, + 0.001529209944125255, + 0.0001157854094981443, + -0.0005783180940223024, + 0.0002310832408460832, + 0.0010908181984174837, + -0.0010430649772189824, + 6.355122776843886e-05, + -0.00016455635111790315, + 8.381296873380344e-05, + -0.0015888791762248586, + 0.0004806976575513951, + 0.0006781498858284241, + 0.0006441444564837381, + 0.00025144286041579254, + 0.0013825259617482656, + -0.0011847188334043186, + 0.0009625860837755454, + 0.0010719022732914884, + 4.805145276874381e-05, + -0.0015704976298872404, + 0.001325397707354256, + 0.002135537016122035, + 0.0012822072868108325, + 0.0011765751888041462, + -0.0004648084441948953, + -0.0002217863918006349, + -0.0005331944681527866, + -0.0019032967467063262, + 0.00010902277013109427, + 0.001496080198656126, + 0.0016654003994523504, + 0.0002313322871801874, + -0.00022117280816378023, + 0.0013103539620758526, + -0.0005264415218833457, + -0.0005504994628791847, + 0.0002457359049764978, + -0.0006850777483362633, + -0.0001459302471127175, + 0.00040307849292898053, + -0.0011180259141148248, + 0.00023394015239622815, + 0.0012303737391716311, + -1.2149183493714074e-05, + 0.0007040303743574398, + -0.001626886170739079, + -0.0003377078942578626, + 0.00047587581597615135, + 0.00016545896903222098, + -0.00036480719594204046, + -0.0008439801638439339, + -0.0013249863289287154, + -0.0002534282328287153, + -0.0016896165320101023, + 0.0008376726428598944, + 0.001261336067440653, + 0.001936086546024351, + -0.0011210555510453553, + -1.538900725373617e-05, + -0.0020528042890322305, + -0.00014833582911947027, + -0.0008781847889501599, + -0.00037858224086783737, + 0.0017211503994519293, + -0.0008336025312035582, + 9.75311542186527e-05, + -0.0003987337425757559, + 0.00016348925133519463, + -0.0011020054022630825, + -0.000206115686633026, + 0.0008260077190342445, + 0.001350054014041434, + -0.00042633957447809094, + -3.527331926816326e-05, + 0.0005416031119649582, + -0.001138932813726988, + 0.0006423799437722455, + -7.820184499891437e-05, + -0.00015626386634799575, + 0.00013550837021683522, + -0.0009333516208465299, + -0.00010486258967385587, + 0.00031976167388316054, + 0.0007321540133987095, + 0.0016327999956257343, + 0.000562150998990523, + 0.0001089862789755358, + -0.00012730588998917383, + -0.00016222464592100487, + -0.0004592538336560184, + -0.0005926329148154975, + -0.00034355038784010587, + -0.0015805624388261638, + -4.245636787448969e-05, + -1.4659393635466084e-05, + 0.0014518953416300898, + -0.002439218322765055, + -1.949140508686804e-05, + 0.0010670055644881732, + 0.0008159990650206499, + -0.0018268444841171559, + 0.0010960307253002782, + 0.001206237705011351, + 0.0001808746163074575, + -2.398782464250953e-05, + -0.0002163490000896907, + -0.0007345722932271609, + -0.0011035336246805376, + -0.0001559287681544979, + -0.0015386580276604655, + -0.0006158288727749718, + -0.0009854396632202162, + -0.00048277563258059, + -0.0009721697435214294, + 0.0003094329995047272, + -0.0014774435994053387, + -0.0025109721790843756, + 0.00025328685619526435, + -0.00028684250015814655, + 0.0005805831845094999, + -0.00028537842506869924, + 0.0022353438056218703, + -0.0011536670434838193, + 0.0016600640711300699, + 0.0017758653843128833, + -0.0011115122105932243, + 0.00010275026814756332, + -0.0004230369432695475, + -0.0007610805602586127, + -0.0004406665623422719, + -0.0003622162662930237, + -0.0009246368403840884, + 0.0016052124943075105, + -0.0006539949529824238, + 0.00010914501197928367, + 0.00163438645157222, + -0.0016270217165128777, + -0.0008197991619707772, + 0.0007467312266886071, + 0.000982649833951593, + 0.0012435991019419475, + -0.0003760730666740471, + 0.00028418376674390104, + 0.000894966668055774, + 0.000490842847977702, + -0.0016119257162850664, + 0.0018079609159422484, + -0.0006060055658303217, + 0.002344851066166329, + -0.00018830211178596373, + -0.00042505402748014003, + 0.0006353976517289774, + -0.0017198416789581538, + 0.0005036407058540301, + 0.0008324323619922341, + 0.0004981649073855974, + 0.0009154144578296057, + 0.0005691328670518681, + -0.0016045560026134644, + 0.0005548258496218266, + -0.0007402750364893461, + 3.977293448849753e-05, + 4.151803148333948e-05, + 0.0008829214536642902, + -0.0010077972230612864, + -0.0005577121515379509, + 0.0018530937916659703, + 0.0012436038766820581, + -0.0013097008238032821, + 0.0004735359244929781, + 0.001746009741895817, + 0.0013191201892887308, + -0.0005857259318531701, + 0.0016787857480206755, + -0.000603212030510093, + -0.0003972809179191779, + 0.0011730828595175986, + 0.00010279595412288143, + 0.0007819259975634963, + 0.0014224134496718726, + -0.0016672334015267092, + -0.0011448374535940745, + 9.700236040593373e-05, + -0.0007246128631048685, + -0.0025255237075374262, + 0.000877843192368149, + 0.001605260881246336, + 0.0007706980226788243, + -0.0018140039265401007, + 0.0005454436786870319, + -0.0015827145037246274, + 0.00015323869599896217, + 0.0005455777638543308, + 0.0025793356546270096, + -0.0018511916088023263, + -0.0010349395369841836, + -0.0001517005824073916, + 0.00047977443469415066, + 0.0005413637955355438, + -3.274666864007506e-05, + -0.0010332295944850533, + -0.00018808174608791076, + -0.00014849089474385603, + -0.0016336550638849374, + 0.0007864824015099038, + -0.0020825091868988416, + 0.0003670030816663319, + -0.000609193034546759, + -0.0009790506165998298, + -0.0016277701331310025, + 0.0014930151339894106, + 0.0007590103218115521, + 0.00040413933314130407, + -0.0022708177337032657, + -0.00011133174885162724, + 3.719965662469476e-05, + 0.0011992970482043314, + -0.0010661050457607124, + 0.0017214962998457622, + -0.0001645677966585647, + -0.0004141198785175022, + 0.0013545251182772822, + -0.0014635884974343327, + 0.001074524457340383, + 0.0013036949364758474, + -0.0018982055743139376, + 0.0005630343457266964, + -0.001036549985527638, + -0.0003457276917093368, + -0.001319373276484906, + -0.0015100260621323468, + -0.0006233875700632095, + -0.0005723297904912169, + 0.0017425948210509532, + -0.00010085990838268403, + 0.000868737471770221, + 0.003293644161033569, + 0.00101203005798917, + 0.0005058275680575152, + -0.000620440360422692, + -0.000833714339404004, + -0.0006566300739805024, + -0.0004263878151687804, + 0.0001663947146034304, + 0.0002244152785197859, + -0.000160134897238329, + 0.00013286746294610964, + -0.0009905574952668611, + 0.0007331100107058365, + -0.0006378707956737736, + -0.0007387578157324465, + 0.0011633230487730938, + 0.0005867795526364373, + -2.4401127545975015e-05, + 8.574377080285737e-05, + -0.0010235170969227518, + -0.0003179135483097467, + 0.001643733899753187, + 0.00125157144796705, + -0.0002648916642199934, + -5.625650538512597e-05, + 0.0006592771697221224, + 0.00041871947448766353, + 0.0007353923274521356, + 0.0017432273074172806, + 1.4875597407173612e-05, + 3.968835092698253e-05, + 0.001044996196247387, + -0.002153218382971864, + -0.0013324983566032648, + 0.0010228743602764285, + 0.0015875256981478633, + -0.0014621773889153906, + -0.00040730604078863703, + 0.002986443007961602, + 0.001119672297917992, + 0.00015170797671242915, + 0.0008303780036627607, + 0.0011281155809507535, + -0.0008304923497289497, + 0.0016320220685730742, + -0.0009782680768167617, + -7.75856867746698e-05, + 0.0014190676438314604, + 0.00028880509549744973, + -0.0014632544855500136, + -0.0005208236543235981, + 0.0013040173696224958, + -0.00023937377893608948, + -0.0015735963710755978, + 0.0016734949518057841, + -0.0019001219615450173, + 0.0009469972740205879, + -0.0007302199596468209, + -0.0015877470181261794, + -0.001010501469079768, + -0.0013693235082568565, + -0.0004549403951140949, + 0.00040875768102941054, + 0.0012646454975974006, + -0.0009807116347805578, + 0.001998200096808863, + -0.0005653003926473382, + -0.0016837446649114898, + -0.0005466410034001785, + 0.0005833586775608557, + 0.0017328720277730812, + 0.002078825275230735, + -0.0010395247360338994, + 8.272661036229335e-05, + -0.0005770990655927649, + 0.00023253562943239425, + -0.0007591832094936029, + -0.0024401356586443916, + 5.926672712361886e-05, + -0.0004814029907938116, + 0.0005414047595165707, + -0.0007280244422834166, + -8.548497521454685e-07, + 1.0107094671994545e-05, + -0.0010563947567406146, + -0.001038981068564002, + -0.0002619774316245837, + 1.3097756778472916e-05, + 0.0004884716945360798, + -0.0010114309959833557, + -0.0006580753281660647, + 0.0006613378469469018, + 0.0005867301944289969, + -0.0008073850146476702, + 0.0022643642273210683, + 0.0004749215886636004, + 0.0011812749128962028, + -0.0007839089284766292, + -0.001715848207301751, + 0.002110375467053945, + -0.00152490264785653, + 0.00233738831200478, + 0.00034254371106183626, + 0.0006809616491187205, + 0.00018497659085751575, + -0.0005993143293241138, + 0.0012131373405850163, + -0.0004026678820253278, + 0.001134521503903058, + -0.000971119735218645, + 0.0010403271181125022, + 0.0013911376184881047, + -0.0003060981802103165, + 0.0012300593828351765, + -0.0016268184720338059, + -0.00012048264857498274, + 0.0009011282963333893, + 0.00045914741596239823, + 4.38515896317539e-05, + 0.00024529873497346183, + 0.0017297456026739277, + 0.001095679029835278, + 0.0011604619420280127, + -0.00038965054608525905, + 0.001540311799702505, + -0.0008175430772616165, + -8.891422826438081e-05, + 0.00025021303605903564, + -0.0006359117491833918, + 0.001096137707436761, + -0.0008601278598654972, + 0.0011437976174754846, + 0.0014646561981137877, + -0.0002541816241358719, + 0.000568476591374841, + -0.00038890123743872584, + -9.276833215012215e-06, + 0.0018800406087135632, + 0.0014498728418474184, + -0.0002275906605572785, + 0.0005873495738806051, + 0.0010335955836218206, + -3.0020260299354032e-05, + -0.0011057913314036314, + -0.0011810868578207869, + -4.245984311184383e-05, + 0.0009499578352422013, + 0.0013808645938340322, + 0.0011456691165344082, + -0.0008042911811080372, + -0.0004972936192405143, + -0.0008776538681872345, + -0.0007742528412830242, + 4.1420437543337546e-05, + -0.002819719671075868, + -0.0008117222268328335, + -0.00025937198963300515, + 0.0006064209687825058, + -0.002424717769379707, + 0.0005866121192017816, + 0.001323957757963034, + 0.000643150593395662, + 0.0006219052492420551, + -0.0012050018435226287, + 0.00041770336044434723, + 0.0018760929568289483, + -7.672626401732428e-05, + -0.0006553552173918328, + 0.0006236629721372552, + 0.0014329482786429228, + 0.00039480142738968676, + -0.00029583234391163745, + 0.001700769702897795, + -0.00028890404304081444, + 0.00013646124274781539, + 0.0014378271539333466, + 0.000760738894878575, + -4.7448879366260585e-05, + 0.0004969635848222215, + 0.0005827788744074798, + -0.00021876221513694388, + -0.00027250204525048087, + -4.974020720725661e-05, + -0.0004329317959375334, + -0.00010155883600995375, + 0.0007586864706714131, + -0.0007935538005722276, + -0.00032661781150726104, + -0.000702979425677645, + -0.0004730022630207904, + -0.0011541777927499331, + -0.00041547875642293356, + 0.0006089527517880547, + -0.0012126080133031353, + 0.0019063911260771634, + 0.0006055628290092493, + -0.0006832136205085627, + 0.00024080278204937304, + 0.0007105683513681616, + 0.0009472102561870884, + 0.0002980151348107187, + -0.0007516436918409659, + 0.00233312713015607, + -0.0003386567709674158, + 0.00026124734397524096, + -0.0013622501485624841, + -6.850564984342502e-05, + 0.00019087534445678196, + -0.001565010873149167, + 0.0006752032568975682, + 6.60539026479063e-06, + -0.0015202397543301995, + -0.00022474925233306772, + 0.00013523029706856513, + -0.0017684063623060855, + -0.001051057706419662, + -0.0009934697656451771, + 0.001928545027515247, + 0.000398564987716419, + -0.0007949193209190599, + 0.0010385017438358608, + 0.0013978505342190203, + 0.0013807444234136491, + -0.0022718288177614935, + 0.0005077354017107449, + -0.0007218309965931025, + 0.0011119643356710337, + -0.0021879279948680765, + 0.0007702249923290021, + -0.0014919773437096387, + -0.0011822335036050765, + 5.8349255610363964e-05, + 0.001024617322729329, + 0.0003113520713852567, + 0.000885615749878637, + -0.0016805715732620581, + -0.00014622324068192514, + -0.001279905890132065, + 0.0009258166305100967, + -0.0009357806550536668, + 0.0018993029087495449, + 0.0003225392043505221, + 0.00040322133382025014, + 0.00019218141346129424, + 0.00014840917538423476, + 0.0007646191177538719, + -0.001816848214549391, + 0.00013339977345346558, + 0.00202777332706798, + 0.001162204188085254, + 0.0013503182442670134, + 0.0012123469103669376, + 0.001494699582252614, + -0.0016678133485567926, + -0.0005367434382036139, + 0.0016912391009687715, + -0.0007850825422330811, + 0.0007446136417464697, + 0.0007526110389498113, + -0.0006292640489350457, + -0.0007951177284280849, + -0.0004277585264377335, + -0.0004014599865443637, + -0.00042191595093972543, + 0.00042223198898399053, + -0.00020453428011895714, + -0.0003208790762834819, + 0.0018628349069599872, + -0.0008560321840962076, + 0.000448694515081657, + 0.0004901279201146958, + -0.00011230078295190134, + -0.0011722921697129999, + -0.0007800636298355707, + -5.382563603417069e-05, + -1.3726905038374563e-05, + 5.570902500243746e-05, + 0.0016971629588615413, + 0.0015008170636600393, + 0.0005512750251012554, + -0.00056540377868097, + -6.64500340275274e-05, + 8.293469005302506e-05, + 0.00013430642648793576, + 0.0003270184040422273, + -0.001889035381433925, + 0.0009264223533739211, + -0.0018045367558890669, + -0.00010963525531458354, + 0.0008447185179423906, + 0.0008007009469734468, + 0.0003419887506233467, + 0.0007872970742025662, + -0.0015895621057725243, + 0.0006801595226203007, + -0.00039782441149764875, + 0.0002860354302349893, + 0.0008091382029346587, + 0.0003790177382361049, + -0.00045057813801578574, + -0.0005042328972983368, + 0.0003580942389770401, + 0.0019623166754277896, + 0.0009220001154312892, + -0.00010606965515680011, + 0.0010731574598582903, + 4.0407596734770777e-05, + 0.0010003844737745233, + 0.0015161837781757336, + 0.0005744521786929277, + 0.00044920646153082913, + 0.00043804093064631186, + 5.5816670480912166e-05, + -0.00046656560874121694, + -0.0009894656319171173, + 0.0007854616857161167, + 0.0006988061167793521, + -0.0005934246716719783, + 6.425304552920664e-05, + 0.000738253966893278, + 0.00039640216311228607, + -0.0006329025541468999, + 0.00014193537568230893, + -0.00010737258246777088, + 0.00018589089393675938, + 0.00022185948307273937, + -0.0013727238615049262, + -0.0009309026535914773, + 0.0002681168530809502, + 0.0008000316340007529, + 0.0009145523265737229, + 7.331226825103706e-05, + 0.0013021906571761338, + -0.00032919594470420094, + 0.0012566967504777046, + 0.0013135132002258167, + 0.0007648076908530151, + 0.0015164562206999022, + 0.0006263665361965139, + -0.001510536801544088, + -0.0004071793512931338, + 0.00020701038776646435, + -0.0008324499963614032, + 0.0021935178202438215, + -0.0002462946315889376, + -0.0014729608968068685, + 0.0007444201039743261, + 0.0002674930112343863, + 0.00011479498896802627, + 1.2954720923063486e-05, + 0.0014867240392014397, + -0.0017288589350519983, + -0.0006713113555540806, + 0.0003069372713840764, + -0.0013533085062408788, + -0.0007028619389214309, + 0.0014080893030921423, + -4.312207759715159e-05, + -0.000741344345222879, + 0.0009016995226117713, + -0.0008265182003759208, + 0.0001344676180733581, + 0.0007408446784643881, + 0.0009188983083398244, + -0.0005995819284290267, + -0.001087315462514306, + 0.000849775725573821, + 6.856071319123028e-05, + 0.0006504026845715122, + -0.0004089059328373837, + -0.0007468693282559611, + -0.0005374345957068721, + 0.00010717876291961332, + -0.001176647632023005, + -0.00016855823599952393, + -0.00015849611262254675, + -0.001593799199704548, + 0.0009456118473294635, + 0.00016875977174013175, + -0.0003725553559341039, + -0.00010685010103544135, + 0.001611452367634237, + 0.0008540143730552912, + 0.0006429647052928752, + 0.0003258897132635603, + -0.0006391144323084517, + 0.000869470107354407, + 8.138855371182497e-05, + -0.00261582569799633, + 0.0003892568760202307, + 0.000598466147931222, + -8.745876291263018e-05, + -0.0015879399074488346, + -0.0010355478432587267, + 0.0002928788265258973, + 0.0006844855310369002, + 0.0005650018317093447, + 0.0009993182807189064, + 0.0006119605337098465, + -0.0004675845532471947, + -7.375605562005178e-05, + -0.0017053693064788293, + 0.00015802746126928092, + -0.0006005511712106536, + -0.00036300636904476434, + 9.030108549626522e-06, + -0.000454261735523812, + -0.0003966797420223209, + 0.0013784569369797563, + 0.0008596466745711464, + 0.0005877848233573408, + 0.0014353734588697384, + 2.5745355132155703e-05, + 6.211608116952077e-05, + -0.0006086078686390972, + -0.0008060195536855975, + 0.0005226142335539427, + 0.0006501985870180247, + -0.0016345813762771015, + 0.0007739354477548973, + 0.0001135207961486732, + -0.0006812288462300262, + -0.0009087893577617039, + -0.0006272173410591626, + 0.0008201493607163514, + 0.000472748504920887, + -0.0008989780544374056, + 0.002624613407350229, + 0.0007668791164559025, + 0.0003075060190283964, + -0.0019030516309876313, + -0.0005243143702161905, + -0.0005816701039431551, + 0.0003076886690159439, + -0.0005433460394921727, + -0.0006935816121251972, + 0.00016939821068309924, + 0.0005704892982415238, + -9.367331481854483e-05, + -0.00016962935606393655, + -0.002264333612650369, + -0.0016082319138386691, + 9.970965302561654e-05, + -0.00026619152589893886, + 0.0005410351313604791, + 7.718989031150212e-05, + -0.0003685191957595213, + 0.0011374170164063124, + 0.0010695705571530803, + -0.00038616979732759816, + 0.0013772726419430917, + -0.0008006462406124778, + -0.00041649912613095277, + 0.0017756876322803582, + 0.0002689329520571033, + 0.0009070564859672568, + -0.00034903633639572535, + -0.0009392257527651113, + -0.0007719647272393997, + -0.0005459846180066178, + -0.002400044012995811, + -0.00016922984321116112, + -0.0001875318002173207, + -0.0005461610432518851, + 0.00024401292438502574, + 0.0016161462246314412, + 0.00017911583279989196, + 0.0012645895710176398, + -0.0005848363849589562, + -0.0014193598848426933, + 0.00012493338137065972, + 0.00030962651874964493, + -0.0013266249835775029, + -0.00014314337728712784, + 0.00010161800097702116, + -1.0803649925506503e-05, + 0.0016212612269689841, + -0.0009060988231402168, + -0.0003130014770824051, + -0.001957151481078927, + -0.0013515685835192432, + -0.001459929309795476, + 0.001941022197036956, + 0.0008426725742890454, + -0.001087076473016094, + 0.00019461885096563238, + 0.0011745263521525707, + 0.0013029403181070906, + -0.0004181466955775131, + -0.00035221568035110647, + 0.0015000974168222299, + -0.0008712789435459557, + -0.00043456477987878684, + 0.0004983262740427383, + -0.0017717464122469057, + -0.0015603068505908025, + 0.00041513659721498437, + 0.000619672276657838, + -0.0019520023954979373, + -0.0003872510205625608, + -0.0010311060259720409, + 0.0011011427407477408, + 0.0027623866158271427, + -0.0012314000624652863, + 0.001187109024716335, + -0.0018290263912945273, + 0.0006259751000752999, + -0.00023952391202934344, + 0.00104747836744805, + 0.00100723329372156, + 0.0006156611347290401, + -0.0016675300768009297, + -0.000422334850807956, + 0.0003730570582516973, + -0.00041667260953296586, + -0.0010462185528425992, + -0.001670229431846565, + -0.001808861886442905, + 0.0004500412975577404, + 8.596515188910707e-05, + -0.000899995452081451, + -0.0004853144153625611, + 0.0004229628784392962, + 0.0012263712200462542, + -0.001247743947937384, + -0.0007024626064465928, + -0.0012660562661111396, + 0.0008536286393486289, + 0.0009326344008617773, + -0.0019016349810757453, + 0.0016534929225997792, + 0.0016545694329851508, + 0.0005030707108360294, + 0.000940845952318756, + 0.0003078765411335385, + 8.554570280492994e-05, + -0.0004894171586833554, + -0.0003327840545559597, + 0.00023978511095592555, + -0.00028237806858204804, + -0.0007123164893619617, + 0.0003702944404731062, + 0.0021016539261326586, + 0.0009098673310324291, + -0.0001496552551222263, + -7.88327706701128e-05, + -0.0016018083861367308, + 0.00021784171604784908, + 0.0007824001420912508, + 0.000684402100459873, + -0.0004850054623667917, + 0.0006826119407597128, + -0.0013100401665205339, + -0.00020155155184482682, + 0.0006296440137766046, + -0.0008001955346898002, + 0.0009691108475552881, + -0.0008861881005519097, + 0.000415351353124124, + -0.0008089084807922473, + -0.002294793050146177, + -0.0001345944299050266, + 0.0001283017707266283, + -0.00013177947877909477, + -0.0016930259040951253, + -0.0009904289562532025, + -0.000244932804270607, + -0.00016222164919363428, + 0.00040274047534686344, + 0.000598213838722801, + -0.001074759800560601, + -0.0009677246753234445, + -0.00058773239170727, + 0.002097222802776815, + -0.00018406227789219333, + -0.000830910349576269, + 0.00013359960129559915, + 0.00046655183739174205, + 0.0010204225902213392, + -0.00034152062485021264, + -0.0008047392967582838, + 0.0003989606462163318, + 4.017588442878485e-05, + -0.0026626220224808764, + 0.00106371990260751, + -0.0012718493219779857, + -0.0012723474319878188, + -0.0006092428826397512, + 0.000734794522359628, + 0.0014363381024659193, + 4.989460048343756e-06, + -0.0005098012814326217, + 0.0004927408929909503, + 0.0006912500905709848, + -0.0025864717145242765, + -0.001556277641143251, + -0.00037133345062463055, + -6.525372122185034e-05, + 0.000774163750715577, + -0.0002080497621486101, + -7.274206258116824e-05, + -0.0002154720935891646, + -0.0010692567616791893, + -0.0012996650283605533, + 0.0007599485809435028, + -0.0003184043917720714, + 0.001044690711425597, + -0.0012584471740321366, + 0.0008927935600648462, + 0.00046090338075842986, + 0.0008732735325894846, + -0.001301583915864931, + -0.00022033494543845973, + -2.8419169071757232e-05, + -0.001198657706959808, + 0.00017509612140087765, + -0.002436824580487709, + 0.001360392143669821, + -0.002265797319254913, + -0.0010121215021970697, + 0.0001813257089990062, + 0.001103037240687943, + 0.0001201901414186439, + 8.644438453551561e-05, + 0.0011548711939277393, + -0.000994233758812108, + -0.0015036703368981844, + 0.0010270510165047314, + 0.00021463229861635997, + -0.0004588911311775097, + 0.0015649322693109553, + 0.0013678699114344924, + 0.00034050970683654927, + -0.000945008592440337, + -0.0003074259455936668, + 0.0005605423345101637, + 0.002831299754990107, + 0.0012417199174466836, + -7.358110330835993e-06, + 0.00023369662660782507, + 0.0027230184151253514, + -0.0007807168236270232, + -0.002711289534673384, + -7.220253124261154e-05, + -0.000559591602266844, + -0.00022638316965808023, + 0.0006790087612077598, + 0.0009296302945848027, + -0.0020441949077127522, + -0.001576742826648877, + 0.0002624199537695634, + -0.00020474524558216004, + 0.00048798373028050186, + -7.72936254116961e-05, + 0.000338685777527133, + 0.00030121972163127424, + -0.00014430910634238012, + -0.0016962456082636023, + 0.0010313142721559176, + 0.0016852920290876623, + 0.00033492833906522594, + -0.0009544419610757728, + 0.00029477060414135725, + -0.0007249836176587483, + -0.001473616998865097, + -0.0009897065185945318, + -0.0008725223456955386, + -0.0008357301658114533, + -0.0005209559791246928, + -0.0011915457296208067, + 0.0018293249932489783, + 0.0006153838805825675, + -0.000539144828567533, + 0.00010254006616164028, + 0.002013600752202868, + 0.0005985346182172172, + -0.000469130604344584, + 0.0011305701053390869, + 0.0008763015163946748, + -0.000782372447324652, + -0.0005896346488551648, + 0.0017742570345031913, + 0.0023437655709054937, + 0.0006800526077582415, + -0.00011980023552982363, + -0.0012617296738186867, + 2.563715078374746e-05, + -0.0007778192817008884, + 0.0011788467870317073, + -7.402925247405287e-05, + -0.0003645126640018979, + 0.00041938707712359344, + -0.00013528468071883175, + -0.00044986306931449284, + -0.0001667758063253148, + -0.00039237251533032994, + 7.861801635220972e-05, + 0.0015907969838200276, + -0.00013813090699444595, + -0.0010550426358223377, + -0.002279731443550845, + 0.00047434954319639953, + -0.0005875554133960236, + 6.692988865711669e-05, + -0.00046817032210742657, + 0.0007930606717810244, + -0.00014734744218707378, + -0.00040289079327182105, + 0.0010669654949589896, + -0.00048252700148369236, + -0.00047662967282103235, + 4.794914476779364e-05, + -0.0013331044709344391, + 8.015590282488208e-05, + -0.001196080871385867, + -0.0001624108835292294, + 0.001305821735609387, + 0.0012193713819395834, + -0.00013393195230254433, + 0.0006522450319159222, + 0.0009322543648250273, + -0.00017795848063953764, + -0.00019580776652485974, + 0.0003597476396307763, + -1.2160329838530246e-05, + -0.001080305149126416, + 6.465082758690448e-05, + -0.0008880680022983007, + -0.00015801751123247268, + 0.00043062277662077455, + 0.0011668092756239943, + 0.0006296838782734975, + -0.0015458047647352406, + -9.136238570327964e-05, + -0.0001406124594826843, + -0.000253061196225764, + 0.0007927159540944517, + 0.0009363611955703842, + 0.0005605802774036994, + 0.0016688956954678644, + -0.0006622331271929354, + -0.0010922432661736455, + 0.0008668049861015908, + 0.000719140659690918, + 0.0007250635410236694, + 0.0009418824019962725, + -0.0004522154977870501, + -0.00041109740722126016, + 0.00029656234146877144, + -0.00021550133181152817, + -0.0014073089854191494, + -0.00032130613550441296, + -0.0009524309183224274, + 0.0013615671341829932, + 0.0016237941948035969, + -0.0018126792905992463, + 0.0009216294790194941, + 0.0006995538160850612, + -0.002040899344348998, + -0.0004945810617892406, + -0.0003886474939558314, + -0.00081459768157557, + 0.0006726712642419097, + 1.8252965936562277e-05, + 0.0007213823404153247, + 0.0008144664831514887, + 0.0006666720678048975, + -0.00031209179905620534, + -0.00015620889579400014, + 0.00032952942748695356, + -0.00015999836331395125, + -1.2749877841181903e-05, + 0.00048024360733999827, + 0.0004752744476051535, + -0.0012744731013314906, + -0.0013399464747298846, + -3.104054396447363e-05, + 0.0008725846995592092, + -0.0016037839369160702, + 0.00023111395468605614, + -0.0006201787163722802, + -0.00039613346253085185, + 4.340280950779029e-05, + -5.049209651044267e-05, + -0.0010421652270518028, + -0.0003228075246650854, + 0.0010672601363056037, + 0.0014674909233016666, + -0.0012663288756733463, + 0.00032792383824949405, + 0.0004112696110734758, + -0.0009227483841442334, + 0.0012590657123923064, + -0.00010528994077142382, + -0.0008353084257290165, + 0.0017950880915397639, + 0.0017452382875168468, + 0.0014437618151101606, + -0.0008388628024620562, + -0.0010873704909217848, + -0.0008224647463268383, + 0.0009414512641731085, + -0.0006959757352823402, + -0.00025006154155984795, + -0.0013639117986281556, + -0.00039060579407413455, + -0.0005562005645799693, + 0.00013363820039481153, + 0.00048553565531800233, + -0.0004710925262214684, + -0.0007726646799366239, + -0.00036784417107801816, + -2.371371386210051e-05, + 0.0006000481905409375, + 0.0006192237194482757, + 0.0018783545291772064, + -0.00044236075942309476, + 0.0008975821141783837, + -0.0007009995765282314, + -0.0005590391650704787, + 0.0003279821783257526, + -0.00013680682495681334, + -0.00023930764446998602, + 0.0011112064620654673, + -0.002138445128310681, + 0.0003890774112607849, + -8.203853853697973e-05, + -0.0006224640248738441, + 8.62459765266072e-05, + -0.0011326020565950146, + -0.0013635862519084008, + -9.099808877713184e-05, + 0.0011765026343492084, + 0.00023847640775797354, + -0.0008374535848114997, + -0.000156639670388116, + -0.0029443264046014775, + 0.001647435112807364, + 0.0014306888481172666, + 5.8075177214494316e-06, + 0.0011638324667488254, + 0.0002628058662456766, + -0.0005360767021456634, + -0.00012762726155167526, + 0.0001769068820847746, + 9.112324658990776e-05, + -0.0006912586543416633, + -0.0010150257305735044, + -1.607440730850464e-05, + 0.0012497856013524364, + -0.0007742704937465741, + 0.0002710366280208569, + 0.0013756511371128034, + 0.0008451179795945569, + -0.0020912755930725425, + -6.958903437624088e-05, + 0.001599583169458093, + 0.0008667182582443299, + 0.00033400523019186634, + 0.000830624427772563, + -0.0012875012868680466, + 0.00025482156505773147, + -0.00188243350296544, + 0.00046230465033232464, + 3.725758201843655e-05, + 0.00119261530382043, + -8.949762157541008e-05, + 0.0012853653630921212, + 0.001366790575570569, + 0.0008966013484251389, + -0.0020876838752846346, + -0.000563314668214821, + -0.00013210171956399403, + 0.0006923307976182647, + -0.000660626782781688, + -0.0001269487616105957, + -0.00048610865454806084, + -0.002177517782603365, + -0.0010799038945324185, + -0.0009502221214956921, + 0.0006888106207898407, + -0.0007263613311958725, + 0.0018101916785316086, + -0.00025528985004361326, + -0.000469310478663278, + -0.001639198430229493, + 4.833507476056287e-05, + 0.0008376582347430477, + 0.0015503309402489288, + 0.0007180888150903803, + 0.0005309957399962134, + -0.0015434527667475325, + -0.0013153206047143344, + 0.0006073261080996567, + 0.001592953779886881, + -0.0011974297557125594, + -0.00011260018549746457, + 0.0026598851067635965, + 0.0016541217054049512, + 0.00037870817317023104, + -0.00028435707210406914, + 9.670537232971818e-05, + 0.00039752392799910366, + -0.0025444522148937955, + 0.0010272014029458008, + 0.0011018140559947464, + 0.0005973071161763586, + 0.00043709368230502297, + 0.0007756466702164122, + -0.0018625303107609858, + -0.0015763712429839928, + -0.0022719766539980473, + 0.00020584603293332185, + 0.000380883589051982, + -0.0008910343417394171, + 0.0011906656183147714, + -0.00021450874883492883, + 0.0008718795127964197, + 0.00038997063393912874, + -0.0011466498390457342, + -0.000586327862327357, + 0.0010754251451571954, + 1.574399032813433e-05, + 0.000535721683454758, + 0.000787273775586849, + -0.000188061936674122, + 0.0013320114049746163, + -0.0008149783231668407, + -0.0008653265429197413, + 0.0014688965610034298, + 0.0003426203824268262, + -0.0008931814998426442, + 0.0011999086360441932, + -0.0011006982935246057, + -0.0019235055913787524, + 0.0006112069069920718, + -0.0004508062981421521, + 0.000508587284336931, + -0.0011082488775241161, + -0.0007161724644282281, + -0.00015272528664146971, + -0.0016804803300009292, + 0.0006106257125254019, + 0.0005849488849436729, + -0.0006815669448339755, + -0.002987742553955231, + -0.0017921962329755098, + 0.000842666816031957, + 0.0006674566618440407, + -0.0009561262414194557, + 0.0007980486751032189, + 0.0011481236888310812, + -0.0014866326210471405, + 0.00027775481719136233, + 0.0007830735683763365, + 0.00044340362368477357, + -0.00044982005819153175, + -0.00021781529351383243, + 0.0008210435878531503, + -0.00022316346641233556, + -0.00021976165123657585, + -0.0011349333671877662, + -0.000945854355923387, + -0.0005758332706546582, + -0.0002914879971409894, + 0.0010083068283386707, + -0.0015833331110403556, + 0.0007209517916917884, + 0.0013903396328054161, + -0.000720178955236112, + 0.0005744482242765386, + 0.0008250561933469247, + 0.0004476149176147663, + 0.00030163845477014864, + 0.0006931507853830295, + 0.0006768747836416666, + -0.0005159940638418264, + -0.0010775687436509335, + 0.0002866702229626694, + -0.0002578448771730185, + -0.0004127733855966834, + -0.00024805595708671295, + -0.0001662273265987866, + 0.0005084767512478295, + -0.0003095598563579807, + -0.0005608235669509896, + -0.00015371048095859675, + 0.0010949086169442582, + 0.00033600140204259767, + 0.00033964784957764835, + 0.0005230052625211245, + -0.0004281814036023057, + -0.0005187770844806677, + 0.0009587401168313275, + -0.000520265594349766, + -0.0018475399987857508, + 0.0008642638319587382, + 0.0005510283524304409, + -0.0006059462814161299, + -0.0013585106799835966, + -0.0017958465709822056, + 0.00045709820457670434, + 0.0005423214623445105, + -0.0026533745453541993, + -0.0019379339491960507, + 0.001605279680469043, + 0.0006886599657935468, + 0.0001761306306397296, + 0.0004221056357283937, + -0.0006634193173257764, + -0.0009147219982037507, + -0.001710447563228852, + 0.00023753150183308602, + 0.0013368725811925672, + 0.0014825980818912957, + 0.0010360725547872757, + -0.0015168525132670438, + -0.0003985483114373833, + -0.00031034098498893594, + -0.0008602466021395124, + 9.554999705041629e-05, + 0.0010871539882752336, + 0.00019968783483155747, + 0.0004275155628557289, + -5.797755977104658e-05, + -4.7613916639716746e-05, + 0.0011642312232499814, + 0.000813557954503969, + 0.0006390714262326802, + -0.0005835960679453123, + -0.001074562874020485, + -0.0012284737129604367, + 0.0006245686557961657, + -0.0014322006748948369, + -0.0007297388694126512, + -0.0008399706278537416, + 0.0012018095985110626, + -0.0011418019430650453, + -0.0006888351922664637, + 0.000428437988935823, + -0.0007169253562926331, + -0.0007690539436494552, + 0.0012773109075348316, + -0.0008564775886352706, + 0.00038303490566732426, + -0.0009903027187964063, + -0.0006452071827848448, + 4.0278729104409154e-05, + -0.000631069739862338, + -0.0006557879017637262, + -0.000279847338608308, + 0.0005807286509732811, + 0.0011848162163314276, + 2.42396951278138e-05, + -0.0012504581790960844, + -0.0003974988328570082, + -0.0015169983061931074, + -0.0010438394033274317, + -0.0006913794425604269, + 0.0008858651853675014, + 7.004252431430658e-05, + 0.0016306766088102864, + -0.0008600329628667724, + 0.0005808958576535829, + -3.189550145292248e-05, + -0.0006503211638508767, + 0.00040453417965539474, + 0.0002736111650493057, + 0.00033123630170412425, + 0.000343263408109526, + 2.305626629750866e-05, + 0.0007115117164631498, + 0.0006826691573051388, + -0.0012515885317529783, + 0.000129243976134904, + 0.0005074652533240492, + 1.9674904982575655e-05, + 0.00030879527783674667, + -0.002582063640486932, + -0.001132866345179847, + -0.0002814099077898005, + -0.000719805279307028, + 0.0012109245312984709, + -4.213655343412836e-05, + -0.0007650775674775187, + -0.001087286872841773, + -0.0011604990353977541, + -0.0007492214431983384, + 3.224636877710213e-05, + -1.7880270045195608e-05, + 0.001043609094711084, + -0.00030706896172867713, + -9.217442187558173e-05, + 0.00043339394410740056, + -0.0003550598019049946, + -0.0005599478008653962, + -0.000331775838553181, + -0.0008833559143706706, + -7.153371278275298e-05, + -0.000601987589670987, + 0.0008732429531777454, + -0.0022258519885303162, + -0.0005880681960768581, + 0.001550001391802022, + -0.0007148130552177162, + 0.001142220263824887, + 0.0002457068807472749, + 0.0002070326074950573, + -0.0013594344682716845, + 0.0008984007405605184, + 0.0008327440367563867, + 0.00030211081634376236, + 0.0015263258134007723, + 0.0016095466519894114, + 0.0016073569672485802, + -0.0008448999541258843, + -0.000390819202165657, + -0.0010646016744553213, + 0.0014448916557380938, + -0.0004670225394846245, + -0.001115636256672639, + -0.002005513588433385, + 0.00039270127185644997, + -0.0004907440940206402, + -0.0011054520633056314, + -0.0002535610984972891, + 0.001155039714196731, + 0.0008954389383411526, + 0.0005651499288846714, + 0.003036960984551188, + 0.0010267305316758737, + 0.0016298011785418685, + 3.1524948534096217e-05, + 0.0011203725330788902, + -0.0009596189279196308, + 0.00039012706973336984, + -0.0011321880399774952, + 0.0005333219156807156, + 1.7800825050258296e-05, + -0.002020271398524025, + 0.0013537576171894997, + 0.00013397500870956905, + -0.0002018655426704341, + 0.0002765977633710746, + -0.00014497890343134106, + -0.0020308156398710134, + -0.0017214539782346395, + 0.0006111457757719294, + 0.001129441343831775, + 0.0013801352211383075, + -0.0027776774174405184, + -0.00024251054277064482, + -0.00018774971213040745, + 0.0017157133412195372, + 0.0014320819500028789, + 0.0007533406796338049, + 0.000203244068123352, + -8.110691834803478e-06, + -0.0018487420340388737, + 0.0010211013838179424, + 0.0013918198891502281, + 0.0026977115733228226, + 0.00025720179254836454, + -0.0007927687481402811, + 0.0013708892896251812, + -0.0014352665935150235, + 0.0011666588916060207, + 0.0005554868880587335, + 0.0018518325317240449, + -0.0011873271883857328, + 5.095080492826864e-05, + -0.00034165993451383667, + 0.0005526118518499487, + 9.054311783321435e-05, + -0.001861056805331971, + 0.0011199498984964943, + 0.0003516459822837198, + 0.0022539684488941136, + 0.0011257472397304665, + -0.00021600803416812927, + -5.204369487921137e-05, + -0.001455236103594677, + 0.00021862423549215377, + 0.002157081272060709, + -0.00016292362902878323, + 4.603121041277822e-05, + -0.0003582451723914217, + -0.00045490453488124743, + -0.0009718018547144211, + -0.0004607357535872013, + -0.0004016907473745015, + -0.0002392700280099901, + -0.0006424772033559815, + -0.001271336990554926, + 0.00027145573436800633, + 0.0007491535931367728, + -0.0009832105290954515, + -0.0014558034891175055, + -0.00015289160008198106, + 0.0005330513455014251, + -0.00037028874708818773, + 0.0004113467361376484, + -0.0009510596101105666, + -0.0010850305781060989, + -0.0008188291836904585, + -0.0013450222456291789, + 0.0005907090997635183, + 0.0014045754287002584, + -0.00037499649347511537, + -0.001174947659662368, + 0.0018112453205675863, + 0.0014605136933056088, + 0.0003708240342006658, + -0.00013382552947586025, + 0.0004134078720743808, + -0.0018124997694693341, + 0.0005354010479184691, + 0.0019356114827141127, + 4.865505006369982e-05, + 0.00021895196432505083, + -0.0009398452995497748, + -0.0015949150872445624, + -0.0012097631295277535, + -0.0003448594507379039, + -0.00033908914826150127, + -0.0011260847003930587, + -2.7050888532222896e-05, + -0.0015524992013723775, + 0.00017399407028983844, + -0.0008872605202460813, + 0.0020260392542245952, + 0.00048067299488506595, + 0.0007742353293972335, + -0.0015634331360213577, + -0.0005476559448243608, + -5.774993863771026e-05, + -7.38213973514671e-05, + 0.0010094726352725735, + 0.0007518635106259424, + -0.0010745424186059706, + -0.0005402724377652174, + 0.00041336166632386203, + 0.000104043118632419, + -0.00195993865291375, + -0.0016346813888148634, + 0.0006647584378079223, + -0.00015819674173766666, + 0.0007328941599591536, + -0.00031449629519792523, + -0.00034404169165286346, + -0.00014924861034660723, + -0.0005012495672249001, + 0.0008689640381603605, + 0.00012505766674439432, + -0.0009422843219166361, + -0.0025690283011900574, + 0.0004906539672383652, + -0.0008537177429337906, + 0.00023151573231775796, + -0.0002846446263129895, + -0.0008190934806520248, + 0.0006059163692820594, + 0.00019568536518322634, + -0.0016864214738751084, + 0.0003388158242341656, + -0.0002463680532482553, + 7.217107901876549e-05, + -0.002386181107618575, + -0.00023152665807533597, + 0.00017239372710976133, + -0.0010662810900168515, + 0.0008297524542180439, + 0.0003022410193389193, + 0.00017650733983342332, + -0.0005590336970816622, + 0.0003327580896883812, + 0.0012286329062923082, + -0.00012484948470949212, + -0.00031192399449335125, + -0.0009971477221993729, + 0.0002473360824070094, + 0.000889338663277805, + -0.00036221616317238034, + 0.0012921407682216226, + -0.00045657434168797816, + 0.0003642879425876388, + -0.0006818481919301539, + -0.0005190508828897789, + 3.687235913156994e-05, + 0.0018484637323034285, + -0.0003752546579167901, + -0.0009271002171507064, + -0.0016125230376444148, + 0.002345232659799877, + 0.0015814324656047085, + -0.0002871081258992671, + -0.001136631589899866, + -0.0005891079810504885, + 0.0010244026644526945, + 0.0010405423794256404, + -0.0008166671905421414, + 0.0008450511325492879, + -0.0003532425622732568, + 0.0005608947248848487, + -0.002923073378898719, + -0.0002032227865955457, + -0.0006702120347075819, + 0.0005316096317878195, + 0.0005015280478727395, + -0.00038340913668737786, + 0.0009576644706048075, + -0.0009796338247166337, + -0.000703079842440788, + 0.0005435675146195636, + -0.00023035914229371264, + 0.00016273225897315606, + -0.000498609275060969, + -9.307133377931149e-05, + 0.0012247825044153027, + -0.0007849609878586677, + -0.0012924965522684165, + 0.00021593066372748836, + -0.0005302904409969987, + 0.0003886964542995496, + -0.0007827600780218589, + -0.000688377966643455, + -0.0006343675197024356, + -0.0012241643256516465, + -0.0005414858196952953, + 0.00026486765281577806, + -0.0014609420266778403, + -0.0005213370293692709, + -0.0005792264126252101, + -0.0006268998273804336, + 5.974955130527162e-05, + -0.0008584339407256828, + 0.0012750301261420908, + 0.00032936264626443816, + 5.2110593781916974e-05, + -0.001806280331787783, + -0.0002731451273070753, + 0.0004637068323424019, + -0.0008056229673622817, + 0.0019735134871365773, + -0.00033955546513620295, + -0.0009902922381427044, + -0.00024277806872582172, + 0.0005143359143402803, + 0.0007043004250861235, + 0.0009549029570370487, + 0.00043802599937685165, + -0.00028704792368108666, + -0.0011811090891204574, + 0.0005569551668393909, + -2.432080014905408e-05, + 0.0004835398260226184, + 3.781284169685312e-05, + -0.0011809654460976057, + -0.0005092456592835726, + 0.0010812993146931222, + -0.0007123926283855844, + 0.001007392884344534, + -0.002037128325086095, + -6.548910840147552e-05, + 0.0006189400287024856, + -0.00021683500903186322, + 0.0007718425455183807, + -0.0005904370810871912, + 0.0018251723873032814, + 0.0018029015519571265, + -0.0015570971317812614, + -7.4220538096941944e-06, + 0.00025070979801691297, + -0.0009771997438097959, + -8.993637079931916e-05, + 0.0011804240490656606, + -0.0018585604712702901, + -2.1009317171842936e-05, + -3.7334601600206994e-05, + -0.0013125518791413493, + -0.001342084800419995, + -0.0003440429401943696, + 0.0006024384348785237, + 0.0012022419642871314, + 0.00038353629769746176, + 0.00033846560638205414, + -0.00032511676716958813, + 0.0015827516548313004, + -0.00032549766237517137, + -0.0009089479062767297, + -0.0004136014731715178, + -6.811979775046478e-05, + 0.00041580230585833085, + 0.001060941710487044, + 0.00039667565154232886, + 0.001541838403670291, + -0.00010103421209775812, + -0.0018853683677027891, + 0.00019740907335369425, + -0.0014277092551380664, + 0.0006881346665267837, + -0.0006275275166173955, + 9.504467664524468e-05, + -0.001384680677316409, + 0.00033569181220470025, + -0.0020678427114361447, + 0.0008907205677795105, + 0.0002022341014591687, + 0.0003244852556399462, + 0.002252165990547561, + -0.0006041903410143618, + 9.424618142747403e-05, + 0.0013152512044734242, + 0.0014791614531462246, + -0.0006774526141812157, + -7.505269699990282e-05, + 0.00011985200426944424, + 0.001223516187522875, + -0.003382250432349363, + 0.001780131121148279, + -0.0009139369177962241, + -0.0012272345428119631, + -0.00010079321741784139, + -0.0004777363090165646, + -0.0008303737789694355, + 0.0019321760241058335, + 0.0011528021525807185, + 0.00015516395933933285, + 0.0006301464766406144, + 0.0010836429915249885, + -0.00069601330478506, + 0.0006042975750227198, + 0.00297583163404588, + 0.0015678131818419826, + 0.0015716182973293542, + 0.0004423060142874364, + 9.335886421477457e-05, + -0.0014065414353580709, + 0.0009925827871242628, + -0.0019137554051236864, + -0.001271157283829081, + 9.08992029351058e-05, + -0.00047570233611145203, + 0.0007418159497538977, + -0.000322803203342676, + -0.0003024550262348077, + -0.0008473878973184063, + -0.002100720250104288, + -0.0011484488714030728, + 0.0020048511573311566, + -0.00030253781230317424, + -9.739211512302566e-05, + -0.0005209451475018892, + 0.0011347742131881363, + -0.0009067342798006412, + 0.0006048285112821425, + -0.0007298085597594981, + 0.0007691512770094672, + -0.0013612463939561637, + -0.0010996886491328032, + -0.0005628064611235954, + -0.0008195689975996503, + 0.0006914779120834731, + 0.0011453564160100183, + 5.098198466001652e-05, + 0.0006246026637496932, + -0.0019288677682472225, + -0.0006455290102291776, + 0.001781655183320648, + -0.001012275163417276, + -0.0006203160986689156, + 0.001131113851746613, + -0.0005802222436648439, + 0.00012431770990377062, + 0.0011281550412618364, + -0.0009829354909295085, + -0.0002771959584650414, + -0.00045264614177289303, + -0.0003600056313206796 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgb(158, 185, 243)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 0", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + -0.0003600056313206796, + -0.0022376161827409174, + -0.0003239883664223597, + 0.0007795064473581263, + -0.00019149460827509962, + 0.0005873319145449502, + 0.0008537294488119257, + 0.000354685311577803, + 0.0004811853506423076, + 0.001020540250371666, + 0.0013812337257254452, + -0.00024061309851150815, + -0.0014271115993691281, + 0.0022895821053731513, + -0.0021053255203823834, + 0.002316811703913331, + 0.0011603753782384208, + -0.0012809071725912423, + 0.0015011097630470756, + 0.00029631320522625334, + -0.0004678306812556965, + -0.001042767997695331, + -0.0018838274167167425, + 0.00047081617552889436, + 0.0015344303021453504, + 0.0013218916289673987, + -0.0007356828218973723, + 0.0006827390961667328, + -0.0005871426851231597, + -0.00015396744590045143, + 0.00038036284617771874, + 0.0016295337073070348, + 0.00041253410698003593, + 0.0011854007651908767, + 0.0005504518053893278, + -0.0009146782089848197, + 0.0004068769762766199, + -0.0005022669905908081, + -0.0003100400209997478, + 0.001785972013486428, + 0.0004863846815540824, + -0.00035431494356076614, + -0.0006524107687465099, + -0.0005209513781042603, + 0.0012877553301216124, + -8.311983301110197e-05, + -0.0005558779983525451, + -0.00022587799041465803, + 0.0003989786448736178, + 9.491758916716925e-05, + -0.0004156132248598566, + 0.0002858969009681396, + -0.0003949514239917289, + -0.0005883883835675724, + -0.0012190229041253628, + 0.0005592090542360681, + 0.0018912567177629288, + 0.0002741098670199802, + -1.000695635564947e-05, + 0.0002943257918370779, + 0.0019250525247345696, + -0.0006332397463970472, + 0.00042652907976556816, + 0.00020360190079048819, + -0.00017715783802180145, + -0.0002812126005439917, + -0.0010825777963711565, + 0.0010378823170687295, + 0.0011342274314365731, + -0.0015478772005641619, + 0.000453755902648438, + 0.0020610079236990826, + -6.45618835686357e-05, + -0.001752210778029666, + 0.0011576837020735487, + -0.0024270373285581563, + 0.0004995021774773119, + -0.00030708504508603806, + -0.0011469276481517441, + -0.0005268326469401958, + 0.0002125870095729565, + -0.0005424913535701224, + 0.0011657221969322911, + 0.00041762272714036304, + 0.0014218895915628464, + 0.0005775927687447573, + 0.0009475631469542279, + 0.0011647890401543495, + 0.0014110506235720914, + -1.6234480609016622e-06, + -0.0003814558521529806, + 0.0007196516529464495, + -0.0014939426377439512, + 0.00030045287917848467, + -0.0015023753489866423, + 0.0001370071931371505, + -0.0013489287723459855, + 0.0005778908359580099, + -0.0004106927526280511, + 0.0013273274018962566, + 0.001104244089811709, + 0.0014448192588662674, + 0.001076875009624835, + 0.0003241213269176058, + 0.00016342653067393117, + -0.0003446349876483546, + 0.0023479441771989255, + 0.0008330759234414444, + -0.001826185884992091, + -0.0001864007167889037, + 0.0006765459063037477, + -0.00019509478493636543, + -0.0004840525349715553, + 0.00032032816779688824, + 0.001770047338523015, + -7.655240998844561e-05, + -0.0005959397855544837, + 0.0002700349038637809, + 0.0013355054081476655, + -0.0019815608068822505, + -9.62647624321206e-05, + -0.00016943160441352476, + 0.00027564224685477234, + -0.0009258187465384921, + 0.0001971008157859625, + 0.0007855097019863237, + 5.153313291670587e-05, + 0.0008042163486363528, + 0.0010392113590027975, + -0.000966591324135085, + 0.0008670754524676523, + 0.0011360840499546436, + 0.0011257166363056697, + -0.001952988189270282, + -0.0014674784349027734, + -0.00016741058644258741, + 0.0009033458273482169, + 0.000337710286251343, + 0.0002855436002947684, + -0.0013953857675084826, + -2.859722397249336e-05, + -0.0003324269097765379, + 6.009878710633729e-05, + -0.0016190042458051092, + 0.0005468621667026004, + -0.0009752522487250845, + -0.0007193104402739503, + 0.0011321798624639356, + 0.000361699894352652, + -0.0011018511509706687, + -0.0008618967307050186, + 0.00021719767521925854, + 0.00010352823137933399, + -0.003440687810719208, + -1.5459590430799205e-05, + 0.0003875807321719255, + 0.0001569093415503807, + -0.001114598679363669, + 0.0024631640565099546, + 0.0010668447477286973, + 0.0021305042442346933, + -0.00038846003927588255, + 0.00047832825661193394, + -0.0001808191863905442, + 0.000820071481701599, + 0.0005743195138758154, + 0.00030168197652863247, + -0.0006614195975030301, + 5.2480657088395765e-05, + 0.0007854839026416392, + -0.0010584699395149273, + 0.00039892999488840475, + -0.0010699618836191882, + -0.0008264028487108678, + -0.0018059970646749153, + 0.00011828450036697895, + 0.00022350832384581177, + -0.0010871654269793889, + 0.0017286524233259552, + 0.0001619378140654603, + 0.00039833237811396396, + 0.00038355137303476897, + 0.0007559466576601185, + -0.00024409835871412158, + 0.00041545303696414787, + -6.160899019301872e-05, + 0.0005232275339625138, + -0.0015568580152945527, + 0.0008388255832230734, + -0.0017126298754144402, + 0.001665344365810577, + 0.000192532916258249, + -0.0001371250145926128, + -0.001065933121781824, + -0.0009450938155973906, + -0.0013017537970360946, + 0.0016747483209313507, + 0.0001965272027104117, + -2.5489768110293048e-05, + 0.0008093917190436369, + -0.0005776392126589495, + 0.0024888122361310465, + -0.0005796030671353864, + -0.0019155343418345082, + -0.0008613702074855801, + 4.0414823543636324e-05, + 0.00031850018696670654, + 0.0013009690788327493, + -0.0003695144882406033, + -0.0014990920449641791, + 0.0003698302914779741, + 0.001150592845436876, + -0.0027858992170146733, + 0.0001556155595426729, + -0.001941137927656011, + -0.0011094135005187595, + 0.000218942421277643, + 0.0005101421004467176, + 0.0004153410163478498, + 0.0012493194441427155, + -0.00028743509765277134, + 0.000579632321264677, + -0.0001729473362070223, + -0.0005200987153299033, + -0.0006037804861281159, + 0.0009596880139596149, + -0.000326163910285462, + -0.0020159178664859584, + -0.000435527289485951, + 9.460685811346406e-05, + 0.0018552019698126474, + -0.0005504408226320362, + 7.583259753914281e-05, + 0.00035784412737688634, + 0.0016220564579271196, + 0.0012597621268509273, + 0.002022108441572551, + 0.000272038370154079, + 0.0003197583637045051, + 0.0014571300322657047, + -0.0008030444794433472, + -0.0004889879775779467, + 0.0018988570322234376, + -0.002188069624200228, + -0.0003791440589655677, + -0.002151612881050605, + 0.0009132764692729627, + 0.0011412833019272565, + 0.00022471995699072306, + 0.0003361991429250494, + 0.0022137663465841445, + -6.494771074434401e-06, + -0.0011477444970830874, + 0.000260259226485224, + 0.0002115703644511477, + -0.001357688301733303, + 0.0026984167741596512, + -0.0003028982196396188, + -0.00016086276574650067, + 0.0005430995882351442, + 0.00038709216326423103, + 0.0008390161407218388, + 0.0004896518799192016, + 0.0005071758404353149, + 0.0003497649473390643, + -0.0016090210217245512, + 0.0017955891818151712, + -0.00029963821510007015, + -0.0003484904972933803, + -0.0009699205377554686, + 0.0008570775909427182, + 0.0009627000223666783, + 0.0004217766363433692, + -0.001180944526445741, + -0.0009602591326727981, + -0.000260781185078276, + -0.0004838709165702062, + 0.0008299309863659015, + -0.000812648580717301, + 0.001046521183947027, + -9.123470485224985e-06, + 0.00010769320079239886, + 0.00044273496126482975, + 0.001335793413533788, + -0.0008783645199333435, + 5.182815714376813e-05, + 0.0002113927161082471, + -0.00036186760640345223, + 0.002041328997988123, + 0.0011729846642642015, + 0.0010546063283069695, + 0.0017839220310032545, + 0.001018606849326025, + 0.0012494879865189029, + -0.000135218231756787, + -0.0005091424267202847, + -0.0009445503940660408, + -0.0002962512400073694, + 0.00022939846043804198, + -0.0008341791148968449, + -0.0006337807347759505, + 0.00011855897865795147, + 3.4779293992903834e-05, + -0.0007309098070264815, + -0.00019488522014695525, + -0.00015679925427465233, + 0.0013963672611808846, + 0.0001242971523284012, + 5.2765831410148756e-05, + 0.0006304400140139851, + -0.0006505659738841403, + -4.7354462218992926e-05, + -0.00033159690361607723, + -0.00027554158228587357, + 0.0001305000799849306, + -0.0001702352379354666, + -0.0006112441739000174, + -0.0017499431831446907, + -0.0005512481612562708, + -0.0007998725203843068, + 0.0001798774896570515, + 5.967873689186205e-05, + 3.0870612682467404e-05, + 0.0015631446235694383, + 0.0007256312252710414, + 0.0003297314928877874, + -0.0013083143259213597, + 0.00019882949198379266, + -0.002173415765006371, + -0.00036574427238591654, + 0.00042269237090719055, + 0.00042375201516391863, + 0.001449430678268491, + -0.0005584561887125707, + 1.9045047399842357e-05, + -0.0021243338400363364, + 0.0007758509454167738, + -0.0016180656741088032, + 9.466007251466019e-05, + -0.0014130523345199353, + 2.8606549304581032e-05, + 0.00019742311833702704, + -0.0005160573310171702, + -0.0006341983219706676, + -0.0007389989485665704, + -5.045275743191538e-05, + -0.000888879986031673, + -0.002879151993297651, + -0.0012427331432102908, + 0.00029146254527841095, + 0.0008985359079177154, + -0.00042913262578470084, + -0.0009637777581393331, + -0.00019657421092516726, + 2.268835886860608e-05, + 0.0025639697186195486, + -0.000862757836680683, + 0.0007945853983494008, + -0.001332716690967703, + 0.0010018843114910528, + 0.0007103793581577754, + -0.0011285095745285586, + -0.0019601047262434177, + -0.0013322567503707234, + -0.0006721503082685467, + -0.0021939192618531662, + 0.0001709955706878276, + -0.002606239180174804, + -0.0011973834779650675, + -0.00033634913200616414, + 0.0017026774589099284, + -0.0006736946500392617, + -0.0004733549114959714, + -0.000803944749047834, + -0.001556407835352881, + 0.00014853024232130133, + -0.0001414571356954592, + 0.0017202937135741335, + 0.0026031223858298627, + 1.658550100973935e-05, + 0.0007269568425303363, + -0.00014860200115960465, + 0.0013289702341960775, + 0.0002439181003555188, + 0.0002735398787368362, + 3.326479345047335e-05, + -0.000370692171803757, + 0.00010377748679889933, + -9.279391688802594e-05, + 0.00065058628072985, + -0.0001960886465748361, + 0.0020801955328350686, + -0.00233678387073734, + 0.0002378162080610561, + -0.0007001364587853112, + -0.0009480318438696401, + 0.0012461872789589986, + -0.0016780684430309377, + -0.00019901828512767844, + -0.0017616347456407852, + -0.00016088046812585898, + 0.0008711064653813554, + 0.0012907357320324198, + -0.0013296537965825854, + -0.0003397805625092757, + 0.0018924914388186284, + -0.0010480178113585427, + 0.0010944059650529127, + -0.0017257983703860983, + -0.0006626497330326008, + -1.5364312226268803e-05, + 0.0020746180235588817, + 0.0005959034210196766, + 0.000762304471948367, + 0.001006404255734906, + -0.0010376984455870964, + 0.0014160307464346946, + 0.00036180388620616667, + -0.0008538925109952192, + 0.0019055038897478648, + 0.00045566187218202154, + 0.0011772583930259827, + 0.00011551094989461413, + -0.001163977211536099, + -0.000687052672104663, + 0.0007217812219967061, + 0.000479060354972676, + -0.00018978887619355514, + 0.0008171163169169229, + -0.001030223850813934, + 0.001810834163632201, + -0.0004563972790504883, + 0.001009198413537696, + -0.00027078003386847414, + -0.0010629194700682767, + 0.002102137597686633, + 0.00046900331790226523, + 0.001130821517424969, + -0.00013579721178926552, + -0.00038807764672447597, + 0.00018836492260898335, + -0.0005911877876220972, + -0.0005079991354780657, + 0.0013874686696352695, + 0.000756206947119433, + 0.000335007139309753, + 0.00037937489158726515, + -0.0007919476821466437, + 0.0005103950462660496, + 0.0018956001789914593, + -0.001284759471116855, + -0.0014948790915070447, + -0.00026895685371003, + -0.0015650469355630524, + 0.0004989811080112293, + 0.00048040987047703285, + 0.0001093753314851798, + -1.9493636609643417e-05, + -0.001592997803682376, + 0.0007274646389513138, + 2.4539308697203077e-05, + 0.0007511151291257697, + -0.0010470804467026338, + 0.00016360622153228086, + -0.000901244543767123, + -6.123942613940768e-05, + 0.0014982365348887839, + -0.0007919978549801509, + 0.001058437126718306, + 0.0004091716725988962, + -0.0008869135577923645, + -0.0017099912139415395, + -0.00013416415010985061, + 0.0005454730377009069, + -0.00042197110875783606, + -0.0011774592343006096, + 4.0562345397962776e-05, + -0.0015031266417176508, + -0.0013153134718998664, + -0.00023045315404608582, + 0.0015428542927846337, + -0.0006414692060598367, + -0.0012910688459984014, + 0.0017176226444161576, + -0.0012541539521117207, + -6.589044460330717e-05, + 0.0007113692510558959, + -0.001481742521408498, + 3.375084950377015e-05, + -0.0002854935624477503, + 0.0011587674779156578, + 4.4490926694857396e-05, + 0.0004545584525081919, + -0.00016393970393749208, + 6.873277068051748e-05, + -0.0006068064117211813, + 0.0005239794836523485, + -0.0007086410105775755, + 0.001164730471935021, + -0.000423072126236121, + -0.0016218208317885967, + 4.721934839051034e-05, + -0.0003014630454091225, + 0.0002933174507829652, + 0.0012494701752864647, + 0.0008376615335229556, + 0.00227166515256899, + -0.0004544258481978746, + 0.001232067963812119, + 0.00020078804407640553, + 0.00034719294794498425, + 0.0009539190308658666, + -0.000321845029843129, + 0.0013129863639787926, + 0.00035367138578151606, + 0.00015715432607683627, + -0.0007634072713058934, + 0.0019085287344125154, + 0.0009836689363769888, + 0.0007080343534541455, + 0.0007413385211547893, + 0.001667850004166128, + -0.0011151320278017217, + 0.0003783971944250205, + -0.00047345809974729404, + -0.00045419953398503595, + -0.00017176524180345263, + 0.0019541041561184883, + 0.0009737944107666436, + -0.00021189934625563203, + 0.0020795903131488073, + -7.306221818264723e-05, + -0.00014955508977261174, + -0.0006670850235897559, + 0.00032977371427197225, + -0.001470609512098292, + 0.0008593254104246168, + -0.00019231375390304237, + 8.601287008638272e-06, + 0.0004766859272733263, + -0.001055582135173426, + 0.000598969917045108, + -0.0009026881853642778, + -6.922007482907273e-05, + 0.0012992817888996897, + -0.0007938216334330654, + 0.001404940857635229, + -0.0009361574685101907, + 0.0016378283565150155, + -6.356964467273317e-06, + 0.00016607617545494934, + 0.0014884685446877443, + -0.0006491039355987426, + 0.0012795408153190016, + -0.0004689199359858802, + -0.0032619607642223637, + -0.0012993429245917857, + -0.001487095242613941, + 0.0013763816328224618, + 0.0011252355405579407, + 0.0018532690918740392, + -0.0006955789767185061, + -0.0006851246865993891, + -0.00011734649516116261, + -0.0015689568548748795, + 0.000607253514790963, + -0.0004887673773168842, + -0.0006263736009578169, + -0.0012378721943534779, + 0.0003312452034162974, + -0.0001334364862250377, + 0.0013481856698959154, + -0.0008687731255685475, + 0.0009295063010425302, + 0.000357003435226562, + 0.0004226907734083755, + 0.0005762460055640471, + -0.00021672568500676455, + 0.0005976643459980246, + 0.0009444871444235776, + 0.0009111816001948598, + 0.00036265001046681096, + -0.0007729304304823369, + -0.0010493035294757258, + -0.0014489069051852196, + 0.0005456346892599763, + 0.000793957985118671, + -0.0008435294902209759, + -0.0008797048361691306, + -0.00029556125963480987, + -0.0015476516476657352, + -0.0015017890143792785, + -0.00025401538201122524, + -0.0013399919913298299, + 0.0020468915027834476, + 7.265455689494357e-05, + 0.0008380673679829837, + 0.001116870272488333, + 0.0007910918839752242, + -0.00029804102699079466, + 3.596035981601387e-05, + -0.0011481544184016976, + 0.0021866676507227775, + -0.0010298519151152317, + -0.0005209477146222563, + -0.0011234711553339627, + 0.000305014773962405, + 0.00120290668447916, + -0.0014816812067061638, + 0.0007763949910457263, + -0.0010578604937229086, + -0.0009903840567936496, + -0.00102413683817178, + 0.002437195143903496, + 0.0004823720264332536, + -0.0004606806621509578, + 0.0015585480389082838, + 0.0007776534306982811, + 0.0002741644088145881, + 0.0010175942162166233, + -0.0005376586992929439, + -0.0006097782847302361, + -0.0005138311294027762, + 5.988986617187292e-05, + -0.0009913870573940778, + -0.0014266226098804792, + 0.001215706771629729, + 0.0012439553895282366, + 0.000977134720838625, + 0.000303959337236935, + -0.002069779886985198, + -0.0011725179454967485, + 0.0012806145248903465, + -0.0002951052535802039, + 0.001334155463138202, + 0.0008933692970317906, + 0.0008526383491282539, + -0.00025188514468033345, + -2.8417037355280296e-05, + -0.0006537516028503625, + 0.0008739722412561527, + -0.0014437253033506127, + 0.001154967094614979, + -0.0006008518280721005, + -0.0009659479395905254, + -0.00045243358020566956, + 0.0012226569518599861, + 0.00022046323252381848, + -5.147545883531347e-05, + -0.00045916511593440225, + 5.0951897495849456e-05, + -0.0010483771938605455, + -0.0016500709552277014, + -0.00020925706242819387, + -0.0018906009902995924, + -0.000925077926708346, + 0.0026616649974730644, + 0.0004395087897445048, + 0.0016510377467552641, + -0.001642439432400038, + 0.0008724483909075411, + 0.0009146768706237643, + -0.0007599203537110291, + -0.0006186717952186312, + -0.0018521655994417254, + -0.00015927618331154693, + 4.5084815787424705e-05, + 0.0005867924121808674, + -0.0009482391916939898, + 0.0011999972323401009, + 0.0024452702802838524, + -0.0010636075045239238, + -0.00025903326870703355, + 0.0013199586012850684, + -0.00010031359900396954, + 0.0025582133587220735, + 0.0019163546724441458, + 0.0013494600693919078, + 0.0016462387691095195, + 2.024088893396576e-05, + -0.0011812132889142308, + -0.00014576210790313902, + -0.0002753101913454937, + -0.001807037203224767, + 0.00047614249672062116, + 0.0006146144839967324, + 0.0008185359151576492, + -7.32447332626219e-05, + 0.00017404267952494506, + 0.001628858077594667, + -0.0005856434131473901, + 0.0014055377594074327, + 0.000723867326510397, + -0.00010925846889238648, + -0.00016410401722188647, + 0.00030445944853481983, + -0.0003622912938861375, + -0.001128749654840532, + 0.00043708782811936297, + 0.0005435514957532483, + 0.00043285457037709564, + 0.0014266159608988806, + 0.00044298318689965687, + 0.0013958884734817938, + 0.0019469208990904978, + 0.0011775531088221646, + -0.0005885450733499118, + -0.00021504257472151276, + 0.0009226076973398678, + -0.0013757689834344704, + -5.892285913710641e-05, + 1.4776834050849458e-05, + 0.0005296162691122053, + -0.00043462127196863256, + -0.0010105814297098725, + -0.0016768650558771734, + -0.001144265258375753, + 0.0008898932166174281, + 0.00039715785459416825, + 0.0010551056412306506, + 0.00043110351877669175, + -0.0010069498416522991, + -0.0010788195665389728, + -0.0023283788374596, + 0.0012489536339583569, + -0.00040800835691522146, + -0.00018808505089363298, + 0.0006460041293024817, + -0.0004045537746589318, + 0.0023113316755708838, + 0.00114779454995901, + -0.00029393415695368804, + -0.0006626999410634909, + -0.001073140155593228, + -0.002010211556627263, + 0.001970081895024713, + 0.0006385112423848565, + -0.001307774881577846, + 0.0010159914454135693, + 0.0005181237662172371, + 2.6341153577902102e-05, + 0.0015880763935080594, + -0.0007785764274326322, + 0.001074211900950993, + 0.0007073922918166674, + 0.0003635265083067911, + -0.0001450701831488849, + -0.0006002244627797656, + -0.0013803509535818157, + 0.0001263658661588761, + 0.0014594268230028915, + 0.0015582458100377808, + 0.00225031789436134, + 0.0012736301026735472, + 0.0005438616514428804, + 6.245200924822314e-05, + 3.341284224733031e-05, + 0.0009378013015590219, + 0.0007656243575445513, + 0.00032237777379739643, + 0.0019250461936264542, + -0.000357658572808337, + 0.0012044304544536906, + 0.0009028586911298266, + -0.0010901824243214992, + -0.0015229409405849502, + -0.001381337634041682, + -0.0004328469313793082, + 0.0011038279110688741, + -0.0004393928902462331, + -0.0009408611573713835, + -0.0007786735349247643, + -0.00045136144468830767, + 0.00012698157922101354, + 0.0010905873030274999, + 0.000304165507579288, + -0.0009498916740655877, + 0.0020175107828064387, + -0.0007098749942667579, + 0.0012139964471052668, + -0.00030067824666276944, + 0.0004924709776800078, + 7.245364527191345e-05, + 0.001508786108143105, + -8.44842142800359e-05, + 0.0016786237511728387, + 1.1204164399512487e-05, + -0.0012573795508234442, + 0.0008607690389731867, + -0.0008049859299581092, + -0.0002514364371188041, + 0.00027480100942036447, + -0.0008865781712453468, + -4.434801857121277e-05, + 0.0008482026981631125, + -0.0005312366943138442, + -0.0011196656416421632, + -0.000675688908303147, + -0.0008442757739314018, + -0.00028349665632799537, + 0.0007788713666241348, + 0.0005897911793616283, + -0.0010857460109452769, + -0.0012723408421807941, + -0.0003894040715560278, + 0.000570792239586046, + -0.00029272119750560455, + 0.0004795216701213832, + 0.0007933730117280933, + -0.0002588923294579247, + -0.00021841310038990403, + 0.001758988128140634, + 0.001148503804090505, + 0.0001902537770826488, + -0.0004531444826026928, + 0.0007611498799121262, + -0.00131668179709097, + 0.000982500691135371, + 0.001998362581013869, + -0.0009987872284027335, + -0.001158103019695009, + 0.000463559196195411, + 0.0006433401331076894, + -0.0014679464564955036, + -0.000762313197678845, + 0.00029265348700232603, + -0.00018841730628714855, + -0.0009616902938412798, + 0.0003500583965963407, + 0.000993631124945856, + 0.00016265027817064052, + -0.00025728881203711674, + -0.0008585839043596369, + 0.0016039682658074506, + -0.0007382146472602185, + -0.000675085498315647, + -6.236381320274956e-08, + -0.0002716118778847194, + -0.0005213605909179034, + -0.001054374890362793, + -0.0009651295473142792, + -0.0015961471063137523, + -0.00033905225135428353, + 0.0011085778084131718, + 0.0018777544713022229, + 0.0003035862321773275, + 0.000793128547141583, + 0.0014190281365035534, + 5.628104539045047e-05, + 0.0012470118969573252, + -0.0013766576840721402, + -0.00029905126695348524, + 0.00035637542896592775, + 0.000795750831556729, + -0.0005712703815986941, + 0.00033179531428674937, + 4.579209430090838e-05, + 0.0014882749305579616, + 0.00017365712396976053, + -0.000244805895703939, + 0.001280632770358438, + 3.643723523602103e-05, + -0.0007641852353736851, + 0.0018301440070631237, + 0.0012086799013736086, + -0.0016786574424754134, + 0.0002044278207168625, + 0.0015493624339487813, + 0.0005534209564269947, + 0.0008819347238347969, + -0.0012468168921509772, + -0.0009098840340514171, + -0.0010267556530409341, + -0.0008968389489972733, + -0.0007246483349306938, + 0.0009537991241934454, + 0.001508913981293045, + 0.0010879013844783242, + 0.0006853871678901585, + -0.001710723492131594, + -0.00040300600613238027, + 0.0008713463668148519, + 3.263790972242191e-06, + -0.00019033241867538443, + 0.0006036989313644939, + 0.000653659383891052, + 0.0007778278891040502, + 0.0026851365463386435, + 0.0016274315875167463, + -0.0003530650764760374, + 0.0006868432694487502, + 0.0001795764715866688, + -0.0005794129777825833, + -0.001617265428761814, + -0.0008056816790681295, + -0.0006806964250888275, + 0.0003078361026554748, + 0.0013403772986760813, + 0.0003076660870262976, + -0.0011249373339728, + -0.0014490077326637864, + 0.0013301604981351318, + 0.00013764782607148654, + -0.0006671819513463702, + -0.000624292521976169, + 0.0018067179265904908, + 0.0005674774129443829, + -0.001317105409627363, + -0.0005516670001376773, + 0.00042234179001810206, + -0.0017668909492902975, + -0.0001162881587384952, + -0.0017185921300405982, + -0.001387755100643745, + -0.0005517741391588709, + 0.00012065283421683395, + 0.0013631651255593099, + -0.0011290232718808902, + 0.0005615693154638933, + 0.0006551422039926208, + 6.254180417526598e-05, + 0.0012162445401049347, + 0.0014897147508024485, + 0.0018979156109715162, + 0.0008278795942863002, + 0.0016709172795479259, + 6.552613570536331e-05, + -0.002268839298288393, + 0.0001182931452040495, + 0.0002099355161435836, + 0.0005630869604959698, + 0.0007509259746303399, + 0.0002753269190802024, + 0.0002449954233398701, + -0.0008166079873114575, + 0.00020295605984574773, + 0.00033879418682900995, + 0.0007205839697275071, + 0.0007953524406212684, + -0.0007619718374865396, + 0.0001334664356530962, + 8.628825983300847e-05, + 0.00011866394199900012, + 0.0007208689077847103, + 0.0001557166342463532, + 0.0011605696039186997, + -0.0005969486335912622, + -0.0007653988029903052, + -0.0018882273646243291, + -0.00040776848098682267, + 0.00026693848464171536, + -0.0014955487693392561, + -8.78919074330568e-05, + -0.0001381925694993762, + -0.0009069314150661414, + 0.0008078474487118959, + -0.00019253654508679532, + -0.0002177696606660187, + -0.0007448961034754032, + -0.0011121084619067994, + 0.0010419012464654741, + 0.00016984816633941086, + -0.0009881360671502506, + -0.0008760247987300478, + -9.17357964351188e-05, + 0.0011502688379596642, + -2.9360108626403384e-05, + 0.0012561853602880936, + 0.0005513747478366195, + -0.002113177864428946, + -0.000454925689565556, + -0.0005071825803594967, + -0.00015290966794694646, + -0.0002927383496827896, + -0.000596868518605734, + -0.001071013825714676, + -0.001092358679676457, + -0.0010294854899197898, + -0.0006839444339783127, + -0.0003925862869372659, + -0.0014621409767116348, + 0.0006513400374065412, + -0.0010732348162592607, + -0.002082067069762051, + 0.000292246433221165, + 0.00044564642107745986, + 0.00042869812170682434, + 0.00102224841515829, + 0.000477050446927711, + 0.0009248957418170293, + 0.000506336040083146, + -0.0009510468939738244, + -0.0007406046082629666, + 0.00022693085399123393, + 0.00028824964390600927, + 0.00030437406607444707, + -0.00012138825135749925, + 0.00012309962423739888, + 0.0005185395879948174, + -0.0007620128845929218 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgb(254, 196, 216)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 0.00036612281681027076, + 0.00011739690058039563, + 0.0015183451710499445, + 0.0011849238418069992, + -0.0006283770445237846, + -0.0007273280062637452, + -0.0006231320707844031, + 0.0012789809186175526, + -0.0005156996526098488, + -0.0009215767372117987, + 0.0003664113788593924, + -0.000293939003143635, + -0.0011985791628526578, + -0.00024684251653493244, + -0.0011161236761377837, + 0.0014116027620015104, + -0.0010052942564306236, + -6.194417151496472e-05, + 0.0006110888840511975, + 0.0001595764909368046, + -0.0007499069719523766, + -0.0012139603558557093, + 0.00044249191069820347, + -0.00010953388496094225, + 0.0016177681554732299, + 0.0003929520865353156, + 0.001025511117371874, + -0.00044870889375095023, + 0.0010923237505190359, + 0.00043664452810123736, + 0.00026021893877977803, + -5.6354897614355534e-05, + 0.00021495163111827638, + -0.0008309565841788409, + -0.0003777993250762434, + 0.00017000936604198865, + -0.00020868725469821336, + -0.00028450880450393113, + -0.0010607408904884468, + 0.00038226244611024474, + 0.0003131925455173159, + -0.0006238939166360296, + 0.0009255112489959491, + -0.000916197523279025, + 0.00013054874660713722, + 9.19669749859499e-05, + -0.0008578754564481514, + 0.00025176135057234706, + -0.0005866396513096286, + 0.0002805247828839425, + 0.00035722133157556823, + -0.0005789219840232861, + -0.0011617815906709887, + -0.0009579298721299528, + 0.0010894171909396786, + -0.00014033199602682598, + -0.0019578445001795647, + 0.0005451535089374535, + 0.00031899641234162926, + -0.0009485891634929912, + 0.0010153581902373886, + -0.0012797244257169728, + -0.0001743004810305498, + 0.002425156204720079, + 0.0014753719685258774, + -0.0005169100060466093, + 0.00016286787276417188, + 0.00013974015046167425, + -0.0022858860740597145, + 0.00019256765627990747, + 0.00037986830424680635, + -0.0003615627038659728, + 0.00027350803695146115, + -0.0002208779029500703, + 0.0017669237676738749, + -0.00020649447357978104, + -0.0007008956702875245, + 9.195515988690208e-05, + -0.0014012276148207296, + -0.00015057138384107362, + -0.00029937200357980085, + 0.00046068342569423863, + -0.0012295532059075386, + 0.0010714530598039907, + -0.001050911791641285, + -0.0008417806615466016, + 0.00010805619740400201, + -0.0006237004326410125, + 0.0016032377825520618, + -0.00048146700414600897, + 0.0023014336180922526, + -0.0007247014645550957, + -0.00042889884998041986, + -0.0011156298283418807, + -0.0005566269692276946, + 0.0008752545895330115, + 0.0005574420106880978, + 0.0009683510173577139, + 0.0005211494770867164, + 0.000984128398729014, + -0.0018436097008075053, + 0.00029846776195780605, + 0.0009757902055329719, + 0.0005705946317811647, + 0.0007855057976133282, + -0.00026171246324909614, + 0.0007447093822773902, + 0.0010977018744469786, + 0.001716001250136103, + 3.0023386813608834e-05, + 0.0002955554032256239, + 0.00026719042378089215, + 0.0002528222331241944, + -0.0007074906036230738, + 0.002276392700346063, + 0.0005474403759654907, + -0.0006188826875022758, + 0.0005740554486301852, + 0.000670301334349916, + 0.0002830238924459594, + 0.0010762776445962588, + 0.000540480456700434, + -0.0015168836395516023, + -0.00026161295475797547, + -0.0003554453116785739, + -0.0010046014335737795, + 0.0013881895536915702, + -0.001171984838272963, + -0.002341238122899679, + -0.001368664069607295, + 0.0007047140370948029, + -0.0008462143759876482, + -0.0007509887805235117, + 0.0004395734949682882, + -0.0004329614953633473, + -0.001891361209474271, + -0.00020382057728744225, + 0.001805299763193749, + -0.0011280346662925899, + -4.7166945266181656e-05, + -0.0005933652341191324, + -0.0015009485413900099, + -3.5830017372822406e-05, + -0.0019869745634254923, + -0.001067531134408332, + -0.001287622021990754, + 0.0012516723510108184, + 8.377417902186037e-05, + -0.001962610638320397, + 0.0002279640899350311, + -0.00022065609429395113, + 0.0007398239946201409, + -0.0003607755744792249, + -0.00017453424019963309, + 0.0005475202405479749, + -0.000822254048981266, + -0.0015980402442724404, + -0.0001908650557478107, + 0.001773865838464826, + -0.00020708504482167884, + -0.0009818617328471813, + 0.0013888323487259674, + 0.0005326738501993658, + 0.000849521267726828, + -0.00018758752211941735, + 0.0012267963212798632, + 0.00015927174884760654, + 0.00024847586880136875, + 0.002016985656496904, + -0.0009423034221376831, + -0.0015221422245460213, + -0.0010874994503446964, + -0.0003111946682448233, + 0.00011162351931645687, + -0.0005538220952311834, + -0.001449538265234768, + -0.003545727675752721, + -0.0007241850972276891, + 0.0003545900820569753, + -0.0003413154797395065, + -0.0018290817663129658, + -0.001113538162448429, + 0.0011820633909819305, + 0.00011583628369193948, + 0.0015666901412307796, + -0.00036962610442641756, + 0.0010288424834463679, + -0.0017306838248399398, + 0.0013324916411519272, + -0.00016240880901690415, + -0.0005351931939492242, + 7.924920704761064e-05, + -0.0013364918764164184, + -0.00039063867355014124, + -0.00040210199835377105, + 0.0004653899867632287, + 0.00011897911021750457, + 0.0003681028023605838, + -0.0010160001801190325, + 0.0001389990341171138, + -3.869703258651428e-05, + -0.00021523340765766316, + -0.0013801961571811342, + 0.0004109189403644252, + -0.0007861285905584858, + 0.0006267685170735691, + -0.0009081450631847818, + 0.000676947251975991, + 0.0009101441889079165, + -0.0012825163779484475, + -0.0006525108162783241, + 0.0025447462970311, + 0.00013659006458561677, + -0.0028821601245438287, + 0.0014457805071084798, + -0.001300635696823102, + 0.0003914771735604333, + -0.0005414704936524666, + -0.0008789185514783426, + -0.0016679605043351956, + 6.747505520827908e-05, + -0.0006237032774438116, + -0.0003082228906869694, + -0.0006194683527682872, + 0.0007027812495026529, + 0.0018418294330670897, + -0.0008102064351250373, + 0.000999351619254558, + 0.0005907158476560412, + 0.00015736266041303614, + 0.0012678380402861532, + -0.0014230191501581509, + 0.000873954081865486, + 0.0001290285624386913, + 0.00015127329840325493, + -0.0004977139708824392, + 0.0006540040810837437, + 0.0002624256116770493, + -0.0008463555372116447, + -0.0007821658046411621, + 0.0014201308283741298, + -0.0015721767013420647, + 0.000403523011823581, + 0.0004587259788373577, + 0.0017229554051785914, + 0.0013780977954510093, + 0.0016148014195135963, + 7.74200141041824e-05, + -0.0009258351860148719, + -0.00024792896639337913, + -0.00021174074756143702, + -0.00022058629156561328, + -0.00041431815865766887, + 0.0010428780012817806, + 0.0007211798336709249, + 0.00030894870828830086, + 0.0014687654964428314, + -0.002864506388707368, + 0.0007046048864644733, + -0.0003615040112125642, + 0.00024733303764210734, + -0.00180504003556143, + -0.00020693569507285848, + -0.0005150342173064134, + 0.0008376704179782969, + 0.00010241523633467527, + 0.0010577809792738971, + -0.0005640146805035753, + 0.0006776813082580612, + 0.0004845576648966612, + -0.00010145855473809532, + -0.000413395077922229, + -0.0009418159557947067, + 0.0007636990013971555, + 0.0002977285517293632, + 0.0002845384785346919, + 0.0004683782471257715, + -0.0004234990161337974, + -0.0006167606904907024, + 0.0009231051885846343, + -0.0006181416545433119, + 0.0007480004578805338, + 0.0013893846540125531, + -0.0005222612272491148, + -0.00019870995231195877, + -0.00031633426273228773, + 0.00044446962792510304, + 0.0002320481189896041, + 0.0024739105208248314, + -0.00010698806572836919, + -0.00031233912497226075, + -9.976078185923161e-05, + -0.00016613884517543005, + 0.0002058553934691888, + 0.00017074252245496795, + 0.00022779059621329264, + -0.0008566040926113146, + -0.0007138837834029353, + 0.0009520127016336362, + 0.0006380125008586668, + 0.0017162684256634448, + -0.0006754748605994959, + -0.0009659171118816551, + 0.00037215648667304703, + 6.736499282429307e-05, + 0.0018600883014664262, + -0.0002751948827434598, + 0.0005812322669459919, + -0.0011144529861831782, + -3.8055131956636645e-05, + -0.0004145494847601925, + -0.0006695066329065367, + 1.2674507597194679e-05, + 0.0019165154812115584, + -0.0005004578218638831, + -0.0005321023495379291, + 0.000760178414049948, + -0.0005727086633082704, + -0.0008288497152696204, + 0.0014566476103563927, + -0.00020710768988183638, + 0.0006474385811840397, + -0.0008928798091892384, + -0.001882844339756374, + -0.0005864757253950802, + -0.0012293829063138365, + 1.2530914790106137e-05, + 0.0009442200715545148, + -0.0013812815008315761, + 0.0005840874224313871, + -8.227918148621312e-05, + -0.000613669940700267, + 0.0004945141368229483, + 0.000525534763827386, + 0.0008386531044195854, + -0.0002964725697614188, + 0.00022921692249968834, + 0.001810007115164901, + 0.00021529222783745055, + 0.0014176626994298165, + 0.0006391746451266885, + 0.0005348754837692593, + 0.0006026800633653075, + -0.0014474469923925926, + 0.001502158254718586, + 0.00021880956072902892, + 0.0011062303091342433, + 0.0005632078317589614, + 6.505243585523024e-05, + 0.00032148685068421443, + 0.0013139144038004744, + 0.0014161117817892864, + 0.001399884829646949, + -0.0009890719330718392, + -0.000664457432123029, + -0.0011353878059163157, + 0.001033281275371522, + 0.0010776587361777457, + -0.0004355272640374032, + -0.0006340827196311564, + 0.0016409110114721554, + -0.0012163073891567336, + -0.0010111496183583136, + 0.0008396413160779432, + -0.0014908428101313637, + 0.0004894388257092481, + 1.4358515956285245e-05, + 0.0008777009141966007, + 0.000948718745789028, + 0.0003856846086630238, + 0.0008024632089885707, + 0.0020936022031093388, + 0.0012096939967488605, + -0.001059878942541886, + 0.000389814997098784, + 0.0005411313455523186, + -0.00010257997571833295, + 0.0009450695013500234, + -0.0009619384885202751, + 0.000514557384513272, + 0.0008664365712072985, + 8.154676565907459e-05, + 4.247534119542092e-05, + 0.0009208292268712086, + 0.000865311291955188, + -0.0013123720773686874, + -0.0020942371079020238, + -0.0016542069880875988, + 0.00025708082166185197, + 0.001224464755041662, + 0.0009532117466898947, + -0.0013718593918260879, + 0.00017243335355282162, + -0.0013269359271620173, + 0.0004956102693006117, + -0.001446438213399904, + 0.0009197801912611673, + 3.70415855406505e-07, + -0.0010527409717898375, + -0.0007085603910970848, + -0.0003523892194010461, + -0.001978871517130332, + 0.0009212616928260744, + 0.0009532017860635436, + 0.00044692580566818124, + 0.002561537603610329, + -0.0016681885971751953, + 0.00024264834391062858, + 0.0006011006714622597, + 0.00017732601643848003, + 0.0010008873496135224, + 0.0009077384260684413, + -0.0006889075323247118, + -9.657945135384899e-05, + 0.0011129048512978751, + 0.001363879397095739, + -0.00021455311519753337, + -0.0009803942107315404, + 0.0007984954562976468, + 0.0012819139587567246, + -0.0009318538255879058, + -0.00012477219435565393, + -0.0004247446678649057, + 0.0010130433668617005, + 0.000472889610481713, + -0.0001389309205022686, + 0.0012357784492698322, + 0.0001826112546360214, + -9.758111528063108e-06, + -0.001479156271413119, + -0.0010893166352001187, + -0.0011336766956836347, + -0.0007571536786154829, + 0.0011436982874930071, + 0.0012248964594143348, + -0.0011409177450635883, + -0.0020520782506316046, + -0.0003803460198413826, + -0.00040177607867631526, + -0.0012354467390488708, + -0.0008791239122314325, + 0.0007105411041058694, + -0.0015741782349424603, + 0.0008912426923738256, + 0.000427411380124055, + 0.00016165257720629446, + 0.001758138775194579, + 0.0009717005465504388, + -0.0014154693971028599, + 0.0013902461536574057, + 0.0020799145227774927, + 0.0008506678084935578, + -0.0003235412248024215, + -0.0009673584601514319, + -0.0005227013699375437, + -0.0006127472324320944, + -0.0005397854528707753, + 0.0010954014756612675, + 0.001016017235544879, + -0.00035328307918739793, + 0.0003007253953261667, + 0.0012780337267638778, + 6.687218539216742e-05, + -0.0006879165622219539, + -0.00023880761761304616, + 0.00038128050113799385, + 5.530999689269751e-05, + -0.001484976737393008, + -0.0009937269820500935, + 0.0008655305928743476, + 0.0011687681974419223, + 0.0008665010244259374, + 0.0003709538299322575, + 0.0006751566622594455, + -0.0015710292775438295, + -0.00021775909420619557, + -0.0002517415189736915, + 0.0004220078841635317, + 8.620412074791731e-05, + -0.0006946014788553058, + 0.00037506693813153184, + 0.00021011082477752571, + -0.0009767504981973644, + -0.0009353266466976422, + -0.00034930858641822295, + 0.000151683012161972, + -0.0003592214842223616, + 0.0010010907182840124, + -5.105489168233348e-06, + 0.0016995541538258989, + -0.00024208055255591532, + -0.0002940484550922979, + 0.0005379169181147179, + 0.0003443880397353351, + -0.0002827093922379334, + 0.00034687614810771737, + 0.0014564018657983037, + -0.0005230704006752247, + 0.0018244317334621743, + 0.00025680913721691783, + -0.00034768941732733153, + -0.0005596034937410068, + 0.0004026477817161484, + -0.0001874965252294012, + 0.00048026828269566533, + -0.001288433991009139, + -0.00020149159044149118, + -0.001089339675679886, + -0.0004999931840838115, + 0.0013656017262997572, + -0.0002592329146378001, + 0.0006390256074401437, + -1.2224376760308487e-05, + 0.001529096485138177, + 0.0008933713188353231, + -8.439093123395228e-05, + 0.0010065190255610864, + -0.0009235460681419541, + -0.00020385406438247605, + -0.0004651988712383926, + -0.00041961959377145505, + 0.0002618337889041024, + 1.8091478902569785e-05, + -0.0003747815918755035, + -0.0010086085412347977, + 0.001156840427868828, + 0.0009630905644233471, + -7.392121999839432e-05, + -0.00022726421290418893, + -0.0011554934802149675, + -0.00012613874869230572, + -0.0009370417899004655, + -0.00043187914437179103, + 0.001217237116635101, + -0.00038521244438528834, + 0.0017849844588951002, + 0.0003652440288479201, + -0.0008914053134112543, + 0.0008318423977947427, + 0.0009311499563832287, + -0.0002757768062513613, + -0.0005925788115893019, + 0.0004079930109308257, + -0.0012345477075988876, + -0.0007274167569920357, + 0.0019464595790479305, + 0.00045685961070795686, + 0.0017150197773950146, + 0.0012903375759766435, + -0.000566037591995992, + -0.0012461844534416271, + -0.0006657802341691324, + 0.000805707730635954, + 0.00017510960751142006, + -0.0006921276137089193, + 0.0003949476842376588, + 0.001582414003122257, + 0.0005606612070593154, + -0.00010408213847024631, + -0.00045485193840799594, + -0.001236532865934199, + 0.0005993138961278879, + 0.000980876609710807, + 0.0002492017828718157, + -0.0007555790839035505, + 0.000597555538368926, + 0.00031899886542596513, + 0.001526703375932843, + 0.0011940482535492253, + -3.209721560444878e-05, + -3.451085288711905e-05, + 0.0011489263921285477, + 0.0007406654643360075, + -0.0001563222133315592, + -0.00027489010495571964, + -0.001104074565097084, + 7.727940902091165e-05, + 0.0009036622791628744, + -0.0004887798207807845, + 0.0007409077576090907, + -0.0021652285188513113, + -0.0002892011642623632, + -0.0004325828244557643, + 0.0008736461287017457, + 9.475496154888238e-05, + 0.00010782797385748151, + -0.00025571208671977644, + 0.001117493150558796, + 0.0014483393799718544, + -0.0003001637172967364, + 0.0004814909697336671, + 0.0015395276980601225, + 0.0005570142228943365, + -0.0008609201093234673, + 0.0003005900015433246, + -0.00030312663416762393, + -0.0013109673133838956, + -0.000964929041598966, + 0.001614990995388713, + -0.0006831794029607918, + -0.0010934145337397347, + -0.002074640307908198, + 0.0002522830075215064, + -0.0018215140929857816, + 0.0010356468203883945, + -0.001410646464750131, + -0.001121201833707101, + 0.001945610910200762, + 7.201362051751387e-06, + 0.00010316109489715109, + 0.00020875592364778383, + -6.180715732920561e-05, + -9.267744985983166e-05, + -0.0005813426747148784, + 0.0004965155607962418, + 0.0003756510494432828, + -0.00035204062360966133, + -7.862502466115291e-05, + -0.0003949708610089839, + 0.0004389896362548781, + 0.00048399387101219764, + -0.001009309942800417, + 0.002778266535387228, + 0.0011747462539367524, + 0.0008726565230337619, + 0.0007553215324436407, + -0.0005651304864517521, + -0.0013992153856670312, + 0.0022885934235779477, + 0.0008767258639804066, + 0.0010874891080400724, + -0.0013987679682498952, + 0.0003521854389452888, + -1.2831673861333636e-05, + 0.00015053142814139847, + -0.0007997014455252249, + 0.0014809128242934948, + -0.00015477121359702998, + -0.00015253071921105885, + 0.0009349288932693852, + -0.00018412400913321702, + 0.0009159411566040095, + -8.24003735223108e-05, + -0.0002903300182128211, + 8.278353339024913e-05, + 0.0010053215438164832, + -0.00031736451311137494, + 0.000834503489552361, + 0.0010343023622545282, + -0.0013573430484855086, + 0.0007447261750628056, + -0.0002287622930659862, + -0.0012064924996054653, + -0.0014686231837130771, + 0.0016490242018821172, + 0.0002486666946600552, + 0.00046821479037507827, + -0.0007238617398451907, + 0.00038490482569396306, + -0.00016344653093887208, + -0.000565212189488689, + 0.001971515095299745, + -0.0016696654909756233, + -0.0012080195327860473, + -0.0007858802871249936, + -0.000992605812000385, + -0.00041944662973441026, + -0.00032275439291516906, + 0.00015379445234969068, + 0.0015058510217650742, + 8.778605024203588e-05, + -0.0002733260599203808, + -0.0002805715690670842, + 0.0007091977358637266, + -0.0008435767113039001, + 0.0014602116645021914, + -0.0003219144656745266, + 0.0006680001072448965, + -4.086293767001706e-05, + 0.001062966109904066, + -0.0010182801870447665, + 0.0008846101539299083, + -0.00012421389944457595, + -0.0020805566313855843, + 8.328061366643034e-05, + 0.00014048268550356335, + -0.0003899412782919984, + 0.0003396201389263233, + -0.000854903765212859, + -0.0024026523946124984, + -0.0012719820085427562, + 0.0016095454648913216, + 0.001341314741964285, + 9.53570856391753e-05, + -0.0007889373652118118, + -0.0001354371644918564, + -0.0015009336091562863, + -0.001621116697543219, + 0.0011484363357181805, + -0.00014186416178264198, + 0.0015250828393703114, + 0.0017386537750592366, + 0.0004601516513785297, + -0.0003804524299052977, + -1.8942984562533053e-05, + 0.0014377663721442135, + -0.00015896866423655758, + -0.0010779241192364754, + -0.00037408236854596146, + 0.0006833159826529107, + 0.0016295286119166954, + 0.00020670450937918176, + 0.00046779245184697956, + -0.0019559744667322974, + -0.00011776903557378099, + 0.00028662401384072406, + -0.0013528238411730253, + 0.00029757175697799293, + -4.0949596501613176e-05, + 0.0010388991732982998, + 0.0009762934919315949, + 0.0015947850691991343, + 0.0005458668833539048, + -8.64691075357529e-05, + -0.0025803766609939984, + 0.001265343515218188, + -0.0005922557929456724, + -0.0011663201168900504, + -0.0008355540070019956, + -0.0014746483173293766, + -0.00042343907554412126, + 0.00031309154126239064, + -0.000361488441518417, + 0.0007121154438353874, + -0.0017260236558208392, + -0.00081076182441535, + -0.0014492817157685284, + 0.001492331184897059, + -0.00024932095649764024, + 0.0013015389610281335, + -0.0013448648155848307, + 0.00022190136024599958, + -8.995023273372296e-05, + 0.0012056608518727094, + 0.0006684143880848285, + 0.0004696883895736357, + -0.0006521263422910654, + -2.5073370883786487e-06, + -4.637666219726697e-05, + -3.0023208622767127e-07, + -0.0003401646423835064, + -0.0006946188203868303, + -0.0013461393766538718, + 0.0004303170931346649, + 0.0013858127367712169, + 5.469521881887494e-05, + 0.0006643686904318131, + 0.000702004223359119, + 0.0011267259748802873, + -0.0012819237561170294, + -0.0008924726053621756, + 0.000399162242716666, + 0.0011356049357318112, + -0.0009453843378431427, + 0.00024093577660411046, + -0.002196538171710874, + 0.0005737677256607607, + -0.00015973286053872233, + 0.0002778273525189784, + -0.0017728839914313258, + 0.0011822802782995893, + -0.0003884148166792389, + -0.0003645276470197328, + -0.000415822396548022, + -0.0009663760455686842, + -0.0007406830490068885, + 0.00035875111028714664, + -0.0010346698589128642, + -0.00019702208318479053, + -0.000656273276968887, + -0.0005558479925398332, + -0.00023469939250596927, + -3.056718223131452e-05, + 0.0008346023683975848, + 0.00039134963201894606, + -0.00017577530786963013, + -0.0021474135717272293, + 0.0005537820671359326, + 0.0020388238482441185, + 0.0016573379902373542, + -0.001098834031960651, + 0.0011497842574267072, + 0.0001666301092242473, + 0.0002669291427549359, + -0.000658284147972654, + 0.0006999622141370575, + 0.0007457571472023819, + -0.00012986014583071196, + 0.00024062656062348416, + -0.0001944167458729149, + -0.003802415380706385, + -0.0009037222973301339, + 0.0006142513967598964, + 0.0010203748494779675, + -0.000984977728927588, + 0.0006897729773692176, + -0.0003719505078839836, + -0.0014713513920533434, + -0.0019038334897843456, + -0.000562688150426306, + 0.00015703595248408247, + -0.0015196307902702528, + 0.00139216492839739, + -0.0007676649341658848, + -0.00037151360291395863, + -0.00022042938604597198, + 0.0006047051957630507, + 0.0015919058773078269, + -0.0004271566361775125, + 5.0839573448552836e-05, + 9.692137397584433e-05, + 0.0005153563205199618, + -0.00023210706962883038, + 0.000930413833247954, + 8.810357286776032e-05, + -0.00016618773021465373, + -0.00042927688634019495, + -0.0008469047911425521, + 0.0009662439795493121, + 0.003314685289027251, + -0.00027320570874276705, + 0.0013910325102398933, + 0.001533952265577832, + -9.910499162204716e-05, + 7.25886950768114e-05, + 0.00035904414356930715, + 0.0010390083426157568, + -0.0022011670189239804, + 0.0007784531426684974, + -0.00045796855891065474, + -0.0001177497329150132, + -0.0018605875667876207, + -0.0007408642850828807, + 0.0016903745817314552, + -0.0006631945332848504, + -0.0001389049084583563, + -0.0006607481081921581, + 0.00016826616962408993, + 0.0011121941352786298, + -0.0008228377159038493, + -0.0006804260509409269, + -0.00091454851028416, + -0.00043135514860346587, + -0.0005603373275208269, + 0.0005439823500406769, + -0.0014058554663794584, + 0.002351262893830917, + 0.0001365306201902414, + -0.0013054674388135459, + 0.0003530038673156456, + -0.0007722116517980843, + -0.0001224040575482948, + 0.0013488094330780384, + -0.00039393738025004377, + -0.00022547884598980166, + 0.00029759267710485055, + -0.0011521488508150876, + 0.0019368093645001313, + 0.0005047363380110781, + 0.0006918903685957642, + 0.0009786925860513214, + -0.0005506075937136278, + 0.0014317274237337588, + 0.0001023324921413834, + -0.0003518061644868432, + -0.00020533284256242013, + -0.0010999993655815997, + 0.0013986754255725846, + 0.0015800909824873644, + -0.00026855378244205265, + 0.0001541477445203056, + 0.00041975687771847003, + -0.00017136950387758703, + 0.00013123581152395226, + -0.0006273094084314944, + 0.0002720044729804245, + -0.0008952649507308407, + 0.0006153279109073842, + -0.0012467944352094634, + -0.0008369020981990742, + 1.631333454709715e-05, + 0.00036444645123532524, + 0.0006690393456945052, + 0.00015208428259772428, + -0.00012634898934667702, + 0.0001532309965172029, + 0.0007519216829006202, + 0.00017057880367965912, + -0.0018796893080971738, + -0.0013428066503593998, + -0.0009494561320953055, + 0.000252150667372266, + -0.0004950736984676123, + -0.0005263976590107746, + 0.0002662330986233788, + 0.001024640265851866, + -0.0024471049209324252, + 0.0011503682597704596, + -0.0004534255549780525, + 0.0011146322556650097, + 0.00011540308006808745, + -0.0001234954879100842, + -0.0011646619187838545, + 0.00012391584576071723, + -0.0010078839754863217, + -0.0011956551080470686, + -0.0005625155695802522, + -0.00020739324259491833, + -0.0002895098722759737, + -0.0005997381609670287, + 0.00044460557716450677, + 0.0005166726213246078, + 0.00026517664249271956, + -0.002214022105053266, + 0.00024132662100331365, + 2.858939751180755e-05, + -0.0004436102223075558, + 0.00027450703798703074, + 0.00011287425702938418, + -0.0010159379067191995, + -0.0009594723361591882, + -0.0007710015197661521, + 0.00025544039492182317, + 0.000904330366859514, + -0.0006679625206925816, + 0.0005288358410162659, + 0.0006986937830006517, + -0.0005892314651026097, + 0.001480545833601097, + -0.000715021899658113, + 0.0018591071599225416, + -0.0011438665069706496, + -0.001020997034617041, + 0.00011047521586911592, + 0.0003771147732821518, + 0.00038769531808820223, + 0.0006124854546954554, + -0.0006022462038468545, + -0.001486430531539112, + -0.0005376974554687342, + -0.0014752019076631976, + 0.0014605190353175657, + -0.0017219104485125887, + -2.8754277769661252e-05, + 0.0004719343515692761, + 0.0003695237925189483, + 0.0012632108909459564, + -0.00026150310716522885, + 0.0023026266682660305, + -0.0010097448832436767, + 0.001015794634336169, + -0.0007476137604805718, + -0.0001333242138938949, + 0.0013676367489149825, + -0.0006584489863473935, + -0.0010387859410922236, + 0.00023042484595372747, + 0.00013335806890445913, + 0.0011301261576768375, + 0.0004225294544465916, + -0.0002486156463775011, + -0.0009856294260129723, + 0.0016205515245380313, + 0.0003782441510935469, + -0.0003098123028003262, + 0.001155576939807107, + 0.0004482015354991754, + 0.0009656489576898766, + -0.002306650110577672, + -0.00013089062731572355, + 0.00020818668116355502, + -0.0005089318016919629, + 0.00023976005969535155, + -0.001963212180568377, + -0.0017317361456686744, + -0.001446949327674462, + -0.002531591418076156, + -0.0003864097182464936, + 0.0011670733186113394, + 0.001207199118269091, + -0.001556551165577771, + 0.001045480417369772, + 0.0005832098233485572, + 8.312775545612876e-05, + -0.0008888534558489821, + -0.001767267843007529, + 0.00011162154695010189, + 0.0008056430848451691, + 0.0007438645889997125, + -0.0009783612010867025, + 0.0008510394900701634, + -0.0012299412498671582, + -0.001400532353761403, + -0.00114266435478569, + 0.0006467142016788791, + 0.0007597706570500956, + 0.0016412283594697573, + -0.0013596138085762806, + 0.0008308146178834331, + -2.6482042602533217e-05, + 0.00044366248889939096, + 2.0408367057556833e-05, + 0.0008559670672236788, + 0.0015846040644041028, + -0.0005482817949689959, + 0.0008700407324279802, + -0.0009449548335335751, + -0.00027750761763281184, + 0.00026116389180919867, + -0.001112078087413855, + -0.0015542318057538292, + -0.0003545357952640416, + 0.0020201082858084846, + -5.345027116210045e-05, + 0.00015869362045646096, + -0.0004921296020412533, + -0.0021275373920142627, + 0.0004213923292937446, + -0.0017118702292091142, + 0.0010177468104600395, + 5.938601129211577e-05, + 0.00030250425482151154, + -0.0001601674052599309, + 0.0004962860367870459, + 0.0017484621477880558, + 0.0007931874331285432, + 0.00034601021040149603, + 0.0008137925244482465, + -0.0018539242624563425, + -5.147631273785514e-05, + -0.00128165451645469, + 5.8489012331394615e-05, + 0.00069741974229593, + 0.0004742462434276779, + -0.001379714032304304, + 0.000394999692150932, + 0.0001347496498791914, + -0.0009993567548173272, + 0.00048178584279887906, + 0.0001309268231708735, + 0.002131578428801004, + -0.0005496350396453988, + -0.0005465510102897559, + 0.001126017898940246, + -2.7242720736448843e-05, + 0.00026359455865942826, + -0.0004406442050238486, + 0.0006475672252129098, + 0.0002929641703610347, + -0.0005262169061563443, + -0.0010189021260149408, + 0.00097334187538312, + 1.1713272297204534e-05, + 0.00016801842780532695, + 0.00014442304441898753, + -0.0001914997009489338, + 0.00047827785037080084, + 0.0009565638068624254, + -0.00037572934688003874, + 0.0006373739060454754, + 0.0001485568778846641, + 0.00045784227801091466, + 0.0017560107244036847, + 0.001062112757075371, + -0.00012307597315559424, + 0.0013700503038048973, + -0.0010338739858235795, + -0.0016064489152291797, + -0.0015214986246180288, + -0.0004516796074377677, + -0.001406311117635537, + 0.00017171558678154107, + -0.0011953640848637644, + -0.001162798514219899, + -0.0013175857638151915, + 0.000589039155345977, + -0.001078160024663273, + -0.0010325631585195705, + 0.001037398004138611, + 0.001006268919898633, + -0.0006620019691272174, + -0.000755584454685015, + -0.0012121411566341645, + -0.0011792863602358337, + 0.0011510442578840565, + -0.00016001085375047058, + -0.0020086205694999247, + 0.0005756590769975332, + -0.00047461326576962466, + 0.0003424871584379799, + -5.068509659808261e-05, + -0.002750446014535362, + 0.0004476669594509096, + -0.0011686585206789463, + 8.527795542095167e-05, + -0.000725035311685311, + -0.0006858502039205468, + -0.0005402299456086002, + 0.0015197782413391182, + -0.0016037470109849172, + 0.001228971033576755, + 0.0009784159135238033, + -0.0003730797581958307, + 0.001392952589024076, + -0.0013402296194790226, + 0.00023724176597592493, + -0.002548025696733544, + 0.0004990743269902598, + -0.0009306014688013388, + 0.0012490537256493464, + 0.0009391759758446267, + -0.0009269324968686817, + 0.0018910561699153922, + -0.0011685690581602186, + 0.001305763192443835, + 0.0011686562660375226, + 0.0005264572229459067, + -0.0009318227844787764, + 0.0025935043444918642, + -0.0005903062417527573, + -0.0005055207890601952, + -0.0013784797006071176, + -0.0003176910348217487, + -0.0002915913049609428, + 0.00023167100820991075, + -0.0009238454675503367, + 0.00020016162088905748, + 0.0009089278469927627, + -0.0001998603378291044, + -0.0008500445552444845, + 0.0009384615021167631, + -0.0003198651770531752, + -0.001513480488603884, + 0.0005430012738547329, + -0.0012975245496212656, + 0.00039906751476756524, + 0.00010906446782566544, + -0.001085592815453122, + 9.240047626576687e-07, + 0.0011321558717148244, + 0.00022973709993356534, + 0.0007380054442810125, + -0.0007105225857775492, + 0.00043655614897642196, + 0.001325047991682632, + -7.23190048685577e-05, + -0.0013807128902086538, + 0.0013782597818985246, + -0.0017592544058794195, + 0.00013246961620239442, + 0.00014835908410363815, + -9.320980173765385e-05, + 0.00026608738160467454, + 4.2060850780039125e-05, + 0.0007699428859252895, + -0.0007969145269672707, + -0.0005811811560706365, + -0.00036221173280415967, + 6.195895327673465e-05, + -0.0011746292661636564, + 0.0007395487996252559, + -0.00046155124436674606, + -0.0008692261101036026, + 0.00027684214400039187, + 0.000831656675159484, + 0.0003210437998208572, + -0.0009001533796827543, + 0.0003119040400805529, + -0.0010214049146049892, + -0.0007178402967970125, + 0.0008470213943201136, + -0.0010739678707690626, + -0.000632027381111631, + -0.001695849070878682, + -0.0011424210551945141, + 0.0010036353018308298, + -0.0009576455405852643, + 0.0011982106242567144, + -0.00012922205697599902, + -0.0005423830980146663, + 4.4410763432636786e-05, + -0.0016128495381276331, + 0.00021356979043925565, + 0.00012361067964964317, + -0.0004963803702842605, + -0.000286870419047933, + -0.0010153440292058873, + 0.0005784581011129553, + -0.0004862306228852396, + 7.115023792372913e-07, + -0.0007951769038633916, + -2.5234679689045223e-05, + -0.000789200106090274, + 0.0004744874878444661, + -0.0001469807680934007, + 0.0003337864187597869, + 0.0013455816202122657, + 0.00013328651269603475, + 0.0012208799999477143, + -0.0017552244437362965, + -0.0003635504432689686, + -0.00017218618477370004, + -0.0008979179727904772, + -0.0002835783846637198, + -0.0005455045393132228, + 0.0013607076997141105, + -0.002082369558957544, + 5.6526739563027796e-05, + -0.001311775774062648, + -0.0004237989249253054, + 0.0014254703456476928, + -0.001041540214614958, + -0.00018747660187978855, + -0.001659373295399059, + -0.0013648824114578636, + -0.000539199303293694, + -1.5716490660180112e-05, + -0.001571424984657331, + 0.0004557650825819907, + 0.0023047728985041717, + -0.0011915360908559454, + 0.0011284384384281222, + -0.0021974896232193155, + -0.00012190655306812161, + -0.0009609683626024671, + 0.0008861113907159418, + -0.00039439596094624534, + -0.0004035392259458014, + 9.77249410374711e-05, + 0.001171097638678426, + -0.0014614866416847827, + -0.0023706305505425953, + 0.000616538819811949, + 0.0006559934867000289, + 0.0009056443280160541, + 0.0005289300331050287, + 0.0005238446662181229, + -0.001167729582094568, + 0.0016646103145116407, + -0.0009242242120828282, + 0.0020063833023554935, + 0.0001958679927672027, + 0.000897435524820335, + -0.0013502600169854125, + 0.00022733894529760977, + -3.597081583303907e-05, + 0.0005389707654722979, + -0.001335750150059105, + 0.0014830355887469205, + 0.0006987424668797729, + -0.0016395926168627877, + -0.00017104390300926183, + -0.002105125109145218, + -0.0015862353409883344, + -0.0003336318116117689, + 0.0004592975013382164, + -0.0005769226134702296, + 0.0015366298094548877, + 0.00046599474232226427, + 9.108355284667814e-05, + -0.0006497549205896137, + -0.0017077538536295724, + -0.0005603847867407426, + 0.00107526646437577, + -0.0005157303797856112, + 0.001233473284580852, + 0.001068540123740629, + 0.0002299589067252797, + 0.00037042942494562814, + -0.0021274096652023028, + 0.00029504949264294903, + 0.001252515017511428, + 0.0005249322868945624, + -0.00012563844419058483, + -6.420361661204412e-06, + 0.00041156014461400756, + -0.0014266332937460523, + 0.0004571885931243682, + 0.00031600550870203813, + -0.001091737595238863, + -0.0011610954582798449, + -4.7789316591188e-05, + 3.264031254290533e-05, + -0.0015472204792091977, + -0.00026798783170150597, + -0.0001511284790345306, + 0.0005873694436950379, + -0.0015221440555692608, + -0.0004640380991045212, + 0.0002018951776379652, + -0.0009584782911787327, + -0.0004270648759612692, + 0.0002248408079108852, + 0.002403878979641503, + -0.001077835119795829, + 0.00033466322549883875, + -0.0006772999796775448, + -0.0016451813119650201, + 0.0010688589602941942, + -5.8705727848928603e-05, + 0.00027651453156628475, + -0.0005284925060082134, + 0.0011275113997189837, + -8.820382970785442e-07, + 0.00015318953168689376, + -0.0005910299176724624, + -0.00026906875117145655, + -9.550465395255359e-05, + -0.0007535153066987837, + -0.0011768408612542584, + 0.0001405050242092658, + -0.0004668281591479319, + 0.0002613579655953443, + 0.00016336373586865158, + -0.002201284636553629, + -0.001369919996967805, + 6.923343245565902e-05, + -0.001057787920061804, + 0.002658746642786994, + -0.00034985397579641834, + 0.0018569354480476611, + -0.0002995593876160338, + 0.0018883819152842576, + 0.0007286239706533124, + -0.00033155631107808717, + 0.0016669146126955538, + 0.0007411471092744235, + 0.0008199931751627794, + -0.0005167650227370157, + 0.0003228992238740413, + -0.0001689186911352006, + -0.0010428917224091906, + 0.0004317727476374062, + 4.8997884449605736e-06, + -0.0002609245237032913, + 0.0008475299731133343, + 0.00034696059444721525, + -0.0008165663259754706, + -0.0010307684311865511, + 0.0006632018182826605, + -0.0012064784351589876, + -0.0003380962117681935, + -0.0008167856736801236, + -0.0012550419551473656, + -0.00036349894946342755, + -0.0002709479433666242, + 4.570564870644525e-05, + 0.001119173644135882, + -0.00019706955373418532, + 0.0008942151813988654, + 0.0006092889364625752, + -0.0018518604359785268, + -0.0007801363215062589, + -0.0012109217780648463, + -0.0006675869972260108, + 0.00026937402512163086, + 0.0009707895788387451, + -0.0014152393635116064, + -0.0020646402425024543, + 0.0008224055849669529, + 5.809409901989981e-05, + -0.0009722533329097157, + -9.051000496810481e-05, + -0.0014140268750280982, + 0.0008445609080483868, + -0.0001404591864991749, + 0.0016932112053133774, + -0.0006736347957710686, + 0.0016444281737490285, + -0.0006318485406677922, + -0.00014320403129918118, + -0.001464832258889826, + -0.0008724890015361249, + -0.0011792488170112607, + -0.00046810335594260773, + -0.0013929460614931948, + -0.0020002362863349612, + -0.00035337126146897066, + 0.0014485578029318547, + -0.0010872606941081395, + 0.00022557844018416753, + -0.0003898358990301285, + 0.0009505175998131124, + -0.00044665394265089433, + 0.0006465619997771321, + -0.00018648989703152786, + -0.0014601770135696226, + -0.001832502726619807, + 0.00027153725886987977, + -0.00010118404023778225, + 0.0003346950141289312, + 0.00032289877074206784, + -0.0009570337259351765, + -0.0013172003099148647, + -0.0018116962882870913, + -9.815791676509704e-05, + 0.00158944665474074, + 0.00030043456821168477, + 0.0005225421542748357, + -0.00022201695182268107, + -5.8988648605874845e-05, + 5.05070902545005e-05, + 0.001973750389563704, + -7.907633933446141e-05, + 0.00020167516790068767, + -0.00038319431601139067, + -0.0005177885028191602, + 0.000707680427895486, + -0.001738574855986939, + -0.0007824473592890375, + 0.0010024383173027165, + -0.002385790602041235, + 0.000675163629704404, + -0.0018712456037061473, + 0.002508883528826264, + 0.0005911686341312642, + 0.0008455487761158251, + -0.0014438251927986312, + 0.00020860355088301566, + -0.0011447860280231086, + -0.0015333279718919449, + 0.0011915658858355105, + 0.0020782393083390127, + 0.00011198051084271635, + 0.0011373859028379779, + -0.001350125376407686, + -0.0012346986874262305, + 0.0010812287084859629, + -0.0007984440382699052, + 0.0005796686717404558, + -0.00015542099709495708, + -0.0006894703207805119, + -0.0009686192870839592, + 0.000322710798846816, + 0.0018272411983339153, + -0.0004954017712864569, + 0.000354697283456541, + -0.0013251738096943314, + 0.0010222304936301715, + -0.00030425588626439783, + 0.0013080447345485196, + 0.00014619797143304006, + -0.0004456149905167759, + 0.0011901745108431063, + 0.00012405812804903383, + 0.0015244088215721349, + 0.0005129690978546193, + 0.0008341323077625305, + -0.001348453112524988, + -0.00031805142730989555, + 0.0010549127667823304, + 0.0014958883848090621, + 0.0015330681100243024, + -0.00011207005630427747, + -0.001566530101635654, + -0.0018032818725209627, + 0.0009332880130416344, + -0.0009359593052546122, + -0.00044542641225763934, + -0.00039961875835402614, + -0.00025876738330229217, + -0.0006203186986090553, + 0.0003133987574947002, + -0.0006001650734256458, + -0.00023292998559040122, + 0.0007517074742714523, + -0.0016908965194552135, + 0.00019306259453549942, + -0.0008845730737573351, + -0.00013299503411031753, + -0.00031198125756343886, + -0.0014249573467262613, + -0.0006266068752766201, + -0.0016198418858858561, + 0.0003840127419975501, + 0.001057940865859032, + 5.1478213882934486e-05, + -0.0011220839439484544, + -0.0004435585070002041, + -0.0006918242001480291, + -1.7004773725305866e-05, + 0.00030821930144848107, + -0.0002254453480261391, + -0.0008317810736491877, + 0.0011032962638832194, + -0.00023160908083700283, + 0.0008561260131982691, + -0.0015236301375053036, + 0.0010905949251312802, + -0.001183017949769774, + -0.0009320376875815263, + 0.0014156143417732565, + 0.0005893830720484922, + 6.138838155621459e-05, + -0.0019346820562860237, + 0.0007014826671400803, + 0.0003142415324478897, + -0.001049833537697902, + 0.0012568474167563928, + 0.001666839021458411, + -5.55645460463762e-05, + 0.000511088521037937, + 0.0010741120051289764, + -0.00047751246949819486, + 0.0014336666034677182, + 5.923597755860424e-05, + -0.0004405371058588181, + 0.0017631698255019545, + 0.0014891991246543657, + 0.000671191768862472, + -0.0013768087236412192, + 0.00044194027544696904, + 0.0011087062404376948, + -0.0006617205399438123, + -0.0005311266477076879, + -1.4996067300701094e-05, + -0.0009059976141463964, + -0.001697208978300556, + 0.0002571255365437881, + -0.0007563077048614842, + 0.0005251901410253771, + 0.00015843597181181435, + -0.00041975911011112385, + -0.0010119247280206346, + -0.0009788134151498939, + 0.0003002542369643881, + -0.0006004217760403492, + -0.001322194068736953, + -0.0016357716433220298, + -0.0020944561216662194, + 0.0011782934671131615, + -0.0008386192699885863, + 0.0006735374852592861, + 0.0005884669937860998, + 3.7973194342348296e-05, + 7.117212881652593e-07, + 0.00016565560073791299, + 0.0013172166782534564, + 0.0004828849490980924, + 0.0006443152277012953, + -0.0011757814373769347, + -0.001172420673157601, + 0.0019944738118227623, + -0.0008966838027759502, + -0.00048462329303075943, + 0.0012424374347900365, + -0.0012552472624906303, + -0.0019435381009096685, + 0.00015618842931389504, + -0.001766275266508783, + 0.0006462315546167404, + 0.0011244167157799987, + -0.00010972614068870336, + 0.002689896303314174, + -0.0006111322157397351, + -0.0007667858107365548, + -0.0016712692168179182, + 5.412004690470506e-05, + 0.00046254325272930276, + -0.0015618210516999875, + 0.0013799549736921415, + 0.0013499693966829535, + 0.00010776512621007392, + -0.0014609955710615284, + 0.0003524331909124885, + -0.0009240720388424352, + -0.0016434613799638548, + 0.00019584342132907662, + -4.38857144838545e-06, + 0.0006766348669831565, + 0.0003563004450227359, + -0.00047206845200139234, + -0.0004696357761601226, + -0.0018393950089603953, + 0.00123827055173226, + -0.0002031529053108017, + -0.0010798129105231526, + -0.00039317131138190333, + 0.0011350454094995529, + -0.001302587845271164, + 6.852703710809603e-06, + 0.00028599188693672695, + 0.000496444256361345, + -0.0007069822185089001, + 0.0016743712804906088, + -0.0008684759481687485, + -0.0008487427740093168, + 0.0005226580902180344, + 4.391170854505993e-06, + -0.0019579663980877045, + -0.0005479062742152434, + -0.0014804589948013325, + 0.000492854054238702, + -0.001107963592576512, + 0.0004672043009378741, + -0.0002536590748337664, + 0.0004300698933806486, + -0.0012037545401560293, + -0.0005216421321872415, + 0.0007107390938022441, + 0.0011650987779034843, + -0.0005898107988298821, + -1.546014333512314e-05, + 0.000491099596698784, + -9.044799892249706e-05, + 0.0002155201432376369, + -0.0002912952251665199, + -0.0006751539904622633, + 0.0007496193535651406, + 0.00043642139320566333, + -0.0005830702489728463, + -0.0007402481769946396, + -0.0006037169602275561, + 0.0011124784548930393, + 0.00022890261732756652, + 0.00029024741899935126, + -0.0003985717216598178, + 0.0002471379513616251, + -0.0008049910072398091, + -0.0009991471057449394, + -0.0014977096870326999, + 0.0014043464039021375, + 0.0009845219031630757, + -0.0014267340230817121, + -0.00045968884808276946, + -5.045417489848357e-05, + -0.0007532787735143627, + 0.0002659439901625059, + 0.0007403594089500878, + -0.0007367601563325071, + -0.000500166617324631, + 0.0007530986724185119, + 0.0009624794291061736, + -0.0002547156451752992, + -0.00011422097232914301, + -0.0010916335859901046, + -0.0012802106239173999, + 0.001165612137315427, + -6.302690335409387e-05, + 0.00010988916278396325, + 0.0007541613187882303, + -0.0007225612179109085, + 0.000459511858165469, + -0.0005313219785328127, + 0.00021631909751409302, + -0.0007955847276842439, + -0.000555320124196391, + 0.0002581645629910318, + 0.00016013951836795832, + -0.0007778341559656935, + -0.0009402763161423552, + -0.0011685462744526467, + -0.000616943810623162, + 0.001163096746993999, + -0.0015057824883664553, + 0.0010838046633638606, + -0.0010761022627330558, + 0.00017932261577161443, + 0.0004510332056420507, + 0.00024191529015483017, + 0.0007314747240102491, + 0.0004890489282863995, + -0.0011889162174414298, + -0.002965319366728545, + -0.00031687492080809403, + -0.0005202039428569608, + -0.0008427315548480283, + -0.0004953038189363389, + 0.0008097799897668093, + -0.0013182942716431414, + 0.0008678921204563456, + -0.0011946207923934859, + 0.0004251998549652721, + 0.0007222151399180059, + -0.0007574790987053129, + -0.0013278899768822872, + 3.532147375241495e-05, + -0.0008189876046946244, + -0.0005471567319399351, + 0.0009404475330195687, + -0.0010698242290125945, + -0.0007713429431731621, + -0.001924075197783002, + 0.0011107473863522681, + 0.001628015888067412, + 0.0013219094781650369, + -0.0010415631520210268, + 0.00103874397275156, + 0.0012896609446942642, + -0.00013710953793715153, + 0.0011434486665764625, + -0.0009638637046775056, + -0.0016486853654534713, + 0.001847073710908596, + -3.5381648849352e-05, + -0.0005076868059552453, + -0.0008864426394391305, + -0.0005502917849373413, + -0.0019855824430706583, + 0.0013504809352575663, + -0.0017884792094615303, + -0.00010435687249831936, + -0.00032579282122069246, + -0.000552264809557111, + -0.0009713777214944953, + 0.0015012588623681297, + 0.0024085241520523984, + -0.0010755773656379941, + 5.240585023874854e-05, + -0.0016746593612316492, + -0.001998330919051664, + 0.00039333922783239936, + 0.00035543508230013814, + 0.00016786928594646102, + 8.365318813166225e-05, + 0.00017574861522526628, + -0.002128025646423551, + -0.0011139824425133286, + 0.001346710338149051, + -0.0011867300745318694, + 6.901131251748193e-05, + -0.0013560633863496374, + 0.0007152631887604502, + -8.19257708468745e-05, + -7.764265927996423e-06, + -0.0006242763970061982, + -0.0014123228361725816, + 0.0021352543108219347, + 0.0019018584823056778, + -0.0012257536257845333, + -0.0002787380014172321, + 0.0013784302490347073, + 0.0007933316535222377, + 0.0005536851349475697, + 0.0012667545658074835, + -0.0008542980214454717, + 0.0014164550270460868, + -8.188825359748137e-05, + 0.0011057937317037218, + -0.0004579972833305266, + 0.0019759396169832457, + 0.00023671444173836836, + -0.0006479110742040659, + -0.0006952906546346137, + -0.001242958459277651, + -0.0006196164620035157, + 0.000748917044095482, + -0.0031402749215855104, + 0.002328968315448374, + 0.0005585528429711661, + -0.0007680522557402593, + -0.001118001057733254, + 0.00027289131522390247, + -0.00011677828613901981, + 0.0006402823312548736, + -2.6314947756920998e-05, + -0.00031814112622779306, + 0.001026274418624827, + -0.0005360442989257233, + 0.0007743501736481109, + -0.0006400233727228167, + 0.001389845692397863, + 0.0016977714120310309, + -0.0011522537079529337, + 0.0007427360597758131, + -0.00019431262121114208, + -0.002307925400791318, + -9.691835984777359e-05, + 0.00038945554492841785, + -0.0011252677639962889, + 0.0006382854531880133, + -0.00022986049947354566, + -0.0017681468695916074, + 0.0008584653455235649, + -0.00027977674309138955, + -0.00013494582176214998, + 0.0017717883008355785, + 0.0004243804161196588, + -0.001758410296256517, + -5.3531292522205595e-05, + -0.0011455348154217548, + -0.0015195333116349188, + -0.0008112428345943193, + 0.0006458445908162844, + -0.0001297110278383502, + -0.00025862597376599293, + 0.0016470619274790627, + -8.799641812265091e-05, + 0.0010255015336604124, + -0.0007819608301250447, + -0.00046706433198085914, + -0.0006210114805287431, + -0.0001171121680949095, + -0.0019996192681773317, + -0.0009903875110455333, + -0.0006291255228541546, + -0.0011702326383388436, + 0.0005133691535410086, + 0.0011293983358915507, + -0.00022538337732269566, + -0.002690322788307109, + -0.00046118753310527694, + 0.0011067970384685349, + 0.0006909616188318791, + -8.586330315653197e-05, + 0.0005319489100457861, + 0.0008795096728694587, + 0.0008983058442672547, + -0.0009010508059654201, + -0.0009324818457325723, + -0.000251426437422946, + 0.0005540798231922045, + 0.001394302239686504, + -0.0004327494835712973, + 8.359533246959716e-05, + -0.000486994030819492, + -0.0007721033313263157, + 0.0010892392609620374, + -1.8470284889007138e-05, + -6.832867752449534e-05, + 0.0003078030390902178, + 0.00044943451259510305, + 0.00140143811426749, + 0.00030222863290916955, + -0.000997041552465023, + -4.860330256771821e-05, + -0.00038629806006626455, + -0.0009820533350101766, + -0.0019795056298089362, + 0.002039766299613987, + 0.0016971535992292672, + 0.0006144577850902023, + -0.0015287127347879835, + -0.00022435771980391846, + 0.0013726842261446548, + 0.001205868116234113, + 0.0003882971779328859, + -0.0003630642731265101, + -0.00018005760589443062, + -0.0005171882436995135, + 0.0002623427186700689, + 0.0006547922304915759, + 0.0010279574274200869, + -0.0007474879250976028, + -0.0011887268323717219, + 0.0002235814303979105, + -0.0002989861623901509, + 0.0001687795035112568, + -3.7750192468377386e-05, + -0.0004748175011862668, + -0.0009202889145062557, + -0.000576366234471941, + -0.00044854254666175267, + 0.0008145100068508442, + -0.00043862640010279477, + 0.000489371155589858, + 0.000632495624228503, + -0.0009568580938756118, + -0.001655362177090999, + 0.000368884614327432, + 0.001031914734284947, + -0.0008786961181983635, + 0.0007901092932825599, + 0.0013008038187761392, + -0.0006476034497598987, + 0.0010662309781318347, + -0.00048618875553453324, + 0.0006761675252363892, + 0.0014899672210504714, + 0.0009321772417872197, + -0.001115265370118991, + -0.0007370221328420697, + 0.0001939951520200955, + 0.0007228322527472319, + -0.0004740801872685909, + 0.0016669414245763469, + 0.000532545147209847, + -0.000866486420978933, + -0.0015220370379534877, + -0.000915875288708371, + -0.00017230063986769834, + 0.00033455375418458655, + 1.2761504127108089e-05, + -0.0011050110854828928, + -0.0006529608899428967, + -0.000977261063889561, + -0.0004085850165719011, + 0.0006219732246737598, + -0.0010300453244521711, + -0.00014346721977731005, + 0.0025458158220622337, + -0.00015818915418817453, + -0.0001512925993058257, + -0.0006710647389127765, + -1.4226634584470552e-05, + 0.0007627241057327817, + -1.7539687447882808e-07, + -0.000407848536001868, + 0.00033322543010855704, + -0.0003975417324531681, + -0.0008214387093193976, + -0.00026438726092081744, + -0.0008954512206935648, + -0.0005560222612452921, + 0.0005641009739520319, + -0.00013973183254269205, + 0.00024118603026133, + -0.0005242886993868193, + 0.00024927661502503875, + -0.0012350384831943987, + -0.00012031105955556779, + -0.0008105179111736715, + -0.0005438602420451438, + 0.0003585624187137639, + -1.9691734576183008e-05, + -0.0003401623079695742, + 0.0004356913448987959, + 0.00025310744888208767, + -1.8154820022515673e-05, + -0.0012357696690306035, + -0.0024398542529178373, + 0.0007458427386755208, + 0.0029723656102093794, + 0.00101439404079384, + -0.0003045898323480946, + -0.0008817913680220056, + -0.000536473657472427, + 0.0012848589221460091, + -0.000631958462277217, + -0.0015712609162657765, + -0.0005581566819470527, + 0.000909524620891231, + -0.00010571232719469245, + -0.000577906310315079, + -0.0005050886304045097, + 0.0007739515161671086, + 0.0007019731498433864, + -0.0012257595718126247, + 0.001040102145570094, + -7.132864470471066e-05, + -0.002758638332768898, + -6.2504945612647e-05, + -0.0002886221599925432, + 4.879132228719396e-05, + -0.0005410216892228016, + 5.664755187332765e-05, + -0.0021177263298933027, + -0.000521446732006969, + -0.0015433877994169476, + 0.0006652640079534236, + 0.0004721524019371097, + 2.446417750308e-05, + -0.0005704795152158806, + -0.0002644258103095601, + 0.0003348501453778205, + -0.0003537296248326911, + -0.0002473408330888895, + -0.0011463062403944287, + -0.0007639471557978623, + -0.0020397066823447567, + -0.0006667208534576593, + -6.538346035961254e-05, + 0.0010349463792220937, + -0.0005913513642882803, + -0.00050064845788181, + 0.00034680525828895397, + 0.0003713233169020859, + -0.0007287311952701942, + 0.0008264618157772361, + 0.0012579130792901854, + -0.0016768842933148303, + 0.00010215243782378773, + -0.00025933023512819887, + 0.0004476739865515094, + -3.2452358798958874e-05, + 0.0017364984832123494, + -0.0003088355844351299, + 0.0007165548851401546, + 0.0006794030372685565, + -0.00026830016449912164, + 0.00035520767232145086, + 0.0004505205038463487, + 0.0013878662851799426, + -0.0009651157074446609, + 0.00027927603629623974, + -0.0005729824208083198, + 0.0020865089850299326, + 0.0013954334153267328, + -0.000747235338967755, + -0.00019147083839164377, + -0.0011481556998546453, + 0.00011203530489975672, + 0.000507098995987054, + 0.0014074689877881432, + 0.000495921734864832, + 0.0003940880244665157, + -0.00045438665924027954, + -0.00141110570850031, + -0.0011548982231149349, + 0.0011936163281967747, + -4.438079535081007e-05, + 0.00024818846772494416, + -0.001204365483479111, + -0.00027291496179941964, + -0.0022840302044554333, + -0.0008207277214153418, + -0.0002588929487683512, + 0.00080013465119487, + -1.3846329697904505e-05, + 0.00020832423473967523, + 0.0014061138364044174, + 0.00015924115071744733, + 0.002884935230978148, + 0.00022627948393795424, + 0.0006374881990595433, + -0.0008387825144091459, + -7.311121192961104e-05, + -6.242347707448968e-05, + 0.00187282658576988, + -0.0010807191225005125, + -0.0010443086196210755, + 0.00034365972348360637, + 0.0007201857046996036, + -0.0006638601479759013, + 0.0005162198508624283, + -0.0021000372978128346, + 0.0018539067616853418, + -0.002418173358118292, + -0.0006210816432453734, + -0.0012484086617352626, + -0.0013720971957333417, + -0.001057004628036244, + 0.001327150731455201, + -0.0005304783336887162, + -0.00030294247320435623, + -0.00020775413648740687, + -0.00123532933376389, + 0.0006181749131966237, + 1.2286215596652995e-05, + -0.0008758611348415729, + -0.0009523019512271607, + -0.0008272361663481894, + -0.00032239126201635566, + 0.00031593713971486063, + -0.0007263497184945018, + -0.00047883713212109246, + -0.0007077196404737339, + 0.00042964453905918105, + 0.0031008313239819806, + 0.0018291344018613166, + 0.0009715658672340735, + 0.00044050371032138956, + -3.8120568019577426e-05, + 9.467382583228402e-05, + -0.0011715405050488003, + -0.0002642225073554886, + -0.0002831413601170628, + 0.0006656107974820398, + 2.4192526951252247e-05, + 0.0010860825939263046, + 0.0009483557603021193, + 0.0007245005182939123, + -0.0009869217076845143, + 0.0010054061375570252, + 0.00043122159710921333, + 0.00047258518018910515, + -0.0001144953843722841, + 0.0006976968864413928, + -0.0013180263281403583, + -0.0017904384630684183, + 0.00044778143662402216, + -0.0005438390940910225, + 0.00017739596046723998, + -0.0011931757509599456, + -0.0016015154378919137, + -0.0009319551520763031, + -0.001118244600562477, + -0.0010283494823786397, + -9.045040216802558e-05, + -0.0009566864611492281, + 0.0004645781372134462, + 0.0011961128039126266, + 0.0010004435137459004, + 0.0012509637965393396, + 0.0014548078527630505, + 0.000562111846858328, + 0.0011666056721754171, + -0.0010309369400074264, + -0.0003096840944356611, + -3.4813601704399434e-06, + 0.0019052472787834016, + -0.0002469811362834423, + -0.000710838190454529, + 0.001700521580540212, + 0.0008450706687185288, + -0.0013512785028660262, + 3.490364291156124e-05, + 0.0006848933787302693, + 0.0006019313208543064, + -0.0006442433770438197, + 0.0003420217430089088, + -0.00022939885264627166, + 0.0005858189575156193, + 0.001684057622844703, + 0.0004132382412010695, + -1.5663711606303616e-05, + -0.0009937458268765372, + 0.0003878496838505497, + 0.0007302171344655446, + -0.0017223767735327156, + 2.35860590376005e-05, + -0.0009672493551744433, + -0.0009728699196573109, + -0.0012461806956669832, + 0.00027631030570416564, + 0.0007535391281555478, + 0.0003064647323669487, + -2.371461674781566e-05, + -0.0008179021287712594, + 0.0015052117093500063, + 0.00035307185074147287, + 0.0019068211411674067, + 0.0018304851244056119, + 0.0004390829683127113, + 0.001246509079045788, + -0.00011179198670677987, + -0.0006746889166787881, + -0.0013747116916544798, + -0.0001699529428937045, + 0.0005526892350798526, + -0.00034164957478359894, + -0.0004160807500944538, + -0.0002511811055325934, + 7.4438320058676935e-06, + 0.000829250898337689, + 0.0008120322085116644, + -0.0005222226503834796, + 3.0563374265920256e-05, + -0.0013505192760733882, + -0.000555428259352187, + -0.0004906533223385204, + 0.0005778874298634359, + -0.0014970317558225593, + 0.00041906239979695937, + -0.00012904471852950202, + -0.00045165116843887923, + 0.00025275058524172465, + -0.000343884340262746, + 0.0006737763581805524, + 0.0004422038178064417, + 0.001008002621978233, + -0.0003267082383243184, + -0.0012032263328795479, + -0.001271063882510187, + 0.002430761546054565, + -0.0018830802825295803, + 0.0011142514575106328, + -0.0007574048074896078, + -0.00221250755772597, + -0.0013942629529973547, + -0.0021914600876275, + -0.0006573091561946921, + -0.0004008952375032805, + 0.0010450832353813707, + -0.0006146360345595191, + -0.0008217956598149591, + 0.00020763432560873973, + -0.002099365132781551, + -0.0007864878809446949, + 0.00024623799223369046, + 0.0014945673401221239, + -0.0010582210703269249, + -0.00057334760547793, + -0.00023723912688727186, + -0.0006029282540685396, + -0.00013325664115564014, + 0.0011849030762590771, + 0.0007053193767115062, + 0.0008511437503467388, + -0.0001556050527987345, + 0.0011807022751065019, + -0.000711785478305072, + 0.0002079385426378204, + 0.0006447065141516566, + 0.001728717506922432, + -3.459140567273596e-06, + -0.0012886644303519133, + 0.0006204140007165756, + 0.0011097806524510586, + -0.0008394106385837031, + -0.0010896771406601901, + 0.0002055042380243907, + -0.0005710275973330049, + 0.0005374544144143466, + 0.00023675512432205849, + 0.0019131333248153491, + 0.00016764968323277615, + 0.0014180598641240715, + 0.0013555636793632286, + -0.0005658080741394293, + -6.680359083227791e-05, + -0.0006006714659604499, + 0.0007977781586338788, + -0.0008916351395330824, + -8.480493192849597e-05, + -0.0004057182018990518, + 0.0007794366152221268, + 0.0011404025144028792, + -0.0001318210520623253, + 0.001358737930298102, + 1.7504903525627167e-05, + -0.00028313270356661465, + -0.000823715337935335, + -0.000980475533201444, + 0.0009722839333808718, + -0.0006368447357311601, + 0.00037776869883101894, + 0.0004932772008330653, + 0.00027640988985264895, + -0.0012657047463981485, + 0.001460021760934621, + -0.00079956039598664, + 0.0019518164359710864, + -0.0020480882871616026, + -0.00033867558820782466, + 0.0016593361793408872, + -0.00017032072424391173, + 0.0011099035948262848, + -0.00040478884766906634, + -0.00042925069130216606, + -0.0004544425002505395, + 0.0013145294845159578, + 0.0004323044462771728, + -0.00029044783146173924, + -0.00031975802503067074, + 0.0008568639387178843, + -0.0009396116788249674, + -0.0019517932513357914, + 0.0013338828263989976, + -0.00023042796714734426, + 0.00046499224656381375, + -0.0008181541839364678, + 0.0012392364601870975, + -9.250858551511815e-05, + -0.001354262921125492, + 0.0014315238312597775, + 0.0011686593960728057, + 2.92800741107468e-06, + -9.882016747069505e-05, + 0.0012682246245151482, + 0.0013874658171789977, + -0.0003053403822609683, + 0.0009423707737846188, + 0.00018668255752798778, + -0.0013726886299704139, + 0.00038373247896907953, + 0.0008984315462396426, + 0.0003177606925937664, + -0.0006344770182986663, + -0.0018955736178803858, + 0.0009261032286954861, + 0.0010838256417539903, + 0.0007936787358744954, + 0.00104140945097737, + -2.8608086928746788e-05, + 4.8551350259810986e-06, + -0.00024396898038086978, + -0.0017820204968956156, + 0.0015272065609673608, + 0.0006213820869624447, + 0.0007807446802621588, + -0.0015750601504556806, + -0.0013532779738164547, + -0.00132217881760164, + -0.001167085291857752, + -0.0003332727167782955, + -0.000819656427118478, + -0.0011985923180974118, + 0.0009193504105977689, + 1.657482204134852e-05, + -0.001030185335354717, + -0.0003603099346665549, + -0.0004277217041900134, + 0.00046857910970713053, + 0.000948302832277769, + 0.0006889060335972895, + 0.00038545638340238845, + 0.0006000758458547098, + 0.00029780817635434616, + 0.0015511382596874244, + -0.0012242847452293628, + 0.00041339455009258767, + -0.0016907408322776347, + -0.00020229622856363924, + -0.0005562920958496149, + -0.00024178111753815713, + -0.00026909895243535986, + -0.000153229828093041, + -0.0019971539638854803, + -2.8111990717636553e-06, + -0.00041129388026663884, + -0.0007798247838042773, + -0.000964381070741032, + -0.001708771508768478, + 0.000209956523523064, + 0.0003684710928003263, + 0.000778444978932481, + -0.0007174744293298933, + -0.00021238117121722175, + 0.0001803376294919729, + -0.00020582555333386842, + -0.0009012011269616304, + -0.000504098023273374, + 0.00031501237047599145, + -7.689198181080844e-05, + -3.7671562256939526e-05, + -0.00026764163274383226, + 0.0006005133567684967, + 0.0004853241095290779, + -0.0012029957704080164, + -0.0014325485145697844, + 0.002993949472235, + -0.0003620032805957703, + -0.0006297362646579567, + -0.0009118735023631236, + -6.852359655089681e-05, + -0.0007468341861482618, + 0.0008210491632307305, + -0.0002647986742171915, + -0.0006177438498283164, + -0.0016049293050332555, + 0.0009190512212611904, + 0.0008581676697718174, + 0.0017292515423096451, + 0.0017149808737023035, + 0.0006360929223596432, + 0.0007161801502839405, + 0.0007626784523145233, + -0.001095467083851264, + 0.00012435786648691172, + -0.00011555614306440314, + -0.0006166284049651818, + 0.0011827806805636402, + 0.0022164559578443815, + -0.0005915989914627318, + 0.000829007106436571, + -0.0010957797201085696, + -0.0006051559417198262, + 0.00045095740208995946, + 3.531384611455947e-05, + -9.094145938269104e-05, + 0.0014000534236708266, + 0.0007521188384626358, + 0.0007153253792659444, + -0.0002648118480983928, + 6.003881622610324e-05, + -0.0005529104277095967, + 0.0005874355369324088, + -0.0009511266695491797, + -0.00035777284342688575, + -0.0015854167289693682, + 0.00018698956663336494, + -0.0007328418298526353, + 0.0001316048829696246, + 0.000757184987446719, + -0.000805889374782225, + -0.002138861826812011, + 0.0007473215081800059, + -0.00022213994331634148, + -0.001881820645853862, + -0.00027789272736654293, + -0.0017801221342786118, + -0.0005720447911934632, + -0.00167769196408522, + 0.0003690656134487389, + 0.00017418473571693269, + 0.00041663377767827445, + 0.0001869017337028043, + -0.002241155152121093, + -0.00011844274426203282, + 0.0010222855913072516, + 0.0004641563026056224, + -0.0015096243547540055, + -0.003447759915576986, + -0.0006620961305787232, + 0.00012451943923283933, + -0.0011706718145618313, + -0.002063040607077128, + 0.0015990614266221696, + 0.00016601817815171458, + 0.0017210202108421725, + 4.165654665882768e-06, + -0.0009766469042327582, + -0.0003661357585704758, + 0.0002744758136995018, + 0.0007937883987289522, + 0.0001488567203626288, + 0.0013133640886428015, + -0.00034962518397016267, + -2.9988108540480638e-05, + 0.00017983350917084352, + -0.0006530537475441375, + 0.0005246066947443484, + 0.0017828861018231894, + 0.0006306377641917642, + 0.0004410945389217925, + -0.0003175077485103441, + 0.0006306685632973827, + -0.0008191679294877645, + 0.0009229936922969941, + 0.0005807470385558711, + -0.0013674878817095352, + -1.3241727281946652e-05, + -0.00015762195738423175, + -0.00015177243655661334, + -0.00064058185089437, + -0.004547389312335607, + 0.0007483399988261184, + 0.0005702969147107015, + 0.0009773588867529627, + 0.0003423435128766432, + -0.0002625653155174575, + -0.00031482826164163437, + 0.00018526295955415087, + 4.239177129258917e-05, + 0.00011185787215649282, + -6.885744602211436e-05, + 0.0002811009342160298, + -0.000804364591477443, + 0.0018630706627101748, + -0.00028024854737444046, + -0.0009483964962285911, + -0.0002828223957102227, + 0.0003290542536610035, + 0.0001974099710675222, + 0.0005063060939168833, + -2.6629373095468588e-05, + -4.258160118863519e-05, + -0.00037247415090136093, + 0.000666586717517507, + 0.0006489790477709541, + 0.0002518701052772884, + 0.0005870773418430393, + -0.00015285316184242121, + -0.0014685496390975218, + 0.0008082221103455287, + -5.215585301251372e-05, + 0.0002276062942326051, + 0.0007653660309594947, + -0.0003989208678090116, + -0.001429519348042239, + 0.0004610127079624122, + 0.001734449572528896, + 0.000304871671794506, + 0.0006869272074524876, + 0.0005772569209955939, + -0.0003944398243737907, + 0.00028464599079496233, + -0.0010547335089142913, + -0.0023715965829538116, + -0.0001672198280360264, + 1.2438302759605925e-05, + -0.00016848873451173155, + -0.001100879771389765, + -0.00037933077084595444, + 0.0016048184466224166, + 0.00062519031971132, + 0.0006887066806539144, + 0.0014222309135546883, + 0.001367158064927426, + 2.2464771107335388e-06, + -0.001156238229405535, + 0.0004664611736097933, + 0.0015112294240859434, + -9.674611327244016e-05, + 6.201769588524527e-05, + 0.00022150424455040336, + 0.0003942278250397631, + -0.0008422575742815428, + 0.0005089614644644557, + -7.924981931127684e-05, + -0.0006159637200847403, + -0.0027172534566329877, + -3.3843155513904916e-05, + 0.0006460772871898708, + -0.0003321922196960838, + -0.000579955326101305, + 0.0003598417910546424, + -4.141032074335977e-05, + 0.0007971651520136431, + -0.000406211122847416, + -0.0005858982782360223, + -0.00045030513649173536, + -0.000430953659531443, + -0.002054196270823806, + -0.0015815285271087577, + 0.00032900694013256415, + 0.003252524700226193, + 0.0011329673382795673, + 0.00039364852270839206, + -0.0009277289852963542, + -0.0006828062522035569, + 0.0003690436359098137, + 3.9836740669592434e-05, + 0.0006220310741713028, + 0.001733126766472183, + 0.0017008345638592041, + -0.0009834894412350797, + 0.00085521417015129, + 0.0001754892847305609, + 0.0008873397952794168, + -0.0010656788634051814, + -0.000717185276741641, + -6.519952605162523e-05, + 0.00013701233517089207, + -0.0004687934379587716, + 0.001452526405902049, + 0.0004823373203801662, + 0.0001456236392246434, + -4.111853528292024e-05, + -0.0009841656763098774, + 0.0010335062113527003, + -0.0002236724476115369, + 0.00020040403930375608, + -0.0017338516692131651, + -0.00032447662631117683, + -0.0006301821164014605, + -0.0002186845396009933, + -0.000666736286609068, + 5.849895999841235e-05, + 0.0014955893918558458, + 0.0009779585571321294, + 0.0017323312784542249, + 0.0006026469149096864, + 0.0006926850688333936, + 0.0009021144114599754, + 0.0011434475429341932, + -0.00010271254954466379, + 0.0015438993313507776, + -0.0006227680106420487, + -0.0008931380869621708, + 0.00012162653385611421, + -0.0013277150379399768, + -0.00033027373165638637, + -0.0014017175548458373, + -0.0016133176547854094, + -0.0002589788939610518, + -0.0013900136704975052, + -0.0004668571276084065, + 0.0006449589718860964, + -0.002570339635791466, + 0.00010798327481404098, + 0.0008080484054208714, + 0.00017373826262635526, + -0.000906993478312204, + -0.00027358730220838635, + -0.0013705670544977013, + 0.00013279966847072825, + 0.0008882534125636689, + -0.0011219798696030705, + -0.0003365369821848104, + -0.001430323947185702, + -0.000236776771244099, + 0.00018219975898133014, + -0.0010543627729059954, + -0.0006003153461869849, + -0.0013972510351201518, + -0.00015295349263200748, + 0.0010268535254597166, + 0.0004229237871274475, + -0.0001231706446278738, + 0.00028696324119712634, + 8.074617669703743e-05, + 0.00027510250790876344, + 0.00023347526053902115, + 0.0011141515375826623, + -6.13114214716939e-05, + 0.0004416537823150252, + 0.0003279250627716459, + -0.001593889065862533, + 0.0004152035435089171, + -0.0022019557015416566, + -0.00035739787185864373, + 0.0007910067633969737, + -0.00039120093805608287, + -0.00016700429193521488, + 0.0013558242942374888, + -0.001043592859883629, + -0.0007715039469392828, + -0.001281244524365697, + -0.0017096151487134893, + -0.001989919635802587, + 0.0005934217065845377, + 0.0001514219543865642, + 0.0006050138796212148, + -0.002563805250812938, + -0.0004994638900801665, + 0.00010685764599246785, + -0.000859358968158293, + -0.00011295588227022859, + 0.0012798599336092638, + -0.000619900740170971, + 0.0008693447382966856, + -0.0010118200181964915, + -0.00020113863703193516, + 0.00036309004572915315, + 0.00042733378885638387, + 0.0006769410162165005, + 0.0007510296476993637, + 0.0001071251641358932, + 0.0012213731416612032, + 0.0005818578460489729, + -8.53196079457028e-05, + 2.7779285542452333e-05, + 0.0010644177034033091, + 0.0009223366953778967, + 0.0011684023886592365, + 7.126389089478694e-05, + 0.0006248172328380034, + -0.0009776543716751552, + -0.00017514322134316325, + -0.00044566784546037013, + -0.0003016868587015706, + 0.0001496265788837886, + -0.0021272756998965536, + -0.0011498467527416532, + -0.0005479691797041497, + 0.0004640064489772062, + -0.000775772333316248, + -0.0017336751300126834, + 0.0010703382420402246, + -0.001613709215918669, + 0.001364559262666928, + -0.00018448345213026656, + -0.0011365513296986494, + -0.0004453747421833298, + -0.0015405207074921255, + -0.0006492551297850991, + 0.0012282168291311035, + 0.00249779521827404, + 0.00035644517447722655, + -0.0005873805898332673, + 0.0015715519651690745, + -0.001827179018176316, + -0.0021803448184230076, + 0.0017527578661582343, + 0.0014886389477435944, + 0.0018068688440196876, + 0.0009944774026927196, + 0.0006519427848099123, + 0.0001130913169944083, + 0.0007420962959602082, + -0.001192009477345209, + -0.00014038874499314706, + 0.0007961022123805551, + 0.0015804954775178902, + -0.0013597682613170387, + 0.00012146775744695528, + 0.0011955486238995664, + -0.00023688814360054905, + 0.0015411716602728412, + -0.0013504531475712024, + -0.0016576864876076149, + 0.00032804475116345337, + 9.609720152156147e-05, + -0.0014791323485253492, + 0.001130928963676504, + 0.0009008933201425466, + -0.001069943990533748, + 0.00035109135430534536, + 0.0001617409369071414, + 0.0009929283750696734, + -0.0019933216485601988, + 0.0011544310277613464, + -8.216207000587378e-05, + 0.00040407399536012496, + -0.0005613945225975695, + 0.0004084654850045068, + 0.0005274568304290489, + 0.0004048471137085154, + -0.0016231135383607755, + -0.0009240666234638355, + 0.001528498765175012, + -0.00014261181485929387, + 0.0007158690694575806, + 0.0002222657898971746, + -0.0005560101045635813, + -0.0003300251149412593, + 0.0005641877760495651, + 0.00011283859964093985, + -6.750553146935031e-05, + 0.0007386728231566968, + -0.0005078415591956666, + 8.66042827128872e-05, + -0.0001960055618761679, + -0.000581764560596353, + 4.618566628245116e-05, + -0.0002856222025395172, + -0.0003695396642949839, + 0.0005864310168160723, + 0.00037029795360115226, + 0.00042826787548423835, + -6.696540430557126e-05, + -0.0010113299382498758, + -2.6437134525464727e-05, + 0.000475570107639907, + -0.00015417812601764162, + 6.955047329896958e-05, + -0.00024019941443156306, + 0.002155839115552876, + -0.00047865206050905603, + 0.00025506567820752, + -0.0006886489541706588, + 0.0001049616756503368, + -0.0009057669259777711, + -0.001745639037248259, + -0.0007583494784633564, + -0.0014854832364669416, + 0.00042741060615999246, + 0.0011210656862417781, + 0.0010771680571965542, + -0.0005940601898440773, + 0.00023282470626169043, + -0.0004939378446396081, + -0.00012206277611932301, + -0.00028822221269659187, + 0.0007450446891551752, + 0.0005455189361281334, + 0.001686559950288782, + -0.0005415553475114997, + 0.00013359418969895152, + -0.0014805558210369918, + -3.607852321302212e-05, + 0.0003517592314170008, + 0.0005450132805093073, + 1.6123367224758727e-05, + 0.00167721826039969, + 5.1838547219759565e-05, + 0.00032243969520022334, + -0.0015422787095107152, + -0.0008429555972484439, + 0.00031045718349575487, + 0.00043597371473418404, + -0.0008395039695238422, + 0.000846524103037253, + 0.00015568755979893727, + 0.0016138130961674067, + 0.00046490611570457137, + 0.0008466788719332901, + -0.0001546043319834549, + 0.0012170951215115392, + -0.002203396340548084, + 0.0005676951823225534, + -6.973416218935e-05, + -0.0001279190157580554, + 0.0002298584339599869, + -0.0006407569623242853, + -0.00021392615975133328, + -0.001452790718613639, + 0.0006866708482776632, + 0.00020071099789308717, + 0.00011545871238762509, + 0.0005407236614474292, + 0.0010621199107637893, + 0.0005372005812556246, + 0.0008867661943879163, + 0.000606133293793353, + 0.0005067894064325072, + 6.427250815460962e-05, + 1.686076649652803e-05, + -0.0003891341116978222, + 0.0001306411013463997, + -0.00026270334688524604, + 0.0008189155399351536, + 0.00028224294638544157, + -0.001980808995634932, + -0.00028248762447578623, + 0.0029837361308594225, + 0.0007606144087202671, + -0.0001905036279393007, + 0.0005037394601424129, + -0.00026318983622332544, + -0.0008174732544828832, + -0.0015172712126609866, + 0.0012357238634332626, + -0.001059711398871884, + 0.0011125834809440208, + 0.0017886868911540289, + -0.000406072695871923, + 0.0019010136596766646, + -0.0005359693801552957, + 0.0006643590620696347, + 0.000738804488196115, + -0.00013763282495980145, + -0.0010207810416890722, + 0.0018681911183042498, + 0.0008236210280173357, + -0.0007924841475395541, + 0.0006827458685385655, + -6.766705778297985e-05, + -0.00024049959455518254, + -0.002099108448635207, + 0.0006538766842983337, + 0.0009205568733248322, + -0.0008426851305738472, + 0.001329205882519235, + -0.0012003098486521513, + -0.000247430543716899, + 0.0007764234365333308, + 0.0012313004152442494, + -0.00011275303616507373, + 0.0004916123698238203, + 0.00017304233589874078, + 0.0014563260521059816, + 0.00020613278948085646, + -0.00024736637640601893, + -0.001282626540373717, + 0.000575568561767707, + -0.0005476221348777163, + 0.00045996151200531656, + -0.0014020958360612798, + 0.0006022476204569445, + 0.0004844432333161336, + -0.0021511003248460944, + 0.0017234132614931997, + 0.0004114070897078273, + -0.002137122566736849, + -0.0001997268312265673, + -0.0013671461817303134, + -0.001487682713358485, + 0.0010777912789505214, + -0.00023850310382043973, + -0.00042031331974865877, + 0.00030354165781029967, + 0.0016833847077107234, + 0.0003570563723658346, + -0.0017591840546856334, + 0.000343504174356244, + -0.0006003728511955347, + -0.00011565534368863006, + 0.0011346378483738265, + 0.00030088765368152466, + -0.0018698823666565706, + 0.0006519593674524669, + -0.0016291023334860481, + 0.0008090533336898635, + 0.0004519011149652621, + 0.00042561510614540926, + -0.0003425744328363681, + -0.0017437822666203288, + 0.000655707045200793, + -7.98693332223755e-05, + 0.0002740200417408572, + 0.00024031904843052637, + 0.0012125903535460643, + 0.000509882787731211, + -0.00019815534727524048, + -0.0001874458317888694, + -3.8693776245946e-05, + 0.0007939903982271179, + -1.1166617544868962e-05, + 0.0010748473032866734, + 0.00033614034323485635, + 0.0003219714583667302, + 0.0008782834466916261, + 0.00014408012245444276, + -0.0020816718276324394, + 0.0009017646153014543, + -0.00034155348642914005, + -0.0001979996699972824, + 0.00026478491989228263, + 0.00016389838902736636, + -2.3636965356704543e-05, + 0.0006562774514530538, + -0.0002478456481626174, + 0.0009518499481216962, + -0.0004904260292678337, + -0.000816578800785645, + 0.0003545288221264898, + -0.0006514491359825207, + -0.0024486104622912226, + 0.0005599528491975854, + -0.0011072122342328328, + 0.00014837309811687897, + -0.002612606251736258, + -0.0005197079846079872, + -0.0013050687875456957, + -0.001751544812966111, + 0.00017469664247108703, + 0.000631738094026399, + 0.0006283761248935814, + -0.00016914387698662803, + 0.0020091342374582745, + -0.00046582031755441883, + 0.0005349499896444884, + -0.0005958905269353753, + -0.003049906741742745, + 0.0001334577410457911, + -0.0013776278642091677, + -0.0007525448825075829, + 0.0010637697143727818, + -0.0007311650868396014, + 0.001533744157617771, + -0.0021307628959736586, + -0.00024184144310329648, + 0.00046028159943768275, + 0.0016714313746068658, + -0.0004600033053147848, + 0.0024618577087883206, + 0.0005746897227176416, + 0.0012321156579321781, + 0.0008022042267077748, + -0.00136916135318692, + -0.0011590507931122488, + -0.00014425345732665425, + 3.811326918273558e-05, + 0.0010042135400547955, + 0.0003950783985002049, + -0.0007038476189176773, + 0.0005172405093414469, + -0.0022216452141212923, + -0.0013795945669780253, + -0.0003168946711747425, + 0.00041218411258851686, + -0.0010332735112023091, + -0.00035286470791737396, + -0.0012130047434862456, + -0.0002861845544779194, + 0.0011333803732407409, + -0.0009126956195560145, + 0.001449556252227297, + -0.0012609217747168958, + 0.0014488875747643106, + -0.0006013758182214256, + 0.000534855117806083, + -0.0009934747511912976, + 0.0008127041880463721, + -0.0002512758983296455, + 0.0006052555084016666, + -0.001299095689675388, + -0.0004243573610106627, + 0.00044200526339648006, + -0.0004477170747311761, + 0.0023022530525180743, + 0.002230631258046834, + 0.0012111484481848887, + -0.0007800183263891477, + -0.0008935087837518506, + -0.001551166176289365, + -0.000531294977189869, + -0.0010983712194166143, + 0.00037017729851600815, + -0.0011301158236181313, + -0.0003785102798099967, + -0.0003504252819181578, + 0.0004040212431861572, + -7.936413196008992e-05, + -0.0010094699319665376, + 0.0002591652942173808, + -0.0014350439532396142, + -0.0013811415451450042, + -0.00012766156708075738, + -0.0010126363019048732, + -0.0010987252329668967, + 0.00031106469674046643, + -0.0006711729898131733, + 0.000379591375000637, + 7.781577156908354e-05, + -0.0018183459872836776, + 0.0003841310558223759, + -0.0006040178373487814, + -0.0011043909844607224, + -0.0021909902441164136, + -0.00047501790340125, + 0.0006675579823143807, + 0.0019021043528006816, + 3.714033228643715e-05, + 0.0014479954380779445, + -0.00012710726733887679, + -0.0015715960298662692, + 0.00032137292773294515, + 0.000531462207406494, + -0.00031848246876399385, + -0.0002768749898248883, + 0.0005165899754396742, + -0.00034438606218021705, + -0.0006064995492828774, + -0.0008909382560297477, + 0.00026117705129498494, + 0.0007273303455388274, + 0.00022401310240307185, + 0.0006394408299721596, + -0.0015935904891197232, + 0.0009110305263326627, + -0.0005700784828760384, + -0.0002715900086608603, + -0.0005887172576238642, + -0.0011232300797108432, + 0.00020636861601958684, + -0.0009616010008257574, + -0.0012669958053551657, + -0.0005885582043357294, + 0.00020897182243324267, + -0.000959397115475028, + 0.00010856466701062642, + 0.00028398995255557696, + -0.00041303439041869114, + 0.0005411052873780142, + -0.0002765820044968376, + 0.0006704440613260332, + 8.781339184784648e-05, + 0.0005662543011338334, + -0.00031646200949022235, + -0.00024343369845137482, + 0.0010878610421228637, + -0.0004588775863622431, + -0.00011985719883461266, + 0.0008442654397340134, + -0.0012315705359153583, + -0.0010311115913504475, + -0.0007069052316196097, + 2.8181203533652585e-05, + -0.00043571494967194294, + 0.0024560073619745233, + -0.0010783261348484665, + 0.002278037214508487, + -0.0009707431735311975, + 0.0006146042958471991, + 0.0002913545089495576, + -0.0005637156128290234, + 0.001103539125851487, + -0.0013232382860023735, + -0.00107247175960313, + -0.000326188912131149, + 0.0003988818470742366, + 0.0009492046869981389, + -0.0002672947769531955, + -0.0004434213966256988, + -0.0008090265799608669, + -0.0017172047027175935, + 0.0005943575267253121, + -0.0010944240165823337, + 0.0008950168515578611, + -0.0018083026578711932, + 0.0007735266881726227, + 0.00045661347095717216, + -0.00031787266236213234, + 0.00037684661855323415, + 7.8211370199443e-05, + 0.0014426651491485016, + 0.0009302344521396411, + -0.0006831411918080222, + -0.0010592310402334206, + 0.0010625566420073018, + 0.00022438221642632594, + -0.002545182893545276, + -0.0010298512312053947, + 0.0007309410435894754, + 0.0020586323043840188, + 0.0014407376641822993, + -0.0009250274475067165, + 0.0017235811590777933, + -0.000980372000310425, + 0.0006149283374008959, + -0.0011730140904961826, + -0.000691382236281441, + -0.0009043836287041543, + -0.0006189638959515517, + -0.0018165777805601992, + -0.0006746725462277243, + 0.0005497729761078417, + -0.0007541038312810712, + -0.000539171554323943, + -0.0008261239939366896, + 0.0007037953950250393, + -0.0015012993776178005, + -0.001148218820618905, + -0.00015380580826987195, + -0.00014825677376547935, + 4.234503408834257e-05, + -0.001033971231316211, + -0.0005993886200943695, + 0.0006043462715699102, + 0.0013671610172109648, + -0.0010622262383214573, + 0.00039376776592710624, + 0.0007169442751615891, + -0.00134623861057806, + 0.0006170969771756024, + -0.0016994899801992252, + -0.000551988149443333, + -0.0004504963532371277, + -0.0017453677260756365, + -1.049747499597115e-06, + 0.00010388558741759114, + 0.0009273977589611254, + -0.0013938367341308085, + 0.0006153732621742716, + 0.0006892820684216541, + 0.0005203805117182435, + 0.0010046298614107899, + 7.934612278123255e-05, + 0.0007500172776441808, + -0.0007673636281878511, + 0.0016497175049025006, + 0.0005044231037262375, + -0.0006738386694832616, + -0.0010590183143952916, + 0.0011117508887432753, + 0.0007287784762530187, + 0.0007814715340947253, + -0.0003614136596108838, + 0.0010188945481752634, + -0.0001285338743120592, + -0.0015864968524403, + 0.0005471134959944974, + 0.00034556200741898984, + 0.00013371407754651744, + 0.0007108917338260236, + -0.0010783543757390877, + -0.001819093978649623, + 0.0010936756727600873, + -0.0011136479257820272, + 8.345712079500453e-05, + -0.00040865865204954923, + -0.0015390495936283908, + -0.0005559765337531427, + 0.0010855557955597236, + 0.0009711229331284171, + -0.0006542785420845351, + -0.0003316037812930179, + -0.00041241101860674674, + -0.0014223153437623991, + -0.0005328118950163661, + 0.00023996073824376676, + 0.0009448414636823834, + -0.00011166050143105062, + -0.0003052556288133003, + -0.0023554733683203103, + 0.0014312547680234637, + 0.0006000350565746711, + -3.714085943671918e-05, + -0.0011525487336037708, + 0.0006537875139123856, + -0.0003828410781647132, + 0.00030181527583802526, + 0.0004669966117612081, + 0.0007329643941865413, + 9.232419392843498e-05, + 0.0002921762426024057, + 0.0011236527287117294, + -7.504088357427533e-06, + 0.002184067200951576, + -0.0010912405656912654, + -0.0008801687008501962, + 0.00014500703434205427, + 0.0008952627573685951, + -0.00019349390362763099, + -0.0016415708802948905, + 0.0002787535161206335, + 4.8893543842009527e-05, + 0.0004337946379415611, + -0.0005093494281348633, + -0.00032740111832116445, + 0.00024318101632667187, + -0.00020522484641150485, + 0.0016706269360230112, + 0.00028524331100041966, + 0.000762239534173977, + 0.0004977990062561232, + 0.0006699845072259462, + 0.0007304235162479322, + -0.0006735113759303084, + -0.00021840317007459562, + 0.0008883172587778841, + -0.0015856199409986882, + -0.002313223074195752, + -0.0014317800451241203, + -0.0005957049986428703, + 0.0009290270167330444, + -0.0005671517247736687, + -0.0005070730726779524, + 0.0003501207286971073, + 0.00027570082148266394, + -0.001917081821673035, + -0.0015175440083162403, + 0.0010236138374225844, + 0.0002157179638319508, + 0.0007975587742064623, + 0.0004736134780106358, + -0.00010063345919316556, + -0.0008684771374499277, + 0.0009332960924079928, + 1.9705343517436354e-05, + 0.00025856590797286973, + 0.0009376588607121297, + -9.731547134326642e-05, + 0.000273094204911284, + -0.00200708973035301, + 0.00038798614642155283, + -0.0007212004696336145, + 0.0006584934356844576, + 0.0006157839087523275, + 0.00027924079134863174, + -0.0013090960681031612, + -0.0007539681523178859, + 0.001346808947943065, + -5.807300278962847e-05, + -0.001677938160364311, + 0.0012061346959519254, + -0.0013524472630156443, + -0.00013598285758982005, + -0.001816486502685255, + 0.0009688060336675568, + 0.001152108141096894, + 0.00031858405222606387, + 0.00019286365112279776, + 0.0004995921134417835, + 0.000266645942669966, + -0.0010728618198342337, + 0.0011236010522233818, + 0.0011840254266434738, + -0.000903209440091496, + 0.0007691465115700385, + 0.0006120190918389613, + -4.83737616484442e-05, + 0.0009537955186751425, + -0.0006314559857536174, + -0.0003862553527579608, + 0.0011060465378146666, + -0.0014592666309134411, + 0.0004097247169181922, + -0.002146546048780558, + -0.002024885959424289, + 8.00970818962127e-05, + -0.0006282530962399216, + 0.00018639352655002995, + 0.0003493978034192079, + 0.00101272559057608, + -0.0007603956846124231, + -0.0015988664442959238, + 0.0018641995007130882, + -8.227787940312691e-05, + 0.0012373453604435543, + 0.00010368505709737686, + 0.002160305630963913, + -0.0016378342693188792, + 0.00029554223818679937, + 0.0012575603936735519, + 0.0007935452949030279, + 0.0005595736564499334, + 0.0001408234206890574, + -0.001049758082408689, + 0.0007086111728409778, + 0.001086095069066735, + -1.912313813340791e-05, + 4.846729844376743e-05, + 0.002226658219879339, + -0.001226939979571586, + -0.000591517678879841, + -0.000898470016045559, + -0.001424125898789372, + -2.0235861632433783e-05, + -0.0003615780252837717, + -0.0005992772808241735, + 0.0004949700312295773, + -0.0011608779406833926, + 0.00010193779697329936, + 0.00012528739595648588, + -0.00011796153549797688, + 0.001449545990659129, + 0.001303393050657159, + 0.0008647739752813645, + 0.0001940923506920736, + -7.047647107844528e-05, + -0.00016949725406650227, + 0.0016632065472568986, + -0.0019691936381747792, + 0.0006221848477745029, + -6.430528758893468e-05, + -0.0010989414927665162, + 0.0001382726984540817, + -0.0002463098980138465, + -3.269177328653423e-05, + 0.0008517995745124425, + 0.0005799453986748508, + -0.0014760539754785447, + 0.00020957247833652172, + 0.0004155634886693338, + 0.0009522947305731926, + 0.0011811297609686455, + -0.00017203909368591433, + 0.0010563054787376966, + -0.0015856986802793508, + -0.00024029211513475454, + -0.0008717826882013514, + -0.0007113213441722768, + 0.0005374444766668242, + -0.0011559206150949393, + -0.0011091809298442354, + -0.0005130394261504754, + -0.0012509338867295503, + -4.354159063450881e-05, + -0.0004059141536198144, + -0.0003188107789645607, + 0.0005741775545525925, + -0.001586122135119042, + 0.001016426630938794, + -0.0001715125292731326, + -0.0005162067721361833, + 0.0013326833961365076, + -0.0007370631348900469, + -0.0012693648393348525, + 0.0013457161941120232, + -0.0006546746891893021, + -0.0017823126012295259, + 0.0006614073870575257, + -0.0005954213809106909, + 0.0011692451291164202, + 0.0008857647534221197, + -0.0011256943908085734, + 0.00253684466588295, + -0.0005127455443453754, + -0.0012390799271174977, + 0.0007286513798194811, + -0.00045726064667404604, + -0.0006404012347334183, + 0.0007867712041132871, + -0.0015682890408613098, + 0.0003342702318860321, + 0.000959934371591248, + 0.0012214126186122654, + -0.0005333712515278673, + 0.00015670423285520037, + -0.0006852177303000547, + 0.00045833666354656497, + 0.0013490534003401593, + 0.0004497115704185581, + 0.0012794529670471513, + -0.0006831004839149335, + 0.0010763029670125394, + -0.002003090529785092, + -0.001972565284389185, + 0.0022109763329381253, + -0.0007277539164857785, + 0.0006493605170702112, + 9.751820621608334e-05, + -0.00176760550214289, + -4.805537993639445e-05, + 0.0016253893611017616, + 0.001542800997507203, + -0.001061936344294227, + -0.000538229573678584, + 0.0008134996211707989, + -0.0012831164612752853, + -0.0012314583388263, + 0.00020052682270937548, + -0.0006367425351834367, + 0.00046331767140706827, + 0.0010953614960336911, + 0.00043856825815655946, + 0.00016983234964070088, + -0.0023590510048182986, + 0.0012680255418721946, + -0.0010519638133685524, + -0.0007310751425278649, + -0.0008500095976224457, + -0.0003279255759259657, + -0.0001520106551935983, + 0.00026922541968878015, + 0.0018417732289140237, + -0.000590114318468109, + -0.0006895355214027695, + -0.0015171529979924733, + 0.0012177512538282744, + -0.0002048507438641906, + -0.000837561136534395, + -0.00047593715589718276, + -0.0003769837888447702, + -4.15790674743496e-05, + -2.746798711340584e-05, + -0.00023050908960812238, + 0.001152225762938084, + 0.001330644906041611, + 0.00045499938623426813, + -0.0006645729391854426, + -2.4510028036832822e-05, + -0.0023133269592188416, + 0.0010513694925151998, + 0.001960194258493659, + -0.0003006996968604196, + -0.0001340629335289844, + 0.00027504241689183174, + -0.0005757223001211398, + -0.0010000179413233504, + -0.000269359636456583, + -0.0025566378654682314, + 0.00020311567548393064, + -0.0009520802301893675, + 0.00091346180722026, + -0.002728638945147101, + 0.001659030991528509, + 0.0003608253426696592, + -2.3183258135948e-05, + 4.898302728711422e-05, + -0.000592903178898857, + 7.594510234918741e-05, + -0.0014848037759142793, + 0.0008309020916853096, + -0.0005503200821727074, + -0.0007256092617832602, + -0.001042540312738802, + 0.0005408527162992019, + 8.135897605951341e-05, + -0.0007676695023392224, + 0.00021619844035195834, + 0.001081418360277642, + -0.0005056879094873555, + -0.0005065230230159975, + -0.0009783060536165385, + -0.00034606329714175074, + 0.00034453514133459483, + 0.000631827781670494, + 0.001155031672142027, + -0.0009305839547579488, + 0.00025335727885596014, + 4.0377267404075536e-05, + 0.0015139310700016742, + 0.0013610202489048606, + 0.0002613614219628752, + 0.00026347808398768686, + -0.0007520808021056345, + -0.0018719160228465273, + 0.00046081757781927455, + -4.382308252876994e-05, + 0.001935315758549927, + -0.0008610719405288899, + 0.0006334843941009305, + 0.0009112900174027468, + 0.000237305918081366, + 0.0014113386793673556, + 0.0006337871217297471, + 9.723642689626736e-05, + 0.00022505578817568205, + 0.0008587626288939044, + -0.00034336068021921805, + -0.0010211449802340845, + 0.0011794181189482462, + -0.000307885149088745, + -0.000427279509721794, + -0.0006830262861744778, + 0.001120353588665601, + 0.0010910608013641881, + -0.0007805752404631611, + 0.0015760333291658139, + 0.0002264151158317352, + -0.000840850935262704, + -0.0011586798105622206, + -0.0009993477589473174, + 0.00022454397644143667, + -0.00011032891835502057, + 0.0003493378757067005, + 0.0009158184013718476, + 0.00012348682067707647, + -6.136262118902349e-05, + 0.0020450937002055216, + 0.0014242657219001413, + -0.00032602733727631555, + -0.00048366466643622806, + -8.936874733622924e-05, + -0.0003711309164710934, + 4.2677835847925106e-05, + 0.0017781930178112212, + -0.0034747120883937897, + -0.0011996686242932999, + 0.0005935750322782286, + -0.0005288559406421054, + -0.00042880115496412153, + 0.00025614467953322215, + -0.0002806688896058584, + -0.0003834592398251119, + -0.000573381427001699, + -0.000585894267371827, + 0.0010909465445918586, + -0.0002347970161630998, + 0.0012304946277531573, + 0.000831490702584569, + -9.200877304476446e-05, + -0.0008031735436470373, + 0.0008372604285887107, + -0.0008994323243275481, + 0.00029232477687027205, + -0.0001191578599549998, + -0.0017335790580350699, + -0.0008803270602253543, + -0.0003940526242064919, + -0.0003841725086290891, + -0.0008652716422450647, + -5.525756931832605e-05, + -0.0016928201790060487, + 0.0007045187476586616, + 0.0023690533015426466, + 0.0007395667171679087, + -1.4028885061536289e-05, + -0.00045731441166091305, + -0.0006078558178312632, + -0.0011337967101892306, + 0.0006586581620196115, + -0.0026136439700403863, + -0.0007980106615010204, + -0.0010560901596518828, + -0.0005600789199825149, + 0.0004813140075402474, + -0.0004426557247136856, + 0.00013816615938043233, + 0.0018331044070773958, + 0.0005115779652243729, + -0.0006118967307363083, + 0.0011584944864240004, + 0.0005803018918793878, + -0.0009176950388792741, + 0.0002667071480934744, + 0.0004496285136612584, + 0.000550969130300518, + 0.00121844365585021, + -1.2021129515054279e-05, + 0.0006747737565560572, + -0.0001958290991639267, + -0.0017101153907033246, + -0.0005227943638375226, + -0.0010190162712033289, + 0.0009465910740975674, + -8.781286640119083e-05, + -0.00018395944079190892, + 0.0002570142698789913, + 0.0007221610675127081, + -0.0007952101808450782, + 0.0006521220798537616, + 0.0002048741105700094, + -0.00038660268129238687, + 0.001064207943115222, + -0.0004567624394002929, + 0.0001608431983596309, + 0.00036352607223537206, + -8.717833707364772e-05, + -3.628426535675712e-05, + -3.871645405159979e-05, + -0.0007537429781059173, + 1.9545904955226562e-05, + 0.0004336413888737104, + -0.0009952177624909869, + -0.0015304183906546293, + -0.0002948477058899425, + -0.0011707401689588968, + 0.0009235949763391369, + 0.0023722113077105146, + 0.0010901938636137627, + -7.293333512362258e-05, + -0.0012516708628009915, + -0.00016802826646823845, + -0.0014658806945767142, + -0.0006026308329307465, + 0.0013515909115678192, + 0.00016927629190887264, + -0.0007175933274891, + -0.0018160235651589064, + -0.000477223776212163, + -0.001168230093925634, + -0.0018046277493926574, + -0.0008366864141333572, + 0.0002488971775600016, + 0.0008942722556017799, + 0.0011919165043188756, + 0.0003808440124426021, + -0.0007027960195572641, + 0.000446751429096308, + -0.0008462790725847131, + -0.0002048350317558525, + 0.00046527544100597823, + -0.00011112363019412319, + 0.0005981544037460236, + -0.0022116819360997768, + 0.0003120712851092953, + 0.0009349051093858172, + 0.000787716060132309, + 0.00047682493670638535, + 0.00015683416440033567, + 0.0018010061111312099, + -0.0006255681329364607, + -0.001452459082626599, + 0.0013411140399686738, + -0.0004944023534573247, + -0.0016787424808352499, + 0.0006693420585489734, + -0.0020548464344609524, + 2.0113373669331346e-05, + 5.035237672263807e-05, + 0.0018748319267677188, + -0.00041578161099474633, + 0.00017970597055292628, + 7.497641716911025e-05, + 0.001355134670709201, + -0.0011629447050409377, + -0.0016272191717866737, + 0.001064911273818664, + 0.0024808641800939356, + -0.0006377132004545661, + 0.0009415031571961602, + -0.0005851259317556476, + 0.0008506908125812424, + -0.0009391537529063928, + 0.0007033876546996382, + 0.0001201930915019986, + 0.0004137087540110736, + 0.0010797977134361255, + -0.00021719449595254025, + -0.0009209983317059063, + 0.0018510587581476114, + 0.00012056652348687623, + 6.117342611799615e-05, + -0.0009800425093194134, + -0.0003976307993212384, + 0.0015194285910953315, + -3.8079863289407353e-06, + 0.0009387966672142542, + 0.0010813476407368287, + 0.0025246013337191895, + 0.0014565825113664883, + 0.0010079934752215618, + 5.316424318462576e-05, + 0.0008142974893370764, + 0.0011008431001307015, + 0.000527333212176511, + -0.0011351520143851404, + 0.0006778720727099893, + -0.0004129622491510881, + -0.00022856277221356325, + -0.0009474103353080657, + 0.0015584714869922313, + 0.0009312861457003048, + 0.0010257803963131446, + 0.0007263776818453958, + 0.0021965589704787784, + -0.0007951659318485058, + -0.0005626109117468297, + 8.656550518206519e-05, + 8.808684384710504e-05, + 1.873914587278547e-05, + 0.00039311355980824376, + 0.0010511620183069172, + -7.184093372496557e-05, + 0.0005435214226402547, + 2.7702027638887503e-06, + 0.000385113083597162, + -0.0019618279172473993, + 0.0013449378487121904, + 0.0004148774488527753, + 0.00015268048555235492, + 0.0006152455169203681, + -0.0015860046563486655, + -0.0006631681292440099, + -0.0005542066096283973, + -0.00043548569050369263, + 0.00018603117465500603, + 0.0011133858363708516, + 0.0018504907300397465, + -0.001308254522302284, + -0.00010829534847176733, + -0.003148715741833091, + 0.0006393074430734248, + -0.0007050764949982873, + 7.704859941095072e-05, + 0.0005864255660535929, + -0.00012947658430551497, + -0.0009977005903520479, + 0.001131455928617302, + 0.0007885353603397802, + -0.0010857094785844685, + -0.0026627997500901788, + -0.0005696878178732568, + 0.00035764345433374087, + 0.0015915599846960701, + 0.000510296530658758, + -0.0005253322302650972, + 0.0016453034129850137, + -0.00024111268506233046, + -0.0010499946972519461, + -0.0015812320286931563, + -0.0007093576726065546, + 0.0019370207806690615, + 0.0009521526982231388, + 0.00020510787241595813, + 0.0017145086347510677, + 0.0008069769660475786, + -0.0011407501667922214, + -0.0019681746496315387, + -0.00034539801915373525, + -0.0009438939206420977, + -0.0019434644023164245, + 0.0008031483334006379, + -0.0028790405433495696, + 0.0012613415310001122, + 0.001266447027048037, + 0.0005697981119376612, + -0.0006494966460634803, + -0.002056914368752438, + 0.000396924960906446, + 0.00043176586021018273, + -0.001662513825325913, + -0.00010146677696938807, + 0.002504518159892135, + -0.0003499622405371701, + 0.0007018890320583, + -0.0002436525316026921, + 0.0001995069111966175, + 0.0013062942934832162, + 0.0018102343053165181, + -0.0004457999143377569, + 0.000856952537029856, + 0.00016425088094414484, + -0.00044746914866868894, + 0.000535307750246082, + -0.00019813223545635207, + 0.00043309097467334265, + 0.0010342430527347617, + -0.0015207962830890503, + -0.0009053420724796635, + -0.000445755662322697, + 0.0015143736434699892, + 0.0011398038921323294, + -0.0005887572167342294, + -0.0016969864018818784, + -0.0005446921052573943, + 0.0006641323321720732, + -0.0016684664336135812, + -0.0016122922267998462, + -0.0009796781618467364, + 0.001423914153254285, + -0.000979142672487141, + -0.0011798542925476223, + -0.000870418154345828, + 0.000565094818129064, + 0.0016439783729612811, + 0.001477070302064432, + -0.0017714111823539836, + 0.0022207585482021445, + -0.0008369239596589356, + -6.940408104021275e-05, + -0.0009670321681660359, + -0.00039198827770972345, + 0.00040945351405882236, + -0.0009557908045750542, + 0.0002878539824634515, + 0.0002958059444640573, + 0.000427853609603842, + -0.0024531032806652405, + -0.0007022807538653332, + -0.0004987264931276447, + 0.0006531570043808601, + -0.0004143109179089981, + 0.0010331476074285325, + -0.0007738628494422653, + -0.0004525061873718077, + -1.2718339713694508e-05, + -8.143042831187727e-06, + 0.001417856349893535, + 0.0011326888207441133, + -0.0006738169785012334, + 0.0011681427063209202, + -0.0010998619722301015, + 0.0018074702061461779, + 0.0010233175562598792, + 0.00025591505905983255, + 0.0011968881569105825, + 0.0006651067134681976, + -0.00016368428856948134, + -0.00011430356206461288, + -0.0015811799988782386, + 0.0009576008759831418, + -0.0006231971819834693, + -0.0007024197000961728, + 0.0004108680741800166, + -0.0022846983015683132, + 5.219317534714939e-05, + 2.0429424210293836e-05, + 0.0008193755661082934, + 3.7788832331195555e-05, + -0.0016945955452083543, + -0.001368732265401415, + 0.00038500738137013765, + 0.0005194927590466605, + 0.0014637953318117614, + 4.400085226084796e-05, + -0.002562286547713907, + 0.00045492643746324524, + -0.0005056773921079062, + -0.00036716280540630787, + -0.0005224721263475805, + -0.00026405461748438036, + 0.00014951932162374028, + -0.00020146961797244635, + 0.0005810291887633867, + -0.0010706492577344474, + 0.0006728778335119537, + -0.00045595954671923827, + 0.00027944707520463077, + 0.0012522691151935408, + 0.00026320164767012447, + 0.0006377380169217105, + 0.000706053354162877, + 0.0007036335946868277, + -0.001307417806168762, + -0.0004847470715053864, + 0.0004879906475357601, + 0.0013283761569412651, + -0.0005742523350588405, + 0.0006476715486039147, + -0.00020849914575834773, + -0.00043631900206304045, + -0.0009344228736736172, + 3.090392641340244e-05, + -0.0006926139104166157, + 0.00045867805974276706, + 0.00014566040642167204, + -0.0013931403345094834, + 0.0004897381552463009, + -0.0013788551780939313, + -0.00026217171557524403, + -0.00206064722483447, + -0.0007393836354033851, + 0.00020693286660792833, + -8.237803254578228e-05, + -0.00037740546924257094, + 0.001518207697705862, + 5.1857321526684036e-05, + -0.0015072740147092647, + 0.000912197662752378, + 1.04578739271307e-05, + 0.0005349718119259968, + -0.0015313017306024445, + -0.0009391852916367808, + -0.000946423866890516, + 0.0014044707306822715, + 0.0022547131616968193, + -0.00040190050726401666, + -0.0005178116211136751, + 0.00014643818177080507, + 0.0005324962749822092, + -0.0009483523194745817, + 0.0011319283042091409, + -0.0007088697124007873, + 0.0004237120012812373, + -0.002120352050012705, + -0.0017573151018700918, + 0.0006373604832732441, + 0.0008038102194255575, + 0.00041505141658853233, + -0.0003082989967952577, + 0.002043643616499862, + -0.0005958602338952231, + 0.0011326487363801342, + 0.001176658764366878, + 0.001944366847690375, + -0.00033980238195080995, + 0.0010461681295483754, + 0.0008960182899407579, + -0.0014151809336162757, + -0.00018218837534083953, + -0.0012768805423684962, + -0.0005419092382441152, + -0.0018160528585695406, + -0.0003794228539844454, + -0.001978508893646519, + 0.0002162861029242056, + -0.0005992180667127309, + 0.002092766583851222, + 0.0014058782550482954, + 0.0013590272785361079, + -0.0003008957097401343, + -0.0009104738231326298, + 0.0009350013550426243, + -0.000498217765764299, + 0.0010314362695533945, + -0.00182799264275149, + 0.0023936144924541305, + -0.0006802042985585916, + 0.000986308226938966, + 0.000757543952401869, + -0.0004990174431243036, + 0.0002687072970253132, + 0.0003890382523897193, + 0.0002180448166142243, + -0.00025300617054540805, + -0.0010770347390862457, + -0.00047981122003388295, + 0.00047623827651523674, + -0.0008702470776044562, + 0.00022573751833526032, + -0.00014435631749972266, + -0.0013437399322630474, + -0.0012238343391969657, + -7.705865413321738e-05, + -0.001077951323212567, + -0.00021934433541999457, + -0.0010738363538276559, + -0.0006170406944526975, + 0.0005142116706846737, + -0.0004576688904974189, + -0.0024567288460872827, + 0.0005785924505311291, + 0.0006655044309015612, + 8.029862285924643e-05, + 0.00021438167094982319, + 0.0011245065035656646, + -0.002104721220001483, + 0.000931344965206009, + 0.0005407239573857951, + 0.0007746853264228772, + -0.0002906158782019886, + -0.001529360030749495, + 0.0013505125976677186, + -0.0014200662454715164, + -0.0005742854034276499, + -0.0020851554522560685, + -0.00046949059143281817, + 0.001328219330942615, + -0.0004059638097555444, + 0.00046321306539227685, + -0.0012089471458029703, + 0.0018798856296212106, + -0.0011409596502319711, + 6.598384472985929e-05, + 0.0005521483786390596, + -0.0008925984980607547, + 0.0008896686428535112, + -7.282039170141886e-05, + -0.0007439115193411754, + -0.0009854492323214325, + 0.00014934449487720474, + -0.0006979952337548319, + -0.0020350450730527406, + 0.0003433130961956592, + 0.00037998720032044787, + -0.0014204596262268065, + 0.0019709342586892663, + -0.0008539398110215291, + -0.0003051044708239151, + 0.0023128447324265917, + 3.294194237397625e-05, + -0.0006398552023639415, + -0.0005931447754430407, + -3.245317169969697e-05, + 0.0003131301764199937, + -0.0005488102804105514, + -6.430110081785306e-05, + 0.0010107050608978354, + 0.000413859292146772, + 0.0006939941506169904, + 0.0006589004876627043, + 0.0009488405592471941, + 0.0006046762705763088, + 0.0010858299383652609, + 0.00043195261200508684, + -0.0008529437071970864, + -9.307659920374268e-05, + -0.0002006051383274784, + 0.000270391066633176, + -0.0001420673384500405, + -0.0007178100250478709, + 0.000511215469488565, + 0.0003053130680110649, + 0.0007331345333250406, + -0.0003317552449698658, + 0.0006152015372365845, + 0.00013983621495365707, + 0.0006011325766696337, + 0.0008485774086009443, + -0.00014376529246248827, + 0.0001435807440816865, + -0.0011587815906702803, + 0.001196981978042114, + -0.0018350196469249565, + 0.0016275647254860805, + -0.0007688406528838722, + -0.0006995611353721991, + -0.0008311928407513901, + 0.0005724996473952343, + -0.000646019943492922, + -0.00025087693390499574, + 0.0016903606826214669, + 0.0006887591006467885 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgb(254, 136, 177)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 1", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.0006887591006467885, + -0.0011058161763843205, + 2.6109221126024897e-05, + -0.0001390300052987482, + 8.546119607340698e-05, + 0.00011136458998685435, + 0.00023991595986993947, + 0.001828039458787699, + 0.00022023425895074537, + -5.2290598065305744e-05, + -0.00021891859025958686, + 0.00046887091647313266, + -0.0006846872455111006, + -0.0012222627054356064, + 0.001181465692494554, + 0.0003749595081520784, + 0.0003526073351356686, + -0.0007022591707157542, + -0.0020916780707977093, + -0.0007305294383171488, + -0.0003920163327411029, + 0.0007088163203119509, + 0.000704385437454551, + -0.0010357939037395137, + -0.00046431043924451127, + -0.0014035861038804737, + -0.0016832368128961292, + -3.8630232227414356e-05, + 0.0005905440017652009, + -5.2118227510938425e-05, + 0.001719560304893979, + 0.001561461438381759, + 0.00025205720725469114, + 0.001763408408085375, + 0.0007221821060739849, + -0.0009719985847591629, + -0.0021123318421986375, + 0.001817623123137843, + -0.0010611604657695102, + -0.0008562064784112798, + -0.0012304176076835909, + 6.293152216392149e-05, + 0.002212399981579101, + 0.00010652549074311468, + 0.0008469018514976932, + -0.0009128546294313096, + -0.0006830828456034586, + 0.0015652451383773114, + -0.0005011611750392774, + 0.001757832611090426, + -0.001181582683865845, + -0.00121056434757796, + -0.0005337655494285235, + -0.001717403682544067, + -0.0007408136843975779, + -0.00027721097406305456, + -0.001314794201400178, + 0.00011952201698201898, + -0.001482907938938074, + -0.0028391234957543202, + 0.0018367431177566053, + -0.0004792297246101688, + -0.00014300734554818307, + -0.00032596659343862264, + 0.0011064891695107045, + 0.0010389955998214608, + -0.0004619849476998397, + 0.0007983762349096428, + -0.0010604984136962366, + -0.0001282125298550891, + 0.001318585836532794, + 0.000814565151301671, + -1.6467674650606454e-05, + -0.0011705015340110413, + -0.0020625214146961167, + -0.0006347499538072725, + -0.0007879481790594521, + -0.0009041255605997439, + -0.001146980778965213, + -0.0006732067020140864, + 0.0005947686824684459, + 0.0010934317688459968, + -0.00028716910090332263, + 0.0006821223674612194, + -0.00037570441762113145, + 8.598529650645392e-07, + 0.0010471053851254626, + -0.000431487384172255, + 0.0002556636513862575, + -9.609139681336129e-05, + -0.0006177402265568398, + 0.0009393099127451725, + -0.000908408135385842, + 0.0005665039405200598, + -0.0009604822251764828, + -8.133104536688364e-05, + 0.0007355372890523703, + 0.0003470055868085911, + 0.0018843959846446313, + 0.00022086750466867542, + -0.0009065600966912437, + -0.001433703575768761, + -0.00034096316523416436, + -0.002044549583102611, + 0.0009977976106372783, + -0.0008421754227121942, + -0.0001369818053447785, + -0.00030108280630892326, + 0.000979886607247647, + -0.001737922072358667, + -0.0012344504870354937, + -0.0010066302354428637, + 0.0004479956548980749, + -0.0019370998280541383, + -0.001654962679037751, + 0.0012199121125534165, + 0.000410971663376646, + 3.142622108681595e-05, + 0.0008894448445178767, + 0.00020854686895445604, + 0.0014256145680130942, + 0.0003253710966270027, + -0.0012922092263377152, + -0.00012522540455053085, + -0.0001589117726220959, + 0.002056504865531357, + -0.0015540964696775762, + -0.0004524211264601215, + -0.0010425428456208561, + -0.00039906385008350013, + -0.0002276437824881732, + -0.0024782971261014387, + -0.0014102760428990168, + -0.0006192606420478606, + 0.0001387774518862511, + 0.0021812297080462625, + 0.0001425596435313416, + -0.0004262004528677132, + 0.002142338398636383, + -0.0013937896609897483, + -0.00039096383987960063, + 0.0015932673042809732, + 0.0007066368854968903, + -0.00034757134244072153, + 0.0003121748867034803, + -0.0007519196916785607, + -0.0003839390529577581, + -0.0012465526732651747, + -0.0012396822105925245, + 0.0002528660865610383, + -0.0004789139961242268, + -0.00011876246473120422, + 0.00012697796523258533, + -0.0006198072827077355, + 2.110988925419539e-05, + -0.001447366706630948, + -0.00036602219270604337, + 0.0008363600006297419, + -0.0004724997888814941, + 0.00014368446888075382, + -0.0013191195466935642, + 0.0005613862168692938, + -0.00015946890582976573, + -0.001165735304201534, + 0.00012879815589038367, + -0.001029125146877646, + 0.0005315225544021784, + -0.002258361743278695, + 0.001998028935739293, + -1.6655456977371602e-05, + 0.0006759245575772937, + 5.282016978309428e-05, + -0.0010320804190655998, + -0.0020571340205112784, + -0.0006119239190639105, + 0.0017104910372468614, + -0.0007190926419966008, + 0.001540482136146976, + -0.00021132015063258152, + 0.0003278672475358782, + -0.00047275030121674347, + -0.0015546915191203964, + -0.0008825048994501095, + 0.002973193535448794, + 0.0014764962683650896, + -0.0014967308300415302, + -3.2885064319664986e-05, + -9.952711687646383e-05, + 0.0005547655592122089, + 0.0018511064189604117, + 0.0021959606023235602, + -0.000591243006655985, + -1.2382301679930482e-05, + 0.0010812162478384697, + 0.0002556973916825546, + -0.0007434402127627883, + -0.0008334182537376004, + -0.0009030918394799779, + -0.0008297182857754611, + -0.0005065808822434235, + -0.0004916654239396483, + -0.000620423089838034, + -0.001628587574827609, + -0.0008978466851870096, + -0.0008678610722973862, + 7.580089777078748e-05, + -0.000589173864045151, + -1.455655833297534e-05, + 0.0007127445204791508, + -5.6003802339007074e-05, + -0.00014140184165141486, + 0.0006114419107103605, + 0.0007378653325937724, + 0.0011141028032940526, + 0.0018128100816713988, + -0.0014579603022918642, + -0.0015854446634739503, + 0.0010405782364684775, + -0.0012235865422936167, + 0.0010696422316361649, + 0.00020163057836607157, + -0.00041225885013345374, + -0.0004535606398189168, + -0.0010865280318199432, + -0.0007798900838555854, + -0.0004027531960993472, + 0.0005955276952118613, + 0.00022383837490327004, + 0.0001199951551379412, + 0.0005210907000824437, + 0.0009271594179558762, + -0.0015492826995257935, + 0.00013090864938789112, + -0.00020354680293541112, + -0.0005833651790191638, + -0.00031590814292641067, + -0.0014683424406690658, + 0.0023142534478696134, + 0.0009285444739367345, + -0.002543131560921476, + -0.001182512800641266, + -0.0010151837670320566, + 0.0004196886835916232, + -0.0016426217753042443, + -0.001391063318424466, + -0.0009693448614976637, + 0.00042913115383631556, + -0.0007403720823114064, + 0.0011292059052843936, + 0.0001590034331006031, + -0.0007643972802635429, + -5.129013158712389e-05, + -0.000406376123505102, + 0.00013569095318648818, + -0.0006411962296679153, + -0.00024055476047148293, + 0.0010332897364286981, + -0.0012285318441027358, + -0.001065243831517481, + 0.0019128154885279705, + -0.0016623479805129454, + 0.0013935003982906338, + -0.0005829864414654076, + -0.0007870967545509347, + -0.0002834519531498127, + 0.000745591718894126, + -0.0011388616686114615, + -0.0014274733350751702, + 0.00017803605773123425, + -0.0006196012982266345, + -0.0011885765574890293, + 0.0012035896250914683, + 0.001486284311530507, + 0.0006508422664690343, + 0.00043736929512121073, + -0.0021324971862692575, + 0.0001765474587454717, + -0.0008752793229881749, + -0.0013547282458847782, + -0.0009774447840444663, + 0.000533818384897763, + -0.001925020191957622, + 0.001147184218795194, + -0.0005734435322327453, + 0.002009488687445213, + 0.0013268848757016585, + 0.0016738574199175594, + -0.0003340477072098943, + 0.0014201920688741883, + 0.00027405104128594806, + 0.0016348218510284953, + -0.000742996777682508, + 0.000517013850887017, + -0.0009675485236924026, + -0.0007390383393454707, + -0.00044200007850433905, + 0.0010779453916372746, + -0.0014971198094825033, + -3.847759888298499e-05, + -0.00013399142068563425, + -0.0007735939375706377, + 0.0012294743702660862, + 0.00016541565297055664, + 0.0008338057183526021, + 0.0006173680600099427, + -0.0005324660712249873, + -0.0006740502609794217, + -0.0008199833627355055, + 0.00033198205525391503, + 0.0007267220185779939, + -0.0020604481265172336, + -4.971278238664448e-05, + -0.0003895932155725044, + 0.0001631509427433502, + -0.0012936268416999387, + 0.00017638895201059523, + 0.0004907384818053191, + 0.0019184600292033091, + -0.000540008390969014, + 0.00037384222554225115, + -0.0011192071685167085, + -0.0011349191249985782, + 0.00021081877713340433, + -0.0019377688839017214, + 3.7939173216284e-05, + -0.0009665161519855029, + -0.0003447499214443088, + 0.0015822433004351536, + 0.0003882707028584976, + -0.0006578470354684751, + -0.0008528550323540276, + 0.0006535755559564238, + 0.0006011236622569996, + -0.0011938938952544447, + 0.0020755279763230447, + 0.00196845493265462, + -0.0015753601913037333, + 0.0007773993798483594, + -3.056475782681706e-05, + -4.6457698243587995e-05, + -0.0013215220688306663, + 0.00017883537891558713, + -0.0011664597643833627, + 0.002189795504708523, + 0.00019752481888354938, + 8.995435835938792e-07, + -0.0037041801024810953, + -0.0018929908100029384, + -0.001645729737379323, + 0.0005223843374676906, + -0.0009673080165998024, + 0.0013132779991402042, + -0.0008512127825620137, + -0.0011458919868544306, + -0.0012667288379709747, + -0.0013162873106019315, + 0.0003773491489540102, + -0.0020838701812605485, + -0.0006522001590569228, + 0.0009184314697090141, + -0.0008899845749656008, + 0.00014265562087166858, + 0.0023870018741430957, + -0.0009663752997903809, + 0.00011075742262934898, + 0.0005240409661613379, + -0.001473603572420426, + -0.0003789473116333424, + -0.000443536277395806, + -0.0007982513765464378, + 0.0012020995707334482, + 0.0013108817131481931, + 0.00024856525270280444, + 0.0017329303855316296, + -0.0005169261538795267, + 0.0008130214056670277, + -0.0005904646002315477, + 0.00122709425098142, + -0.00017834227645957792, + -0.0004986212650420497, + 0.0011630381205360446, + -0.0001726576653463638, + -0.0001264029855896014, + -0.00022831393531188776, + -0.0003153184182964929, + 0.00031840222225519094, + 0.0002337353742301272, + 0.0010366460587487242, + 0.00046898697214360695, + -0.00013947049691784053, + -0.0005863872852714326, + 2.571964456386897e-05, + -0.0007875589437836625, + 0.00042588758176939986, + 0.000554436241636773, + 0.00018510880245844018, + -0.0007958820058881892, + -0.0015775843695859698, + -0.001111161123610315, + -0.0005548228303216839, + -0.0021292111618743106, + -0.0001397467075138542, + -0.00038330300590588514, + -0.00032753346468422683, + 0.0003557719393692743, + 0.001334383598130291, + -0.00011944367276116744, + -0.0009455851916991179, + -0.0019273981470528181, + 0.002315070381071001, + -0.0009345345669622767, + -0.0006001427295077708, + -0.00013275951299425708, + -0.0008293513806996916, + 0.0008475874263042725, + -0.0001478658523034005, + -0.0007999409871289753, + 0.0007522519215303774, + -0.0001344254828304675, + 0.001003771785260857, + 0.0006947237468941833, + -0.0014260919683876446, + -0.000533458368095145, + -0.0010138613243486313, + 0.00034668841050295503, + 0.0011538722574860874, + 0.0011904803494144002, + 0.0008614800053616448, + 0.0009146534796859386, + -0.0005916501111958689, + -0.0014774800724577848, + -0.0014372597985471984, + 0.000355065865182617, + 0.001899324260644606, + -0.0003955489295554529, + -0.00037147553634348787, + 0.00016826050697379394, + 5.7720691900994055e-05, + -0.0007971734281938408, + -0.0011308717561140029, + 0.0005780469462579295, + 0.0004636053561234571, + -0.0003280336941144368, + 0.0014193975357727345, + 0.0012020992242621033, + 0.0003439318432291155, + 0.0009592472005751581, + -0.0006446891299259881, + 0.00031944576904379725, + 0.0017315234676588303, + 0.0008363195225267384, + -0.0020305802259542555, + 0.0010611015161733721, + -0.0009479171867612346, + -0.001285587590744891, + -7.152971453537978e-05, + -0.0003395627712127391, + -0.0008263318637680681, + -0.00033043508506614116, + -0.0004570967583319158, + 0.0006521620789705692, + 0.00031612245431499806, + 0.0008435933532413424, + 9.829073295502207e-05, + 0.0010325005013174912, + 3.6879079207935394e-05, + -0.0002403426729997387, + 4.506782344558303e-05, + -0.002429356865585296, + -0.001057682159722992, + 0.0010053741447315044, + 0.0012284225728176569, + -0.0026232545812878106, + 0.000816058389042647, + 0.0012350038477399905, + 0.00023100936277354724, + -0.0010963357028834122, + -0.0026486461959938905, + -0.0006287202959775753, + 0.0002449450899973831, + 0.0009856027010343433, + -0.0009127340982082835, + -0.00048410430522784556, + 0.0002960308742524513, + -0.00014290213947386657, + -0.0015942603142487838, + 0.00040388430023090483, + -0.0010592832035414036, + 0.0012092051625650102, + -0.001809306308185655, + -0.0018561972990590577, + -0.000841229990323613, + 3.52414433428857e-05, + -0.0013447438809586227, + -0.0006729257616421774, + -0.0015284544507774838, + -0.0017660438628998598, + 0.0003114082323108724, + 0.0006165764396210818, + -0.0005221875300818106, + 0.0011414201628265107, + -0.0002849808038549376, + 0.00014833807840260854, + -0.0008469942438913506, + 0.00039521574925247113, + -8.228545270913188e-05, + 0.0010132991951438343, + 0.0003820763055530818, + -0.0016426116552713161, + -0.00022147940499304112, + -0.0014649210506430994, + -0.00037654754481922096, + 0.0005376267881519327, + -0.0012102259382911124, + 0.00038407105538795306, + 0.0004087944845720613, + 0.0010907612641500746, + 0.0018596503963325057, + 0.0005088876338712446, + -0.001944942542273822, + -0.0017986139474602202, + -0.00039668304732825524, + 0.00010122951019318593, + -0.0003100534770204409, + 0.0004978313194182888, + 0.0003323968813160685, + -0.00028440047235219363, + 0.0002986996767500154, + 0.00154581676224894, + -0.0010703070926076283, + -0.001593582529291117, + 0.0003162723050730194, + 0.0002500674411029031, + 0.00041543829086657916, + -1.1027684041236971e-05, + 0.000919469307609642, + 3.993157405469065e-05, + 0.0013016088283548351, + 0.00022749372282106992, + 0.00014304230703713212, + -0.0012172929413006453, + -0.0013249745080358174, + -0.0016430247745253704, + 0.0008322774680560788, + -0.0016579763005738204, + 0.0009236972764846791, + -0.0010837015985591329, + 0.0018338533751359608, + 0.0009212919376359588, + 0.0007315679297654288, + 0.0005669670022074404, + 0.00028709502718726184, + -0.0006046317557943067, + -3.540238156917045e-05, + 0.0004942579397703159, + 0.0011523810654237472, + -0.0014875083177607305, + -0.0022226107500954045, + 0.00233417807899267, + 0.00029287766813619105, + -7.942826789880627e-05, + -0.0009815915300941073, + -0.0017308548869582618, + 0.0004575184047610577, + -0.0008623463801141858, + -0.001027826259069366, + -0.0008016471657532445, + -0.0006269323056465163, + -8.105272468233055e-05, + 0.0017383317962505068, + -0.0007006514951589266, + -0.00037002978914725857, + -0.0013896708738520137, + 0.0012276931748092068, + -0.00047445256848173227, + 0.0013931931354887307, + -0.00041811331004442477, + -0.0015977801115757547, + 0.0003119012709937501, + 0.00041748669939492897, + 3.622930624359058e-05, + 0.00010435485089608463, + 0.00068780887141127, + 3.6687755045295895e-05, + 0.0009574593719112407, + 0.0007570873296514148, + 0.00137671133864287, + 0.0002274464816980699, + 0.0010764644928086572, + 0.00125306493682099, + -2.9469771667862264e-05, + 0.00024569558273129034, + 0.0014090410416732163, + -0.00034788464218719797, + -0.00016518360204239888, + 3.146971595186761e-05, + -0.0014427682396905487, + 0.0013481764215974874, + -0.0006049335204014966, + -0.0016520321867018412, + 0.0008002738712411114, + -0.00034294192253769037, + -0.001399735337133517, + -0.0006074090986917655, + 0.0012093855627205215, + -0.0006459494195821679, + 7.176259806737042e-05, + -0.0006669909538525974, + 0.00134475369616233, + -0.0009035199295209107, + -0.0001824714893720298, + 0.0007586330918188823, + -0.0006875878891877327, + -0.0015480106070884924, + -0.0010701867350477188, + 0.00030837079408304517, + 0.0003710339533889121, + 0.00011464684028845155, + -0.0011764617716292776, + -0.0019171086621085763, + -0.0001243541238036749, + 0.0018678848171214233, + -0.0006526978987555947, + 9.059100387934715e-05, + -0.0008849083087407645, + -0.001059856845750493, + -0.0011409984133315106, + -0.0004869449791072317, + -0.001126168608414355, + -0.0009034810995107731, + -0.001083369486866823, + -0.0005705134284439153, + 0.0016700896752441293, + -0.0021861614096930866, + 0.00035136373553473, + -0.0004094835799296123, + -0.0010518186365591714, + -2.5088154958659823e-06, + -0.0001689645660424037, + 0.0004969652344186437, + -0.002052353580162092, + -0.0006955138645115664, + 0.0008346198673864016, + -0.000915847284668415, + -0.0008172017271301584, + 0.0004281190409801664, + 0.0012160349174481662, + -0.0002974880172768533, + 0.0011971926010727171, + -0.0008670366455275977, + 0.0009839107169503903, + 0.0021982921220460466, + -8.976309905631637e-05, + 0.0010321143645651983, + 9.953900764318193e-05, + -0.0012066349316005157, + 6.858206128959203e-05, + 0.0006146096645468084, + 0.0003010723711004188, + -0.0013713313935670873, + 0.002241644638638196, + 0.0011489144006010513, + 0.00035036757979915923, + 0.000338358040843067, + -0.0012199939307653651, + -0.0008450745758736549, + 0.000901997931075891, + 0.0005561612986995986, + 0.000953479461972044, + 0.000408175882191682, + 0.000518521465968698, + 0.0008330363070525461, + 0.00043925706703424325, + 0.0010852770400018898, + -0.00043507973167257577, + 6.287023099069638e-05, + 0.00016269701058139655, + -0.001156679117074127, + -0.001172003160552277, + -0.0026148819981113656, + 0.0011807137906623133, + 0.00029916552976276187, + -0.0018115683522804344, + 0.001067294689180577, + -9.69478990726541e-05, + -0.0005700843620733386, + 0.0015943466924783528, + 0.0004683641696976051, + 0.0007830445596910149, + 0.0011530973020520727, + 7.41137061160518e-05, + -0.0005981304725956796, + -0.0023297160013522533, + -0.0011906163585409994, + 0.001858983651442545, + -0.0008034016143308231, + 0.00039259143646199873, + 0.0008331370674579101, + -0.0003133637368904822, + 0.00017960768625255313, + 0.0002659739547605728, + 0.0010889952247982544, + -0.0014722207910655867, + 0.00047387166949841456, + -0.0010980996302194948, + 0.00016919989631522064, + -0.0021435954657160225, + 0.0007284595284863135, + 0.0012767372531837103, + -0.0002695752272508236, + 0.00039869084563598923, + -0.0006390490724435874, + 0.0012623019701264002, + 0.0010489524277436024, + -0.0006824170719844565, + 1.6883109951549026e-05, + -0.0003668122370482813, + 0.0024303087153819424, + 0.0008549546721645027, + 0.0009290426855246224, + -0.0010173123607801237, + 0.0019364003437275933, + -0.0005235726356754779, + -0.0012587917769036779, + 0.0011093732730550118, + -0.001981067377900557, + -0.0009516502228357549, + 0.00022721353557129676, + -0.0006018123119860096, + 6.139588557682033e-05, + 0.0006496342328972877, + 0.00018889637206753791, + 0.0003630033340192123, + 0.0009456725062519443, + 0.0001423748769757134, + -0.0004937179957188849, + -0.0011840740525882866, + -0.0032572234144868668, + -0.0006788298786030018, + -0.0011029608381006137, + -0.0005459204437733182, + 0.0014429545137220525, + 0.000988784630615299, + 0.0009002355429984379, + 0.0007415656735696816, + -0.0003026326603794944, + 0.0010828592574402592, + -0.0005842074399251722, + 0.0002714109878271407, + -0.000543226385457593, + -2.37472503882436e-05, + -0.0007639145705931737, + -0.0008511647332509043, + -0.0011158053637258286, + 0.0012641183011016723, + 0.00017944942101041596, + -3.9793183427854025e-05, + 0.0015987174950214055, + 0.0006501579990788645, + 0.001865232307556168, + -0.00035063388772080245, + 0.0006902799030886354, + 0.0008078290515154383, + -1.2502723629838786e-05, + -0.0005593120139934831, + 0.0017822145321093868, + -0.0007613398708667543, + -0.0003332048444944677, + 0.00049170850272495, + 0.0008217498348986212, + -0.000943773195174758, + -0.0010241190774590819, + -0.0011753402456821658, + 0.0007472673928053305, + -0.00018897560343552664, + 0.0005779078008000386, + 0.0012965782464094845, + 0.0003872056414951826, + 0.001427929225375, + 0.0017224158601080366, + 0.0005896695713142535, + 0.0010551241315259416, + -2.473478030038943e-05, + 0.00022145123361591324, + -0.0017656433674142586, + 0.001186142901586758, + -0.00037391126553172155, + 0.0005095344496664344, + 0.0010660483157942091, + -0.00048319691069507, + 0.0005298409249128277, + 0.00048021095551697957, + 0.00010165878310543002, + 0.0003914395315645091, + 9.810343550740619e-05, + 0.0005300253855734459, + -0.0013499171883089628, + -0.0008679471877756493, + -0.0011072271818755935, + -0.0016526923262070693, + 0.0010154664717447707, + 3.131381574920415e-05, + -0.0002816887357663555, + -0.0007642965883547474, + 0.001393530516488829, + -0.0013079579317448093, + 0.0014897678214235044, + -0.0009070318867181098, + 0.0011597202182581662, + 0.0011650916322589466, + 0.0011037286331247575, + 0.00016819823105697937, + 0.0016302820135696188, + 0.0012289910522181465, + 0.001387803245532038, + 9.753495707855861e-05, + -0.0016284888591190313, + -0.0013174703565389202, + 0.0015363435450411987, + 0.00035271227643312084, + -0.0026394280412886757, + 6.78368887662444e-05, + 0.0007814752443362951, + 0.0002752132549821037, + 0.001468313398566948, + 0.0006545236966096546, + 0.00015161640974977624, + 0.00023696581672297542, + 0.0013642156518726815, + -0.0006580542913970103, + 0.0006605017470452941, + -0.0003088228978564007, + -0.0008748764883549764, + -0.0016642166552533128, + -0.0006184663969364369, + -0.00015409401859344467, + 0.00011171320406382895, + -0.0003290910407041211, + -0.0010709146804689057, + 0.000391673286224946, + 0.0016568592585332633, + 4.886265919610229e-05, + -0.0005310321469864104, + 0.0010965154226519266, + -0.0007755256922949238, + -0.0016960342209149909, + -0.0011084135517462786, + 0.0005122886593445442, + 0.0007411646422577687, + 0.0015908914037913292, + -0.0007538540001763368, + 0.0007582234291749213, + 7.647547873373415e-05, + -0.00014731395201125405, + -0.0003695468091183977, + 0.0008737037670638785, + -2.9156555941520518e-05, + 0.0013759294936129811, + -0.0019396679285413774, + -0.0001656795002055891, + -0.0003471560695495425, + -0.001241703149608692, + 0.00034815131665108653, + -0.0010378207996945867, + 9.313167172588199e-05, + 0.0003768239998069945, + -0.0008519499742523102, + -0.0005180546234512934, + 0.0005414827770569703, + 0.0007734070692163017, + 0.0002244177583683037, + -0.0020083988197677604, + 1.5866021128503563e-05, + 0.0028300716082197636, + -0.0015626980230826993, + -0.0007570620879619247, + -0.00048649438834632544, + -0.0014843932873093426, + -0.0009091931471393971, + -0.000678127863880481, + 0.00037568061226585616, + 0.000151084238891734, + -0.0007489745309385559, + 0.0004510021034491504, + -0.0003584460509166288, + 0.002116144765805572, + -0.0008424457940505964, + 0.0009235345882566292, + 0.0003250570207390367, + -0.00017397363080493195, + 0.0007197608461805603, + 0.0015474097983145263, + -0.0008353156806061429, + 0.0011143087870734152, + -0.00038750220325299014, + -0.0011148684886687825, + -0.00019958942274774858, + -0.0004177035962340447, + 0.0010295791623491952, + -0.0010420821016893502, + 0.00015726901261220008, + 0.0010757164325489765, + -0.0005662198447577108, + -0.0014236665997060995, + -0.0007863089004988628, + 0.0015800946344987391, + -3.2056804659746934e-05, + -0.00038417506573733864, + -0.0004683561412928589, + -0.0004495071110233752, + 0.0017829256357936717, + -0.001249116455294586, + -0.0005262008246806016, + -0.0020806901498940603, + -4.7044997664915096e-05, + 0.0004576092154107047, + 0.00016119956086026196, + 0.001485404960980037, + 0.0009103038888543706, + 0.0003250510906542959, + 0.0004838265748302406, + -0.000674596455453416, + 0.00033822110932001765, + 0.0004944724822896743, + -0.0009183104595300472, + 0.0017184330092987923, + 0.0003004655935077607, + -8.880815825930969e-05, + 0.0001469707885369157, + -0.00019022780181976887, + 0.0025710551192635106, + 6.645414771898788e-05, + 0.0008923676528715616, + 0.0006888630180091548, + 7.418249218949568e-05, + -0.0006085345592910763, + -0.0018967292290848299, + 0.0005207021868651298, + -0.0004929127334017388, + -0.00013063075417078248, + 0.001110254256232218, + -0.0001225144671689617, + -6.513886445023493e-05, + -0.0008542543517159396, + 0.0006216643419380463, + -9.12336646118156e-05, + 0.0005887253068504605, + -0.0017891907841896602, + -0.000960924050247771, + 0.0004135540559117253, + 5.473666254529923e-05, + 0.0002356959202535625, + 0.0008915453092566195, + 0.0014524917722501208, + -0.0005398205884219588, + 8.965778277814651e-05, + -0.0014669956880096764, + 0.001284599185668919, + -0.0006754743947329374, + -0.00026218175428835563, + 0.0004747506721413596, + -0.0008005094602516393, + 0.0004048893455853081, + -0.0017509374045175793, + 2.4552048755175818e-05, + 0.0009108254845081494, + -6.251576607071105e-05, + -0.0009826527321705838, + -0.0015739490033544173, + -0.0019224893111071458, + -0.0002047626000067345, + -0.00033631167274441877, + 0.0006776839146117316, + -0.001334087881086437, + 4.886014518870652e-05, + 0.0015329217901167852, + -0.0009121771337764748, + 0.0009217340039503385, + -0.0009557182405849002, + 0.0005789629121700315, + 0.00022262472217118861, + -0.0010679976905729194, + 0.0003459477639309376, + -0.000158289036234453, + -0.001883066764178504, + -0.00012191829490403117, + -0.0006613531543469578, + -0.001545734376758103, + 0.002324098609630597, + 0.0015074545476887274, + 7.3761313095608455e-06, + 0.00019760176287840874, + 0.0011112310907274714, + 0.0010593507448467179, + -0.0006422129855534129, + -0.001861926389606331, + -0.0006577700858830783, + 0.001005972219423685, + -0.0003107130837989659, + -0.00044481491423884064 + ] + } + ], + "layout": { + "annotations": [ + { + "showarrow": false, + "text": "\tBurn in: 4000", + "x": 4000, + "xanchor": "left", + "xref": "x", + "y": 1, + "yanchor": "top", + "yref": "y domain" + } + ], + "autosize": true, + "shapes": [ + { + "line": { + "color": "black", + "dash": "dash", + "width": 3 + }, + "type": "line", + "x0": 4000, + "x1": 4000, + "xref": "x", + "y0": 0, + "y1": 1, + "yref": "y domain" + } + ], + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Estimated Value of Offset w.r.t. Beam sensor 0" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0, + 4999 + ], + "title": { + "standoff": 20, + "text": "MCMC Iteration Number" + }, + "type": "linear" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + -0.00502523644467651, + 0.004531706202141541 + ], + "title": { + "standoff": 20, + "text": "Estimated Offset
Value (ppm)" + } + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQd4ZFX9/r8zk5m0Tdkkm90km+29wdI7giggKDZUigqKf1QsgAjYGxYUFBRBUVFE5KcCCgjSFqW3hWU722uyuymb3qf8n/fcOcmdu3dm7tyZZLOZ9zyPkk1uOfdzzj33nPd8iycSiUSEhQRIgARIgARIgARIgARIgARIgARIgARIwJaAh+IJewYJkAAJkAAJkAAJkAAJkAAJkAAJkAAJxCdA8YS9gwRIgARIgARIgARIgARIgARIgARIgAQSEKB4wu5BAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRP2AdIgARIgARIgARIgARIgARIgARIgARIwB0BWp6448azSIAESIAESIAESIAESIAESIAESIAEsoQAxZMsaWg+JgmQAAmQAAmQAAmQAAmQAAmQAAmQgDsCFE/cceNZJEACJEACJEACJEACJEACJEACJEACWUKA4kmWNDQfkwRIgARIgARIgARIgARIgARIgARIwB0BiifuuPEsEiABEiABEiABEiABEiABEiABEiCBLCFA8SRLGpqPSQIkQAIkQAIkQAIkQAIkQAIkQAIk4I4AxRN33HgWCZAACZAACZAACZAACZAACZAACZBAlhCgeJIlDc3HJAESIAESIAESIAESIAESIAESIAEScEeA4ok7bjyLBEiABEiABEiABEiABEiABEiABEggSwhQPMmShuZjkgAJkAAJkAAJkAAJkAAJkAAJkAAJuCNA8cQdN55FAiRAAiRAAiRAAiRAAiRAAiRAAiSQJQQonmRJQ/MxSYAESIAESIAESIAESIAESIAESIAE3BGgeOKOG88iARIgARIgARIgARIgARIgARIgARLIEgIUT7KkofmYJEACJEACJEACJEACJEACJEACJEAC7ghQPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAlkCQGKJ1nS0HxMEiABEiABEiABEiABEiABEiABEiABdwQonrjjxrNIgARIgARIgARIgARIgARIgARIgASyhADFkyxpaD4mCZAACZAACZAACZAACZAACZAACZCAOwIUT9xx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAJZQoDiSZY0NB+TBEiABEiABEiABEiABEiABEiABEjA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CFA8cceNZ5EACZAACZAACZAACZAACZAACZAACWQJAYonWdLQfEwSIAESIAESIAESIAESIAESIAESIAF3BCieuOPGs0iABEiABEiABEiABEiABEiABEiABLKEAMWTLGloPiYJkAAJkAAJkAAJkAAJkAAJkAAJkIA7AhRP3HHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAllCgOJJljQ0H5MESIAESIAESIAESIAESIAESIAESMAdAYon7rjxLBIgARIgARIgARIgARIgARIgARIggSwhQPEkSxqaj0kCJEACJEACJEACJEACJEACJEACJOCOAMUTd9x4FgmQAAmQAAmQAAmQAAmQAAmQAAmQQJYQoHiSJQ3NxyQBEiABEiABEiABEiABEiABEiABEnBHgOKJO248iwRIgARIgARIgARIgARIgARIgARIIEsIUDzJkobmY5IACZAACZAACZAACZAACZAACZAACbgjQPHEHTeeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCUEKJ5kSUPzMUmABEiABEiABEiABEiABEiABEiABNwRoHjijhvPIgESIAESIAESIAESIAESIAESIAESyBICFE+ypKH5mCRAAiRAAiRAAiRAAiRAAiRAAiRAAu4IUDxxx41nkQAJkAAJkAAJkAAJkAAJkAAJkAAJZAkBiidZ0tB8TBIgARIgARIgARIgARIgARIgARIgAXcEKJ6448azSIAESIAESIAESIAESIAESIAESIAEsoQAxZMsaWg+JgmQAAmQAAmQAAmQAAmQAAmQAAmQgDsCFE/cceNZJEACJEACJEACJEACJEACJEACJEACWUKA4kmWNDQfkwRIgARIgARIgARIgARIgARIgARIwB0BiifuuPEsEiABEiABEiABEiABEiABEiABEiCBLCFA8SRLGpqPSQIkQAIkQAIkQAIkQAIkQAIkQAIk4I4AxRN33HgWCZAACZAACZAACZAACZAACZAACZBAlhCgeJIlDc3HJAESIAESIAESIAESIAESIAESIAEScEeA4ok7bjyLBEiABEiABEiABEiABEiABEiABEggSwhQPMmShuZjkgAJkAAJkAAJkAAJkAAJkAAJkAAJuCNA8cQdN55FAiRAAiRAAiRAAiRAAiRAAiRAAiSQJQQonmRJQ/MxSYAESIAESIAESIAESIAESIAESIAE3BGgeOKOG88iARIgARIgARIgARIgARIgARIgARLIEgIUT7KkofmYJEACJEACJEACJEACJEACJEACJEAC7ghQPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAlkCQGKJ1nS0HxMEiABEiABEiABEiABEiABEiABEiABdwQonrjjxrNIgARIgARIgARIgARIgARIgARIgASyhADFkyxp6OF8zHe9613q8k899dRw3mbMXru9vV0KCgokJydnzD7jcDxYJBKRtrY2KS0tHY7Lj+lr9vf3y8DAgBQWFo7p5xyOh+vq6hK/3y+BQGA4Lj+mr9na2iolJSXi8XjG9HNm+uFCoZCg3xUXF2f60mP+er29vYJvRX5+/ph/1kw/IOcm7ohybuKOG88igUOFAMWTQ6WlRnE9KZ6k1zicoLjjxwmKO244i+KJe3YUT9yzo3jijh3FE3fccBbFE/fsODdxx45zE3fceBYJHCoEKJ4cKi01iutJ8SS9xuEExR0/TlDccaN44p4bzqR44p4fxRN37CieuONG8cQ9N5zJuYk7fpybuOPGs0jgUCFA8eRQaalRXE+KJ+k1Dico7vhxguKOG8UT99wonqTHjuKJO34UT9xxo3jinhvFE/fsODdxz45nksChQIDiyUFoJZiR/vWvf5WHH35YgsGgfOADH5CLLrpI8vLyktbG6blOjzPfEPEjvvGNb8g73/lOVSenheKJU1L2x1E8ccePExR33CieuOdG8SQ9dhRP3PGjeOKOG8UT99wonrhnx7mJe3Y8kwQOBQIUT0a4lRBr4Oc//7kKdHnNNddIbm6u/OQnP1EB9K6//vqEARydnuv0OPOjQ8S588475Z///Kd8/vOfp3gygv2C4ok72JyguONG8cQ9N4on6bGjeOKOH8UTd9wonrjndsIJJ8jLL7+sLvDiiy8K/s3ijADnJs448SgSOFQJUDwZ4ZZ79tln5Re/+IXccMMNsmjRInX3jRs3KuHk8ssvlzPPPDNujZye6/Q4840eeeQRaWhokOeff17OO+88iicj2C8onriDzQmKO24UT9xzo3iSHjuKJ+74UTxxx43iiXtuY1k8webld7/7XamqqpKrrrpKZU/LZOHcJJM0eS0SGH0EHIsnsGbYtGmTzJ49O26Kxrq6Ouno6JC5c+cyFaFNW8OV5gc/+IFgAglrk6KiInVUT0+PfO973xNM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SdubhHgSjXlCkFju17dvX1tppZVcsNghQ4Y40YNyEyZMsAEDBrgyXJncdqJxUoYPH26DBw+2yZMn26WXXpoKBht1xYm6IWUSTzKlKqZ/pcoaJPFET2rRBLx4UnRDakAEREAEREAEREAEREAERKBJEnjyySeb5Lg16MohIPGkcuaqbHsq8aRsp0YdEwEREAEREAEREAEREIGKICDxpCKmqUl3UuJJk57+5AZ/++23G6aKhx56aHKNNpGWCPR03HHHWa9evZrIiJMZJu5Ohx9+uEtvpqswAk8//bS9+uqrdtZZZxVWUaXt4osvtk033dR22mkn0SiQwN5772233HKLtWvXrsCaTbv4tGnTXGrHa6+9tmmDCBi99iYB0JZU0d4kjN3cuXOdC8O4cePCGlAtERCBsiYg8aSsp6dyOqcNSvhcaYMSxk7iSRg3akk8CWcn8SScncSTMHYST8K4UUt7k3B22puEsZN4EsZNtUSgUghIPKmUmSrzfmqDEj5B2qCEsZN4EsZN4kk4N2pKPAnnJ/EkjJ3EkzBuEk/CuVFTe5MwfhJPwriplghUCgGJJ5UyU2XeT4kn4ROkDUoYO4knYdwknoRzk3hSHDuJJ2H8JJ6EcZN4Es5N4kk4O4kn4exUUwQqgYDEk0qYpQroo8ST8EmSeBLGTuJJGDeJJ+HcJJ4Ux07iSRg/iSdh3CSehHOTeBLOTuJJODvVFIFKICDxpBJmSX0UAREQAREQAREQAREQAREQAREQARFoNAISTxoNvW4sAiIgAiIgAiIgAiIgAiIgAiIgAiJQCQQknlTCLKmPIiACIiACIiACIiACIiACIiACIiACjUZA4kmjodeNRUAEREAEREAEREAEREAEREAEREAEKoGAxJNKmCX1UQREQAREQAREQAREQAREQAREQAREoNEISDxpNPS6sQiIgAiIgAiIgAiIgAiIgAiIgAiIQCUQkHhSCbOkPoqACIiACIiACIiACIiACIiACIiACDQaAYknjYZeNxYBERABERABERABERABERABERABEagEAhJPKmGW1EcREAEREAEREAEREAEREAEREAEREIFGIyDxpNHQ68YiIAIiIAIiIAIiIAIiIAIiIAIiIAKVQEDiSSXMkvooAiIgAiIgAiIgAiIgAiIgAiIgAiLQaAQknjQa+uq48S+//GJjxoyxhx56yH799VcbOHCgHXzwwdamTZvqGGDgKB544AG7/vrrU7VbtmxpF154oW244Yapf/v+++/t5ptvtmeffdZatWplhx9+uP3ud7+zpZZaqs5d45YL7GqjVVu8eLFNnz7dRo8ebfvvv79tsskmGfvy73//20aOHOnK9ujRw0488UTr3bt3vbJJl2s0MDFuzLM2depUu+++++yYY46xNddcM2Ot2bNn2x//+Ef76KOPUp9vu+22dtZZZ7k1x1VTU2MvvfSSjRo1ymbOnGkbbLCBnXLKKda5c+c6bcYtF6P7jVKE9fb000/b3/72N/v666/d+AYNGmT9+vWz5s2bBz1zcZ/NuOUaBUyMm/700092++232yOPPOK+53/zm9/YcccdZ927d69Xm9+ECy64wF599dXUZz179rSLLrrIVlhhhdS/NZXnlbm/6aab3Nrju531dtRRR9myyy4b9HzFfQ7jlosx/Y1WhDXy17/+1T744ANbccUV7bDDDrNddtml3vNKB1955RU777zzbOHChan+nnbaabbbbrul/h53vxK3XKOBKfDGn3/+uQ0bNsxOPfVU23TTTfVdVwC/J554wu6991677LLLrH379nVq6ruuAJAqKgJVREDiSRVNZkMPZcGCBXbFFVfYnDlz7IwzzrDWrVvbxRdfbM2aNXM/1Msss0xDd6ks7scB9LrrrrNVV1011Z9OnTrZHnvskTqwwuzcc8+11Vdf3R1+f/jhB/d3DiVHH310SkCJW64sBl5AJ+bOnWtvv/22Pffcc/bkk0+6g1X6po7m3nrrLRsxYoRj9Nvf/tZefvllu/zyy23IkCG25ZZbpu6YdLkChtLgRb/99lt75513nGD54Ycf2l/+8peM4gmHJ8SVjz/+uM5BjcNHVGyBP4ICTFl/48aNc5tFuHPo9Vfccg0OJOYN4fXMM8+453D+/PmOzZdffulEgAEDBrjvLa64z1zS5WIOo8GLcUC45JJLrF27drbZZpvZtGnTbPz48U4gT18jdO6f//ynE4RXWmmlVF+px3/+airPK99ziOjdunWzVVZZxSZMmOAO+XvttZcde+yx1qJFi4Kfr7jPYdxyDb6gYt4QwQTBbvvtt3fP61133WXffPONDR8+3LbYYos6rfz4449OZFluueVSwgp/hjP/54q7X4lbLuYwGr0Ya5B9Gb+d6b+zSX+HxW2v0aHE7ABr8E9/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AqUhIPGkNFzVqgiIgAiIgAiIgAiIgAiIgAiIgAiIQJUQkHhSJROpYYiACIiACIiACIiACIiACIiACIiACJSGgMST0nBVqyIgAiIgAiIgAiIgAiIgAiIgAiIgAlVCQOJJlUykhiECIiACIiACIiACIiACIiACIiACIlAaAhJPSsNVrYqACIiACIiACIiACIiACIiACIiACFQJAYknVTKRGoYIiIAIiIAIiIAIiIAIiIAIiIAIiEBpCEg8KQ1XtSoCIiACIiACIiACIiACIiACIiACIlAlBCSeVMlEahgiIAIiIAIiIAIiIAIiIAIiIAIiIAKlISDxpDRc1aoIiIAIiIAIiIAIiIAIiIAIiIAIiECVEJB4UiUTqWGIgAiIgAiIgAiIgAiIgAiIgAiIgAiUhoDEk9JwVasiIAIiIAIiIAIiIAIiIAIiIAIiIAJVQkDiSZVMpIYhAiIgAiIgAiIgAiIgAiIgAiIgAiJQGgIST0rDVa2KgAiIgAiIgAiIgAiIgAiIgAiIgAhUCQGJJ1UykRqGCIiACIiACIiACIiACIiACIiACIhAaQhIPCkNV7UqAiIgAiIgAiIgAiIgAiIgAiIgAiJQJQQknlTJRGoYIiACIiACIiACIiACIiACIiACIiACpSEg8aQ0XNWqCIiACIiACIiACIiACIiACIiACIhAlRCQeFIlE6lhiIAIiIAIiEA1EPjmm2/svPPOc0MZPny4rbjiitUwrEYbw+zZs238+PE2depUx7V9+/aN1hfdWAREQAREQAQqmYDEk0qePfVdBERABCqcwLfffmuvvvqqjRs3zj788EM3mtNOO8122223WCO7++67bfTo0amyyy+/vP3lL3+xNddcs079n3/+2Z566il78skn7eOPP7b58+fbMsssY+uuu67ts88+1qdPH3vggQds1113tZYtW9rkyZPtiSeecP/n2nfffe2oo46yZs2a5e3X888/bxdccIEtXrw4Vfaiiy6yTTfdtE5dPn/99dfdwfbtt9+277//3lq0aGGrr766/e53v7N+/frZv/71L2vbtq1ttNFGWe9Lv6+//vp6n2djkXcAjVygXMST7777zk4//XT7/PPPU0QGDhxoRx99tC211FL1KLF+hw4daj/88EOdzzLNfUMhfuGFF+zpp582/t+lSxe7/PLLJZ40FHzdRwREQAREoOoISDypuinVgERABESg8ghED57rrLOO/fnPf7Z27drlHAhv1P/4xz/aRx995IQQ/oxAERU4ampq7KWXXrKrrrrKll12WTvkkENs8803d+V//fVX+/LLL+2OO+6wf/7zn7bqqqu6w6W3dEDYGTJkiH322We28sor28UXX2yrrbZazj798ssvTjhBEGrevLmdfPLJTpDhz9Hrq6++cvdi3AMGDLDdd9/dOnbs6IogoiDyjBkzxubOnWsjRoywLbbYIu99b775ZnvwwQed+HPmmWfadtttV+e+tPXss8+6e5XDVW79ycQEgevTTz+1q6++2v797387nscdd5ybs0xCGusNwQ3B5Mgjj8w49w3N3otA3FfiSUPT1/1EQAREQASqiYDEk2qaTY1FBERABCqUAAe8YcOG2axZs2zevHl29tln27bbbptzNI899phde+21tnDhQidqpB8MOcg+/PDDzioDUYX2EVDSL8ohOtx5551OIPFWKwghHILffPNNJ2IMHjzYDjjggJx9euONN+ycc85xli3cK5MVDIIJZRYtWuTcKBCLMl0ffPCB/elPf7L999/fsHjId3FoP+usszKyoO60adOcSHTMMcfka6pBPi+3/uQa9Jw5c5wLEQJK69at3bxsueWWGauwls8991w76aST6llANQjYtJvwPLHOvv76a4knjTEBuqcIiIAIiEDVEJB4UjVTqYGIgAiIQOUS4MB52WWXOesPhIwNN9zQHUCxEMl0/fjjj3bJJZdY9+7dDdedTOIJh3PEBNrIZzWCFcqoUaOcpUBUPLniiitslVVWsXvvvdf1DTEEK5RMF21g4YK7DC4/XOniCf1mXLjp4J60yy675Jy05557zmCz11575Z3cXOKJF4I6dOjgrGEa+yq3/uTjQX+Zy5kzZ9r06dOddRIWQT179qxXtdzEE28NNWPGDIkn+SZan4uACIiACIhADgIST7Q8REAEREAEGp2AF08GDRrkrD1wybnwwgudiJLpIq7IxIkTbaeddnIWAeniyYIFC1w7lIsbr+T99993Viy9e/d2t+TQiXiCm8vf//53e+utt3LGY6E+AsxBBx3k+p5JPMFahjY5dNO/FVZYISd7LF4mTZrkRJ18VzbxBFHnvvvus1tvvdXFUmls8aTc+pOPa3Qt7Lnnnk5Ie/nll53IhouWd7fy7Ug8iUNUZURABERABESg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", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "marker": { + "color": "rgb(102, 197, 204)" + }, + "name": "Beam sensor 0", + "type": "box", + "y": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + }, + { + "legendgroup": "Beam sensor 1", + "marker": { + "color": "rgb(246, 207, 113)" + }, + "name": "Beam sensor 1", + "type": "box", + "y": [ + 0.001126931143591391, + 0.0001366516959005484, + -0.0015903656318779972, + -1.6141046952390164e-05, + 0.0010141515780524568, + 0.0014183755598595202, + -0.0005928264449893003, + 2.0251600745825583e-05, + -0.0014156428362243638, + 0.0013164401183389494, + 0.00021973283891391201, + 0.0009724863026296366, + 0.000924659278281904, + 0.001325451513325202, + 0.0009668530479842803, + 0.0009612186721239702, + -0.000672235515842028, + 0.00013644959056582277, + -0.0005790234095104245, + 0.0015284633565679601, + 0.0003113080994637032, + -0.000773275080424825, + -0.0022344139741296257, + 0.0020997562127716427, + -0.0007012231494118201, + -9.637168800831716e-05, + -0.0008335824086203008, + 0.0011183307775925017, + 0.0007039680716917274, + 0.001341259538433009, + -0.0011001865847509713, + -0.0014837681632402253, + 0.0006159149024880919, + -0.0002197160931841358, + 4.7122302567410966e-05, + -0.0010259166288988048, + -0.0013620400295850765, + -0.00022595094293072256, + -0.0015740335939073502, + -3.435211670847887e-05, + 0.0007541801071030402, + -0.0004032140891217525, + 0.0015700894033756382, + -0.0005432385746703323, + 0.0001289451971919868, + 0.0007813358844492947, + -0.0002465752262623505, + -0.0012393174614247786, + -0.000295508054343837, + 0.0005156792747163233, + 0.0008311634564697458, + -0.0020460928541422233, + 0.00023253516154396182, + -0.0005625100382057205, + 0.0004460829508404133, + -0.0007011281251223634, + -0.0011601488493758886, + 0.0005383807365162702, + 0.0006335350430294133, + 0.0008355086465069216, + -0.00015834726196869257, + -0.0006686773654045602, + -0.00025379647272931455, + -0.0020332966581009227, + 0.0006860464003001382, + 0.0008889821410372325, + 0.0001760108828055627, + 0.0010121741852197178, + 0.000748115122651041, + -0.0010493977663692685, + 0.0010810319202276045, + 0.0009185747514156867, + -0.0011957526020308403, + 6.992264891079855e-05, + -0.0006164535099501062, + -0.0007928957448012011, + -0.0010831868741394694, + 0.00010273839135493037, + 0.0014037208595317596, + -0.00041127060523931107, + -0.0009649187196545049, + 0.0004561901165400211, + 0.0015166453806362643, + 0.0005153862673314311, + -0.001555689231621431, + -0.0007334389975181775, + 0.0008978713915292089, + -0.0005679525936062184, + -0.0003343448392419797, + -0.0015080138150037894, + -0.0013574122933790076, + -0.0001818735725262273, + 0.00035621195229933666, + 0.0011598531762431008, + -0.000732106989580845, + -9.224495255209884e-05, + -6.920200301530493e-05, + -0.00039854097524154335, + 0.0018128646661889785, + -0.0010467386550527963, + 0.0007874365955585045, + 0.0005148352373045059, + 0.001184297519873447, + -0.0008387169225888131, + 0.0001620083539185236, + -0.0004544854439237014, + 0.0014435865050377158, + 0.0009114638227535225, + -0.0011121874773851834, + -0.0006689141913884242, + -0.0013471246556142767, + -0.0019669757974935327, + -0.0005340438950862949, + -0.0012533673061330408, + -0.0008242765623723733, + -0.000400506520026716, + -0.0010857026760696846, + -0.0003630176112332235, + -0.0003305438538704915, + 1.613101801989215e-06, + -0.001695827934458258, + -0.0006469973382303982, + -0.0002768887147184687, + 0.000711234267255801, + 0.0005374959296455829, + 0.0005010291354970452, + 0.0013655328896184397, + -0.0008651033094811328, + 0.000957018460325614, + 0.0004445285046467526, + 0.0004634626358003315, + 0.0001250956287438983, + 0.0009814802816564105, + -5.913542969880399e-05, + 0.00024059156664428736, + -0.000774000652460641, + 0.0005184447470164419, + 0.0016363967842105346, + -0.0006516973385118717, + 0.00025941933126452286, + -0.0004385700743258704, + 0.001171463854901054, + -0.0009810727296613113, + 0.00017597992509834313, + 0.0016186565418279575, + 0.0002777088089580539, + -0.0010944259877069752, + -0.0002846413857934735, + 0.0007954071674765002, + 0.0012779386207758276, + 0.0015566946564149105, + 0.0025746718917090032, + -0.0023269376478664066, + 0.000693046858208233, + 0.0015757448156827876, + 0.0010496338638337286, + -0.0005326612570837433, + -0.0005152459636464881, + -0.0008965367335374877, + 0.00042967373324542726, + 0.0013343074451989333, + 0.00015868925799671053, + 9.878218320458142e-05, + -0.0018058107756518515, + 0.00023163985333152893, + -0.0013065360234357382, + 0.0017288921215923845, + 0.002467173120371578, + 0.0011292433227409007, + -0.0004952077209646962, + 0.0004971297219294988, + 0.0011635221915711534, + 0.00042312171518775623, + -0.0007547485318006465, + 0.0010072451423153996, + 0.0019405825062723653, + -0.00017438556724143144, + -0.00045438355878542444, + 0.000602426173135403, + -0.0006114818015161131, + -0.0013186792120691143, + 0.0015031247978081858, + 3.108486111033439e-05, + -0.0003607219519723518, + -0.0007553023443461253, + -5.213772624731532e-05, + -0.00016113630380516658, + 0.0005316223063966308, + 0.0018797631811885188, + 0.0011317604973735311, + 0.0001105499983143108, + 0.0006391477767964717, + 0.0016973353061446555, + 0.001491002095371194, + -0.0006752178420190775, + -0.0004134602408195504, + 0.0012432682915026801, + 0.00036195406733182913, + 0.000962240989083526, + -0.0017416576414350945, + -0.0016820608999933563, + 0.0008145318740809254, + -0.0012613218340321239, + -9.811475346797134e-05, + -0.0010718231266453355, + -0.0009918240861324157, + -0.0008084875095440158, + -6.544305367411308e-05, + -0.0004226314168548488, + -0.0016463389351741777, + 0.0016417185599581301, + 0.0012515357126305273, + -0.0007715404139028981, + -0.00033794100739727764, + -0.001371558647158496, + 0.0010772479005707527, + -0.0013614924609903804, + -0.0019378958696946286, + 0.0009655834497069659, + -0.00042273410142852755, + 0.002880476699537658, + -0.0006931669625328902, + -0.0015454302969523308, + -0.0004520126714128924, + -0.0003211542325842148, + 0.0010300608908205577, + 0.0013637695563362285, + 7.019898762653762e-05, + 0.0007022963336557063, + 0.001284750778629835, + 0.0013780578795157354, + -0.0006159455172943725, + 0.0014275252918954117, + -0.0004992585971343146, + -0.0016587081376633203, + -0.00038978435843671456, + 0.0015289567393887656, + -0.0007801216496269912, + -0.0002351487085125739, + -0.0011269450394805485, + -0.0008207060850357216, + 0.003436006888906119, + 3.969894167343236e-05, + -0.000937149048974453, + 0.001627772334418262, + 0.0009394554694743463, + 0.0019199598327396417, + 0.001475548735335455, + 0.0004736504387364243, + 0.0017218902365051167, + -0.0007151789634403687, + -0.000964045571154726, + -0.0017232289531033608, + -0.00023189172058351944, + 0.0007273340029073256, + -0.0014769933782213596, + -0.0005240229991746775, + -0.0010703982666376232, + -0.0011147694178254655, + -0.00046479983943393253, + -0.00024692378629351366, + 0.0005135312558812957, + 0.0008137378216161216, + -0.00022470298599309416, + -0.0007897330365318092, + 0.00024004734106718677, + -9.73668684757632e-05, + -0.0002077905419281723, + 0.00015351522632984062, + -0.0010282630768558365, + -0.0016146349700336612, + -0.002132785870314595, + -0.00021585278062098787, + -0.001256743315064973, + 8.486112819320546e-06, + -0.00019726348075824963, + -0.0005505423875859423, + -0.002176026970044841, + -0.001062651639090081, + -0.000259497106160153, + -0.0014714410195160574, + -0.000771856426681798, + -0.0020508417689438104, + -0.0005448122064344424, + 0.0002024347618679283, + -0.0010138942124668542, + -0.0007335647005357454, + -0.00024167665593139345, + -0.00025524468761861104, + -3.620078457539255e-05, + -0.001591907765008563, + -0.0003036012890598751, + 0.00016070910005241246, + -0.0007324961181870225, + -0.00028772253446395895, + 7.4472019794120384e-06, + 0.0008797096211713593, + 8.779015515382102e-05, + 0.00030202778894021515, + 0.0005401863858402514, + 0.0005642370637142385, + -0.001959472313274904, + 0.0015777412214555218, + -0.0004361961110646103, + 0.0014092383462920438, + 0.00029401238806307453, + 0.0009483105115579143, + -0.0002945067305621721, + -0.0004148480516392149, + -0.0013148667130008873, + -0.0017770183202668734, + -0.000227260646288678, + 0.00018217712677001284, + 4.435561949353904e-05, + -4.881038754528242e-05, + -0.0006441057217582518, + -0.0003939393138002342, + 0.002468002600724897, + -0.0003487563722054912, + -0.0009087350645634162, + 0.0002410580703455328, + -5.565118020245435e-05, + -8.504925945877954e-05, + 0.0026837596708299467, + 0.0006085758662826813, + -0.002115735062611961, + -2.9554599949651823e-05, + -0.0011472261510875354, + -0.0014206758324288931, + -0.0013697209120798178, + 0.0005085856333263151, + -0.00022074100734592087, + 0.0007242100719563329, + 0.0006061667616127033, + -8.504218273974198e-05, + 0.001052180513170455, + -0.0004353675150500951, + -0.00027287111201217097, + -0.0006074636239509929, + 0.0005406081715957534, + -0.0009069478185534231, + -0.0005894916566845345, + -0.0007559776446997182, + 0.0009290486295427513, + -0.0005848156009482677, + -0.0013234134651057274, + 0.0012816329364713508, + 0.0013918858866539554, + 0.0002820799378738546, + -0.00016669286145555326, + -0.0013607171204140448, + 0.0028855198052016306, + 0.0012990342397254625, + 0.00114611538439916, + 0.000212509500131061, + 0.000977499410199533, + -0.0010628364873403345, + -0.00036578063963843007, + -0.00048477666949291686, + 0.001182464059818689, + 0.00028796340567039785, + -0.0008935357197826718, + 0.002587294918188059, + -3.0213050147543e-05, + -0.0008177014289521547, + -2.3944138183508953e-05, + 0.0002399706395612233, + 0.001976631588378057, + -1.8699639300012395e-05, + -0.00040784567006957106, + 0.0007022733195093351, + 0.0005230486736423264, + -0.0008609191407034205, + -0.0007679408449660912, + -0.0005281968796333236, + -0.0009967708920937794, + -0.0017841778972068475, + -0.0009248163228223431, + -0.0011835575700024864, + -7.662339121616209e-05, + 4.006613716965109e-06, + 0.001370152770712739, + -0.0002404893291922907, + -0.0005059111298957453, + -0.001988380319887095, + -0.001119011191610601, + -0.0005513341903388397, + -0.0007386975456214389, + -0.0018212511089920078, + -0.0006755427293500553, + 0.000697271428536339, + -0.0005305929241948159, + -0.0004583447087650934, + 0.0006979454850347394, + -0.0013826282747785139, + 0.00019413112120164608, + -0.00012964505754227838, + -0.000488437395688095, + 0.0019441178101225161, + 0.0016627251466734764, + -0.0002784121491868203, + -0.0013760165213118811, + 0.0003100914694467498, + -0.00043891761579211526, + -0.0003452010162974092, + -0.00042970900957179606, + 0.0005315464392610491, + 0.0005145609484561917, + -0.0009266277077139332, + 0.0016676055856648143, + 0.00010310170172472673, + 0.0006267947422903663, + -0.000813843244867034, + -0.00046175668662486104, + -0.0011051855549051662, + 0.000766568748176574, + -0.0004901851015089507, + 0.0004997582592806301, + -0.00018685614897071988, + -0.0006841129612983082, + 0.0006359707210072352, + -0.0013878255539457908, + 0.0006306695318425152, + -0.00038436204912706853, + 0.00040187645147872963, + 0.0005327496891074527, + 0.0018215454484171879, + 0.0014122287446811403, + -0.0013627802103267576, + 0.001834815630700337, + -0.0013789050044651187, + 0.0008791578290813992, + -0.0004079487607992369, + 6.742889655756288e-06, + -0.0007608680586012468, + -0.0005423188057856521, + 0.0004353665395937303, + -0.00044837763325893603, + 0.0004176333767813877, + -0.0004283839972291703, + -0.0015324093542151726, + -0.00032096089815982507, + 0.00014351917317651032, + 0.0012641863856408294, + 0.0005117710228403071, + -0.00020204055106464973, + 0.001714467483938586, + 0.0013721817533667003, + 0.0010353134466738066, + -0.0009956748862916824, + -0.0012253235095554527, + -0.00040159812187926826, + -0.0008208614928380616, + 0.001187168196060793, + 0.00025811670668278756, + -0.001727293615219509, + 0.0020619919857516275, + 0.0012286392998058534, + 0.0015550122698301983, + -0.000824235532645167, + -0.0011088459869167666, + 0.0006453561978863383, + 0.000304172376388374, + 0.00019185227704995175, + 0.00014400078994488091, + 0.0002621934626265899, + -0.0007018841849211253, + -0.00023862655017042734, + 0.0007368437013361567, + 0.0005470697897602706, + -0.0008665659805334579, + 0.0004912328878566648, + 0.0007228843531089835, + -0.0010973388401202139, + 0.00021224838725703536, + 0.0005610659627445653, + -0.001003775092725398, + -0.0010485519778962095, + 0.0011617421240992737, + -0.0018375080026566326, + -0.00010938933577331743, + -0.0015607000151232706, + -7.606614833399254e-05, + -0.0014707109894170275, + -4.994128343290629e-05, + -0.00017263630127675728, + -0.000497442828742867, + 0.0005302901308364585, + -0.0017790467904629905, + -0.000937603473215549, + 0.0008590520451034984, + -0.0007359864936255547, + 0.0012411592764352548, + 0.0010227162993124454, + 0.0004708468407356398, + 0.0006352043514272376, + -0.0002587332223240235, + -0.0005793099216942158, + 0.00019879172003829193, + 0.0007142016311748558, + 0.0016968696707541225, + 0.002136203753139071, + 0.0014457077216049228, + 0.000663151444715387, + -0.0004756084532110342, + 0.0005907644770401701, + 0.0011939728546392033, + -0.0002730422976530161, + -0.00046504297479287135, + 0.00026121778057862626, + 0.0010627630005665847, + -0.0001647008289112847, + 0.0001957583584909089, + -0.0009472666355688118, + 0.0020059029723023336, + -0.0013900942208887222, + -0.0002277383228516566, + 0.00023424282076068054, + 0.00023586080849691108, + -0.00028614514216585127, + -0.000172464275059029, + 0.00011316055338992836, + -0.00023575310874859507, + -0.001852449345426223, + -0.0006091854487943082, + -0.0011669673003340572, + -0.0018190698475421, + 0.0001533712069457534, + 0.0005415371574470747, + -0.0013616194420570354, + 0.0005204584861483342, + -0.0012853750023257748, + -0.0003141804350609804, + 0.0005306219437932779, + 0.0008302616835632837, + -0.0009429207871689604, + -3.639059939658185e-05, + 0.0012258210010097034, + -0.00036499705686196196, + -0.00023104653887258669, + -0.002028407122626162, + 0.000855728092403671, + -0.0003977749370799059, + -0.001002187384014767, + -0.0002891065425229689, + -0.0017741534913217802, + 0.00021547287523477227, + -0.0004059556331964193, + -6.362426068201474e-05, + -0.0005238630467595715, + 0.0006048901485540863, + -0.0005150874391451252, + 0.0010816348808572458, + 0.0007578331375962778, + 0.0009010917416271786, + 0.001694592536580297, + 0.0012915432529566077, + 0.0005409569383284224, + 0.0007529221675167721, + 5.792459701455743e-05, + 0.0013647824796804702, + -0.0002364192652893131, + 0.0004490828030041378, + 0.00030722241622444825, + -0.0021693091952541574, + -0.0005980276849582303, + -0.0012354366703043753, + -0.002618355249448559, + -0.0006378140011173753, + 0.0011439494263097121, + 0.00020481348232218748, + 0.00038959553128681485, + 0.001980399222745151, + -0.0003244113309123819, + 4.413018756552484e-05, + 0.0018441786311441714, + -0.0018838800203688345, + 0.000364647130840739, + -0.0003227738444545068, + 0.0011531034549167381, + -0.0021293033286783006, + 0.0003430526658861855, + 0.0009999018555349223, + 0.0016192838718220013, + -0.0008146156865538118, + 0.0002390529896026534, + -5.5887586584123385e-05, + 0.0019119681581599114, + 0.0006434246410596273, + -0.0018169838250120275, + -0.0004967239351138738, + -0.00026649570083162434, + 0.0005082294588167596, + -0.0004223064958205536, + -0.0005571182319497729, + -0.0006998623509190253, + -0.0003292084127236785, + -0.0004798345478345899, + -0.0035542913496252695, + -0.0002637837961484876, + -0.0007539669231858044, + 0.0012059501080864026, + 3.0056541184410394e-05, + 0.0003167799005701838, + -0.0006587271035126575, + -0.00011961175459155553, + -3.570192928724015e-05, + -0.0004907642629192979, + -0.0004942205208005026, + 0.00016708254232806032, + 0.0015647715252501125, + -0.0015927614037593333, + -0.0006201486653865878, + 0.0018519637871845418, + -0.0011148978914943153, + -0.0007707750472514635, + -0.000533946018886265, + -0.000839144474014491, + 0.0019251587835180442, + 0.0007134467468104922, + -0.00011098962044035274, + -0.0009627699333336634, + 0.00017618609603078318, + -5.584541549792955e-05, + -0.0010724913099648878, + 0.0013099407053219383, + -0.0014382574451544954, + -0.000724126930454644, + 0.0008410753954079802, + -0.00035128063897199325, + 0.0007063192971454871, + 0.0004817066391916138, + 9.705011162656338e-05, + 0.00010674240767484915, + -0.0015623412680485498, + 0.0011371189307849815, + -5.590574011805238e-05, + 0.000471601286282338, + -0.00047823340518290546, + 0.0002033965770073246, + 0.00039020080089527853, + -0.0006305052222572453, + 0.0005108483593861739, + 0.0010315954321955363, + 0.0003953094348902681, + -0.00070934331033013, + -4.849248608494195e-05, + 0.0006758479677129534, + -0.0013501502648581905, + -0.00018397029986840606, + 0.0007630451829965171, + 7.01017842034387e-05, + 0.001968491712469446, + 0.0003468771390964573, + -0.0009046064684225152, + 0.0004962991107782862, + 3.8586391301767254e-05, + 4.9944029432217814e-05, + -0.0017275923098532212, + -0.0006098382351817569, + -0.0009625959120168132, + -0.0013303095262968188, + 0.0007047702076870971, + -0.0008727194345778993, + 7.49948304212421e-05, + -0.0008348021923673883, + -0.0016256828882563617, + 0.0005788678149860761, + -0.0011658410794675802, + -0.0012104007594123574, + -0.00020636274562619244, + 0.0006135649913953711, + -0.001090330736332045, + -0.0010270892661658274, + -9.963078205533056e-05, + 0.0005195819345371216, + -0.0002817722795390947, + 0.0007087971916211334, + -0.0024783137918979767, + -0.0002200804941706135, + 0.0003858208451332204, + 0.0008389164852453235, + 0.000294876411891952, + 0.0017507439631412032, + -0.0007788746620493313, + -9.892501521430271e-05, + 0.0001326601131176974, + -0.0006044300293587392, + -0.00023472645628515301, + 0.00012888367900715716, + -0.00034075908467430565, + 0.00027469915158700537, + -0.0015759156652018062, + -0.0006726643680504644, + 0.00019359666468269602, + -0.0008768516491710488, + -0.0002638899587238991, + -0.0011681788808004523, + 0.0018518225331391545, + -0.000339810366010113, + -0.0020726592500055164, + -0.0001871767357686002, + -0.001956276565025694, + 0.0006285064790870529, + 0.002319792832808875, + -0.0009302024866675088, + -0.0011426938458960329, + 0.001056463527249823, + 0.002367807210443055, + 0.0019879134348697487, + -0.0008475708653358059, + -0.0017777449336610933, + -0.0007686449443678876, + -0.00046462024068300397, + -0.0006870541005099004, + 0.0006434326298923074, + 0.0002338428417321113, + 0.0006209036132072826, + -1.762423727519622e-05, + 0.0006247490840127171, + 0.00022306974695925912, + -0.0006424999827948988, + 0.0002918693887689834, + -0.0016061425116674997, + -7.737033549829402e-05, + -0.0009045940343160741, + -4.386250440623488e-05, + 7.154792483243035e-05, + -0.0006505368935504646, + 0.001232821283130573, + -0.0004029661503433726, + -0.0012711889384231139, + 0.0002451972799744163, + 0.00036374198606649056, + 0.00015393166823964025, + -0.0005248319230370493, + 0.0001005145817860494, + -0.0015723036566695106, + 0.000972303391551457, + -0.0005233287525009302, + 3.3913765161488124e-05, + 0.0005656812094995245, + 0.0005275985199515649, + -0.00028050661098715256, + -0.00045548298038926, + -0.00026206798139245975, + -0.000840390825984235, + 0.0003495751533143237, + 0.0005380663954297442, + 0.0006470888423573023, + 0.0006874883818883705, + -0.0008703150713908538, + 0.00030307995916695977, + -0.0006775077136722441, + -0.001181921518124304, + 0.0005767099521804254, + 0.0003330070122296892, + 0.0011924023603203703, + -0.0003767901937349975, + -0.0009135668476652495, + 0.0003861392508695503, + 0.0011087743130141284, + -0.0014100274086969065, + 0.0013404495300917102, + -0.00016874714019263033, + -0.00033898195014055827, + 0.0018266527577019645, + -0.00040060585237489344, + -0.0008183501375311675, + 0.001143055387191658, + 0.0004946092839084285, + 0.001185517352532013, + 0.000179290290761112, + 0.0014955758610970748, + -0.000556393805098817, + 0.0009226823757541367, + -0.000141701019012894, + 0.0012468922892753746, + 0.00012076025414857614, + -0.0008933796818030753, + -0.001001787876618915, + 4.295274881942342e-05, + 0.0003804660210684932, + -5.863071997168328e-06, + 0.0007090501122699801, + -0.00036354909116044655, + -0.0011783535461763407, + -0.00015768509907959391, + 0.000222419594593706, + -0.0014645328793503334, + 0.0006077414719953865, + 7.749392205930228e-05, + -0.0005726226557266564, + -0.0005389086316844031, + -0.0015417370816275399, + 0.00020738985110555847, + -0.001238680137873188, + 0.0007788300624382821, + -0.0015026502905072555, + 4.065960443827435e-05, + 0.0002704604245202564, + 0.0005588684466973966, + 0.001473961790394332, + 0.0008138950111990406, + -0.000654266844882041, + -6.399537259759258e-05, + -0.00028811597366787563, + -0.0007599171593815213, + -0.00018348997616228314, + 0.0021114563404289943, + 0.0015400861256707205, + 0.0010307015165472435, + -0.0008964337977420799, + -1.3402700939711894e-05, + 0.00017256141694678906, + -0.0004267957402980235, + -0.00043003145413725573, + -0.00041344538840220143, + 0.001500419513409365, + 0.0006175533105893108, + -0.00011890435838522091, + 0.0001073738792956918, + -0.0005428030717511917, + 0.0004259913951944261, + -0.0005466337500256161, + -0.00013786617924868482, + 0.00013004780547500107, + 0.00033486088672849985, + 0.0010749240730827435, + -0.0008263031185473841, + 0.0005088896071146848, + 0.0023133562301181324, + -0.00015541442574103201, + 0.00036945340665289045, + 0.0016015645297764811, + -0.0011926138058018009, + -0.0007908241040074331, + -0.0007743259722093375, + 0.0021798408075507356, + -0.00018085365352637722, + 0.0008417384402695851, + 0.001059188458991249, + 0.0003938616403376389, + 0.001502730003896288, + 0.0009440873056746446, + 0.00015977200463794734, + 0.0009582588150626653, + 0.0007713462474573261, + -0.0011627467276789233, + -0.0008110978820475603, + -0.00043471660529734147, + -0.0005268309569146806, + -0.0019105224043895646, + 0.0007369689393221212, + -0.0006250203230940373, + -0.0004627184880532901, + 0.001001284342075303, + 0.0015773069813906878, + -0.0008161020869274945, + 0.0007273292154230727, + 0.00018674843947885387, + 0.00010085485308772315, + -0.0017218101831823138, + 0.00044077998783792694, + 0.0005356297685534336, + 0.00022924896558156524, + -0.0011104963173442892, + 0.000999579407246948, + 0.0002446673872653208, + -2.72609287764138e-05, + -0.00015108923559576846, + -0.001151664348937209, + -0.0007364155191234738, + -0.0016630080466208434, + -0.0006457385032875702, + 0.00010552048937404763, + 0.0010070341659481872, + 0.0008738052426455669, + 0.0006424687654960847, + -0.0010379967370064646, + -0.00025853169115226123, + -0.00044752868061825716, + -0.000145306252039326, + -0.000988954551938975, + 0.0008387597298402755, + 0.000854735575468694, + -8.74753050008291e-05, + -0.0016063858317493587, + -0.0011474944216380166, + 0.000582547179485278, + -0.0007681562454809629, + 0.0009032632598055361, + -0.0006230983025357806, + -0.0012442756446951744, + -0.0003462504245769126, + 0.0007879817659734947, + 0.0005654654858035443, + 0.0021023327314016013, + -0.0010175530144982518, + 0.0014899025426558894, + 0.00024301300632386503, + 0.001363295818008161, + 0.00013752256233615925, + 0.0006150874101512865, + -0.00024262967502025406, + 0.0009712776014729804, + 0.001483967050252448, + 6.682269501215147e-05, + 0.0010431375338894498, + -0.0018395796418831432, + -0.0003901801843546127, + 0.0009470264254235924, + 0.0015523793197296904, + 0.0008401451904839624, + -0.0017418734085727012, + 0.001925185641451672, + 0.0005886539890469323, + 0.0012852706961870549, + 0.0013915686078292292, + 0.0006617730678158745, + 0.0011548142796029431, + -0.00014052281690667758, + -0.0014787168914362696, + -0.0012915100971865809, + -0.0003701165050077378, + 0.0021634810156434827, + 0.002374778250694069, + -0.0006543588494897601, + 0.000567903710927445, + 0.0008489199519400467, + -0.0010356957069720977, + 0.0008511868480481264, + -0.0005648501002454, + 0.00022505449123308725, + 0.0013075639233161543, + 0.0005254162056026667, + -0.00266467728163825, + 0.0005472349586673109, + -0.0005844377558589395, + -0.0007316292142464266, + 0.0010765342976612282, + 0.00028422314704339786, + -0.0009703919461452465, + -0.00042870719697929, + 0.0011370385098374521, + -0.0018711994580595222, + 0.0005066993028766408, + 0.0025841794516828867, + 0.0011955066688136365, + 0.0007368009595244562, + 0.0007237260993350595, + -0.00014500813988332461, + -0.0001332619062004114, + 0.0001502684766358644, + 0.0002849967117523045, + 0.000993000306375094, + -0.0007788431345886861, + -0.001189166383798867, + 8.877958669768165e-05, + -0.00020728495203125886, + 0.00020488118567903754, + 0.0015579163443635398, + 0.0004497173387454979, + 0.00014704909397217868, + 0.001079491710826068, + 0.0011277557636237912, + 0.0010185718657773368, + -0.001084770932852381, + -0.0016449141469379524, + -0.00047925930544741617, + 0.0006375356438111523, + 0.00036999385543651014, + 2.4829125882246283e-05, + 0.0017860197558468168, + 0.0010836763310391364, + -0.0005600217367061524, + 0.0026890565530743597, + -0.00020730804016353928, + -0.0007411010403929097, + -0.0010539059508771792, + 0.0005318330344665369, + 0.0007803373273579573, + -0.00040098234523645545, + -0.0004316844837779429, + -0.0004772491985725347, + -0.0007490864342943435, + 0.0011592379781794524, + -0.0011607359366444681, + 0.00011779214038664349, + 0.0013987139199642521, + 0.00022557006615735588, + 0.0017935595510388497, + -0.0005323781252051362, + 0.0002288345517426682, + 0.001101448036143932, + 0.0004334481710940657, + 0.0004254284368068267, + 0.00011235540869107747, + 0.0009119249832900277, + -0.0016370892276454932 + ] + }, + { + "legendgroup": "Beam sensor 2", + "marker": { + "color": "rgb(248, 156, 116)" + }, + "name": "Beam sensor 2", + "type": "box", + "y": [ + 7.656810667384587e-05, + 0.0001256778022451755, + 0.0006803383513394059, + 0.0005913748726034556, + -0.00046198254944434375, + 0.0012410920223214878, + -0.00040138166517459853, + -0.0002800044166297697, + -0.0004106074250724932, + -0.0016568538165286453, + -0.001575294446057357, + 8.784789930013175e-05, + -0.001021966993939227, + -0.0011198557417276065, + -0.0004899717050034798, + -0.00019820659639728616, + 0.0006230428769635692, + -0.0006312910478055595, + 0.0019445098312711275, + -7.339481524944843e-05, + 0.0009022775825106951, + 0.0005165427235979671, + -0.0003866495086094546, + -0.0005167627928576664, + 0.00013126327335612295, + -0.00011229893031209793, + 0.0010297976104828453, + 0.0005217088817497572, + -0.0004106299826263494, + 0.00024264324076145395, + -0.0002545909615866985, + 0.0014519905837697869, + -0.0008574807674147787, + 4.142391672583503e-05, + -7.693694681016428e-05, + 0.001930290513228398, + -0.0010514723901097417, + 0.0012093500123567852, + 0.0007050291526787955, + -0.00023193918713375458, + -0.001298117239233432, + 0.0011997566277297522, + -0.0016381090925030775, + -0.0004574536787650868, + -9.523630682031805e-05, + -0.0003819370809435414, + 0.0019598043150892306, + -0.0012574415071627137, + -0.0005232501062589213, + -0.0008985188367688316, + 0.0006296303945132072, + 0.0003313602426791109, + -0.000712179299388236, + 0.0022772999520417375, + -2.8714496974101e-05, + -0.0006203607578209316, + 0.0021790190421467604, + 0.0002515466351341073, + 0.0017802315076032333, + -0.0004335458075040455, + -0.001509239868055148, + 0.0007989291109843954, + 0.0010832258803820834, + 0.0008299548457119785, + 0.00048366295097322827, + -0.0004127819245310625, + 0.0002044777874548027, + 0.0006593402633857175, + -6.339931410250175e-05, + -0.0003419831832560999, + 0.0001822028826325183, + -0.0014586056722016216, + 7.311320300336662e-05, + 0.0003933645668108879, + 7.333316629242988e-05, + 0.0006415136661925926, + -0.00043693353565740935, + 0.002169723919694998, + -0.00048411041561265285, + -0.0010434666490311195, + -0.0006417965592222072, + 0.000917363654582779, + 0.0015603730916762984, + 0.00025381226452547294, + -0.001444162731765251, + -0.0001424324083090046, + 0.002164392889446073, + 0.0005331385048497212, + -0.0006791239565219688, + 0.0003482804575702447, + 0.0004898560480680788, + -0.0016670309407238433, + -0.00023420350003576515, + -0.00022511593831405893, + 0.0002911285330302844, + -9.728054697610982e-06, + -0.0012367010289177885, + 0.0010065752338042511, + 0.0012921996607867287, + 0.0004630303489263868, + 0.0008360674053848421, + -2.4464388383966096e-05, + 0.0007521987517516874, + 9.929576869310043e-05, + 0.0002231912338237039, + -0.0004939322200450301, + 0.0006492609832046414, + -0.0010933070829457097, + 0.00044328764585801393, + -0.0019024809358814743, + -0.0006110359806541519, + -0.0009663675358201398, + -0.0014433489277816411, + 0.0007731577446759787, + 0.0007285816021498828, + -0.0003859034841851037, + 0.00038100303379425476, + -0.0005062521720210321, + -0.0011819526446204807, + -0.0008651084442082644, + -0.0011860042973092018, + 0.0008971149853369809, + 0.00091511732075445, + 0.0016146242319610422, + -0.0003414335139811339, + -0.0015902351413743523, + -0.002090656237246091, + 0.0025966765067673117, + -0.0007633201122500201, + 0.0017964433923448205, + -0.0005880579388441268, + 0.00021295755401424128, + 5.950350469623563e-06, + -0.0026121912367479483, + -0.00041275738944371955, + -4.303541233569487e-05, + -0.0003796279763034086, + 0.00033940182475835756, + 0.0002405161717219509, + -0.00047779148096005426, + 0.0007618692567594534, + -0.0024004280644209066, + 8.409445000637571e-05, + 0.0014546531384872516, + 0.001279913401986711, + -0.0025306762429573243, + -0.0001652962749854122, + -0.0012396498783174628, + -0.0008900953505076999, + 0.0014699298167008198, + 0.00041543477452937885, + 0.0017279951616540178, + 0.0009387473750906241, + -0.0007308345090737305, + -0.0008775635686911344, + 0.0013656745533087052, + 0.0006769974920156209, + -0.00022178022371391185, + 0.0009379351352966593, + 0.0005754718774719712, + 0.0018449481110084838, + -0.002495744620302533, + 0.0002832495805457348, + -0.000911212078544719, + -0.00027859826186327983, + 0.0007858469485473108, + 0.002562329056475527, + 0.0005536343773912894, + -4.979122779059024e-05, + -0.0005123210955463594, + 0.0002909388123919796, + 0.0009712318245413129, + 0.0011245948905022696, + 0.0002693657959982866, + 0.0004220197797298344, + 0.00023061917939314546, + 0.0002646287748336065, + -0.0002597588590502653, + 0.0009642260885560972, + 0.0006662879055731158, + -0.00018814743906531717, + 0.0012185343930607379, + 5.1348515880526696e-05, + 0.00035661334004022464, + 0.0002597941131424154, + 0.0014988490846613647, + 0.00018457602231675466, + -0.0024881659101287854, + 0.0010775592174517977, + -2.926453420716347e-05, + -0.0022653591750177817, + -0.0024384204921957604, + 0.00039694209646267645, + -0.0004066038774147856, + -0.0008058468424243844, + -0.0005106168570948902, + 0.0013057416619176223, + 0.0002491886356428618, + 0.00017485923534036406, + -0.00015831161604490932, + 0.0017895801512216123, + -0.00048821750753410187, + -0.001372925227030343, + 6.16798747403428e-05, + 0.0007273075467913353, + 0.0005256027386211588, + 0.0005336295442531012, + 0.0017069790730582458, + 0.0002004222974359483, + -0.001000884434248139, + 0.0022413590638423603, + 0.00013775927765809166, + -0.0008896690754834542, + -0.00047862230609269806, + -0.00014079599922373184, + -7.986194385217831e-05, + 8.597201457294862e-05, + 0.001155624247421614, + 0.0005742490253098929, + 0.0007007874558009597, + 0.00021897481469138736, + -0.0006865264641133674, + 0.0017598979011100113, + 0.0009188943761541144, + 0.0009128316037874819, + 0.0020195297471148456, + 0.0005990614171478886, + -0.001092958281347565, + 0.0002610174053430764, + 0.00030129335276857504, + -0.001156035008833989, + 0.0008161984109847374, + -0.0012663327722824231, + 0.0008124856969300245, + 0.0006236131752623091, + -0.0003637674682128274, + -0.0023162752175557564, + 0.000277008578838728, + -0.0002255277656063046, + -0.0019458005302910816, + -4.8328519458773246e-05, + 0.000497277029697064, + 0.00031891609930624615, + 0.0006503769135425756, + 0.0010910698808943705, + 0.0021664846411657, + 6.043496163095584e-05, + -0.00041625892971193214, + 0.0006461144990224931, + -0.0012222272766978285, + 0.0020555733714601007, + -0.0005141025051228614, + -0.00024613728136080245, + -0.0014003512257620904, + 0.00017287680330570603, + -0.00046912819885271026, + -4.914163039153718e-05, + -0.0019851412623615064, + 0.003015022651360246, + 0.00030495269277895393, + -0.000788672472246912, + -0.0015920723429650777, + -0.001682611304676194, + -0.0022241498207114835, + 0.0003098032283633992, + 0.0006694751711510025, + -0.00010009338192901343, + -0.0009104225746528711, + 0.001721486002883049, + -0.0001246647221755968, + 0.0005245299374259847, + -0.0010346925491329694, + 0.0011678694962924236, + -0.0010790005702792556, + 0.00019482555355903951, + -0.0007371293863957622, + 0.0014136253482511876, + 0.0009508284056432728, + 0.00016922568616981667, + 0.001961784546556514, + -0.00039760782151291603, + -5.79313972587264e-05, + 0.000141142631336062, + 0.00010240686203960431, + 0.00186382668057399, + -0.000782192103676854, + -0.001327746704691137, + -0.0004930588592163732, + -0.0009279487690603255, + 0.00027707273978354183, + -0.0009003757501213505, + 0.0005606940164143682, + 0.0015153573704626288, + -0.0005261242108606947, + 0.0011673561590171081, + 0.00047286247859146767, + 0.0006999532538937268, + -0.00014304499222049082, + 0.00024838122622449795, + -0.0016064420583193904, + -0.0007034912817409548, + 0.0010446359935622723, + 0.0008915366304369096, + -0.00046720874871117237, + 0.0015530928065914705, + -0.0006344795432080147, + 0.0005423277625345727, + 0.0001901017281567245, + -0.0007933464678237682, + -0.000889711410170383, + -0.00017709209690889956, + 0.0011756242912645955, + 0.001328869345415833, + -0.000331314588091063, + -0.000522610145379927, + 8.268232544945186e-06, + 0.0023119921722877814, + 0.0010009935241784998, + 0.0013453570478506947, + 0.0012923744245959036, + -0.0003293477848174495, + 0.00031251024948496145, + -0.0007648390221323798, + -0.0011288096027664784, + -0.0017379789521631127, + 0.00039042558742397976, + 0.0003891332441938658, + -1.6909608973275856e-05, + 0.0002931386950514126, + 0.0025838488985807616, + 0.000138023220235142, + 9.174168507933326e-07, + 0.0010396858522528842, + -0.0003287024990613856, + 0.00034997926552376106, + 0.0004196220201370197, + -0.0018569014743020187, + 0.0004974543011606329, + 0.0005593814797620915, + 0.0009393119495851943, + -0.0004987278654006886, + 0.0022173436423840657, + 0.0002832411735820875, + -0.00036842863783054225, + -0.0009157995036543642, + 6.534964496955823e-05, + -0.00010073484533912367, + -0.0010398958864292396, + 0.0002773683796138288, + -0.0001910611479985523, + 8.74175958719328e-05, + -0.0009362435542332598, + 0.0009606977680647401, + 0.00030517946056540763, + 0.00157129556000269, + 0.0005894564853408592, + 0.0005312287747137559, + -0.0010446449730483263, + -0.00013255936994009766, + -0.0004649476418798705, + -0.0007769287559563996, + -0.0016535770539318566, + -0.0004796528739675703, + 0.0004666426708757414, + 0.0003861706701556473, + 0.0004169082456481669, + 0.0017745173139152334, + 0.0006104007010054861, + 0.0005913540071494191, + 0.0007750192821092731, + -0.0003136712427539865, + -0.0013270803496100655, + 0.0003202700655071269, + 0.0008098401941082809, + -0.0006989981320712459, + 0.00038913593367489893, + 0.000845818406851873, + -9.542848067790744e-05, + 0.0013879125562539264, + -0.0008272544930317306, + 0.0006168671032644434, + -0.0008166866151760641, + 0.0011319201905270685, + 0.0005629132827121433, + 0.000703204080880013, + 0.0010963790923262738, + -0.0004735344615684247, + -0.0011605136622136654, + 0.00046075923474681317, + -0.0012032685837064536, + 0.0009445506842183625, + 0.00033993566119163473, + -0.0007824086252408686, + 0.0012413216723488583, + -0.0009395094395431245, + -0.00018660508364277373, + -0.0002850592640570084, + -0.000728203456889436, + -0.0004020646666655352, + 0.001040649279828233, + 0.0015776083902998232, + 0.0003247876525104651, + 0.0005162552348196342, + -0.0014753464323529974, + 0.0008167924494942172, + 0.0002514859946837411, + 0.000461088602395402, + -0.0007282489454601424, + -0.0008091480405252856, + -0.0021072462548547242, + 0.001254862927192882, + 2.4353936970571817e-05, + 0.0008805206469146094, + 0.00030407130285250766, + -0.00025851382569795883, + -0.0008098050196918451, + -0.00045060702403185214, + -0.0012215153865736913, + -0.000510432340385013, + 0.0011743585982175154, + 0.0013607741535355496, + 0.00019559728444057381, + -0.00039218134282061696, + 0.0009194346348626505, + -0.0009608628134851246, + 0.0011151100304853192, + 0.0010584264142533839, + 7.951160546544137e-05, + -0.00017219615071221775, + 0.0010642757544033108, + 0.001363423026633646, + -0.0005373750536942919, + -2.5122683896552736e-05, + -3.0194235636172747e-05, + -0.0003877772963214069, + 0.0017447528381280212, + 0.0013203198769163647, + -0.0010500536207065409, + -0.001974839892724997, + -0.0006635927728094529, + -0.0013697723326030827, + -0.00036819431521866955, + -0.00022885108265983012, + -0.0012124276528123143, + 0.0018741395993203379, + -0.00018429501379276476, + -0.0012061807101650397, + -0.0007114303885674934, + -0.0001704281639173684, + -0.0002902647480552818, + -0.0021316579653950477, + 0.000840724040309528, + -0.002270283285063283, + 0.00014579352740310333, + -4.2617012540697825e-05, + 0.0009994480867402031, + -0.0013028464197692403, + 0.0003476503997589411, + -5.4253320728446165e-05, + -2.753708998585495e-05, + 0.0016047490373884295, + -0.0002697242636728243, + -0.0007666917396651779, + -0.00047582373249751946, + 0.00023884397870724012, + 0.0009308469270305214, + 0.0008123458074812748, + -0.0009328950563823488, + -0.0011177703499250307, + 0.00037143009613781083, + -0.00020726367059795643, + -0.002303393615214204, + -0.002793721756849554, + -2.5728449402468657e-05, + 0.0011468744660400928, + -0.001571695501781529, + 0.00020145568389266203, + -0.002149464823230124, + 0.0006239363550951761, + -0.0005867817236052229, + -0.0008612183249308038, + -0.0031817658641994906, + -0.0004407992339830858, + 0.00014339844705015691, + 0.00017267518793793272, + -0.0014912839126622866, + 0.0010009928456718481, + 0.00017022772330617692, + -3.6247996846902e-05, + 4.237990065729516e-05, + -0.0013477832162152358, + 0.0010344149590962176, + -0.0004369057018921014, + 0.0006383823089301994, + -4.403657223125046e-05, + -0.0009344663533514067, + -0.0007010930300830766, + -0.0017570004109139887, + 0.000277845759728913, + 0.00043327178141536616, + -0.0010580386754333955, + 0.0012430936163134636, + -0.0003675026486269816, + -0.0001511328050503158, + 0.0018941164767350646, + 0.001266271677166076, + -0.0010592884443769207, + -0.00011452560268288247, + 0.0007146810343947118, + 1.5756075773200387e-05, + -0.0004745457694690946, + -0.0003522081954843037, + 0.0006675934501205533, + -0.0010433595785623103, + -0.0003834979385608979, + -0.002501801860598904, + -0.0018136865475181926, + 0.0009300804530495134, + -0.0005297465294748548, + 0.0018508840844826148, + 0.0008380550931781602, + -5.501046629709679e-06, + -0.00020345070015758757, + 0.0019934048672262416, + 0.0003925708268564418, + -0.0017617039401661195, + -0.0003819298469448349, + 0.0016469739173229148, + -0.0002852405698555429, + 0.00031787198339223175, + -0.002803203054383214, + 0.000595845301372, + 0.00015929045828726724, + -0.0009499384605075085, + 0.00013877363328001506, + -3.6797718475834335e-05, + -0.0005314015111995258, + -0.0018909207661100991, + 0.0011014078077046033, + 0.0005922003260568318, + -0.00045403529533698565, + 0.00014247653245925247, + 0.0008570031246436952, + 0.0006470883643467999, + 0.00021100605180033306, + -0.00025459353458318073, + 0.0011466348457035973, + -0.0003796967233145412, + -0.001089158038852652, + -0.0002341372257283146, + 0.00012156407306893055, + -0.00014126183503740752, + 0.0014084609923506817, + 0.001053930469377752, + -0.0008035612890979618, + 0.00040566623715225714, + -0.0009450281806155571, + -0.001155656202499346, + 0.0016704528152892452, + -0.000749954306779651, + 0.0001246089277976504, + 0.0006259169758657284, + -0.00029483216122053554, + 0.00020291000484258976, + 0.0008188085134657201, + -0.0006860392486118361, + -0.00036482522563124545, + -0.00027150492510474367, + -0.001283420540156794, + 6.239095523909898e-05, + -0.0019288652746448768, + -8.94958188347466e-05, + 0.0008485096956863327, + 0.0012221465407332172, + 0.0007202533278187952, + 0.0002100253294332832, + 0.00032556592270938556, + 0.0015641394680157071, + -0.000295167170202217, + -0.0005746162733151228, + -0.0005267537754201669, + 0.0010486295606297782, + -0.0003563399286307688, + -0.0005150274012289881, + 0.001460478869421561, + -0.00010706928115644342, + -0.001610593853087558, + 0.00012731286283294027, + 0.0009197967181578887, + -7.716137494461068e-05, + 3.2978023688373916e-05, + 0.00052580595995742, + 6.713737647407029e-06, + 1.985824372119015e-05, + -5.324105312324413e-05, + -0.0003004230410000078, + -0.0016708783410769497, + 9.485231676994294e-05, + -0.0008400710015779521, + -0.00013190405896179008, + -0.0011528536352223338, + -0.0016908033781673276, + 0.0005996773116794083, + 0.0006888858993406239, + 0.0004394505031924274, + -0.0019564399847518967, + -0.0014281397512002293, + -0.00022150089909260925, + -0.0012110803924512737, + 5.04310846367052e-05, + 0.0009015187757675187, + -0.000943932152890365, + 0.0003551971721559812, + -0.001419783753010987, + 0.0007653143809036742, + -6.0266383168315045e-05, + -9.836482918994821e-05, + 0.0010795982849539267, + 0.00019854117429511469, + 0.001789751916052169, + -0.0007594400827912356, + 0.000773563937524272, + 0.0008961239562376637, + -0.0004602401357350056, + -0.0010122124628173814, + -0.0005113088200393357, + 0.0006065362689693768, + -0.00022444950823412605, + 0.000752998145266807, + 0.001229427322759726, + -0.00022665862521176704, + 0.0005984100703677375, + -0.0007472576395503315, + -0.000881498808480848, + -0.00038328424587436005, + -0.00035184486797430596, + 0.0017862753837829108, + 0.0004567545293852018, + 0.0002619756186426928, + 0.0006495138868335868, + 0.0002445922905642797, + 0.0003787820390551562, + -0.001008786479454329, + 0.00034096953550406486, + -0.0007840650142016289, + 0.00021494762590105966, + 0.0003641293469847391, + -0.0008041390306453059, + -0.00042868523651311594, + -0.0005303941584919906, + -0.00028581501303200573, + 0.0014960742763090234, + 0.0005367550359833152, + 0.0010417299070879522, + -0.0011044544007497148, + -0.0006065346924526825, + 0.00016587905807490422, + -0.0006210309057767814, + 0.000597319547961875, + 0.00013471708428275928, + 0.0017206276058143294, + -0.0011510461111533565, + -0.0002485366535156265, + 0.00020983621810322895, + -0.0005423729614942041, + -0.002158828291913015, + 0.00044002101156295005, + -0.00035977119675304457, + 0.001904887448916243, + 0.0008296219098086778, + -0.001707066574412792, + -0.0014904466181882457, + -0.0006014675358503941, + -0.00010179176065810389, + -0.00030874887170816205, + -0.0008639215149397838, + -0.002244468309832077, + 0.0019349041284327756, + 0.001191479887085305, + -0.0008683429714424665, + 0.00031075384003832057, + 0.00017812236124244396, + 0.0007791059842557649, + 0.0007245244368670253, + 0.0017605533717406328, + -0.0008096801079058605, + -0.0006992789241611811, + -0.00024535911953812246, + 2.633323516875053e-06, + 0.0003812623870828303, + 0.0005863003736609306, + -0.0009867110269935987, + -0.0007648865384620152, + 0.0010780352020335418, + -0.0002789455866623805, + -0.0004914221293336151, + -0.0007587016180505357, + 0.00035613213827447634, + 0.0014964679278022634, + 0.0008231185025089593, + -0.0005939936458498039, + 0.0006272094390813142, + -0.000398160950235131, + -0.00012254117866166892, + 0.00014987917150937786, + -0.0010290723853311997, + -0.0020408741209716657, + 0.00046823692148837597, + 0.0002721883294276684, + -0.0008070948042842753, + -0.0007176311861785703, + 0.0013166170970188816, + -0.0009952787444930877, + 0.0008223542288445742, + -0.001089325812991741, + 0.0007043280008889586, + 0.0005715792761183837, + 0.0009096120756983156, + 0.0005336907277170804, + 0.00036727992844107313, + -0.0002799026694320279, + -0.0007172428722121905, + -0.0007345327674635754, + 0.00048522152651575307, + 0.00010195684599415958, + -0.0007111014461936245, + 0.0013705466901287853, + -0.0010291196205530948, + 0.0015104060154639998, + -7.28223225644797e-05, + -0.002213914845081422, + 0.00191118314223775, + 7.431065095257667e-05, + 0.000392653677461934, + 0.0016864957798449092, + 0.0018111238290088752, + -0.0011266727596784636, + 0.0016348506242050776, + -0.0008502771507828571, + 6.915849312201183e-05, + -0.000776488604783856, + -0.0008389171491044452, + -0.00018767712166534772, + 3.375526632793528e-05, + -0.001963722906934987, + 0.0002847409331890699, + -0.00026167410661947436, + -0.000902841807637602, + 0.0014977529702436853, + 0.0018889554126777011, + 0.0017935949740477946, + -0.0007068339801629388, + 0.0005219413042715401, + -0.0002551518982338158, + -0.0010188565323870737, + 0.0025073067624296974, + -0.00014560191243280984, + -0.0007221651315943252, + -0.0018812867341764777, + 0.0013835999655679135, + -0.0012266959334664644, + -0.0007955733975550133, + -0.0005780694640991179, + 0.0002303939949118471, + 0.0013171042191918272, + 0.00033510962049424387, + 0.0004233644661454179, + -0.0013893491055372415, + -0.0012053766259647687, + -0.00024083890779543252, + -0.0004755312216196075, + -0.0006087591665366053, + -0.0001331325388253756, + 0.0007797191144816566, + -0.00014752978636978768, + -0.000337732119516129, + 0.001042051058375504, + 0.0008704887441414064, + 0.0012754415639450955, + -0.0020588672815765583, + 0.0003007684233623938, + 0.00013513231597938078, + 0.00038878803486611075, + -0.00094106056671009, + -0.0011130685806486202, + -0.0007320589029872756, + 3.742374637671408e-05, + 0.0016924645427456213, + -0.001509926096401841, + -0.0007586238447456048, + 0.0020926437588967123, + 0.0020046722325913085, + -0.0001956850766341046, + -0.0003572337252814789, + 0.000795240175474334, + -0.000207674690406096, + 0.001715335255982106, + -0.0014133791441005442, + -4.73467651082631e-05, + -0.0001434092810568783, + 0.0008668149937825248, + 0.0003772407610208521, + 8.927969130562437e-05, + -0.0004075688576260636, + -0.0007562716627201976, + 0.00017263859815034766, + -0.0002727618160032937, + 0.0003634311264587644, + -0.0003969001479080198, + 0.0005750488117243685, + 0.0014028399000779281, + 0.0009523583326846977, + 0.00011937457416130827, + -0.000867827387308768, + 0.0013895796641168639, + -0.0005384693199435318, + -0.00022170236639162185, + 0.0012688204920828267, + -0.0005155087553797865, + -0.0016171781154221683, + 0.00019273043840492785, + 6.05400905724785e-05, + 0.001526590622714586, + 0.001321230554870473, + -3.125407937410362e-05, + 0.0006530708414912342, + -0.0004244221699182637, + 6.5093144041870094e-06, + -0.0009249519711157076, + 0.0005951550970643876, + -0.0010087620059996286, + 0.0011416375998841346, + 0.0004215224742540853, + -0.00014150044343647257, + 0.0004091571942092952, + -0.001642656693183743, + 0.0015323464881712386, + 0.0001649383252042196, + -0.0008735941940370457, + 0.00010994249033523816, + -0.00032416820076257475, + 0.0018146398762113644, + 0.0026226609140734543, + 0.001513095449298825, + -0.0010674531460475277, + -0.0013893384511894074, + -5.9886539118880244e-05, + -0.0007817190922656954, + 0.0003976203199105395, + -0.0015897165903643548, + -0.0005319040181826537, + 0.0020255983690700727, + -0.0015619109599287694, + -0.0006674739203056095, + -0.0012459172832557824, + 9.558099039910073e-05, + 0.00019841863918110695, + 0.0013149064409836999, + 0.0012453298882578003, + -0.0011728191449651485, + 0.00030955916486962706, + 0.00014938778318738293, + -0.001770822610332583, + -0.0004674120226858995, + 0.0003193903887486289, + 0.0015826576019005235, + -0.0002145507413838174, + 0.00016956563761580788, + -0.0015821786109463274, + 4.636934764081868e-07, + -6.5529624539878546e-06, + -0.000910545809920793, + 0.00026363200852265207, + -0.0006352783850071999, + 0.0007430346508666614, + -0.0007584574500557427, + -0.000350836628007373, + 0.001826069643479992, + 0.00038883931640081514, + 0.0012151748174372983, + 0.00023075605410517188, + -0.00037719802965800926, + -0.0012142793071346157, + -0.0006622683539599716, + 0.0006803262959615222, + 0.00043146077720037507, + 0.0008270472834066952, + 0.0012893162931136583, + -0.0015554794788822063, + 0.00038089480382909845, + 0.00046535342722879287, + 0.0010582636704176923, + -0.0013047075227688714, + 0.0008924509361585241, + -0.00011672046286511743, + 0.0016466957932452753, + 0.0004694514717989001, + 0.00021618799396451094, + 7.233795385160803e-05, + -0.00033410306948384677, + -0.0004856951891653224, + 0.0002490498322420274, + 0.0002291288341693471, + -0.0011763817398184036, + 0.000995101256672553, + -0.00036662664710421266, + 0.00014247916095569632, + 0.0002764575284355977, + 0.0004712936494350812, + -0.0011953046531295716, + -0.0001932853205817861, + 0.0003231879670319909, + -0.00021712522024175355, + 0.0013671008907419186, + -4.9926934284278275e-05, + -0.0015689521191738372, + 0.002270482679311869, + -0.0002983722233201883, + -0.0005019507446934675, + -0.0005751016111442322, + 0.0015159117492781619, + 0.0007610841109799923, + -0.0006855190423934663, + 0.0012723173671336018, + 0.002230525312155088, + -0.00025335638705477565, + 0.0018564796552419896, + 0.0012340652878858802, + -0.00141562598334178, + -0.0006079785008845521, + 0.00033674605114971854, + -0.00044062808674288234, + 0.00040264828284959994, + 0.0016390898517184443, + 0.00026665026546064305, + -0.0002503483251249077, + 0.0014159714732116134, + 0.00023803736151676024, + -0.0004084707525186938, + -0.0007376759738016058, + -0.0011879263586698676, + 1.9928701650405975e-05, + -0.0006637427961113709, + -0.0010768025137168717, + -0.00021630615103722473, + -0.0008244831301827721, + -0.00022617012035002848, + 0.0010285696260966246, + -0.001151272308031289, + 0.001133194587036383, + 0.0006973062187150196, + 0.00020579794856829116, + -0.0007120345800856968, + 0.00047700639147278223, + 0.0011561715167156144, + -0.0001424799668470613, + 0.0010306005723754146, + -4.837838060842088e-05, + -0.0006971168957809865, + -0.0009108044724800979, + -4.752089877120043e-05, + 0.0003249859213228721, + 3.942521212270479e-05, + -0.00019715315962356525, + -0.001984900595475657, + -6.379011696598591e-05, + -0.0006458139732965269, + 0.0016282179565458937, + -0.00126005336464622, + -7.428535359632794e-05, + -0.0006567022295510357, + 0.0012463292031156838, + -0.00022024605413766978, + 0.0011030068598674716, + 1.380375021493714e-05, + 0.0008355692721740414, + 0.0008804907679214166, + 0.0009940532392220325, + 0.00015370657372750854, + -0.00024228088418645443, + -9.432797788890617e-05, + 0.00031518129739299775, + -0.0007905716527070723, + 0.0008675511971248253, + 0.0005692618701240886, + -0.001270431048964984, + 0.00038064402825383365, + 0.002945002101068528, + -0.0001700091171736281, + -0.000126576666676782, + 0.0006601026952044155, + 0.0006355245484148813, + -0.0002202738853410731, + 0.0004768919494026339, + -5.159020528141428e-05, + -0.0005251087951984706, + -0.0023972890644364006, + -6.208082513425858e-05, + -0.0006621435540546064, + -0.0005903211386581622 + ] + }, + { + "legendgroup": "Beam sensor 3", + "marker": { + "color": "rgb(220, 176, 242)" + }, + "name": "Beam sensor 3", + "type": "box", + "y": [ + -0.0011345968091148282, + -0.0011352936311848575, + 0.0028328654530108736, + 0.0004879792374491136, + 4.044460349473798e-05, + -0.000127024213727682, + 0.00045476088002346324, + -0.0012211675696379382, + -0.00011974218605859685, + -0.0020490534715780348, + 0.0005109818512646753, + 0.0005709890655565807, + 0.0024773239962690347, + 0.0009275672240579495, + 0.001483106026917013, + 0.001065697959813219, + -0.0001777374061820118, + -0.0012802361856831034, + 0.0009778803903601222, + -0.0008106720782795153, + 0.0010007861637401393, + 0.0010001071383940988, + -0.0010772350791259826, + 0.0012144530550111906, + -0.0005832952625162228, + 0.0007268548592657051, + -0.0008895099481190926, + -0.0012450355530321522, + -0.0008010949337078925, + -0.0002798613765556619, + 0.0001361522328628964, + -0.0007248909945125654, + 4.836622184365765e-05, + -0.0009574665873282719, + -0.0010408745703901275, + 0.0002250622818528657, + -0.00011288205646415053, + 0.0005146509741145163, + 0.001199356830995025, + 7.575759606194611e-05, + 0.0009542320287106569, + 0.0015587115315622124, + 0.0011912987978374284, + -0.0002718920955558488, + 0.0010601514889376597, + -0.0009664841556979419, + 0.0005754750161452957, + -0.00046165570247116343, + -0.00041544166415550637, + -0.0006390470640601244, + 0.0013193209868507098, + -0.0006826203984999722, + 0.00029761463633055165, + -0.00031200383948995497, + -0.0016446567688536055, + -0.001474697918977142, + 3.6263816911584685e-05, + 0.0012688064251157173, + -0.0009305801847842945, + -5.350030748910838e-05, + -0.0010212735786975854, + 0.000539504668544406, + 0.00038898118025718634, + -0.0013130280738549798, + 0.0013100087712851166, + 1.1244280102980323e-05, + -0.0010959183394442195, + 0.0005332505668320032, + -0.0002813473151631482, + -0.0010647916641325504, + 0.0016245896021100479, + -0.0018681752338797783, + -0.0011956001883669971, + -0.0010058659495776657, + -0.001265084866708506, + 0.00020279176175484395, + 0.0018086886849504986, + 0.0002758530187399426, + -0.0002022923386035081, + 0.0006124948267689698, + 0.0013306522949087512, + 0.0015136656997164536, + -0.0019413402343945558, + -4.8979014726842636e-05, + -0.001454986233769379, + 0.0010107076566254413, + 0.001125062636377078, + 0.000941849011636438, + -8.97082235330034e-05, + 0.0007180331247360254, + 0.0010060730057458599, + -0.0006177553035232674, + 0.0010039118617475654, + -0.0004312943573880039, + -7.589444368285517e-05, + -0.0007262214634066759, + 0.0007755209410635437, + 0.001440006175956381, + 8.343612230715664e-05, + 0.0007100446548468068, + -0.0010963600859929903, + -0.0005252891031523452, + 0.00015037367034779876, + -0.0015971340517660602, + 6.92561780242854e-05, + -0.0005362437280591875, + 0.0027905631090967224, + 0.0012827354429079476, + -0.0021885029821244392, + -0.001495256725521392, + -0.0005522427283879441, + -0.0004965733434344765, + -0.0009457902598834847, + 0.0005531949132181978, + 0.0005734509163622726, + -0.00039893314310810303, + -0.0015846158698905517, + -0.001106425120259252, + -0.0012229378552278377, + 0.0002519420669607126, + -0.00019732449427532807, + 0.000949005520969708, + 0.0007685771364653657, + 0.0016099126512225468, + 0.00046410769603777327, + -0.0013097655517501279, + 1.06309692800162e-05, + 0.0021040909756712433, + 0.0019807637514269, + -0.0015417882219040597, + 0.00133931486547842, + -0.00011268296094524505, + 0.00038167527200736026, + 0.0004028607419002884, + -0.001708534419116063, + 0.002178671897879258, + 9.468608085864894e-05, + 0.0002454519863121095, + 0.0012356759123159226, + 0.0007737819818650233, + 0.00044283676892914806, + -0.0013933309194666137, + -0.0005064794287235709, + -0.000652464086105222, + -0.0016979351008982073, + 0.000490115320472407, + -0.0018038831140816788, + 0.0004272723877042774, + 0.0011876036772151633, + -0.0004830815285979303, + 0.0005096456900355905, + 0.0008116620941809843, + -0.0004796475550768617, + 0.000597520409584973, + -0.00019472570598395497, + 0.0009515977367932915, + -0.000814525457353689, + -9.736976554874296e-05, + 4.451430275606397e-05, + -0.0004569046490416888, + 0.00037934614610915426, + 0.0005300449324398648, + 0.0008450663611804558, + 0.0005741961988702703, + 0.0010432032551690674, + -1.6198680854391295e-06, + 0.001359194274257276, + -0.000452595794775603, + 0.0003238894945032673, + -0.0007699750749031704, + 6.345480322392064e-05, + -6.895493843732327e-05, + -0.0002183240739830803, + 0.0002719452324609611, + 0.0001496333317363556, + 0.0012121880933086118, + 0.0006909553162944506, + -0.0007264513416435122, + 0.00016610390638039328, + -0.0008555619051827072, + -0.00023161127451981685, + 7.148587066608686e-05, + -0.0007454556738085146, + 6.94502742815314e-05, + -0.0013290818568350764, + 0.0006808265930835034, + -0.00017090296908973664, + 0.00032731285979431556, + -5.6677534908868894e-05, + -5.921941072414389e-05, + -0.00036122312852166215, + 8.660024888453834e-05, + 0.0013394924227384324, + 0.0009934541427356377, + 0.0019427272737212327, + -0.0009781988940933365, + -0.002027672737402089, + 2.4590016862560146e-05, + 0.0012411816679957935, + 0.0012074968444073437, + 0.0003485653576033737, + -0.0014690220082438192, + -0.0014105758737259586, + 0.0004232877192014573, + 0.0004818847380598733, + -1.2745732278720125e-05, + -0.0007527174563961734, + -0.0004367090692852843, + -0.0011006941248931867, + 0.0012972937421712868, + -0.0009180123036620576, + 0.00042313151735648945, + -8.830587102373205e-05, + -0.0004796979432232879, + -3.633179256286271e-05, + -0.001009228467705239, + 0.0004169300071092582, + -0.0006575982307071125, + 0.0006386238039471845, + 0.0007906213403935528, + -0.0010661250843305174, + 0.0006750587386434607, + -0.0006031429163394463, + 0.0013396451621591084, + 0.0001942633916700468, + -0.0004614257689462302, + -0.0006059847363278554, + -0.0017241175436280918, + 0.000428828205761167, + -0.0014811806208219432, + -0.0006259995157831877, + -0.00033515231851087525, + 8.561888821753586e-05, + 2.217697442436953e-05, + -0.0003451408079282578, + -0.00015931141596598044, + 0.00010408023445775976, + 0.0011296541744060164, + 6.5082676488161785e-06, + -0.002213793526125386, + -0.0005124387493542128, + -9.74342661083846e-05, + -0.0006502245724262296, + 0.0004065283816015984, + 0.00018789822866408613, + 0.0005318710827390783, + -0.0011244862225080303, + -9.843867685430494e-05, + 0.001530578363598788, + 0.00032806301255962307, + -0.0012500560318800518, + 0.0008068535170515787, + 0.0009104872609724457, + 4.5469424395942774e-05, + 0.0023740347649895605, + 0.000808668049793506, + 0.0004928392830175658, + 0.00036282020729605936, + -0.0005524993862106005, + -0.0009004506022524439, + -0.0001250406103524139, + -0.001132081279354095, + 0.00033765340628494236, + -2.0385983862998595e-05, + 0.0012105265009422499, + -0.0020373000881307116, + 0.0002330683472575695, + -0.0010529757001541188, + -0.0026684211409163526, + 0.0017837340388172662, + -0.0006555067325563043, + 0.0007018839180394053, + -0.0009795527855606522, + 0.0007034602113248666, + 0.00226468431482109, + -0.0006196427684462601, + 0.0010388827064113037, + 0.0008790003448427491, + -0.0018724238767776986, + 0.0016835980623994202, + -0.0007557311381780848, + 0.0017174341153960138, + -0.0001881720358849571, + -0.0012363629429438553, + 0.00014724502464770795, + -0.0005967817793340999, + -0.0017690030600592207, + -0.0010033430408388838, + 0.0014116750978680089, + -0.0008679416415689682, + 0.0011102427816870905, + 0.0011196579120122112, + 0.0005735173995920985, + -0.0008472981879152819, + -0.0008366165194399446, + -0.0006424422249765185, + -0.00024393908707101393, + -0.0001244679606409823, + 0.0020060891322725696, + -0.00021233762708132285, + 0.0017815620684137484, + -0.00042609231321134324, + 0.0006141798569623964, + -0.0006639168510015933, + 0.0005467071772141366, + -0.0004797275964051827, + 0.0009101579633162192, + -0.0006459894048675645, + -0.00037257640647661366, + -0.0003029245721316128, + 0.0006414437406629035, + 0.0005880670278052728, + 0.0007873821198368815, + 0.002139348000008852, + 0.0014643621439594976, + 7.25703850454027e-05, + -0.00013206124440462164, + 0.00012848470989729012, + -0.0004227263296856066, + -0.0006564034300115121, + 0.0006031371206176275, + 0.0013395663674214146, + -1.8473315681659582e-05, + 0.0009454796827907408, + 0.000795034839371586, + 0.0005643113614296862, + 1.1458998504919546e-05, + 0.0009528550990933012, + 0.0006466961520689234, + -0.0013769496057708937, + -0.0008019950587967705, + -0.0002006855607800146, + -0.00044402564548780927, + 0.002553896724513826, + 0.001429597043467394, + 0.0012504938792266625, + -0.00030417639049298866, + -0.0001503833150617484, + -0.00019187105150454058, + -0.00031794159988367043, + 0.0004046005361619549, + -0.0008689957643267143, + -0.0007751860995803515, + 0.0002573228404323334, + 0.00131585440767996, + 0.00035637370640458283, + -0.0014062150903479055, + -0.00021506721000441855, + 0.0009129303531423193, + -0.00019802366824420224, + 0.0007287289173733798, + 0.0003664255923884009, + -0.0015908006078683204, + 0.0012812824203924944, + 0.0004762362276968797, + -0.0006175223670872605, + 0.0017171547873418385, + 0.0013177849965086861, + 0.0004609201509669587, + -0.000636275462447756, + -0.00022181272891956522, + -0.0004860835867272129, + -0.0015431552900779164, + 0.0010157155186157555, + 8.384874913364913e-06, + -0.0022003358247471953, + 0.0017516822857354156, + -0.0007296985270800716, + -0.0018544526066314614, + 0.0008413972474362151, + -0.0010121533334243712, + 0.0008977089127787828, + 0.00043695845526902526, + -0.0001270331939564472, + -0.00024952127985397913, + 0.0013929189423087264, + -0.000632739572583471, + 0.0012262815675275584, + -0.0014463762941345942, + 0.0011969387859215135, + 0.0010139566388496202, + -0.0011095346460981233, + -0.00022750706571733324, + -0.00018804975859120957, + -0.0010788918407297027, + 0.0006163301261866656, + -0.0001634685808988138, + 0.001209912805722195, + -0.002659324913627653, + 0.0010507187176326432, + 0.0008706167946335917, + -0.0012477960773050122, + 0.0002424210081173168, + -0.0005516303680711787, + -0.0018026047855402314, + -0.0009691210993947504, + -0.0002498870275022445, + -5.225427835150992e-06, + 0.0001320395790238926, + -0.0018242067548793102, + -4.5445615357434126e-05, + -0.00020079617830415708, + -0.0005067514816701942, + 0.0006805749171862209, + -0.0011467334430734816, + -0.00134818535826861, + -4.000701296655254e-05, + 9.510494960404052e-05, + -0.0016987921224142799, + -0.0011212671687610574, + 0.00016182424071245239, + 0.00030180751415431013, + -0.0008738618905945097, + -0.00042051130417933335, + 0.00013399475130515282, + 0.0014269538988957576, + -0.00028563566146197673, + -0.001538114270770824, + 0.0002452656409936184, + 0.0001091361615895872, + -0.0006352989534583433, + -0.00019709482580536477, + 0.001815829284812415, + 0.0014863776606531438, + 0.00021304097616593732, + -0.00045688655891213786, + 0.000519119094484015, + 0.0011073516133247247, + 0.0002459726577723135, + 0.0012992759395594384, + -0.00018608907784751873, + 0.0008206178486815109, + -0.0014393305725788593, + -0.0009420952782408943, + -0.000106406300381771, + 0.0001659087729265652, + 0.0003684643520026587, + 0.00018854580467610687, + 0.000447384404010978, + -0.0007250239822652038, + 0.000300500596909111, + 0.0014951456119357278, + 0.0007693855266453203, + 0.000608130386694872, + -0.0009419099401658967, + 0.000394142050196356, + -0.0003264144042109948, + 0.001089928430658076, + -0.00018227778630054117, + 0.0002595073859460528, + 0.0006896995950358722, + -0.00021177396222842775, + 0.00030330160250243023, + -0.0015813716870943647, + -0.0025346419449633257, + -0.0010378914828373027, + 0.00017991429068617797, + -0.0005024356961743526, + -0.000902908299434763, + -0.00043253292393898886, + 3.2593550461452554e-05, + -0.000971916358668886, + -0.002143200283407482, + 0.00026902995997568017, + 0.0009635269121446957, + -0.002142119684467751, + 0.0004366557976927534, + 0.0014166644537028257, + -0.0009804896281190088, + 0.0004019973178546629, + -0.00062610341845985, + 0.0005664872941845794, + 0.0005244804239627989, + -0.0014023341804215166, + -0.00016385225247000243, + 0.00031276897627344235, + -0.000841468560202266, + 0.00110103810290347, + 0.0005585548643618402, + 0.00042209482154667127, + -0.002047456498875736, + -0.0003612053413314929, + -1.4698225197797151e-05, + -0.0016003376690670373, + -0.0001004612092075541, + -0.00021035022219686268, + -0.0005540795409281844, + 0.0007138512478584124, + 0.0013979698108285662, + -0.0009816673630147455, + -0.0002041292777044633, + -0.0004722998892000093, + 0.0007050343318152107, + 0.000190877241034586, + 0.00018188175515734353, + -0.00012720771745731115, + -0.0008774489980259871, + -0.00044148988806275196, + 0.0006080097570423206, + -0.000188537914342244, + -0.0013352329910822037, + -0.0003642186433746423, + 0.00013332762497934598, + 0.0002728867696818614, + -0.0005192926661142978, + -0.0001767379170440732, + -0.0016779718694135111, + -0.0005710950524476865, + -0.0012001994674361218, + 0.0017816108535161175, + 0.0003423409244141015, + -0.0009978646060915313, + -0.0008018981015234798, + -0.0009962965167995407, + -0.0007473291423762364, + -0.0011219228596356034, + -0.0014986596190155526, + -0.001722050141701561, + 0.00229429217430404, + 0.0008929038775621137, + -0.00029180959223305754, + 0.00015880396942555554, + 0.0007104386982989371, + 0.00028673228454150824, + -0.0020923916342179215, + 0.0002885054409565847, + 0.0011707143940313267, + -0.0006849704355735021, + 0.0009264501714133015, + 0.00022653708991198616, + 0.000663767012498146, + 0.002610117530449907, + -0.0008236331565103872, + 0.0022387351668442827, + 7.31514849939929e-05, + 3.2798513680106555e-05, + 0.0004382462774872855, + 0.0003169342627248736, + -0.0003370164733668951, + 0.00101621756588477, + 0.0002858144313756998, + -3.752067645479931e-05, + -0.001160829140767746, + -0.0004095177348319679, + 0.00019440443049001326, + 4.1557081050137774e-05, + 0.0006712621337085641, + -0.0009697774385234184, + 0.0014417764493191972, + 0.0003004624964337338, + 0.002118595502012883, + 0.001117361603141845, + 0.0018565230772310602, + 0.0007284352116729267, + -0.0013099641927609125, + -0.0026904739881791206, + 1.1328378760481472e-06, + 3.3896878948003236e-05, + -0.0013561268734602686, + 0.0007943263331190525, + 0.00033454048948213726, + 0.0004563082149416879, + -0.00127680514158798, + -0.00041506774359991073, + -0.0012407359099361334, + 0.001927909604047435, + -0.0006093975883320961, + 0.00035673302718777235, + 0.0003574668193792334, + 0.00024366743528909723, + -0.0018216790046960175, + -0.0005882207147303211, + 0.00020664584549704888, + -0.00013057660642231403, + -0.0003579240437848589, + -0.00015671131056324477, + -0.0019667630241909234, + 0.0007173069156390745, + 0.0012176240064491572, + 0.0011699032667580123, + -0.00022475969857516619, + -0.0003319038053953, + 0.0009157692692667857, + 0.00010511589853770866, + 0.0019154683254815556, + -0.0007084240858907752, + 0.0011126529128677842, + 0.0009208214591908968, + 0.002726152373971731, + -0.0008435360133112632, + 0.0010647642248646338, + -0.00011588845565872413, + 0.00040190928346350494, + -0.0007110817976363628, + 0.000989527522272785, + 0.0006342489366676532, + 0.0018792755603577356, + 0.00028024915527671336, + 0.0004304511397844444, + 0.00040824507531053245, + -0.0009857646731250005, + -0.0009771961987549468, + 0.0010189298735427434, + -0.001340224950216132, + 0.00026021684041570466, + 0.0002750377319240482, + 0.00035363101951111357, + -0.0007017643610869721, + -0.0002530116980056903, + 0.0007561661946889019, + 0.001284217466325744, + -0.0024554125740775716, + 0.0006064276606196361, + -0.0026595958021479412, + 0.0008008000091089038, + -0.0011009800860320843, + -0.0007533383015586599, + 0.0015140518443298413, + 0.0004999647056944941, + -0.0016417008877083242, + -0.00043145994758721174, + -7.210441075043162e-08, + 0.001794692240922303, + -0.00045031932532312886, + -0.0001126120382376579, + -0.00018618730597959245, + 0.0004687882019564298, + -0.0012683289218580246, + -0.00010249444862500662, + -0.0004277369121565318, + -0.001101842377782821, + 0.0001479834050216282, + 0.0003915418841186371, + 0.0005136470747143289, + 0.0014027990267728072, + -0.0009294513277130409, + 0.0006235823655864837, + 0.001548331139671327, + -0.00036053240687628125, + -0.0005021760293711275, + -0.002001948890619978, + -6.509045742854899e-06, + -0.00024250929454369577, + 0.0015782509765314544, + 0.0011995418607585089, + -0.0008745727022865683, + -0.00014879176311513524, + -0.0011799232069409024, + -0.0016960676860857643, + -0.0011374961419333824, + -0.0005344576353282002, + 0.001095821176795178, + -0.0017820916683385453, + 0.0005108777504676928, + -0.0008735429769146127, + -7.151070896104539e-05, + 0.0011565230389116768, + 0.00036072099820840225, + 0.001243282441963039, + -0.00031813845416906654, + 1.9951062827124287e-05, + 0.001318381572826376, + -3.982012297092679e-06, + -3.7978166371625076e-05, + 0.0007779329756749063, + 0.0018803720404833345, + -0.00037768898665115584, + 0.00023724523704473112, + 0.0002642366064965282, + 0.001243004777867005, + -0.002168612715485521, + 0.001322006257457387, + 0.0004896220885760361, + 0.0009170410683236268, + -0.0014947382586198018, + -0.0009649186989794586, + 0.0009205624160361918, + 0.0004388894431166028, + 0.0020410052564639627, + 0.0007715372877425752, + 0.0007627900847671227, + 0.0013142425766801183, + -0.00038755736546448443, + 0.000629458468688454, + -0.0003662344336885999, + -0.0003379377961187284, + 0.0014643445023604677, + -0.000702482554368167, + -0.0010372845106553924, + 0.0015284460008341066, + 0.0004103096430424406, + -0.001032550657460313, + -0.00010424370219662623, + 5.2630077858666565e-05, + -0.00014460863240206006, + -0.0011504344573038487, + 0.0007494388957368272, + 0.00036398297585981516, + 0.0008181195360469584, + 0.0009214888073520355, + -0.000162120057957732, + -0.0004680976448359527, + 0.001946096443749578, + -0.0003061940480984437, + 0.0015799973756416988, + 0.00044919507653670384, + -0.00025382745461145285, + 0.00040211111049425163, + 0.00256388650806712, + -0.0007961903952110704, + -0.00042465060673956484, + -9.14787582963835e-05, + 0.0004084272880433602, + 0.0009174841009083313, + 0.0014944804831477014, + 0.0010505667060865531, + -0.0006502684171805022, + -0.000977144386611978, + 0.0016196069760195286, + -0.0018410410735274422, + 0.000494148510818571, + 0.0009262769053095737, + 0.0006684638750611176, + 0.000903348848294256, + 7.046734308056385e-05, + -0.0008421684537428144, + 0.00015938506939302833, + 0.0009640211079311771, + -0.0033688255974265863, + -0.0014604249420422455, + 0.0015843509342613807, + 0.0021358104007634555, + 0.0016193262267935888, + -0.0016058040398684843, + 0.00039604966472115257, + -0.0010184829289109241, + -8.693590722064546e-05, + 0.0009692071555424253, + -2.4011683258587696e-05, + -0.0004812936682533527, + 0.002425669833196007, + -0.0009620417659678435, + -0.0010695178355759436, + 0.0008206602033884932, + 0.0010836542829876705, + -0.00030904890517557466, + 0.0018741912697991952, + -0.00055203950151789, + -0.00043811399059244185, + -0.0009099924441403068, + 0.0007292759191767654, + -0.00012132492171632567, + 6.479312557396114e-05, + -0.0016390961420922842, + 6.460453215590736e-05, + 0.00032656535945330324, + 0.0012106729559742467, + 0.001421436033211804, + -0.0008130254497262692, + 0.00014887359577358674, + -0.0008417501377520041, + 0.0010648599528403579, + 0.0007904612163497468, + 0.00019477188877853416, + 0.0020946396237429728, + 0.00023427141035955936, + -0.0017854377301372748, + -0.0001694239500986536, + 0.0016898956112690754, + 0.0008735066079788168, + -0.0009436969466938487, + 0.0009728439917390306, + -0.0005821528817903685, + -0.0005619546204267358, + 0.0017727699273255638, + -0.0009510655691568182, + -0.0019963812718179898, + -0.0025959292126753485, + -0.00013363958663705107, + 0.0013978044850930433, + 0.0005989992456943917, + 0.00034393131849056103, + 0.000699929837541098, + -0.002025791955696721, + 0.000265949614604873, + -0.0014333621060770609, + 0.0025866320539738048, + -3.244184637110185e-06, + 0.00036094081892434795, + -0.0004061598769303685, + -0.00025851844382351896, + -0.00016978676024106227, + 0.0024812720759203196, + -0.0010018723388130763, + 0.0005469083651309429, + 0.0015821397926420924, + 0.0007168800191633259, + -0.0007282550197280762, + -0.0006328328073742619, + -0.0005150809168622914, + 0.002750086707148638, + -0.0008517682352144598, + -0.00010251578654149366, + 0.0010436010237911497, + -0.0015185957443393963, + -0.0009360527966580038, + -0.0003110853126526294, + -2.8573111628070583e-06, + 0.0013997945593994254, + -2.9364939617452094e-05, + 0.00038761184818510386, + -0.00010470173259512821, + 0.0004290696430128744, + -0.001642914690294761, + -0.0014642762560815965, + 0.0015546232833970701, + -0.0007796415523304567, + -0.0008679688796976734, + 0.0022103810341161955, + 0.000348228837332411, + 0.0013125092853495174, + 6.842625450198349e-05, + -0.00047436899567570255, + -0.00022013026715939988, + -0.0012535339671352935, + -0.001523348167082572, + -0.00038390868156241374, + 0.0007945285322293532, + 0.0007574062344048908, + 0.003558615983102008, + -0.00020495425482590216, + -0.0013471978669995456, + -0.0007405599391066903, + 0.000601828913886717, + -7.480013020725228e-05, + -0.0013290040217790828, + -0.0005268637794223627, + -0.0006956400993031179, + 0.0002471855663032847, + 0.00015750516962478812, + 0.0005507801174011429, + -0.001112716950819593, + 0.0023897249774593593, + -0.0002441502269873142, + 0.0004906291981679835, + -0.0008381856620964735, + 0.0007151802192318778, + 0.0007263047801777168, + 1.422302077920859e-05, + 0.000926060514637613, + -0.0021364630604466836, + -8.761210904137463e-05, + -1.7578715648135922e-05, + -0.00022614331186997184, + -0.0012287159029206766, + -1.3697848361134341e-05, + 0.0001665437859012434, + -2.533731592928888e-05, + -0.00035124042946494625, + -0.00088444214884431, + -0.001112510622298578, + -0.001237640451052715, + -2.1384672245810295e-05, + 0.0006785048799702278, + 0.0015184610392780975, + -0.0003490026288515567, + -0.00029303010968627894, + 0.0012587515782349166, + 0.0016864473879033787, + -0.001830944515002053, + -0.00029313309936785113, + -0.0026227352497161568, + 0.0006257910181674272, + -0.0011245533313200828, + 0.0018911708850953008, + -0.0013793426651233281, + -0.0004882183311235666, + -0.0006763973331321345, + -0.0015617738241589887, + 0.0006369599586626845, + -0.000703576088449516, + -0.0011166938725041412, + 0.0001293279182177053, + 0.0012397632442762558, + 0.0010928733658864638, + 0.0009507446808617388, + -0.0010321512100305908, + -0.0006561887562055445, + -0.001406136494026578, + -0.00041547553507592514, + 0.0003644299477297355, + 0.0005272766182353227, + 0.0010970762553978704, + 0.00024908944826814274, + -0.0012397826325983591, + 0.002263610595893462, + 0.0007878709752757361, + 0.0003323172147487219, + 0.00022745210295737673, + 0.0005259134910468897, + -0.0014802013992577165, + 0.0007272164097654218, + 0.0005431338903763188, + -0.0014373654363627184, + 0.00030226624761275716, + 0.0001503210945554013, + 0.0007971140393302223, + -0.00015714479114096596, + 0.0014296022095218333, + 0.0005178739029175293, + -6.35737333337981e-05, + -0.0011913470770732713, + -0.00036508363735917037, + -0.0008328121211277351, + 0.0002905738622381344, + -0.002294277921377389, + -0.0006050820622869966, + 0.0007753362560085412, + 0.0009700984451353674, + -0.0015797108130679509, + -0.0007442289717301771, + 0.002063464540310377, + -0.0008337894220568002, + -0.0015476249231817978, + 0.0005372341925509786, + -9.712554399021475e-05, + -0.0003341543389786581, + -0.00033092163518090437, + -0.0010899119388314152, + 0.0002946178821005206, + 0.0005443151717781717, + 0.0004371398937166027, + -0.00018762491706623952, + -0.0005242334056786565, + 0.0003266238235419937, + -0.002785172041174267, + 0.00180091139906357, + 0.0013355943111254798, + 0.0005756242772627214, + -0.0014411748827808872, + 0.0006759566571140188, + -0.0010757949943180085, + -0.0007844969999729613, + -1.4894248011527565e-05, + 0.0009871792821941406, + 0.0005942629228431432, + -0.0007842303549069994, + -0.0012780179339363326, + 0.0012454517616857896, + 0.00022626782005085705, + -0.0012035643913628526, + -0.002299194041254451, + 0.0018992060280718932, + 0.0006766476658442874, + -0.0006235920661509385, + 0.0013850135250791213, + 0.0004273604485846383, + -0.00041503441127226266, + 0.0005069186323071284, + 0.0007089174457376794, + -0.0013494906203273106, + -0.0005542763920650677, + 5.529110926166521e-06, + 0.0009517870304450625, + 0.0011180583377635622, + -0.0016437173428224434, + -0.0003553552491446512, + -0.0003873033474879661, + 0.0004468932779563405, + -1.5785521211141177e-05, + -0.0002954998560332294, + 0.0008441554357716528, + 0.0005139200534167576, + 0.00013043788416063304, + 0.00015828331880827985, + -0.00048578337987950187, + 0.0006074329411101697, + -0.0001712983129469019, + 0.0007119848497950082, + -0.00019678961298235964, + -0.0013273428492823166, + -0.0007936769685683391, + -0.0008008326435273383, + -0.0011886270040316217, + 0.0015532868080178873, + -0.00037194595043182525, + -0.0011748135827589754, + -0.0006186901420122532, + -0.0005000678205576992, + 0.0014517360606727198, + 0.0006869629047726866, + -0.0016860258541409438, + -5.2686920761236336e-05, + 0.0004862760530018516, + 0.00016294281976048629, + 0.0007401543615424505, + 0.0009573169181252603, + -0.0005780097081434316, + 0.000312743779477393, + 0.001506859963045649 + ] + }, + { + "legendgroup": "Beam sensor 4", + "marker": { + "color": "rgb(135, 197, 95)" + }, + "name": "Beam sensor 4", + "type": "box", + "y": [ + -0.0007238365611321691, + 0.001422208145662363, + -0.00046182355799379504, + 0.0011620804712767657, + -0.0011408612997585931, + 0.001416304506282927, + -0.0005659085706556084, + 0.0001279477549734417, + 0.0005288093017844829, + -7.251451285450602e-05, + 0.00045612085557627234, + 0.0005023209150001255, + 0.00037729300341992657, + 7.33261630105511e-05, + 0.001711878951579515, + -0.0004614795592223112, + -0.0014604621689125314, + -0.00019991528134689888, + 0.0002152418887634345, + -6.332086292248451e-05, + -0.0014599654520228763, + -0.00038911644994872726, + -0.00048637414143617227, + -0.0005029427731240875, + 0.0012092957729230012, + -0.00013680124753370204, + 0.0005475455595027821, + -0.0008247179835368995, + -0.0009121884399465949, + 7.89074459792849e-05, + 0.0008469150504367454, + 0.0011956782931071945, + 0.00045930601164634636, + -0.0004756841452093029, + -0.0011948769064725464, + -4.7636800009693e-05, + -0.0006461712640670269, + 0.0007807839617459063, + -0.0031971252373712714, + -0.0006601904427072654, + 0.0011028378647499363, + 0.0005652695771979489, + -2.4077873402667376e-05, + -0.0005456862901858016, + 3.222265692706238e-05, + -1.1343049574277019e-05, + 0.0022080098251223658, + 0.0015982953501356776, + 0.0007063552764253195, + -8.838082280356033e-05, + -0.0018587902917707913, + 0.0011673166812714453, + 0.00024631659100155315, + 0.0006297080955478578, + -0.00028172616903434863, + -0.0004660523469458749, + 0.0006930429209739539, + -4.64471896188143e-05, + 0.0018177773434797408, + -6.695781545775592e-05, + 0.0010765548533736703, + 0.0023931967426326127, + -0.00041348899256754605, + 0.00016411288070877268, + -0.0004547910245910287, + 0.0021714070080258844, + 0.00048652843827208194, + 0.00010614905418559258, + 0.00037477353856155414, + -0.0003970630951097627, + 0.0009508715946501343, + 0.0003769956772366626, + -0.0009909075997357993, + 0.0009195967988910253, + -0.0016141095207942036, + 0.0009252312917785455, + 4.810858811047034e-05, + -0.000939877612565175, + 0.0010913569032763432, + -0.00046463148820169225, + 0.001125429279106306, + -6.390788196614326e-05, + 0.0008527642048399472, + 0.0004829632237732729, + 0.0004514643453100141, + 0.0001666458461478224, + -0.00013914174208523583, + -2.9942483670795166e-05, + -0.0004481041740533328, + -0.0017172174610491826, + 0.0013657041823595022, + 0.0011210337366774129, + 0.0003793011290843295, + 0.0006251331114176253, + -0.0001433961806182851, + 0.00015787326770752157, + -0.0014841095792207184, + 0.0002952184639200647, + 0.00028585681069920576, + -4.420390560267052e-05, + 0.0014718495318283454, + 0.0001364292489354064, + -0.0009322689612773639, + 0.001577087710576127, + 0.0011213507610268372, + -0.0012822591116111205, + -0.0004059135096327446, + -0.0008561709537986574, + -0.0008206977855334642, + -0.0007679666214122866, + -0.0006065823452661657, + 0.0001208630623800935, + -0.0011072881590551734, + 0.0006126003303089226, + -0.000325829051594793, + 0.0004916982979405825, + 0.0010193954202890507, + -0.0014336513505836441, + 0.0010067007065290095, + 0.0005252646665343508, + -5.6387705996322954e-05, + 0.001367915533191685, + 0.0004220612744915387, + -0.0012114679028643555, + 0.00032144316048838715, + 0.0008489953918027776, + -0.0003590760157824851, + 0.0008105274441405817, + -0.000714528876752989, + -0.0007893960625268588, + -0.0005021055772081865, + 0.00035224763423704995, + -1.5337935856080523e-05, + -0.0005786436030457609, + 0.0006296202061855066, + -0.00018616576825935757, + -0.001165222064088171, + -0.00046995560245363763, + -0.0007629959564891876, + -0.0009632136304821064, + 1.5526622864127612e-05, + -0.00040537424428572393, + 0.00045305010340137143, + 0.001108450507505691, + -0.0008712541546862861, + -0.0007103010216942613, + -0.000513692054770527, + -0.00037807655570159165, + -0.00042780619139920587, + -0.00026773087464870577, + -0.0002581650218683429, + -0.00018848704220397508, + 0.0016823112230514017, + -0.0007579074769087805, + -0.000648233333056778, + -0.000256786914237066, + 0.001715521051064902, + -0.00036816232571808716, + -0.000340039749341688, + -0.0013220440746121692, + -0.00019591750929088986, + -0.0008222357370946239, + -0.00023690297596095776, + -0.001697925172351127, + 0.0005254831696373273, + 0.000271230068150164, + 0.0008995975641467532, + 0.0004248535349361467, + 0.0012727324575987878, + -0.000726373066329425, + -0.0017572341468704814, + 0.00020628353875646493, + -0.00161419531904653, + -0.00013955592798595124, + 0.0008376331145086771, + -0.0007507449613305766, + 9.898356729787462e-05, + 0.0011941052830030698, + -0.0006343473578655406, + -0.0012372455666982236, + -0.0004152989708004281, + -0.0007588321804300718, + 0.0004325148036016525, + -0.000600219954311918, + -9.275670182372171e-05, + -0.0017143738269025342, + 0.001510548834102675, + -0.0008035028902209076, + 1.2708905779949893e-05, + -0.0006489971367776926, + 0.0006990204489041703, + 0.0008926057381214938, + -0.00016347359283302597, + 0.0004106808802412155, + 0.00040227311994521373, + -0.0018850813852388261, + 0.001142660958671691, + 0.0006307064027069697, + -0.0008989785165685945, + 0.000364483399707008, + 0.0016340115145942417, + -0.0004389516995922807, + -0.00027196910174533253, + -7.761062184878678e-05, + -0.00019938732051917363, + 0.0003651572884900039, + -7.627618869108697e-05, + -0.000724253106644665, + -0.000669758785357515, + -0.00011487640651810057, + 0.001175815214667405, + -0.0015339062186388124, + 0.0005961684018592823, + -0.000390703909434209, + -0.0004850007496444813, + 0.00039124329037329333, + 0.0010086915101876325, + -5.80699852345969e-05, + 0.0013344223040084482, + -1.0907823391804279e-05, + 0.0003368875830162695, + 0.0005781871328787241, + 0.002184504290940195, + 0.0002649936476800098, + 0.000926401546344197, + -0.000378422519455473, + -0.0002254115438635363, + 0.00038436155393561537, + -0.0003271915088285945, + 0.0009124631615701811, + -0.0009833709506648937, + -0.0001501127948525052, + -0.0008357181305968722, + -0.00038128728122640096, + -0.0004718984977272366, + -0.000819225740681075, + -0.0017786949437522174, + -0.0007901514553305185, + 0.0005638426134811152, + -0.0006759404166608696, + -0.00036336984065795904, + -0.0008849148990369064, + -0.0015478726858738395, + -0.002453229088108021, + -0.0006498686523118619, + -0.0002147680186552147, + 0.001288810546661206, + 0.0020435877975585235, + -0.00044063502653045485, + -5.775566602854738e-05, + -0.0012089430489153712, + 0.0015136623093321296, + 0.001045212585032999, + -0.00040485433400219543, + -0.000285290514070837, + -0.0013679719746415473, + 0.0010477524592620452, + 0.000743242537428548, + -0.0014748717587624118, + -0.0013227933857136356, + -0.0009688135607361184, + 0.0003112829038999454, + 0.0007902808125112518, + 0.00019759481909771548, + 0.0003432972171380161, + 0.0008921357715696713, + -0.00046245411053831814, + -0.0004703983085095954, + 0.0013721030268556257, + -0.0025184847152837793, + -0.0003340167890080206, + 0.0011820477927572076, + -0.001199016760903875, + 0.00100698146108661, + -0.0010128930892239496, + -0.000167106546398138, + 0.001357342300144174, + -1.9571293084940424e-05, + -0.00041720652675691444, + 1.2939743502707458e-05, + -0.0007664524543223647, + 0.0010858392164519663, + 0.001662305538785085, + -0.0008089054492150511, + -0.0005899814193597277, + -0.0005335394676817513, + 0.001360623628490032, + -0.0011431742513734495, + -0.00034395498656340524, + 0.00015510305106545012, + 0.00015143038800854565, + 0.0013230369085794162, + -0.00017375166442134944, + -0.002653803142705925, + -0.0004262521171834654, + 0.00029853558924274113, + 0.0014000888992237095, + 0.001063202183479995, + -0.0005423356138541092, + 0.00015087342569985963, + 0.0004553718839223916, + 0.0002450898265932137, + -0.0003762180077407949, + 0.0016504195784577463, + 0.0010319182996547107, + 0.0008556322080491087, + 0.0002856770479979268, + -0.0022891118108569423, + -0.00015547823304119313, + -0.00023081562888186503, + -0.00065173769730832, + -0.00042521337135338817, + 0.002205599704953996, + -0.00043303352940165715, + -0.0008717371266828727, + -0.0006627860166022061, + -0.00043791242548280127, + -0.0005911576251195973, + -0.0009286538287877216, + 0.002949361149666518, + 0.0010930264207674283, + -0.0024112221003779995, + 0.00025162143084730504, + -0.00016078809913564574, + 0.0008352226392735363, + -5.763535746452858e-05, + 0.0004447098246362991, + -0.00034378702580607377, + -0.00045876068337602125, + -0.001615326379187349, + 0.00010156574922523782, + 0.0007484700101767971, + 0.0012247210558484587, + -0.00014755826189157714, + 0.0014110709594243088, + -5.146627170490106e-05, + 0.00046207508490231597, + 0.0017375038848491604, + 0.001165350561270629, + -0.000991959050113435, + -0.0015986306560700468, + 6.42698060081221e-05, + 0.0006192679364016078, + -0.00036133421250225727, + -7.935251548523534e-05, + -0.0013097084381533085, + -0.00031729858415355104, + -0.0006062469449475171, + -0.0014123239098951118, + 0.0002978963859549895, + 0.0015420898569655289, + 0.00020502223617775464, + 0.0004229418198999238, + -0.0018278807787927584, + 0.001524318505405761, + 0.0011376210940991344, + -0.0008100526094624113, + 0.00016119579459366123, + -0.0001331142378005871, + -0.0009006579712072171, + -1.4564702179709903e-05, + -0.0009686876664416143, + -1.883990067719327e-05, + -0.00024123046384144482, + -0.0018191211036702158, + 0.0012567332566025748, + -8.97218355739255e-05, + -0.0010059519338432186, + -0.000494322027031096, + 0.0024622466437733605, + 0.0011315897263767386, + -0.0007907101493628186, + 0.0001367519215813352, + 0.00010842726680522751, + 0.0004432846153434119, + -0.001328661977608437, + -0.00028511266771717204, + 0.00032529855760680666, + 0.0007718936080112677, + -0.0004001351761146059, + 0.001491470617006801, + -0.00012240413221891608, + 0.00033354948995761743, + 7.713578172131934e-05, + 0.0006812119139887892, + -0.00115112360244216, + -1.7236674174519937e-05, + -9.885211120216027e-05, + 0.0014452852235678495, + 0.0006115414327961086, + 0.0005211946286289098, + -0.0012734766524451304, + -0.0005234382478110564, + -0.0008351299906608991, + 0.0015974891302450117, + 0.001224263012737884, + 0.00049278357141085, + 0.003346971752693694, + 0.0008487614258890781, + -0.0009705891489852981, + 0.00035407310634192235, + 4.1676220430103816e-05, + 0.001466982051464213, + 0.0013722113012781074, + -0.0003287838910881543, + 0.00043697666735823394, + 5.945820106607565e-05, + 0.0004000621130078526, + 0.00032160906007513133, + -0.000773186768488416, + -0.0013610972396548085, + -2.1557723276585736e-05, + 0.0010502022222916426, + -0.001531064958006946, + 0.00170986723044179, + 0.0005241328046616948, + -0.002007323254688498, + -0.00015331737609274105, + -0.0001593485208753324, + 8.658037310236487e-05, + 0.00088231311226219, + -0.0006801281008300223, + 0.0017040494517913424, + 0.0026100565922349828, + 0.00011009421065398535, + 6.317715102023021e-06, + -0.0021384725013907442, + -0.0014752975294774642, + 0.0021008091543584413, + 0.0003787150500437275, + -0.0023983346930032704, + -0.0003998185366157188, + 0.003188246893459123, + -0.0015089765403111103, + -0.00043411878655987777, + 0.0012757102353140536, + 0.0013836891078196534, + -0.00018344064651495192, + -0.0003309450075536727, + -0.00011270757529273602, + 0.00010519669933031635, + 0.00039261927570263745, + 0.0020648875745154383, + 0.000723662697837917, + -0.00048065053628505, + 0.00030960715466952094, + -0.0010881660858897018, + 0.0004029387893334566, + -0.0008167473398209687, + -0.00044895488135305905, + 3.2119153246386415e-06, + -0.00021170454080080155, + -0.0001295772673231328, + 9.516573552006665e-06, + 0.0007037112137984183, + 4.2995397551150254e-05, + 0.0004839699447218462, + -0.0006679233159645124, + -0.0014647440058847357, + 8.80069927893211e-05, + -0.0003175702388435268, + -0.00027441959956426117, + 0.00023124328787579195, + -0.00024744367483302255, + -0.0011757279548115676, + 0.00014112757389588742, + 0.00017702936398504392, + -0.0010440386681471454, + 0.00017836419650207424, + 0.00020522760586237285, + -0.0008506195183065297, + 0.0009612393862779437, + 0.00018783208133828526, + -0.0016615863570391075, + 8.311016166010579e-05, + -0.00011630541270614028, + -0.0006295587025951466, + -0.001085654538136273, + -0.0007552605110128703, + -0.0004910550713411064, + -0.0005437057917675124, + -0.0013891719431200246, + 0.0006109381061598482, + -0.0007152431628770143, + 9.902868048215504e-05, + -0.00012621717132294734, + -0.0008513811053565613, + -0.0012452067183734566, + 0.0005606463003541551, + 3.68323467491883e-05, + -0.00021415758181421522, + -0.0005038447296894682, + -0.000573204836737336, + -0.0007251323057947369, + 0.001970950172595187, + 0.001963468259072027, + -0.0006591567783317644, + -0.0009292275791368456, + 0.0007759193887822151, + -0.00045679521797735944, + 0.0012379198284648073, + 0.00040184604674859596, + 0.0009036914103188085, + 0.0019266563407728684, + 0.00033683872685270845, + 0.00094612322141669, + -0.0006180256345187389, + -0.00026583958812155707, + 0.0001399099407603922, + 0.0005568381199359748, + 0.001632479162481636, + -0.001299976563456823, + 0.001013114132002727, + -0.0011980593143740223, + 0.0013865685929376132, + -0.0005462097448166678, + -0.0002812158849421047, + 5.7418581110528104e-05, + 0.0002650675912443683, + -0.0003034362922177684, + -0.0003821142302607046, + 0.0022459816973009533, + -0.0007232282486911239, + -0.0006689346095781845, + -2.7733044776806273e-05, + -0.0015452022423842848, + -0.0008755771114483511, + 1.2993860390524749e-05, + -0.00023974336786903146, + 0.0006123347460271954, + 0.0008872547535505915, + 6.406397000764738e-05, + -6.431479537221966e-05, + 0.00018270886680164222, + -0.0002997080008497201, + 0.0005364521026656822, + 1.6254228030522237e-05, + 0.0003009144623393353, + 0.000634526095710903, + 0.0005016020067073444, + -0.001957347814112462, + 0.00012709405060673063, + -0.0005825789454200212, + -0.0003958031501202634, + 0.0012344284620282007, + -0.0003063092575515519, + 0.00111757350859361, + -0.00012076172630020362, + 0.00017960335472195783, + -0.0010636615169906595, + 0.001552258142746394, + -0.0011905442864170324, + -0.0007758608775009365, + -0.0008687502020424402, + -7.616752354641545e-05, + -0.0008404453864246696, + -0.001017767640100169, + -0.0008256073290495635, + -0.00016628004727607229, + 0.0004779393235048397, + 0.00024606438122612575, + 0.0009347658372985729, + -0.0009581932208877167, + 7.495319451072588e-05, + -4.780089336655041e-05, + 0.0010856258421815717, + 0.0010912164296719793, + -0.0005318873105469881, + 0.0005489670909048778, + 0.0010700350163257478, + 0.0003243710464227528, + -0.00017787217626488922, + 0.0006246837255503776, + 3.6757292634335574e-06, + -0.0002102784942757932, + 0.0011265180483430702, + 0.0003851552898195938, + 0.00023077037807121636, + 0.00017543552903838576, + 0.0006349513913741242, + -0.0014960358095413371, + -0.0005111395546019087, + 0.0009200811382933227, + -0.0007712218373275806, + -0.00048119665770077625, + -0.00031070126511941696, + 0.0018406134362704918, + 0.0006337665228903924, + 0.0020908036501096515, + 0.0013355035924873964, + 0.00019857588708616943, + 0.0008343889394385137, + -0.00037559915245597634, + 0.0010998814339937219, + 0.00077462049370484, + -0.0007788265441138704, + 0.0013546234743782816, + 0.0017214964338923909, + 0.00022937929310751738, + 0.0015951295780263707, + 0.00034392879052559335, + -4.359902964342122e-05, + -0.0008781632942955398, + -0.0015682769262077285, + -0.0005590435482558116, + -0.0005460135620964128, + 0.0016154914618236422, + 0.0009101233895410567, + -0.0006435120284352115, + 0.0012874421159774529, + -0.002614593817786214, + 0.0006040516376992328, + 0.0003394320622833906, + 0.0005289387730919442, + -0.0010410386654589043, + -0.000659746222258844, + -0.0010660858344503097, + 0.0007941841167202154, + -0.0010380862098687438, + 0.0013239224454106309, + 0.0016145131774186652, + -0.0017637192147740865, + 0.00029915518030899853, + -0.0012974445027922508, + 0.0005461507181240203, + 0.0005398078700133772, + 6.054725891239001e-05, + -0.0013696252521094728, + -0.0009851983279995456, + -0.0018605354991156524, + 0.0007495071328595978, + -0.0002679483166377749, + 0.0007486684311735171, + 0.0003340287055921791, + 0.0020146701789841254, + -0.0005276618400795759, + 1.0286104745398921e-05, + 0.000788194463253015, + 0.00043016328377743456, + 0.000468253114361496, + 0.0001792887447255863, + 0.0010992467363449866, + -0.0012004559476363383, + 0.0006364207869134482, + 0.0011492670258776447, + -0.0008769982332771887, + -0.0004199599737627579, + 0.001673962801733359, + 0.0005056045186734605, + 0.0007776894717784241, + 0.0008980380927862944, + -7.155605173659064e-05, + 0.000555701607956322, + -0.0005792802323171866, + -0.0007034845964765793, + 0.0013780691541659118, + 0.0003153361921941404, + -7.604190504850099e-06, + -0.0006111598599960297, + -0.0007952625085795436, + 0.0016242591627966157, + -0.0019647170476768524, + -0.00040712239338599045, + 0.0009729259647410259, + 0.0013770700351839228, + 0.0004905016361399547, + -0.0008206996205607982, + -0.0004429642160752262, + 0.0004507777726777126, + 0.00016613937629348616, + -0.0004259234293151949, + -0.0023797849376673862, + -0.0001336016418498702, + -0.0006112555817461645, + 0.0014062413028096525, + 0.00036929652826374516, + 0.0023432928214458955, + -0.0023748252904396837, + 0.001490409680097558, + -0.002190075164713981, + -0.0004492064011518462, + 0.0013756802785433798, + -0.0007621168956519408, + -0.0005321087518156795, + -0.0005353382980096994, + -0.0005307376031690108, + -0.0008632313709779676, + -0.00045871924146127167, + -0.001483409351279098, + 0.0017975738868545536, + -0.0003588037565447153, + -0.0011498533964625934, + 0.0001522041006744905, + -0.0004941328296139519, + 0.0002297212766880021, + 0.0003511090135370736, + -0.0013037919233471944, + -0.0010542766880271847, + 0.0013221841823288162, + 0.0007078081973218092, + -0.0013440971630171675, + -0.00032935695087707797, + 0.0004239449295254006, + 9.523884240560027e-05, + 0.0006724684645119475, + 8.861735275614632e-05, + 0.0010163584729922914, + -0.0007119348493207103, + -0.00013872117928633625, + -0.0008916194319646577, + -4.45318806680887e-05, + 0.0006332695732981366, + -0.00019007643812849747, + 6.434364578461794e-05, + -0.0014604079248171497, + 0.0007896900499986713, + -0.0006714053372930869, + 0.0010151801684065358, + 0.00025498867785931625, + 0.0012914120114307876, + -0.0009162523132757735, + -0.001322012713796777, + 0.0008191204811466476, + 0.0006723249055115289, + -0.00020900338728610003, + 0.0011289938638934962, + -0.0006538701015629086, + -0.0012765264189969804, + 0.001083659512966029, + 0.0002952738702534643, + -0.0004602025337262946, + -8.103192129590953e-05, + -0.0008969667023343441, + 0.0008117089696100372, + -9.769399695185435e-05, + 0.0010531905624631551, + 0.0002977086873459602, + 0.0011235354312997764, + 9.434636126851466e-05, + -0.0006497667648771048, + -0.0027810497762467347, + -0.0005540470572392248, + 0.00035727370381484654, + 0.0012045245656987446, + 0.0023320764981077883, + 0.0009955241560718467, + 0.0004768194280954253, + -0.0010214431576724338, + 0.0007636504916737487, + -0.0010514625563676906, + -0.0007706576014277622, + 0.000316044643441275, + -0.0005573213085070858, + 0.0002630757795269662, + -0.0006648747277195213, + -0.00013556900985660361, + 0.0007905640498806209, + 0.0004426462982015968, + -0.00229846926324013, + 0.00015152476202965985, + 0.0008363125371629512, + 0.00012708833740708675, + -0.0007544709467359782, + -0.0013527157135673252, + 0.0011777733220507142, + -0.00015766991987597545, + 0.0004383091532579459, + -0.0017856731144353425, + -0.0006613255526893334, + 0.000685832276029459, + 7.271660895234633e-05, + 0.0011711553587968031, + 0.00021607329288691354, + -0.00012144065326816751, + -0.0016095813022596877, + -0.0002564332986784003, + -0.0004073988883325421, + 0.0011211937939208019, + 0.0004969347688462875, + -0.0001843415958645364, + -2.2287496425896388e-05, + 0.00115464019331488, + 0.00023055693964400787, + 0.000686532157911574, + -0.0002833880074800904, + -0.0010843357740837397, + 0.0014301529305135677, + 0.0007442567474705815, + 1.0624402870961714e-05, + -0.0011109894480185822, + -0.00020133351470009292, + 0.0017709382582731976, + 4.728519291513384e-05, + -0.0014232168121446269, + 0.00016218771129781028, + -0.00033632016893614966, + -0.0003482536313586384, + 0.00038472972157577254, + -0.0004742319096869395, + -0.0003485546527758369, + 0.0011072264971884573, + 0.0006655657132380085, + -7.186237457386876e-05, + 5.232084673894177e-05, + -0.0003642263367411763, + 0.0005682500086202813, + -0.00015777323371741713, + 0.0007570702390019906, + 0.0011531968537553698, + 0.0011225155162283183, + -0.0004208972852554439, + 0.0012921118939538889, + 0.0006021868150946911, + -0.003072255944013091, + 0.002150456016400565, + -0.001983812471625505, + -0.0005580646583528594, + 0.0017421924197424145, + -0.000935691861521009, + -0.0005187944048144685, + -9.472331487206306e-05, + 0.0021896322444351756, + 0.00021686853077183447, + 0.0014145688745353239, + -0.0011909284042162587, + -0.0021461988391582, + 0.000372809510794301, + 2.200617922757347e-05, + -0.0003784593707531899, + -0.0009569936231183275, + -0.0005576046870325851, + 0.00030120486972245574, + -0.0015690630874381402, + 0.000668356725256216, + -0.001043381564703055, + -0.0015345191211776346, + -0.0010347675700382295, + 1.3830850912866665e-05, + 0.0008794922151196486, + 5.746661672894043e-06, + -0.001462558698066981, + -0.0005470104227108711, + -1.4770236830331587e-05, + 0.0001688332100768854, + 0.0008598487757289594, + -0.0015328412475415808, + -0.0016081592733622452, + -0.0011774931222778842, + -0.000997385759441901, + -0.002969046195251004, + 0.00033927907144973085, + 0.0017105881895072479, + 0.0001757839888251729, + 0.0013577411727607209, + -0.00042495034547297683, + 0.00010198405607027103, + -0.00107634232444726, + 0.0001221766975861962, + 0.000743388390688408, + -0.0005301075475979998, + -0.0012558231406793153, + -0.0008225885864900694, + -3.564187950956459e-05, + 0.000908755787945808, + -0.00027808024036125173, + -0.0033879464295087916, + -0.0012064584404954779, + 0.0018030805211043273, + 0.002592018223280558, + 5.7696735812046206e-05, + -0.0009365256732370843, + -0.0003982002645639484, + 0.0007416541505397477, + -0.0005947261615294452, + -0.00038659344150184985, + -0.0007807322107632247, + -0.0006394461888985372, + -0.0009955499151535455, + -0.00024519264581849003, + 0.0005980067677151872, + -0.0004857096416333224, + -0.0011050460322296848, + 0.0006613412106464309, + -0.00013784861479275, + -0.0003798426286631207, + 0.0008153297609344905, + 0.00044969637190695025, + -0.0017166973388478795, + 0.0013378297788796578, + -0.0013415338068376397, + 0.0001342498970824885, + -0.0003637746374411413, + 0.00022765365873110593, + 0.0009338171621699764, + -0.0015715515053374548, + -8.85280182747584e-05, + 0.0005985542336447197, + 0.0018539668953761288, + 0.00263143198296604, + -0.0008828655482656072, + 0.0010259761846601442, + -0.0019524672181921365, + -0.0007468369430596157, + -0.0007040680496744861, + 0.00024298058246243734, + 0.00024645105903755405, + -0.0009493287818192987, + -0.0005655475588869529, + -0.0013430493838073986, + -0.00018989672319441595, + -0.0005062566342539206, + 0.0010799449852211633, + 4.7074386458403e-05, + -0.0007517640800298653, + 0.0007556471183069093, + 0.000861398800893826, + 0.0008343793914534104, + -0.0020053660136698957, + -7.873207628875093e-05, + 0.0009224387129456842, + 0.0009703608645603651, + -0.0003599546196541329, + 0.00046026792914965624, + -0.0011784642996144775, + 0.00036832348485371115, + 0.00011358780178188562, + 0.0005778654046965261, + -0.0008516290081619637, + 0.00025613750931190437, + -1.4120298816577826e-05, + -0.0007775692549802584, + 0.0006003600906583129, + 0.0019884019600072676, + 0.0009811759398147878, + 0.0006171102367326794, + -0.00039880750790190526, + -0.0006991613435029897, + 0.0008658139101821944, + 7.303919471758216e-05, + 0.0020613643172815127, + -0.0009673931838452871, + -0.002377239872857705, + 0.0007925821559617899, + 0.00016976092234818007, + -0.0005221853997889041, + 0.0011913482619466981, + -2.939881712615536e-05, + -0.0006090283801624698, + -3.954436479760143e-05, + -0.0001817985272956997, + -0.0012043680178022377, + 0.0006397349376885931, + 0.0014776101746117268, + -0.0009180386739747606, + -0.00026445576861175077, + -0.0005461841797474845, + 0.000538110578847551, + -9.761321069716105e-06, + 0.00022879620623738705, + 0.0008297276862322028, + 0.00033878437217689863, + 0.0007023323179537419, + 0.0007487092933553971, + 0.0012044067939321246, + 0.0012469358405186412, + 0.0004720178085473363, + -0.0003730924980369895, + 0.00035317321624182027, + -0.0008074095519903419, + 1.0120908367325834e-05, + 0.0005813152421634613, + -0.0021084580832184383, + 0.0008288018348197844, + 0.0014841721814225642, + -0.0006828795206993835, + 0.0024569724104001336, + -0.0018878233037531317, + 0.0012253057265853072, + -0.0012577695709598022, + -0.0019735900583964924, + 0.0009569201056478602, + 0.0005625144782727089, + 0.0004907471455850584, + 0.00026489811915886985, + -0.0008643510573893862, + -0.0006360259212254687, + 5.4698924388043315e-05, + 0.0011572896469576482, + -0.0013115502696920583, + 0.0006549425139459206, + -0.0013506451096913555, + -0.0007247214820359092, + -0.0007714820837054951, + 0.0025926897935431474, + 0.0004430275791750872, + -0.00019987460901114447, + -0.00046638656277430963, + 0.002144517379305736, + 0.0017020398474777733, + 0.0004277844683805462 + ] + }, + { + "legendgroup": "Point sensor 0", + "marker": { + "color": "rgb(158, 185, 243)" + }, + "name": "Point sensor 0", + "type": "box", + "y": [ + -0.0003600056313206796, + -0.0022376161827409174, + -0.0003239883664223597, + 0.0007795064473581263, + -0.00019149460827509962, + 0.0005873319145449502, + 0.0008537294488119257, + 0.000354685311577803, + 0.0004811853506423076, + 0.001020540250371666, + 0.0013812337257254452, + -0.00024061309851150815, + -0.0014271115993691281, + 0.0022895821053731513, + -0.0021053255203823834, + 0.002316811703913331, + 0.0011603753782384208, + -0.0012809071725912423, + 0.0015011097630470756, + 0.00029631320522625334, + -0.0004678306812556965, + -0.001042767997695331, + -0.0018838274167167425, + 0.00047081617552889436, + 0.0015344303021453504, + 0.0013218916289673987, + -0.0007356828218973723, + 0.0006827390961667328, + -0.0005871426851231597, + -0.00015396744590045143, + 0.00038036284617771874, + 0.0016295337073070348, + 0.00041253410698003593, + 0.0011854007651908767, + 0.0005504518053893278, + -0.0009146782089848197, + 0.0004068769762766199, + -0.0005022669905908081, + -0.0003100400209997478, + 0.001785972013486428, + 0.0004863846815540824, + -0.00035431494356076614, + -0.0006524107687465099, + -0.0005209513781042603, + 0.0012877553301216124, + -8.311983301110197e-05, + -0.0005558779983525451, + -0.00022587799041465803, + 0.0003989786448736178, + 9.491758916716925e-05, + -0.0004156132248598566, + 0.0002858969009681396, + -0.0003949514239917289, + -0.0005883883835675724, + -0.0012190229041253628, + 0.0005592090542360681, + 0.0018912567177629288, + 0.0002741098670199802, + -1.000695635564947e-05, + 0.0002943257918370779, + 0.0019250525247345696, + -0.0006332397463970472, + 0.00042652907976556816, + 0.00020360190079048819, + -0.00017715783802180145, + -0.0002812126005439917, + -0.0010825777963711565, + 0.0010378823170687295, + 0.0011342274314365731, + -0.0015478772005641619, + 0.000453755902648438, + 0.0020610079236990826, + -6.45618835686357e-05, + -0.001752210778029666, + 0.0011576837020735487, + -0.0024270373285581563, + 0.0004995021774773119, + -0.00030708504508603806, + -0.0011469276481517441, + -0.0005268326469401958, + 0.0002125870095729565, + -0.0005424913535701224, + 0.0011657221969322911, + 0.00041762272714036304, + 0.0014218895915628464, + 0.0005775927687447573, + 0.0009475631469542279, + 0.0011647890401543495, + 0.0014110506235720914, + -1.6234480609016622e-06, + -0.0003814558521529806, + 0.0007196516529464495, + -0.0014939426377439512, + 0.00030045287917848467, + -0.0015023753489866423, + 0.0001370071931371505, + -0.0013489287723459855, + 0.0005778908359580099, + -0.0004106927526280511, + 0.0013273274018962566, + 0.001104244089811709, + 0.0014448192588662674, + 0.001076875009624835, + 0.0003241213269176058, + 0.00016342653067393117, + -0.0003446349876483546, + 0.0023479441771989255, + 0.0008330759234414444, + -0.001826185884992091, + -0.0001864007167889037, + 0.0006765459063037477, + -0.00019509478493636543, + -0.0004840525349715553, + 0.00032032816779688824, + 0.001770047338523015, + -7.655240998844561e-05, + -0.0005959397855544837, + 0.0002700349038637809, + 0.0013355054081476655, + -0.0019815608068822505, + -9.62647624321206e-05, + -0.00016943160441352476, + 0.00027564224685477234, + -0.0009258187465384921, + 0.0001971008157859625, + 0.0007855097019863237, + 5.153313291670587e-05, + 0.0008042163486363528, + 0.0010392113590027975, + -0.000966591324135085, + 0.0008670754524676523, + 0.0011360840499546436, + 0.0011257166363056697, + -0.001952988189270282, + -0.0014674784349027734, + -0.00016741058644258741, + 0.0009033458273482169, + 0.000337710286251343, + 0.0002855436002947684, + -0.0013953857675084826, + -2.859722397249336e-05, + -0.0003324269097765379, + 6.009878710633729e-05, + -0.0016190042458051092, + 0.0005468621667026004, + -0.0009752522487250845, + -0.0007193104402739503, + 0.0011321798624639356, + 0.000361699894352652, + -0.0011018511509706687, + -0.0008618967307050186, + 0.00021719767521925854, + 0.00010352823137933399, + -0.003440687810719208, + -1.5459590430799205e-05, + 0.0003875807321719255, + 0.0001569093415503807, + -0.001114598679363669, + 0.0024631640565099546, + 0.0010668447477286973, + 0.0021305042442346933, + -0.00038846003927588255, + 0.00047832825661193394, + -0.0001808191863905442, + 0.000820071481701599, + 0.0005743195138758154, + 0.00030168197652863247, + -0.0006614195975030301, + 5.2480657088395765e-05, + 0.0007854839026416392, + -0.0010584699395149273, + 0.00039892999488840475, + -0.0010699618836191882, + -0.0008264028487108678, + -0.0018059970646749153, + 0.00011828450036697895, + 0.00022350832384581177, + -0.0010871654269793889, + 0.0017286524233259552, + 0.0001619378140654603, + 0.00039833237811396396, + 0.00038355137303476897, + 0.0007559466576601185, + -0.00024409835871412158, + 0.00041545303696414787, + -6.160899019301872e-05, + 0.0005232275339625138, + -0.0015568580152945527, + 0.0008388255832230734, + -0.0017126298754144402, + 0.001665344365810577, + 0.000192532916258249, + -0.0001371250145926128, + -0.001065933121781824, + -0.0009450938155973906, + -0.0013017537970360946, + 0.0016747483209313507, + 0.0001965272027104117, + -2.5489768110293048e-05, + 0.0008093917190436369, + -0.0005776392126589495, + 0.0024888122361310465, + -0.0005796030671353864, + -0.0019155343418345082, + -0.0008613702074855801, + 4.0414823543636324e-05, + 0.00031850018696670654, + 0.0013009690788327493, + -0.0003695144882406033, + -0.0014990920449641791, + 0.0003698302914779741, + 0.001150592845436876, + -0.0027858992170146733, + 0.0001556155595426729, + -0.001941137927656011, + -0.0011094135005187595, + 0.000218942421277643, + 0.0005101421004467176, + 0.0004153410163478498, + 0.0012493194441427155, + -0.00028743509765277134, + 0.000579632321264677, + -0.0001729473362070223, + -0.0005200987153299033, + -0.0006037804861281159, + 0.0009596880139596149, + -0.000326163910285462, + -0.0020159178664859584, + -0.000435527289485951, + 9.460685811346406e-05, + 0.0018552019698126474, + -0.0005504408226320362, + 7.583259753914281e-05, + 0.00035784412737688634, + 0.0016220564579271196, + 0.0012597621268509273, + 0.002022108441572551, + 0.000272038370154079, + 0.0003197583637045051, + 0.0014571300322657047, + -0.0008030444794433472, + -0.0004889879775779467, + 0.0018988570322234376, + -0.002188069624200228, + -0.0003791440589655677, + -0.002151612881050605, + 0.0009132764692729627, + 0.0011412833019272565, + 0.00022471995699072306, + 0.0003361991429250494, + 0.0022137663465841445, + -6.494771074434401e-06, + -0.0011477444970830874, + 0.000260259226485224, + 0.0002115703644511477, + -0.001357688301733303, + 0.0026984167741596512, + -0.0003028982196396188, + -0.00016086276574650067, + 0.0005430995882351442, + 0.00038709216326423103, + 0.0008390161407218388, + 0.0004896518799192016, + 0.0005071758404353149, + 0.0003497649473390643, + -0.0016090210217245512, + 0.0017955891818151712, + -0.00029963821510007015, + -0.0003484904972933803, + -0.0009699205377554686, + 0.0008570775909427182, + 0.0009627000223666783, + 0.0004217766363433692, + -0.001180944526445741, + -0.0009602591326727981, + -0.000260781185078276, + -0.0004838709165702062, + 0.0008299309863659015, + -0.000812648580717301, + 0.001046521183947027, + -9.123470485224985e-06, + 0.00010769320079239886, + 0.00044273496126482975, + 0.001335793413533788, + -0.0008783645199333435, + 5.182815714376813e-05, + 0.0002113927161082471, + -0.00036186760640345223, + 0.002041328997988123, + 0.0011729846642642015, + 0.0010546063283069695, + 0.0017839220310032545, + 0.001018606849326025, + 0.0012494879865189029, + -0.000135218231756787, + -0.0005091424267202847, + -0.0009445503940660408, + -0.0002962512400073694, + 0.00022939846043804198, + -0.0008341791148968449, + -0.0006337807347759505, + 0.00011855897865795147, + 3.4779293992903834e-05, + -0.0007309098070264815, + -0.00019488522014695525, + -0.00015679925427465233, + 0.0013963672611808846, + 0.0001242971523284012, + 5.2765831410148756e-05, + 0.0006304400140139851, + -0.0006505659738841403, + -4.7354462218992926e-05, + -0.00033159690361607723, + -0.00027554158228587357, + 0.0001305000799849306, + -0.0001702352379354666, + -0.0006112441739000174, + -0.0017499431831446907, + -0.0005512481612562708, + -0.0007998725203843068, + 0.0001798774896570515, + 5.967873689186205e-05, + 3.0870612682467404e-05, + 0.0015631446235694383, + 0.0007256312252710414, + 0.0003297314928877874, + -0.0013083143259213597, + 0.00019882949198379266, + -0.002173415765006371, + -0.00036574427238591654, + 0.00042269237090719055, + 0.00042375201516391863, + 0.001449430678268491, + -0.0005584561887125707, + 1.9045047399842357e-05, + -0.0021243338400363364, + 0.0007758509454167738, + -0.0016180656741088032, + 9.466007251466019e-05, + -0.0014130523345199353, + 2.8606549304581032e-05, + 0.00019742311833702704, + -0.0005160573310171702, + -0.0006341983219706676, + -0.0007389989485665704, + -5.045275743191538e-05, + -0.000888879986031673, + -0.002879151993297651, + -0.0012427331432102908, + 0.00029146254527841095, + 0.0008985359079177154, + -0.00042913262578470084, + -0.0009637777581393331, + -0.00019657421092516726, + 2.268835886860608e-05, + 0.0025639697186195486, + -0.000862757836680683, + 0.0007945853983494008, + -0.001332716690967703, + 0.0010018843114910528, + 0.0007103793581577754, + -0.0011285095745285586, + -0.0019601047262434177, + -0.0013322567503707234, + -0.0006721503082685467, + -0.0021939192618531662, + 0.0001709955706878276, + -0.002606239180174804, + -0.0011973834779650675, + -0.00033634913200616414, + 0.0017026774589099284, + -0.0006736946500392617, + -0.0004733549114959714, + -0.000803944749047834, + -0.001556407835352881, + 0.00014853024232130133, + -0.0001414571356954592, + 0.0017202937135741335, + 0.0026031223858298627, + 1.658550100973935e-05, + 0.0007269568425303363, + -0.00014860200115960465, + 0.0013289702341960775, + 0.0002439181003555188, + 0.0002735398787368362, + 3.326479345047335e-05, + -0.000370692171803757, + 0.00010377748679889933, + -9.279391688802594e-05, + 0.00065058628072985, + -0.0001960886465748361, + 0.0020801955328350686, + -0.00233678387073734, + 0.0002378162080610561, + -0.0007001364587853112, + -0.0009480318438696401, + 0.0012461872789589986, + -0.0016780684430309377, + -0.00019901828512767844, + -0.0017616347456407852, + -0.00016088046812585898, + 0.0008711064653813554, + 0.0012907357320324198, + -0.0013296537965825854, + -0.0003397805625092757, + 0.0018924914388186284, + -0.0010480178113585427, + 0.0010944059650529127, + -0.0017257983703860983, + -0.0006626497330326008, + -1.5364312226268803e-05, + 0.0020746180235588817, + 0.0005959034210196766, + 0.000762304471948367, + 0.001006404255734906, + -0.0010376984455870964, + 0.0014160307464346946, + 0.00036180388620616667, + -0.0008538925109952192, + 0.0019055038897478648, + 0.00045566187218202154, + 0.0011772583930259827, + 0.00011551094989461413, + -0.001163977211536099, + -0.000687052672104663, + 0.0007217812219967061, + 0.000479060354972676, + -0.00018978887619355514, + 0.0008171163169169229, + -0.001030223850813934, + 0.001810834163632201, + -0.0004563972790504883, + 0.001009198413537696, + -0.00027078003386847414, + -0.0010629194700682767, + 0.002102137597686633, + 0.00046900331790226523, + 0.001130821517424969, + -0.00013579721178926552, + -0.00038807764672447597, + 0.00018836492260898335, + -0.0005911877876220972, + -0.0005079991354780657, + 0.0013874686696352695, + 0.000756206947119433, + 0.000335007139309753, + 0.00037937489158726515, + -0.0007919476821466437, + 0.0005103950462660496, + 0.0018956001789914593, + -0.001284759471116855, + -0.0014948790915070447, + -0.00026895685371003, + -0.0015650469355630524, + 0.0004989811080112293, + 0.00048040987047703285, + 0.0001093753314851798, + -1.9493636609643417e-05, + -0.001592997803682376, + 0.0007274646389513138, + 2.4539308697203077e-05, + 0.0007511151291257697, + -0.0010470804467026338, + 0.00016360622153228086, + -0.000901244543767123, + -6.123942613940768e-05, + 0.0014982365348887839, + -0.0007919978549801509, + 0.001058437126718306, + 0.0004091716725988962, + -0.0008869135577923645, + -0.0017099912139415395, + -0.00013416415010985061, + 0.0005454730377009069, + -0.00042197110875783606, + -0.0011774592343006096, + 4.0562345397962776e-05, + -0.0015031266417176508, + -0.0013153134718998664, + -0.00023045315404608582, + 0.0015428542927846337, + -0.0006414692060598367, + -0.0012910688459984014, + 0.0017176226444161576, + -0.0012541539521117207, + -6.589044460330717e-05, + 0.0007113692510558959, + -0.001481742521408498, + 3.375084950377015e-05, + -0.0002854935624477503, + 0.0011587674779156578, + 4.4490926694857396e-05, + 0.0004545584525081919, + -0.00016393970393749208, + 6.873277068051748e-05, + -0.0006068064117211813, + 0.0005239794836523485, + -0.0007086410105775755, + 0.001164730471935021, + -0.000423072126236121, + -0.0016218208317885967, + 4.721934839051034e-05, + -0.0003014630454091225, + 0.0002933174507829652, + 0.0012494701752864647, + 0.0008376615335229556, + 0.00227166515256899, + -0.0004544258481978746, + 0.001232067963812119, + 0.00020078804407640553, + 0.00034719294794498425, + 0.0009539190308658666, + -0.000321845029843129, + 0.0013129863639787926, + 0.00035367138578151606, + 0.00015715432607683627, + -0.0007634072713058934, + 0.0019085287344125154, + 0.0009836689363769888, + 0.0007080343534541455, + 0.0007413385211547893, + 0.001667850004166128, + -0.0011151320278017217, + 0.0003783971944250205, + -0.00047345809974729404, + -0.00045419953398503595, + -0.00017176524180345263, + 0.0019541041561184883, + 0.0009737944107666436, + -0.00021189934625563203, + 0.0020795903131488073, + -7.306221818264723e-05, + -0.00014955508977261174, + -0.0006670850235897559, + 0.00032977371427197225, + -0.001470609512098292, + 0.0008593254104246168, + -0.00019231375390304237, + 8.601287008638272e-06, + 0.0004766859272733263, + -0.001055582135173426, + 0.000598969917045108, + -0.0009026881853642778, + -6.922007482907273e-05, + 0.0012992817888996897, + -0.0007938216334330654, + 0.001404940857635229, + -0.0009361574685101907, + 0.0016378283565150155, + -6.356964467273317e-06, + 0.00016607617545494934, + 0.0014884685446877443, + -0.0006491039355987426, + 0.0012795408153190016, + -0.0004689199359858802, + -0.0032619607642223637, + -0.0012993429245917857, + -0.001487095242613941, + 0.0013763816328224618, + 0.0011252355405579407, + 0.0018532690918740392, + -0.0006955789767185061, + -0.0006851246865993891, + -0.00011734649516116261, + -0.0015689568548748795, + 0.000607253514790963, + -0.0004887673773168842, + -0.0006263736009578169, + -0.0012378721943534779, + 0.0003312452034162974, + -0.0001334364862250377, + 0.0013481856698959154, + -0.0008687731255685475, + 0.0009295063010425302, + 0.000357003435226562, + 0.0004226907734083755, + 0.0005762460055640471, + -0.00021672568500676455, + 0.0005976643459980246, + 0.0009444871444235776, + 0.0009111816001948598, + 0.00036265001046681096, + -0.0007729304304823369, + -0.0010493035294757258, + -0.0014489069051852196, + 0.0005456346892599763, + 0.000793957985118671, + -0.0008435294902209759, + -0.0008797048361691306, + -0.00029556125963480987, + -0.0015476516476657352, + -0.0015017890143792785, + -0.00025401538201122524, + -0.0013399919913298299, + 0.0020468915027834476, + 7.265455689494357e-05, + 0.0008380673679829837, + 0.001116870272488333, + 0.0007910918839752242, + -0.00029804102699079466, + 3.596035981601387e-05, + -0.0011481544184016976, + 0.0021866676507227775, + -0.0010298519151152317, + -0.0005209477146222563, + -0.0011234711553339627, + 0.000305014773962405, + 0.00120290668447916, + -0.0014816812067061638, + 0.0007763949910457263, + -0.0010578604937229086, + -0.0009903840567936496, + -0.00102413683817178, + 0.002437195143903496, + 0.0004823720264332536, + -0.0004606806621509578, + 0.0015585480389082838, + 0.0007776534306982811, + 0.0002741644088145881, + 0.0010175942162166233, + -0.0005376586992929439, + -0.0006097782847302361, + -0.0005138311294027762, + 5.988986617187292e-05, + -0.0009913870573940778, + -0.0014266226098804792, + 0.001215706771629729, + 0.0012439553895282366, + 0.000977134720838625, + 0.000303959337236935, + -0.002069779886985198, + -0.0011725179454967485, + 0.0012806145248903465, + -0.0002951052535802039, + 0.001334155463138202, + 0.0008933692970317906, + 0.0008526383491282539, + -0.00025188514468033345, + -2.8417037355280296e-05, + -0.0006537516028503625, + 0.0008739722412561527, + -0.0014437253033506127, + 0.001154967094614979, + -0.0006008518280721005, + -0.0009659479395905254, + -0.00045243358020566956, + 0.0012226569518599861, + 0.00022046323252381848, + -5.147545883531347e-05, + -0.00045916511593440225, + 5.0951897495849456e-05, + -0.0010483771938605455, + -0.0016500709552277014, + -0.00020925706242819387, + -0.0018906009902995924, + -0.000925077926708346, + 0.0026616649974730644, + 0.0004395087897445048, + 0.0016510377467552641, + -0.001642439432400038, + 0.0008724483909075411, + 0.0009146768706237643, + -0.0007599203537110291, + -0.0006186717952186312, + -0.0018521655994417254, + -0.00015927618331154693, + 4.5084815787424705e-05, + 0.0005867924121808674, + -0.0009482391916939898, + 0.0011999972323401009, + 0.0024452702802838524, + -0.0010636075045239238, + -0.00025903326870703355, + 0.0013199586012850684, + -0.00010031359900396954, + 0.0025582133587220735, + 0.0019163546724441458, + 0.0013494600693919078, + 0.0016462387691095195, + 2.024088893396576e-05, + -0.0011812132889142308, + -0.00014576210790313902, + -0.0002753101913454937, + -0.001807037203224767, + 0.00047614249672062116, + 0.0006146144839967324, + 0.0008185359151576492, + -7.32447332626219e-05, + 0.00017404267952494506, + 0.001628858077594667, + -0.0005856434131473901, + 0.0014055377594074327, + 0.000723867326510397, + -0.00010925846889238648, + -0.00016410401722188647, + 0.00030445944853481983, + -0.0003622912938861375, + -0.001128749654840532, + 0.00043708782811936297, + 0.0005435514957532483, + 0.00043285457037709564, + 0.0014266159608988806, + 0.00044298318689965687, + 0.0013958884734817938, + 0.0019469208990904978, + 0.0011775531088221646, + -0.0005885450733499118, + -0.00021504257472151276, + 0.0009226076973398678, + -0.0013757689834344704, + -5.892285913710641e-05, + 1.4776834050849458e-05, + 0.0005296162691122053, + -0.00043462127196863256, + -0.0010105814297098725, + -0.0016768650558771734, + -0.001144265258375753, + 0.0008898932166174281, + 0.00039715785459416825, + 0.0010551056412306506, + 0.00043110351877669175, + -0.0010069498416522991, + -0.0010788195665389728, + -0.0023283788374596, + 0.0012489536339583569, + -0.00040800835691522146, + -0.00018808505089363298, + 0.0006460041293024817, + -0.0004045537746589318, + 0.0023113316755708838, + 0.00114779454995901, + -0.00029393415695368804, + -0.0006626999410634909, + -0.001073140155593228, + -0.002010211556627263, + 0.001970081895024713, + 0.0006385112423848565, + -0.001307774881577846, + 0.0010159914454135693, + 0.0005181237662172371, + 2.6341153577902102e-05, + 0.0015880763935080594, + -0.0007785764274326322, + 0.001074211900950993, + 0.0007073922918166674, + 0.0003635265083067911, + -0.0001450701831488849, + -0.0006002244627797656, + -0.0013803509535818157, + 0.0001263658661588761, + 0.0014594268230028915, + 0.0015582458100377808, + 0.00225031789436134, + 0.0012736301026735472, + 0.0005438616514428804, + 6.245200924822314e-05, + 3.341284224733031e-05, + 0.0009378013015590219, + 0.0007656243575445513, + 0.00032237777379739643, + 0.0019250461936264542, + -0.000357658572808337, + 0.0012044304544536906, + 0.0009028586911298266, + -0.0010901824243214992, + -0.0015229409405849502, + -0.001381337634041682, + -0.0004328469313793082, + 0.0011038279110688741, + -0.0004393928902462331, + -0.0009408611573713835, + -0.0007786735349247643, + -0.00045136144468830767, + 0.00012698157922101354, + 0.0010905873030274999, + 0.000304165507579288, + -0.0009498916740655877, + 0.0020175107828064387, + -0.0007098749942667579, + 0.0012139964471052668, + -0.00030067824666276944, + 0.0004924709776800078, + 7.245364527191345e-05, + 0.001508786108143105, + -8.44842142800359e-05, + 0.0016786237511728387, + 1.1204164399512487e-05, + -0.0012573795508234442, + 0.0008607690389731867, + -0.0008049859299581092, + -0.0002514364371188041, + 0.00027480100942036447, + -0.0008865781712453468, + -4.434801857121277e-05, + 0.0008482026981631125, + -0.0005312366943138442, + -0.0011196656416421632, + -0.000675688908303147, + -0.0008442757739314018, + -0.00028349665632799537, + 0.0007788713666241348, + 0.0005897911793616283, + -0.0010857460109452769, + -0.0012723408421807941, + -0.0003894040715560278, + 0.000570792239586046, + -0.00029272119750560455, + 0.0004795216701213832, + 0.0007933730117280933, + -0.0002588923294579247, + -0.00021841310038990403, + 0.001758988128140634, + 0.001148503804090505, + 0.0001902537770826488, + -0.0004531444826026928, + 0.0007611498799121262, + -0.00131668179709097, + 0.000982500691135371, + 0.001998362581013869, + -0.0009987872284027335, + -0.001158103019695009, + 0.000463559196195411, + 0.0006433401331076894, + -0.0014679464564955036, + -0.000762313197678845, + 0.00029265348700232603, + -0.00018841730628714855, + -0.0009616902938412798, + 0.0003500583965963407, + 0.000993631124945856, + 0.00016265027817064052, + -0.00025728881203711674, + -0.0008585839043596369, + 0.0016039682658074506, + -0.0007382146472602185, + -0.000675085498315647, + -6.236381320274956e-08, + -0.0002716118778847194, + -0.0005213605909179034, + -0.001054374890362793, + -0.0009651295473142792, + -0.0015961471063137523, + -0.00033905225135428353, + 0.0011085778084131718, + 0.0018777544713022229, + 0.0003035862321773275, + 0.000793128547141583, + 0.0014190281365035534, + 5.628104539045047e-05, + 0.0012470118969573252, + -0.0013766576840721402, + -0.00029905126695348524, + 0.00035637542896592775, + 0.000795750831556729, + -0.0005712703815986941, + 0.00033179531428674937, + 4.579209430090838e-05, + 0.0014882749305579616, + 0.00017365712396976053, + -0.000244805895703939, + 0.001280632770358438, + 3.643723523602103e-05, + -0.0007641852353736851, + 0.0018301440070631237, + 0.0012086799013736086, + -0.0016786574424754134, + 0.0002044278207168625, + 0.0015493624339487813, + 0.0005534209564269947, + 0.0008819347238347969, + -0.0012468168921509772, + -0.0009098840340514171, + -0.0010267556530409341, + -0.0008968389489972733, + -0.0007246483349306938, + 0.0009537991241934454, + 0.001508913981293045, + 0.0010879013844783242, + 0.0006853871678901585, + -0.001710723492131594, + -0.00040300600613238027, + 0.0008713463668148519, + 3.263790972242191e-06, + -0.00019033241867538443, + 0.0006036989313644939, + 0.000653659383891052, + 0.0007778278891040502, + 0.0026851365463386435, + 0.0016274315875167463, + -0.0003530650764760374, + 0.0006868432694487502, + 0.0001795764715866688, + -0.0005794129777825833, + -0.001617265428761814, + -0.0008056816790681295, + -0.0006806964250888275, + 0.0003078361026554748, + 0.0013403772986760813, + 0.0003076660870262976, + -0.0011249373339728, + -0.0014490077326637864, + 0.0013301604981351318, + 0.00013764782607148654, + -0.0006671819513463702, + -0.000624292521976169, + 0.0018067179265904908, + 0.0005674774129443829, + -0.001317105409627363, + -0.0005516670001376773, + 0.00042234179001810206, + -0.0017668909492902975, + -0.0001162881587384952, + -0.0017185921300405982, + -0.001387755100643745, + -0.0005517741391588709, + 0.00012065283421683395, + 0.0013631651255593099, + -0.0011290232718808902, + 0.0005615693154638933, + 0.0006551422039926208, + 6.254180417526598e-05, + 0.0012162445401049347, + 0.0014897147508024485, + 0.0018979156109715162, + 0.0008278795942863002, + 0.0016709172795479259, + 6.552613570536331e-05, + -0.002268839298288393, + 0.0001182931452040495, + 0.0002099355161435836, + 0.0005630869604959698, + 0.0007509259746303399, + 0.0002753269190802024, + 0.0002449954233398701, + -0.0008166079873114575, + 0.00020295605984574773, + 0.00033879418682900995, + 0.0007205839697275071, + 0.0007953524406212684, + -0.0007619718374865396, + 0.0001334664356530962, + 8.628825983300847e-05, + 0.00011866394199900012, + 0.0007208689077847103, + 0.0001557166342463532, + 0.0011605696039186997, + -0.0005969486335912622, + -0.0007653988029903052, + -0.0018882273646243291, + -0.00040776848098682267, + 0.00026693848464171536, + -0.0014955487693392561, + -8.78919074330568e-05, + -0.0001381925694993762, + -0.0009069314150661414, + 0.0008078474487118959, + -0.00019253654508679532, + -0.0002177696606660187, + -0.0007448961034754032, + -0.0011121084619067994, + 0.0010419012464654741, + 0.00016984816633941086, + -0.0009881360671502506, + -0.0008760247987300478, + -9.17357964351188e-05, + 0.0011502688379596642, + -2.9360108626403384e-05, + 0.0012561853602880936, + 0.0005513747478366195, + -0.002113177864428946, + -0.000454925689565556, + -0.0005071825803594967, + -0.00015290966794694646, + -0.0002927383496827896, + -0.000596868518605734, + -0.001071013825714676, + -0.001092358679676457, + -0.0010294854899197898, + -0.0006839444339783127, + -0.0003925862869372659, + -0.0014621409767116348, + 0.0006513400374065412, + -0.0010732348162592607, + -0.002082067069762051, + 0.000292246433221165, + 0.00044564642107745986, + 0.00042869812170682434, + 0.00102224841515829, + 0.000477050446927711, + 0.0009248957418170293, + 0.000506336040083146, + -0.0009510468939738244, + -0.0007406046082629666, + 0.00022693085399123393, + 0.00028824964390600927, + 0.00030437406607444707, + -0.00012138825135749925, + 0.00012309962423739888, + 0.0005185395879948174, + -0.0007620128845929218 + ] + }, + { + "legendgroup": "Point sensor 1", + "marker": { + "color": "rgb(254, 136, 177)" + }, + "name": "Point sensor 1", + "type": "box", + "y": [ + 0.0006887591006467885, + -0.0011058161763843205, + 2.6109221126024897e-05, + -0.0001390300052987482, + 8.546119607340698e-05, + 0.00011136458998685435, + 0.00023991595986993947, + 0.001828039458787699, + 0.00022023425895074537, + -5.2290598065305744e-05, + -0.00021891859025958686, + 0.00046887091647313266, + -0.0006846872455111006, + -0.0012222627054356064, + 0.001181465692494554, + 0.0003749595081520784, + 0.0003526073351356686, + -0.0007022591707157542, + -0.0020916780707977093, + -0.0007305294383171488, + -0.0003920163327411029, + 0.0007088163203119509, + 0.000704385437454551, + -0.0010357939037395137, + -0.00046431043924451127, + -0.0014035861038804737, + -0.0016832368128961292, + -3.8630232227414356e-05, + 0.0005905440017652009, + -5.2118227510938425e-05, + 0.001719560304893979, + 0.001561461438381759, + 0.00025205720725469114, + 0.001763408408085375, + 0.0007221821060739849, + -0.0009719985847591629, + -0.0021123318421986375, + 0.001817623123137843, + -0.0010611604657695102, + -0.0008562064784112798, + -0.0012304176076835909, + 6.293152216392149e-05, + 0.002212399981579101, + 0.00010652549074311468, + 0.0008469018514976932, + -0.0009128546294313096, + -0.0006830828456034586, + 0.0015652451383773114, + -0.0005011611750392774, + 0.001757832611090426, + -0.001181582683865845, + -0.00121056434757796, + -0.0005337655494285235, + -0.001717403682544067, + -0.0007408136843975779, + -0.00027721097406305456, + -0.001314794201400178, + 0.00011952201698201898, + -0.001482907938938074, + -0.0028391234957543202, + 0.0018367431177566053, + -0.0004792297246101688, + -0.00014300734554818307, + -0.00032596659343862264, + 0.0011064891695107045, + 0.0010389955998214608, + -0.0004619849476998397, + 0.0007983762349096428, + -0.0010604984136962366, + -0.0001282125298550891, + 0.001318585836532794, + 0.000814565151301671, + -1.6467674650606454e-05, + -0.0011705015340110413, + -0.0020625214146961167, + -0.0006347499538072725, + -0.0007879481790594521, + -0.0009041255605997439, + -0.001146980778965213, + -0.0006732067020140864, + 0.0005947686824684459, + 0.0010934317688459968, + -0.00028716910090332263, + 0.0006821223674612194, + -0.00037570441762113145, + 8.598529650645392e-07, + 0.0010471053851254626, + -0.000431487384172255, + 0.0002556636513862575, + -9.609139681336129e-05, + -0.0006177402265568398, + 0.0009393099127451725, + -0.000908408135385842, + 0.0005665039405200598, + -0.0009604822251764828, + -8.133104536688364e-05, + 0.0007355372890523703, + 0.0003470055868085911, + 0.0018843959846446313, + 0.00022086750466867542, + -0.0009065600966912437, + -0.001433703575768761, + -0.00034096316523416436, + -0.002044549583102611, + 0.0009977976106372783, + -0.0008421754227121942, + -0.0001369818053447785, + -0.00030108280630892326, + 0.000979886607247647, + -0.001737922072358667, + -0.0012344504870354937, + -0.0010066302354428637, + 0.0004479956548980749, + -0.0019370998280541383, + -0.001654962679037751, + 0.0012199121125534165, + 0.000410971663376646, + 3.142622108681595e-05, + 0.0008894448445178767, + 0.00020854686895445604, + 0.0014256145680130942, + 0.0003253710966270027, + -0.0012922092263377152, + -0.00012522540455053085, + -0.0001589117726220959, + 0.002056504865531357, + -0.0015540964696775762, + -0.0004524211264601215, + -0.0010425428456208561, + -0.00039906385008350013, + -0.0002276437824881732, + -0.0024782971261014387, + -0.0014102760428990168, + -0.0006192606420478606, + 0.0001387774518862511, + 0.0021812297080462625, + 0.0001425596435313416, + -0.0004262004528677132, + 0.002142338398636383, + -0.0013937896609897483, + -0.00039096383987960063, + 0.0015932673042809732, + 0.0007066368854968903, + -0.00034757134244072153, + 0.0003121748867034803, + -0.0007519196916785607, + -0.0003839390529577581, + -0.0012465526732651747, + -0.0012396822105925245, + 0.0002528660865610383, + -0.0004789139961242268, + -0.00011876246473120422, + 0.00012697796523258533, + -0.0006198072827077355, + 2.110988925419539e-05, + -0.001447366706630948, + -0.00036602219270604337, + 0.0008363600006297419, + -0.0004724997888814941, + 0.00014368446888075382, + -0.0013191195466935642, + 0.0005613862168692938, + -0.00015946890582976573, + -0.001165735304201534, + 0.00012879815589038367, + -0.001029125146877646, + 0.0005315225544021784, + -0.002258361743278695, + 0.001998028935739293, + -1.6655456977371602e-05, + 0.0006759245575772937, + 5.282016978309428e-05, + -0.0010320804190655998, + -0.0020571340205112784, + -0.0006119239190639105, + 0.0017104910372468614, + -0.0007190926419966008, + 0.001540482136146976, + -0.00021132015063258152, + 0.0003278672475358782, + -0.00047275030121674347, + -0.0015546915191203964, + -0.0008825048994501095, + 0.002973193535448794, + 0.0014764962683650896, + -0.0014967308300415302, + -3.2885064319664986e-05, + -9.952711687646383e-05, + 0.0005547655592122089, + 0.0018511064189604117, + 0.0021959606023235602, + -0.000591243006655985, + -1.2382301679930482e-05, + 0.0010812162478384697, + 0.0002556973916825546, + -0.0007434402127627883, + -0.0008334182537376004, + -0.0009030918394799779, + -0.0008297182857754611, + -0.0005065808822434235, + -0.0004916654239396483, + -0.000620423089838034, + -0.001628587574827609, + -0.0008978466851870096, + -0.0008678610722973862, + 7.580089777078748e-05, + -0.000589173864045151, + -1.455655833297534e-05, + 0.0007127445204791508, + -5.6003802339007074e-05, + -0.00014140184165141486, + 0.0006114419107103605, + 0.0007378653325937724, + 0.0011141028032940526, + 0.0018128100816713988, + -0.0014579603022918642, + -0.0015854446634739503, + 0.0010405782364684775, + -0.0012235865422936167, + 0.0010696422316361649, + 0.00020163057836607157, + -0.00041225885013345374, + -0.0004535606398189168, + -0.0010865280318199432, + -0.0007798900838555854, + -0.0004027531960993472, + 0.0005955276952118613, + 0.00022383837490327004, + 0.0001199951551379412, + 0.0005210907000824437, + 0.0009271594179558762, + -0.0015492826995257935, + 0.00013090864938789112, + -0.00020354680293541112, + -0.0005833651790191638, + -0.00031590814292641067, + -0.0014683424406690658, + 0.0023142534478696134, + 0.0009285444739367345, + -0.002543131560921476, + -0.001182512800641266, + -0.0010151837670320566, + 0.0004196886835916232, + -0.0016426217753042443, + -0.001391063318424466, + -0.0009693448614976637, + 0.00042913115383631556, + -0.0007403720823114064, + 0.0011292059052843936, + 0.0001590034331006031, + -0.0007643972802635429, + -5.129013158712389e-05, + -0.000406376123505102, + 0.00013569095318648818, + -0.0006411962296679153, + -0.00024055476047148293, + 0.0010332897364286981, + -0.0012285318441027358, + -0.001065243831517481, + 0.0019128154885279705, + -0.0016623479805129454, + 0.0013935003982906338, + -0.0005829864414654076, + -0.0007870967545509347, + -0.0002834519531498127, + 0.000745591718894126, + -0.0011388616686114615, + -0.0014274733350751702, + 0.00017803605773123425, + -0.0006196012982266345, + -0.0011885765574890293, + 0.0012035896250914683, + 0.001486284311530507, + 0.0006508422664690343, + 0.00043736929512121073, + -0.0021324971862692575, + 0.0001765474587454717, + -0.0008752793229881749, + -0.0013547282458847782, + -0.0009774447840444663, + 0.000533818384897763, + -0.001925020191957622, + 0.001147184218795194, + -0.0005734435322327453, + 0.002009488687445213, + 0.0013268848757016585, + 0.0016738574199175594, + -0.0003340477072098943, + 0.0014201920688741883, + 0.00027405104128594806, + 0.0016348218510284953, + -0.000742996777682508, + 0.000517013850887017, + -0.0009675485236924026, + -0.0007390383393454707, + -0.00044200007850433905, + 0.0010779453916372746, + -0.0014971198094825033, + -3.847759888298499e-05, + -0.00013399142068563425, + -0.0007735939375706377, + 0.0012294743702660862, + 0.00016541565297055664, + 0.0008338057183526021, + 0.0006173680600099427, + -0.0005324660712249873, + -0.0006740502609794217, + -0.0008199833627355055, + 0.00033198205525391503, + 0.0007267220185779939, + -0.0020604481265172336, + -4.971278238664448e-05, + -0.0003895932155725044, + 0.0001631509427433502, + -0.0012936268416999387, + 0.00017638895201059523, + 0.0004907384818053191, + 0.0019184600292033091, + -0.000540008390969014, + 0.00037384222554225115, + -0.0011192071685167085, + -0.0011349191249985782, + 0.00021081877713340433, + -0.0019377688839017214, + 3.7939173216284e-05, + -0.0009665161519855029, + -0.0003447499214443088, + 0.0015822433004351536, + 0.0003882707028584976, + -0.0006578470354684751, + -0.0008528550323540276, + 0.0006535755559564238, + 0.0006011236622569996, + -0.0011938938952544447, + 0.0020755279763230447, + 0.00196845493265462, + -0.0015753601913037333, + 0.0007773993798483594, + -3.056475782681706e-05, + -4.6457698243587995e-05, + -0.0013215220688306663, + 0.00017883537891558713, + -0.0011664597643833627, + 0.002189795504708523, + 0.00019752481888354938, + 8.995435835938792e-07, + -0.0037041801024810953, + -0.0018929908100029384, + -0.001645729737379323, + 0.0005223843374676906, + -0.0009673080165998024, + 0.0013132779991402042, + -0.0008512127825620137, + -0.0011458919868544306, + -0.0012667288379709747, + -0.0013162873106019315, + 0.0003773491489540102, + -0.0020838701812605485, + -0.0006522001590569228, + 0.0009184314697090141, + -0.0008899845749656008, + 0.00014265562087166858, + 0.0023870018741430957, + -0.0009663752997903809, + 0.00011075742262934898, + 0.0005240409661613379, + -0.001473603572420426, + -0.0003789473116333424, + -0.000443536277395806, + -0.0007982513765464378, + 0.0012020995707334482, + 0.0013108817131481931, + 0.00024856525270280444, + 0.0017329303855316296, + -0.0005169261538795267, + 0.0008130214056670277, + -0.0005904646002315477, + 0.00122709425098142, + -0.00017834227645957792, + -0.0004986212650420497, + 0.0011630381205360446, + -0.0001726576653463638, + -0.0001264029855896014, + -0.00022831393531188776, + -0.0003153184182964929, + 0.00031840222225519094, + 0.0002337353742301272, + 0.0010366460587487242, + 0.00046898697214360695, + -0.00013947049691784053, + -0.0005863872852714326, + 2.571964456386897e-05, + -0.0007875589437836625, + 0.00042588758176939986, + 0.000554436241636773, + 0.00018510880245844018, + -0.0007958820058881892, + -0.0015775843695859698, + -0.001111161123610315, + -0.0005548228303216839, + -0.0021292111618743106, + -0.0001397467075138542, + -0.00038330300590588514, + -0.00032753346468422683, + 0.0003557719393692743, + 0.001334383598130291, + -0.00011944367276116744, + -0.0009455851916991179, + -0.0019273981470528181, + 0.002315070381071001, + -0.0009345345669622767, + -0.0006001427295077708, + -0.00013275951299425708, + -0.0008293513806996916, + 0.0008475874263042725, + -0.0001478658523034005, + -0.0007999409871289753, + 0.0007522519215303774, + -0.0001344254828304675, + 0.001003771785260857, + 0.0006947237468941833, + -0.0014260919683876446, + -0.000533458368095145, + -0.0010138613243486313, + 0.00034668841050295503, + 0.0011538722574860874, + 0.0011904803494144002, + 0.0008614800053616448, + 0.0009146534796859386, + -0.0005916501111958689, + -0.0014774800724577848, + -0.0014372597985471984, + 0.000355065865182617, + 0.001899324260644606, + -0.0003955489295554529, + -0.00037147553634348787, + 0.00016826050697379394, + 5.7720691900994055e-05, + -0.0007971734281938408, + -0.0011308717561140029, + 0.0005780469462579295, + 0.0004636053561234571, + -0.0003280336941144368, + 0.0014193975357727345, + 0.0012020992242621033, + 0.0003439318432291155, + 0.0009592472005751581, + -0.0006446891299259881, + 0.00031944576904379725, + 0.0017315234676588303, + 0.0008363195225267384, + -0.0020305802259542555, + 0.0010611015161733721, + -0.0009479171867612346, + -0.001285587590744891, + -7.152971453537978e-05, + -0.0003395627712127391, + -0.0008263318637680681, + -0.00033043508506614116, + -0.0004570967583319158, + 0.0006521620789705692, + 0.00031612245431499806, + 0.0008435933532413424, + 9.829073295502207e-05, + 0.0010325005013174912, + 3.6879079207935394e-05, + -0.0002403426729997387, + 4.506782344558303e-05, + -0.002429356865585296, + -0.001057682159722992, + 0.0010053741447315044, + 0.0012284225728176569, + -0.0026232545812878106, + 0.000816058389042647, + 0.0012350038477399905, + 0.00023100936277354724, + -0.0010963357028834122, + -0.0026486461959938905, + -0.0006287202959775753, + 0.0002449450899973831, + 0.0009856027010343433, + -0.0009127340982082835, + -0.00048410430522784556, + 0.0002960308742524513, + -0.00014290213947386657, + -0.0015942603142487838, + 0.00040388430023090483, + -0.0010592832035414036, + 0.0012092051625650102, + -0.001809306308185655, + -0.0018561972990590577, + -0.000841229990323613, + 3.52414433428857e-05, + -0.0013447438809586227, + -0.0006729257616421774, + -0.0015284544507774838, + -0.0017660438628998598, + 0.0003114082323108724, + 0.0006165764396210818, + -0.0005221875300818106, + 0.0011414201628265107, + -0.0002849808038549376, + 0.00014833807840260854, + -0.0008469942438913506, + 0.00039521574925247113, + -8.228545270913188e-05, + 0.0010132991951438343, + 0.0003820763055530818, + -0.0016426116552713161, + -0.00022147940499304112, + -0.0014649210506430994, + -0.00037654754481922096, + 0.0005376267881519327, + -0.0012102259382911124, + 0.00038407105538795306, + 0.0004087944845720613, + 0.0010907612641500746, + 0.0018596503963325057, + 0.0005088876338712446, + -0.001944942542273822, + -0.0017986139474602202, + -0.00039668304732825524, + 0.00010122951019318593, + -0.0003100534770204409, + 0.0004978313194182888, + 0.0003323968813160685, + -0.00028440047235219363, + 0.0002986996767500154, + 0.00154581676224894, + -0.0010703070926076283, + -0.001593582529291117, + 0.0003162723050730194, + 0.0002500674411029031, + 0.00041543829086657916, + -1.1027684041236971e-05, + 0.000919469307609642, + 3.993157405469065e-05, + 0.0013016088283548351, + 0.00022749372282106992, + 0.00014304230703713212, + -0.0012172929413006453, + -0.0013249745080358174, + -0.0016430247745253704, + 0.0008322774680560788, + -0.0016579763005738204, + 0.0009236972764846791, + -0.0010837015985591329, + 0.0018338533751359608, + 0.0009212919376359588, + 0.0007315679297654288, + 0.0005669670022074404, + 0.00028709502718726184, + -0.0006046317557943067, + -3.540238156917045e-05, + 0.0004942579397703159, + 0.0011523810654237472, + -0.0014875083177607305, + -0.0022226107500954045, + 0.00233417807899267, + 0.00029287766813619105, + -7.942826789880627e-05, + -0.0009815915300941073, + -0.0017308548869582618, + 0.0004575184047610577, + -0.0008623463801141858, + -0.001027826259069366, + -0.0008016471657532445, + -0.0006269323056465163, + -8.105272468233055e-05, + 0.0017383317962505068, + -0.0007006514951589266, + -0.00037002978914725857, + -0.0013896708738520137, + 0.0012276931748092068, + -0.00047445256848173227, + 0.0013931931354887307, + -0.00041811331004442477, + -0.0015977801115757547, + 0.0003119012709937501, + 0.00041748669939492897, + 3.622930624359058e-05, + 0.00010435485089608463, + 0.00068780887141127, + 3.6687755045295895e-05, + 0.0009574593719112407, + 0.0007570873296514148, + 0.00137671133864287, + 0.0002274464816980699, + 0.0010764644928086572, + 0.00125306493682099, + -2.9469771667862264e-05, + 0.00024569558273129034, + 0.0014090410416732163, + -0.00034788464218719797, + -0.00016518360204239888, + 3.146971595186761e-05, + -0.0014427682396905487, + 0.0013481764215974874, + -0.0006049335204014966, + -0.0016520321867018412, + 0.0008002738712411114, + -0.00034294192253769037, + -0.001399735337133517, + -0.0006074090986917655, + 0.0012093855627205215, + -0.0006459494195821679, + 7.176259806737042e-05, + -0.0006669909538525974, + 0.00134475369616233, + -0.0009035199295209107, + -0.0001824714893720298, + 0.0007586330918188823, + -0.0006875878891877327, + -0.0015480106070884924, + -0.0010701867350477188, + 0.00030837079408304517, + 0.0003710339533889121, + 0.00011464684028845155, + -0.0011764617716292776, + -0.0019171086621085763, + -0.0001243541238036749, + 0.0018678848171214233, + -0.0006526978987555947, + 9.059100387934715e-05, + -0.0008849083087407645, + -0.001059856845750493, + -0.0011409984133315106, + -0.0004869449791072317, + -0.001126168608414355, + -0.0009034810995107731, + -0.001083369486866823, + -0.0005705134284439153, + 0.0016700896752441293, + -0.0021861614096930866, + 0.00035136373553473, + -0.0004094835799296123, + -0.0010518186365591714, + -2.5088154958659823e-06, + -0.0001689645660424037, + 0.0004969652344186437, + -0.002052353580162092, + -0.0006955138645115664, + 0.0008346198673864016, + -0.000915847284668415, + -0.0008172017271301584, + 0.0004281190409801664, + 0.0012160349174481662, + -0.0002974880172768533, + 0.0011971926010727171, + -0.0008670366455275977, + 0.0009839107169503903, + 0.0021982921220460466, + -8.976309905631637e-05, + 0.0010321143645651983, + 9.953900764318193e-05, + -0.0012066349316005157, + 6.858206128959203e-05, + 0.0006146096645468084, + 0.0003010723711004188, + -0.0013713313935670873, + 0.002241644638638196, + 0.0011489144006010513, + 0.00035036757979915923, + 0.000338358040843067, + -0.0012199939307653651, + -0.0008450745758736549, + 0.000901997931075891, + 0.0005561612986995986, + 0.000953479461972044, + 0.000408175882191682, + 0.000518521465968698, + 0.0008330363070525461, + 0.00043925706703424325, + 0.0010852770400018898, + -0.00043507973167257577, + 6.287023099069638e-05, + 0.00016269701058139655, + -0.001156679117074127, + -0.001172003160552277, + -0.0026148819981113656, + 0.0011807137906623133, + 0.00029916552976276187, + -0.0018115683522804344, + 0.001067294689180577, + -9.69478990726541e-05, + -0.0005700843620733386, + 0.0015943466924783528, + 0.0004683641696976051, + 0.0007830445596910149, + 0.0011530973020520727, + 7.41137061160518e-05, + -0.0005981304725956796, + -0.0023297160013522533, + -0.0011906163585409994, + 0.001858983651442545, + -0.0008034016143308231, + 0.00039259143646199873, + 0.0008331370674579101, + -0.0003133637368904822, + 0.00017960768625255313, + 0.0002659739547605728, + 0.0010889952247982544, + -0.0014722207910655867, + 0.00047387166949841456, + -0.0010980996302194948, + 0.00016919989631522064, + -0.0021435954657160225, + 0.0007284595284863135, + 0.0012767372531837103, + -0.0002695752272508236, + 0.00039869084563598923, + -0.0006390490724435874, + 0.0012623019701264002, + 0.0010489524277436024, + -0.0006824170719844565, + 1.6883109951549026e-05, + -0.0003668122370482813, + 0.0024303087153819424, + 0.0008549546721645027, + 0.0009290426855246224, + -0.0010173123607801237, + 0.0019364003437275933, + -0.0005235726356754779, + -0.0012587917769036779, + 0.0011093732730550118, + -0.001981067377900557, + -0.0009516502228357549, + 0.00022721353557129676, + -0.0006018123119860096, + 6.139588557682033e-05, + 0.0006496342328972877, + 0.00018889637206753791, + 0.0003630033340192123, + 0.0009456725062519443, + 0.0001423748769757134, + -0.0004937179957188849, + -0.0011840740525882866, + -0.0032572234144868668, + -0.0006788298786030018, + -0.0011029608381006137, + -0.0005459204437733182, + 0.0014429545137220525, + 0.000988784630615299, + 0.0009002355429984379, + 0.0007415656735696816, + -0.0003026326603794944, + 0.0010828592574402592, + -0.0005842074399251722, + 0.0002714109878271407, + -0.000543226385457593, + -2.37472503882436e-05, + -0.0007639145705931737, + -0.0008511647332509043, + -0.0011158053637258286, + 0.0012641183011016723, + 0.00017944942101041596, + -3.9793183427854025e-05, + 0.0015987174950214055, + 0.0006501579990788645, + 0.001865232307556168, + -0.00035063388772080245, + 0.0006902799030886354, + 0.0008078290515154383, + -1.2502723629838786e-05, + -0.0005593120139934831, + 0.0017822145321093868, + -0.0007613398708667543, + -0.0003332048444944677, + 0.00049170850272495, + 0.0008217498348986212, + -0.000943773195174758, + -0.0010241190774590819, + -0.0011753402456821658, + 0.0007472673928053305, + -0.00018897560343552664, + 0.0005779078008000386, + 0.0012965782464094845, + 0.0003872056414951826, + 0.001427929225375, + 0.0017224158601080366, + 0.0005896695713142535, + 0.0010551241315259416, + -2.473478030038943e-05, + 0.00022145123361591324, + -0.0017656433674142586, + 0.001186142901586758, + -0.00037391126553172155, + 0.0005095344496664344, + 0.0010660483157942091, + -0.00048319691069507, + 0.0005298409249128277, + 0.00048021095551697957, + 0.00010165878310543002, + 0.0003914395315645091, + 9.810343550740619e-05, + 0.0005300253855734459, + -0.0013499171883089628, + -0.0008679471877756493, + -0.0011072271818755935, + -0.0016526923262070693, + 0.0010154664717447707, + 3.131381574920415e-05, + -0.0002816887357663555, + -0.0007642965883547474, + 0.001393530516488829, + -0.0013079579317448093, + 0.0014897678214235044, + -0.0009070318867181098, + 0.0011597202182581662, + 0.0011650916322589466, + 0.0011037286331247575, + 0.00016819823105697937, + 0.0016302820135696188, + 0.0012289910522181465, + 0.001387803245532038, + 9.753495707855861e-05, + -0.0016284888591190313, + -0.0013174703565389202, + 0.0015363435450411987, + 0.00035271227643312084, + -0.0026394280412886757, + 6.78368887662444e-05, + 0.0007814752443362951, + 0.0002752132549821037, + 0.001468313398566948, + 0.0006545236966096546, + 0.00015161640974977624, + 0.00023696581672297542, + 0.0013642156518726815, + -0.0006580542913970103, + 0.0006605017470452941, + -0.0003088228978564007, + -0.0008748764883549764, + -0.0016642166552533128, + -0.0006184663969364369, + -0.00015409401859344467, + 0.00011171320406382895, + -0.0003290910407041211, + -0.0010709146804689057, + 0.000391673286224946, + 0.0016568592585332633, + 4.886265919610229e-05, + -0.0005310321469864104, + 0.0010965154226519266, + -0.0007755256922949238, + -0.0016960342209149909, + -0.0011084135517462786, + 0.0005122886593445442, + 0.0007411646422577687, + 0.0015908914037913292, + -0.0007538540001763368, + 0.0007582234291749213, + 7.647547873373415e-05, + -0.00014731395201125405, + -0.0003695468091183977, + 0.0008737037670638785, + -2.9156555941520518e-05, + 0.0013759294936129811, + -0.0019396679285413774, + -0.0001656795002055891, + -0.0003471560695495425, + -0.001241703149608692, + 0.00034815131665108653, + -0.0010378207996945867, + 9.313167172588199e-05, + 0.0003768239998069945, + -0.0008519499742523102, + -0.0005180546234512934, + 0.0005414827770569703, + 0.0007734070692163017, + 0.0002244177583683037, + -0.0020083988197677604, + 1.5866021128503563e-05, + 0.0028300716082197636, + -0.0015626980230826993, + -0.0007570620879619247, + -0.00048649438834632544, + -0.0014843932873093426, + -0.0009091931471393971, + -0.000678127863880481, + 0.00037568061226585616, + 0.000151084238891734, + -0.0007489745309385559, + 0.0004510021034491504, + -0.0003584460509166288, + 0.002116144765805572, + -0.0008424457940505964, + 0.0009235345882566292, + 0.0003250570207390367, + -0.00017397363080493195, + 0.0007197608461805603, + 0.0015474097983145263, + -0.0008353156806061429, + 0.0011143087870734152, + -0.00038750220325299014, + -0.0011148684886687825, + -0.00019958942274774858, + -0.0004177035962340447, + 0.0010295791623491952, + -0.0010420821016893502, + 0.00015726901261220008, + 0.0010757164325489765, + -0.0005662198447577108, + -0.0014236665997060995, + -0.0007863089004988628, + 0.0015800946344987391, + -3.2056804659746934e-05, + -0.00038417506573733864, + -0.0004683561412928589, + -0.0004495071110233752, + 0.0017829256357936717, + -0.001249116455294586, + -0.0005262008246806016, + -0.0020806901498940603, + -4.7044997664915096e-05, + 0.0004576092154107047, + 0.00016119956086026196, + 0.001485404960980037, + 0.0009103038888543706, + 0.0003250510906542959, + 0.0004838265748302406, + -0.000674596455453416, + 0.00033822110932001765, + 0.0004944724822896743, + -0.0009183104595300472, + 0.0017184330092987923, + 0.0003004655935077607, + -8.880815825930969e-05, + 0.0001469707885369157, + -0.00019022780181976887, + 0.0025710551192635106, + 6.645414771898788e-05, + 0.0008923676528715616, + 0.0006888630180091548, + 7.418249218949568e-05, + -0.0006085345592910763, + -0.0018967292290848299, + 0.0005207021868651298, + -0.0004929127334017388, + -0.00013063075417078248, + 0.001110254256232218, + -0.0001225144671689617, + -6.513886445023493e-05, + -0.0008542543517159396, + 0.0006216643419380463, + -9.12336646118156e-05, + 0.0005887253068504605, + -0.0017891907841896602, + -0.000960924050247771, + 0.0004135540559117253, + 5.473666254529923e-05, + 0.0002356959202535625, + 0.0008915453092566195, + 0.0014524917722501208, + -0.0005398205884219588, + 8.965778277814651e-05, + -0.0014669956880096764, + 0.001284599185668919, + -0.0006754743947329374, + -0.00026218175428835563, + 0.0004747506721413596, + -0.0008005094602516393, + 0.0004048893455853081, + -0.0017509374045175793, + 2.4552048755175818e-05, + 0.0009108254845081494, + -6.251576607071105e-05, + -0.0009826527321705838, + -0.0015739490033544173, + -0.0019224893111071458, + -0.0002047626000067345, + -0.00033631167274441877, + 0.0006776839146117316, + -0.001334087881086437, + 4.886014518870652e-05, + 0.0015329217901167852, + -0.0009121771337764748, + 0.0009217340039503385, + -0.0009557182405849002, + 0.0005789629121700315, + 0.00022262472217118861, + -0.0010679976905729194, + 0.0003459477639309376, + -0.000158289036234453, + -0.001883066764178504, + -0.00012191829490403117, + -0.0006613531543469578, + -0.001545734376758103, + 0.002324098609630597, + 0.0015074545476887274, + 7.3761313095608455e-06, + 0.00019760176287840874, + 0.0011112310907274714, + 0.0010593507448467179, + -0.0006422129855534129, + -0.001861926389606331, + -0.0006577700858830783, + 0.001005972219423685, + -0.0003107130837989659, + -0.00044481491423884064 + ] + } + ], + "layout": { + "autosize": true, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Distributions of Estimated Offset Values w.r.t. Beam sensor 0 After Burn-In" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0.5, + 6.5 + ], + "title": { + "standoff": 20, + "text": "Sensor" + }, + "type": "category" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + -0.004107668773902379, + 0.003962104654523292 + ], + "title": { + "standoff": 20, + "text": "Estimated Offset
Value (ppm)" + } + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQe0FEX2xu+8SHrkoAIiIKACiugqihHz6q7L37RmV9lljSgi4JrTmjCjrLrqupjTGjEHFhQwAgICAgKKEiWHF+d/vmLrUa9fz3SYnpnuma/O8YBMd4Vf3a6u+vrWrVg8Ho8LEwmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgC2BGMUTWgYJkAAJkAAJkAAJkAAJkAAJkAAJkAAJJCZA8YTWQQIkQAIkQAIkQAIkQAIkQAIkQAIkQAJJCFA8oXmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAMUT2gAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJ+CNAzxN/3HgXCZAACZAACZAACZAACZAACZAACZBAnhCgeJInHc1mkgAJkAAJkAAJkAAJkAAJkAAJkAAJ+CNA8cQfN95FAiRAAiRAAiRAAiRAAiRAAiRAAiSQJwQonuRJR7OZJEACJEACJEACJEACJEACJEACJEAC/ghQPPHHjXeRAAmQAAmQAAmQAAmQAAmQAAmQAAnkCQGKJ3nS0WwmCZAACZAACZAACZAACZAACZAACZCAPwIUT/xx410kQAIkQAIkQAIkQAIkQAIkQAIkQAJ5QoDiSZ50NJtJAiRAAiRAAiRAAiRAAiRAAiRAAiTgjwDFE3/ceBcJkAAJkAAJkAAJkAAJkAAJkAAJkECeEKB4kicdzWaSAAmQAAmQAAmQAAmQAAmQAAmQAAn4I0DxxB833kUCJEACJEACJEACJEACJEACJEACJJAnBCie5ElHs5kkQAIkQAIkQAIkQAIkQAIkQAIkQAL+CFA88ceNd5EACZAACZAACZAACZAACZAACZAACeQJAYonedLRbCYJkAAJkAAJkAAJkAAJkAAJkAAJkIA/AhRP/HHjXSRAAiRAAiRAAiRAAiRAAiRAAiRAAnlCgOJJnnQ0m0kCJEACJEACJEACJEACJEACJEACJOCPAMUTf9x4FwmQAAmQAAmQAAmQAAmQAAmQAAmQQJ4QoHiSJx3NZpIACZAACZAACZAACZAACZAACZAACfgjQPHEHzfeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCcEKJ7kSUezmSRAAiRAAiRAAiRAAiRAAiRAAiRAAv4IUDzxx413kQAJkAAJkAAJkAAJkAAJkAAJkAAJ5AkBiid50tFsJgmQAAmQAAmQAAmQAAmQAAmQAAmQgD8CFE/8ceNdJEACJEACJEACJEACJEACJEACJEACeUKA4kmedDSbSQIkQAIkQAIkQAIkQAIkQAIkQAIk4I8AxRN/3CJ313vvvSf/+Mc/pH///nLhhRdKgwYNQtGG1atXy2233SY//PCDXH311bL77rvX1mvLli0yadIkefbZZ6Vnz54yZMiQUNRZVyKsTEMF6X+VqampkW+++Uaef/55mT59usTjcenQoYOccMIJcvjhh0tJSUkYq520TslsN3KNSWOFV65cKW+++aZ88skncs0110jXrl3TWJr3rDdt2iR4lv/zn//Izz//LKWlpWq8Ofvss2XXXXeVWCym7HXevHny3HPPyZQpU6S8vFy22247OfLII5UNN2rUyHvBeXLH+vXr5cMPP5QXX3xRLrvsMtl7773zpOVsJgmQAAm4I4D5xGuvvSbvvPOOrFq1Sho3bqzGynPOOUfNlZhIgATCQ4DiSUj64r777lMLDKdUWFgobdu2lXbt2slee+0lBx54oGy//fZSUFCQ8FaIEDfddJN8/vnn0rRpU7njjjtCs4D58ssv5corr1R1P+6445RAgvqOHTtW3n77bcHE2/zNiU+mfg8z00wxcFtOVVWV/POf/5QNGzbIBRdcoGwVk4QnnnhCqqur5dhjj5WLL75YYNs6YSJx+eWXy48//ui2mDrX3XrrrWlfpNnZrq/K5uhN8+fPl4ceekhmzJghEM+CGHswHnz88cdqMb5o0SLZuHGjsicIGf369ZPf/e530r59eyV4uEkrVqyQv//97/Lb3/5WDjvsMIHQ88ADD8jkyZOVPV577bWy3377yRtvvCGffvqpDB8+XJo1aybjx49X16F8THAh/GKyG6Zk2qddvfR4a/cbhCT0nTUlu8d6LZ7hRx99VCZMmKDGdKRMPJdh6oN8qEsiW7Fre6tWraRjx45q3oL/WrRokQ+I2MYsEIAo/vLLL8tbb72lxIgddthBTjnllMA/1sydO1fef/99+etf/1pnDuOlyXhX3nnnnTJ48GDZY4891LsN83QI9nhvYtzs3r27lyzTei3qi3fhunXrHMvBexHv59/85jdyyCGHSJcuXVy/nx0zD9kFbuatXt6hIWseq2MQoHgSInPAIhML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HddjwYL+TXY/FnbaywQ2hQk/JiywTzy3EBuxqNceDKabMfoSoh3+wwIWk0ireAfbhwiFSSOebzz7ycYC1Nt6DxYRmKRicYrxBOMCxivYKURMv2nlypXqucQXRCxU8TyhzZgkY8GKxTKer0TJXJzaXYPnDLaDxZLdOKbv0QtLbA9DnphEYuzEgg9jNCbYOAUJXi12E20sMLFQQCBT3IM+xIQSXht241my8cgvS30f6g7hAJP7RIITrk02lkKEhtcT2g1BGDaabBywjvF68QS7xaJizz33VLaJcR58MUGH8Ipx0+59h/cCtvZgEQF7g0CO7VKIUWBui0Kd8EwjYTEHe9JblmA7eI60GOmHK+wRYw3ystv+BDEY7w8ITnbu/6gfRD2IVGCE9xtSoneOdSzFMwHvApQDQVB76Zjvo2TPP8RcjD0QD7BQNN9PiXhoAdEtL/DFfADjAYTOZPMXr2ORVxt1epdjDNQfWMz2ae74ze53N9tUU7FFN/bu9J5CHbUoae07jG94hv0+K5hLQuieMGGCskWIqojRdfLJJ6tn2xwTk43JXo8hN9thjrEQcpzGZCuDRPVK1rdOcx8tiEJATDQHQD2swmeiuUii9iZ6pySbY7qxWV1eMtuyGwcgHuC9DNERH4nwsc+6ptD3eX0XuLWfZNe5nXc5jXFO/a/7tn///kmfPTdzQKe68Pf0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+eZH7EUccodr5/vvv50V72UgSIAESIAESIAESIAESIAESIIH8IkDxJL/6Oy2tpXiSFqzMlARIgARIgARIgARIgARIgARIICQEKJ6EpCOiXA2KJ1HuPdadBEiABEiABEiABEiABEiABEjAiQDFEydC/N2RAMUTR0S8gARIgARIgARIgARIgARIgARIIMIEKJ5EuPPCUnWKJ2HpCdaDBEiABEiABEiABEiABEiABEggHQQonqSDap7lSfEkzzqczSUBEnBPIC5SsaFGYgUixY0L3N/HK0mABEiABEiABEiABEJFgOJJqLojmpWheBLNfmOtSYAE0ktg88pqWfblZqkuj6uCIJ5st29DKSmjiJJe8sydBEiABEiABEiABIIn4Fo8qaiokO+//166desmJSUltjVZsmSJrF+/Xnr06CGxWCz42jLHUBKgeBLKbmGlSIAEskxg8YcbpXJDTZ1aNN6uSAkoTCRAAiRAAiRAAiRAAtEi4Fo8Wb16tYwaNUqGDRsmLVq0sG1lPB6XZ555Rtq2bSt6QR0tHKytHwIUT0AtLjXrZkvNlqUSK20thU13EYkV+8HJe0iABHKAQE2lyA/j1tdrSVHDmHQ6skkOtJBNIAESIAESIIH8IzB99VpZtGGj54bv3rK5dGrcyPN9vCFcBAIXT5599ln59NNP5bbbbpOysrJwtZa1SQsBiici5XPvk5pNi2r5xkpaSoNdhokUNEgLc2ZKAiQQcgJxkQXj1ku8qm49S5oWSMdDG4e88qweCZAACZAACZCAHYGn5i+SCctWeoZzRtdOcmC71p7v4w3hIpBQPNm8ebNACPn888+lvLxcqqurZdWqVdKqVSspLCy0bQW8UzZu3Cjdu3eneBKufk5rbfJdPKlZP0fK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88AtNgAResqUKUqQxDwMcx3sYqQTNVsd72DnBZpHBnt/mc2NAtkC5ml4J+q5YLB7D15+mH/hPsScEx9h/InIuDcgQASbywV7HvjrP+4D33cT5jQIEzV7D6E8PDNwL+DDg+9uRf6ex1ZyGPnbLS3Y/eqEbbAMEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEgghgQKCgrku+++k3/+85/y888/i8fjkXr16sktt9wi559/vnz55ZfSsWNHKVGiRAxbyapJgARIgARIgARIIL4IUDyJr/Fga0iABEiABEggYgTy8vLkzTfflAULFkifPn2kTZs2kpKSIrt27ZIpU6bIt99+Ky1btpShQ4dSPInYKLBgEiABEiABEiABNxKgeOLGUWObSYAESIAESCAEAosXL5bnn39eBg0aJO3atStSAjxSZs6cKatXr6Z4EgJbXkICJEACJEACJJDYBCieJPb4snckQAIkQAIkUEjgtddeU14no0ePlrp16xYjc+jQIZk+fbrcdddd9Dyh3ZAACZAACZAACZCAgQDFE5oDCZAACZAACSQJAYgns2bNkuuvv17uu+8+SUtLK9Jzr9crc+fOlUsvvZTiSZLYBLtJAiRAAiRAAiRgjQDFE2uceBYJkAAJkAAJuJ7A8uXLZfjw4ZKbm6sEkvvvv18qV65sqV/IizJhwgRZu3atur5p06Zy7733SqNGjdT1yKeCkJ/Zs2dL1apV5aGHHpJly5bJG2+8IXv27JEWLVpI//79i9SXnZ0t06ZNU9dkZWXJaaedJg0bNpRzzjlHOnXqVKRdBw4ckPfff1/mz58vx48fV+VcffXV0rVrVylVqlThufv371e5W+bNmycDBgyQI0eOyIgRI6RkyZKq77Vr17bUX55EAiRAAiRAAiRAAkYCFE9oDyRAAiRAAiSQJAQgcLz99tvy8ccfC3KclC5dWm6//Xa56qqrgnqaYHeed999Vx577DG1M8+WLVuUIHHw4EF55plnlOABwQLn4Z9XXnmlEkLwe5MmTeSbb75Rf8cuPo8++qikpqYKvFwmTZqkdvyByFG2bFlZs2aNjBo1Srp166a8Y/Sxbt06GTlypPob2orj888/V9dDDHn66aeVYLN+/Xol7nzwwQfqHIg7q1atkk2bNikBB/V06NAhSUab3SQBEiABEiABEnCSAMUTJ2myLBIgARIgARKIcwIQTb7++mt55ZVXlAcHjooVKyovlEsuuUQyMjKK9GDnzp3y5JNPSt++faVZs2aFv0EMefbZZ9Xfhg0bpoQYCBdIRnvGGWeopLO1atVS5+/du1d5naSnp8vYsWNVfcivAjHj1ltvlcsuu6ywXAgtEF2uu+469Td4nKD+OnXqqDboUCOIL8jPMnnyZJX8duDAgart+fn5qg70EWXcfffdkpOTI9u3b1fCj2//4ny42DwSIAESIAESIIE4IUDxJE4Ggs0gARIgARIggWgSgEAxY8YMlQMFggMOiAsQKrTogb/BSwVeHkgyW6FChcImbt26VQkW2OoYv8EDRP/tL3/5izzyyCOF5yI8B0LL7t27lbCBkJujR48qoQUhN/inDh/6448/lAcJhBwcX3zxhbz44otKjEG5xmPHjh2qDSj/hRdekAYNGqifX375ZeXtEigxbjQ5sy4SIAESIAESIIHEIEDxJDHGkb0gARIgARIggZAIQNBASA48SeCVAhEDITlnnXVWoRDx2WefBS0b57ds2dJUPNm4caMSOfROPyh3/PjxKmSoS5cuylMEXin60F4kyHOi6zA2RIsyK1askD59+si1115b2Gb0x1hXSHB4EQmQAAmQAAmQAAn8jwDFE5oCCZAACZAACSQ5AYTAIDcI8oogwSpEiIcfflhOnjypPEaQzBX/RGhOsMPM88RXPEFZuEYnokUuFCSA7d69u/JIMYoj/sQTXA8vE4gwDz74YGGeFPyN4kmSGzW7TwIkQAIkQAIOE6B44jBQFkcCJEACJEAC8Urgq6++krPPPluqV6/ut4k6RObCCy9UYTKZmZkybtw4wS498OJALhOnxROUB/EGSWhff/11lTfloosuUqE8EFOef/55lYgWOVkgrPgeWjx57rnnpFWrVupniifxaoFsFwmQAAmQAAm4lwDFE/eOHVtOAiRAAiRAArYIIL9JlSpVCvOJ+F6sPUcgsAwZMkSF02B74HfeeUd5ddx3332FCVv1tfBYQagNQnHseJ4g5wrCbbAzjz6Q2BViDZK9wgvm3HPPLawfOVAGDx5cJOErtkzGeagX4k61atUontiyCJ5MAiRAAiRAAiRglQDFE6ukeB4JkAAJkAAJuJwAkr/OnTtXheBga1/fA54nEC969+4tnTt3Vj9jtx14gezfv18uvfRSueuuu5TnCrY9XrJkicCbBUlbEdIDEQM76GD3G38JY41hOxBPsC0xti6uUaNGYVNQHhK9avEEWwyjfCSSxZbEF1xwQeG5+/btU7+1bdtW7arj8XgKxZMFCxao8hs3buzyUWPzSYAESIAESIAE4oEAxZN4GAW2gQRIgARIgASiQADiCfKLwFOkV69eKjwGogc8OODt8dprr0nr1q2VeKLzmyCk5ssvv1S/IQeK8UByWYTLYJceJJudM2eO2gK5SZMm8tRTT0mlSpXU6UhKC68RCDBPPPGEtGnTRm1V3K9fPxUahG2MkaAWgsqYMWOUdwsEG90GhO2gnvLly6tzzzvvPHUuwnyQF8V4LgQVhPpgx56bb75ZevTowe2Jo2BbrIIESIAESIAEEp0AxZNEH2H2jwRIgARIgAT+R2DhwoXSqFEjJU5gB5t58+bJr7/+qnKLQAC59dZblaCC7YeNBwSUDRs2qF15kJME1yO/SM+ePaVmzZpFErsar0MSVxwQbIzHNddcI7fffrsMGzZMDh8+rEQVCDMQS5Cs9pZbblEJY43Hrl27ZPLkySr/Cs5Fvd26dZMrrriiUBxBCBFEGuNRrlw57rrDO4AESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZwP8DLfWzz/KFx8IAAAAASUVORK5CYII=", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter = elq_model.components[\"offset\"].plot_iterations(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", "plotter = elq_model.components[\"offset\"].plot_distributions(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", @@ -576,10 +541396,78641 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "id": "adf43b37-17fc-4fe0-85cb-8894b209edbd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgb(178, 226, 230)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 1.0248851577988605, + 0.11427274415617526, + 0.06761670728182556, + 0.0869177715051518, + 0.0748147921085991, + 0.07184255716709634, + 0.06951760560217014, + 0.08311679228054426, + 0.08327186954440399, + 0.08229385562162692, + 0.08448898064776143, + 0.06517455653884688, + 0.09004698040856668, + 0.0741228346417943, + 0.08695334894230058, + 0.07686561775383227, + 0.11658348300667369, + 0.10282321703707621, + 0.06740418165400063, + 0.07998788024131627, + 0.08374525192140608, + 0.10390138746032407, + 0.07796516466860821, + 0.0715825388838302, + 0.07455715877176866, + 0.08769305515889822, + 0.0805963334684471, + 0.07636083153277523, + 0.07344701780103614, + 0.07677276594476468, + 0.08661292704472287, + 0.08070931702888967, + 0.06949880546677223, + 0.07681955862616284, + 0.1007769620336446, + 0.09465531998220829, + 0.07261579232850258, + 0.08659550916309201, + 0.09422497124413336, + 0.1019507911386959, + 0.10285966528906414, + 0.06946144691787061, + 0.06161619479124536, + 0.07081401921414687, + 0.07206559767559133, + 0.09018026017161299, + 0.07938523226951907, + 0.09058616795357621, + 0.0777147911946703, + 0.06733168300348719, + 0.06345072512184712, + 0.06987006261758794, + 0.08549247836799834, + 0.07074342874334758, + 0.09521871201980828, + 0.08022962161584009, + 0.11181955959080739, + 0.08237645740709759, + 0.06458520688220953, + 0.08265301007428175, + 0.08174375575507269, + 0.08425926600256725, + 0.06741878882188769, + 0.08025159854347816, + 0.08805298158284025, + 0.07068406844551824, + 0.08370995780152937, + 0.09028014121909322, + 0.08392049538602744, + 0.09820762717041184, + 0.06798755644240513, + 0.06612434180798364, + 0.07627373677445659, + 0.07383561216666322, + 0.05362237499668836, + 0.10237231005564995, + 0.10580507269628933, + 0.0755401916645826, + 0.07327631862303308, + 0.09103945020453995, + 0.07246047341368071, + 0.06463366759233768, + 0.08675698056684143, + 0.07013104520158436, + 0.09450439039717413, + 0.08973993587096571, + 0.08344655728455994, + 0.09450470727778819, + 0.07280572671002565, + 0.07506137199438817, + 0.07058530289134049, + 0.07380219913664302, + 0.08460381820262068, + 0.08234304175654016, + 0.07201418059065823, + 0.060957855795497964, + 0.07494769244553166, + 0.08362306562258438, + 0.08777026466899308, + 0.09209827120465139, + 0.0771080929481765, + 0.07296092403176804, + 0.09146231597125086, + 0.08063584421048879, + 0.08809841336056683, + 0.062057321594027944, + 0.07336912824297888, + 0.07426687834513053, + 0.07607420531914529, + 0.08417297563922879, + 0.06281601649386802, + 0.05721884918494389, + 0.07154761340158057, + 0.09271128554548544, + 0.08538322564819835, + 0.08400358933467038, + 0.09225218012740148, + 0.0680170571504633, + 0.062338980540471774, + 0.06989842958403653, + 0.07248779231825805, + 0.0970123852222494, + 0.08760398568670259, + 0.0793298786753686, + 0.10892597620893207, + 0.09506431121703929, + 0.06729631889085216, + 0.062488703091113165, + 0.0651175829568285, + 0.06945151938471386, + 0.07252148004131635, + 0.06874217014936497, + 0.07707500333982689, + 0.08471857939762956, + 0.08783189860804937, + 0.0728370778944709, + 0.0666516744346737, + 0.11306595776084592, + 0.07903145029364891, + 0.09043580624298603, + 0.06324814091824442, + 0.08831773135589228, + 0.07881380467468857, + 0.06643003561185479, + 0.07100023364880513, + 0.06750009569627582, + 0.08372325927529495, + 0.06919221251545601, + 0.07977572719968029, + 0.0791885796608401, + 0.08198818846736602, + 0.0923456442166124, + 0.06735881786810051, + 0.08998723501968967, + 0.08928939661816773, + 0.08335068086397718, + 0.07493523176408924, + 0.06938248344487076, + 0.08319971660627289, + 0.07681200894867724, + 0.06521618612135585, + 0.09568303692344159, + 0.07594035224956346, + 0.08680032593347418, + 0.09814636034495496, + 0.07204866096298745, + 0.06997953118932816, + 0.06092292949857764, + 0.08301360751038954, + 0.07573005170727413, + 0.09129873007525045, + 0.06380551183900539, + 0.06900460314649473, + 0.074726655406853, + 0.0748087357296913, + 0.059512444726840766, + 0.06608904361417141, + 0.06564839414598742, + 0.07364885761917335, + 0.07666149638394598, + 0.07652830916340189, + 0.07234425278845869, + 0.059733774411459266, + 0.07839323789655922, + 0.07494521134517212, + 0.07072841226540559, + 0.07715810511369424, + 0.10918134854629352, + 0.08180609881407483, + 0.07997779994171174, + 0.06840866225455271, + 0.08760247884094957, + 0.061716310575098784, + 0.0654605589308143, + 0.07165342903329444, + 0.0699996108670535, + 0.08947513288744428, + 0.0783995665192886, + 0.08257722207321065, + 0.09678167861663406, + 0.060771677311912096, + 0.08347279907649936, + 0.07200561301825092, + 0.060077646763705, + 0.08532898939146058, + 0.08843206257739014, + 0.07414109568603586, + 0.09197701589955491, + 0.06761111190959532, + 0.07901882530840307, + 0.06063150747127578, + 0.07437210953044471, + 0.07562742004923091, + 0.11229292727085921, + 0.07250551630782906, + 0.09385236853777446, + 0.06874254210733749, + 0.06410723309173036, + 0.07290365159157496, + 0.08837345318076013, + 0.06873403396190568, + 0.0754685673267956, + 0.07707457115554774, + 0.06501597840923778, + 0.08171960317481829, + 0.08948461714685702, + 0.08311988537577569, + 0.060683570120498825, + 0.07688869961686433, + 0.07541082669799751, + 0.073216282356447, + 0.09597099500330722, + 0.09036602989851919, + 0.09075088141769914, + 0.07081356696203757, + 0.0906886393090524, + 0.07962794146234019, + 0.06735138016030515, + 0.07022392660599786, + 0.0711046913970654, + 0.08335840511801901, + 0.06554089548266738, + 0.0685505958241804, + 0.07114429936799743, + 0.08597384106571082, + 0.08857259536738225, + 0.05941019766731186, + 0.08484530178508415, + 0.07551569977982743, + 0.06909363914502954, + 0.10666415705674988, + 0.06948321228498977, + 0.059171397843408066, + 0.07660277721478231, + 0.07348922335853497, + 0.09612729331912244, + 0.09204020298107538, + 0.09485451511593398, + 0.07641097027736209, + 0.07355332252634555, + 0.0723623937088065, + 0.06215632576060579, + 0.09634654692409815, + 0.09845726446652432, + 0.12770704303598762, + 0.06992807020792474, + 0.06533077709062828, + 0.0696824243323302, + 0.08890993389707062, + 0.07331165116559489, + 0.0715487086305261, + 0.08936509344033881, + 0.06874732140435563, + 0.0632464718523553, + 0.08407044304248601, + 0.08633571609462659, + 0.09034436412495643, + 0.07514626593289087, + 0.08111455975032315, + 0.07801737334718274, + 0.07074108621227755, + 0.07907582570940264, + 0.07062031342844913, + 0.07799416052662005, + 0.08487408902300222, + 0.0691036791057158, + 0.10013006895839884, + 0.0944406537292757, + 0.06896100058349995, + 0.08733913887444923, + 0.08296243886809422, + 0.07834015642285465, + 0.07079285926463838, + 0.08604637434167782, + 0.10156617778277915, + 0.07618123005431927, + 0.06817118153216437, + 0.0991446520755326, + 0.07313550183464886, + 0.09224622915212555, + 0.07282140673812762, + 0.07004111524034487, + 0.08914885533616558, + 0.06244726058672233, + 0.08171011142614208, + 0.06782319788967228, + 0.06547231724590277, + 0.07167550700552011, + 0.12701113641122957, + 0.07603758897079206, + 0.09880362774097042, + 0.07359561272885974, + 0.06493806886623636, + 0.06533906753645757, + 0.07533277592859011, + 0.09862322683911483, + 0.07656554467406665, + 0.07886184837477961, + 0.07559127672263552, + 0.06152804525026296, + 0.10244753329349937, + 0.06810220486002257, + 0.08667881582396679, + 0.08796973599284014, + 0.08334657351054885, + 0.06800854664321232, + 0.07697904723670783, + 0.05240370826843668, + 0.06157396494658811, + 0.08094659725939628, + 0.07789513908084492, + 0.08285416933831524, + 0.0940429300691706, + 0.06843924157432109, + 0.09278190397151098, + 0.056411037498496616, + 0.08119608885799452, + 0.06440156154219502, + 0.06312324900722692, + 0.08108896764783541, + 0.08454625112782332, + 0.07351526016116894, + 0.09766666656550602, + 0.07888357243095602, + 0.0670038165302565, + 0.09029429357493413, + 0.08516343364325957, + 0.07967742735656909, + 0.09002657533274763, + 0.07413378024535046, + 0.09254869064548221, + 0.08651596738655516, + 0.10252469668307464, + 0.07363179036718738, + 0.08364361434619087, + 0.09115198515987612, + 0.09469614394248854, + 0.07209583773974633, + 0.07790482858938465, + 0.08320221295776066, + 0.08952893747533776, + 0.0816996283330884, + 0.06930714146030176, + 0.07584512214000828, + 0.07520129949941323, + 0.07852020731964365, + 0.0759358472167489, + 0.08274256386521216, + 0.08196490420927051, + 0.08168598734055797, + 0.0690888657544239, + 0.06818435610986086, + 0.07620871163523717, + 0.07079796927188599, + 0.07199532240427194, + 0.10106908928465144, + 0.08874930773641303, + 0.08986413715265049, + 0.07747275510370281, + 0.08094225342645622, + 0.07979574049999962, + 0.09367522791296247, + 0.06801787054440475, + 0.07671523819258128, + 0.06723077296069738, + 0.06432363410584703, + 0.06962746099645217, + 0.10330541447043418, + 0.07147936714031498, + 0.059395735292987445, + 0.0890321744148867, + 0.08621673203834003, + 0.08263702007824653, + 0.07374665266576592, + 0.10420453110142491, + 0.07277156712100241, + 0.07773145163943564, + 0.071959565320709, + 0.08492127636867336, + 0.07968063423927225, + 0.09522923781467305, + 0.07188443605548597, + 0.06941502339217998, + 0.08300681768589105, + 0.07145948336368865, + 0.08425615989299279, + 0.06340526017516276, + 0.07206511489671615, + 0.09308896635421152, + 0.08921275552024281, + 0.06541913112831604, + 0.09138463207160222, + 0.07488110679675676, + 0.09080436487553828, + 0.07685679283706622, + 0.08773335494149254, + 0.08464837420712219, + 0.0970374252252178, + 0.06482361128004807, + 0.08407610986149733, + 0.05788264027162204, + 0.07819358214166089, + 0.09805793517062657, + 0.0675629744460933, + 0.07044479446506793, + 0.07616852422125742, + 0.08088795105088438, + 0.08746829603761133, + 0.052207099723753744, + 0.06448668907694097, + 0.08128489214397841, + 0.0814616068224917, + 0.0772948610258787, + 0.07295978269151261, + 0.07902645367835098, + 0.0784930041186026, + 0.07897872431646556, + 0.07601070947862018, + 0.05907131040761865, + 0.07282979799948518, + 0.06298268027355854, + 0.06374195067569659, + 0.0681577830902327, + 0.07283411371998487, + 0.07745201126216536, + 0.07645125484277557, + 0.1012511085492488, + 0.09395758054632128, + 0.07293619641963647, + 0.06479408272663803, + 0.07282528339668029, + 0.06609400783693017, + 0.0732606328750571, + 0.09334597308068913, + 0.10311036109311957, + 0.08715946033424866, + 0.07850362902735986, + 0.07025170361076256, + 0.08855516507882383, + 0.07145916491276239, + 0.06658108542045428, + 0.07703147001209613, + 0.07482563338733166, + 0.07813430939653733, + 0.07762827063474986, + 0.10022622044461864, + 0.06658781265488338, + 0.0784458645492161, + 0.08915364067794677, + 0.06269750246529576, + 0.0721037036132014, + 0.08686177663252428, + 0.06455226542622033, + 0.0626850118261135, + 0.07618446265057145, + 0.06119376125197354, + 0.07800832750489656, + 0.06919717728465465, + 0.06843358142564843, + 0.104856772336988, + 0.0802886936436212, + 0.07186460254105463, + 0.08091970895157707, + 0.06596523012378509, + 0.08041228753307182, + 0.07796673849993459, + 0.07266670541104077, + 0.07649502118034393, + 0.07767301294124712, + 0.07620288993026438, + 0.06885370576440286, + 0.09228045283677704, + 0.06490752070576797, + 0.06642521352484851, + 0.09124416368832883, + 0.084703328957752, + 0.06925294580252803, + 0.06863096493000248, + 0.07469636194988678, + 0.0618024967588825, + 0.06883931274854303, + 0.06467869159835364, + 0.08287771573682486, + 0.07818538464384645, + 0.0671079224659723, + 0.07508134645848458, + 0.08272136095586206, + 0.06479322614120825, + 0.0749668610016874, + 0.06999305717301438, + 0.08861763001269019, + 0.07135346369857602, + 0.07704156406049745, + 0.07522341592400027, + 0.06271294233572591, + 0.07877858698526503, + 0.10051701417665374, + 0.08938068094337454, + 0.09268220673549374, + 0.08595363815438943, + 0.07103870865443314, + 0.07769458779865089, + 0.10340844414266075, + 0.07114022490883715, + 0.0727769795256015, + 0.08522427014268807, + 0.0798671435535891, + 0.07759196340006674, + 0.06458898031898501, + 0.09670289780147462, + 0.07373216764750595, + 0.09522990624950604, + 0.08635769732426762, + 0.0894845573089662, + 0.08173272133077461, + 0.08229842370316733, + 0.07137953967106819, + 0.08567852818228114, + 0.0674250612124916, + 0.06305159701088542, + 0.06705658403256719, + 0.09065612781159829, + 0.0865981401501876, + 0.08186615124722264, + 0.05719348504041447, + 0.09206672067340621, + 0.08142932499233355, + 0.08668301106870806, + 0.07932459256343082, + 0.08986434675864648, + 0.09366173449561624, + 0.08501209558608257, + 0.0616558540119445, + 0.08679303125260275, + 0.07017138073696094, + 0.10557716153709953, + 0.09285416589933357, + 0.08226886542612352, + 0.07184477274882159, + 0.06772362554532474, + 0.06072036027200166, + 0.07929113851509481, + 0.099362025451946, + 0.09681543285301929, + 0.0985298874972936, + 0.08090588518910612, + 0.08230414298442117, + 0.07445477664717987, + 0.0684747976023619, + 0.07897670242320443, + 0.07568267347568332, + 0.07713849238131676, + 0.06896247313449298, + 0.0671347336658277, + 0.08131686713687236, + 0.0850208651058131, + 0.07963870600086706, + 0.06823197210582634, + 0.08039281711085552, + 0.0823323174002072, + 0.06493506933779822, + 0.09900150602252279, + 0.06874370186859094, + 0.07995642675875836, + 0.08301475115555572, + 0.07672283835287763, + 0.07186266445457706, + 0.07401470814135182, + 0.08276149633300935, + 0.08332105254987567, + 0.057055966944502746, + 0.07737428123393969, + 0.07722195703619154, + 0.07488188823904719, + 0.08738578164124651, + 0.06559928112608923, + 0.09029239447381004, + 0.05574011446097922, + 0.06438020231123218, + 0.0711184241276254, + 0.08811203477310355, + 0.10793293303069314, + 0.07026723610483314, + 0.07243206137899626, + 0.07696207079424754, + 0.07333966976486522, + 0.07367984516302696, + 0.10195702969024001, + 0.06557826112915499, + 0.05760393833236978, + 0.10952542361595555, + 0.09298994390434771, + 0.08017727939702968, + 0.07076886949791844, + 0.06876590152377794, + 0.06949651940464792, + 0.07111862794949922, + 0.06333758514316845, + 0.07644847546494234, + 0.09712679898381744, + 0.09012451466567102, + 0.07017602322607935, + 0.07797597266129105, + 0.10678912540450299, + 0.09058558295057378, + 0.08459844652194064, + 0.07264658805899896, + 0.083039372219906, + 0.08913842184646366, + 0.0866647523342223, + 0.08845709781908943, + 0.09502514646588314, + 0.08691032337765786, + 0.08778104835729615, + 0.08352211954284021, + 0.08955695043568417, + 0.07146397610056243, + 0.08003154203428134, + 0.08247300896739894, + 0.07812687763279248, + 0.07223391647817366, + 0.07764086811777367, + 0.08012306630173867, + 0.08022648583131667, + 0.07965385052944819, + 0.08730134652193065, + 0.07473330985961654, + 0.06739539073860008, + 0.061928666758410744, + 0.07486676180896983, + 0.07946376135480278, + 0.08920802090652974, + 0.08100926249004996, + 0.07092691630018905, + 0.08302522748922442, + 0.07342887185113645, + 0.08249142923916432, + 0.07942087423206821, + 0.08691402311654776, + 0.07680077099474587, + 0.08027592875820981, + 0.09720030833847793, + 0.0760490060107746, + 0.08164213125269339, + 0.08120167546975836, + 0.07110462461997671, + 0.07713170723691892, + 0.0805376574604554, + 0.07415006119426606, + 0.06937188410850238, + 0.06352556681376126, + 0.06455734081493715, + 0.08375012071592478, + 0.06615090579271278, + 0.06351654594779833, + 0.07048083101366513, + 0.08820442184904244, + 0.07121738891751903, + 0.07504917629497451, + 0.08035612562837494, + 0.08145924685438224, + 0.08118027768556482, + 0.0673531007089674, + 0.07835290223069245, + 0.06846171170008873, + 0.08946047207607843, + 0.11064085483044639, + 0.09002462672106694, + 0.0746457055760543, + 0.06492286641571147, + 0.07109835718629245, + 0.07620675985552915, + 0.07522381861670745, + 0.08987166801994147, + 0.07406408171105877, + 0.09177985311321687, + 0.0787069732677827, + 0.08173596638450024, + 0.09392301624859323, + 0.07191828259621066, + 0.060393268904106887, + 0.07471478785537175, + 0.07835137445018761, + 0.08114261953615394, + 0.07221842940337411, + 0.09712294959015962, + 0.063257430319173, + 0.09493765758551485, + 0.08796275399372819, + 0.07104284853685525, + 0.09200774282226104, + 0.10086320683140464, + 0.07695366605404995, + 0.07603538153691639, + 0.060994108263355884, + 0.07902823469438228, + 0.0818594499244641, + 0.0995604360443111, + 0.08901479590899489, + 0.09394703380695332, + 0.06344922817761403, + 0.07027870885551847, + 0.0690841192687189, + 0.09425643839898669, + 0.06787124173713888, + 0.07860737981401744, + 0.0625804511834235, + 0.08056261032163155, + 0.056839958544127316, + 0.07862957508713081, + 0.06668287235337512, + 0.09879941951801022, + 0.07074802240825705, + 0.09520768493639106, + 0.09010550584485275, + 0.06757607415833976, + 0.0800875097576448, + 0.0737124617404239, + 0.08290252445796131, + 0.08712682239052452, + 0.08289454623307413, + 0.09017539963807042, + 0.06473877551851699, + 0.08048941380308965, + 0.0924859013832258, + 0.06898292401686489, + 0.10154094200687046, + 0.07834506654451097, + 0.11343660540610027, + 0.0773039772457758, + 0.06124238543598197, + 0.06928942844017674, + 0.08453412807695497, + 0.0838185480638161, + 0.07509069153582988, + 0.07120223021004644, + 0.08138964867091669, + 0.06980225691733437, + 0.07274851747168135, + 0.09942939476780747, + 0.07673317820451432, + 0.06821249009897938, + 0.05765096533066206, + 0.07198648937615289, + 0.07516023835215171, + 0.08359636730912612, + 0.07463080768642011, + 0.09287944353424757, + 0.07302686456297199, + 0.07849562323173952, + 0.07884621431267097, + 0.07599685973549751, + 0.077978978603698, + 0.08500628509451179, + 0.08019753210012555, + 0.10964666865927923, + 0.07665312318805872, + 0.07886152980188184, + 0.06195896018268905, + 0.07671109489199704, + 0.08330367659564734, + 0.05629291669499468, + 0.061079650247289514, + 0.08374568068867864, + 0.06764110121822178, + 0.08241726267481192, + 0.08325684246248766, + 0.07453461091610455, + 0.09524723907589067, + 0.0786415177526883, + 0.06527450018918121, + 0.07306760488224898, + 0.07426137580421915, + 0.10113347390414558, + 0.09054984364172035, + 0.08081384248547063, + 0.07510239652015674, + 0.07289720607649507, + 0.07396633163976574, + 0.0680807618272264, + 0.07360089223298606, + 0.07800182127721444, + 0.059296888614640615, + 0.07212506234747453, + 0.07767406935819082, + 0.09901708346953988, + 0.08229605590189022, + 0.07352194115985126, + 0.07936356753008249, + 0.08037062091780313, + 0.09426254880436465, + 0.10422990775851546, + 0.07888484422033672, + 0.13481962802042916, + 0.08927459082702349, + 0.09702465416686454, + 0.08742072954986572, + 0.05406261335268375, + 0.08779731127995126, + 0.08025813693605575, + 0.06221002738929886, + 0.06993948543185062, + 0.07590265755163313, + 0.07673576314866781, + 0.08158657463610851, + 0.08183279073134392, + 0.0724110011645731, + 0.09543971170028791, + 0.07288932181806934, + 0.08307571450177746, + 0.09706071242536725, + 0.09219118907382622, + 0.06196367746926577, + 0.09398863472498348, + 0.07739027149374753, + 0.08830895587627945, + 0.08878069512365716, + 0.06992800727163326, + 0.08031106152036473, + 0.06325469450591695, + 0.07452132293800393, + 0.06823557968027308, + 0.06945655446264713, + 0.07229904680223072, + 0.06662735677380267, + 0.07221677789584234, + 0.09048592204831328, + 0.06331982518558024, + 0.0719391919654594, + 0.07575808527209979, + 0.09235436998386433, + 0.06542281692069923, + 0.0801475340180425, + 0.09271117535611109, + 0.08269771132942497, + 0.07269291287872034, + 0.0658960360472315, + 0.08187056327565048, + 0.06745108863764943, + 0.0744772130366298, + 0.06244721272158093, + 0.06535530399568187, + 0.07607760908086508, + 0.08377253568741178, + 0.06592065692744505, + 0.08432927674522173, + 0.07516662454514322, + 0.08382607424102387, + 0.08507122960630886, + 0.07593009538463423, + 0.06725578589217428, + 0.08556936579904634, + 0.08314253734123497, + 0.06664076447447757, + 0.07768793721398855, + 0.07693289513374109, + 0.07598273826888609, + 0.07039181020066954, + 0.07038976346680116, + 0.06216098851809656, + 0.0706647120420979, + 0.08055523402736114, + 0.08586132909360787, + 0.08583566543284282, + 0.0706130439238394, + 0.07029359687229739, + 0.07119082639510521, + 0.06174754471718699, + 0.07378403419338309, + 0.08074630051352295, + 0.07173272803237009, + 0.08053191310212067, + 0.08070333134728161, + 0.09924532481299025, + 0.06934943454076556, + 0.062276776150213514, + 0.08196626546315063, + 0.07586833653550491, + 0.0748671987734143, + 0.08087702197885127, + 0.07555342294341558, + 0.054246526400040664, + 0.07760198322533497, + 0.09503622784470929, + 0.08320052629281702, + 0.07934976631487593, + 0.09206671321729752, + 0.06621960199441992, + 0.07744262002318947, + 0.09545768042322822, + 0.08054698335666732, + 0.07385951017200225, + 0.05801271001437776, + 0.06709255587529996, + 0.09771046511942674, + 0.06802521805006852, + 0.06446625298907739, + 0.0970380731475687, + 0.0824343750734541, + 0.06247244018169688, + 0.07287258339772615, + 0.06847117728040247, + 0.07822437677580234, + 0.06408608332481987, + 0.07250726999862894, + 0.06285541189884623, + 0.08214914426037406, + 0.07743381313786239, + 0.07508531141628558, + 0.10175933313372024, + 0.07529735921112933, + 0.08435881117047332, + 0.10705364216869619, + 0.07123168872820836, + 0.06041342145277066, + 0.09744963636151387, + 0.07154774267341812, + 0.06897810102147829, + 0.08349870057386971, + 0.11514993769846267, + 0.06823992170045914, + 0.0941386609992662, + 0.09099906349822119, + 0.08008249515286094, + 0.07833835483137354, + 0.08121341310904882, + 0.07318377465123654, + 0.0804061200777833, + 0.07725155673152961, + 0.09019005848915466, + 0.05757934112232626, + 0.07581516533545914, + 0.06462529769792942, + 0.08225835736459597, + 0.08552758854553462, + 0.08528928291404554, + 0.0749875626256184, + 0.07711133468002189, + 0.09265059816063766, + 0.09038920466018041, + 0.07232325621493417, + 0.06606502854928918, + 0.10409685739822995, + 0.06076049724633256, + 0.10175827972911103, + 0.07728940089376621, + 0.0677777690309718, + 0.07428433040910543, + 0.09107948740728859, + 0.07976786959212764, + 0.06829748122960248, + 0.06397559263774573, + 0.09536672856050223, + 0.06404261504723226, + 0.07417297590388865, + 0.06976948576176867, + 0.08576740734964623, + 0.06774006632870323, + 0.09037142797740755, + 0.09034408166692134, + 0.09219130829826591, + 0.07300942419411557, + 0.06590329430790444, + 0.07484099219601494, + 0.06946738702841317, + 0.09854796188753227, + 0.06394364799023064, + 0.07586113745121031, + 0.0666017883199566, + 0.0641007560460629, + 0.0960493975161267, + 0.07331938381158772, + 0.12431042415065367, + 0.07900251207025513, + 0.0755171925579996, + 0.0806000646861647, + 0.07295060946240266, + 0.09370710021125811, + 0.05701610157932558, + 0.076991813782698, + 0.10007036781941839, + 0.07226362571790067, + 0.0841524128960155, + 0.07457030391426304, + 0.0820420285752204, + 0.06416307178392425, + 0.06119423134954817, + 0.07407229797956685, + 0.08039720376047295, + 0.07663726968777204, + 0.08936313452825213, + 0.08697681992616112, + 0.08762793886158218, + 0.08110480934576161, + 0.0755758331538407, + 0.0868108894936419, + 0.08150502420484416, + 0.08596433547091101, + 0.08070240132030994, + 0.08286104645718878, + 0.08808773018996151, + 0.08611081142080279, + 0.07994578464385996, + 0.09421514459537086, + 0.08542597813472819, + 0.07607881259268208, + 0.07335361753058418, + 0.06509500674258614, + 0.06086362999418443, + 0.06846297949621787, + 0.060529594507199386, + 0.0680520001171389, + 0.07803442039314532, + 0.07275218624401608, + 0.07932017243514781, + 0.06712839461150914, + 0.07087547434260853, + 0.07616819063233606, + 0.07491147945478666, + 0.07211915935588291, + 0.06924608800475175, + 0.10540100527866673, + 0.06907716142109963, + 0.08340189940214326, + 0.0793521930220697, + 0.099737222561896, + 0.09141437746629463, + 0.07928943724204289, + 0.07190999050458963, + 0.06884086825458074, + 0.08701143040207847, + 0.09523883760517, + 0.08424408801885762, + 0.07376295330282365, + 0.09469043735616461, + 0.08407995858610624, + 0.07442651230423208, + 0.06620486997034174, + 0.08073671168075816, + 0.09020369756309227, + 0.07929529012713944, + 0.09032073211941305, + 0.07940588471858807, + 0.11184725756077166, + 0.07009825241159928, + 0.07645400542175766, + 0.06317509265928924, + 0.09002619045427775, + 0.09368683155812338, + 0.06806679231382434, + 0.06045590019563901, + 0.057595317665570536, + 0.07317936948709744, + 0.07761672663859352, + 0.06806615455390666, + 0.0760955841829821, + 0.09995216782040248, + 0.09021844524315083, + 0.05751548857776365, + 0.08344795864807153, + 0.06258947078214241, + 0.08966682072019126, + 0.07467352017346453, + 0.09470073768119727, + 0.08462018290010405, + 0.09072214928298683, + 0.0693342092225064, + 0.0793859871817059, + 0.09144747035231113, + 0.07446909629383755, + 0.06354756037698338, + 0.06749868914041764, + 0.07123548191193103, + 0.07744973208130136, + 0.07529737903493426, + 0.07988368928789427, + 0.07200365411354374, + 0.09147934314038313, + 0.08337136737673777, + 0.06503840433222007, + 0.056047950772181415, + 0.07312067204006331, + 0.07687963315863829, + 0.10201908429562868, + 0.06420448341945405, + 0.06041307114548964, + 0.07138881746766006, + 0.07873247674597346, + 0.08826783691893517, + 0.06757820435844099, + 0.09036891219015304, + 0.06728725071825366, + 0.06824930550744451, + 0.09232606316255258, + 0.07228127161460189, + 0.08816651929690256, + 0.06469567799430398, + 0.08859432620892298, + 0.07553700091155875, + 0.06639928062508631, + 0.07470653374909968, + 0.07691980714994504, + 0.07592141341708082, + 0.0824254458587832, + 0.0749123210919719, + 0.13739929097017226, + 0.07335161315072021, + 0.07795613927092733, + 0.05764333521887106, + 0.08203275994973712, + 0.06558669289653705, + 0.11412356834884146, + 0.07286540768725061, + 0.08023626935240243, + 0.07868595029788815, + 0.09579788904140164, + 0.08330755045282477, + 0.08676840390913368, + 0.09882566306036471, + 0.13353198837925723, + 0.06894345982748899, + 0.08160115220258536, + 0.09832742162124945, + 0.07112928661178483, + 0.06540261533584117, + 0.07857116787344634, + 0.09260779858699565, + 0.07049998902905015, + 0.06946304197813447, + 0.07113927207538467, + 0.08056960679654962, + 0.08923388687363648, + 0.08185326044090155, + 0.0634393552622193, + 0.0972094069124623, + 0.061817205005510655, + 0.07805711651743918, + 0.09046886628805051, + 0.07527190424267381, + 0.08394527633511843, + 0.09114966543823423, + 0.09816441377508472, + 0.05471151634534766, + 0.059586458179581414, + 0.07605567592714756, + 0.11582501778718109, + 0.09636328832329008, + 0.08622346031073173, + 0.08023775411307815, + 0.08340565398980894, + 0.10191168528652675, + 0.05800757040461889, + 0.093772411924765, + 0.07374192205170788, + 0.08001675542580136, + 0.10105903509951661, + 0.07464728695344068, + 0.08964073298628894, + 0.09822136146420779, + 0.08325368419906352, + 0.09357756592670312, + 0.07823440661400874, + 0.07015560220801817, + 0.06944827652406367, + 0.06708339451814302, + 0.06068959247522433, + 0.07991692233861311, + 0.0897220935802698, + 0.0750019759591321, + 0.07706356798606942, + 0.10422900504754634, + 0.07652449074704203, + 0.08337162189386517, + 0.090922903674983, + 0.057258149639463844, + 0.07430114456626064, + 0.07668691705401165, + 0.06681964531440492, + 0.0716575644528803, + 0.08170934759948185, + 0.0798694252873324, + 0.09217179097600739, + 0.10850040971571659, + 0.07107469473348249, + 0.07928860221067535, + 0.0682365950858447, + 0.07199023001905488, + 0.08633138480709256, + 0.07154769600676644, + 0.09015139126141734, + 0.06582352497965849, + 0.07259342191160241, + 0.07845604201938286, + 0.07088004914899745, + 0.09116172767225557, + 0.06556952422531534, + 0.06439091489794736, + 0.08745867924049215, + 0.08041563063023097, + 0.08190272446153109, + 0.0950075688396539, + 0.08279255629203748, + 0.07935017313233884, + 0.0720489475724755, + 0.07584423240305829, + 0.06601684540888111, + 0.0653124635364584, + 0.0646254360208622, + 0.08900072436506594, + 0.06542262762910349, + 0.0690311031421723, + 0.07601565007600351, + 0.08917287962250661, + 0.07850511183878212, + 0.060638653421660964, + 0.06177897986143319, + 0.06997558292610699, + 0.08767897832534068, + 0.07978671914896523, + 0.06658964981116829, + 0.07792583702078751, + 0.06976882306885962, + 0.08022265969549731, + 0.0854251867643559, + 0.06235643723161411, + 0.08011270234108563, + 0.07971815809339985, + 0.0860380037745451, + 0.07235912642381753, + 0.07722195929676648, + 0.08606847742948309, + 0.07116259072806401, + 0.06699056725770566, + 0.06091853550175427, + 0.08787084825542837, + 0.06657474486762134, + 0.08952029364114598, + 0.10252099764892877, + 0.09099032012502596, + 0.09568737242826007, + 0.09514801747027361, + 0.07802283286805334, + 0.06682042138788591, + 0.11012944075284094, + 0.1006399134681191, + 0.0775364680133867, + 0.06235492322162109, + 0.08535900609400708, + 0.07047171173482705, + 0.08216240375261538, + 0.07784277959251816, + 0.06610719207510862, + 0.06335267481184662, + 0.06873783790867607, + 0.07213415257450057, + 0.07497014776790939, + 0.08077081266308118, + 0.07666054843170059, + 0.09510682379909112, + 0.10239039974378877, + 0.06957459650289761, + 0.06511427809038205, + 0.06519137696539919, + 0.06740809566092658, + 0.08388602902614072, + 0.07832869575099978, + 0.07245700353119394, + 0.09968766301153127, + 0.06890361305271228, + 0.0614822773677456, + 0.07325163367448928, + 0.08992266872364327, + 0.07828364529096062, + 0.07012503461995863, + 0.10396374727245485, + 0.08104887288136393, + 0.0672216748214939, + 0.07046436540219406, + 0.08891194640700927, + 0.059644531846394004, + 0.06154076707204071, + 0.06486433512502555, + 0.06684146377820725, + 0.07221107175341542, + 0.08401192402767102, + 0.08242100196160378, + 0.08141994470271222, + 0.07624883596407807, + 0.09144656801313115, + 0.08229542762987933, + 0.0877206492825755, + 0.06645750479508325, + 0.08027274269053548, + 0.06775454123411168, + 0.10700434300811631, + 0.08576484181487946, + 0.09422369655214942, + 0.08833160748069827, + 0.06189404616137611, + 0.07340592133920505, + 0.07313171769204702, + 0.07321867487480797, + 0.07049361054873031, + 0.08555375252374457, + 0.0756153166983442, + 0.09284870098566643, + 0.08003745618436914, + 0.06038421547571425, + 0.07679959434929966, + 0.07204182146992669, + 0.0721182906621571, + 0.059015280980112134, + 0.0699455236713638, + 0.09814262646227441, + 0.06973159036970471, + 0.07240447121224626, + 0.0968847669820142, + 0.0846855255135069, + 0.07820225544276675, + 0.06671170647566865, + 0.05971428787018744, + 0.07258868251117734, + 0.0738116383263404, + 0.06791536615470663, + 0.08812738502747505, + 0.11769473641271323, + 0.0822443770218421, + 0.07342360004407057, + 0.0752118146980894, + 0.0672656374358484, + 0.07476185649222628, + 0.07302909121415085, + 0.07148579782196793, + 0.09154531286649037, + 0.058761431095485046, + 0.08057782320243424, + 0.08242146128726663, + 0.06302639235090952, + 0.08018288584105052, + 0.06575383067047764, + 0.07951009870233205, + 0.0762343509301261, + 0.07925332977553264, + 0.08152881469454093, + 0.06324849562343904, + 0.08341741214147605, + 0.07799241326237578, + 0.07990536614813931, + 0.08504302833327723, + 0.0879936283005523, + 0.0900832044537, + 0.09165455469750629, + 0.11506862723612427, + 0.06040644681624394, + 0.06003674369939228, + 0.08241074481813664, + 0.07983184489719715, + 0.0733774500929114, + 0.06861990271126167, + 0.08327823222680221, + 0.0712657051889986, + 0.09215682888841038, + 0.09196630330819479, + 0.07591503407016521, + 0.06494720321874732, + 0.07242750055143139, + 0.08115432230494979, + 0.0793926437920078, + 0.05669393824471574, + 0.06764413642701023, + 0.09133025389757483, + 0.06814136008392456, + 0.06743557131677815, + 0.08421452278582767, + 0.091694619890987, + 0.06334249432608914, + 0.08109403703273951, + 0.07103371424343764, + 0.07005086060746038, + 0.08492526000013681, + 0.08926874569077385, + 0.07100528402664867, + 0.07119147704982201, + 0.07048743351257888, + 0.07007819292055956, + 0.08302868113929292, + 0.08004424028276369, + 0.06584817419360507, + 0.0912958147274321, + 0.09571639027300441, + 0.09127117687012838, + 0.07274412271926711, + 0.07680277308062922, + 0.07844542406361427, + 0.0838510309132842, + 0.07705155440711821, + 0.0741743184011131, + 0.07741718948488018, + 0.09049549828588306, + 0.07339934909573839, + 0.07538186117758645, + 0.08810467854942793, + 0.07746166475946466, + 0.07950999619843399, + 0.08146933093540434, + 0.0651791695568117, + 0.08804075890490391, + 0.06929336094542667, + 0.08485723699506587, + 0.09155601323026467, + 0.07711637056776581, + 0.086148133832877, + 0.08687376817670905, + 0.0907152098970193, + 0.08235785410810022, + 0.13860205286433963, + 0.07870774143898077, + 0.08352236949089614, + 0.06338565209610558, + 0.08381193152419071, + 0.0907205337348786, + 0.06049195319007978, + 0.08657289233829717, + 0.09113236059425583, + 0.0707291382340411, + 0.06628179531343821, + 0.07557014440128765, + 0.0811404682499998, + 0.09165179988511854, + 0.073448455204876, + 0.07661477752432094, + 0.09286050776399318, + 0.10148736840854557, + 0.07700306336553826, + 0.06518501411196177, + 0.09219489400802466, + 0.06855893907651806, + 0.05725567308490033, + 0.07803926037364375, + 0.08595685423979313, + 0.06888877453622633, + 0.08848732731670608, + 0.0866795149632839, + 0.08563537946712169, + 0.07677259996006976, + 0.08269970562608207, + 0.07636368104473833, + 0.06923061298257643, + 0.07816768249796936, + 0.07457424556734087, + 0.0698353319745782, + 0.0600296107004333, + 0.08534362277472697, + 0.07160420758927155, + 0.06081900520055805, + 0.07785057742192368, + 0.09332077465866626, + 0.08608801128710658, + 0.10130841345809044, + 0.06448721282052916, + 0.07876671495881257, + 0.08492867377793864, + 0.08988056478996885, + 0.07959990543846783, + 0.07279145051427603, + 0.08178928725919132, + 0.09941576585805748, + 0.08157685378782908, + 0.08651505370449579, + 0.08615375431801008, + 0.06657894252121929, + 0.07144226219832582, + 0.06928191878598422, + 0.07298400707045961, + 0.09154162467118686, + 0.070310168568679, + 0.07145625324443616, + 0.07568887180496216, + 0.0668752685671783, + 0.07557741869029629, + 0.0782340770321983, + 0.07451464832746488, + 0.06873712510098476, + 0.09280257696810607, + 0.0803177205866514, + 0.08579740330406399, + 0.07528918915865228, + 0.07301855729546239, + 0.07631304232681954, + 0.07677537573440102, + 0.07184008911603981, + 0.08935212946744553, + 0.0702597271459652, + 0.07683535588451108, + 0.08770390181863845, + 0.09405734036846444, + 0.0716172154151071, + 0.11447151926993161, + 0.06016531988088587, + 0.07718348194762005, + 0.08456187985788793, + 0.09417445343607062, + 0.07564074221393456, + 0.07854751279198409, + 0.07115049323358612, + 0.06900602541001186, + 0.08177847320889761, + 0.07959025996315935, + 0.07721614709417093, + 0.06759662187503841, + 0.08947338989932821, + 0.09161579907046977, + 0.083191405271032, + 0.07431938392897448, + 0.08035578124701409, + 0.08844354491343076, + 0.0870786938248178, + 0.0697477728534452, + 0.05680842202358452, + 0.09247330634737648, + 0.11047151088201632, + 0.07646646706932318, + 0.08538894763480805, + 0.10409294320468031, + 0.08852096851773257, + 0.07772732407347953, + 0.06243941818189425, + 0.1081864008660413, + 0.06966181809047628, + 0.07568373237045924, + 0.08395302577031857, + 0.06526138395640552, + 0.07366767939120698, + 0.08393532422409192, + 0.07893528627609073, + 0.06145950597757413, + 0.07265963423866789, + 0.06906766964873919, + 0.06251680125878335, + 0.09090848459786154, + 0.08798330440935971, + 0.06152358148519126, + 0.06815293404232997, + 0.06442742088669634, + 0.08775741458298997, + 0.09361844168478309, + 0.09062149682027175, + 0.08315675199481028, + 0.068903069403887, + 0.09332959531255192, + 0.06082769291040087, + 0.08467963006539093, + 0.07461535330590587, + 0.06149278529478276, + 0.0708363446921341, + 0.07022326314144528, + 0.07695092824346268, + 0.09363497934324061, + 0.09488660325663349, + 0.07118860930922852, + 0.06699799236065625, + 0.06388420009441081, + 0.07633403153282, + 0.0808547924539227, + 0.08908724389463453, + 0.08804535037036844, + 0.09582697559096441, + 0.06968324611925937, + 0.06410307355054409, + 0.08141966648490957, + 0.08180441302359974, + 0.06367945661492348, + 0.0662062864342167, + 0.07490061807192265, + 0.0881988287931564, + 0.0812985764109013, + 0.08063357433277438, + 0.07096781309805476, + 0.09031965552442595, + 0.07733593374249574, + 0.06933628747980489, + 0.07837123653446787, + 0.07389258264289625, + 0.07524883157684957, + 0.08454645201212975, + 0.08035423316175652, + 0.07084686098557111, + 0.0957054069685151, + 0.08236391951802967, + 0.06642962397004398, + 0.07529166416644542, + 0.07232471158637079, + 0.10592174990640647, + 0.09139676100941498, + 0.07586737621490572, + 0.11333421630723285, + 0.08512436553173006, + 0.07995098980756644, + 0.06904727187604591, + 0.08015963494128912, + 0.07003783538160968, + 0.0792333439036301, + 0.06192335553981695, + 0.09143377911059838, + 0.09010008528420053, + 0.07852069438810977, + 0.09756878750485677, + 0.09577376035525159, + 0.0778302129266519, + 0.10169436059933053, + 0.07962469604912681, + 0.06932593501080112, + 0.08411480092529604, + 0.06196287636145963, + 0.08443082648337105, + 0.05804289503536243, + 0.0672591677586833, + 0.06467257591218212, + 0.06586268419012697, + 0.07208314592921244, + 0.07029663921467565, + 0.09449751550883462, + 0.08144381890270239, + 0.07976646567477927, + 0.10422304621763531, + 0.08238143228061136, + 0.09491795933597859, + 0.07284883106255387, + 0.07456933941235781, + 0.07132127963836049, + 0.09882637203617782, + 0.07407175340004114, + 0.09295191166646781, + 0.09789064814865707, + 0.09548168038280683, + 0.08040210449196783, + 0.0812814324577277, + 0.10182517129511451, + 0.06714133411550531, + 0.08686677130042322, + 0.06911691809625126, + 0.10101647984120302, + 0.07644197837998415, + 0.0850398552443314, + 0.08399328364858323, + 0.0774289956630961, + 0.09353873186691951, + 0.10684523816684732, + 0.07372049517328742, + 0.082034558179078, + 0.0715173880675605, + 0.07228950972937481, + 0.0761289352927692, + 0.08139132547270135, + 0.07088527664614433, + 0.08119024335185054, + 0.06927277653724158, + 0.08094691250086473, + 0.09682418426321357, + 0.06786099347305176, + 0.08820006775181775, + 0.07504645125145581, + 0.07897103456682956, + 0.09107462483142019, + 0.05843271401511756, + 0.0938600079347075, + 0.10016020903054919, + 0.07244730313409962, + 0.07149451283152054, + 0.06820601990572428, + 0.06209355468795553, + 0.07678472730958351, + 0.07295358533395185, + 0.07184292974082439, + 0.07323466984270409, + 0.08372189119966585, + 0.09364557369943848, + 0.07507675037205797, + 0.09584588823570789, + 0.0759267448019192, + 0.07058699793837614, + 0.06182895419832564, + 0.0780106122867154, + 0.08016235138178172, + 0.06803668424420074, + 0.0706739028330529, + 0.06834404739214643, + 0.06555122808686245, + 0.08012700596867522, + 0.0776382732136622, + 0.08130309048542728, + 0.09649975207877264, + 0.10053409353547912, + 0.10007709647178228, + 0.12227124869985935, + 0.08083236717324889, + 0.06896587879974216, + 0.07268028418157393, + 0.0759968068045692, + 0.07129677720061083, + 0.06775812143755544, + 0.0676256839568041, + 0.07103705445953463, + 0.07161696846352222, + 0.07307488625610474, + 0.08188689518281159, + 0.07874839101075208, + 0.07060933888234476, + 0.07341218150449744, + 0.0651832798048838, + 0.08883964325394424, + 0.07454700729714904, + 0.07566107100201394, + 0.08694077683681774, + 0.0780635991799912, + 0.10432354813282332, + 0.09776539867734743, + 0.0834186490434183, + 0.1013311127883491, + 0.08306247141057704, + 0.08111614604959458, + 0.06986099434137807, + 0.07467479588404331, + 0.0792655144410077, + 0.05684796576511371, + 0.07302637829261928, + 0.07217706407134533, + 0.09099880097272418, + 0.07806144699350409, + 0.0750803264287806, + 0.0715187127816806, + 0.08133296755605357, + 0.07514669442664937, + 0.07011545934545221, + 0.05795918704753778, + 0.06439817930512012, + 0.07610055990190583, + 0.071879228128679, + 0.07559620556353534, + 0.07325734078966381, + 0.07409386878106629, + 0.07322290877032489, + 0.0873659919008844, + 0.06823490220609325, + 0.06518379122096708, + 0.0776982122566632, + 0.0833536609162489, + 0.062398759915917805, + 0.07393247035870001, + 0.07855984233366349, + 0.08874365209511412, + 0.09354857904602637, + 0.0687321439428287, + 0.07854527507176785, + 0.07393814505124435, + 0.08710137244964669, + 0.11306005811701739, + 0.07290092359897975, + 0.10887871375847648, + 0.08991311692850658, + 0.0729935279725521, + 0.07186569213143905, + 0.08052449339484036, + 0.06118161606907176, + 0.06320962927737069, + 0.07792807088745256, + 0.08096080021686235, + 0.06777422021913561, + 0.08463601439130364, + 0.07093374347489968, + 0.06235286371897801, + 0.07441041304053686, + 0.08571286374965001, + 0.07466440440202256, + 0.0637519530134583, + 0.09078915702199471, + 0.07098982653738757, + 0.08100651916543478, + 0.062034398145516874, + 0.10590190492855268, + 0.06269816715549595, + 0.05330444594839098, + 0.07136923980146405, + 0.09189819054068116, + 0.08315128866597052, + 0.061933148579240274, + 0.08004443702516527, + 0.07011275507358314, + 0.07546539780390908, + 0.09431967367137202, + 0.08063179878739156, + 0.06401038084276434, + 0.08863759123601374, + 0.083388301740073, + 0.09236004633346517, + 0.08651252387860181, + 0.13092044113365237, + 0.06604719562403961, + 0.07399515581920085, + 0.07807871144810734, + 0.0929364061272348, + 0.08499700200718961, + 0.06478033163696112, + 0.11675203829220754, + 0.0772014807281149, + 0.06993723212629639, + 0.07137353075623268, + 0.09295354913889892, + 0.07807724269026796, + 0.07725061181988513, + 0.06714513943361572, + 0.06074723603136237, + 0.06512148648864026, + 0.07314818226505684, + 0.0800883248643797, + 0.08817517375745923, + 0.08332391011937908, + 0.08343032276326717, + 0.10417442517349443, + 0.07925472946566553, + 0.07750266508565741, + 0.0809195885691132, + 0.06341237322706013, + 0.06244926465777333, + 0.09685707751071186, + 0.07641407959129635, + 0.08123099268085084, + 0.07151834171898556, + 0.08797865174479136, + 0.08331910921758351, + 0.08250694321098073, + 0.08413087093300664, + 0.07361714282658247, + 0.07916348346681878, + 0.07431260046246274, + 0.08205813768306666, + 0.06928916019515186, + 0.07590979747531731, + 0.06865183997767534, + 0.09180211804715253, + 0.07891912049193496, + 0.06934369129569229, + 0.07428914470345536, + 0.08621423982657324, + 0.07978633521329875, + 0.07149996643819219, + 0.07890161408810607, + 0.06608041645704632, + 0.06977016443944907, + 0.09843661102135409, + 0.08808456614591526, + 0.09513558115040163, + 0.1040104371086094, + 0.06735967822846706, + 0.08570275824102801, + 0.07484878269647247, + 0.06770936354347565, + 0.07230147404507271, + 0.06878835428012256, + 0.08962703299094592, + 0.07062435158937451, + 0.07802860294043339, + 0.06738283280953354, + 0.07892747079360617, + 0.07780926183805516, + 0.07616558030532389, + 0.08736442383501823, + 0.0855686814712489, + 0.07465412827127804, + 0.0621486190029381, + 0.09488574171302185, + 0.050650783870425285, + 0.07025958769023648, + 0.11404806041611046, + 0.07014574664109198, + 0.08015688182408277, + 0.07808811510308099, + 0.07964091491260435, + 0.06730958161048307, + 0.07926632574661913, + 0.1069747175935668, + 0.0932448340428721, + 0.08044243294291528, + 0.07965513649074768, + 0.06366689163178926, + 0.06540768705047928, + 0.06847058871467343, + 0.07587933575821754, + 0.06394291298211661, + 0.07708138133061085, + 0.08653066223414463, + 0.07552062862651258, + 0.06824717583492797, + 0.07687313200325817, + 0.07837122660715647, + 0.06087721422183775, + 0.07142693502069972, + 0.08748608546074776, + 0.08491403993988446, + 0.09243800777192328, + 0.08560057717120824, + 0.07222072098690362, + 0.0800268504811746, + 0.08852042287810281, + 0.06346427987406304, + 0.08037581284892596, + 0.08082711400958088, + 0.08478763514769203, + 0.07400839388403599, + 0.06802639432498456, + 0.06422092955394706, + 0.07368630243747008, + 0.06923260978874783, + 0.08489735265860851, + 0.09011974579296987, + 0.08076241784398598, + 0.08918694415927286, + 0.06352818141491721, + 0.07209139479943556, + 0.06531551803607076, + 0.09469258935798011, + 0.06885895377086533, + 0.07982238615643195, + 0.07602855281339405, + 0.0730168015836986, + 0.10034260780298102, + 0.06880160762837267, + 0.06714269224643742, + 0.08540640356134707, + 0.08337338360412574, + 0.08478227177838159, + 0.08403665777674466, + 0.07609932187588385, + 0.07474112059003839, + 0.08753773118976747, + 0.07683315847459585, + 0.08772099467187813, + 0.08217363539645466, + 0.0957705612970753, + 0.07832273234699225, + 0.09012758021754995, + 0.08153865894041971, + 0.08622538477871435, + 0.0742756215749429, + 0.07463537890140573, + 0.06455754648213356, + 0.07054278557606317, + 0.07628466870616754, + 0.09663489474875092, + 0.06855171324103512, + 0.08283627405905822, + 0.08289641253611667, + 0.07297747214202478, + 0.09003976953190129, + 0.07982095632254206, + 0.0710067873837911, + 0.058478948544270076, + 0.06335476200960169, + 0.0941992429073305, + 0.07789482752881782, + 0.08199459105440367, + 0.058481948306704244, + 0.06816545507524373, + 0.0970924298624643, + 0.11275350754388887, + 0.06379333131453445, + 0.058425932820078345, + 0.07973586088373275, + 0.06933501994238012, + 0.06561675583426428, + 0.09247177704187204, + 0.07115557887522364, + 0.10769023047836829, + 0.11298868444240731, + 0.09289036698965521, + 0.07563017570664049, + 0.1057376968671103, + 0.07671622969002603, + 0.076063905463513, + 0.06791786742426549, + 0.06665197940549461, + 0.0689717271290082, + 0.07627478336029175, + 0.091904763421463, + 0.06731573260828788, + 0.08581256779817659, + 0.06486499003392934, + 0.06264568326130456, + 0.07480182126690324, + 0.07671950616986183, + 0.06924400035932046, + 0.0782841760798972, + 0.07439220213621421, + 0.07059801105638469, + 0.06553011018907429, + 0.06861111972659849, + 0.06658634538223206, + 0.06291166520772357, + 0.07184950332819762, + 0.08152419763087211, + 0.06836922027112748, + 0.09354586619061052, + 0.08824371611534246, + 0.09820278339168204, + 0.11625971510255247, + 0.09373513996452443, + 0.08058313770875755, + 0.07443665502918151, + 0.0907212261261738, + 0.09112091513620117, + 0.06203490009723728, + 0.09505421992547607, + 0.08392674109728977, + 0.08332027009424418, + 0.10176846924361631, + 0.0794855029541614, + 0.08393510398639208, + 0.06295570193329592, + 0.07027635399493537, + 0.10972215480914829, + 0.08484660787427112, + 0.06480076318042646, + 0.07934088095552894, + 0.09902935628700432, + 0.09954458818604434, + 0.08105358053613988, + 0.07072137189291026, + 0.0836445880863414, + 0.07019988127899099, + 0.07848318430241011, + 0.07898429825416949, + 0.09902729037216994, + 0.08303979769660337, + 0.07682768035746035, + 0.12891030083443786, + 0.07628379927883235, + 0.05849688780621228, + 0.07398595397044631, + 0.07356317590575881, + 0.0755433480638665, + 0.08760385617236509, + 0.0864616785799866, + 0.08677034591021993, + 0.0796913034594171, + 0.09078174475857015, + 0.07466216093090829, + 0.06828432047374436, + 0.08730061994612136, + 0.0882083419717735, + 0.07504054797810297, + 0.07211954538433864, + 0.07284158531489611, + 0.08062441620691242, + 0.07677903989229237, + 0.06560069700726107, + 0.07119432288694637, + 0.06842291461840946, + 0.0856695474965756, + 0.061734569563318936, + 0.10414823334297915, + 0.07849777876578132, + 0.07742549579364014, + 0.05686889587607661, + 0.07312527463495992, + 0.10113904549742497, + 0.08101334180999956, + 0.06963328626933352, + 0.05751455280803673, + 0.09001328427710924, + 0.08350485590395748, + 0.05711880736131131, + 0.12332674150448458, + 0.08876103545986946, + 0.07090023489166228, + 0.07706818549849541, + 0.0670246974215044, + 0.07861297366975158, + 0.08138912539606254, + 0.06804879949499794, + 0.0718480395659716, + 0.07601181668776776, + 0.07475301580984527, + 0.06967451929836538, + 0.0645295424692266, + 0.09279804051653358, + 0.07337449508264232, + 0.0768119256191878, + 0.07181780454415258, + 0.0681041749895772, + 0.06554299854176819, + 0.08676976478839506, + 0.08138530050782274, + 0.07205093979460236, + 0.0837010603644912, + 0.080866778658829, + 0.089942605963062, + 0.06670670851266323, + 0.08258109546800732, + 0.06690840443124052, + 0.08074546383440169, + 0.06918611186008918, + 0.07300729191440579, + 0.0974894748252694, + 0.07391602079220806, + 0.07633345906214356, + 0.05941745924817853, + 0.06926338852714863, + 0.10432577099935102, + 0.0825435002566213, + 0.12319417412932714, + 0.06288000102846199, + 0.0897114652062751, + 0.08842050169655138, + 0.08212064250368083, + 0.0668160914207846, + 0.0813933652268236, + 0.06000587895315703, + 0.07689240916363721, + 0.07506786106142413, + 0.08997782257290306, + 0.053408264092343574, + 0.09213607204653604, + 0.13719981939629752, + 0.07986944735602614, + 0.08787214214479808, + 0.08856790862169209, + 0.06966365120799096, + 0.08740097658185292, + 0.07033169745287528, + 0.07079840914546491, + 0.08015190108582858, + 0.08179442946676754, + 0.0709394335773121, + 0.07010126322211509, + 0.0682425440142384, + 0.11150544531810408, + 0.0638666376135047, + 0.09045330948897713, + 0.07366033034789625, + 0.08352194415556087, + 0.07713759952417452, + 0.09162383223084092, + 0.07599329801004824, + 0.08079831011440602, + 0.08404163924188408, + 0.08138880403684332, + 0.08505818455578545, + 0.07045271318703938, + 0.08633325894986064, + 0.08649183404069313, + 0.08075496152724433, + 0.06308875122658747, + 0.10347160138730448, + 0.07786694152685639, + 0.07291546295705256, + 0.06786949018631515, + 0.08053876150846676, + 0.08598140223149313, + 0.10664049781110563, + 0.08524829921464563, + 0.08833769366741996, + 0.08833053118347846, + 0.08275125162552978, + 0.07102438801714316, + 0.08296395077580875, + 0.07731794458572515, + 0.09459197407709652, + 0.09944221329068806, + 0.08209889173731165, + 0.08424758533590422, + 0.07793797458279411, + 0.08240139077676445, + 0.09535289566452633, + 0.1067008071610927, + 0.07404248584273097, + 0.07840449297273198, + 0.07394118754180488, + 0.05800651764744742, + 0.06706969765588318, + 0.06901247903261912, + 0.06943801899147674, + 0.08276121928366549, + 0.0688345578290626, + 0.06547495209837656, + 0.060838625898269716, + 0.08883463130566008, + 0.07414853493594575, + 0.06829796701985962, + 0.09231533268649246, + 0.07531535733724797, + 0.08083928677512937, + 0.06554552122948644, + 0.08784075328473118, + 0.08140497913333646, + 0.06721519205890272, + 0.09591100104042524, + 0.06885104874245979, + 0.10213169259161449, + 0.07718949852816573, + 0.06974089020454095, + 0.07625838059788194, + 0.08185224792309985, + 0.07823692888197839, + 0.08105547550055406, + 0.07907320453943006, + 0.0807902812817801, + 0.0629287993784536, + 0.07894261458340482, + 0.07681673815496558, + 0.06900367162630612, + 0.07621720882643014, + 0.08506247880813052, + 0.0860377936372069, + 0.07163899221609184, + 0.09872994998461736, + 0.0798283478177733, + 0.06374244244417487, + 0.09180196246237755, + 0.07852978511331939, + 0.0768756960633082, + 0.08704617595892487, + 0.07441781429668565, + 0.07226189674138468, + 0.07668467020574689, + 0.08948805823073512, + 0.0770058822229279, + 0.07418767888735428, + 0.09862045064625886, + 0.07967316086047906, + 0.061159819333334545, + 0.07024420875324827, + 0.07788650810035103, + 0.07568056831634255, + 0.0557896539865828, + 0.07714333434501665, + 0.08755952987807449, + 0.07358223411085155, + 0.07505223801422219, + 0.07058822019111163, + 0.08108329777435576, + 0.08080440323363314, + 0.07798415814129527, + 0.08396948405968337, + 0.09702032925058092, + 0.056848742866061966, + 0.07389861703424108, + 0.07389997041251328, + 0.07906037597332806, + 0.07479199679111147, + 0.09379642141919006, + 0.06800877492823912, + 0.07822085078799211, + 0.08390276900268294, + 0.07347529617134503, + 0.07751632279208018, + 0.07850518486624296, + 0.07197934392722112, + 0.08690476273744789, + 0.0895477364608159, + 0.08317454164159485, + 0.07255354949313544, + 0.06792520290541926, + 0.06836592549051926, + 0.06137803352874931, + 0.06651779639659869, + 0.07877138211474843, + 0.09787563439887273, + 0.06281026142798561, + 0.07155720136081489, + 0.07024084465306447, + 0.06437578466643205, + 0.07142673777888423, + 0.09922226733097605, + 0.060629646991968544, + 0.08449558824530999, + 0.08901785571729541, + 0.057123212996975294, + 0.07205666979521594, + 0.09002873658245322, + 0.09160910584539755, + 0.08078930982357686, + 0.06863671703244494, + 0.0775978472225731, + 0.0845345089123179, + 0.07631141395325147, + 0.09145840131199064, + 0.09966296896971019, + 0.0768004777952247, + 0.07294956379034247, + 0.098596564811627, + 0.07271891456258743, + 0.054310910464134596, + 0.08125245148236672, + 0.07480046771034733, + 0.07041533026050555, + 0.07854777737981536, + 0.08713329240559936, + 0.06796788516256126, + 0.06749784535197635, + 0.06179773785418469, + 0.05039473714656452, + 0.07315003718579516, + 0.07784062162451284, + 0.06659388141168124, + 0.06218171656417914, + 0.07011699996322014, + 0.0960038419586353, + 0.10119864883259777, + 0.0944015292522986, + 0.0598366244431848, + 0.08326284197781424, + 0.07653645813964727, + 0.06302712281969874, + 0.06574533743974985, + 0.11503663880854642, + 0.08199994810454829, + 0.07754879298054543, + 0.06838801249259006, + 0.07104089179617243, + 0.07254935136318659, + 0.06097010587117755, + 0.09175538514790285, + 0.08866906187153543, + 0.07631073488298758, + 0.08066019179852203, + 0.06939640777650175, + 0.08378546522657579, + 0.06836979069254512, + 0.07540475839273368, + 0.10759625226551475, + 0.062860252678273, + 0.10668585069267042, + 0.06600073667836279, + 0.07553705672608389, + 0.08125522119727573, + 0.08484319370789714, + 0.07053140502266017, + 0.08093877790648141, + 0.07583753306336488, + 0.07964859796730274, + 0.07922310479675561, + 0.08926623670481916, + 0.09397528963938181, + 0.07406515235078176, + 0.07759085668082691, + 0.07225312979582126, + 0.07950009181830003, + 0.06125415726048104, + 0.056677456433144466, + 0.08279598056081065, + 0.062268596512449634, + 0.09155635150766522, + 0.0979710162510689, + 0.06524838702080535, + 0.07285840692212436, + 0.0976068815011835, + 0.059872734379785984, + 0.07315475503186139, + 0.08390410825376639, + 0.06928386898839892, + 0.08240184034124931, + 0.0855814158844494, + 0.07602429150475006, + 0.08629938498851746, + 0.08895809097761898, + 0.11696245268623387, + 0.07883397641341708, + 0.0872552850090245, + 0.07363337340615092, + 0.056282866972518074, + 0.08846152485188405, + 0.09473823536795839, + 0.09055290211531258, + 0.08240773901094926, + 0.07287565212339232, + 0.09087822476858189, + 0.07326390410877279, + 0.07347609759365617, + 0.09050298010119887, + 0.08064011760328177, + 0.07263273914599735, + 0.07413411800766392, + 0.07025239349261368, + 0.09848771540933426, + 0.07459046219566633, + 0.07434591290083699, + 0.06944587934715905, + 0.054822275386808714, + 0.09680126580089075, + 0.11209779025417943, + 0.07958462056951046, + 0.06497494709060357, + 0.08315912842888437, + 0.07222118020808287, + 0.07584823802522288, + 0.061484941164139176, + 0.07378615669197028, + 0.07776857913684568, + 0.05842978223894005, + 0.1055299593575142, + 0.088682717997029, + 0.06965412873661471, + 0.0547035285162597, + 0.0690729335197686, + 0.06112283129890463, + 0.07499834191983787, + 0.0622820993560835, + 0.06818851681075298, + 0.08890662037544736, + 0.06378335940314425, + 0.06621087722544951, + 0.06747830116254476, + 0.05996897306488955, + 0.07485594836211404, + 0.07680600917187581, + 0.062786573654424, + 0.06851959368324295, + 0.07320228122913465, + 0.09571865196900203, + 0.08396525035088856, + 0.07324129546351958, + 0.05435294622794244, + 0.0672167961100442, + 0.07245267348264933, + 0.09144699473810651, + 0.07754203306138512, + 0.06872268863377057, + 0.08408595187171669, + 0.09191209493520651, + 0.08883688788416844, + 0.08117324247279008, + 0.12068131975706127, + 0.08362336250160142, + 0.08705028301251176, + 0.084392529197679, + 0.07671928995539229, + 0.060341008015859565, + 0.06087743044314947, + 0.07377182755759609, + 0.07482672659933116, + 0.06719655739110793, + 0.07766920338516563, + 0.07597364708798403, + 0.07518585861741345, + 0.08390200204423634, + 0.07477777447448478, + 0.0721701682424149, + 0.08562833116800478, + 0.06767150742960618, + 0.08198112312728693, + 0.07289628349667912, + 0.08374852387280735, + 0.07356945729160938, + 0.07756985229937047, + 0.06179677702948375, + 0.07179580014829016, + 0.07741945292050521, + 0.06921019682062145, + 0.06846951251102551, + 0.06579479553925377, + 0.08376895720465057, + 0.07177719117035553, + 0.08103165621877581, + 0.06960892653100105, + 0.07552058125638002, + 0.0650848736323957, + 0.08249333012085226, + 0.0909385317887762, + 0.09976276762932769, + 0.06409749788344954, + 0.09194962676343456, + 0.07923280713529578, + 0.08842958688374654, + 0.08029939023943759, + 0.08148907534477998, + 0.05542156011128423, + 0.06395532239035583, + 0.07302882188224519, + 0.06118553236584823, + 0.07372787400394659, + 0.07299833559581047, + 0.07462414391663652, + 0.08386489014035527, + 0.07448364463203279, + 0.07887902744483791, + 0.0807230922819646, + 0.09407053547479313, + 0.08163768539571829, + 0.08973661735964938, + 0.07831336515437443, + 0.07630633404739715, + 0.07783712720542295, + 0.06823928240348624, + 0.08279156891570623, + 0.08492163522163479, + 0.07868474790554222, + 0.06546662283275309, + 0.06145830336155645, + 0.09393691904710834, + 0.09765024034409381, + 0.06848210607433566, + 0.07843864021958338, + 0.08274861128659278, + 0.11288188829685772, + 0.08343839462816474, + 0.08855202466605519, + 0.10270590765635802, + 0.07546760030894462, + 0.0639961222053518, + 0.09255315493114558, + 0.06296334931903527, + 0.0867726307257357, + 0.08280290857708426, + 0.07564964965287063, + 0.07663403558854605, + 0.07732596478727445, + 0.08032065833472336, + 0.08267024650033061, + 0.06755641410072945, + 0.11120299829776466, + 0.07275547240754, + 0.0665253781284461, + 0.07609747163619081, + 0.0884659153337715, + 0.07274461199894951, + 0.08360038318717176, + 0.058885662597220896, + 0.08834145449269416, + 0.07524725988131095, + 0.08274562385905888, + 0.08329520347412535, + 0.08824744304284415, + 0.09164190408437485, + 0.10166826847809879, + 0.07910967604305126, + 0.08250609351385851, + 0.06057295333600204, + 0.06802782727815342, + 0.10731655890763284, + 0.10458015069993457, + 0.06609999127721183, + 0.07287050225174047, + 0.06842452305694537, + 0.11782673816841822, + 0.0762685326515098, + 0.08228969511018062, + 0.08985950124806322, + 0.10857619172466777, + 0.07722596219751962, + 0.1020074493267918, + 0.09390311292794593, + 0.08823710884087699, + 0.06872373420860116, + 0.1006645344554791, + 0.08266044514347716, + 0.07999735829729238, + 0.09147251343226488, + 0.086083730213635, + 0.09005952652871631, + 0.09413072343020597, + 0.09295425441792092, + 0.10555301688350575, + 0.08588231898267709, + 0.07207158978891012, + 0.08617988699705892, + 0.07349262552546335, + 0.07142105834047238, + 0.07328320256156996, + 0.10092772074482993, + 0.07299163474399308, + 0.09674454439420282, + 0.06546135078325363, + 0.06324526026203692, + 0.06498623434917392, + 0.0753428413426254, + 0.0746365025323733, + 0.0785459492240394, + 0.05949721572234638, + 0.08462773173635807, + 0.07079717930066193, + 0.07832942039070102, + 0.07413837735691071, + 0.08997374413473876, + 0.06744171396404197, + 0.07412413428050812, + 0.06653908716108245, + 0.07502123261439823, + 0.07486838605586174, + 0.08204624157244719, + 0.08751735458153644, + 0.11104071734558717, + 0.056090619875707355, + 0.10972273245735009, + 0.06717928273399759, + 0.06636091992676076, + 0.06709774036753863, + 0.08569091704580516, + 0.0882095403241042, + 0.10042925525777621, + 0.06761929805884902, + 0.07253124769705166, + 0.0661222544956926, + 0.09208626033366517, + 0.08137557443384648, + 0.07778739730129766, + 0.07894911265457685, + 0.06795708471368403, + 0.07253297495257606, + 0.09061368094608525, + 0.08181329964738733, + 0.08230792402772942, + 0.07731405446450065, + 0.07344102900893693, + 0.06392734429964468, + 0.07444509305267001, + 0.07024258370279553, + 0.07684034951602543, + 0.0654428646563494, + 0.08334443678948901, + 0.0836099576251573, + 0.08519183480073791, + 0.08681659895995968, + 0.09540028212857592, + 0.07476196540328728, + 0.09770640279002936, + 0.08043283073146425, + 0.09128170802280522, + 0.10377006921515441, + 0.06326100550887091, + 0.0878288894914544, + 0.08022306484667849, + 0.0768696522384495, + 0.09822911311873815, + 0.07757262915317892, + 0.06620428483327125, + 0.08853517165210417, + 0.08274688570776925, + 0.07922712093581444, + 0.09408206349349957, + 0.0649312552645199, + 0.08824100280888515, + 0.07141333841600096, + 0.08237090011383416, + 0.07755945443355539, + 0.058995985885814596, + 0.08354861718529587, + 0.07800630551681552, + 0.08771343567189828, + 0.08522690405216858, + 0.08775844201233239, + 0.08990085643988127, + 0.11405336950291188, + 0.0602622671514027, + 0.062029250270040845, + 0.09971953716121412, + 0.08336955354936706, + 0.07514345486064297, + 0.07615055234992182, + 0.07866332107158713, + 0.0717846743434443, + 0.0660229906868129, + 0.0879963712624986, + 0.09192202181255162, + 0.10155180420775624, + 0.0769617804885199, + 0.0746368022440765, + 0.06366888623238177, + 0.07456060038289913, + 0.09309141538432865, + 0.10641770057648266, + 0.07867101745888046, + 0.07922629153219071, + 0.07571407955869987, + 0.0695188982305813, + 0.07867984539620777, + 0.07337972972457153, + 0.056293009409281704, + 0.0706822791166169, + 0.0866896005818202, + 0.06316599635857448, + 0.07357040913372533, + 0.06137949314876832, + 0.0702718996261116, + 0.08271434423261168, + 0.06239045453419191, + 0.07141425194398202, + 0.06766639278682506, + 0.07191006544575904, + 0.09056700407245868, + 0.08276795366591091, + 0.07383763104785757, + 0.06659490878898382, + 0.07150543579891365, + 0.06164984923216208, + 0.07284707625981666, + 0.0792606532307601, + 0.07753131982481049, + 0.05946370140802963, + 0.09210668917998083, + 0.06606338314104633, + 0.08238926591143253, + 0.10460868143662785, + 0.09127701879287528, + 0.10413555953266866, + 0.07891018720185926, + 0.06868038594271844, + 0.09212551027699165, + 0.077846266796664, + 0.08128819754540495, + 0.08126204201196476, + 0.07263579992989772, + 0.07898560890530974, + 0.06901070530936021, + 0.08029240225175893, + 0.08091184908116612, + 0.06279784175849204, + 0.11531681849349078, + 0.06750186222213095, + 0.08803479984597566, + 0.08377260551206799, + 0.07999609005204664, + 0.10802550886937357, + 0.0841622036962236, + 0.06606845770180154, + 0.09189692329829983, + 0.07229112342979545, + 0.08158600966930857, + 0.08523507116106314, + 0.061203653917616466, + 0.07612367326337668, + 0.07929680414159516, + 0.08639935042473872, + 0.0733947964968053, + 0.07206761729012243, + 0.10022402662081195, + 0.08699948713669597, + 0.08363376351276251, + 0.07079174556614688, + 0.08549588764571897, + 0.11196653553700464, + 0.08109654846178381, + 0.0541571462024317, + 0.08674677550753997, + 0.1199958489144898, + 0.06761011020008643, + 0.07188211923750291, + 0.08143398967658316, + 0.06684014289660027, + 0.08997883799346475, + 0.0741000541241753, + 0.06853939780570709, + 0.06873223423029419, + 0.07814248559711058, + 0.08309111257776887, + 0.09147299906110552, + 0.0718940959073402, + 0.07675275379552206, + 0.05829939928469484, + 0.09422517070174143, + 0.06837377297357206, + 0.061846928625968654, + 0.0766325843559864, + 0.05498024446575944, + 0.07467271219229352, + 0.07539946011087378, + 0.057613975867393724, + 0.11764736922501329, + 0.08128995619628687, + 0.08529576743800313, + 0.08874014223342874, + 0.08439410403301517, + 0.09793102573914708, + 0.06018256089643535, + 0.08055980527072783, + 0.07133317843140723, + 0.08745837955767838, + 0.08158188833516603, + 0.08212747242394981, + 0.08111298522582176, + 0.0771721726387681, + 0.07242748161348396, + 0.06977912548350583, + 0.08077287190420923, + 0.07509332560729862, + 0.0796811431480754, + 0.09139365065903876, + 0.07532771831694032, + 0.0767027579507627, + 0.08018625665420956, + 0.07862105412252315, + 0.0746706827153648, + 0.0639373789656292, + 0.0854800543090109, + 0.06831179964818195, + 0.09022834564472244, + 0.07548165821680534, + 0.06594036103449102, + 0.08803066375241327, + 0.07003328948433687, + 0.0928778847178399, + 0.08719945621258696, + 0.06506582836942569, + 0.09472846146856871, + 0.07563824623621122, + 0.07588620907995441, + 0.07950842541874724, + 0.06578545463834054, + 0.07134853250344433, + 0.0742740834393903, + 0.08999127341378275, + 0.071332814102892, + 0.07845228571590296, + 0.0638357019867619, + 0.07347976106726703, + 0.06746942185097198, + 0.08737515440078686, + 0.07464215342093498, + 0.07212734506166942, + 0.07414602882472403, + 0.0906725699648478, + 0.06923936520598942, + 0.08141866367445195, + 0.06633830028735918, + 0.09765941901099569, + 0.06476636788349995, + 0.07292400831222941, + 0.08148150502025692, + 0.0876642621224603, + 0.08370643403898817, + 0.0708958984677005, + 0.09021057777823817, + 0.0883498112604334, + 0.08511947534285678, + 0.06639942207631369, + 0.06103079002922, + 0.08714660495203354, + 0.055630263408198155, + 0.07457345366569809, + 0.0955900300507187, + 0.06106421077858666, + 0.09027142451951709, + 0.07155312832512312, + 0.0817397442050975, + 0.07750218481208407, + 0.06656524195110713, + 0.07552686186751366, + 0.08178021593976115, + 0.059427785897591394, + 0.08040729701960037, + 0.07804226427590018, + 0.07158824699913448, + 0.06501866973424672, + 0.06287715376487289, + 0.07606603871943803, + 0.07919877088114943, + 0.061803365055549606, + 0.062090364369057315, + 0.07073625655865672, + 0.05624787311509697, + 0.07175115620989414, + 0.07853954955220685, + 0.0660412941963351, + 0.08158557035543283, + 0.07860333469287561, + 0.0917603410207962, + 0.07248407373070767, + 0.07209993203362303, + 0.08067203140477258, + 0.11666501254529872, + 0.06734631781933371, + 0.11332445476750547, + 0.06809240823341428, + 0.06360081341486391, + 0.05425887241821917, + 0.07193704785776178, + 0.0700312891904764, + 0.08263985693462031, + 0.09235741975114106, + 0.08052205830145787, + 0.0928915371304953, + 0.08515147917824296, + 0.07531231894838267, + 0.07859003440920427, + 0.09081653690617904, + 0.07771622589937377, + 0.0772303149582567, + 0.08835574282286317, + 0.07545180459143414, + 0.07303786911067026, + 0.08970361844940967, + 0.07137960681700645, + 0.09224873264575599, + 0.06728805930913911, + 0.0727578314334705, + 0.06834692774026543, + 0.06597920876862069, + 0.07214102063166403, + 0.06258711637840537, + 0.06773382194206132, + 0.07702787020662775, + 0.08418351318027595, + 0.08322360223209233, + 0.07169365495572355, + 0.06261781196787873, + 0.07051426755125798, + 0.07616875494465415, + 0.07784173067901927, + 0.09316490828397098, + 0.051499522880645666, + 0.07467211007540478, + 0.06808131407880418, + 0.07682763827603892, + 0.07690796573311544, + 0.06082145490488481, + 0.08368349140746945, + 0.08438566017390381, + 0.08608313287739465, + 0.10337244127053156, + 0.08364911345710542, + 0.06425411404291603, + 0.06374883647031312, + 0.06448008246341785, + 0.057067293626011914, + 0.07769154804813168, + 0.08246268431329326, + 0.09254264377334444, + 0.08207263065418295, + 0.08151202959288545, + 0.07346984461959838, + 0.07458892738766353, + 0.10365834641047272, + 0.08425301074412263, + 0.06318111903293859, + 0.08199507573111993, + 0.07847374676694283, + 0.058840337268411334, + 0.07104779438989497, + 0.0937117932752876, + 0.09274029085391088, + 0.10363652146093587, + 0.06418000041904559, + 0.07723617143896919, + 0.11020033944997884, + 0.09928583382746203, + 0.06053325563187336, + 0.08085988504219813, + 0.07833368118338713, + 0.08845931063995328, + 0.07027205657276242, + 0.07730319307104828, + 0.0836729511508753, + 0.0751419039748694, + 0.06876443656130383, + 0.08235531272196688, + 0.07990501933624533, + 0.08136200140412113, + 0.08313444600361929, + 0.08181920454332753, + 0.06959980402154811, + 0.07097313559460867, + 0.09735031452666208, + 0.06174003188912019, + 0.08848671645199155, + 0.08653720282902563, + 0.08880313204674123, + 0.06920304867855442, + 0.07045079679173585, + 0.07602321056323122, + 0.09069716057261386, + 0.06764667912098027, + 0.0941852525348901, + 0.09280241776032873, + 0.09388670336671621, + 0.08365309106603393, + 0.08847297793464853, + 0.08310491721459427, + 0.06048660284054635, + 0.11186753676506281, + 0.06748798997046965, + 0.06571815540609882, + 0.06092250967196113, + 0.07289402451575908, + 0.08145074595450735, + 0.10020280848864259, + 0.09083882698347677, + 0.07706601204200919, + 0.0705237551981349, + 0.08271808263318324, + 0.1044152887654245, + 0.06623390411888237, + 0.056901774016190745, + 0.06359051122413505, + 0.0666329750752725, + 0.12226072660682162, + 0.08634540204329157, + 0.07519210547006162, + 0.08475092834144367, + 0.07914574818249952, + 0.09356617048854882, + 0.10094512250966205, + 0.07581495265713896, + 0.06871390398515378, + 0.10022750202381842, + 0.08302049535362052, + 0.09772377256338963, + 0.08312419736475782, + 0.08349147134064959, + 0.058949605047970005, + 0.06953034768358134, + 0.10150816941995437, + 0.08684194670569884, + 0.060977715374192415, + 0.06833808407269489, + 0.0703693438512591, + 0.08726411055598128, + 0.08363103965195044, + 0.0576334451195073, + 0.07352387923915012, + 0.07397814670935413, + 0.07470277022003462, + 0.06763192549281748, + 0.05929420599262677, + 0.056186115221813535, + 0.07117333940728071, + 0.07187489120315005, + 0.06594988163742208, + 0.08187308050054566, + 0.08824267263095231, + 0.07603661993533918, + 0.07386787662117958, + 0.11213413226485366, + 0.07142239630854724, + 0.07044055984553037, + 0.09339916521246429, + 0.10031252622422734, + 0.06257051733824782, + 0.0714333748664418, + 0.08415037338804544, + 0.07650861742472854, + 0.07215193228118279, + 0.07455826068655969, + 0.07465277649317546, + 0.08017739049691865, + 0.07849232527786354, + 0.08790409183457668, + 0.08887826201495494, + 0.06549109181885095, + 0.09418153260451984, + 0.0810411007968899, + 0.07438450849568944, + 0.10171186099203967, + 0.0809951465998768, + 0.10061246349881947, + 0.08516049677000187, + 0.08174206484279728, + 0.05976373147788496, + 0.08476679250395162, + 0.06619698988423783, + 0.07322906204921745, + 0.09472443434569047, + 0.07935389228173426, + 0.07671046452818216, + 0.07344003320923287, + 0.06917171644851011, + 0.09806878449865546, + 0.09261595713144129, + 0.08131170353526367, + 0.06717674031110606, + 0.07852993419099366, + 0.08532267936535352, + 0.05731286816785429, + 0.08223390409870811, + 0.08540837097689981, + 0.05784049234608452, + 0.07900320259918223, + 0.07528513265562085, + 0.07012085327904614, + 0.08181620197946313, + 0.08278858688660175, + 0.08595283819147939, + 0.07398518270387207, + 0.07607487058991245, + 0.098127824167363, + 0.09591271788107965, + 0.07326868701631209, + 0.09660407442705751, + 0.08129517966326247, + 0.07628912793285449, + 0.06907845261433286, + 0.08678295855574168, + 0.08697435860824258, + 0.07350562717656454, + 0.0815826310112778, + 0.08726321217726471, + 0.0802987117704921, + 0.08174968190051572, + 0.08461713127686475, + 0.06155525862127897, + 0.07851911236918908, + 0.07548092873205027, + 0.08148715558250469, + 0.09821742386970085, + 0.0860083240998192, + 0.07289289727234938, + 0.07235649220137134, + 0.07331789667348053, + 0.0898660465894388, + 0.08183234402119902, + 0.07419174162524876, + 0.07923868747647024, + 0.09475640557899136, + 0.07556908523520683, + 0.09492255382817556, + 0.10190093698123978, + 0.07471823138835164, + 0.09169036782213803, + 0.08484807258599485, + 0.0867728313092282, + 0.05603969039090387, + 0.07123286199249831, + 0.07427921604644488, + 0.09030968719428768, + 0.07991147350439635, + 0.08765169486070716, + 0.0911803151283943, + 0.07806960451249359, + 0.09328675084920453, + 0.0684873630559566, + 0.09887530581539251, + 0.0887036970236304, + 0.07266852358523036, + 0.06941882833811061, + 0.09359909591774972, + 0.07133782202512975, + 0.09003739308557346, + 0.06048515203076763, + 0.073759884220587, + 0.0707153567424084, + 0.08975858193213222, + 0.08926921257955697, + 0.06418029951514716, + 0.0828006967467145, + 0.07692107252264586, + 0.05042033280767298, + 0.0752036690638428, + 0.09451112365212293, + 0.07835667643736553, + 0.07980395250448273, + 0.08557173342556305, + 0.09487495755806692, + 0.07860235041612182, + 0.10364025946764446, + 0.07188399599857594, + 0.06313480762528427, + 0.08840818106604963, + 0.07658416237324267, + 0.08093083795194206, + 0.07406715727235988, + 0.12178584197506082, + 0.07352558745442062, + 0.06340580012986109, + 0.06190524007583119, + 0.05737663616595976, + 0.08016778627813775, + 0.07615965078916195, + 0.07157109112904517, + 0.09285942814117211, + 0.06317871078960306, + 0.072515429315293, + 0.07440835398867655, + 0.07701737350173224, + 0.07983700905198252, + 0.0754703506775272, + 0.08057630700689675, + 0.06524756410591184, + 0.08382610398043898, + 0.10145066928764704, + 0.07692645444810932, + 0.13280116856980753, + 0.06645742489051465, + 0.0878837364278653, + 0.08083554104089334, + 0.08963830765264619, + 0.0635721471113561, + 0.07280096753485456, + 0.0759950955501089, + 0.06823388430001719, + 0.06934351568278169, + 0.08365590618478155, + 0.08392529229431897, + 0.07951374881875897, + 0.10458044780981153, + 0.06979685731075999, + 0.09590611137402509, + 0.07546971278715511, + 0.09785629720103767, + 0.09812379690612806, + 0.07257859254694723, + 0.08096351236322534, + 0.07916378304094715, + 0.08473281215156164, + 0.0587220377352558, + 0.08863706823226246, + 0.07001806383323092, + 0.07133986350388302, + 0.08788517415568614, + 0.08776543810162199, + 0.08310433838424212, + 0.08371967473520289, + 0.08790744441273969, + 0.07380900117848875, + 0.07467570877792953, + 0.08784031949669101, + 0.11753726747317432, + 0.08508073320200313, + 0.07598323570757214, + 0.07850285127865449, + 0.06583195914390388, + 0.09760292263490657, + 0.06614351612441752, + 0.07495484632746392, + 0.07082394659010786, + 0.08577896497151337, + 0.07480361800172794, + 0.0715005933289809, + 0.08579925705504807, + 0.07926252319082015, + 0.08987373214165742, + 0.10811114162330046, + 0.0732118769057691, + 0.06453436999402905, + 0.06233610340653374, + 0.07308874219590193, + 0.10909476383681505, + 0.07343194908910501, + 0.092547895699936, + 0.07797470021487989, + 0.07669924889825652, + 0.07441307121865487, + 0.06737383955782586, + 0.08192907531358928, + 0.07433155884308648, + 0.07897105405183938, + 0.07552901528646237, + 0.07801338196877579, + 0.05896648762637088, + 0.0796940410892384, + 0.07098558303548504, + 0.10924731332312088, + 0.08769924913938536, + 0.0749359751519691, + 0.07806303251618846, + 0.0761018074221039, + 0.07777606379344124, + 0.07643722024997922, + 0.10044828081405499, + 0.08108454924086723, + 0.08008262666619789, + 0.10479401477558842, + 0.07182579602079553, + 0.09525867833200019, + 0.06535289591319637, + 0.075601144550577, + 0.07685460522445028, + 0.08567401404830918, + 0.07976350120477813, + 0.06500766929268725, + 0.07145992668806092, + 0.08389802272250188, + 0.10063257964800794, + 0.06491476159942554, + 0.0849750826540245, + 0.07203303756802064, + 0.09630493216791051, + 0.07516747224349633, + 0.09339055706387654, + 0.09417469373994387, + 0.08696925629088667, + 0.0614870547114573, + 0.07968737776192994, + 0.06821033859818812, + 0.05583228088239497, + 0.07815708799574213, + 0.05875879365183065, + 0.07688588438605767, + 0.08306084131911405, + 0.08927871783412145, + 0.07612622914677779, + 0.08115873408101407, + 0.07694638047912049, + 0.08641331697049305, + 0.07392049961168994, + 0.08064901847624513, + 0.092840888653993, + 0.0891592480036011, + 0.06880307325369507, + 0.08932720469397644, + 0.09685378254485237, + 0.08678509279801873, + 0.07366238890210888, + 0.07548336307491038, + 0.06803306862904622, + 0.07329107177539428, + 0.0950008780541948, + 0.06491497772198504, + 0.07650594989563055, + 0.08120514561811239, + 0.07181433795753976, + 0.0611653840256915, + 0.0819520748455517, + 0.07197828937642332, + 0.08885809521414412, + 0.09809770886714975, + 0.07287041665985657, + 0.06387725889795383, + 0.10995652933648407, + 0.09529057062199406, + 0.08375208391891523, + 0.0832409738633867, + 0.06791729822731511, + 0.06230961547038477, + 0.08121534489705846, + 0.09104318605889944, + 0.08340015614613101, + 0.10406395390890569, + 0.07639128772733664, + 0.07779219049573638, + 0.09043886043001233, + 0.1049309037686203, + 0.0856761846113992, + 0.08048218699862894, + 0.07353626186555079, + 0.07646551165417502, + 0.07192990560108169, + 0.09750078150354866, + 0.06954964463098952, + 0.06526706402924941, + 0.07561397125550104, + 0.08738432133058881, + 0.09172684625207027, + 0.0682839278008085, + 0.06220083543851609, + 0.07074310889599915, + 0.08364160307663689, + 0.08004939760114316, + 0.08857975239105459, + 0.07647987867688995, + 0.08706390468931853, + 0.08564235277961146, + 0.0990439177905035, + 0.07997615667272101, + 0.07532745261992818, + 0.067583328248135, + 0.0640716953168822, + 0.07217477230173674, + 0.08189470406065634, + 0.08356641582837435, + 0.08799327979881205, + 0.06891213256656652, + 0.07813196036738475, + 0.0786960598781494, + 0.08709658887869359, + 0.0737568282349907, + 0.0892300529346188, + 0.08542656276667963, + 0.10111498188412982, + 0.07904165106005823, + 0.0785245534465211, + 0.06837733883154357, + 0.06126286420981726, + 0.07402048030472423, + 0.08136602873909439, + 0.08917187738091287, + 0.08070297741567004, + 0.07053230811568664, + 0.06153175335209052, + 0.06178054502121601, + 0.07828409897223139, + 0.06722529301663603, + 0.06783287712889428, + 0.05987693067205561, + 0.07726182756286647, + 0.061043194621923695, + 0.07411818558197797, + 0.06601072629722277, + 0.09248840784723052, + 0.08437668760944472, + 0.08828064629026089, + 0.07595071535833697, + 0.09032730333127144, + 0.08511271881970402, + 0.08813255806004597, + 0.08752597563211056, + 0.07392042492945876, + 0.09618591501038043, + 0.07030545768644862, + 0.06972260723813457, + 0.06621811557892691, + 0.08982440580564928, + 0.07689531742549323, + 0.07203558113550042, + 0.0816961882931625, + 0.07077045666806275, + 0.09050301509426828, + 0.08780216407715209, + 0.08366247914828756, + 0.0681077061005535, + 0.09734118285006038, + 0.08036743024853742, + 0.0686856685871816, + 0.06961528413761127, + 0.07964293294048558, + 0.07587506918174393, + 0.08981791272824398, + 0.08737823967020707, + 0.11006263176860846, + 0.06612465175123056, + 0.07482322362200741, + 0.08537795970164908, + 0.07041027559440781, + 0.0865710484149628, + 0.07285782311298965, + 0.092014393129874, + 0.06261606865580566, + 0.09034079909936006, + 0.06874012563835614, + 0.08522113746776769, + 0.0709692569390849, + 0.08898951967382622, + 0.0641470441593713, + 0.05771196042416229, + 0.0874943828656577, + 0.08863053405810843, + 0.06949535693186717, + 0.05781577034705666, + 0.06137754696292513, + 0.06658068740748302, + 0.08021017467056325, + 0.09046933245007734, + 0.07779589340769441, + 0.11305677802900832, + 0.0723487748983419, + 0.06055617280769529, + 0.09162059983819147, + 0.06712194986634513, + 0.06972528105189456, + 0.09094131805094689, + 0.08584649263016103, + 0.08806152724209783, + 0.09668038032645869, + 0.06873564948903757, + 0.08485450779285428, + 0.11156195922552171, + 0.10727849066681636, + 0.06606523012585522, + 0.08235892148090129, + 0.07755383875970615, + 0.07796492788083695, + 0.07877852115546717, + 0.0693530105685701, + 0.08814923174168766, + 0.07449492905745204, + 0.08932857119835488, + 0.07098702648704024, + 0.08381883765784828, + 0.079003336280253, + 0.1013077561482923, + 0.0825198042238496, + 0.07725197765642251, + 0.07144838495441318, + 0.1266756510209321, + 0.07840584746748736, + 0.08145761912933047, + 0.0723848708607105, + 0.07573901843515078, + 0.06423221756165072, + 0.07961182468237278, + 0.06553766363626339, + 0.07804135273216951, + 0.07174679901710547, + 0.09163197929928223, + 0.07468821647929953, + 0.08005220430086571, + 0.0737833230647886, + 0.08528647008914282, + 0.08329439583159494, + 0.07059682958998005, + 0.07028996150512054, + 0.06890259911215031, + 0.09302866391978064, + 0.08716466666122082, + 0.07756969099100502, + 0.1171434589929802, + 0.0808918309000591, + 0.0787841443550876, + 0.08932969250771304, + 0.0887417310221331, + 0.07608654419108128, + 0.05800776747837923, + 0.08690599735934132, + 0.06255025289771614, + 0.07043742448474062, + 0.07683020413034773, + 0.09378643902268946, + 0.08924016310669078, + 0.06199104454532777, + 0.09749480637715856, + 0.08137934356020834, + 0.0788106533847259, + 0.06752185277487466, + 0.0835706754055129, + 0.0764567824226627, + 0.07978399006902659, + 0.06500190336203593, + 0.11541483483936937, + 0.0785569026610849, + 0.07301695458904787, + 0.08029975077339466, + 0.07296059622191739, + 0.07868752294109074, + 0.06795361891654958, + 0.08355973300215579, + 0.11415143548684896, + 0.087056693972662, + 0.08599012643222949, + 0.08249204737480602, + 0.0791491137791949, + 0.09125565930063449, + 0.08589240122739411, + 0.08868424293595738, + 0.07551989126871503, + 0.07884260074333567, + 0.08433955375039448, + 0.08656633818747612, + 0.10305694551110918, + 0.08138873675066217, + 0.07945167764786651, + 0.07407146484342318, + 0.07734491698949372, + 0.07163550785930284, + 0.07844259787316629, + 0.0744107301894547, + 0.06521314354099265, + 0.06470859135229044, + 0.07779075942943402, + 0.08679461427573369, + 0.07498277281465504, + 0.1154092906213249, + 0.06325984117167244, + 0.0786978076884588, + 0.07828837078058642, + 0.07901665598553279, + 0.09921561974987622, + 0.08112663012975758, + 0.09045334974416334, + 0.06864730838860837, + 0.09670551461602833, + 0.09622393994309604, + 0.1057548255207697, + 0.07209782114648143, + 0.08569106640246656, + 0.09006320653505355, + 0.08616423290791256, + 0.07374299550973731, + 0.07776603613024863, + 0.0733409818741955, + 0.06600978571093873, + 0.07575742133284429, + 0.07986251488922409, + 0.06224939250965193, + 0.07209201723855788, + 0.07445219498554756, + 0.0647425950789306, + 0.09523736623771256, + 0.08896264885339411, + 0.059672503290380804, + 0.06736228948091004, + 0.06037907481521225, + 0.08060826069246653, + 0.09862927511059756, + 0.10094730957733274, + 0.0942450346243485, + 0.09392348434781293, + 0.06641162102444671, + 0.08231388512416454, + 0.09530098576965036, + 0.07201904620684117, + 0.08799110503663705, + 0.07313631780322781, + 0.0712244618734418, + 0.08611184528454274, + 0.10361575444279478, + 0.07092245437159915, + 0.09698060844714178, + 0.0758958671673554, + 0.061347699898185774, + 0.0931559552852509, + 0.08153278131411093, + 0.0730445985113939, + 0.08207447217384202, + 0.06854968324704064, + 0.07473546033770422, + 0.07480991407036942, + 0.07388444716984485, + 0.07573294500334676, + 0.07688661184820085, + 0.09250286500090572, + 0.06719032632194025, + 0.09198826378498172, + 0.09278562326214836, + 0.080453255544012, + 0.08106243332316167, + 0.09284169508096606, + 0.08197351678417979, + 0.061128202136661265, + 0.07579357557742028, + 0.06820623298422249, + 0.08137133740936936, + 0.08707010729588427, + 0.08407896820234816, + 0.06277008586782427, + 0.08008685821022404, + 0.07703885940648408, + 0.07252847701896686, + 0.08777974904059857, + 0.07660507226971515, + 0.08324752167694152, + 0.08875218566217671, + 0.10336490618827011, + 0.08751875195702767, + 0.08535392018136614, + 0.06674064838006143, + 0.0800491008923288, + 0.09011850743055588, + 0.08792804803049865, + 0.09765758002009929, + 0.0810874492722158, + 0.08253838716529417, + 0.09639023934268011, + 0.06671862245445928, + 0.08276146834505571, + 0.08638897315546949, + 0.06357240834836043, + 0.09792784312507857, + 0.06047700985851386, + 0.0974026583828377, + 0.07647294593609515, + 0.07896058417670107, + 0.09013176320137654, + 0.08848109827087697, + 0.06891824849005758, + 0.08841359458440398, + 0.09040455023111911, + 0.0648346495256959, + 0.06485005094049753, + 0.08041890829832649, + 0.07168144702150668, + 0.07646503547432042, + 0.10476606369541344, + 0.07628465977642225, + 0.07088755584878967, + 0.06661946509090907, + 0.07493501155899274, + 0.08441882922264327, + 0.0712259640162831, + 0.0674004301142429, + 0.08918583115075784, + 0.09662021055355051, + 0.06380755368991646, + 0.0770325087051521, + 0.07424753843623122, + 0.0639424432965075, + 0.07643545580882123, + 0.08692552984679255, + 0.060810415137103196, + 0.07387538351518533, + 0.07159521192340995, + 0.11317596123009434, + 0.12124578964681332, + 0.07540626491388343, + 0.06943631366423642, + 0.07172151724342286, + 0.08457337961016446, + 0.06641148167252262, + 0.08643984901370033, + 0.07332074373698803, + 0.10060634653236382, + 0.07458717904379476, + 0.069164247003398, + 0.0608779863195106, + 0.08454258244121893, + 0.0976471563026735, + 0.05961153447768249, + 0.07462695983001989, + 0.07293634595704646, + 0.06599646387331015, + 0.07670232534897924, + 0.06898132347307104, + 0.09994800616486575, + 0.06365684872911655, + 0.09235792205213311, + 0.07290300109676386, + 0.0826900554218882, + 0.09404848938836363, + 0.09567423254858576, + 0.06286156133596946, + 0.08691071928265943, + 0.09329196944320928, + 0.10746768303971431, + 0.0956248913180992, + 0.08511795734485426, + 0.06837137281857096, + 0.07178712475096279, + 0.08573809963495285, + 0.08455740595275722, + 0.060712114489871565, + 0.07517251796592898, + 0.07563343313056901, + 0.07410928564313649, + 0.07668345158727745, + 0.0913178552179782, + 0.07002128801591233, + 0.07432160379575699, + 0.08444020194680385, + 0.06526839819920756, + 0.08828149070976266, + 0.07731716567575474, + 0.06514798851860103, + 0.052329179948562635, + 0.08561378554256108, + 0.07890380378151635, + 0.07427826138273998, + 0.09170236368210834, + 0.07645605277227373, + 0.07440607896245609, + 0.073207170584111, + 0.06885814012470762, + 0.08502866643033438, + 0.06790346371704435, + 0.10154726355332296, + 0.08099361707440475, + 0.08586718244490388, + 0.05721061248134299, + 0.08130108549120112, + 0.08940016042976763, + 0.08067619943155846, + 0.09150582647783097, + 0.09047398603513991, + 0.06426434178124857, + 0.0734804924869087, + 0.08174746532024926, + 0.08143522975405583, + 0.07278629171404366, + 0.08141478081105756, + 0.08416764721632672, + 0.07469989854742135, + 0.11043790943819039, + 0.07541034184349901, + 0.08783238522150397, + 0.07386421651518577, + 0.10504435430035045, + 0.09305152119749646, + 0.10191416945538788, + 0.08646604304105714, + 0.07825438246853438, + 0.062432835485757204, + 0.05593726198272926, + 0.0736805989741748, + 0.0882618228384281, + 0.08191098148238714, + 0.09434721632609369, + 0.08421590027061863, + 0.07898522570749847, + 0.061389240621930234, + 0.08049580758001755, + 0.07363417758160029, + 0.0835076288525843, + 0.0680278504951423, + 0.0761107896705578, + 0.07440719743510611, + 0.062285457663343556, + 0.06618441243246997, + 0.07379096294154826, + 0.07673792862005378, + 0.08921669834062257, + 0.07010133053365936, + 0.08571680967178931, + 0.09918464653398379, + 0.05898341248792462, + 0.08434732532501005, + 0.07487499451931087, + 0.07247866942991514, + 0.09044502376321593, + 0.09000744595742437, + 0.07301638974206547, + 0.07753540403709898, + 0.08164483531415238, + 0.06792135059203643, + 0.07275942585723777, + 0.0844225179911367, + 0.07655821419678874, + 0.06946878059947638, + 0.06635174449574621, + 0.07939412540738335, + 0.08092425537383623, + 0.09527658571708662, + 0.07400364776502376, + 0.07247846775610126, + 0.09441683694608397, + 0.07694519739268206, + 0.06849514901534065, + 0.08867400362984265, + 0.06703410704594626, + 0.08877393748198202, + 0.08876481028664265, + 0.09554140477051384, + 0.07948211896151167, + 0.0823318074695485, + 0.06823847023807784, + 0.10204065420060467, + 0.07501907703186096, + 0.08458445557047851, + 0.08675330701728509, + 0.07716084770049274, + 0.07300248584318164, + 0.06503857514821734, + 0.107512346256987, + 0.06105590144236113, + 0.07854881652733767, + 0.07851758644261907, + 0.06110310944193413, + 0.08857605299807417, + 0.06347658500450391, + 0.08080454486207499, + 0.0844718821031085, + 0.09384765702287, + 0.08348171792182296, + 0.0651227306209969, + 0.06079532232543253, + 0.074467598694429, + 0.07972509719963647, + 0.07706936545332012, + 0.06826298698402439, + 0.08187905606682012, + 0.08548920830264342, + 0.08128476657510499, + 0.08883497354310292, + 0.09242524410897765, + 0.08368604805221676, + 0.08068025769113173, + 0.10458441166162358, + 0.09555292332233564, + 0.07478714198704244, + 0.08090882463962494, + 0.0796636785072265, + 0.0772677530738547, + 0.08525772316099567, + 0.07652313046290123, + 0.08784600690123216, + 0.08149357448491111, + 0.10083456055127295, + 0.08041830915002374, + 0.09520995082917977, + 0.0708695417497157, + 0.06327047091842648, + 0.08353507166311745, + 0.062016388501756246, + 0.062268196862933944, + 0.10098241557429068, + 0.08353653459202764, + 0.09319460933092731, + 0.08140103150608813, + 0.07928815797797314, + 0.07706807798105926, + 0.09409258233999224, + 0.07356962533840186, + 0.06623209036464905, + 0.089728890102419, + 0.07673311960455718, + 0.08217105285658287, + 0.07626631005766189, + 0.07867664169248045, + 0.07135110649989158, + 0.07292839314791412, + 0.0568155024539461, + 0.086531979218213, + 0.07561196697987115, + 0.08438168446375911, + 0.08242362760426082, + 0.13661382845061892, + 0.08133011350752525, + 0.06993358724529827, + 0.07392361348785575, + 0.07373196372168159, + 0.0719306645806806, + 0.06945631479906574, + 0.07539326422347585, + 0.08087553605311099, + 0.11770608616094771, + 0.0958480786740264, + 0.0678978438109724, + 0.08585047758567217, + 0.08519497854260069, + 0.08400393707140372, + 0.07899790873335943, + 0.07842673559940057, + 0.0783200435344692, + 0.07273560491042157, + 0.07720608114453192, + 0.09454440952350161, + 0.06255621169012782, + 0.05830217264800094, + 0.09055772208575416, + 0.07324779515934912, + 0.05823730493618101, + 0.08879165321571453, + 0.07451269665607059, + 0.08348538318727419, + 0.08984220157530398, + 0.0684924578245853, + 0.08711551127240388, + 0.06413742303588553, + 0.06813218266771823, + 0.06829093166776125, + 0.06088303127508514, + 0.09811437863343983, + 0.09439637228790494, + 0.06609734161487041, + 0.06614820256067959, + 0.08066612716030357, + 0.07567609655898395, + 0.07572045434847091, + 0.07813329188446971, + 0.09321796504316908, + 0.07637071425772857, + 0.09481992781678773, + 0.0828673508543557, + 0.0819926641550036, + 0.06323491999619069, + 0.06386490916197606, + 0.0754193068810909, + 0.055610381095902994, + 0.08116102071009912, + 0.08144615048484452, + 0.06633368151481892, + 0.09334541703837546, + 0.08472195374454757, + 0.06028717677393665, + 0.06640495403454587, + 0.07676726826796897, + 0.06427937542408912, + 0.08415850684603407, + 0.07151077785083103, + 0.09035024906855262, + 0.08741884706296649, + 0.06785530929239954, + 0.08351538263242274, + 0.0870472991696806, + 0.07636776707244546, + 0.08796736708121493, + 0.07565412546249665, + 0.07705412017374937, + 0.07094900934581731, + 0.08251336142419526, + 0.08042668744052703, + 0.08609525970863273, + 0.10351804441565185, + 0.07218159092262469, + 0.07519274922426669, + 0.07824112209999953, + 0.08792327680009367, + 0.08598506728359702, + 0.07546225473125397, + 0.09467698359222533, + 0.08629072805097572, + 0.08333694984012478, + 0.08282123510539485, + 0.06853372751475878, + 0.07418412753347589, + 0.06879337832257507, + 0.11447393137470015 + ] + }, + { + "legendgroup": "Beam sensor 0", + "line": { + "color": "rgb(102, 197, 204)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 0", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.11447393137470015, + 0.08601614895685247, + 0.06665487649605299, + 0.07900619625585142, + 0.08284809324354658, + 0.06766256994709624, + 0.07283503536073105, + 0.056383171130916565, + 0.08362744074898475, + 0.06310333034545965, + 0.06891743810923376, + 0.07204182122329209, + 0.07901032954941116, + 0.08015226278244958, + 0.09849577310595324, + 0.06643702058412013, + 0.08388336435169948, + 0.09195416515097264, + 0.06571232075597214, + 0.06366720541852532, + 0.07601258935078131, + 0.06174661682523948, + 0.11453871898297897, + 0.07216592178061938, + 0.07850172534551393, + 0.06928483349020712, + 0.0662306337073297, + 0.05576482093165577, + 0.07850550362653552, + 0.07508363450803489, + 0.06588816315463375, + 0.07150108913795072, + 0.08323637756877912, + 0.08635889960071731, + 0.07190620802350206, + 0.08081925565440579, + 0.08294420015650246, + 0.09010474033751692, + 0.06624102171159858, + 0.07810152473869944, + 0.09720358288204446, + 0.07021406369217482, + 0.07969129308531542, + 0.07045152747662785, + 0.0567101162583161, + 0.08952745252162675, + 0.10011724342410384, + 0.07497196385020213, + 0.06653933352604612, + 0.08381570771682363, + 0.0806621213098584, + 0.09531897627413467, + 0.08716055193365968, + 0.08522642992171058, + 0.08591298624446728, + 0.08084153844657367, + 0.06710515773469462, + 0.09430968387215924, + 0.06213257160620119, + 0.07688724986741426, + 0.07680752341347079, + 0.09296246093855981, + 0.08338380216169772, + 0.08115978038325393, + 0.09860024214831854, + 0.08711590147405494, + 0.08845193645713344, + 0.09986358937144846, + 0.10563751596473349, + 0.07986983800198987, + 0.09391370362043723, + 0.08328974314939976, + 0.06353034157919227, + 0.07173178889986198, + 0.06849774847479977, + 0.07395607369830753, + 0.0899784792554148, + 0.09558160705730065, + 0.0967903058121914, + 0.10879279381495442, + 0.0682780996018918, + 0.07023014676153012, + 0.07018472785233362, + 0.06794393303628263, + 0.07562253557652206, + 0.06737320609619915, + 0.06848584920278386, + 0.0719714866727068, + 0.09756345975818605, + 0.1246429443943433, + 0.07406953743291533, + 0.08630599452183056, + 0.061661644771578976, + 0.06828385809904046, + 0.10371403253541417, + 0.06382958285422846, + 0.05369008327523345, + 0.08599365226432865, + 0.0745252382355847, + 0.07098760285632623, + 0.06463176830412305, + 0.07097667049873826, + 0.06504201344633444, + 0.06635464271615078, + 0.07758729315139626, + 0.05776850849516609, + 0.08172460729556434, + 0.06622546915366254, + 0.08525049481954332, + 0.0878261742918285, + 0.07191757196548773, + 0.09690315067140136, + 0.08469713162476505, + 0.07280513026204247, + 0.05219197412294474, + 0.08351782331758498, + 0.07765153524314236, + 0.07051857396758014, + 0.09232309483569463, + 0.08786743900710114, + 0.07820448129649782, + 0.060213464478592604, + 0.07473467506308742, + 0.07833026884176429, + 0.0753715611322922, + 0.11712548142544514, + 0.062240875393909954, + 0.07925836891165816, + 0.0639642676329946, + 0.07776827020914273, + 0.07320208366440101, + 0.08287252901224765, + 0.0693492513890538, + 0.06587756207197815, + 0.06889103831709388, + 0.08843957860273215, + 0.1147944133669514, + 0.08133669674561181, + 0.07233657294045802, + 0.07798271220810435, + 0.0704920336218388, + 0.07705099797161008, + 0.08082979933795469, + 0.07230878134889929, + 0.10413933008540757, + 0.07792174097248634, + 0.07124174850521534, + 0.07793745216511355, + 0.058643435962110614, + 0.08622033030661595, + 0.07156069377236193, + 0.07521353094024891, + 0.09229350589957379, + 0.08922789957414853, + 0.059135394096358825, + 0.05797250854127129, + 0.08524890840051923, + 0.0682904822501719, + 0.08720699072814479, + 0.07987896134319052, + 0.08929144422730077, + 0.11219561306376101, + 0.07070377893486857, + 0.0672730915974678, + 0.09052392785861217, + 0.08218400625863294, + 0.0859103692629877, + 0.07912291386186082, + 0.06065266175719179, + 0.11295059181101481, + 0.07150019003194455, + 0.06875576806024644, + 0.06865172146223689, + 0.07966190293593337, + 0.07062075078253649, + 0.09178642952435778, + 0.07574782853699077, + 0.0935408217113296, + 0.06941602715655137, + 0.073046580884459, + 0.07963468913751347, + 0.10811603423678806, + 0.0730489843540421, + 0.0824320189622287, + 0.07821764726375303, + 0.07467417772469509, + 0.07561984537215373, + 0.06709681809902288, + 0.07951766010987153, + 0.07700524521284692, + 0.07529040120521723, + 0.07588360010570327, + 0.08075634562189682, + 0.09292122056187516, + 0.07201501792327474, + 0.07726142297965469, + 0.07190995598210029, + 0.10740457314330389, + 0.07707765475776454, + 0.08308775111648858, + 0.0733341996284551, + 0.08218039952042501, + 0.08014820735041306, + 0.09184628819786854, + 0.09086204543777972, + 0.0594843267585398, + 0.0629393144881159, + 0.09973705005283119, + 0.06976007185371458, + 0.08900181852600147, + 0.08025511544154748, + 0.09414012999894134, + 0.09120961664666606, + 0.07586750366643918, + 0.06307735963578387, + 0.07224386759238362, + 0.07346095466023034, + 0.07867588053009907, + 0.10310429652641746, + 0.060885859241399956, + 0.07675324381930491, + 0.06170394454164737, + 0.08512477440705574, + 0.0693402390874714, + 0.0697757604164985, + 0.11257663552882656, + 0.09169784869552476, + 0.06958787157114349, + 0.07416659824491252, + 0.06444468281228989, + 0.06323603547393016, + 0.09301047966145883, + 0.06089544351712666, + 0.07403302433929651, + 0.07150895565040416, + 0.07542964915271207, + 0.08510155377972826, + 0.0668345018401326, + 0.0926086898829572, + 0.09459582238712758, + 0.06829926700002749, + 0.08587308870738519, + 0.07559059613276593, + 0.07746544187665194, + 0.08030051585849717, + 0.059565236003503955, + 0.0874879613080152, + 0.09736435879588756, + 0.08213059041495015, + 0.0628717247343395, + 0.06731267094026634, + 0.08495653987676126, + 0.08586918199263968, + 0.09716665004285123, + 0.09127035755722866, + 0.06863936314895139, + 0.07668759801435006, + 0.05730454667551294, + 0.06459838408276403, + 0.09488969683702864, + 0.07356632638838113, + 0.08019248179521675, + 0.08533161343709834, + 0.07153673709273767, + 0.07544520422922632, + 0.09027450092461765, + 0.08779950633587545, + 0.08468257946065447, + 0.08785310802818082, + 0.09086207368946451, + 0.06542922416139665, + 0.072054645248716, + 0.07919802241310896, + 0.07507777553528971, + 0.08739496127033293, + 0.09690622530594047, + 0.07649473136049137, + 0.08088855610130878, + 0.07642213854839092, + 0.05913650796853856, + 0.07235120888240842, + 0.08975737062982718, + 0.08284476547471378, + 0.07138504055646687, + 0.06868791135237501, + 0.07517389255496716, + 0.07487525017876437, + 0.0824518137718452, + 0.06541432040371564, + 0.08199742451963471, + 0.059677726285325715, + 0.061339255557373705, + 0.08821244841980427, + 0.06351048555016134, + 0.0749407818223644, + 0.06254964496931252, + 0.08759247218034395, + 0.07379040201410064, + 0.07374204945567125, + 0.08342308942516187, + 0.06645701923270002, + 0.08755258632757869, + 0.06364151288908773, + 0.0920935008564492, + 0.1034087463340564, + 0.07454200663215498, + 0.0840504874272234, + 0.085595872682885, + 0.08210687247690875, + 0.05758975767591459, + 0.06833889028188614, + 0.060229230511689116, + 0.06368948747301151, + 0.07858333300302617, + 0.07500399858424571, + 0.09130854990133823, + 0.06876439565539427, + 0.06462127284197064, + 0.06792900187506273, + 0.06471406948261195, + 0.06937689884793208, + 0.05836638652826638, + 0.07088304373697007, + 0.08218259503506525, + 0.08297492116580503, + 0.08192840281516625, + 0.06210135775145932, + 0.09895090109317446, + 0.059825330277706625, + 0.1088935017515979, + 0.06563885467592853, + 0.07100286050769015, + 0.062344359179982156, + 0.10754054814009084, + 0.09429598631970175, + 0.06398221957720256, + 0.08213712468506511, + 0.08311285528647334, + 0.07721276628203463, + 0.0989056805793633, + 0.06147362035991655, + 0.08464931616308984, + 0.06348942023659682, + 0.08608968394170419, + 0.08140617483921567, + 0.06663531787432986, + 0.08479624353271892, + 0.09839892382328318, + 0.07453713857251745, + 0.06595762568491742, + 0.07375357851668816, + 0.08688506196674173, + 0.0833982611407247, + 0.07188403460878663, + 0.07430628600624421, + 0.06950346831012712, + 0.06598581427334622, + 0.08233123697069712, + 0.07912029398442523, + 0.09025420812832731, + 0.0757882749484664, + 0.07039967085092443, + 0.06334076317411697, + 0.06355757077677757, + 0.081051876100448, + 0.08785195483697462, + 0.07430980413428202, + 0.092997699968936, + 0.0733893310258755, + 0.08593281023862148, + 0.08972985429583416, + 0.08464811564953974, + 0.07160956979277308, + 0.07673016670499298, + 0.06031805482144385, + 0.07066680623811901, + 0.06761318267366623, + 0.0919447440745381, + 0.07461783492694214, + 0.08731004924979122, + 0.08080187511702797, + 0.08636122191926213, + 0.07484464529981237, + 0.0831084453887049, + 0.07409663055884935, + 0.06978551003756014, + 0.09419378665107161, + 0.10120992440060388, + 0.07852187808316935, + 0.07924511552560778, + 0.07910156535230264, + 0.06521786222557038, + 0.09052096765845304, + 0.08725447569999004, + 0.07864269725286316, + 0.07820361963673553, + 0.0907825688570589, + 0.07167375282335747, + 0.08071671512511618, + 0.0600605440310957, + 0.06256682578534761, + 0.08230280441135988, + 0.08757903072022766, + 0.09985412136842108, + 0.10340029038748502, + 0.08366499596534649, + 0.07655182982214884, + 0.07804651814436636, + 0.06482309533221399, + 0.07621621254268832, + 0.06236540036951853, + 0.08655035595975202, + 0.07450759326144077, + 0.08190482200002261, + 0.09681142853970195, + 0.06689443159389098, + 0.0744818380807826, + 0.07766686887936203, + 0.06689357944940864, + 0.08268362279354818, + 0.07957043742327832, + 0.07077574214902072, + 0.10066386992082715, + 0.07580249290117458, + 0.07534422124230128, + 0.06633349220711687, + 0.07705430890787414, + 0.07399349098036588, + 0.10873876414806177, + 0.11493951871872578, + 0.06885554489770147, + 0.07446866539049761, + 0.08059709027268736, + 0.06464325303734707, + 0.09360681709083189, + 0.0635263696197495, + 0.06995200897101328, + 0.07853874383290806, + 0.08159604136656692, + 0.09335610107894479, + 0.06703972221744038, + 0.0664240062005633, + 0.0924058754706442, + 0.06877143485916433, + 0.07811733903449461, + 0.07092291515044927, + 0.0679459810236854, + 0.07243995250634673, + 0.06860377362234367, + 0.07782687080210457, + 0.08267951518149258, + 0.07889687485488826, + 0.06363766842866425, + 0.06943480531479039, + 0.07743774834327395, + 0.11139193723843882, + 0.07703505326921749, + 0.0763394692365271, + 0.06761434831868827, + 0.07864047204175284, + 0.08398811624769813, + 0.09727189236255904, + 0.07340890982522623, + 0.0728979548118425, + 0.05548912159305028, + 0.0815216389176959, + 0.07344488247895707, + 0.0808551189403844, + 0.08048921636825573, + 0.07399257476753199, + 0.07913338031534904, + 0.07227049819802908, + 0.08551010896871292, + 0.09973176445942342, + 0.09279861930581898, + 0.0909153768627144, + 0.07251391649541185, + 0.09029198956112401, + 0.0796746572029755, + 0.08777367579293233, + 0.07501857785486714, + 0.082749745764031, + 0.07069218916563735, + 0.07797181110399633, + 0.08684767959088519, + 0.06815072837230976, + 0.09423284149688939, + 0.07242168779791947, + 0.08331829088719833, + 0.07485093602060462, + 0.07422936837645037, + 0.07838987714497178, + 0.10268784085054962, + 0.08156503288962434, + 0.08187316977339415, + 0.09270132904789756, + 0.07709220214077123, + 0.07685217633005756, + 0.06743487622556507, + 0.08665612027502535, + 0.09038462711745501, + 0.07278571446373841, + 0.07709784836865462, + 0.07097927421705418, + 0.08316695429050924, + 0.07130913350878548, + 0.07041045945216523, + 0.1053279525424274, + 0.09667527980137407, + 0.09753151071263146, + 0.06422971412288866, + 0.07703872122803548, + 0.09026639243705369, + 0.06457615160649462, + 0.09709716351616014, + 0.10663420914431225, + 0.061413871620174094, + 0.07564589404465283, + 0.07939400120505889, + 0.08003878877340238, + 0.07114124816937828, + 0.07753341919389253, + 0.0672765415863962, + 0.06962421911263848, + 0.08231126206263532, + 0.0783275664000965, + 0.09219502419318681, + 0.1088989093726032, + 0.07269035761693707, + 0.07472475656001436, + 0.08051289631190264, + 0.06366546320747778, + 0.07584729148493694, + 0.07932550807309925, + 0.09115098885760453, + 0.08839727713481789, + 0.08442820124211299, + 0.07709478445498069, + 0.0697798571612283, + 0.0742680429018309, + 0.0692433003839258, + 0.06324926207409469, + 0.055892978207178624, + 0.08174436834888262, + 0.07354693737441079, + 0.0814271375801284, + 0.09697191310614828, + 0.09862185015310362, + 0.10141878028483443, + 0.07260538758612257, + 0.09502894519967052, + 0.07821361014444592, + 0.06345519831486886, + 0.10627357999205878, + 0.0699365774615762, + 0.08081431901806348, + 0.07802780671986118, + 0.08325261703048314, + 0.07541518106709426, + 0.0819484798134012, + 0.07477924712484917, + 0.08165948274224681, + 0.07242673443192532, + 0.0977868486538132, + 0.0975254028591405, + 0.08999047119264812, + 0.08408004771942672, + 0.07607789466917851, + 0.07108595495851153, + 0.06406545057304955, + 0.06550299003260779, + 0.06732619256351961, + 0.06326970111085622, + 0.06050936180233658, + 0.06659216882414835, + 0.06551169605559176, + 0.07976519850067997, + 0.10199847029605952, + 0.09072559610427942, + 0.06950626102673155, + 0.06658827828591671, + 0.08891072789358756, + 0.08649675477132222, + 0.09493030408086815, + 0.09196798963641586, + 0.07630312899712725, + 0.07105652603805117, + 0.08160726437273194, + 0.07104947092679662, + 0.062389768992805496, + 0.0962445383077257, + 0.07180748492985603, + 0.07144139285634933, + 0.06881331576659823, + 0.08027080722548703, + 0.06397047069767009, + 0.06897230648516414, + 0.07857594060916642, + 0.06149358342512446, + 0.07450362863565209, + 0.09164654130875557, + 0.10934822057754111, + 0.07663091171414961, + 0.06864543161706481, + 0.07923526541539076, + 0.08414389039823938, + 0.08768940222163268, + 0.07981382114329867, + 0.06915002382421889, + 0.07988132951930701, + 0.07532476283955065, + 0.07829139061231181, + 0.07900891354664555, + 0.0883784779852678, + 0.06251354102239244, + 0.06841070877182777, + 0.09391841302772613, + 0.09590776563359762, + 0.08748440878573031, + 0.09925090255041578, + 0.0707051376001382, + 0.08002583836443009, + 0.06810939620784656, + 0.0626670751356061, + 0.06743918371846946, + 0.06975887881777547, + 0.08674005776518602, + 0.08007641697699676, + 0.07724007229379931, + 0.09112328251370098, + 0.08238171364639738, + 0.08275357027035064, + 0.07397336309767939, + 0.07330035086559279, + 0.09324575755050295, + 0.08243261851147833, + 0.07833315935159679, + 0.09030266869928101, + 0.07439736088050897, + 0.07326087216689876, + 0.08563691727967472, + 0.09462599969941721, + 0.07555388824623706, + 0.0844027659988426, + 0.10013791633050079, + 0.08093822567316493, + 0.07888126134673129, + 0.07850733828985991, + 0.0856892424066913, + 0.08043677343745301, + 0.08551387729867703, + 0.10190385890324473, + 0.07219084505287436, + 0.061759591582873155, + 0.09423377909927393, + 0.0791538582338517, + 0.08030247854101046, + 0.06767058390814908, + 0.07403365023508893, + 0.084509244878108, + 0.07899168644869359, + 0.068488118343969, + 0.07781566014136189, + 0.07847642592263286, + 0.08021834147749672, + 0.06362072948132237, + 0.09819213161232802, + 0.08028890532712506, + 0.05769805223262799, + 0.07400161857253458, + 0.08645287829373509, + 0.0801534899275563, + 0.07858910258787029, + 0.0707522588339861, + 0.07634870564674279, + 0.0707625676284981, + 0.06264902859961077, + 0.08144983013058536, + 0.07702749867204192, + 0.053162437068084, + 0.08654196440316807, + 0.08394689388780556, + 0.06290453901517627, + 0.08287680013523602, + 0.0753953063778686, + 0.08148191017512382, + 0.06933400624396832, + 0.08320864641646993, + 0.0890457446529895, + 0.059819530839693824, + 0.07751816396331218, + 0.07261928420982501, + 0.0786483853879108, + 0.07576596639954253, + 0.13421542857219287, + 0.06526605973360274, + 0.08110966822805879, + 0.08199109589816726, + 0.06365996071936286, + 0.07157588486746556, + 0.08943871571378152, + 0.07534018588064255, + 0.10346783057392332, + 0.0689949696178118, + 0.06578687733834684, + 0.07193306105093497, + 0.08837689907333929, + 0.0696354045371941, + 0.08415868465551433, + 0.061647921693896206, + 0.05862747211863791, + 0.07938288096434062, + 0.08564294284456848, + 0.08577955247808648, + 0.0897321062177783, + 0.06091342951381326, + 0.08380608358553028, + 0.09438993546845928, + 0.1203745244119162, + 0.0665662926405263, + 0.07248789681285851, + 0.08579254840556264, + 0.0785043603366159, + 0.07518537683030256, + 0.08152672660502874, + 0.09283965806765329, + 0.08687168090475948, + 0.09807924527425933, + 0.06670279457205058, + 0.07678228858455857, + 0.0871915767749327, + 0.09769441649149695, + 0.06544498055889295, + 0.07007028028195667, + 0.0660685146491283, + 0.06804144134387073, + 0.09188800395129014, + 0.10234341498317125, + 0.08479138968351028, + 0.08814888668774401, + 0.06804048737176265, + 0.07663143864009149, + 0.0836647511384597, + 0.1000097675050749, + 0.0920569407414, + 0.09237681655029388, + 0.07714710324445687, + 0.07824614337129342, + 0.07245133067758038, + 0.07825120089165155, + 0.06707422530915268, + 0.08805199090421657, + 0.07533243595828444, + 0.07604885465323771, + 0.11006980096405396, + 0.07383927139768007, + 0.07298825669457584, + 0.08838722046718424, + 0.07897568149138616, + 0.08341766698119388, + 0.0816341216124362, + 0.08628150822536863, + 0.09508355005547653, + 0.09401446433656753, + 0.07728530890457957, + 0.0751444030845301, + 0.08037957076841962, + 0.08497792110118813, + 0.09947432827731859, + 0.08110390440121795, + 0.07855812514249297, + 0.05919818833816716, + 0.07951884460796821, + 0.06477729651009158, + 0.0848358081483786, + 0.08615401664813888, + 0.08963810471213604, + 0.07461094516889337, + 0.061439469869498164, + 0.07744570752387536, + 0.07231432141595996, + 0.07359513935542203, + 0.0647442090729554, + 0.08645332065079217, + 0.06394630975892063, + 0.06182743687182061, + 0.07650702277494591, + 0.06869532799429699, + 0.06422578437568077, + 0.0890497685824673, + 0.10329191777387858, + 0.08098887071831556, + 0.07533795842286253, + 0.05833746954564304, + 0.0793838266479648, + 0.08688829242588601, + 0.0969706752810349, + 0.06453608929155702, + 0.07297444980965605, + 0.07467752213179886, + 0.06876161570612399, + 0.07737673191642887, + 0.07838728287990261, + 0.08356511404006661, + 0.07290127649060264, + 0.08114133758574685, + 0.0796516604342582, + 0.067622429892809, + 0.07446163535553668, + 0.07289720003425901, + 0.0903222101997463, + 0.08272388237263524, + 0.08531223122140903, + 0.061193798274984536, + 0.08182488467946049, + 0.0820280370731087, + 0.06573273911534669, + 0.10120988399948398, + 0.0804424770835976, + 0.07475690678800091, + 0.08363843704525938, + 0.07845734835755658, + 0.06893150934263158, + 0.08576380062218485, + 0.07730658483399498, + 0.07245542708444594, + 0.07330341413751926, + 0.07837437900124619, + 0.07951751717546991, + 0.0786678346976338, + 0.0633068445147492, + 0.08169736738600025, + 0.07653293208144003, + 0.08372371911526678, + 0.06817741799678986, + 0.08432671606563762, + 0.09419212693872227, + 0.0831429437233733, + 0.08142037251611617, + 0.10029838952178911, + 0.09189345058439734, + 0.07541131355260408, + 0.07236379756330982, + 0.06810675194164915, + 0.0940301184716702, + 0.09424033393249086, + 0.09420329831842561, + 0.08317913394081702, + 0.07956338398723889, + 0.08156951380532042, + 0.08031953213543201, + 0.09156717163939819, + 0.08019588849434414, + 0.07753584099462962, + 0.08453675272209861, + 0.11221634662860783, + 0.08811731371688142, + 0.07050906480078005, + 0.06732239156753116, + 0.0831622417179293, + 0.08326635212175806, + 0.08413875949547102, + 0.06706035268600259, + 0.08016814378669615, + 0.07581720877662065, + 0.08172403356841433, + 0.0831355972034597, + 0.08295453515550456, + 0.08871426266570234, + 0.08991615484086382, + 0.07618318814376257, + 0.08661834372787659, + 0.07041064026856686, + 0.0763652599125074, + 0.07706717903790694, + 0.06277518382487368, + 0.06772605578915633, + 0.09265987417842167, + 0.09930767731995911, + 0.07896587031872104, + 0.09498405145071426, + 0.07604767260615722, + 0.08438004666840661, + 0.09973429340100062, + 0.07737318780822884, + 0.07623251948320432, + 0.1002335746661189, + 0.10433143124779991, + 0.07590271574760737, + 0.07069262021487972, + 0.11741544638328735, + 0.06219133325636609, + 0.07169848462834177, + 0.07417535888352386, + 0.11260165223536875, + 0.10458768483096251, + 0.09828348593448337, + 0.08094852404977748, + 0.07338175658299496, + 0.07707301425949417, + 0.08427138336723218, + 0.08800303984720717, + 0.07048669573022696, + 0.10660067700013416, + 0.0655543080429642, + 0.052951082288301435, + 0.10213533740264712, + 0.07322801244447821, + 0.07482664303844551, + 0.0700989220163211, + 0.07333156675978773, + 0.07912128986346825, + 0.07012903311117588, + 0.08354663236912274, + 0.07342204013095494, + 0.05331569704090838, + 0.059273297380302174, + 0.07029444595193762, + 0.06307826953951325, + 0.06707401873856327, + 0.08467367401128474, + 0.07811259959907389, + 0.11409007078425387, + 0.07772941958128636, + 0.0786831002493629, + 0.08940227882703722, + 0.06375568566710431, + 0.06379401764960706, + 0.06123700743527384, + 0.0822439476854724, + 0.08266148456584206, + 0.10433291175137652, + 0.06572363063217587, + 0.07792456764670826, + 0.07821626396344405, + 0.07917001958994486, + 0.07728314667448764, + 0.07344106933705206, + 0.07534207782364019, + 0.07769623665969218, + 0.09280331199470805, + 0.1212362434838904, + 0.08918609860957626, + 0.0909178705030026, + 0.08952330693914252, + 0.09521561513238638, + 0.07799538439027424, + 0.06139720126769126, + 0.06414508350173974, + 0.08616124985818925, + 0.06471911436335241, + 0.09498642936149468, + 0.1169926468309486, + 0.07397540973550461, + 0.08912299083527261, + 0.07136177931536666, + 0.08942434059058722, + 0.07174302683120001, + 0.08496579617763982, + 0.06864388553363603, + 0.06996467174737145, + 0.07732846609693753, + 0.09325325895950567, + 0.09637574016168761, + 0.06271894242253954, + 0.09386001880826082, + 0.10032360014989201, + 0.08811850635763523, + 0.05994741915130772, + 0.09450167893499903, + 0.056574338228903065, + 0.09358439883113141, + 0.08966865671780895, + 0.08022630127152297, + 0.08466313365320323, + 0.07532375348434528, + 0.08590099790538774, + 0.06726430269213406, + 0.07518550306274628, + 0.08780277176608353, + 0.0844508796904951, + 0.08687506416230602, + 0.06710087335006704, + 0.08823954134943467, + 0.09920812521133987, + 0.06167983072478759, + 0.07246085004271793, + 0.10021280437106875, + 0.07773424520847833, + 0.09841615067880097, + 0.07672058604425903, + 0.050384329770070416, + 0.0951351666117986, + 0.0784738220777513, + 0.0733181151277326, + 0.07623963528401924, + 0.07343776312297662, + 0.0829034070426589, + 0.08419862239673058, + 0.08487907802718957 + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgb(250, 231, 184)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 1.1068908827305246, + 0.20901787113858242, + 0.12391897396604577, + 0.14005970736235013, + 0.1176599304577686, + 0.0920778261198405, + 0.10295729826011792, + 0.09636598817927314, + 0.11229805345582299, + 0.12025613130394833, + 0.1161070905888281, + 0.09850124132266375, + 0.11388607077091163, + 0.09027253066648881, + 0.11401352785586474, + 0.1161963044924022, + 0.09360023544198286, + 0.12058951338199093, + 0.10819450127668763, + 0.11546957572969067, + 0.09913142141111343, + 0.09001886458226188, + 0.11824421822422225, + 0.10308072682412407, + 0.09566832206977556, + 0.14258732371267996, + 0.09697234601892568, + 0.1322654765816417, + 0.10491760326603475, + 0.11038236670456926, + 0.09342052743088372, + 0.11347775334438945, + 0.12258985899205707, + 0.12611849486959564, + 0.14210243809446443, + 0.1024368795569433, + 0.11606734436773558, + 0.13123000323245912, + 0.0963527836719415, + 0.09990509804213223, + 0.1305110469608444, + 0.15670267778822364, + 0.07923309041421056, + 0.1371320339818886, + 0.10220187702672218, + 0.12266175525492932, + 0.09185532996665867, + 0.12212262825356458, + 0.10324909099405744, + 0.13481517528540676, + 0.09340992317688507, + 0.10816478825311074, + 0.1293300084225618, + 0.12268282148175746, + 0.0903948377751875, + 0.09183827358573783, + 0.10502979876892365, + 0.11068271334278486, + 0.11060814575803567, + 0.11982466826205657, + 0.11436960580290462, + 0.1267004049748447, + 0.09982126856901123, + 0.09912945580196511, + 0.12228497332512181, + 0.10126201847981109, + 0.10647917027034205, + 0.10037609991951704, + 0.11426083896007946, + 0.08806005199837234, + 0.10415200675373418, + 0.13060736090187575, + 0.1063851962457175, + 0.11575211245366494, + 0.12007389471856655, + 0.12772951373552854, + 0.12240260333988282, + 0.11831062944702465, + 0.1041331483457981, + 0.15704907094680362, + 0.09133918233890401, + 0.11798986649480729, + 0.10394383736687314, + 0.10723654939511994, + 0.11673759938290465, + 0.11815401932482882, + 0.10159946758005423, + 0.11455127351419736, + 0.13225626570234333, + 0.0953013184776792, + 0.11363554582253199, + 0.12391749349102188, + 0.09315401562190793, + 0.13105741592260678, + 0.12136792802315156, + 0.09838011338411044, + 0.11609923709293891, + 0.12162379806370988, + 0.08146743574334057, + 0.12277768738299875, + 0.11046218002198718, + 0.14732958043006503, + 0.10284129099290769, + 0.10632366175852079, + 0.09739373785900465, + 0.12914294167007412, + 0.0848717234171679, + 0.18051485250706215, + 0.10447977578866299, + 0.09432787929854528, + 0.12107475927148752, + 0.09369536804848666, + 0.1236420326658155, + 0.1298532799929034, + 0.12252272827802738, + 0.11079787487979872, + 0.10916582378232646, + 0.09638344548028566, + 0.1234897547332009, + 0.11826552374530655, + 0.0899235184698062, + 0.13862970601330485, + 0.11553164956997813, + 0.1396629244898823, + 0.1084358350800827, + 0.12732430681918452, + 0.11511129621998244, + 0.10308400861596399, + 0.12419047466413995, + 0.10435867887067055, + 0.10558713904644366, + 0.11392870999491655, + 0.11086134655440424, + 0.10973480909145282, + 0.127681413029942, + 0.164809443870942, + 0.10325106491587407, + 0.109087992824523, + 0.10762503061299378, + 0.133061814394393, + 0.1212801295452964, + 0.09024742607193419, + 0.09903214598567414, + 0.08721462293327732, + 0.12509123664759494, + 0.0851767869551536, + 0.11406805333387428, + 0.09373295161176286, + 0.11095802298690707, + 0.11060800285993286, + 0.12703083039033355, + 0.09171188388832928, + 0.10747507150436644, + 0.11683314518211832, + 0.10879273202017535, + 0.10822415099910845, + 0.16170001853922697, + 0.09136687541154326, + 0.10642974893554304, + 0.11159114993432405, + 0.120289552742426, + 0.11987651884041278, + 0.08985010044009396, + 0.09494072399344633, + 0.11779093652044308, + 0.08625718251701993, + 0.10574520030360249, + 0.10365672272736841, + 0.11537281365895825, + 0.1485189649926291, + 0.14949768757348875, + 0.12225816177722383, + 0.14080004321819642, + 0.1341263397951058, + 0.10479856502021645, + 0.07762767656639095, + 0.11682233156976833, + 0.083011705100323, + 0.12273164213967544, + 0.11995153702370329, + 0.0992549457510415, + 0.09345423615704743, + 0.10381081802486408, + 0.15238210282843023, + 0.11610654359257176, + 0.08214557667375456, + 0.09713548648447708, + 0.09184858247883035, + 0.10365044928835544, + 0.134306939492922, + 0.13543798956784922, + 0.10655782633419869, + 0.08884608884754609, + 0.12344134648767525, + 0.11541879061809503, + 0.10672653467566312, + 0.08801286954245517, + 0.11859415345992406, + 0.09808866005520867, + 0.088591186494652, + 0.11954285655730744, + 0.11662551236932953, + 0.1079731733360156, + 0.09682861501170462, + 0.1209060666940927, + 0.10700987569571661, + 0.09548646344492395, + 0.13843699280062402, + 0.10945109927922037, + 0.1012141840451207, + 0.1333071832178882, + 0.11051232345627646, + 0.09118623936784978, + 0.10998785251294216, + 0.12915456827772462, + 0.15481374936224598, + 0.10183952304596393, + 0.1051927999576256, + 0.08939633760462251, + 0.1029085165078158, + 0.11358787133402481, + 0.13135670102285982, + 0.1204546458170873, + 0.10413042852703469, + 0.09699062754620288, + 0.11599489520569861, + 0.12217024063744612, + 0.10718325907816181, + 0.10454695469799397, + 0.11074621323564934, + 0.11546940002493877, + 0.10324755591689103, + 0.10341885972437556, + 0.1169781376218217, + 0.10021430097966963, + 0.13750161907251762, + 0.1073298587105013, + 0.14352111984129648, + 0.12018726347640434, + 0.10091560794342148, + 0.12441028340556906, + 0.10129179675387427, + 0.11233704824972258, + 0.12476423739850023, + 0.10781678655040429, + 0.09191745734734655, + 0.14134249468944315, + 0.08541168658234494, + 0.09871169055861415, + 0.11697654888168742, + 0.13117729638304085, + 0.1158751905202803, + 0.09906456217847821, + 0.09505380595940831, + 0.09934378490588597, + 0.11056121276493065, + 0.12202057696576168, + 0.08854845776749419, + 0.10173903267170534, + 0.11418964849017606, + 0.10477155918064432, + 0.10130166181321171, + 0.13104421171939257, + 0.13529603533787377, + 0.11276094075693893, + 0.10413093273280846, + 0.10455464039721542, + 0.09977515048168256, + 0.10135580715149105, + 0.11928867472477421, + 0.11035482223664546, + 0.14783856661743125, + 0.11053991441824948, + 0.12918938295363463, + 0.117078104662285, + 0.09026949929488164, + 0.12510096864678558, + 0.09692505680878016, + 0.11413919203036876, + 0.09716580854926758, + 0.1025742493817423, + 0.134090959384316, + 0.15694471307577906, + 0.10307068839389935, + 0.11244155467441302, + 0.12066509557785159, + 0.11544183812667051, + 0.08855153267858007, + 0.13449289272320963, + 0.12326196886239783, + 0.13133272209637076, + 0.1286068970007908, + 0.12501621285494285, + 0.09811015153289118, + 0.09802315732970265, + 0.11451965468464542, + 0.10452170410602776, + 0.10264048002399294, + 0.10807506719424692, + 0.2185900381544209, + 0.11098080160504968, + 0.10351212405830974, + 0.14456094305316738, + 0.1268980970157425, + 0.1228599663313298, + 0.15722213904467675, + 0.11800600797637617, + 0.08700915090707645, + 0.11304179629224244, + 0.0897256873280984, + 0.09350814233839068, + 0.12471364994439245, + 0.10942946483992663, + 0.11275684113158663, + 0.098230921109903, + 0.08828569414177387, + 0.10650464649444139, + 0.11243949723842464, + 0.1321358614775958, + 0.10700768678679196, + 0.10201292020068017, + 0.15135755549397345, + 0.12557620994315213, + 0.09609376818695135, + 0.12411473777965523, + 0.12318252400781675, + 0.12195834502892722, + 0.12617594586808514, + 0.0959591441026108, + 0.1308394874228688, + 0.09128477491276601, + 0.09041296433153738, + 0.11411477773411743, + 0.10565716147721765, + 0.10847823875514934, + 0.15312438013870136, + 0.12204392249675448, + 0.12625879578301555, + 0.10683858244485206, + 0.10089802935362191, + 0.10429582261948184, + 0.12020230671084356, + 0.09933381341380951, + 0.09345324314054346, + 0.12989150035378697, + 0.1115381349253167, + 0.11031217188907205, + 0.09421817361420726, + 0.10688499472207524, + 0.10442623868377657, + 0.10947127336004182, + 0.10791646663611985, + 0.1131991229519068, + 0.09205296577656925, + 0.12137402675673838, + 0.1152368416070933, + 0.1285286884916814, + 0.14012089331924527, + 0.13229945790393355, + 0.1290731988148938, + 0.10130814738459006, + 0.14482803543319858, + 0.08792502508894795, + 0.11550462064994309, + 0.10175625411346483, + 0.1375983667147597, + 0.12653775363485212, + 0.11634743999609912, + 0.13558157008622213, + 0.10529448292843477, + 0.12926793913889173, + 0.11661523128357458, + 0.12489191182792582, + 0.10123819151150953, + 0.1443472435064362, + 0.10801113549509778, + 0.10855108044871768, + 0.09331003457454677, + 0.11506018354712012, + 0.09681933979136527, + 0.14185687358488813, + 0.09808059810804326, + 0.10093335748726877, + 0.0947566744964143, + 0.10604280702182675, + 0.10131782462988216, + 0.11979827563222967, + 0.12534173554493838, + 0.11298690708630536, + 0.11688175351447892, + 0.09487464155222779, + 0.1143373353913623, + 0.13327188535717252, + 0.08946372464373666, + 0.10265776447448145, + 0.1422491618880327, + 0.11594543633517919, + 0.09656667803034324, + 0.11090015062626651, + 0.13050451508476926, + 0.10405799072617515, + 0.09917145567081052, + 0.14191287952528653, + 0.09562111188437009, + 0.10522124368218773, + 0.10687466294437352, + 0.10690728349012844, + 0.11315468581276132, + 0.10186733158005769, + 0.09196345322121151, + 0.09437813456562187, + 0.1275419411402059, + 0.0962247048588283, + 0.10959214201591574, + 0.11495343934046261, + 0.1322456127156202, + 0.10586105384743037, + 0.1354957299537019, + 0.13908629888919288, + 0.13868620863857392, + 0.08955852119493396, + 0.09145910043127897, + 0.10872057525347611, + 0.10224354534988805, + 0.1249343574300764, + 0.11749433499697835, + 0.09321191126284996, + 0.10791254749763408, + 0.16080147707099718, + 0.09836758507299913, + 0.11917013256608515, + 0.0986701922528323, + 0.10239639236353913, + 0.08773442353756264, + 0.1350730103843877, + 0.11666774220857577, + 0.10429142212005538, + 0.09932684722280716, + 0.07964578334527929, + 0.08779148038545052, + 0.10339901646074111, + 0.07966627783972217, + 0.08426761987037522, + 0.1172359984204746, + 0.10955800162616704, + 0.11563065089827744, + 0.14100671351916913, + 0.1297133423555564, + 0.13045748835753454, + 0.11665204625704256, + 0.11303761474055771, + 0.11436014786660534, + 0.09796019898521863, + 0.10027816589798147, + 0.141628725602052, + 0.10773973399889859, + 0.13627812609599696, + 0.12658940044621889, + 0.11500528880113448, + 0.09553176741478482, + 0.13045358219926606, + 0.10630774512823013, + 0.09837808313245382, + 0.11935944802019928, + 0.10804974108408423, + 0.10601185559505442, + 0.11601230392229367, + 0.09926450876249164, + 0.13422353122245936, + 0.12276028619909095, + 0.11147121758422945, + 0.11247848708110522, + 0.11299725452617712, + 0.142539473642951, + 0.09541418377585524, + 0.11775587774674585, + 0.12459169940533131, + 0.12265705873936998, + 0.08619147179728376, + 0.09711105792490575, + 0.1208597281278105, + 0.1667992047369041, + 0.10649583244689502, + 0.09697394683366518, + 0.0898886014472049, + 0.1262380322866216, + 0.10609115503134273, + 0.1502087128662385, + 0.13650169299312562, + 0.10017206356006965, + 0.11819289254772786, + 0.10522887746988296, + 0.11882815821162743, + 0.12644212073917124, + 0.1300670551567691, + 0.12230550787589013, + 0.11261000815667596, + 0.09197004766274557, + 0.1067935740194101, + 0.1144273693106989, + 0.09440611764370938, + 0.1352913565692707, + 0.09106079231654532, + 0.0920540696310716, + 0.11162834124469215, + 0.11981968907000085, + 0.10612663811533946, + 0.10921002107027127, + 0.09194687418774952, + 0.1089985157139631, + 0.09033485297694176, + 0.08756145062698041, + 0.09123522360558188, + 0.11602362640833619, + 0.10422276556365005, + 0.10340005107757574, + 0.15804875283366093, + 0.14463276499980923, + 0.09835506940681922, + 0.1150429564262036, + 0.08925764017560273, + 0.11911563148630094, + 0.09265283353146475, + 0.12279446600703393, + 0.10563488246461056, + 0.15460263916088557, + 0.11807477828903927, + 0.12758357740320644, + 0.11930735659287842, + 0.12143084407618815, + 0.11168613270524333, + 0.13137631130826086, + 0.11545857564696721, + 0.09030948725952863, + 0.10160135101044125, + 0.15899328989846898, + 0.0936221396762135, + 0.13155292931055393, + 0.1222766200104572, + 0.1233784786744145, + 0.10266435688055987, + 0.11947049211090593, + 0.13092386117215515, + 0.12159861170786662, + 0.1012881169842789, + 0.09173441493103714, + 0.10426286060996376, + 0.08114977084695789, + 0.1132967626558266, + 0.09351512474918518, + 0.08388462555306873, + 0.1354759797077308, + 0.10550904997890351, + 0.1227026302161411, + 0.08435041894668044, + 0.09671112848606231, + 0.10720232822503643, + 0.10525502831928299, + 0.0912385548371543, + 0.11549655690702279, + 0.09611159642282037, + 0.10657934489479998, + 0.15923396331153009, + 0.11718147580048119, + 0.1376196040318028, + 0.12264073852542785, + 0.11230217594435167, + 0.11149742706148581, + 0.08971609797752678, + 0.09878562033921647, + 0.09327412232384133, + 0.09328122920525996, + 0.10578811668161656, + 0.09670020226994776, + 0.11173024288082946, + 0.10989533336017158, + 0.12457685775784651, + 0.10100524445602159, + 0.09254303588186552, + 0.147271457410475, + 0.12482500193362402, + 0.10041929278636409, + 0.1062404864839439, + 0.0859030561884149, + 0.120736770207277, + 0.1265571595694285, + 0.11693298861025536, + 0.15128899194718676, + 0.11003468260321536, + 0.1053286467781873, + 0.10432063881646876, + 0.10348407868009543, + 0.11313777818764005, + 0.09720968005309144, + 0.1237104257746751, + 0.12706524421888163, + 0.09124796733665622, + 0.14439471724504055, + 0.10557492212491987, + 0.10482391767541839, + 0.10040852821834959, + 0.10897148521860617, + 0.13296231439570744, + 0.10149068453988082, + 0.09983082112897029, + 0.07032814998104103, + 0.1091185830667103, + 0.14175941249259236, + 0.1228563019160972, + 0.11463243848523219, + 0.10707116666368384, + 0.13319025732732728, + 0.120636170269932, + 0.12400849058907108, + 0.08624627382522695, + 0.10750079415634549, + 0.09097419235524885, + 0.12489374475109047, + 0.1271794400323067, + 0.11714441172900668, + 0.1068790635191712, + 0.0917320068088052, + 0.09980298315983559, + 0.1259141570256282, + 0.12146040067329436, + 0.11476389806463448, + 0.1196417196004792, + 0.11565890893312974, + 0.12319446616032594, + 0.09767081916367887, + 0.11359092087432533, + 0.10077909332319905, + 0.09626246025347959, + 0.08283007764403068, + 0.16011095809101256, + 0.13204936337108017, + 0.1332656137791244, + 0.08618684244301962, + 0.15933516046823026, + 0.10650061827865999, + 0.10411519466072526, + 0.1309335695768494, + 0.13819384206440175, + 0.09853902636627608, + 0.1041973828142749, + 0.1341834720358706, + 0.10297551595706593, + 0.14158787125202185, + 0.1470241918091762, + 0.0938273314985402, + 0.12063166434853154, + 0.09376804433058869, + 0.10515219760054173, + 0.09647928112339034, + 0.09901043627957895, + 0.11850925076741879, + 0.11885707722479169, + 0.127328560655465, + 0.12760888429012868, + 0.11271608723798193, + 0.10932171884004531, + 0.11405686344463267, + 0.08390567521044544, + 0.11082710860645904, + 0.12116628940982029, + 0.10423725336839193, + 0.09081499234280689, + 0.10679846454679598, + 0.1245706476914276, + 0.10044285989768378, + 0.10999466424745405, + 0.11213860595308754, + 0.12633529025908874, + 0.13657379643579715, + 0.10561193507792466, + 0.13206946984573736, + 0.11096680271303556, + 0.12841405714496487, + 0.12866059553213277, + 0.09593604585694733, + 0.10078849473659439, + 0.10627784516685893, + 0.11303901567463018, + 0.11594805335847326, + 0.12261289752415776, + 0.09792743161481479, + 0.08447060284166054, + 0.0961880804621147, + 0.09347973520265736, + 0.10218218845506845, + 0.11747987820219322, + 0.10635427123326607, + 0.09857137673398617, + 0.12638865146126504, + 0.10466603161724226, + 0.09138349577821785, + 0.1391181999248328, + 0.11448059030937491, + 0.143376555149379, + 0.11992496693163013, + 0.09616806682573871, + 0.12337762446299698, + 0.09417352971532499, + 0.09871810945500326, + 0.12402840266797231, + 0.08541951145565235, + 0.1098402200269409, + 0.09835500927832967, + 0.09398861259593032, + 0.12373069312735233, + 0.11224771766212777, + 0.08994139359363194, + 0.10475519992151655, + 0.11062426524645891, + 0.14098097758593206, + 0.09917158829587028, + 0.100350309847201, + 0.10922892662725066, + 0.13410982246570355, + 0.12321689426682733, + 0.09701493667882548, + 0.14157251875700472, + 0.11051929896645832, + 0.13442085568410586, + 0.12712725899954835, + 0.13162077422758472, + 0.10163504627824912, + 0.10458757201399305, + 0.09795776520773296, + 0.10703440193530006, + 0.10645425481626446, + 0.11279650888948108, + 0.1270586386326464, + 0.13975605328091772, + 0.11166611868908508, + 0.09776017041762061, + 0.1031092257902521, + 0.11731618981202302, + 0.12876937160367086, + 0.11638171874125888, + 0.10202549357981865, + 0.12637795518737088, + 0.11636462583033082, + 0.1288727953041962, + 0.0902510826908436, + 0.08853037238072482, + 0.1241689473878221, + 0.12286706466748797, + 0.09499146119883806, + 0.1052420281530076, + 0.11093636631841543, + 0.09114112285344264, + 0.13367352513166106, + 0.1442202023604478, + 0.1282020888568119, + 0.12171827195368466, + 0.1166697641919844, + 0.10168706730111021, + 0.0988643886259021, + 0.08572333432284984, + 0.10684287354393593, + 0.10253569354815677, + 0.11088196241397162, + 0.14264152669984784, + 0.10995047153923383, + 0.11629071446448572, + 0.11010371528645145, + 0.11587423385292774, + 0.10117112550314536, + 0.09165544436389346, + 0.09748606051907814, + 0.10124786027155686, + 0.1141990405385166, + 0.14318173902556708, + 0.11850401372588053, + 0.12219172646942818, + 0.10075677954956709, + 0.1055401495201731, + 0.11265043119454421, + 0.1323608611959669, + 0.11748795685882871, + 0.1012984700773516, + 0.09888127247973581, + 0.11897078260686011, + 0.12020696757277595, + 0.12505663774728384, + 0.09389423206383274, + 0.11266439805814049, + 0.09669376051098359, + 0.08637848824293702, + 0.10012327287673792, + 0.1327053423255219, + 0.1202342405495923, + 0.11960392027451784, + 0.10398749096200618, + 0.09584130955193083, + 0.1313219020225265, + 0.10515296563884666, + 0.12117548478787356, + 0.15740753705245164, + 0.11371708298122804, + 0.09997658816866721, + 0.11607739589303331, + 0.1162697706484524, + 0.12031292086074129, + 0.1046159711958808, + 0.12433018340285562, + 0.1291647003426886, + 0.12261538336613452, + 0.09654578124778772, + 0.10658629906606544, + 0.13933210487787728, + 0.10412365935677835, + 0.12959763194802787, + 0.1385442526098709, + 0.12007294719101655, + 0.10538894149703895, + 0.11752694233701143, + 0.10255069184022493, + 0.08297709454689345, + 0.11841968103649406, + 0.12628503665976454, + 0.11647802021839991, + 0.10016026608067473, + 0.11507969003346356, + 0.09898091079205636, + 0.10744782080339922, + 0.09996217261650166, + 0.11554930303256113, + 0.08443483123090267, + 0.1402669153936989, + 0.08810085274811778, + 0.09807914925050885, + 0.10973559078554927, + 0.09916589427285671, + 0.1228444359198599, + 0.1359252750337536, + 0.14233241019326898, + 0.0866560822610504, + 0.13056814390444488, + 0.11622167377709323, + 0.09213833205953387, + 0.13142554464234446, + 0.09703732131002306, + 0.11798334712784844, + 0.13010778560496725, + 0.1052389996982234, + 0.1418172833568581, + 0.14410875395140063, + 0.10225923934701536, + 0.1292890507274553, + 0.10259318165482843, + 0.11566568567881196, + 0.11418916361841919, + 0.10655098653344719, + 0.11689736423043573, + 0.09358486864517553, + 0.11263631898835688, + 0.11634085566826147, + 0.12134456847626235, + 0.10174518439993199, + 0.10125295378344445, + 0.08717965083741865, + 0.11587905035201711, + 0.11026179681745238, + 0.09210027429814759, + 0.09942117706881073, + 0.12039353316820044, + 0.10817303503370802, + 0.1380705880825703, + 0.13546836747096647, + 0.10750227870681305, + 0.11758170530860965, + 0.13895396799058626, + 0.16608391256192134, + 0.14332322158304803, + 0.147721798784936, + 0.16690301140077063, + 0.10111248486870743, + 0.14571484059102086, + 0.15978720425533147, + 0.10681834187451815, + 0.09994285728084323, + 0.11944578178552023, + 0.1421284377352494, + 0.09746476345445212, + 0.10485015921064499, + 0.0976793056466951, + 0.10843024300389195, + 0.11178177424637557, + 0.12299905372876, + 0.11156841226963647, + 0.09884739094153057, + 0.09583171909581792, + 0.09483419111502671, + 0.12433840547557488, + 0.1004072939197732, + 0.1128868361979537, + 0.1022739365374693, + 0.12125439346917355, + 0.10663747658667727, + 0.11708502423178471, + 0.1198700183668587, + 0.12498444302047175, + 0.09151699126173564, + 0.13142875679675753, + 0.1225780108692634, + 0.09308636340257653, + 0.18152556687550941, + 0.09843484176280767, + 0.11103434720600422, + 0.11198509977367983, + 0.08848344518417808, + 0.11117331392952803, + 0.11667291746219303, + 0.10914180843069568, + 0.12590856616775614, + 0.09436794784295319, + 0.12362958573437259, + 0.10942842809546394, + 0.14475490356792386, + 0.09877495614529799, + 0.1324808932098535, + 0.12739195940551565, + 0.12396780286286614, + 0.10277054898977334, + 0.09839224799754072, + 0.14044888165484737, + 0.1341097754897827, + 0.11275291948179218, + 0.12838302268464982, + 0.1254222032936939, + 0.08614373965549552, + 0.08132983208180751, + 0.09435921019865255, + 0.08465950527629987, + 0.11117162466590924, + 0.10358579101858488, + 0.10101388394739252, + 0.1005986224803624, + 0.10641681408598072, + 0.10954491626430064, + 0.11858429556949517, + 0.10383496463514785, + 0.09190043299358416, + 0.08988256866430278, + 0.0958329624086353, + 0.11342538831357811, + 0.1162380304536144, + 0.13989440412694823, + 0.1031919769141774, + 0.10219358542956017, + 0.08512938818967075, + 0.10793610068192044, + 0.12758706676684922, + 0.1505689570119666, + 0.09925476125865207, + 0.10730933638478216, + 0.1445089396796475, + 0.09642359161876109, + 0.11695559008749981, + 0.12129681765797755, + 0.10719759452108771, + 0.1081436289781793, + 0.08691911083358343, + 0.1514403142110117, + 0.08549485053864603, + 0.131492994450105, + 0.12484863246397478, + 0.10397137680233183, + 0.13306633908308652, + 0.12302855946510212, + 0.10630439891629945, + 0.09709031490484579, + 0.09743257388887484, + 0.1244506376533652, + 0.1031633622452832, + 0.09406338459071205, + 0.08921920734204807, + 0.11443371517878854, + 0.10780657568623093, + 0.0908917232440767, + 0.14383584715901604, + 0.1095379799842071, + 0.11851663249278416, + 0.07528556365752329, + 0.1426748307638476, + 0.11710673317908311, + 0.10534520979531874, + 0.10799932810029392, + 0.10156633896581231, + 0.14771435061858057, + 0.10780825158302512, + 0.1171403542497037, + 0.11802186615281467, + 0.10744952605594998, + 0.12889161954976455, + 0.10577744075742229, + 0.11242943644753882, + 0.07768443384497017, + 0.1191102431313719, + 0.10322942718507215, + 0.0993629965536601, + 0.1106278635147308, + 0.1356385026408261, + 0.09850187787568444, + 0.10971794628974277, + 0.13028259608434248, + 0.10109744295053463, + 0.12126460314702067, + 0.0974762910515909, + 0.09181754020657447, + 0.10291316830537041, + 0.1209883975366048, + 0.11370412487731082, + 0.12700796740681305, + 0.10667172292224335, + 0.13167505212296002, + 0.11060907695438471, + 0.11946261805065453, + 0.12299355859370852, + 0.1251307324540219, + 0.09533245634432477, + 0.11132549455859068, + 0.1188158563182915, + 0.10386717638566026, + 0.12280795217627662, + 0.10397135471469508, + 0.13113573792962946, + 0.11109083553970583, + 0.10566395649392064, + 0.14224442729242515, + 0.09861003520025452, + 0.12161266370870166, + 0.1393209121107751, + 0.10152617289036539, + 0.11919350661221723, + 0.11989096361029276, + 0.09037044372027955, + 0.128095677449742, + 0.11968595460528335, + 0.12325712015338192, + 0.14129024076319405, + 0.09932365653105597, + 0.11486276137603263, + 0.12378898638735464, + 0.12227093303015116, + 0.10842617049408629, + 0.1106269344294754, + 0.09834340597353675, + 0.10174037906751825, + 0.1487099396275481, + 0.14468279517984445, + 0.09191917671994378, + 0.121572666102686, + 0.12562930787357682, + 0.11447328047224677, + 0.10808985304211818, + 0.1337137283421717, + 0.11640348244136768, + 0.12675757265042195, + 0.11650881662805405, + 0.10965275396826446, + 0.09207324046255264, + 0.10216181185094537, + 0.11014438119906478, + 0.1128840732223037, + 0.12190202312692344, + 0.12361151162753478, + 0.1175522578665673, + 0.11199303069963831, + 0.09549037128134723, + 0.09226523003590768, + 0.09868804586348644, + 0.10918880967271322, + 0.14669844271345203, + 0.1061185379824962, + 0.10832670877728465, + 0.10724608348211195, + 0.1018611323612757, + 0.10030015576374492, + 0.12460864964780984, + 0.09081175004124281, + 0.1370919031582, + 0.18468141471123278, + 0.13196503425068404, + 0.1283501210716807, + 0.11588627468739628, + 0.10640251652881895, + 0.1088905295160214, + 0.09803997322596525, + 0.12298369353455964, + 0.09065225020056239, + 0.1068937966738822, + 0.1826528036098765, + 0.11462079779097123, + 0.14433631987594342, + 0.16582693479170102, + 0.11634919143727204, + 0.1415100164927109, + 0.0982767298798692, + 0.09814419890100232, + 0.09760750385657092, + 0.1217279554516101, + 0.09844738894109269, + 0.10439174610184754, + 0.12193609864363493, + 0.11360105903244681, + 0.12206189858836468, + 0.10439336129529618, + 0.11178055490548088, + 0.08947552594786608, + 0.11311170670397247, + 0.09112826446754677, + 0.10623114231107292, + 0.10929416618682224, + 0.0979877562696327, + 0.10753919406245442, + 0.10797077586828942, + 0.13639225071256622, + 0.1220080382421621, + 0.09345778725353768, + 0.1092957691975473, + 0.11064828141880577, + 0.11375320306467714, + 0.11235531935564068, + 0.13715479013507306, + 0.10244005061858963, + 0.12984988716108997, + 0.11424695875925253, + 0.09977036257629268, + 0.10972512875847897, + 0.10104021942022509, + 0.08751036651962783, + 0.08699616781415426, + 0.0955981017572752, + 0.11415359317314207, + 0.11392278219321059, + 0.09878306915184777, + 0.10965360230282464, + 0.13050863951466005, + 0.09631876504422109, + 0.11746572340485581, + 0.09864957191108767, + 0.09894341030327795, + 0.1233873571926936, + 0.0991879826694588, + 0.10700785364660914, + 0.11358679243749571, + 0.15682778801976582, + 0.13036920426020007, + 0.12796295700020044, + 0.1031307400846136, + 0.1199740816832794, + 0.11494781800363606, + 0.09565866222748963, + 0.11677758201276722, + 0.14698829275487582, + 0.1070711424626346, + 0.11749413158400562, + 0.1158837255034783, + 0.10776808624427678, + 0.12191919438526777, + 0.09730165512206787, + 0.10192986157146604, + 0.09009605320093862, + 0.12532572360564986, + 0.10602498133496688, + 0.09011142272413458, + 0.10527098779162933, + 0.11172399033298328, + 0.08239491589551388, + 0.12435161475260754, + 0.12206171163842877, + 0.12699150514032712, + 0.11404234576815377, + 0.08341105275785281, + 0.1255343670268905, + 0.1607175144136266, + 0.1467629325155192, + 0.1045272740720964, + 0.16416210015379032, + 0.11256252652154461, + 0.10688833429563822, + 0.11439056884146255, + 0.0888074154405151, + 0.09491067693900175, + 0.12951698467572592, + 0.10491085221064751, + 0.1201687858109368, + 0.09165428545396465, + 0.11065400506613629, + 0.10819804375512321, + 0.1248810630888452, + 0.13352814370224592, + 0.14190494533454798, + 0.10027147747757871, + 0.11801181426921879, + 0.09851793211877108, + 0.12584072050450884, + 0.10583390906766546, + 0.11997559070990436, + 0.11456050737772758, + 0.11915634080071172, + 0.10263820355266115, + 0.12339625429445221, + 0.10287613238368287, + 0.09863555560390518, + 0.10453829567819818, + 0.10542369325120186, + 0.1114060492553071, + 0.10063778450583116, + 0.1016199789424976, + 0.11354117768085734, + 0.1016805531030259, + 0.0954474486997055, + 0.10190358163455282, + 0.15697239916505873, + 0.11195555223265923, + 0.10008321417971121, + 0.09032954218396734, + 0.12832737031627267, + 0.10031086448451476, + 0.09607282739871054, + 0.12326869951118205, + 0.08281387633010795, + 0.09289089993882799, + 0.09888730851166704, + 0.1473375117540928, + 0.10452973740902467, + 0.1371270217042871, + 0.15032672104939443, + 0.11569398906465102, + 0.11162539270170306, + 0.0903888240700675, + 0.10047576388069761, + 0.12149365786142581, + 0.11350566644502863, + 0.10027434409793885, + 0.1012176302599843, + 0.13441188363481205, + 0.11227079548255463, + 0.09235430060884883, + 0.08710481937984395, + 0.12670892373765186, + 0.14708288283131227, + 0.10498647900591819, + 0.13575806251589734, + 0.14101751461474657, + 0.14151819672481494, + 0.09909357188447455, + 0.11460201189779809, + 0.08898932453961218, + 0.1159848782722094, + 0.09480994493255777, + 0.11200083998079771, + 0.11713325388997581, + 0.09412186855326624, + 0.11989299520974686, + 0.12912788294259683, + 0.10343789316831248, + 0.10996091066552088, + 0.09986082422013258, + 0.11241805097743357, + 0.14532327973798148, + 0.13500547387229206, + 0.10643190687129615, + 0.0971859530530374, + 0.09630318014244384, + 0.10373491736092882, + 0.11054161571015646, + 0.13041832035767822, + 0.1255612050358192, + 0.10210118197924813, + 0.09649296677060254, + 0.1521645082735675, + 0.10658717727872333, + 0.12386452188103801, + 0.09768414521270519, + 0.11578119750395978, + 0.13550455416599788, + 0.13958163444138733, + 0.12139097613900264, + 0.15082974772678423, + 0.0879213732497754, + 0.10843938997045051, + 0.1031445459710952, + 0.14005025112741754, + 0.14546038056191182, + 0.11686156237676343, + 0.0877632781605115, + 0.11425059056755923, + 0.11144836399156774, + 0.14286198141364725, + 0.11493421669506464, + 0.11318489631115582, + 0.10682334134651128, + 0.1281099474917621, + 0.09311588423464058, + 0.12507256590097182, + 0.13403897378356816, + 0.09465856639468592, + 0.10961338138057153, + 0.11669604496586344, + 0.1413373965964442, + 0.08620351758374675, + 0.09844507381794723, + 0.1170724811140812, + 0.10174889523285187, + 0.11640670424534645, + 0.11900683211179953, + 0.1159131705518592, + 0.15707958787547777, + 0.1458447034736938, + 0.1639524343846114, + 0.1282889488782827, + 0.120692565707973, + 0.10561094039532129, + 0.15437967641280098, + 0.14185972256969714, + 0.14817910902465853, + 0.10211754356195726, + 0.11154166409162268, + 0.09736560709438184, + 0.1245924079910371, + 0.09340165462495598, + 0.11078791356329053, + 0.08570040012518391, + 0.11187027784560676, + 0.10456334292191259, + 0.09600049066340277, + 0.14291807030542186, + 0.08994763225634053, + 0.10796306150963009, + 0.10580410245701856, + 0.07746248784246378, + 0.11892754630437895, + 0.12666659949952058, + 0.11267605390852993, + 0.1274742204725091, + 0.1258600023668763, + 0.12480721191735289, + 0.11819904724792123, + 0.1132049579270956, + 0.09899628157090536, + 0.11366856614889073, + 0.11823712334224525, + 0.10528647107103392, + 0.10899945054652548, + 0.10339327126119882, + 0.09974545773167157, + 0.09533028711929464, + 0.09434573775174422, + 0.1537972852472466, + 0.14316575826406636, + 0.10414427361859661, + 0.10974694777399832, + 0.10490183091997522, + 0.08981561980523094, + 0.11642316296032226, + 0.10068239810006274, + 0.10536339695501692, + 0.08924296283734882, + 0.095444808015198, + 0.0921237046828287, + 0.09449525772681851, + 0.09832588158033155, + 0.12080022054814199, + 0.10375446002673895, + 0.09664536127041415, + 0.10224011177147493, + 0.10842607850114286, + 0.1089925238707534, + 0.10505222688914503, + 0.11300742126983385, + 0.13070258925252692, + 0.12056065150992172, + 0.08382048778973099, + 0.1493715846883938, + 0.11252442081107598, + 0.1221159693135955, + 0.09977865518169973, + 0.09260622512857097, + 0.18145036290497385, + 0.10099999821627756, + 0.12761640714497688, + 0.11001186322401893, + 0.1324634509918655, + 0.10038725403312669, + 0.1250176159591704, + 0.11490291107730663, + 0.1013961838084524, + 0.10771389055917506, + 0.13476226926231527, + 0.09222993342694158, + 0.11664873570716403, + 0.14920650307810526, + 0.10257778280171954, + 0.12532167436820127, + 0.08099633561623398, + 0.09183608629489719, + 0.12584972491972501, + 0.12609920474557978, + 0.12907494201491473, + 0.115274973184504, + 0.16821297166456145, + 0.11886048741235651, + 0.10984970680448328, + 0.10073571630359193, + 0.10895121851801677, + 0.11787541724712687, + 0.09417584766700636, + 0.13286266337876057, + 0.09064227862254702, + 0.14570793909613491, + 0.11005035402485676, + 0.0982033612758034, + 0.09062451377411883, + 0.11627138891436775, + 0.11882336138222488, + 0.09634118376571166, + 0.13271168862652413, + 0.09504271988797677, + 0.12317451749713107, + 0.10067262469557095, + 0.10719751664981524, + 0.09450743474106281, + 0.09586878924830618, + 0.11691305668675807, + 0.10543592849828701, + 0.14409042776965095, + 0.11566302056424632, + 0.12008670371847714, + 0.11403922893745991, + 0.14767897123223922, + 0.10434620156664594, + 0.11945777772870447, + 0.10890929880863882, + 0.11088414596606327, + 0.13631899985612328, + 0.09475271078037838, + 0.12243031297602586, + 0.11589934914044726, + 0.0894800542742892, + 0.12429473963029473, + 0.1628919725631277, + 0.10987120896228383, + 0.13577300323255675, + 0.1078821863313244, + 0.13269346837568824, + 0.1823515330654194, + 0.11154527664323223, + 0.10159028745759602, + 0.12548042510162252, + 0.12049865213003352, + 0.10016504560181093, + 0.09179215828471225, + 0.11134420654271554, + 0.10684786129000219, + 0.10506584203015501, + 0.10907821999752333, + 0.11190555205583022, + 0.118476178751345, + 0.13698738634595095, + 0.10879074505802469, + 0.10751811128660685, + 0.12403835192876181, + 0.1173016845757143, + 0.11111652417086505, + 0.10687802394252367, + 0.12988446621151303, + 0.11891926916221333, + 0.11682384521576925, + 0.10880227383128271, + 0.12373332345928283, + 0.13233902671925685, + 0.09837369255269567, + 0.14874709961060106, + 0.10859211863231782, + 0.11691735046525933, + 0.11412135024267636, + 0.09724321756521243, + 0.16627667489458592, + 0.11517226264113349, + 0.10590674900846996, + 0.12931611211518682, + 0.10952116539306073, + 0.09267070349915614, + 0.13538953167836934, + 0.08643596450854081, + 0.1468445059343964, + 0.11136465494500966, + 0.11930303234311286, + 0.09766753008187148, + 0.12233904857359754, + 0.09505741473324246, + 0.11018707049432203, + 0.1234949746226398, + 0.12404623898697828, + 0.08904311155121691, + 0.13794616976398233, + 0.1175891427877159, + 0.10461328707036471, + 0.14170804473450593, + 0.1077728538468712, + 0.11539147687037597, + 0.10094166332840158, + 0.11109754502589658, + 0.08690341330459724, + 0.10625994728455786, + 0.10764840127134417, + 0.10983208419913498, + 0.12961520031738344, + 0.14972826494323513, + 0.15033553378530995, + 0.11114568788552308, + 0.12330374651831177, + 0.13330497332619323, + 0.12184237219046357, + 0.14104129283583758, + 0.14255037319999034, + 0.0926275707555871, + 0.11284246473252468, + 0.09717175418964384, + 0.09469660581588958, + 0.09938606076217978, + 0.09848554489496293, + 0.11003610794088875, + 0.10578867325882044, + 0.11781156142365029, + 0.10173367806466174, + 0.11156952657798207, + 0.11871764076160536, + 0.09365232578566705, + 0.10039946920846884, + 0.11152461928759985, + 0.10891770232993535, + 0.12046903008613154, + 0.19147580927322164, + 0.09528608839977773, + 0.13704925464646633, + 0.12762227037706603, + 0.10752836712292464, + 0.1209749311948433, + 0.11500615643528399, + 0.15446010736192617, + 0.10582708289234755, + 0.15062726268219842, + 0.1046465256133733, + 0.1088267050075203, + 0.10709461642691799, + 0.12030821434438557, + 0.10983985375416565, + 0.12476004173700729, + 0.09995112385625353, + 0.11468955713830589, + 0.08349977578117944, + 0.09950882792791912, + 0.09934756267478519, + 0.10224272920850463, + 0.10236739099853386, + 0.14471237339441792, + 0.0805944255414127, + 0.10273891916909783, + 0.10240920152615744, + 0.09881668924295611, + 0.10765060070474979, + 0.09161054190451799, + 0.1108177724922043, + 0.0961460049796572, + 0.1005333867544922, + 0.11563779838163606, + 0.08684074081906215, + 0.1003625128830742, + 0.10168219666636055, + 0.10582379146140283, + 0.14450341538021613, + 0.10996286283802711, + 0.10508213388481874, + 0.0909036543221299, + 0.11201155274446144, + 0.10044721957850909, + 0.1019602004254942, + 0.12562614071968234, + 0.10280122028833846, + 0.13750963158124363, + 0.14120606919766432, + 0.11585001228063051, + 0.10804816142727047, + 0.1016924565935246, + 0.10632691221252476, + 0.1095899953970862, + 0.09625517307982652, + 0.09943808390986587, + 0.11571111529348303, + 0.10441570518688151, + 0.09956418419955493, + 0.13309142516973269, + 0.08927150738246363, + 0.13341802538711028, + 0.11188261085496963, + 0.1040435921392071, + 0.10806415958130115, + 0.10171982761944608, + 0.1298426805117217, + 0.09781007640212815, + 0.09162243973051858, + 0.10635042439896712, + 0.11097491020824812, + 0.10060134236692043, + 0.10665951389817255, + 0.11119255536113205, + 0.10766741940124726, + 0.13307430390247285, + 0.0956582214686786, + 0.13352771426841112, + 0.13187328410772564, + 0.11178487314435256, + 0.1218078123239976, + 0.10718823161960431, + 0.10065044176850131, + 0.09255810971578292, + 0.10939148053769533, + 0.09454383405987186, + 0.14728534926488315, + 0.12096250580608278, + 0.09055052319723282, + 0.10478184655502804, + 0.11332129219473172, + 0.10480190841374429, + 0.11385217281614902, + 0.1074958188723049, + 0.10846391697620218, + 0.10961648117763498, + 0.10062251013396376, + 0.10447722647869195, + 0.1013885575751126, + 0.11318596231334192, + 0.11911882914299045, + 0.12613377978335766, + 0.13356863019976392, + 0.14692893548112168, + 0.1154136032667647, + 0.12482776367011585, + 0.11758006196401966, + 0.10770242441033315, + 0.12205141234031971, + 0.09106959054850272, + 0.11530952052104003, + 0.12043911637567105, + 0.09685393335522598, + 0.11184322334387684, + 0.09537259289170448, + 0.12713692619578126, + 0.09939295574689573, + 0.09788779442358185, + 0.1192826712705181, + 0.11789363028150873, + 0.10885955147525199, + 0.10355648576547635, + 0.09348540007961262, + 0.09575370082863775, + 0.10917567376089142, + 0.1310949018036759, + 0.0970253424585964, + 0.13289593178545525, + 0.10464840306653045, + 0.09839569645731126, + 0.09068755688810681, + 0.1392534220833217, + 0.08619498732875905, + 0.11741705200800301, + 0.10414179384958294, + 0.11124928090249446, + 0.13800046195604504, + 0.121311001816974, + 0.11399406688759905, + 0.11645647167276515, + 0.1213432193827061, + 0.12024802257158959, + 0.10527518454570747, + 0.10429779784731474, + 0.080902384482692, + 0.09861773536216434, + 0.10747878197537376, + 0.12291939031530878, + 0.10908013274592746, + 0.14464918458522577, + 0.11074605689768219, + 0.11175247751291656, + 0.09550568809509649, + 0.09793675476129615, + 0.11766380730525564, + 0.10417620006021545, + 0.1445679285613327, + 0.17913227287305378, + 0.0864118930804842, + 0.111501655578419, + 0.1456688146791101, + 0.11976522069730859, + 0.07905003860731026, + 0.11720402019228159, + 0.09134599492262198, + 0.1382998762543477, + 0.09496652829094662, + 0.12193658004375767, + 0.11743760959595895, + 0.08845773380868063, + 0.13281639279746088, + 0.1460149491195486, + 0.10142549995687754, + 0.11412710307118926, + 0.11418641253948236, + 0.11408946820680312, + 0.12522228900683643, + 0.12711788522087109, + 0.10377560127330136, + 0.10474870239757432, + 0.11938850199154338, + 0.11333450109776629, + 0.095425047422071, + 0.11565186391163798, + 0.12510727327104887, + 0.11115550898674517, + 0.08982294274752432, + 0.09766577879799133, + 0.11478663196109594, + 0.09321277757103101, + 0.09372826477358459, + 0.11578105465009425, + 0.10512031506805489, + 0.10699278542878966, + 0.12270650958009674, + 0.12282161470707484, + 0.10805214574701594, + 0.09462666055470036, + 0.11644928932169735, + 0.09354476332139094, + 0.0964218986139216, + 0.10369346727761053, + 0.12220775716942427, + 0.11343037266610193, + 0.10159723930437906, + 0.09756867587239755, + 0.10168239191100092, + 0.15821171916501403, + 0.11660669944216925, + 0.111341328349156, + 0.10723690369673991, + 0.08749886583571623, + 0.10039275817582896, + 0.12631608358575672, + 0.10805300367677431, + 0.11289523918717798, + 0.10046214173849233, + 0.08915601932338235, + 0.1150330995469213, + 0.10104940886781041, + 0.13653796594176637, + 0.11516565541680067, + 0.11012776623821074, + 0.1326341152208875, + 0.11348849465853376, + 0.1112996052820791, + 0.1297130030218393, + 0.1125990536067464, + 0.12301959249062598, + 0.13195915426005814, + 0.12706389444580854, + 0.10597550241878799, + 0.10931764202925388, + 0.1388278983915456, + 0.10575666816304083, + 0.1009144431463819, + 0.10328881840085719, + 0.11100811244547085, + 0.11101177465768873, + 0.08360906944895663, + 0.1161257169879861, + 0.11430461527852519, + 0.09961308415108702, + 0.11211890482108924, + 0.11061603889826362, + 0.11411188669167467, + 0.10891966607091597, + 0.07429173608744245, + 0.1266090057606641, + 0.1499194967194716, + 0.08698601840445824, + 0.11464905923849181, + 0.13725239438067435, + 0.10374196777317272, + 0.09854737258191455, + 0.1012098424358151, + 0.08452301514486149, + 0.11998083550396747, + 0.1134331300428535, + 0.10929824098469285, + 0.11218255595002183, + 0.09978271553238262, + 0.129752856802261, + 0.1353283312636753, + 0.10907827387547556, + 0.13948207344911426, + 0.13204737196328525, + 0.10545486661707919, + 0.11889249761755427, + 0.10466576304910193, + 0.1217811422572029, + 0.10604524143974017, + 0.08124907422000052, + 0.10878655229827153, + 0.10910684146865778, + 0.11404487463116994, + 0.1413865761495198, + 0.11125347603379891, + 0.11667209109970199, + 0.11725165168498274, + 0.09896495496983987, + 0.09265466643738952, + 0.12360809922439302, + 0.1057062533901667, + 0.09797341421135773, + 0.08837035734465559, + 0.11458582827284398, + 0.1128577491727693, + 0.11305102891826532, + 0.11658179700233522, + 0.12718608249574762, + 0.11054001297731421, + 0.12222962531924468, + 0.09991419388847687, + 0.1054405818141954, + 0.12845977812502327, + 0.0927200846415463, + 0.10707930716226993, + 0.11350329327229365, + 0.10110766276933697, + 0.0835559835055162, + 0.129047929203135, + 0.10661029722247706, + 0.08445934679204277, + 0.1271718584986909, + 0.10676946138585719, + 0.09345040961373802, + 0.09175786333135943, + 0.1308069106392978, + 0.11304782987894316, + 0.1131606840932615, + 0.17526183495012265, + 0.10734194911095392, + 0.10879906951534644, + 0.13459381950305832, + 0.15073751959356427, + 0.08503134203264352, + 0.09751539134150854, + 0.11696010368259471, + 0.10929820468050248, + 0.09070597783853364, + 0.11751133628700891, + 0.09659974025264778, + 0.12100017738635357, + 0.11458710828209998, + 0.1289399133971312, + 0.09387569057416849, + 0.11570895339113225, + 0.13854522143347042, + 0.09740045801546476, + 0.10207440739120023, + 0.07978289070803087, + 0.12239023683937592, + 0.13676917521334853, + 0.14880476692002317, + 0.10233170580560319, + 0.1001431823186416, + 0.10645328290046539, + 0.1542654450139161, + 0.11019634352290539, + 0.11385367678419168, + 0.11752318665296192, + 0.11283027642486852, + 0.12308645392565251, + 0.13383837143558247, + 0.13756761018017377, + 0.10333599899263478, + 0.13770537487727583, + 0.09744565798085077, + 0.1157266086430002, + 0.11874929587562985, + 0.09025171528931185, + 0.10672913108220411, + 0.1344126886368384, + 0.09705048631533014, + 0.11099523644088735, + 0.10798534939967948, + 0.083327163916354, + 0.09070641114888524, + 0.09625849606483465, + 0.12466060736429808, + 0.10852353082746413, + 0.07676334769920129, + 0.09790381152808485, + 0.09143708592734023, + 0.13359203707553832, + 0.11415958105820685, + 0.1120600148387066, + 0.13275842955719108, + 0.08778104515557124, + 0.10503653177500026, + 0.1395289709268913, + 0.09836226032770737, + 0.10909669484034301, + 0.10271568751280957, + 0.10633630819392989, + 0.1534842559792887, + 0.12380573700487651, + 0.10291798638161162, + 0.11946773291279063, + 0.12473537062603234, + 0.10480204485939444, + 0.09783256645050421, + 0.09613837612652383, + 0.09410510106162692, + 0.12075814027531888, + 0.1010515653090687, + 0.09554080358413826, + 0.08910723227438003, + 0.09986532402769145, + 0.11645329210609827, + 0.13647429147506993, + 0.14711544150442304, + 0.11412482971398208, + 0.11209708048239284, + 0.1312815196874887, + 0.11844664786939348, + 0.12482186851259137, + 0.12226215340819048, + 0.08663040184258904, + 0.1059427096495249, + 0.12351879480826804, + 0.11019404768234854, + 0.18170858587668473, + 0.09558685867731315, + 0.09054480958919527, + 0.11103587636585727, + 0.09475597316235798, + 0.10529080423975082, + 0.1349937349095475, + 0.13374441910027443, + 0.12249808591617806, + 0.1144583849325731, + 0.12253208487220493, + 0.0991782140392231, + 0.10230721159618107, + 0.11642709627092718, + 0.12811057145047117, + 0.12117476448387934, + 0.10758476449986114, + 0.1077969715520609, + 0.138544438540698, + 0.11959171232655208, + 0.09436183184291624, + 0.12543920589532342, + 0.10765299531978917, + 0.12471791852783021, + 0.1078501656626896, + 0.1075907762736556, + 0.14049721362846157, + 0.10509374165541463, + 0.10678968044273286, + 0.10709861709084384, + 0.13525631001556107, + 0.08610854733925107, + 0.12213104321878317, + 0.08551022912888294, + 0.14490743275213191, + 0.09844695047300045, + 0.09768336508909767, + 0.10277194407491727, + 0.11904973906690654, + 0.09590344705694864, + 0.11076490851416007, + 0.11708605246637958, + 0.0819685430539605, + 0.1081398926178078, + 0.11846349830977464, + 0.11710373970154742, + 0.11878730543597193, + 0.12289569607340095, + 0.11390798860609332, + 0.10516052390956176, + 0.14714408923037656, + 0.09516538261647961, + 0.1269351384856783, + 0.12724217434052962, + 0.124415181597825, + 0.12391313919159792, + 0.11618229228244317, + 0.10985795058529678, + 0.11642428076866009, + 0.15285458882418734, + 0.10389886745424277, + 0.12019999777430815, + 0.10348225139498692, + 0.10187854403382715, + 0.10211978902620086, + 0.141553798549176, + 0.12019476063861205, + 0.09080703235046518, + 0.10911745545983025, + 0.1385310539584002, + 0.1108334779109353, + 0.12718822705079866, + 0.09968970145327652, + 0.11900008683327844, + 0.11939391969527517, + 0.10846757399126321, + 0.1190610914664453, + 0.10327827957193345, + 0.11658480449031319, + 0.09031484701997508, + 0.0900957370475701, + 0.10015089130752537, + 0.11126351674502509, + 0.1272563602478278, + 0.08039906198854904, + 0.11096873863470004, + 0.10763090859903436, + 0.10558751833003234, + 0.13344759744492768, + 0.11461895191628188, + 0.1249793520762417, + 0.09501875783228889, + 0.16601511523143347, + 0.10231903662819702, + 0.08891388837751238, + 0.1169439259750655, + 0.12478399619491676, + 0.10658121883837196, + 0.0884328070865354, + 0.13245547393965854, + 0.12877451285545488, + 0.14645948730748035, + 0.1364863249067085, + 0.1074028256970987, + 0.099516232124496, + 0.11096233533081439, + 0.09094770970337243, + 0.08783982995397942, + 0.08619345640550602, + 0.1281568176384579, + 0.10792232747360377, + 0.13829630047768998, + 0.11425405001663724, + 0.14176046378651197, + 0.08347802288176262, + 0.13177375421182716, + 0.09252581251003772, + 0.1156417557165914, + 0.10926180540373585, + 0.1192218800746029, + 0.12021196064847413, + 0.11546798680968276, + 0.10693033538931057, + 0.09716151785905934, + 0.08771036306236564, + 0.12391745425162701, + 0.10453999257828593, + 0.088967109608278, + 0.12049384670935818, + 0.09543622872022023, + 0.11718721680619416, + 0.10460427607478981, + 0.09664455704584449, + 0.11227797249734625, + 0.09595266965999649, + 0.1222376191277021, + 0.12012854983502562, + 0.09570283171359982, + 0.1102308488543087, + 0.14275866612057259, + 0.10528327851649902, + 0.1103444132564383, + 0.0951846832313957, + 0.12249996378530668, + 0.14328088476924739, + 0.0917914841161303, + 0.1255964024666194, + 0.09867170861044582, + 0.12546061626086355, + 0.11766594353173468, + 0.10376550295245979, + 0.10348580738710063, + 0.10851962940001968, + 0.10037434908731817, + 0.12317266582504943, + 0.08900948056859596, + 0.12100420071215802, + 0.11246656652262672, + 0.102773756009369, + 0.13128798709768028, + 0.11378667351690512, + 0.1048252035648976, + 0.08666336541380822, + 0.12001860932457938, + 0.09285969396886438, + 0.12078723486427785, + 0.12571164560058312, + 0.12569495176102702, + 0.12983512522158625, + 0.12241791332620938, + 0.07721004941565403, + 0.10857508905437924, + 0.1345620619437352, + 0.13437643755914663, + 0.11486032179966764, + 0.1003730764670975, + 0.1033085671585031, + 0.10550014232253989, + 0.09991127957887637, + 0.10755018562717326, + 0.10334720624196798, + 0.1316902411526629, + 0.10951430905036563, + 0.10442799159383427, + 0.11813156350422677, + 0.11906554548424847, + 0.09841144678336265, + 0.10861037796287415, + 0.12813124837820505, + 0.09840601496696866, + 0.11606364282618864, + 0.08834851328557608, + 0.10889798847802587, + 0.09247695133784546, + 0.09370200947641989, + 0.10182905394550236, + 0.14688783436635336, + 0.11144803741699191, + 0.10470936692814395, + 0.11702814546688523, + 0.09428747664959526, + 0.13381321785169545, + 0.1386270142991497, + 0.13623949006550123, + 0.1038681614751745, + 0.13243238908741725, + 0.10555468901159147, + 0.09160685975626831, + 0.108228229604856, + 0.147418371350332, + 0.09601868621734369, + 0.0965301230216485, + 0.12194322892685838, + 0.10809697682712785, + 0.1324372700419965, + 0.11017811357263636, + 0.12453180974718935, + 0.10844490076193626, + 0.1070786059797737, + 0.1004260082594504, + 0.10662766262901342, + 0.09817270601956748, + 0.10732252733875942, + 0.1211255135140802, + 0.1059183201198295, + 0.09925648905272859, + 0.12477825485230672, + 0.09137262548226587, + 0.1147628679587091, + 0.08681767977733648, + 0.09143095035315092, + 0.10303832839767481, + 0.12157951796231367, + 0.11847199410647188, + 0.10186841174079704, + 0.11167973016869115, + 0.11623140121039587, + 0.19528132823402414, + 0.11793653471010848, + 0.11614185045545489, + 0.11271981630546528, + 0.09556116666497418, + 0.13251762477063417, + 0.1313051433231279, + 0.1101231628699855, + 0.1056318183318596, + 0.11355528665450944, + 0.11602365145298275, + 0.13350213286321116, + 0.11358542195487537, + 0.12380606573509229, + 0.09249601740012775, + 0.09593068173805269, + 0.11622589299709879, + 0.12804464965968756, + 0.09294403140297844, + 0.10786279657143494, + 0.14259907275943606, + 0.09568558669844301, + 0.17254870176962514, + 0.10644256190446487, + 0.10657079049249196, + 0.11396556681123736, + 0.11233104952105756, + 0.10485924207005093, + 0.14989249848340294, + 0.11094691175443729, + 0.14311050065828326, + 0.10258104778000109, + 0.11417054006317717, + 0.14321328376538217, + 0.09876242045013688, + 0.12337921696521036, + 0.12723519335736727, + 0.11172568016576526, + 0.088680702299498, + 0.10521629308690883, + 0.10759866958222834, + 0.10756325553479709, + 0.10333545025079137, + 0.10590312964303769, + 0.10876049695848675, + 0.09787815035506081, + 0.09474676322543454, + 0.11151255729353939, + 0.13953292747818122, + 0.09546493585226702, + 0.1195420762065209, + 0.10041930059816793, + 0.1386404752002842, + 0.14977606119302134, + 0.09243316760081031, + 0.15052637143493527, + 0.11094039874896033, + 0.11226765327483161, + 0.11061349972392993, + 0.121196778203911, + 0.0910693540242095, + 0.12349377907753864, + 0.15245243653912302, + 0.10382519355339964, + 0.10303760085690672, + 0.09690340510344442, + 0.08851322927813257, + 0.11525733927945488, + 0.10307508146480353, + 0.10839066026905791, + 0.15410250698981462, + 0.12591228958041925, + 0.11229959725933877, + 0.11664842385071975, + 0.08729123941100585, + 0.10602317557190293, + 0.10825489917798617, + 0.0804425390800815, + 0.09922545832998343, + 0.09409541630213464, + 0.13678759966433668, + 0.14200558401024502, + 0.10820881331801098, + 0.11860727677352471, + 0.128992722559749, + 0.08819970158985033, + 0.10125637489600398, + 0.14068637058595843, + 0.09541181646132439, + 0.12384019733532547, + 0.11277697856607398, + 0.09005519623333555, + 0.1001212963536153, + 0.0901248830901568, + 0.13921634332359983, + 0.08610948921844551, + 0.10290537985748421, + 0.18046847139317312, + 0.09221651840025309, + 0.10099478304257979, + 0.10950981492901711, + 0.08873890942072461, + 0.10860723080037174, + 0.08566722615460944, + 0.10120749434148256, + 0.09241131930242268, + 0.10210743778776955, + 0.09049375590076443, + 0.1090125064282046, + 0.10096180592326179, + 0.0873246013212163, + 0.10359068684873207, + 0.10570914511680884, + 0.13481850942862897, + 0.08563887422020561, + 0.12196698176511495, + 0.11659172995310202, + 0.09696581706098954, + 0.15158693812400162, + 0.11367063248458846, + 0.0947032661585171, + 0.11523299255093382, + 0.1097507584481121, + 0.11639511568164873, + 0.09730063676693236, + 0.09486066149486076, + 0.1099248731411627, + 0.1617810643578056, + 0.1018538907376939, + 0.1071150130087731, + 0.13286236794242715, + 0.11714743701968179, + 0.12681683270981553, + 0.10423640878572475, + 0.12659695270987506, + 0.08788331461493791, + 0.15217641529869555, + 0.10251622053323786, + 0.10249192441899709, + 0.1031682274975031, + 0.12672723004571856, + 0.08679269334430637, + 0.11048505618906701, + 0.09294717709470865, + 0.11255074637368019, + 0.12451812136220507, + 0.13144075097701424, + 0.11643582863475052, + 0.11888766108419639, + 0.10866319157935452, + 0.1266505679798141, + 0.11299708651505341, + 0.12077535181346263, + 0.13499609077414304, + 0.15009589567124001, + 0.11893755368907025, + 0.12212161203669387, + 0.11878240724521792, + 0.12729452633095564, + 0.11454646603598863, + 0.11362279036553821, + 0.10067730550913735, + 0.11056450825890812, + 0.12169476219245301, + 0.15856876444200138, + 0.1030825086614148, + 0.08999160521511973, + 0.1490023034931841, + 0.09786473163735396, + 0.12304750443212736, + 0.10421175482546019, + 0.11007216627656015, + 0.09494363462633897, + 0.16042340397484683, + 0.0919713720519155, + 0.10803741811565, + 0.16511309933758628, + 0.11088612789919422, + 0.11491372269659578, + 0.11600835933051368, + 0.1163758337786585, + 0.109715536997481, + 0.11499034001823588, + 0.11059359764631997, + 0.1055269947720974, + 0.13571186982099256, + 0.09541106359675522, + 0.11006353814074998, + 0.11768336643913373, + 0.09900494647014751, + 0.08987417074450227, + 0.12544074739724068, + 0.14402037078063162, + 0.10099064559018224, + 0.1110082672949166, + 0.09893558536220907, + 0.0988745023120985, + 0.09455163895034172, + 0.08631531264101751, + 0.12900431030919585, + 0.08386083554807096, + 0.17791916647063938, + 0.09902346602550229, + 0.10934674349286322, + 0.1183307268067194, + 0.10751336808470269, + 0.09892192117248065, + 0.09627709460220597, + 0.10131742047681823, + 0.17256667164290465, + 0.13344533513989978, + 0.1301986194036011, + 0.11238332900678748, + 0.09030613095075607, + 0.1144846474709857, + 0.16436851776070505, + 0.121023128248197, + 0.11871069295894365, + 0.11203794940144095, + 0.1541337744687165, + 0.10412590798124774, + 0.13400245455667684, + 0.10574142103157722, + 0.1334376358465008, + 0.10384572475159184, + 0.09379591973047564, + 0.13101321483050432, + 0.1079047665143909, + 0.11305194633662796, + 0.10403831270663183, + 0.11786580829904282, + 0.08925399100679261, + 0.090078318447629, + 0.13701261084458619, + 0.11975523549274286, + 0.12022348390474526, + 0.0930505976168724, + 0.08760147579342382, + 0.09969897063958306, + 0.09822071743796772, + 0.10693925522208983, + 0.11829989681391027, + 0.11563866085696062, + 0.10202977057579178, + 0.1157197765775346, + 0.096318211555266, + 0.10263033150679934, + 0.09005302199372493, + 0.11742318847322239, + 0.0961620168387184, + 0.11522966862983927, + 0.13102344288910261, + 0.0846692908780641, + 0.0900364272087551, + 0.10661577870813173, + 0.11188003503096992, + 0.11208709336111045, + 0.1248357711178314, + 0.10270472068360158, + 0.09531806952935333, + 0.12885633183794495, + 0.11173663830971355, + 0.09209760898228908, + 0.10971218328926419, + 0.09524265862881286, + 0.11926085908147642, + 0.11831109718758809, + 0.12144116637696656, + 0.10996791481535852, + 0.15472062692336308, + 0.10230814346560442, + 0.09901964884707885, + 0.11840465145473855, + 0.12599919146284902, + 0.1043115664357292, + 0.12098702848348154, + 0.12401438477009283, + 0.11210616840596069, + 0.10800931444806094, + 0.10225484197088507, + 0.1263409525950563, + 0.08574064054891796, + 0.09400734192000693, + 0.12099674882961937, + 0.11807269660104766, + 0.12188106621714663, + 0.10114359907936497, + 0.09221334518559006, + 0.1059536607239117, + 0.1133632041023611, + 0.1102054299145414, + 0.07283421721335258, + 0.110849259135742, + 0.12034392035911824, + 0.11331156740772387, + 0.15492924770386968, + 0.09913417633173961, + 0.1146748109614584, + 0.12625312120287713, + 0.10144117492351136, + 0.11542807989624164, + 0.10843177641075795, + 0.1088948946385685, + 0.12347724642194897, + 0.10605206982822267, + 0.09859829938441633, + 0.11798748799089588, + 0.10499354135696859, + 0.13154731633200648, + 0.12314523416313868, + 0.10254142289414005, + 0.11171418627793643, + 0.10659856953509056, + 0.12509413857998095, + 0.12971879414696094, + 0.13051698713399534, + 0.1240072300356363, + 0.10625687487183476, + 0.09832757035026897, + 0.12881997775799522, + 0.09461306887756628, + 0.11559977981959454, + 0.11028103215814639, + 0.0859019052147222, + 0.12016986187700161, + 0.12021152835872939, + 0.11863887261467176, + 0.12050053265810678, + 0.09779580330199034, + 0.14760317289030717, + 0.11735109515770079, + 0.10424613238925898, + 0.12099806875889665, + 0.1016050187275955, + 0.12529805436001146, + 0.09403456274618525, + 0.11755196165544546, + 0.1041908027876724, + 0.11317362270875991, + 0.10069052578374005, + 0.10957043173037109, + 0.11687282449907878, + 0.11774315640032057, + 0.1254904117593285, + 0.09351226080956031, + 0.11118847105885818, + 0.1263871219173593, + 0.13206109989769782, + 0.1434942723072691, + 0.11783788718253625, + 0.11091587835070865, + 0.1598220310447083, + 0.09791800866863373, + 0.17284473711367496, + 0.10328599300879109, + 0.12535243803365434, + 0.08692853313172597, + 0.12036957223540579, + 0.12883175963322735, + 0.08828254909949179, + 0.09602177200658381, + 0.10522566495382361, + 0.12596562477678946, + 0.10787321523323107, + 0.0927310904805413, + 0.1097777029175886, + 0.11022427595927754, + 0.10914711952433744, + 0.1150459469237853, + 0.11357305953825354, + 0.07687234892753114, + 0.10230288028189805, + 0.11802998170158648, + 0.14017875180694445, + 0.11711645187971205, + 0.12375946439779072, + 0.10438211839671797, + 0.10505059326866456, + 0.10249586334827047, + 0.09487156132602215, + 0.11554714581832283, + 0.11446498730465784, + 0.11691644884841074, + 0.10176949656291012, + 0.10165513736703069, + 0.13494586549552484, + 0.10467177969829196, + 0.10162106421865189, + 0.1103893061245316, + 0.1286498822988042, + 0.10760696437088509, + 0.08903554385024626, + 0.11248419438355446, + 0.08946299414359643, + 0.09505281507744312, + 0.13384069547027783, + 0.10044881440814389, + 0.09022406459266459, + 0.11689819668486667, + 0.12642416187908498, + 0.13083316962083114, + 0.09509539245710646, + 0.12880718459952598, + 0.10700529225298079, + 0.11100738430403584, + 0.08841661828338088, + 0.09558621889992987, + 0.09949015807992205, + 0.11119745340570221, + 0.12864438856286456, + 0.09273847031944163, + 0.12727641931207684, + 0.08403234233563085, + 0.090387011293638, + 0.11201939950393662, + 0.09610432608315175, + 0.1390322367960449, + 0.10720351664028598, + 0.12333613438715212, + 0.14580758728872356, + 0.11822205650255316, + 0.1059197376602958, + 0.09269215069079723, + 0.10554193443183509, + 0.11843411822468981, + 0.08446191159361852, + 0.09893317711063117, + 0.12009286507215727, + 0.09425144721827755, + 0.10663958698137115, + 0.11763850570292007, + 0.12894503191284265, + 0.09048629235695461, + 0.08921866731914785, + 0.13590987681761987, + 0.13584138023471642, + 0.11839825451576831, + 0.1286363377767281, + 0.12110589701103625, + 0.1215118135378586, + 0.10951687357807098, + 0.1072567793815491, + 0.1628882908080902, + 0.12306311595104, + 0.09710603634230214, + 0.10478489612369847, + 0.1793250534055637, + 0.10057705804644479, + 0.11071551318785615, + 0.13136464477096044, + 0.11104650348603279, + 0.10465620587444871, + 0.12150660107353811, + 0.10962492970454112, + 0.12076933019578744, + 0.10284359913081546, + 0.08832148781215635, + 0.10311972064888578, + 0.09415980229712807, + 0.11540691128396229, + 0.1095003316698818, + 0.08510474025900383, + 0.0988681862233387, + 0.10819103425948132, + 0.1169601672137464, + 0.12627555345574987, + 0.15109717680898915, + 0.1163289074562707, + 0.10480131843267154, + 0.09283350863736678, + 0.12744496147873624, + 0.08083031932794768, + 0.09591443455198653, + 0.11413689653763591, + 0.11581937586341766, + 0.12903635253250345, + 0.13060324399259787, + 0.10410747738003386, + 0.15245478077793273, + 0.12014882664914496, + 0.12616363955256046, + 0.12186417008913106, + 0.11167989359545433, + 0.1958249983468632, + 0.11371875701769248, + 0.10552593673350877, + 0.12477609220524538, + 0.11062168583595432, + 0.12682854010406142, + 0.08740208761983452, + 0.10764078762481384, + 0.12017790595575308, + 0.10761470563181391, + 0.08808526266925162, + 0.10706455607940313, + 0.11625475694359978, + 0.10787165975344812, + 0.11632195642857646, + 0.10650563540264112, + 0.09344514921689308, + 0.09529756950269323, + 0.11917401373943803, + 0.12639493437895044, + 0.1308384024769836, + 0.09376844935522724, + 0.13647154869478634, + 0.1423144519374528, + 0.12431044224232216, + 0.10691849927254732, + 0.09546370645095949, + 0.14158645381737195, + 0.09108087715735887, + 0.12817536405177898, + 0.10298711924688138, + 0.08941491959803252, + 0.13695367510598322, + 0.10921677709225254, + 0.12775989840216054, + 0.09303903184940734, + 0.11751683763578968, + 0.10754480774765403, + 0.12105410413351002, + 0.12238119389715738, + 0.10557690259688504, + 0.10534908730135228, + 0.12155292669966584, + 0.10938330409307843, + 0.1116965664501418, + 0.13827270342175355, + 0.10751206967959906, + 0.12883346519156164, + 0.10806591007309302, + 0.11524026933407253, + 0.1022716376908756, + 0.1210176886127037, + 0.10436253560525997, + 0.1414663591844145, + 0.10529777550452686, + 0.11570247219898402, + 0.10150842120595986, + 0.11150427528132592, + 0.1103518373397033, + 0.11054032912882385, + 0.13450844481247418, + 0.08829558933043706, + 0.10772090303249568, + 0.10454167555135462, + 0.12262280794698298, + 0.09554745356075676, + 0.14549359765946457, + 0.10549418983379256, + 0.12457024731654665, + 0.11879048736962239, + 0.09325356174033686, + 0.0961935049540663, + 0.10603878498055913, + 0.11770432699428687, + 0.1235196143815181, + 0.11195783829859862, + 0.11853132747665174, + 0.10277064789615303, + 0.136494086979337, + 0.11653133526773081, + 0.1236235409991724, + 0.09960506479168064, + 0.12470696794706335, + 0.10446524445145394, + 0.13919899367001853, + 0.12449295487097678, + 0.10915333718629822, + 0.09050236705307967, + 0.10440361829786224, + 0.11874400543655522, + 0.11090062915726456, + 0.09450816258227736, + 0.1219572567173909, + 0.12908438194186272, + 0.09861179156694432, + 0.10712734171772373, + 0.0999430323212492, + 0.16865670089352297, + 0.09619912879840843, + 0.10330746553396901, + 0.11106474198628592, + 0.10630462844865461, + 0.11837911668357909, + 0.11240036135800081, + 0.12440798275255728, + 0.10328686166224735, + 0.1048190316175977, + 0.12643150730759575, + 0.09665241185900804, + 0.11899795667351123, + 0.08006702866110198, + 0.09733727650813119, + 0.09914298979583466, + 0.1173591234249363, + 0.10549110590232591, + 0.15437855310718746, + 0.15389600792805838, + 0.1155152278339158, + 0.09631665149773545, + 0.13171934831442167, + 0.11434522117033342, + 0.08158780388985419, + 0.10066103158294244, + 0.11948054577640502, + 0.09291584549900596, + 0.14059305837269956, + 0.12140351588496184, + 0.18758443485324322, + 0.09660325681541232, + 0.10680888748877854, + 0.14309350376548308, + 0.10380734973289511, + 0.11840238966374815, + 0.12834068024919792, + 0.12794630135419482, + 0.1236853122108083, + 0.10400061671608118, + 0.11709212105668247, + 0.09373367119887435, + 0.11008445024799561, + 0.13117008985517573, + 0.11417497165302455, + 0.09305437418097152, + 0.11984221000707974, + 0.11177050946902395, + 0.11313211900795267, + 0.1029056811589223, + 0.08393834763759271, + 0.09793694758406861, + 0.11057177286491486, + 0.1437121194552179, + 0.1088685497672836, + 0.08606303375562192, + 0.10582778153750615, + 0.10277329361577893, + 0.1088398454821993, + 0.10392782987658215, + 0.11342985765943185, + 0.10617361787098298, + 0.11034239951967596, + 0.08964453086201249, + 0.08713653603737277, + 0.09980407126890802, + 0.11204413082726775, + 0.162331532855802, + 0.09819709184946518, + 0.0962408159155474, + 0.11564230548605328, + 0.11211642084540033, + 0.10687510128281447, + 0.1194860032135465, + 0.13248099827643853, + 0.10551526968962759, + 0.09141539798476886, + 0.09881890069433609, + 0.097359250641351, + 0.12260902305081528, + 0.12974900843015005, + 0.1300699222029956, + 0.09268846574899604, + 0.09705306836698742, + 0.08747805792954844, + 0.1011676436245593, + 0.08768869766004647, + 0.11675627782843578, + 0.12161036125386615, + 0.11491774584330988, + 0.08775705955806497, + 0.11178867444844744, + 0.11999348241953145, + 0.09925783974842037, + 0.09385044806560268, + 0.11129518005791786, + 0.1316001584032355, + 0.09338312216958793, + 0.11659641816034674, + 0.1192830356515745, + 0.12478147875824587, + 0.11682562443090508, + 0.11177221188428582, + 0.11030420026950538, + 0.09886867700957758, + 0.0934965493009098, + 0.09780258303435743, + 0.11324487003148963, + 0.1435536068945466, + 0.09391233647907131, + 0.14663243049189204, + 0.10963293495554326, + 0.10028102726797765, + 0.11508271038932048, + 0.1073633893040366, + 0.09958408144689718, + 0.11596740768336826, + 0.11289832323964594, + 0.09964921772528042, + 0.12090699780173401, + 0.10648651561955386, + 0.10399662942451728, + 0.16214162629551607, + 0.11662605028508491, + 0.10670170111355275, + 0.1013531644102375, + 0.11454519202246752, + 0.0879980741322908, + 0.09417868827994527, + 0.11933603734840868, + 0.11510288559867195, + 0.09929891044289475, + 0.12429035303112973, + 0.0999776544536487, + 0.10137155434684578, + 0.12901688962063254, + 0.09395528871781457, + 0.09125874418348766, + 0.11906754849319019, + 0.1184790936202378, + 0.11764191243116906, + 0.1220247336826652, + 0.08204002926166874, + 0.1262309546846264, + 0.13840556234440615, + 0.12091245186353443, + 0.13210367796285225, + 0.17043265358256446, + 0.14924408947999568, + 0.10858423519638094, + 0.0855034420823301, + 0.11816394962742288, + 0.11877475790331493, + 0.10573428815550165, + 0.10974000789870732, + 0.12257087115181252, + 0.11269266892382222, + 0.11726438894586523, + 0.10072968990769719, + 0.1200934392298375, + 0.12708349412754205, + 0.10679214870105733, + 0.13316672372078256, + 0.13799778150638656, + 0.11164121001865134, + 0.1282664289010324, + 0.13413123915490638, + 0.10538396956011224, + 0.09644151203565808, + 0.09919101357693215, + 0.14638647479532696, + 0.09394675433978242, + 0.12639041557431702, + 0.10126384350552141, + 0.09441086289008163, + 0.10114992396058962, + 0.13137253797825982, + 0.10347940814176483, + 0.10430512226089622, + 0.10832593276182545, + 0.1077411423023185, + 0.11375858500674074, + 0.11250490813644334, + 0.11836041398561692, + 0.10247869986903266, + 0.1083481840961357, + 0.10413651553831037, + 0.12998082526573207, + 0.09815081533768429, + 0.10073527638537826, + 0.12579646681421428, + 0.10801268308511167, + 0.11756511785355757, + 0.13528059196869577, + 0.1329226019379054, + 0.14296897001473655, + 0.09928794739855985, + 0.0939862272802471, + 0.10549655741103935, + 0.11793810396655681, + 0.11291035320859097, + 0.10420625944138819, + 0.11840621515849692, + 0.12759729820846627, + 0.09880608635465829, + 0.12090472505642026, + 0.10575206396117326, + 0.10266829329907008, + 0.11244085182027981, + 0.10325187536686051, + 0.10821463755885324, + 0.1278628091720721, + 0.10547573415172927, + 0.11041359880191177, + 0.10464086246560012, + 0.1260591479881832, + 0.08193729374095236, + 0.13127417834264102, + 0.10640481007470262, + 0.10329566159282039, + 0.09725799677808564, + 0.11941109730024689, + 0.11073563170246693, + 0.08679602381746306, + 0.11289276021699335, + 0.1127777271560307, + 0.15490184513155558, + 0.0990692944650849, + 0.08821466498539347, + 0.09155448461910254, + 0.11763912209574122, + 0.09323661453631198, + 0.10757811001032302, + 0.107651925465294, + 0.1342076575150462, + 0.10206505136163677, + 0.1181777872942251, + 0.10534069905406741, + 0.13035209080491578, + 0.13987217773392793, + 0.1298919081385892, + 0.09941728861432599, + 0.10879544673309102, + 0.1044086329620422, + 0.08576249221972272, + 0.10742055769055815, + 0.1189522223599375, + 0.11219318560145088, + 0.1126651774035525, + 0.11424635910801735, + 0.10579614798660271, + 0.13330617033641456, + 0.1475092522222318, + 0.11204037836072395, + 0.11118690489728336, + 0.11093170737129342, + 0.08790121754509092, + 0.1042193033165718, + 0.10913449131695428, + 0.09444792105586339, + 0.14275772127026318, + 0.09994171329084102, + 0.11202017167780995, + 0.10368115245642007, + 0.11918218457129436, + 0.08448328414820296, + 0.10746735413353006, + 0.128434213151893, + 0.10364946435752963, + 0.11173602860664594, + 0.10995547382157506, + 0.14712660214691303, + 0.0986629318719127, + 0.11555418845345304, + 0.1296131970947305, + 0.12833790042093116, + 0.10286711089681137, + 0.1233943107213703, + 0.12228352802436679, + 0.09848524370725055, + 0.11093170338751603, + 0.11730500275984755, + 0.14976338830196648, + 0.0789416432615444, + 0.13421001788910272, + 0.12939926875814778, + 0.0968160450700535, + 0.10212163251142935, + 0.1138220619713684, + 0.11256224020468657, + 0.1261632241630531, + 0.09530660202836044, + 0.1288225290252727, + 0.1167568826089814, + 0.12436061377119463, + 0.11436571279613293, + 0.09203771465466125, + 0.08794419322475336, + 0.10092431976256243, + 0.1163708184903025, + 0.13937194463754995, + 0.13525448290462058, + 0.10991600093783513, + 0.14266597975343326, + 0.09426141325711593, + 0.113668233139369, + 0.09907254487791421, + 0.11814901908393635, + 0.13823757707429257, + 0.12197358921263066, + 0.11256449049630925, + 0.13182662424428696, + 0.09942062006600942, + 0.1361641306445232, + 0.11828957800069019, + 0.12172009353852373, + 0.12909819384160906, + 0.12387557385145094, + 0.10741261248030674, + 0.10571526034956163, + 0.12083559941853442, + 0.09837381656007778, + 0.12038046417762505, + 0.09660771379577052, + 0.08424853200285277, + 0.11296842563071612, + 0.10229137243961377, + 0.09466095195662297, + 0.15895533571508605, + 0.12774028576269245, + 0.09606359341010809, + 0.10614290259954613, + 0.10610882184385632, + 0.1249288765740953, + 0.11858930190913475, + 0.1219182933794867, + 0.09255077285024414, + 0.10559533697032507, + 0.0963471918733607, + 0.09948371330238788, + 0.09454980680836134, + 0.09206654098178679, + 0.08830384655061292, + 0.11583612973158973, + 0.13466123154760976, + 0.13357305429730243, + 0.10485235207224783, + 0.10887665551837036, + 0.1137251493482711, + 0.18662689317193815, + 0.10218747811935955, + 0.09342422799173689, + 0.11928451505932954, + 0.1225558183429165, + 0.09605075625872771, + 0.12016090770493303, + 0.15007950964319106, + 0.10540756827336845, + 0.10612962705921446, + 0.10392177729062896, + 0.11552059211174073, + 0.11272016999530216, + 0.09867635528648527, + 0.14147420430531363, + 0.09819481583196546, + 0.12290682414918346, + 0.13855077027988985, + 0.14170705899358554, + 0.11980990940556809, + 0.10024595054479275, + 0.09231968132541882, + 0.1048394529709171, + 0.09448859836367177, + 0.08519482913046733, + 0.1482494503709289, + 0.10186622211608733, + 0.10046576481393371, + 0.11964003781831524, + 0.10027651673552564, + 0.08603231508302484, + 0.10792705529543586, + 0.1266280248401518, + 0.12127673239539993, + 0.10364447317106512, + 0.11078285379455648, + 0.1025638832151224, + 0.0997207768712846, + 0.09321482198718732, + 0.10096496996819325, + 0.12613107887617192, + 0.12512650323402194, + 0.11883554882203337, + 0.11855965771738708, + 0.11641782980417208, + 0.15699811621599996, + 0.11536702455934525, + 0.1378738362966916, + 0.12720222821635624, + 0.13563339097725238, + 0.12209466228887032, + 0.11342604649306501, + 0.08124471467761306, + 0.1171408603941512, + 0.09429771554531689, + 0.13067356305786315, + 0.11014406060393789, + 0.1043249564270862, + 0.1034033104199799, + 0.09897021986016735, + 0.13171479910517803, + 0.12055581528104181, + 0.11981112751504817, + 0.10982882363348243, + 0.10396980741704254, + 0.1096738639597356, + 0.11473944454859843, + 0.11734492181117989, + 0.09886515509957891, + 0.10847078504783567, + 0.10117321063308665, + 0.1038579795786913, + 0.13033077325340964, + 0.09610994482726923, + 0.11746531772789343, + 0.09982723463232725, + 0.12298049766850906, + 0.09733897060583618, + 0.10229777265894031, + 0.10624776288593092, + 0.11063823973541852, + 0.086616886927997, + 0.1068258405500634, + 0.10429591878704111, + 0.12536776260284604, + 0.098974594269576, + 0.08683964278336039, + 0.09619269502498999, + 0.15088431784531064, + 0.09591045155913093, + 0.09931228757325994, + 0.08502509741289889, + 0.10146516720345553, + 0.10873831653086954, + 0.10095052659404714, + 0.10242901490796445, + 0.11048398251147408, + 0.13131432444326607, + 0.11684187241284388, + 0.1132461895015379, + 0.12673425701033697, + 0.12112680761076319, + 0.1169731105942334, + 0.12071586841428206, + 0.11426425205233337, + 0.1271267983376886, + 0.11236350834332798, + 0.08283785666056662, + 0.12294356752961275, + 0.10282116252291681, + 0.12862895783510173, + 0.12460948389341993, + 0.14647482281154822, + 0.08677855062924476, + 0.10545499760064861, + 0.11063815710829182, + 0.1362466980086056, + 0.11535507398217194, + 0.09163449417140829, + 0.13085478846262974, + 0.10077082053894017, + 0.07042835717125764, + 0.09436851457896041, + 0.11218930762281361, + 0.11540691695435919, + 0.08429092556138598, + 0.1105633948583402, + 0.1035085249092005, + 0.1093392774948374, + 0.095236858228844, + 0.12024316476792514, + 0.11181475530336422, + 0.16173458012921607, + 0.12764835618174009, + 0.114690967695801, + 0.10701844521708656, + 0.1424432744543147, + 0.14105050375346498, + 0.09582310338011105, + 0.11995643879501382, + 0.12041198919608434, + 0.11850010919446809, + 0.12793054961490918, + 0.11702998943996078, + 0.12917074734360132, + 0.10743684023047248, + 0.10776541097821485, + 0.1317217807923452, + 0.14566073726079765, + 0.09672490008686993, + 0.11064373037842283, + 0.10667305032095194, + 0.14650687429389986, + 0.11852950874543508, + 0.09624158614500149, + 0.08488673577819394, + 0.11994233562278964, + 0.10528959928771865, + 0.09585903346335009, + 0.10763827435925065, + 0.11994911822935345, + 0.15833296254282261, + 0.12477808679476679, + 0.09675008236545221, + 0.11519043730666315, + 0.09986834933939476, + 0.13613815417333427, + 0.10020994141971641, + 0.10640106379319526, + 0.10000120201525874, + 0.10508575663463741, + 0.09896661347605502, + 0.11556955796351356, + 0.09236650364395754, + 0.12772366976953906, + 0.10530386916705801, + 0.15202758940998778, + 0.1204340493444587, + 0.14074791326658204, + 0.10182573366855595, + 0.09550728597614364, + 0.1061920255952643, + 0.09212052884012062, + 0.09554781381834093, + 0.12859616366831125, + 0.11946465161196754, + 0.09106807297128577, + 0.11573030281144803, + 0.11065538699506716, + 0.11948439375864138, + 0.10804460007516296, + 0.11304510754438987, + 0.13631389723229728, + 0.11767291415924354, + 0.11103448161164368, + 0.12722329204840999, + 0.10467446068631003, + 0.09726798780209964, + 0.08971121673694277, + 0.11914465418886515, + 0.11252143992171833, + 0.14121919744075745, + 0.10543957999927281, + 0.11875433743920856, + 0.09058244635007767, + 0.13744849302827805, + 0.08857346284511634, + 0.11358754657364192, + 0.18352968513452686, + 0.10406918919778321, + 0.096884191103706, + 0.12153338128520373, + 0.1143661029905032, + 0.13366682875304156, + 0.09352219255217664, + 0.11283048289887432, + 0.09544382475878828, + 0.11383625778671656, + 0.14983628638094182, + 0.18738684934135846, + 0.1106311418799334, + 0.12139711915796798, + 0.09185603461258483, + 0.10102231341558715, + 0.11591435156705363, + 0.11030337116431085, + 0.12130577002024731, + 0.1219367005441538, + 0.1030826436471702, + 0.10539564679122077, + 0.11589625520495694, + 0.10670952166837999, + 0.12703669070648002, + 0.1226962478173569, + 0.11304088339475922, + 0.09789632230022298, + 0.11242017850757388, + 0.09497499529061179, + 0.11790819034240967, + 0.1391838939930222, + 0.09780683119142607, + 0.12805105672226613, + 0.13264045356141657, + 0.12849103123557737, + 0.13146941126357362, + 0.0977040968423281, + 0.10891846026903416, + 0.1151561802406351, + 0.11378058145067357, + 0.13062518916533827, + 0.10735743805782835, + 0.10555443373273848, + 0.12151626409402015, + 0.09769146805762126, + 0.09036504688141397, + 0.105551442513387, + 0.12197810723424828, + 0.11402883405440103, + 0.12457062552255797, + 0.08238326147631993, + 0.11193584002758193, + 0.10650013141820745, + 0.09953344761481411, + 0.10509556447571303, + 0.09270649464846556, + 0.1019192079922446, + 0.11351111668843182, + 0.13759083862093516, + 0.09209641768407027, + 0.102999937458192, + 0.09250522410855355, + 0.10200597314666295, + 0.11567591276316, + 0.12617100839958492, + 0.09928222806367594, + 0.11013669150922716, + 0.09765733168227286, + 0.10886808617641147, + 0.10896860338338535, + 0.10363715669022346, + 0.10264285500257994, + 0.10073586098733336, + 0.15527882759387537, + 0.11138197662262181, + 0.0966352437766004, + 0.13902419121273177, + 0.12141330542200825, + 0.14745610711102186, + 0.12206140786637809, + 0.1259709438705741, + 0.10849079543341039, + 0.09951751141207829, + 0.12756520378465544, + 0.12606559333872633, + 0.13511245239153774, + 0.1009670979042908, + 0.11698701241701798, + 0.07951088201485655, + 0.09593206718965558, + 0.13010478366552788, + 0.1394121052696332, + 0.13114338635022596, + 0.09359489236487394, + 0.1215526047943623, + 0.1331538654277869, + 0.08461510479819984, + 0.10736414278849352, + 0.11467620089352526, + 0.11964132673678876, + 0.12465504500671518, + 0.11495661966114436, + 0.11165699916542611, + 0.12287138859004844, + 0.10896022527441263, + 0.1398171978766877, + 0.11037148748162752, + 0.10937923110786199, + 0.1212642682794138, + 0.11929546999955573, + 0.12244229163710234, + 0.1314903773515197, + 0.11249861670721953, + 0.10553673442565968, + 0.1112116408714669, + 0.11545880526088778, + 0.11384870145455535, + 0.1219146877457081, + 0.10135975523498547, + 0.09915245011210091, + 0.12364330428539536, + 0.10347417675771449, + 0.09676677312381159, + 0.1002401904594809, + 0.09683266583042838, + 0.10590526347832369, + 0.1422473810245902, + 0.10138240150735783, + 0.11540296245749301, + 0.10490337414790955, + 0.14251310113602314, + 0.11781492669247792, + 0.11084948944969628, + 0.10362003061112236, + 0.1051142200536102, + 0.08747445175055636, + 0.10472827556362811, + 0.09231155563956693, + 0.09219490207143306, + 0.14059878331494402, + 0.10980553051382057, + 0.12334913156319935, + 0.11909046037238025, + 0.09491934866519713, + 0.13114751716389575, + 0.11922783757604008, + 0.1548498031383305, + 0.09700140563958139, + 0.09597654069242906, + 0.14403959083125764, + 0.10423201077203387, + 0.08684116235139615, + 0.1047802349193044, + 0.08467821085089919, + 0.151636738214884, + 0.10717605235108822, + 0.11759295460171072, + 0.11760976249875243, + 0.10228277513282445, + 0.11051925945741065, + 0.10486952296773124, + 0.10810995074493972, + 0.11372047176811148, + 0.1440427979409623, + 0.09187822455283233, + 0.09333250768019818, + 0.10750334696187229, + 0.09864500215685004, + 0.11576080915471394, + 0.1205676979097408, + 0.132890312311007, + 0.10105737067912401, + 0.12524550514919974, + 0.08938067517662711, + 0.11368005436286331, + 0.11067815177042237, + 0.09319212381184665, + 0.16276507322251116, + 0.09848284097711522, + 0.10560816972276289, + 0.10817233931979181, + 0.11469076336479764, + 0.15438274823414241, + 0.0969601953772975, + 0.1293606839365734, + 0.14178032014069553, + 0.11418295437051243, + 0.11555865126532977, + 0.11946804380081497, + 0.1070726601768161, + 0.11923872268118882, + 0.12205641093631342, + 0.1098613433367713, + 0.11354949311429988, + 0.09755810148745617, + 0.09745590176387607, + 0.09378513025841577, + 0.14335880000374854, + 0.08519200932986969, + 0.12882142008942854, + 0.09094339752704868, + 0.12086531250198394, + 0.11570105930097972, + 0.14667118409750343, + 0.10405101506395545, + 0.10835930380885062, + 0.10551973647006058, + 0.14372678949351672, + 0.11564812409198963, + 0.10146291680020485, + 0.08942467103220834, + 0.1466071230784681, + 0.1299318895169096, + 0.10320699243551958, + 0.10995722832451746, + 0.10724307637508389, + 0.09793182472147051, + 0.11730213324843854, + 0.11680699203173156, + 0.09803941707246996, + 0.09221029875639873, + 0.10868122506576477, + 0.13389440432068722, + 0.10837780299258286, + 0.11363235317727459, + 0.1154712975415249, + 0.12403633972487184, + 0.10071897127856577, + 0.10135480951079918, + 0.10551195455098263, + 0.09756888698031084, + 0.11346587770713397, + 0.127477097599764, + 0.1136921499839125, + 0.08987274301654163, + 0.10497532957663736, + 0.12793503994343572, + 0.09994299160334097, + 0.1318819748852282, + 0.10015436254830695, + 0.10729544562852075, + 0.12826904436817982, + 0.08745916120312665, + 0.10890784233438695, + 0.09545333964699075, + 0.11084097059098226, + 0.10378637773681056, + 0.09673262789789548, + 0.11332217204922423, + 0.09957060102958808, + 0.09316593604770161, + 0.10230288749588952, + 0.11258836420994445, + 0.11800492126044361, + 0.10426772282722187, + 0.0864168774225639, + 0.11975033763429445, + 0.10675969681953566, + 0.08661737627493858, + 0.11785847130142105, + 0.12548597503156325, + 0.1055253408195776, + 0.11483208454222972, + 0.09811728462628938, + 0.11308401963789795, + 0.10742056736785169, + 0.11421253773942917, + 0.13038962957984485, + 0.09953862623613158, + 0.10340179648618279, + 0.10573879263685149, + 0.1068368832291583, + 0.09367901037998427, + 0.1140269866986622, + 0.16620372460992414, + 0.12777234043293578, + 0.10582029109347496, + 0.10841926964421018, + 0.10012378043603234, + 0.10782791385002295, + 0.10779282967920184, + 0.1349819144907604, + 0.12900101603690806, + 0.1482109058536083, + 0.09523926682912137, + 0.11610163867199999, + 0.12126416613703066, + 0.10223458774674533, + 0.09156209204784277, + 0.11637640467926585, + 0.11135962389756254, + 0.13822197430780409, + 0.11984782626383655, + 0.133399298013262, + 0.12466845794062135, + 0.07233133012359501, + 0.10101754957041159, + 0.11399230756505596, + 0.10573862415481634, + 0.08996494698226817, + 0.12794199738361992, + 0.12526340870626101, + 0.12019617790921605, + 0.09351357126072325, + 0.15792958114146916, + 0.0906478743786603, + 0.11979031850079759, + 0.11934351583175601, + 0.10852736347965822, + 0.1361437676374274, + 0.09847133151804013, + 0.11705760351058879, + 0.10135369644303346, + 0.10136888131593699, + 0.12748449276486573, + 0.16743709933688533, + 0.10237303049310227, + 0.13955863711927674, + 0.11267372098897081, + 0.1279884830237149, + 0.13930469337992998, + 0.11671808072209156, + 0.10582228613472845, + 0.09270180487943679, + 0.11646319432397986, + 0.10617970493143479, + 0.12396177860823798, + 0.15065727414553598, + 0.11485812176912615, + 0.13867035135772313, + 0.1116824999355553, + 0.12859334378782922, + 0.11670625360420722, + 0.10322811228875328, + 0.10828604553463544, + 0.13081874716931255, + 0.09138492944015794, + 0.10889316724373418, + 0.12250703129259892, + 0.10076227048746143, + 0.12393000639145854, + 0.09768128484114287, + 0.11216334537027192, + 0.12330343357289819, + 0.11658041367821881, + 0.11906802495871273, + 0.07762283105876512, + 0.09689328512014281, + 0.13451593539815712, + 0.10850268864736957, + 0.10370000393775503, + 0.1476136871151892, + 0.09254776942853903, + 0.11627710029637361, + 0.13197355750124573, + 0.1428102975451259, + 0.09792613514799059, + 0.11235696623374358, + 0.10025130035093503, + 0.10791518031399117, + 0.14796044617213414, + 0.09613536270490074, + 0.11423742406483191, + 0.09887941319177115, + 0.11045795655761893, + 0.0970553320858834, + 0.09835762878722182, + 0.12097658135438645, + 0.11041049119609954, + 0.08173839920316674, + 0.1043723309636735, + 0.11701173171784919, + 0.10173942698658582, + 0.14616561383455826, + 0.11815589294741137, + 0.09188120720951402, + 0.11200757056936009, + 0.09128516716107359, + 0.12695732955175812, + 0.10258818847222785, + 0.10841314106633458, + 0.125442717786829, + 0.1346204955831823, + 0.0998631507400578, + 0.13509795964339258, + 0.10579112929672901, + 0.10475883760363694, + 0.13604684695887187, + 0.09525396926106784, + 0.12163848834108164, + 0.11085141958647336, + 0.17286602195611922, + 0.10338271809769078, + 0.12304449333389281, + 0.10305177428477788, + 0.10803413936281522, + 0.13881683785951554, + 0.10328655131214007, + 0.11167491927679564, + 0.1144206318885446, + 0.1289186131840761, + 0.10636552430174588, + 0.10717812470166567, + 0.09141036959803954, + 0.10009584074776953, + 0.11034146917801087, + 0.08749218255262715, + 0.09084512901719424, + 0.11591517901696252, + 0.10988104650695107, + 0.09902302287398265, + 0.1153249953840466, + 0.11940153629016993, + 0.12609501396978864, + 0.12954055352793167, + 0.07967104921418032, + 0.09107283174704825, + 0.0988903185118876, + 0.12834095012533792, + 0.14330668190000065, + 0.1150916017831339, + 0.11498844875331853, + 0.10717552455509415, + 0.13610851747988498, + 0.13837333660885281, + 0.09289859625637018, + 0.08920875752172262, + 0.11875889296782371, + 0.10639637230085892, + 0.11514711302142384, + 0.11512101411925169, + 0.13611970061823148, + 0.10447711697600445, + 0.12275673100101728, + 0.10930699501601698, + 0.12296668057709198, + 0.14484566331786364, + 0.10933853035472017, + 0.10775188958932429, + 0.09578441548766176, + 0.12572453056538102, + 0.14860268576607724, + 0.0867993690670615, + 0.12330199876435512, + 0.09640035494550747, + 0.136664695549963, + 0.1626557972385585, + 0.07980097703951805, + 0.10095265586915195, + 0.10243738941338883, + 0.1108938193482795, + 0.11875874173414354, + 0.1251112514255479, + 0.09868118633119684, + 0.11380424208292722, + 0.1098112338846642, + 0.10051545399466688, + 0.13055258209000636, + 0.13042656321396845, + 0.09688240021280707, + 0.12355417762660056, + 0.10660937062566865, + 0.10305282514644656, + 0.09342061081752508, + 0.13188603539696342, + 0.11735926754740711, + 0.10107647210975278, + 0.12886403388914272, + 0.10930188854470918, + 0.12055613864685857, + 0.11953548069015421, + 0.09241932453428131, + 0.16306656478371329, + 0.09138519600176864, + 0.11023469433049983, + 0.0969560263361977, + 0.0839290280074427, + 0.115684165021841, + 0.09309039931428291, + 0.09773877426251733, + 0.1374667173982286, + 0.11019727061204405, + 0.10869049461384618, + 0.1120877130015382, + 0.09791229793834828, + 0.11372415009390377, + 0.10491681752923296, + 0.11774668789388165, + 0.10504546468584106, + 0.11100918686071654, + 0.10838352847072362, + 0.12416982694749654, + 0.11484048939406831, + 0.12118599855200604, + 0.10007058158575154, + 0.1208938771398992, + 0.08362013092044038, + 0.10868293209153382, + 0.12723750507725878, + 0.13115237773411212, + 0.1386466507662141, + 0.10083421334861921, + 0.0921353338735372, + 0.12756006112646306, + 0.09998570873937213, + 0.10796010740979069, + 0.13187832712304662, + 0.10534900851143147, + 0.10589600824844678, + 0.10337744723486607, + 0.09752813369026937, + 0.103299898387353, + 0.08393324313836366, + 0.12796627888918136, + 0.11427415743618555, + 0.10589671555410536, + 0.11770849267275144, + 0.10797614676284319, + 0.11256724979135067, + 0.11064872001354933, + 0.11641780527276202, + 0.09768750153391899, + 0.11262826960662645, + 0.1094533357397334, + 0.14716190021470357, + 0.15592974386330608, + 0.1192791602958704, + 0.08790874284935624, + 0.14151301248229678, + 0.11996493196437436, + 0.11377403267480436, + 0.0892772107803336, + 0.1153124753414786, + 0.10134432919086661, + 0.12101046225191651, + 0.10014237015281702, + 0.10849024254048532, + 0.10379434905099613, + 0.09885443927307594, + 0.14240457203410797, + 0.1060246365651761, + 0.09276159228653957, + 0.1020018371190048, + 0.11113452944538593, + 0.13623354028658508, + 0.09642998721092116, + 0.1284975159355911, + 0.12579894054545077, + 0.12559703450574602, + 0.1259809226486659, + 0.12130816393901273, + 0.09605432524810839, + 0.13399651816358576, + 0.11961174830443616, + 0.10201381851684266, + 0.11700860965489343, + 0.09716874483583574, + 0.09536773503702044, + 0.12113568121718221, + 0.11539046473536045, + 0.13127039891880082, + 0.11729069464006457, + 0.12084372327861731, + 0.12133387122923722, + 0.08539343071781796, + 0.11276679407540431, + 0.10082621358293041, + 0.0909066176689058, + 0.11301107146793107, + 0.1279502105530415, + 0.13096156341159906, + 0.12533310797254307, + 0.11359933013076075, + 0.10884510307271604, + 0.13101998785681948, + 0.12787483055931204, + 0.10300998927026088, + 0.11403160053977243, + 0.11175255034711648, + 0.08363991279944825, + 0.10256436109728884, + 0.11055081958921173, + 0.11334605861907865, + 0.10673167286843314, + 0.11757703757186355, + 0.12070408884637698, + 0.1281978745076595, + 0.15570950878756937, + 0.10515353687809038, + 0.08359700544911265, + 0.12991416887910798, + 0.11664445398930649, + 0.14913732143543823, + 0.08965463274039098, + 0.13785286477759542, + 0.11342591147684437, + 0.11383019131529457, + 0.1137358001963134, + 0.10819444273320467, + 0.11169690826247418, + 0.12038381237031912, + 0.1173831599854465, + 0.12606603906416577, + 0.09451673754429518, + 0.09184172483829912, + 0.12408074522950178, + 0.09450114254361203, + 0.10812462542652021, + 0.12899080189674864, + 0.15591650999720627, + 0.12249561240969815, + 0.09575953747515566, + 0.09396708583841108, + 0.11111475526750894, + 0.09236428220062938, + 0.11575094851300981, + 0.13032620182034282, + 0.11989021865656146, + 0.131087128259834, + 0.08478837100310367, + 0.09717509300325583, + 0.11228811224935092, + 0.08900973668438095, + 0.0998732622180177, + 0.10641352546627207, + 0.11271108766297958, + 0.10523960100704116, + 0.08361860520217142, + 0.09741522733155725, + 0.10051433512184121, + 0.10232399204796694, + 0.10468489663985518, + 0.12849300205365255, + 0.09244848278912174, + 0.13378459659047404, + 0.11261283632250543, + 0.09486115358957535, + 0.08655804412686433, + 0.10173864125843667, + 0.13960093363426349, + 0.10586416256777732, + 0.15019909942131698, + 0.0912107868484055, + 0.09008226286596652, + 0.11091342785045916, + 0.11466081772261241, + 0.10555965072170193, + 0.11914132625894913, + 0.09682276362524905, + 0.1030199229875427, + 0.1590514398215514, + 0.12574383159643496, + 0.124572969781151, + 0.11653408636959185, + 0.13248147646910383, + 0.12117049433156644, + 0.10091975621317069, + 0.10706609603267893, + 0.1335785790321833, + 0.11009366948555407, + 0.11942782468049981, + 0.08916156854102081, + 0.09396212745635547, + 0.11654973722881828, + 0.10370895074374888, + 0.08995917353092855, + 0.11552297872167644, + 0.10676663357413381, + 0.1055185765921708, + 0.10241684137883258, + 0.15111530234847453, + 0.11313918560324257, + 0.13433461339729316, + 0.1375738903318295, + 0.14570998146893782, + 0.15859911221211673, + 0.12944713449316242, + 0.11664656777546506, + 0.09643804322348554, + 0.10241762616188733, + 0.12468061580856088, + 0.1398711828726477, + 0.14163981829598837, + 0.09476276443561238, + 0.10771430103585063 + ] + }, + { + "legendgroup": "Beam sensor 1", + "line": { + "color": "rgb(246, 207, 113)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 1", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.10771430103585063, + 0.08990973028579999, + 0.11695742720535282, + 0.11105833175272199, + 0.12664420128037782, + 0.10335751517981265, + 0.10504220775498894, + 0.12176854301321387, + 0.12481392408876776, + 0.11642136115411145, + 0.10771959370757665, + 0.10725691587415652, + 0.10783493311616198, + 0.08475531432856401, + 0.13949672830895912, + 0.1062098159580759, + 0.1280556015076833, + 0.09891773780327211, + 0.0928792028509366, + 0.09527766510060356, + 0.11999934132294318, + 0.11622746644021381, + 0.1039216553105697, + 0.11672327644994596, + 0.13405987206257833, + 0.10255998672860285, + 0.10729458426368658, + 0.12270490741137571, + 0.11092376419111487, + 0.11212052018312402, + 0.1586870059755137, + 0.12837612620051314, + 0.1109070564618603, + 0.11172349297083364, + 0.11419294262211158, + 0.07693619380923722, + 0.12289779449456167, + 0.11246400964942979, + 0.1163518053409757, + 0.09786533118671592, + 0.0976878793152625, + 0.1198955307784465, + 0.1195350414712064, + 0.09765962967602107, + 0.1271618239959155, + 0.09844410330970288, + 0.10372192877486214, + 0.10839836633435244, + 0.12491379724909688, + 0.10119597438585423, + 0.0892383740988926, + 0.08919992917042122, + 0.11125781485048898, + 0.10302400319122176, + 0.1157686773575767, + 0.14362635385058048, + 0.10662584971818019, + 0.14432573087989378, + 0.17491249707932513, + 0.1095915087897665, + 0.10181869220788059, + 0.10003117734525126, + 0.09267909106143855, + 0.10094111418242184, + 0.08567444116286968, + 0.13805139624428286, + 0.10483398570080711, + 0.09030754512219034, + 0.10904280298519005, + 0.15133940283380504, + 0.10488625716288215, + 0.11049242328921231, + 0.09611868078716311, + 0.1540523975452653, + 0.1152287208977254, + 0.135221493160919, + 0.12789502175598694, + 0.11736368225401986, + 0.09571775908517875, + 0.12139351888573696, + 0.1120501275878941, + 0.08397355983550372, + 0.1197059532124798, + 0.11872773479030095, + 0.09094669048453352, + 0.10650032117107808, + 0.14847735529224146, + 0.12621629509593113, + 0.11072725526182609, + 0.10816476578555145, + 0.11145096804107184, + 0.09322326231522028, + 0.10208024313197224, + 0.10447011078552122, + 0.11407444180142216, + 0.1111898338871953, + 0.09904901684214043, + 0.12889625585512002, + 0.12250465055398209, + 0.11227438943859035, + 0.08882775984885023, + 0.1349722924273407, + 0.13351962025832143, + 0.08320615399352085, + 0.10164312789623633, + 0.11203503076081113, + 0.1157109536090055, + 0.09764567813572039, + 0.11195639027749359, + 0.11571939921050832, + 0.11252075499593744, + 0.09815142004913893, + 0.20570101742227576, + 0.12878678316267725, + 0.14501166106121852, + 0.12870955177387208, + 0.11580957996640007, + 0.11531137360419315, + 0.10531180171761043, + 0.10171800853753292, + 0.10740244384501177, + 0.08727831987381797, + 0.11516692026287534, + 0.11196129369943682, + 0.11257091041797256, + 0.11776925826098403, + 0.11268998406989451, + 0.127675191532098, + 0.131335862912479, + 0.09194597663852203, + 0.130138426003643, + 0.1256309088431144, + 0.10089172549712731, + 0.09177654145774791, + 0.09798381096044916, + 0.1280489879597341, + 0.12371142884032198, + 0.10173075455909772, + 0.10761720721543909, + 0.1107899954569726, + 0.10129085806806674, + 0.11868101133930267, + 0.12365160696189699, + 0.14900242068577374, + 0.10423980691917488, + 0.14883781543660254, + 0.13853633743859825, + 0.10360777755888585, + 0.10230141641096423, + 0.10857589466796996, + 0.13716224158952936, + 0.10356652362193568, + 0.11591953188750875, + 0.10328136669926807, + 0.1037719873547672, + 0.09901556475819794, + 0.12713950668024276, + 0.12788966975733532, + 0.10902290737201488, + 0.10924888750128751, + 0.09277447166664123, + 0.09936967497189103, + 0.12791760405234978, + 0.08921051464691233, + 0.0907888672819167, + 0.10555913957525842, + 0.11687428319630942, + 0.11519053523055718, + 0.1397328945708891, + 0.12768706174060218, + 0.1295614482918309, + 0.10612375190524029, + 0.11785255908715841, + 0.14887068667580933, + 0.11368036434993038, + 0.12559901459960546, + 0.1030336525478611, + 0.10613166238615113, + 0.12499958421638774, + 0.10640767615124459, + 0.10474416222731414, + 0.10963930144526453, + 0.12645054111893445, + 0.12797523481682824, + 0.09497375627247666, + 0.11737739599929516, + 0.11400867818587702, + 0.09942398190160759, + 0.11228959203286795, + 0.11533243841855946, + 0.12274912069334867, + 0.11656004576900497, + 0.13072644988342583, + 0.09332063339298931, + 0.1400184317228359, + 0.0934588157022023, + 0.14429199061867015, + 0.12809387191311042, + 0.12208952499410049, + 0.13070579282064362, + 0.11206248816666253, + 0.10993609259451116, + 0.11697585313934969, + 0.1160936383932534, + 0.11648710015054028, + 0.11127770233532537, + 0.10904411997471784, + 0.10262668869631524, + 0.13836554256977285, + 0.09297685106991325, + 0.10620896799649765, + 0.09102617797616527, + 0.1347967727892822, + 0.13595609770296577, + 0.12255698755725823, + 0.1322133133135231, + 0.11985636026591497, + 0.109135732263824, + 0.09902185468619282, + 0.10817079057560483, + 0.10975015056938617, + 0.12891623043806005, + 0.08684859233366948, + 0.11728241620140142, + 0.08766300705431224, + 0.11328069058381601, + 0.1204922005660577, + 0.11463670158244063, + 0.10737577031775615, + 0.14258798240946788, + 0.09277904014044716, + 0.12156143955966477, + 0.10137382317203977, + 0.11184265266182898, + 0.13211075847107706, + 0.10152746627183512, + 0.12499771931612154, + 0.1426811720660384, + 0.09144475103247841, + 0.09578324298826281, + 0.1205074225154566, + 0.1305219914254538, + 0.07924039706055054, + 0.1113640737361384, + 0.10252762678644317, + 0.07393272244990358, + 0.10171386950161143, + 0.0919451701688354, + 0.10491685590272358, + 0.09462516703553725, + 0.15987543939340065, + 0.0926099094426389, + 0.10935986373502936, + 0.1418493019066413, + 0.1397190150206972, + 0.11824175343691376, + 0.12758948851172125, + 0.1158794393555612, + 0.12913551587250868, + 0.10041862125671086, + 0.0921125574145067, + 0.12614025749211794, + 0.09696745043646979, + 0.10577351092491068, + 0.11476679063608848, + 0.11805327958700047, + 0.1523665913842855, + 0.11537960451863839, + 0.12015852277044747, + 0.10253226402774251, + 0.10340417422738922, + 0.12970379013690403, + 0.14741476586777863, + 0.08320768436883356, + 0.09957555791720045, + 0.10700459947432685, + 0.10350716363854785, + 0.13006799231866176, + 0.10487010389872024, + 0.09985172838837858, + 0.09576891066366022, + 0.10470797599256972, + 0.136243010346231, + 0.07744160887394132, + 0.12304790508718896, + 0.13134619098515446, + 0.10494365138391336, + 0.09154222811715726, + 0.0998998821342874, + 0.06987896672954388, + 0.10311695494812652, + 0.08764738064248415, + 0.10686672267273888, + 0.11463525423318165, + 0.12340250502430061, + 0.1126033395499685, + 0.0992032445482963, + 0.13277214814779004, + 0.11701477419545968, + 0.10946509029200835, + 0.11236160356018872, + 0.11344979052417391, + 0.08217870506010495, + 0.12474860610651897, + 0.1067636609414208, + 0.1006793832510782, + 0.13000257706011603, + 0.10654673358471627, + 0.09576042089275509, + 0.08866156357463678, + 0.12098051191986116, + 0.10908307646506551, + 0.09432353902807411, + 0.09326617152532228, + 0.1076962713793914, + 0.09939183482602378, + 0.09439736064430715, + 0.13024227602403285, + 0.09922746384285218, + 0.09889993101712286, + 0.10409334512957588, + 0.09373040240475132, + 0.13152452724233252, + 0.134702118391588, + 0.1386310281356789, + 0.10786524827209365, + 0.09745147871574754, + 0.11124889814761678, + 0.1166388663001898, + 0.14084581599595433, + 0.149257869483863, + 0.12270950203950724, + 0.09842596370846027, + 0.11199640306618115, + 0.10765640060447504, + 0.08915872386148607, + 0.08983249809619885, + 0.10298454365224212, + 0.09813056769520666, + 0.10950263009091897, + 0.11995056877686708, + 0.111347610228836, + 0.11025119045304112, + 0.11836939185202255, + 0.15537991391858866, + 0.12641501828243717, + 0.11518701647868985, + 0.14151192500667592, + 0.0986921845329426, + 0.11235333797563074, + 0.1169571720025397, + 0.09971325323899075, + 0.11729932168954192, + 0.12437222793696871, + 0.1154339384319266, + 0.13144392906096403, + 0.08369401554736539, + 0.10083554810487902, + 0.13588328792630988, + 0.1174001023025675, + 0.11227347073539938, + 0.13624954348813928, + 0.10969440824544671, + 0.10921322899066739, + 0.10824024255329998, + 0.1287608446202014, + 0.12353090336444722, + 0.13195940164927084, + 0.13594748994763972, + 0.11041213901055436, + 0.11328653150587986, + 0.10798120500255719, + 0.1288884466294989, + 0.1324207030482782, + 0.1076596294746599, + 0.12085817507326424, + 0.10847727487074464, + 0.12676724981137588, + 0.1525156164559577, + 0.1331366207457066, + 0.12528416214668273, + 0.10954909332750101, + 0.10173380634524054, + 0.10952814565129654, + 0.11579060227414889, + 0.11074106389839235, + 0.11432857212116249, + 0.1031724612788839, + 0.10273351286483155, + 0.12273275521629966, + 0.12443239118145336, + 0.12045961887998988, + 0.11727219645898479, + 0.12427962488432369, + 0.1058621749688009, + 0.14131569224721385, + 0.10162712872142204, + 0.123574362617241, + 0.12013407644020715, + 0.10694777640641377, + 0.1454004119304638, + 0.12405561066699868, + 0.10218058646948873, + 0.10603182124723565, + 0.10207566522720847, + 0.09063988236936919, + 0.10926946206657356, + 0.10733313824796384, + 0.08899763138826862, + 0.10962718644021394, + 0.11612322415859735, + 0.11699617603508308, + 0.08970179910761265, + 0.09131488504863608, + 0.10766129307384793, + 0.11450874350497502, + 0.12222137559955383, + 0.11055566606456965, + 0.12166082175066593, + 0.11456034736603375, + 0.11260409159310228, + 0.10955691401191012, + 0.12023173396128783, + 0.13750837650675812, + 0.14346382456656415, + 0.11832543858524085, + 0.10538705781832641, + 0.18184268196842152, + 0.11081950127601756, + 0.0752239115394271, + 0.12923058298488385, + 0.10486821197185114, + 0.10478543135263019, + 0.12416916339015548, + 0.11128094245904684, + 0.11869269872255254, + 0.11199056172212116, + 0.13705460316162843, + 0.11158119374376216, + 0.129022464855887, + 0.10546711525583595, + 0.11437927512587588, + 0.13395361287529053, + 0.11156913510109107, + 0.11271139822294533, + 0.11859480380029741, + 0.10654624593031148, + 0.08901715237122948, + 0.08576377379676864, + 0.08906119288349365, + 0.10889055710345952, + 0.11661231193613047, + 0.11099925781172004, + 0.12021476501607724, + 0.1032705754075785, + 0.11670890416913177, + 0.10058420328154347, + 0.09522043505802445, + 0.07948804174804257, + 0.13079194055000423, + 0.08523688957784123, + 0.10469591714787807, + 0.1021784927348976, + 0.13071395866546054, + 0.11305883177698985, + 0.13965403958642625, + 0.15235339592903757, + 0.1528531465180056, + 0.10636200385221765, + 0.11288552439636426, + 0.13209393977957093, + 0.12532562231235292, + 0.1017711793185907, + 0.11197448036094396, + 0.1377876633972704, + 0.11501548279040877, + 0.11556646086518312, + 0.12384929690572467, + 0.12016790659931659, + 0.13110584368756664, + 0.10076256448461846, + 0.11427016421939364, + 0.10602456008634285, + 0.10808466074433709, + 0.123101010499332, + 0.11297166819249627, + 0.14660036591826572, + 0.13166702219751314, + 0.10774115129831639, + 0.08766500499531168, + 0.1271688849425189, + 0.11033228095818162, + 0.12001535861540628, + 0.15254783300407632, + 0.15726118419011703, + 0.12850374544894058, + 0.12704111844276036, + 0.1451784881122515, + 0.10931152949830715, + 0.09492560582809974, + 0.11061507729669816, + 0.11438223589979335, + 0.10310835188635854, + 0.11040012619186447, + 0.11889063744987022, + 0.12017262607289655, + 0.09887869549342905, + 0.10500721739275089, + 0.09412538524704893, + 0.10743389568347346, + 0.1091080587152491, + 0.10633748660625358, + 0.10822393613006642, + 0.08506791472271115, + 0.12275160057215781, + 0.12660362306816547, + 0.10793275060068581, + 0.10036946814713292, + 0.09065823243529365, + 0.1099235025682142, + 0.13704476310249017, + 0.1053078407992593, + 0.1268643000124632, + 0.11287477032945746, + 0.11462911131959432, + 0.11100279482261222, + 0.12365017340902013, + 0.1135188136177103, + 0.09927362314553413, + 0.07063149082095684, + 0.11063419178391166, + 0.10702215769867837, + 0.10187027087886373, + 0.09702269303750259, + 0.1235720287695932, + 0.11050002041678493, + 0.14492660100552746, + 0.09835772931825579, + 0.12969210113376897, + 0.08042916251289828, + 0.09933018293890056, + 0.13312591406978577, + 0.13391049515273892, + 0.10527615993835464, + 0.12137238295937836, + 0.09513568147483653, + 0.11216283427044753, + 0.10411367894098637, + 0.1412950637229987, + 0.12580651137628318, + 0.1252311049084829, + 0.09773744333735096, + 0.10352734760344057, + 0.128957770455591, + 0.11230999745422122, + 0.1097261666897043, + 0.13006503069888045, + 0.12542584712595153, + 0.0858527251597736, + 0.11566143404702914, + 0.12665635141691065, + 0.07970385996733295, + 0.08335509091574975, + 0.11466154575279826, + 0.13395484790724135, + 0.11677292913751848, + 0.1112525328691467, + 0.09442771630556737, + 0.1404571351411344, + 0.10973625267618786, + 0.11663686030490371, + 0.11150722044046475, + 0.1258894438770745, + 0.10070207287189141, + 0.10408337023784678, + 0.11762183735943563, + 0.10108447660438485, + 0.09933187238942202, + 0.09627481729489115, + 0.09626695697586689, + 0.09388234578476515, + 0.10684812459648901, + 0.0975062813544299, + 0.09225658578732898, + 0.12548318395513558, + 0.0844269822965979, + 0.09823036965564799, + 0.09239042882862707, + 0.0981251534977741, + 0.0886676936446787, + 0.11654497671967573, + 0.09099663913788628, + 0.11277222005611585, + 0.10775528253834488, + 0.10409898759986545, + 0.09015430307786873, + 0.09801813562563205, + 0.11392279305576318, + 0.07571352168475123, + 0.09996237224244511, + 0.11499990092950149, + 0.11132679724227, + 0.11818137300919218, + 0.11696766798257048, + 0.0981827299643267, + 0.11001296839506491, + 0.10182928682908242, + 0.09216632837713307, + 0.10557919970444328, + 0.09698831235983585, + 0.14276141794692232, + 0.12212317695502656, + 0.10900744871412148, + 0.1051513977977385, + 0.12663615973540854, + 0.10350995084678041, + 0.09144637804926874, + 0.13177392922328893, + 0.12658110410730666, + 0.10779276350614533, + 0.09797885492547968, + 0.12630756903545384, + 0.11757537262817565, + 0.11688867179707739, + 0.10979932790529734, + 0.11336188374846409, + 0.1320442333765749, + 0.12416340357541635, + 0.13337241725077414, + 0.10634742630936204, + 0.10939674856751501, + 0.1021514007940311, + 0.10092743360269135, + 0.13256200589285638, + 0.11955108802132025, + 0.13731836681222373, + 0.10005294504644739, + 0.12233663352384917, + 0.09585094794854557, + 0.10383189899457679, + 0.1171546126575045, + 0.09317199059025147, + 0.11722078005756285, + 0.13199824539779703, + 0.15605532292542268, + 0.12966467063223258, + 0.11362950331300864, + 0.11730809803235366, + 0.10781132028478835, + 0.08890492472182013, + 0.13372930401005204, + 0.11423067510864504, + 0.07704271750521621, + 0.1221283208734647, + 0.11981139780680063, + 0.12436904747770255, + 0.09759683262196667, + 0.09535419999786361, + 0.11237363793193599, + 0.08208840076530786, + 0.13344886702512032, + 0.11624174630455422, + 0.1010587377260286, + 0.12105181073000018, + 0.13918372731716908, + 0.10948044246629127, + 0.11857425371318395, + 0.11414499226379614, + 0.09672535474035812, + 0.1008287285842857, + 0.12088143321050873, + 0.11865610827129386, + 0.09158911503886603, + 0.10053826843326065, + 0.11159121065336879, + 0.08700714599190387, + 0.11228704727964318, + 0.13511869744020963, + 0.111152884359621, + 0.10542317516945536, + 0.13300819895670435, + 0.12844827135231196, + 0.08402929476609552, + 0.08614602662318574, + 0.12348262671568529, + 0.08696003277126667, + 0.12614543548177146, + 0.0942274947115354, + 0.10796982469065475, + 0.12613272829435504, + 0.10753620557093113, + 0.14603106539564437, + 0.1430371655724716, + 0.11104172966415161, + 0.11132046736328892, + 0.11144461308155504, + 0.11220562175780716, + 0.0925118318950714, + 0.11528195451352427, + 0.13096842455282914, + 0.1158758698241022, + 0.12913839141930783, + 0.13179726765521127, + 0.09913254980755075, + 0.10447088325647341, + 0.11861655395769925, + 0.13102265669664345, + 0.08675969091855538, + 0.12349648060221907, + 0.11266475559190474, + 0.11187657295982477, + 0.11256295081126352, + 0.096596589182752, + 0.15874579209137676, + 0.08819103401372748, + 0.11820177678058938, + 0.10267782905704811, + 0.18090788653056314, + 0.1531885052620999, + 0.13823605350205195, + 0.18754370722451302, + 0.10170704265098815, + 0.12602511184227516, + 0.09900548641031985, + 0.11456006434501585, + 0.13064942543887045, + 0.11787309966704443, + 0.09104813985444464, + 0.0938590507643756, + 0.11878020227751651, + 0.10612952678273567, + 0.1338921614592092, + 0.1406872586335142, + 0.11726016286023747, + 0.1097044935504469, + 0.08551921449571252, + 0.10511068935880113, + 0.09740850085197852, + 0.10301761124900281, + 0.11678398252321141, + 0.10271787754953933, + 0.11968830573985621, + 0.11836271375014842, + 0.09717922548542814, + 0.12153609964741122, + 0.10166719422247342, + 0.12229524788992559, + 0.1204251614510416, + 0.1095751353714955, + 0.13462092941593481, + 0.12379996626504058, + 0.10485777498031354, + 0.10707230046896792, + 0.11533492393439203, + 0.10286446913511486, + 0.12566229236998272, + 0.1266419436050498, + 0.11990990038313692, + 0.09887998282885394, + 0.09494530076331761, + 0.13650173312222694, + 0.1628585630020621, + 0.09613203685765902, + 0.07619236575480498, + 0.10217116758288157, + 0.1249821011868058, + 0.1013642007569843, + 0.12605129895251974, + 0.11404258681754591, + 0.11472096550004932, + 0.13261385411296558, + 0.10516310974018675, + 0.09145978222295102, + 0.11643909434893504, + 0.08948850854636617, + 0.13836439617539403, + 0.10110831774990195, + 0.13207671603798948, + 0.1242800831682992, + 0.129259794880564, + 0.10923694870987989, + 0.0931006207398667, + 0.12099463503672253, + 0.09449891998449136, + 0.13922979043485664, + 0.09855587099566533, + 0.1025499634054648, + 0.12775205906555617, + 0.13074088735357567, + 0.11284952909928314, + 0.1196054421918368, + 0.1167205067042091, + 0.09075196799914816, + 0.13202695093347253, + 0.11828359758722574, + 0.09564475527811205, + 0.1241310325614398, + 0.12824314909522636, + 0.10108251777559862, + 0.1251553390258921, + 0.09896104231900656, + 0.11758586395539565, + 0.09936259438054046, + 0.0997872645694563, + 0.12007381315559772, + 0.12004272416709179, + 0.10508548481644561, + 0.10882652941514828, + 0.10661327075212357, + 0.10697775196689241, + 0.10525108591791174, + 0.10048013783826426, + 0.11886603961558215, + 0.0887340455489744, + 0.12259577361654461, + 0.09010374345926585, + 0.08493020221668142, + 0.1071576177480745, + 0.10544801360755399, + 0.12058190055010816, + 0.10646357590516019, + 0.11236835076516864, + 0.1020830568955498, + 0.11170206507985375, + 0.08415739561014554, + 0.09632144537706248, + 0.10229093440378989, + 0.13367321534384152, + 0.12597648731350314, + 0.15776694901799698, + 0.10938355257451081, + 0.10894308292008151, + 0.08868856868751851, + 0.08264501410456056, + 0.1030297261211778, + 0.14371941170671185, + 0.11616777708202985, + 0.15536679864502384, + 0.10874372062609525, + 0.11309439124267162, + 0.1452649491553114, + 0.08258506217263928, + 0.11025376225120687, + 0.08318910232768041, + 0.11851938710151334, + 0.1257188867752418, + 0.11376852590983011, + 0.12390364926140342, + 0.14732927726497796, + 0.1248276883585917, + 0.11830923181042875, + 0.1524167747061945, + 0.0930556477069722, + 0.09872506615404839, + 0.08511857248290247, + 0.10960185681086819, + 0.10909660059572267, + 0.09634662603548386, + 0.1273787676433076, + 0.11699729599729805, + 0.0949631212139996, + 0.08217076096703585, + 0.11998271723031781, + 0.1261922014121578, + 0.13952655723719593, + 0.1234106429859545, + 0.10692216935778581, + 0.13049443007578546, + 0.10638644723011301, + 0.09997514878668384, + 0.09410257019475199, + 0.13224288383853372, + 0.11632405273969934, + 0.10233150422419067, + 0.13514912777482332, + 0.09597047335864148, + 0.10351814995257622, + 0.10762123364418733, + 0.09380390567045409, + 0.10236207105798834, + 0.11202602499523676, + 0.11488080059823792, + 0.11170552447882932, + 0.14731157614136323, + 0.10389687771909864, + 0.11605524702314775, + 0.15502836203749037, + 0.13580406064364964, + 0.1085429472255151, + 0.10004621764037101, + 0.1115904554672671, + 0.12489571563339937, + 0.10435101157717562, + 0.11598710548883004, + 0.10321114869245342, + 0.12100806755791273, + 0.10411249651102308, + 0.11504347771738045, + 0.13310544967536714, + 0.12298434538283701, + 0.11287992600004323, + 0.09545351562853571, + 0.11164050033974281, + 0.11770587737059114, + 0.11843321331175463, + 0.09196806227802685, + 0.11044582886382714, + 0.10689265188344751, + 0.08623285624624753, + 0.12213708071760154, + 0.10217911249585714, + 0.1133323207388037, + 0.106780788470121, + 0.11198755625714736, + 0.08779864595697541, + 0.12791246080405644, + 0.11039687601602972, + 0.12419274720444007, + 0.08708130333962112, + 0.12819256048974575, + 0.10628842763628663, + 0.13802018855460782, + 0.11526242362311968, + 0.14255026882412114, + 0.12480052378335037, + 0.10827620797491148, + 0.12812846174790157, + 0.1020851019432721, + 0.11583140239727978, + 0.1070571076068475, + 0.154878692464917, + 0.12436464005401261, + 0.11291071507422427, + 0.09684415625138677, + 0.1061398555320227, + 0.11098829381404106, + 0.13689340449197174, + 0.10493112086161331, + 0.1144256231174106, + 0.1347460004243068, + 0.11752109173953708, + 0.09711540409139637, + 0.13321483022632674, + 0.1070424793645134, + 0.11679811021625285, + 0.10007824798765286, + 0.13237982394913703, + 0.13461897049277918, + 0.11344732733777282, + 0.09384913719153247, + 0.07331861448009572, + 0.11229407318928317, + 0.13328896314258054, + 0.13075111284312885, + 0.13172978173826927, + 0.10351434050666336, + 0.08791603205909887, + 0.10477054628360066, + 0.14876179522979885, + 0.109235000074231, + 0.12236921251362759, + 0.11173945329323634, + 0.10319337774593977, + 0.1217077997208145, + 0.09871482095349038, + 0.08893911506551702, + 0.0991152776168469, + 0.11849890448043927, + 0.10625068727229538, + 0.10875512454324743, + 0.13759004329741573, + 0.1240477468492056, + 0.08713650665523058, + 0.14070924072290827, + 0.10585778786557669, + 0.12402633099562754, + 0.12642452371039078, + 0.11704224597957331, + 0.12338812952601433, + 0.09946940576236343, + 0.10639514989064262, + 0.10290426069323558, + 0.11606322789161734, + 0.11314059631917793, + 0.1214628169166096, + 0.11919477399856429, + 0.1021984630283632, + 0.11599199029451555, + 0.08874337721540027, + 0.10338222801187419, + 0.10700392239558713, + 0.11912444613394828, + 0.10680917701658253, + 0.10119388456808757, + 0.11517881381639049, + 0.09648115908085401, + 0.100788530879617, + 0.11904454209885694, + 0.11631151274151659, + 0.1310956296950034 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgb(252, 206, 186)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 2", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 1.0494890221433808, + 0.20779150724282697, + 0.09632314718208726, + 0.09693844859307203, + 0.11735604996747671, + 0.09248512608184617, + 0.10470127483606521, + 0.07751580845243312, + 0.10158117069428874, + 0.09637455820830643, + 0.09775591459424382, + 0.08094188443894022, + 0.10597191813134695, + 0.10076588089248655, + 0.09824907563646064, + 0.09739082896188647, + 0.11938982021986835, + 0.13442099021807202, + 0.08153341878757273, + 0.0824183759624639, + 0.09276525782330523, + 0.11870567612556678, + 0.10021877547303437, + 0.10473686791650837, + 0.10608257118263283, + 0.0990390647306804, + 0.09142890759957309, + 0.09823328706402089, + 0.137501344157194, + 0.08667135107957631, + 0.08446244364437465, + 0.10278923552064863, + 0.09216347247942304, + 0.09236826430696178, + 0.12039690537254619, + 0.10974036432139075, + 0.09897592679872952, + 0.08937468061454236, + 0.10008577341247211, + 0.07911134822540318, + 0.07711771038940553, + 0.09804478483910824, + 0.08311569618989842, + 0.11933096060879388, + 0.10418921119389056, + 0.0933391742461118, + 0.08395912943100604, + 0.08618208817191338, + 0.07776491136864895, + 0.07522883712043993, + 0.09935209651175031, + 0.08247071611262528, + 0.1033999224740705, + 0.10163254600731587, + 0.08714232108459449, + 0.1135056560332622, + 0.08721128265875842, + 0.08422351175700958, + 0.09165685857101584, + 0.10352790006068921, + 0.10840364780187692, + 0.08204731594612533, + 0.10362537136481978, + 0.0887086331082975, + 0.11400938928776998, + 0.08531179632230285, + 0.09588253002224477, + 0.11229972052586962, + 0.08120561983213681, + 0.08079227967510212, + 0.08690026460075996, + 0.08456886214404023, + 0.10001332235741156, + 0.09524632142328074, + 0.11135267545454375, + 0.06678111836443909, + 0.09527649301982949, + 0.09871546422937283, + 0.09777398265326638, + 0.08157345008720164, + 0.10295864714916123, + 0.10012383439643026, + 0.09309686733159893, + 0.10286539555107103, + 0.08610643636746763, + 0.09140324923432015, + 0.08045953709330948, + 0.08195238369228834, + 0.0768544744464481, + 0.0965769324865639, + 0.08346117229379153, + 0.09118515931870705, + 0.09320374902874147, + 0.09140490530871613, + 0.06096839864295774, + 0.11503389704029612, + 0.09284132715267761, + 0.08856283082626962, + 0.09542112803947345, + 0.11276850500242265, + 0.0806890444806503, + 0.09587202286856715, + 0.10038546465617627, + 0.07594342418049566, + 0.09661622312143461, + 0.10132146384508958, + 0.08601703062739019, + 0.10052855363042143, + 0.11603584760983823, + 0.07746425836968969, + 0.11674431868593874, + 0.07835943373195536, + 0.09707985896511975, + 0.09093699474290237, + 0.08370655185529195, + 0.0894658628361783, + 0.0971956755373856, + 0.11095133206848722, + 0.08058758650507061, + 0.09518920611094282, + 0.15466342664659696, + 0.10795583641851685, + 0.10856177095524425, + 0.09796294321447853, + 0.14211403167127148, + 0.0940098354558252, + 0.09326023569362245, + 0.08793996680363055, + 0.07474515364886182, + 0.08790212038229722, + 0.11792374255892368, + 0.0882312245982813, + 0.08646095544908519, + 0.12248948860784067, + 0.08392690219021287, + 0.10482323031002598, + 0.10183476386545831, + 0.10142467172595507, + 0.0771923323421433, + 0.09976073702035704, + 0.10015029173875746, + 0.08402952479967596, + 0.09052318020847262, + 0.08977009655389065, + 0.07911877297635479, + 0.08035710713367492, + 0.08821132198130004, + 0.09305678064080966, + 0.09175622277729001, + 0.07965784491748096, + 0.07974676375897459, + 0.08573487762368394, + 0.08865909095185673, + 0.09268818158726366, + 0.13604017288626039, + 0.0666238556125932, + 0.09877825172538662, + 0.09579663065361184, + 0.10009008746298724, + 0.07638071739030722, + 0.11673810471776168, + 0.11005177558420752, + 0.09677937693132443, + 0.09999629916469215, + 0.07437052888289969, + 0.07430685334758533, + 0.14449136944435464, + 0.09618010977502761, + 0.1168790464878481, + 0.08338746466955806, + 0.10342905012377067, + 0.08185907339604795, + 0.14027998661302135, + 0.08628448401372896, + 0.08911361659213402, + 0.10220300483193184, + 0.1222319236893971, + 0.09738021189821808, + 0.09250664296272752, + 0.13323794830652347, + 0.10810151938438808, + 0.08805468736625895, + 0.09044186885225707, + 0.10518114864791189, + 0.09423740815133494, + 0.09535054858870481, + 0.09117072446477108, + 0.11174320353827083, + 0.09041763161585396, + 0.08064696072355565, + 0.09953955885406138, + 0.09156215929516351, + 0.08088998762307562, + 0.10263299342529555, + 0.10859754047977108, + 0.10593329747388765, + 0.06795391031281328, + 0.09112486408891839, + 0.11000689246783606, + 0.08570796518940627, + 0.0926849145109369, + 0.12411138259086846, + 0.09610795067407923, + 0.08005483108367094, + 0.08959647496867049, + 0.08468284092845267, + 0.1243654980226608, + 0.09320458207199522, + 0.09554723307124018, + 0.08940724889934093, + 0.0846817248476653, + 0.09804890302302229, + 0.09966335927916654, + 0.09947272037138304, + 0.06820478725138554, + 0.1444000294259702, + 0.06283381804726568, + 0.089479131318497, + 0.10577761337886689, + 0.08298961998555819, + 0.09120147728636292, + 0.07523679363187685, + 0.09661758640158716, + 0.10061436542000894, + 0.1064282163975663, + 0.07767431414989938, + 0.08342743960153792, + 0.12286622498487304, + 0.08603856843199506, + 0.08536469538265032, + 0.07901281483689945, + 0.07643366626381917, + 0.07644976473311021, + 0.08800872983305325, + 0.0989439505799013, + 0.07424643949717653, + 0.0949447264201708, + 0.0915289301064522, + 0.10063929695471152, + 0.08081622912091456, + 0.11156310847456681, + 0.10384296051536945, + 0.09628655015916465, + 0.09317982757042255, + 0.1058587195210244, + 0.1268007375276579, + 0.12939396512482307, + 0.08569204814369892, + 0.07498042477333176, + 0.09630073238976924, + 0.08529881520857689, + 0.1151406412408683, + 0.08564984365756255, + 0.10147335866301166, + 0.09903168185697969, + 0.07900627456078332, + 0.11428694394715472, + 0.09581270002599428, + 0.09546346096986166, + 0.08849564590084688, + 0.09420458077570838, + 0.07053912463331136, + 0.11174588968178784, + 0.09324750839052168, + 0.1027522707312853, + 0.10750509817520158, + 0.07805275660832658, + 0.10958482565020497, + 0.09817933335197239, + 0.08846436038764918, + 0.10057679581035867, + 0.08753486383810843, + 0.10447175021607204, + 0.08694248541634518, + 0.08057136320116151, + 0.09857449616043232, + 0.06488836608331876, + 0.11581756730069197, + 0.07756249118648527, + 0.08872642861766883, + 0.1049334994265908, + 0.08601795001487016, + 0.09316545415461824, + 0.08382033523158552, + 0.07207814783231119, + 0.07796933336969265, + 0.11209253313141246, + 0.11248548036852081, + 0.08632726682361191, + 0.08206993175518895, + 0.1219354011932049, + 0.10063362821330388, + 0.07184824585216461, + 0.08515276233254196, + 0.13420010865740262, + 0.10891663092423441, + 0.0883440022874038, + 0.07996201085055929, + 0.08667543900005126, + 0.09324252385847917, + 0.08507117160117378, + 0.06773634333027688, + 0.09192002138886239, + 0.09257415317199963, + 0.07422901617144952, + 0.09245258444966765, + 0.09326612420883951, + 0.0896449541247779, + 0.08745026891305725, + 0.08835481093169303, + 0.11048027709594765, + 0.07619484881323023, + 0.10724462933845842, + 0.10481987002319221, + 0.10539821489781173, + 0.1209330466747671, + 0.11960425087282302, + 0.08943811091485444, + 0.10518963462414177, + 0.09736502122954066, + 0.09340103042329169, + 0.1292402053689996, + 0.08953619892241692, + 0.10121453778805377, + 0.10002381240694568, + 0.0818458174040591, + 0.09039372996269204, + 0.07517165931469916, + 0.07166955784779361, + 0.11378568476411788, + 0.09160534820310057, + 0.08059177319787474, + 0.08499657157715178, + 0.11263769083542137, + 0.09246821931399526, + 0.11605736208745121, + 0.08033821149031078, + 0.07079886947114859, + 0.10586023148192375, + 0.1318524117271879, + 0.079521897888264, + 0.12078276904421893, + 0.07791094356661614, + 0.09737133102266815, + 0.09693405396354036, + 0.08282456884052598, + 0.08885177143265281, + 0.11169269839960272, + 0.11488125615294574, + 0.1048083419326066, + 0.09299433929632907, + 0.09646286201067482, + 0.0869897195286501, + 0.12551074472330018, + 0.12402943239560761, + 0.0756638041772709, + 0.0844682272606228, + 0.08202987575137666, + 0.08368889717046153, + 0.07654643299031991, + 0.08885724222732218, + 0.08937931219280365, + 0.10386019036441482, + 0.08761192900427923, + 0.08423203847640194, + 0.08502711887255068, + 0.11109524039247481, + 0.08368702975068672, + 0.06627657332820269, + 0.09436515060923786, + 0.09871902593380319, + 0.07147202147377119, + 0.10946610256700862, + 0.06781402092076073, + 0.09688574552818296, + 0.08955449932980915, + 0.09008061231049685, + 0.08611481143619618, + 0.08314052631851722, + 0.08557767467519775, + 0.09068730255198107, + 0.11182800116471182, + 0.09656790026399234, + 0.0999565145311074, + 0.10053406731145338, + 0.08359734697414684, + 0.07799719779200211, + 0.0824746214776525, + 0.09997951585135166, + 0.07901355831721713, + 0.0911782633306115, + 0.11406039834945211, + 0.10795825540712022, + 0.1029143301599193, + 0.12182195001325823, + 0.08319604396363645, + 0.08641700355290616, + 0.12847968296432435, + 0.1113910055467498, + 0.09748154396461158, + 0.08911946398626118, + 0.08155374730608082, + 0.10424011057380038, + 0.08708332816131584, + 0.07203844937258845, + 0.09896150407234312, + 0.08077052945113998, + 0.10746209104168802, + 0.10005939172662462, + 0.1053495768785623, + 0.08845383942577717, + 0.09235672172565476, + 0.08804654752729006, + 0.08802995277568763, + 0.1218766329071297, + 0.11493375483892077, + 0.08876916538524884, + 0.0735460092750562, + 0.09087848172836417, + 0.1074368052676907, + 0.09636207925206368, + 0.08237557759695083, + 0.10294433069358545, + 0.08511515885070496, + 0.0972407850634674, + 0.08960766335871817, + 0.09330443905527626, + 0.08044674553427072, + 0.10021946667198776, + 0.10939374603677968, + 0.11100916974182057, + 0.09001875994853574, + 0.0990810872987152, + 0.08547886986595823, + 0.08205175922612201, + 0.07316649303233047, + 0.09220520130668886, + 0.10793794052300654, + 0.1345262050215565, + 0.092019764026055, + 0.09220573381229924, + 0.09518899869131532, + 0.10332138662220577, + 0.09937909036087385, + 0.08585888993733068, + 0.07585408450509404, + 0.0808127627407749, + 0.09714124394185007, + 0.09317951565401335, + 0.10820610236274296, + 0.0810182553475647, + 0.11655638342356821, + 0.07326220492066365, + 0.07465345253036743, + 0.09720452956911838, + 0.07209787324870648, + 0.09155616602928761, + 0.10386490885764005, + 0.08912960723679901, + 0.12340938375744637, + 0.08687564191985293, + 0.0896824911939405, + 0.0808488453158818, + 0.07304307372947955, + 0.09425693640463212, + 0.10636927831837584, + 0.10508536181631517, + 0.08658116560234515, + 0.08699611943620178, + 0.09819079390441073, + 0.08747493502753552, + 0.11493508750455468, + 0.12573107840249712, + 0.11799726363969364, + 0.08164445141967168, + 0.0914407926954405, + 0.1100841180654066, + 0.1030601764349035, + 0.09155621208647584, + 0.08309246257825724, + 0.0727539423490404, + 0.07920795585406068, + 0.11581218863937612, + 0.08218377078201679, + 0.08835032946995913, + 0.11277495216532349, + 0.11176129019690734, + 0.11215909836318037, + 0.08825373132253664, + 0.09036295503905456, + 0.08827169370615684, + 0.08720210117273655, + 0.06996003022422731, + 0.12433010274278787, + 0.08823085768968109, + 0.10471629971504447, + 0.08021533984729246, + 0.09600639857065446, + 0.09550325446011242, + 0.08360725994721774, + 0.07224226516029451, + 0.10024760380914224, + 0.11250286294433103, + 0.09334023183953688, + 0.08881200250462323, + 0.14497996290768794, + 0.09327878594526999, + 0.11788066093977473, + 0.06686893571901706, + 0.10894434697935398, + 0.08776724265926289, + 0.108623779538819, + 0.07680686539977807, + 0.09681629366830015, + 0.1033701497450712, + 0.094709567725555, + 0.07641682725610499, + 0.0763108992924882, + 0.09496911010529505, + 0.11413322499670063, + 0.10348678915866849, + 0.08336107062324034, + 0.12516785077877868, + 0.09027276613790336, + 0.08296458033483406, + 0.09389951648475887, + 0.08248147022378077, + 0.0737017669945223, + 0.08792072609207204, + 0.09231880329989804, + 0.08074048046222003, + 0.07921764476758682, + 0.09423620291715938, + 0.09550729378786259, + 0.11118293417605475, + 0.08739609888045702, + 0.10702630372838015, + 0.09435360101019306, + 0.09316640747296169, + 0.09308973092412821, + 0.08462453504252818, + 0.09443116826950951, + 0.10092311675657256, + 0.09466209013030732, + 0.08513620487524115, + 0.12425697901630216, + 0.08475687349397674, + 0.11867925553143407, + 0.08438232026638581, + 0.08215450566862507, + 0.06999868975356188, + 0.0846185396164795, + 0.11945339889426562, + 0.09120055632003869, + 0.08127562776574256, + 0.1100083260486684, + 0.10180847891582998, + 0.11369191092800679, + 0.09090412294740553, + 0.08402341937609878, + 0.0803488870389319, + 0.0973121505912972, + 0.07591869475632695, + 0.10532455768568323, + 0.07317684505189714, + 0.08337757129397616, + 0.11340972713811971, + 0.08607943868264438, + 0.07888933973131822, + 0.11979089913397557, + 0.08506267299511595, + 0.0948660646934423, + 0.0831322211566147, + 0.10542442036197078, + 0.0872059781124521, + 0.08803342275958558, + 0.07418714888587331, + 0.09786511494229043, + 0.07202145287433136, + 0.07358119432484231, + 0.08288086835590433, + 0.09408047217292739, + 0.0846495010830601, + 0.09323809578102339, + 0.06622917279401758, + 0.08366518282997994, + 0.0780302872371112, + 0.12129645824001964, + 0.10299448696785853, + 0.07516892196033917, + 0.09681739376536683, + 0.09397224044523778, + 0.09134909387325511, + 0.12084257950445314, + 0.09025741076732045, + 0.08072747778315577, + 0.13958244644443482, + 0.10058237535395813, + 0.09454703188909837, + 0.10004774923983722, + 0.09624343626384549, + 0.09388880620317026, + 0.08951213826449955, + 0.07663789716201903, + 0.06957320618141671, + 0.10246766058625192, + 0.09816609961077521, + 0.09468041860591571, + 0.10821508448293968, + 0.10465606587321571, + 0.11179489119217442, + 0.07810489220214621, + 0.10515946305715423, + 0.0893161734576807, + 0.10218094955519831, + 0.10999665604355537, + 0.10165395573475192, + 0.10455615123468519, + 0.07946916448183848, + 0.12969749783084175, + 0.08819607861729963, + 0.08433024234304419, + 0.09518503550310706, + 0.08982817326347496, + 0.09921556990501575, + 0.06809700398581654, + 0.08252246011921979, + 0.1315956751213803, + 0.08707019373975318, + 0.10007701519854356, + 0.09756824590975227, + 0.10465783677037568, + 0.08709517254585847, + 0.08915374021073595, + 0.10336880397642294, + 0.1105904412480339, + 0.08604305639220786, + 0.09932499210033593, + 0.08002847034518315, + 0.11202004875394854, + 0.08343228431264658, + 0.08691514568282888, + 0.09261118369381363, + 0.12289227710505517, + 0.08862543765131944, + 0.0977852725585102, + 0.1012145350687473, + 0.10957507231364196, + 0.10689375177983237, + 0.08817988194715014, + 0.07926189980342048, + 0.08167665480541168, + 0.11785912302135264, + 0.13994432778094662, + 0.08729159164961268, + 0.09697504639097047, + 0.09933509483602963, + 0.0874928931838875, + 0.07801412353883896, + 0.13690318933553558, + 0.13195645153427576, + 0.07487083882387655, + 0.12409448668814868, + 0.09434674630295785, + 0.16024566545218588, + 0.08807242212262839, + 0.13435599279366742, + 0.100129662071463, + 0.08509390953139645, + 0.10324033919935399, + 0.0656177715065827, + 0.07927439763260516, + 0.10476991921598444, + 0.07746836778790335, + 0.09364761827941728, + 0.08465552021666553, + 0.0932904834241392, + 0.07744392928101412, + 0.10203464838051222, + 0.10386801606062944, + 0.09000170201822487, + 0.09379489130350772, + 0.096440281405178, + 0.08835317201300676, + 0.07114611606109106, + 0.09444107889128639, + 0.0967687367248639, + 0.09436652237532206, + 0.08506170426117918, + 0.08411490898227335, + 0.10894147328174741, + 0.0880892242548025, + 0.09202698448451367, + 0.10459709748567705, + 0.08996223072033159, + 0.09720394115364533, + 0.09796410248149369, + 0.08774367724886593, + 0.12393429553130339, + 0.12170078196654473, + 0.09533229443209075, + 0.09305312017083374, + 0.10800526552860568, + 0.09121538302113281, + 0.08504165286570482, + 0.09777032030941782, + 0.09611044082878971, + 0.08751063112261254, + 0.09069397219455812, + 0.09938267350046004, + 0.08786330705908561, + 0.09321786434704238, + 0.09875618392909792, + 0.11450677652258648, + 0.13172881938766462, + 0.08331385865705476, + 0.08621047917942896, + 0.1091537830634989, + 0.09828648579578163, + 0.0888669810014644, + 0.0722106213952441, + 0.10779992674651237, + 0.09075981790957666, + 0.0664463225348825, + 0.10779340531924962, + 0.08025741333056328, + 0.1012363975526867, + 0.0917949426925468, + 0.09274799350086985, + 0.09580968836413924, + 0.11611464721837482, + 0.07839784378120193, + 0.09944861983990924, + 0.08119194965606441, + 0.09676319472210716, + 0.08684927359894859, + 0.08475133527077876, + 0.09985060674417262, + 0.062215214237002846, + 0.11195179421504693, + 0.08888496359896744, + 0.10486497832063839, + 0.115256380739436, + 0.11241425381225069, + 0.1035022920572164, + 0.10263316394047158, + 0.09351658464965812, + 0.10252660791480459, + 0.10993687345738745, + 0.09362740242920894, + 0.09117499688213251, + 0.1115521078490417, + 0.08035534875637555, + 0.10182749162035053, + 0.08384571988654924, + 0.09140129306345078, + 0.1037148814838969, + 0.0820234230474602, + 0.07521564248689933, + 0.0925535521537321, + 0.06603449260263354, + 0.08475958807090407, + 0.08833671766666189, + 0.08895315923291526, + 0.08467662880491707, + 0.09595508134873543, + 0.094887311084808, + 0.07609542737266702, + 0.11085444705120723, + 0.11504883650779503, + 0.07786027461423439, + 0.08018985435509686, + 0.069830674890149, + 0.06877326850638932, + 0.10447981790101595, + 0.08108904651160219, + 0.10482531676099541, + 0.0990143467684773, + 0.08221308669132275, + 0.12075518339453935, + 0.09898497572777755, + 0.08619811315745222, + 0.1064171619559689, + 0.09379413209401444, + 0.08664474423706989, + 0.11161753224053579, + 0.11469246462444292, + 0.07851729460640716, + 0.10457398985819857, + 0.08815334167517881, + 0.11572238551122206, + 0.08624406408115548, + 0.09325596988531411, + 0.09792990847573456, + 0.0910219464963958, + 0.07207732967488907, + 0.10076610223754835, + 0.08677287851993375, + 0.09048466828691139, + 0.07775532770867913, + 0.08795816462063971, + 0.07373802381670319, + 0.07345673698032217, + 0.13661751299189884, + 0.10344616833597015, + 0.08523185790252835, + 0.08322780968364797, + 0.10217809868714106, + 0.07678931058033521, + 0.12189353578783348, + 0.08689330327273682, + 0.08408579501677042, + 0.0923260311826016, + 0.10551428288083653, + 0.0913242390808258, + 0.07303846126715427, + 0.06819481746612772, + 0.08449662444744137, + 0.09802649542952394, + 0.06881086896197663, + 0.07954754775629745, + 0.10441781629228566, + 0.10160305534730432, + 0.10045624286083239, + 0.09206878626665264, + 0.10584003406527578, + 0.10896678102390786, + 0.09854648495672255, + 0.08515721834357913, + 0.08093422341570713, + 0.09601829476064253, + 0.07349050910971229, + 0.08969458014277285, + 0.10755814259652705, + 0.10926906879667687, + 0.07579719792128321, + 0.092966446996949, + 0.0974085304656485, + 0.09332115414337347, + 0.09056618105396382, + 0.08157814714901931, + 0.08575249566454352, + 0.09823806228369653, + 0.08557791580818716, + 0.09885004884809262, + 0.07582594263511419, + 0.08649715113206634, + 0.09287960911818201, + 0.12181559219727124, + 0.10072401634047526, + 0.13692176363243538, + 0.07697154510367521, + 0.10798981027622773, + 0.09613483482225084, + 0.069499492747592, + 0.07298341770823089, + 0.09744195442394525, + 0.08584015103380037, + 0.08804126492520778, + 0.09036190840706636, + 0.08526107980084861, + 0.08383455855907525, + 0.08099919234290984, + 0.07991165012836912, + 0.08125257725845184, + 0.074618072636385, + 0.10002695426873853, + 0.07727484726877067, + 0.0843034954208432, + 0.08754282617246686, + 0.1040179873559601, + 0.11975924316734209, + 0.0810544086067402, + 0.09637305872499248, + 0.09456651926639177, + 0.07844255519269669, + 0.08628276097125497, + 0.12605257800844807, + 0.07566190590328373, + 0.10412876431735309, + 0.09458337980185327, + 0.09319221901557102, + 0.07337065340687489, + 0.07395509941419065, + 0.08110272146366083, + 0.09866078609396804, + 0.08712647526092912, + 0.08829935912683652, + 0.09385566511594173, + 0.07606768983299492, + 0.11237303613848526, + 0.08307199520263547, + 0.08984855979776524, + 0.08428261072777257, + 0.09199864472197354, + 0.12809632204371887, + 0.12421665995518272, + 0.1017946803736865, + 0.1047894536590529, + 0.09763433945900166, + 0.09807082129126848, + 0.10797944353305548, + 0.08044104035146285, + 0.09827986596944957, + 0.09504850425870104, + 0.0906766831865348, + 0.07980204574588974, + 0.08339492456262329, + 0.10865991075615491, + 0.0946420682263388, + 0.10874180388082973, + 0.10405745246303535, + 0.08766171703968431, + 0.1029117184988178, + 0.08187600502655445, + 0.10161370476287898, + 0.09406237700276282, + 0.1036848217714754, + 0.0957018782055323, + 0.11230716213706486, + 0.08361513483356868, + 0.10736441616933438, + 0.08646556632770153, + 0.09034355608710908, + 0.1498932709969458, + 0.07697984582922075, + 0.09458015619886555, + 0.1059977679961243, + 0.08968367464389809, + 0.1088518991043061, + 0.07217157482099044, + 0.10435939956869644, + 0.08489323699018012, + 0.08555877211271164, + 0.09127863150930479, + 0.12755304110837004, + 0.1187698080790384, + 0.12233632691230305, + 0.10338375883295838, + 0.11310916901519315, + 0.12491146138891394, + 0.09717588572889684, + 0.09498760491005717, + 0.09222638719326569, + 0.09043095796827272, + 0.07802890985729245, + 0.11798829581666015, + 0.08946727486007477, + 0.08947416155546234, + 0.0927083779489336, + 0.08120368641974518, + 0.10243261105575147, + 0.0937475748992254, + 0.09048114023680028, + 0.10959971823247698, + 0.10732939690728135, + 0.08775861281471749, + 0.10041002310844221, + 0.09238444674593903, + 0.09227773794979262, + 0.11324970513650295, + 0.08028008892657831, + 0.10537499354294184, + 0.09289877518534978, + 0.0900544138636713, + 0.09688486759939448, + 0.08561022659987383, + 0.0865226516912625, + 0.09626583930788284, + 0.08214072088422422, + 0.08966674443985946, + 0.09321101047077576, + 0.07069043910893713, + 0.08319890972313296, + 0.11812151792765832, + 0.11841910776814812, + 0.11102817107262364, + 0.08603091164776616, + 0.10087461591457436, + 0.09930576395639215, + 0.08991342816778954, + 0.09410747635013335, + 0.07113975332176231, + 0.08548357133268561, + 0.100119855454298, + 0.10304954578348847, + 0.0938905387478522, + 0.08165159569251931, + 0.10032310488169863, + 0.09379961305139967, + 0.08812052758844377, + 0.09101165308433816, + 0.07142413287358201, + 0.07215023038681814, + 0.09069532143872686, + 0.0945830470747454, + 0.08936074073042398, + 0.09509983462848627, + 0.08819407042050906, + 0.09895612047621281, + 0.12320411843248454, + 0.09719705827816204, + 0.09403554792349186, + 0.09656387960395053, + 0.07927797338332429, + 0.09612165901337846, + 0.09438534626280226, + 0.1202300056747604, + 0.09321296648828903, + 0.08465088604045802, + 0.1136245303554946, + 0.10891370063229419, + 0.11591879192841532, + 0.07765834939361925, + 0.12207015442815676, + 0.10566466910185557, + 0.08544640325413726, + 0.07836747368995406, + 0.1166393330541885, + 0.1287724609972369, + 0.0741947593038201, + 0.08642909209474578, + 0.0884402276169547, + 0.10871998610230282, + 0.08929062482973987, + 0.09255982227591132, + 0.0873461051122169, + 0.07280898088651601, + 0.09069874393802992, + 0.10045317058811196, + 0.10644491470840209, + 0.07334477135485233, + 0.11306861660829089, + 0.08628949646149424, + 0.09421826080561098, + 0.0809424751407694, + 0.10922395527909498, + 0.10614013548855482, + 0.1081069738213579, + 0.09677424729192656, + 0.08942362296140575, + 0.07473289510390023, + 0.09512618887659295, + 0.09906095625385074, + 0.11560471189256467, + 0.08892196924956976, + 0.09111889239238055, + 0.083298765207763, + 0.09977625788857958, + 0.09288476140193963, + 0.09640160568133749, + 0.09798385283810138, + 0.09351866746139485, + 0.081313569101818, + 0.1207566222529079, + 0.09407509204170718, + 0.07399190963208441, + 0.07944983464469327, + 0.07575498397458322, + 0.0972322517391403, + 0.07330232028502666, + 0.09968843125600294, + 0.09795432432320307, + 0.0964701638521024, + 0.12748873011079961, + 0.10640311162530681, + 0.10619080460587439, + 0.10757364438007885, + 0.09267688579395664, + 0.093239523142733, + 0.07087151824917984, + 0.07455146500255204, + 0.10792429027854568, + 0.08065793559235485, + 0.08767972269266852, + 0.10006650219865483, + 0.08415225518056216, + 0.09845017328928124, + 0.12264791272076192, + 0.0958769195895724, + 0.07604308922036891, + 0.08474721921009849, + 0.11450445129784857, + 0.10092937596955733, + 0.0882755374251799, + 0.09406938142080007, + 0.09424604856351079, + 0.10184834043690862, + 0.06922787431764031, + 0.09514663089931377, + 0.09267646283646573, + 0.08525568094084902, + 0.0859403184505349, + 0.13414032314648053, + 0.13512121771351104, + 0.11497075639762369, + 0.08365432711269737, + 0.08677045314182263, + 0.08758873766825247, + 0.0891667834917378, + 0.09126607879748627, + 0.09850947674786716, + 0.09583134543855057, + 0.06598322695271709, + 0.09259196513922273, + 0.10238444505411562, + 0.09652712868707383, + 0.11876894266196006, + 0.08983172098090611, + 0.08863879556686535, + 0.08935628025640403, + 0.0845658337702266, + 0.14740395831076125, + 0.11594802930454745, + 0.07647457663160082, + 0.10994570584500238, + 0.0841022230591374, + 0.08153856888558748, + 0.09490530035871836, + 0.11931276929118051, + 0.09837221291669608, + 0.08873518306786742, + 0.09086334133674974, + 0.08382599819720404, + 0.11592607426292977, + 0.10142762916981891, + 0.06985257834215462, + 0.08055173925561099, + 0.07128097551669377, + 0.0872451172639686, + 0.10722087194644936, + 0.11209290770122371, + 0.10442458878982727, + 0.07462998842649467, + 0.08350967143881731, + 0.09897084157720254, + 0.09428957184470968, + 0.07970911610458338, + 0.10523052136683002, + 0.1044933078291653, + 0.09034105668512803, + 0.1177632256401642, + 0.1060113227063731, + 0.10221070750989472, + 0.09037277908804428, + 0.08672579253191885, + 0.07704097741814997, + 0.09023890298853988, + 0.08766250283292344, + 0.08874703667784042, + 0.119987834550286, + 0.1024154747381749, + 0.1147761863198809, + 0.09388947187057643, + 0.07631728063783978, + 0.0929831422520161, + 0.08852698226948985, + 0.08689593662160099, + 0.09662112024785964, + 0.09954646099826464, + 0.07675166000623768, + 0.07909444100838253, + 0.07917765237584778, + 0.10829433215105336, + 0.10236014982069441, + 0.08281317913102668, + 0.1386258555812464, + 0.09429308856093499, + 0.08189109722596312, + 0.09717268487151179, + 0.09603988199993235, + 0.06784582637175611, + 0.09046939723974283, + 0.08201748372995823, + 0.08453572711107202, + 0.10094921437423895, + 0.140071410123793, + 0.11494622688405975, + 0.0939536120739629, + 0.12306407533001282, + 0.11180671242465141, + 0.1090153481966934, + 0.1053207874149096, + 0.09204760261726762, + 0.09930721042607764, + 0.09253799288380296, + 0.06960595678204348, + 0.09270728261745331, + 0.09313512122798567, + 0.10252161798383577, + 0.08754231431932005, + 0.08546864795061379, + 0.09543692945113369, + 0.08832713549732056, + 0.11075906505487995, + 0.10327672325299764, + 0.1055607581845156, + 0.08931640641679722, + 0.11729695116959064, + 0.09457599187398578, + 0.087587391528972, + 0.10119600397899223, + 0.07241568361934336, + 0.07344297408812556, + 0.0842780345193506, + 0.09501241836294638, + 0.08568892976099501, + 0.09312742843475462, + 0.08111516203976502, + 0.10290852695289696, + 0.07689464474474032, + 0.11214516718004887, + 0.08939267815062923, + 0.09422877735046555, + 0.08940828484211971, + 0.1000257751318663, + 0.0946868274048529, + 0.0852020847781705, + 0.11268297487486828, + 0.11245486771462254, + 0.11573575178617379, + 0.07986063675395691, + 0.11117203857822587, + 0.11238909247994507, + 0.09193876574964, + 0.07511685737698034, + 0.08406850114076556, + 0.08126469245161974, + 0.086802059440977, + 0.0984158749255506, + 0.08316459769558672, + 0.09618706674384592, + 0.10529092092183115, + 0.11635239444943056, + 0.09109075431791981, + 0.11301187888711935, + 0.0981542503451072, + 0.09747442504974722, + 0.1095078322870145, + 0.08832026122668786, + 0.10212839914371073, + 0.11842128313569646, + 0.09628288834747978, + 0.14091473115466918, + 0.08192862679266065, + 0.09449201156382825, + 0.13678707637064758, + 0.08832145287888109, + 0.09224148860160904, + 0.09149459401084994, + 0.0812433628167934, + 0.128041739608673, + 0.08956231627100623, + 0.0764392754381175, + 0.11147773216353557, + 0.07029996039483308, + 0.08097364448318069, + 0.10469250434028818, + 0.08395072747291427, + 0.09022897705400897, + 0.0815702864328957, + 0.07955306786068604, + 0.10013638382722218, + 0.06711272910058533, + 0.07544753456266172, + 0.09609612151962439, + 0.10747084805203845, + 0.07947894229610744, + 0.11237220131780203, + 0.09295615122946312, + 0.08935348474555661, + 0.07061624794775691, + 0.10632325593593671, + 0.07600763205280911, + 0.12618097124854108, + 0.09047161886141668, + 0.07518401318699693, + 0.1432274372750503, + 0.1294611306722955, + 0.10064687856466642, + 0.10413748268573508, + 0.08386921580796079, + 0.08431863956434521, + 0.09388360240206907, + 0.13486188818452968, + 0.0926215024797459, + 0.09582903937273635, + 0.09241279907443073, + 0.12909905353141918, + 0.09378507636386345, + 0.10664279174573382, + 0.07000173430209419, + 0.06976958735074194, + 0.09700534196787501, + 0.10572519834025644, + 0.0947650311551739, + 0.08325420305939192, + 0.09781222667511963, + 0.08247211124643558, + 0.10603578390965644, + 0.0820967026006266, + 0.11573247354922986, + 0.10669491019981149, + 0.07200242069561226, + 0.08861380566353072, + 0.08934072524165967, + 0.09242151822103574, + 0.08618504599480323, + 0.08427255003978998, + 0.09460408732723449, + 0.09875791255600308, + 0.07738973300351923, + 0.09702309682206665, + 0.09850830108970507, + 0.06668382236075009, + 0.0880229945704257, + 0.0848777621883316, + 0.08418346259656503, + 0.09281701767016196, + 0.0898655185885127, + 0.08502547068052124, + 0.11640529547876188, + 0.08997668271407322, + 0.06931842527730335, + 0.10391971496560262, + 0.08876106928390279, + 0.08095799131770781, + 0.10495600906225791, + 0.0892071345658669, + 0.0774222239389036, + 0.09617626462255476, + 0.08489079071742489, + 0.09937601995576464, + 0.08284868643086156, + 0.07740551185084299, + 0.0822733226790953, + 0.09060787226321224, + 0.08826938079390712, + 0.07279187558183695, + 0.09403887963781912, + 0.0889026620384277, + 0.09897023243721415, + 0.1055962047298409, + 0.08998190608965856, + 0.08682019107366068, + 0.08578601494844154, + 0.11433698551195874, + 0.09928242954577235, + 0.08701331158869247, + 0.09111084495449573, + 0.08881634824163673, + 0.08411280032336772, + 0.10640015036212036, + 0.09196390048406236, + 0.0919811678029649, + 0.10177985940113747, + 0.09450567618526631, + 0.09731873677275606, + 0.1048118839186776, + 0.09334048266880618, + 0.09965175957188392, + 0.08776680720900151, + 0.09895503843277335, + 0.10825163860504101, + 0.12117041324366783, + 0.07896303923040876, + 0.09273861318701608, + 0.11306767460940619, + 0.09703455182661687, + 0.11998858826749274, + 0.10976362916392997, + 0.08080829293928328, + 0.06717683725163832, + 0.10123480876037083, + 0.08127838574550951, + 0.09651539432757321, + 0.10142631144372616, + 0.08510419636954666, + 0.11302652939492194, + 0.09022846396253974, + 0.09885009283348596, + 0.09886896378020842, + 0.08651197919232591, + 0.08707492321868646, + 0.0802575291982446, + 0.08003508956143633, + 0.10020818661540569, + 0.07232072537221729, + 0.09809001992056621, + 0.09071235117583797, + 0.13238371524968326, + 0.08042397033214883, + 0.10960863366406529, + 0.11388660673070075, + 0.08984392870707433, + 0.1041181815842428, + 0.06894886258760893, + 0.07387743334591376, + 0.08027413665140005, + 0.08760395230063492, + 0.11461542032074144, + 0.09874403047788456, + 0.1018424481072298, + 0.08038997331409424, + 0.08916530370129234, + 0.13960510153075184, + 0.08267911947188894, + 0.09231234744150016, + 0.08255544161520739, + 0.07003707589473042, + 0.08973391226059801, + 0.0925827044298744, + 0.11907686293176802, + 0.10270496704554807, + 0.09645534807585285, + 0.08985268551644252, + 0.1055098786946714, + 0.07564827120788159, + 0.0852335911113102, + 0.10315974301815381, + 0.08467432342845484, + 0.08680946624698371, + 0.08167740090125014, + 0.08479010369856188, + 0.10126415203219497, + 0.09104639240366531, + 0.08181950746440787, + 0.12323219153807005, + 0.09128729010624603, + 0.09111404664534038, + 0.07270295847450368, + 0.06970914211618251, + 0.11245219984577662, + 0.1010883530343298, + 0.09115947233694618, + 0.06695736514198143, + 0.08943175598482545, + 0.0729860494910416, + 0.06963744125527312, + 0.07619211891035847, + 0.11108456884043307, + 0.11205555234832076, + 0.09525145767621104, + 0.0878267993083003, + 0.08512662357570189, + 0.10209693405583917, + 0.08032371089615044, + 0.08555824091213604, + 0.10394764965622705, + 0.11102691762347207, + 0.12629120144695305, + 0.11851030132844696, + 0.0993390582354859, + 0.10419862726415906, + 0.08031177079121213, + 0.09768303777542454, + 0.07165217652821831, + 0.08635794620115271, + 0.1089916537742506, + 0.10551870478627091, + 0.08069358714725569, + 0.10096380261206069, + 0.10178652510768355, + 0.08044040087179, + 0.09285770801703146, + 0.10352647881239387, + 0.12434496049466207, + 0.116304199779782, + 0.11547107961368554, + 0.09909262521712411, + 0.10945397907600134, + 0.08317436194014982, + 0.07501337659565821, + 0.10329925412209998, + 0.0662912902504123, + 0.1073675706654167, + 0.1410000006724325, + 0.09187529530654925, + 0.06780492333603882, + 0.12297480711533086, + 0.1101711175737725, + 0.10151912601037004, + 0.08559070489641078, + 0.08042772519604513, + 0.08159551501557442, + 0.10057289693183005, + 0.10659747468878572, + 0.12163196480652408, + 0.0982588568878987, + 0.1045457105019251, + 0.11120303202941025, + 0.07062079905544025, + 0.07976413256941504, + 0.10449128469687856, + 0.081681204748769, + 0.07452340878701302, + 0.08509200198241451, + 0.09920147016821527, + 0.09015075609387835, + 0.0858907157119496, + 0.08221180941988582, + 0.10053412733973557, + 0.08737169965519084, + 0.09305743266619729, + 0.09463435924927, + 0.10867072994239321, + 0.08868576827061068, + 0.10009888264726514, + 0.08982164028764751, + 0.09669265519804994, + 0.09800325272034666, + 0.0773521599874458, + 0.08766693656763917, + 0.06622153000361673, + 0.08636830595053352, + 0.09537239868348377, + 0.10719014575951544, + 0.0929835945974601, + 0.07519138336944413, + 0.0789852319421578, + 0.08052298645724096, + 0.08794679510446966, + 0.0995676426862872, + 0.07858897029853637, + 0.0906450599978649, + 0.08715282837407538, + 0.10789955367413301, + 0.09730890503330494, + 0.08792267399040149, + 0.08826925938878714, + 0.08088482203902701, + 0.07994248108441987, + 0.1063359577725616, + 0.09117063925736542, + 0.09313879952695454, + 0.11357512609876046, + 0.14161079166992566, + 0.08476608236135702, + 0.07506931814037993, + 0.090552147753409, + 0.07410150231770629, + 0.07407984673282361, + 0.11148004042605462, + 0.10446037863179379, + 0.11977504514975054, + 0.07550106159401797, + 0.13857707045793555, + 0.11024523785706744, + 0.0937212459481052, + 0.08584686645686104, + 0.0894916061245882, + 0.07576138606168348, + 0.09947341627705528, + 0.07983817167945337, + 0.09232143831881864, + 0.09506656686462014, + 0.09273701881411928, + 0.09585523697553555, + 0.0975439243977525, + 0.08408478751369694, + 0.10043145514927644, + 0.09983905654416549, + 0.0829781216525218, + 0.10706494994291604, + 0.09457171886379986, + 0.08426092088652438, + 0.08135259998810554, + 0.09849575888872789, + 0.0744695446430735, + 0.10065115323932704, + 0.1101619631516315, + 0.0813291345358847, + 0.08835008896550929, + 0.10287078808664213, + 0.11541379949017783, + 0.09512484960367207, + 0.10272354906115792, + 0.08712143387052076, + 0.08268919234339678, + 0.08235357316171307, + 0.0841412420814727, + 0.10187897566562228, + 0.09964122211749117, + 0.11872749006268002, + 0.09432873545588202, + 0.11005285864038324, + 0.07285517250069669, + 0.08055858436716819, + 0.08653304669018208, + 0.11310792935534045, + 0.09566944663575427, + 0.08432820788899653, + 0.08829873202819379, + 0.11051462402830256, + 0.07707703152852526, + 0.12445728918440489, + 0.09087122177829789, + 0.1406956162319537, + 0.10895496405009719, + 0.09911856892942222, + 0.10559558947848045, + 0.11007525575724307, + 0.0945261082530988, + 0.09579435403746042, + 0.12056764909408549, + 0.10119342969189464, + 0.08956605097371505, + 0.08881228269592106, + 0.11952439224066015, + 0.09036112640434753, + 0.10692723454528137, + 0.08978664575793845, + 0.1110727946849808, + 0.10054109245723049, + 0.0762405726626579, + 0.07784739684143514, + 0.09331506336852632, + 0.0868289778015816, + 0.08722033760724196, + 0.10702069409918658, + 0.08481455992855916, + 0.076420536549321, + 0.082586700104939, + 0.09256477864310286, + 0.11615502339366027, + 0.08097088856441849, + 0.1043177339660511, + 0.08101958462453307, + 0.10564943865183941, + 0.07430186947622662, + 0.10935746717348938, + 0.08375106128296228, + 0.11073621931426263, + 0.08295267309629192, + 0.09193160861073156, + 0.0944480846162629, + 0.10628146412316007, + 0.10717698569218907, + 0.09975109128106249, + 0.08845223313178091, + 0.11145763081717903, + 0.09203558266201554, + 0.08390377897092993, + 0.08690153326540977, + 0.11395481240317581, + 0.11842485358136624, + 0.0985877693279636, + 0.07082041106679311, + 0.07721874660452922, + 0.07183893085062451, + 0.09958425270520951, + 0.08530645739266227, + 0.11273392314757945, + 0.0998429018414712, + 0.11048200694473895, + 0.07893532500232951, + 0.08189599834058658, + 0.06558360611276884, + 0.0792277745422278, + 0.08586305412460553, + 0.08477626665805132, + 0.094182035021015, + 0.08228004408175899, + 0.11384087084576312, + 0.08761897992773285, + 0.09012459028378972, + 0.08050953137170841, + 0.12571214832657368, + 0.0863909920534098, + 0.07600016795313828, + 0.082810718773678, + 0.09030408373299009, + 0.0975903833132916, + 0.11178154576486972, + 0.11358635621534181, + 0.10827010997284806, + 0.07348515480095254, + 0.11989137318140589, + 0.09338263503879854, + 0.11207886199047895, + 0.08192809633079474, + 0.0900069876776895, + 0.11787482056818951, + 0.11619202262243714, + 0.07483788218596005, + 0.0888994574203907, + 0.10098857577252886, + 0.0989361740404691, + 0.07652863349536651, + 0.08882107069211417, + 0.07879285996144533, + 0.08983419505575886, + 0.11352431135909803, + 0.0737119035374303, + 0.10357542148485088, + 0.09172502512307618, + 0.10400066352214689, + 0.07192651167167222, + 0.09374682810347555, + 0.10901944742872118, + 0.07488679972208824, + 0.11083092340888878, + 0.08947199062658345, + 0.07740635000881149, + 0.09436113404415646, + 0.1111972208528286, + 0.11434171181605812, + 0.08829554973721043, + 0.08052986692853077, + 0.1014201290730571, + 0.07512197185492352, + 0.1194806014186879, + 0.0947831788265252, + 0.09867003070533402, + 0.07772829915517572, + 0.08850629842298119, + 0.06845310473353577, + 0.10430325411430613, + 0.07827082571325958, + 0.09195501782960422, + 0.06918904929025838, + 0.089790880439939, + 0.0896767382546166, + 0.09194536859043978, + 0.07713693097066295, + 0.10970500001922372, + 0.10507569094950243, + 0.12169989196294788, + 0.11285176750497479, + 0.09509364098778182, + 0.0924482690243889, + 0.1055036984395974, + 0.09587249459620296, + 0.07908574785294527, + 0.09006275577936045, + 0.09966582279081249, + 0.08378155409011506, + 0.09672265178315571, + 0.08673732418626934, + 0.09677844968202237, + 0.08751278843295586, + 0.09554319335714975, + 0.11224325461972313, + 0.10408764653287018, + 0.09785967270441101, + 0.0995334036996132, + 0.10381779449244136, + 0.09202316099365897, + 0.07439980788946522, + 0.10816038155204051, + 0.07636271669930392, + 0.08838766922138741, + 0.0996080523644758, + 0.12443342945138296, + 0.09924667149206126, + 0.08814576107847555, + 0.0947640477622202, + 0.1248344044434531, + 0.08443606698699545, + 0.08682672195217613, + 0.085652810557116, + 0.08643957710031942, + 0.10088635233762373, + 0.0858917561950737, + 0.0873567546784144, + 0.0897360943404119, + 0.1026931469699322, + 0.1047012159078623, + 0.08711982876822928, + 0.10042041142212063, + 0.08799479185388968, + 0.09304495666152646, + 0.07370326720697837, + 0.13065371474039908, + 0.08052234678690323, + 0.10915225176760024, + 0.09425790673172381, + 0.10316331202596465, + 0.08782867380656138, + 0.10237230394142276, + 0.08627917930396381, + 0.08188473788172426, + 0.09233072302590196, + 0.09866374509660839, + 0.08043184759222329, + 0.09631165322934518, + 0.0953234713629036, + 0.08975440125679933, + 0.0852092373245087, + 0.06817862311625156, + 0.08241023796874011, + 0.10122615694170049, + 0.11138049064195234, + 0.12298124766529571, + 0.09063685887251867, + 0.09526178958290807, + 0.08935830760475622, + 0.09825085509656152, + 0.07024160377077815, + 0.0947203577667025, + 0.0923208965488403, + 0.07824513432650562, + 0.12378184842861684, + 0.08977018975687197, + 0.10512909378305375, + 0.10084439047519848, + 0.10785729921476876, + 0.09815374747728808, + 0.07392347762923498, + 0.08890733040590067, + 0.0883251448643068, + 0.07602432263855288, + 0.09578980920762456, + 0.095360924539735, + 0.1190125386739193, + 0.07993448966494861, + 0.09230472927120728, + 0.08804842197480299, + 0.0913273296484547, + 0.1033470637634389, + 0.08240298877279834, + 0.09056689081731603, + 0.09828881589521199, + 0.09881348081111976, + 0.08687626175489785, + 0.10472008755963705, + 0.08144273483844444, + 0.13209990496842033, + 0.0880164095928027, + 0.07656881981128373, + 0.09740780600969978, + 0.11685117713605181, + 0.08996219512869483, + 0.09466182123062482, + 0.09192235653744113, + 0.10222083128939179, + 0.08062546718437907, + 0.10932876873873316, + 0.09372208584351771, + 0.09174738668582451, + 0.0979199626099839, + 0.1059163087277115, + 0.09997418438192389, + 0.10645035306621924, + 0.08045989502524468, + 0.08947363153781034, + 0.0793143003593781, + 0.08523342520407355, + 0.12307150178917342, + 0.09243380905283549, + 0.10953929548807537, + 0.09466469087070872, + 0.11155289535031457, + 0.08618718820346019, + 0.07621884465841777, + 0.10106118176661566, + 0.0817815238426027, + 0.07623158065674408, + 0.0977262349593671, + 0.10156007587095518, + 0.0959359363409435, + 0.11292021366344172, + 0.09066416771525801, + 0.10320872703232474, + 0.08222589231299234, + 0.07121503175899299, + 0.08485314629647196, + 0.11616574317712686, + 0.09083298199399736, + 0.09800612478529022, + 0.09444613574301536, + 0.10934325808799854, + 0.09520994823041652, + 0.07140151037132496, + 0.09481719864500511, + 0.10447319837837961, + 0.09080327984205949, + 0.09845497018115924, + 0.09706258668550471, + 0.08357599809811511, + 0.104648148214276, + 0.0794202438212051, + 0.09938925750388447, + 0.10451000023409378, + 0.08278706069740803, + 0.07460128244160313, + 0.07412709492682201, + 0.10865662811774754, + 0.07576302131812063, + 0.10844206583444595, + 0.1194882470151417, + 0.0875056001647924, + 0.10822452088888185, + 0.0835957712564938, + 0.07808229390334534, + 0.10256230068861885, + 0.10762798763747884, + 0.08586498898825513, + 0.11464022060663454, + 0.08924733625701044, + 0.08257978339361022, + 0.10885625186117293, + 0.1161655974374652, + 0.11021014164847467, + 0.09409332776663264, + 0.09331619398610659, + 0.09531128427506173, + 0.09267204441054465, + 0.10509648618117969, + 0.07728559870238126, + 0.09213851797832406, + 0.09877816303648558, + 0.10331702946601619, + 0.0866043765570266, + 0.10479032690248369, + 0.09579037548520973, + 0.08162959220495267, + 0.08406952381465647, + 0.09824473565650989, + 0.08615052112410267, + 0.1059774291179237, + 0.08372422199417102, + 0.09580119750286133, + 0.09180162370467874, + 0.1142454514283826, + 0.07857715706571204, + 0.09114915066135257, + 0.10230404253765538, + 0.10030668192069198, + 0.11261649394301783, + 0.08026727428947265, + 0.08749405476142673, + 0.09288017103949638, + 0.09137798709667644, + 0.09868959426376797, + 0.11109958152337202, + 0.0977676790805665, + 0.07814162706654464, + 0.0837578297541061, + 0.07186872301644955, + 0.0862068095989095, + 0.08981668368948073, + 0.08843564204566834, + 0.09276293947937356, + 0.09345567702056132, + 0.09469922532537343, + 0.10378745015549248, + 0.0870662214236777, + 0.07201565880690507, + 0.08712283877158099, + 0.09508637352245511, + 0.1065577190507367, + 0.10400751251124826, + 0.11144892975260583, + 0.10955632872540587, + 0.0807884784668099, + 0.08954072401201062, + 0.08845508622147186, + 0.09594946401933564, + 0.09001635348386687, + 0.11066147084998222, + 0.10982690055204743, + 0.0933289323178836, + 0.09109948628973946, + 0.09462960495024338, + 0.07853465288866987, + 0.11585500517643381, + 0.0830366561459251, + 0.09882672310931966, + 0.09330454355357809, + 0.10970329822136163, + 0.10545865965002332, + 0.09635812636712124, + 0.0792582631542575, + 0.07756275950245303, + 0.14484767561835632, + 0.07411076271803639, + 0.07522587117592586, + 0.09087083961632608, + 0.08756802210071292, + 0.09782407288479113, + 0.09230496471739705, + 0.10149312564701755, + 0.09356300327760443, + 0.13080918298966004, + 0.09312167147156816, + 0.11115999319689733, + 0.11501664863808728, + 0.09245571298285828, + 0.12661560648173328, + 0.08213162099708114, + 0.12148828854755402, + 0.08628504413657209, + 0.09690155667487839, + 0.09324531324851053, + 0.08673446086796545, + 0.08813650541466364, + 0.09366249121157434, + 0.09540051137010049, + 0.08335874389108608, + 0.08773800246295775, + 0.09111964695353575, + 0.09361967980231074, + 0.09575075040035662, + 0.0983735428816177, + 0.09805050391224701, + 0.09940739856264746, + 0.09629053820210061, + 0.0844813925100346, + 0.0887248259400958, + 0.09863630234550332, + 0.08808171102227225, + 0.11080108288727918, + 0.08093738863884768, + 0.09726606487709141, + 0.10067094971468313, + 0.07332618175869224, + 0.09110793539681795, + 0.08410018072907938, + 0.08106140224048478, + 0.08848032140159107, + 0.08444173779241738, + 0.09860562549545028, + 0.07929687375571594, + 0.06979111663677455, + 0.07946119676232398, + 0.10725697099066028, + 0.08417897073900074, + 0.10023904373323994, + 0.0984344528540994, + 0.09312906740827892, + 0.08842043510341782, + 0.07555259997131682, + 0.08065217441349345, + 0.08196844112895602, + 0.0840230254129716, + 0.10976205894745547, + 0.07684217165901189, + 0.11481733233336754, + 0.12510994667083672, + 0.10807588407872874, + 0.09641348250484362, + 0.10344390816522925, + 0.10048209204637, + 0.0952579501244937, + 0.11501294002186303, + 0.07322368883540159, + 0.09593026365052294, + 0.09775498335046205, + 0.10363489827557847, + 0.10975846546204261, + 0.10416927999318913, + 0.11395363885590855, + 0.08390768301255233, + 0.07351661797008956, + 0.07646537335182621, + 0.07803792805242314, + 0.08528437680148787, + 0.08219196203116672, + 0.09969549680788958, + 0.08125319891166795, + 0.10441134883432432, + 0.0888670625240193, + 0.07794728029912996, + 0.10950639582097814, + 0.08708441548152367, + 0.09305354326047363, + 0.10108206381457205, + 0.09401057008046897, + 0.09463437072589653, + 0.08742497389604036, + 0.09861787899899088, + 0.10131776719414776, + 0.07993794331209968, + 0.07592347712113078, + 0.08291685316474331, + 0.10072778186337963, + 0.10679336742183577, + 0.08714496681625435, + 0.1306039206216167, + 0.07550183358230139, + 0.12940728684106567, + 0.10278199412329676, + 0.06359435866556064, + 0.09091470089899864, + 0.0771862007724854, + 0.10025757906915855, + 0.10914976842113404, + 0.08777033492923954, + 0.10356045022272928, + 0.12295483049397578, + 0.08572068417067073, + 0.09319509057569468, + 0.09203858570350863, + 0.0858550045840291, + 0.09618154934521614, + 0.11052950986176308, + 0.07539462557225515, + 0.09277769006362098, + 0.09336247653954935, + 0.10431862059788909, + 0.14103658794700963, + 0.09305863456378154, + 0.10245528529511251, + 0.10502010512147433, + 0.10035538653421258, + 0.1332511304845436, + 0.07206728683651975, + 0.09310212826893952, + 0.0653610260080404, + 0.08576940228390771, + 0.09439764015487642, + 0.11433346634713897, + 0.08187620991256588, + 0.0757550414708604, + 0.126207484762706, + 0.09698898581270467, + 0.0906084924291918, + 0.10284022045721902, + 0.08751162660671083, + 0.09102806501204565, + 0.07902737432279602, + 0.06547426747663458, + 0.07869223644892367, + 0.07643550512749682, + 0.09521989246724583, + 0.101423446707772, + 0.09868473851244212, + 0.07511752018261234, + 0.08702438760895262, + 0.08811852615861121, + 0.10046731144804388, + 0.08541814318175656, + 0.07675975055152075, + 0.09631003097790787, + 0.1114993558398767, + 0.10913900943033639, + 0.08884570010572035, + 0.09196590247358244, + 0.09300171460005512, + 0.08023126400989693, + 0.11314176631960648, + 0.08769033384019269, + 0.09299950788693395, + 0.10806216212921578, + 0.09046900681005761, + 0.09976677183773291, + 0.1266083275943597, + 0.10210822985158305, + 0.09049073199189514, + 0.08799302692623415, + 0.09442330133634788, + 0.08972097782270672, + 0.07850395219683044, + 0.08024999862652661, + 0.08717681284709741, + 0.08688827706609815, + 0.08566340295798676, + 0.08933498961577195, + 0.0977922358880711, + 0.11245268122600686, + 0.09214526949855567, + 0.09808317897942234, + 0.0893531191426298, + 0.11811307874973513, + 0.0658929517203599, + 0.11392265109363565, + 0.10023027773754137, + 0.10352880388807964, + 0.08509206158190313, + 0.09913230864172744, + 0.10762047136533633, + 0.09598843698572371, + 0.08534572367585125, + 0.09376220700995384, + 0.10966361769484995, + 0.07774085830185286, + 0.12185885179252239, + 0.08189615868937528, + 0.12848799870147262, + 0.09422103814945738, + 0.08043467148708262, + 0.1061440442482468, + 0.0771747804113806, + 0.09986341189229046, + 0.08886544442361304, + 0.09823489211040828, + 0.11156620604659656, + 0.1394651689987409, + 0.10097254466403817, + 0.10354879384956703, + 0.1170804583058294, + 0.07956493725126777, + 0.09529593608006023, + 0.11461488160944054, + 0.10886528582577301, + 0.09630825724746768, + 0.0953589135113923, + 0.11205632545890468, + 0.09593112459248163, + 0.11097241033657945, + 0.11763486303182037, + 0.07860054373646906, + 0.0943832687706618, + 0.08694582340385551, + 0.07469322214495994, + 0.08211737260709526, + 0.07959961541358515, + 0.0865183539385278, + 0.08325013393942471, + 0.11105918917905286, + 0.08968295103960379, + 0.08056276422448641, + 0.06916247684405134, + 0.09822199944155156, + 0.1074479891200473, + 0.08304733718493723, + 0.10380813912194818, + 0.09505469336414162, + 0.09874246844339943, + 0.08734661357341603, + 0.08744104824618922, + 0.09762407399240582, + 0.10326120538044989, + 0.09347042680151961, + 0.13047794839888913, + 0.08362871451939, + 0.09060383866242909, + 0.1186199005842949, + 0.0846817841619639, + 0.074848115910557, + 0.08521590126970072, + 0.08911327490171438, + 0.09892213669082228, + 0.06799257333829728, + 0.0929227876369076, + 0.09132019007204382, + 0.10347585576092147, + 0.10628733713694233, + 0.09203639223451866, + 0.07678709543963026, + 0.0919500981947983, + 0.09200276795047674, + 0.12108192479566261, + 0.07097277418955177, + 0.07699790551767126, + 0.08428955153193894, + 0.10147175111913612, + 0.07366648715298989, + 0.11111334336128337, + 0.10507110276364101, + 0.09375232991179704, + 0.08408381536491759, + 0.08879775182237382, + 0.07767542127105541, + 0.09607120601497662, + 0.10874392672046714, + 0.09144803164971507, + 0.07626687041458112, + 0.08723588880268764, + 0.1062437010316211, + 0.08038952157265224, + 0.11056681972820565, + 0.10709256163579244, + 0.09276957789906076, + 0.11043389491999278, + 0.09873291054195692, + 0.09313675724855028, + 0.07986537240649896, + 0.1148193783557705, + 0.08770812398841292, + 0.12071183883038339, + 0.09040181208683279, + 0.09581637738851097, + 0.09047843014989104, + 0.11037279527997718, + 0.08795922104417854, + 0.11082817284223596, + 0.07717314519931018, + 0.1193317545745909, + 0.09989811831181371, + 0.11046435435324804, + 0.11083320863348013, + 0.12926234433293685, + 0.09009205465553631, + 0.08860098883505, + 0.08485526486563054, + 0.12335557284289107, + 0.0920296333798983, + 0.09087689762526177, + 0.11035050925913972, + 0.08815351998580995, + 0.10812526621815191, + 0.1047533694160481, + 0.09631388498120452, + 0.08099400773306965, + 0.07843029757661897, + 0.08750944801632594, + 0.1062561823463764, + 0.08276556351815145, + 0.0896603711436656, + 0.0883094626569832, + 0.1115296882189476, + 0.08459594610807285, + 0.08062148472275385, + 0.0893278231882013, + 0.09842783502569961, + 0.10609800070065781, + 0.11445099110652483, + 0.08651241504786022, + 0.08531726477800418, + 0.1035364240509112, + 0.0842883423709051, + 0.0981522085113723, + 0.08816644714502468, + 0.07971416662787206, + 0.07981442880348033, + 0.08341091340791255, + 0.11427253224141207, + 0.16984606822623066, + 0.11232226156759574, + 0.09085920523253452, + 0.08704978817939878, + 0.09542173324908935, + 0.10478063796179996, + 0.09107271504906025, + 0.08965931587230805, + 0.10361119494891881, + 0.06751235759158697, + 0.1043558803869312, + 0.1095625918986294, + 0.0872083419930664, + 0.08552933885123516, + 0.08796792549723287, + 0.09050503295189515, + 0.10747163794242709, + 0.11316540810616911, + 0.11724579444936782, + 0.09263234597859543, + 0.08097473583238589, + 0.0973702475449865, + 0.09158712149121312, + 0.08073298445543342, + 0.1074929970777447, + 0.08636166745548438, + 0.07395944341731404, + 0.10228127214788725, + 0.12289540950069204, + 0.10096354045521817, + 0.09841033614273835, + 0.07552549009826251, + 0.09013517227893178, + 0.09609458267328735, + 0.0986825040415499, + 0.1118662880911992, + 0.09080026239427963, + 0.09276855393940742, + 0.08899797048035255, + 0.13109468700832747, + 0.07913302045952397, + 0.10115721606371922, + 0.09581339361345452, + 0.08849627393998662, + 0.08621665482403802, + 0.07921904863701575, + 0.0893236090079807, + 0.06975145928824704, + 0.0807197751269715, + 0.07514657311826924, + 0.10869799267424442, + 0.09589074497491452, + 0.10529983109895623, + 0.06849669769249132, + 0.08648445367895073, + 0.09692433099610612, + 0.07671361768177178, + 0.07758913816057328, + 0.10749583106788813, + 0.10558873001754038, + 0.09990710793452195, + 0.08321249999156495, + 0.10131955681131058, + 0.09582220704371375, + 0.06666715485419987, + 0.08501766639954382, + 0.09979972267866478, + 0.11892457473616896, + 0.0762417809999408, + 0.09500954113795854, + 0.10779157025054237, + 0.10623328512062388, + 0.08820696024297241, + 0.09799144176385327, + 0.09881552242760078, + 0.07179220186477021, + 0.10288670218322452, + 0.08492235089637105, + 0.08941046685397093, + 0.08534468049713613, + 0.08514322718167858, + 0.08781217850151093, + 0.10935947345163803, + 0.11460163162479388, + 0.08702450076366862, + 0.09559380614420405, + 0.08856530519593277, + 0.10139523841346172, + 0.10299802060575373, + 0.08772378805620999, + 0.08995998810246195, + 0.08737492172279017, + 0.09674832803813063, + 0.11899445262571143, + 0.08868280284227979, + 0.09685986120196254, + 0.08898893276075645, + 0.0890177221014494, + 0.10311358817080314, + 0.10433083590964468, + 0.09616682679398446, + 0.10258393027748598, + 0.10733146783734493, + 0.09474471030333127, + 0.11195486761188227, + 0.11211959027085344, + 0.0957925945717044, + 0.09868110910581206, + 0.08909165937062424, + 0.09142706387663148, + 0.11030550205028558, + 0.1472160763917323, + 0.08161401759249352, + 0.09562585204039459, + 0.1340198897392479, + 0.09303408418798148, + 0.08140304436936013, + 0.08269097276794658, + 0.1002785926974989, + 0.10846181241342603, + 0.1150193507100355, + 0.09644882978283824, + 0.08704120814449366, + 0.10972858122442203, + 0.07408586002040422, + 0.09483519856661825, + 0.12877704997154552, + 0.09062345016770845, + 0.083488946412272, + 0.07281064380689653, + 0.10582985774478236, + 0.11037213089448548, + 0.08439766995603733, + 0.07206305867443821, + 0.09273936424454665, + 0.07346156472851177, + 0.09254612674820638, + 0.10001096911127735, + 0.08126482210571148, + 0.07386857524501393, + 0.10127690414500883, + 0.06470127231347518, + 0.08469621741033827, + 0.1100005939939705, + 0.08312151748009895, + 0.07947352651509149, + 0.10002273469142951, + 0.09776907306142371, + 0.09800885592706285, + 0.0884884775267725, + 0.09630801553334348, + 0.10090569301597724, + 0.08278046537952972, + 0.07659426651627262, + 0.09205018235509842, + 0.08856131332575395, + 0.098131109462875, + 0.08398872822112306, + 0.09423361869635931, + 0.11903476464555343, + 0.10980113907901401, + 0.1036234287452758, + 0.08788882798487474, + 0.08549757651255942, + 0.08432064816142427, + 0.10262635514569776, + 0.11480786585036197, + 0.09119367228908784, + 0.0898438912652854, + 0.10472923830401906, + 0.09831545176869202, + 0.09557297045418892, + 0.08968641705704866, + 0.08420544250966064, + 0.10420877360406298, + 0.09379276427401385, + 0.09201585224676072, + 0.08170962240755529, + 0.0856199813880841, + 0.09767663928261419, + 0.10472672768977781, + 0.10147058120457844, + 0.08290614901375125, + 0.09476956810247801, + 0.10805546783782857, + 0.08760713799766202, + 0.09681123083839821, + 0.09190474267292902, + 0.09285387611530187, + 0.10368487909519537, + 0.09036788486442618, + 0.07863581074598991, + 0.11588223350347321, + 0.11920291325056241, + 0.13457598140128574, + 0.099897062439715, + 0.10978049660205133, + 0.11186364714596271, + 0.13403334565041713, + 0.0814646269102122, + 0.09864868770565914, + 0.10293734209309442, + 0.09036300174680123, + 0.09369840154608643, + 0.09557274499300239, + 0.13568855504992772, + 0.10609851513092612, + 0.07273478318336403, + 0.08132051175093878, + 0.08907066951067384, + 0.10265067886163227, + 0.07360714790056232, + 0.11718367079326115, + 0.09643846885115816, + 0.102384106678021, + 0.09822567870391828, + 0.08854729882337475, + 0.06719879734456068, + 0.0904638708713783, + 0.09949443541225078, + 0.09901457875646222, + 0.10137235089581934, + 0.08887852446075464, + 0.12392978853641319, + 0.08755322727418975, + 0.08226632080980577, + 0.1056977175041737, + 0.09208003463017563, + 0.11784130621052193, + 0.08926685304014861, + 0.09880019218962606, + 0.07368154069922268, + 0.08412789233259525, + 0.07657227769538064, + 0.09095340080074213, + 0.09402626473235534, + 0.0840368064473005, + 0.09478022039059988, + 0.07548193467482311, + 0.07932418991178744, + 0.10127943624949685, + 0.08904691079350134, + 0.08921849192298086, + 0.09702535250249171, + 0.11455245457096552, + 0.10121718470231565, + 0.09484004447916365, + 0.10014230935734614, + 0.08133300879583763, + 0.1180968522921784, + 0.089509694828286, + 0.10675454994947113, + 0.10107273518031884, + 0.10147203185693114, + 0.11377848237060244, + 0.07756312898865936, + 0.09127954157914912, + 0.09453914787346732, + 0.07134844394214274, + 0.10649404609106762, + 0.09774705391893497, + 0.08498622483172713, + 0.08561814617823815, + 0.09492395664507193, + 0.09723246672216558, + 0.11493880718684585, + 0.08296392847661592, + 0.10616526702814075, + 0.09296292468489221, + 0.07465719713865861, + 0.07686231699631403, + 0.10694212869440499, + 0.10760997811617036, + 0.09621396480977737, + 0.09564269621084888, + 0.08357548918508458, + 0.10752448730121222, + 0.09481514565440884, + 0.10837845180602457, + 0.09509388383850359, + 0.09379852543211901, + 0.11262910963556515, + 0.0656786608819463, + 0.09189264148813109, + 0.08913025846671693, + 0.0890636906975115, + 0.09554208407510033, + 0.08151957050862195, + 0.09295339366830839, + 0.1003435077215929, + 0.08242665010120101, + 0.0774223581017305, + 0.08300507094212167, + 0.09652634992288228, + 0.08771577386685656, + 0.10532719355464609, + 0.10139582017576775, + 0.07848472367177386, + 0.08506844884954753, + 0.09017421035662479, + 0.09406903140808816, + 0.08731934579418323, + 0.12928685811628532, + 0.1264174387518633, + 0.10691718858471361, + 0.07014359243686281, + 0.10341740532307367, + 0.06716664805473875, + 0.08595763910404916, + 0.09787583716019448, + 0.08331540279495805, + 0.07818072692996544, + 0.09531261820828058, + 0.09323091561535007, + 0.09006319011444248, + 0.14710954341512592, + 0.09235526500129092, + 0.08437677522311905, + 0.09265905627316239, + 0.08717295178333666, + 0.12213369358359631, + 0.09659895497675358, + 0.10427862409110997, + 0.08877317351692418, + 0.08003536547362754, + 0.09148570963565822, + 0.09307389573976774, + 0.09136246642499525, + 0.09049527694383477, + 0.10136194511277934, + 0.11601408713776103, + 0.07566076680990988, + 0.061961362826103726, + 0.12624852552095042, + 0.09164687294587141, + 0.10957302433084933, + 0.12407372454921799, + 0.08258921731546023, + 0.12119220606569082, + 0.09153795967334469, + 0.09574809026261924, + 0.1039239881293978, + 0.07257610801521412, + 0.10311841799143133, + 0.08122690036391106, + 0.09904818906230192, + 0.08922237665813715, + 0.09608745146205303, + 0.10334162445312689, + 0.09378272327013133, + 0.09501533643644226, + 0.10201240565912785, + 0.09037217999953796, + 0.10286397132728581, + 0.08542918900948983, + 0.0905720481826736, + 0.11022804627568857, + 0.09553796224072265, + 0.08787459407383807, + 0.0678630095304062, + 0.09897950848779603, + 0.10494965551454084, + 0.08383517062994376, + 0.12410279182712916, + 0.12197086401354276, + 0.10065791560595712, + 0.08475664132062982, + 0.08663257540349484, + 0.09840240652118004, + 0.08493988725625669, + 0.06550010767051034, + 0.08894050306763047, + 0.09799691179268408, + 0.08795270161188176, + 0.08529175627551808, + 0.08682376773396448, + 0.10605778657656344, + 0.09659975828750492, + 0.1017169675956499, + 0.09280103104316396, + 0.08439015435738582, + 0.09512066004712286, + 0.12561570431760824, + 0.0889727519532331, + 0.09220961641918654, + 0.09450666071808408, + 0.09675708664170482, + 0.1153430661601258, + 0.09258399450208933, + 0.08291565751809898, + 0.09568401539779435, + 0.10905760172836475, + 0.11887195437190086, + 0.09456700618525794, + 0.14592670608261818, + 0.09294406829798123, + 0.10152913216493484, + 0.0879467525437463, + 0.10733479874316196, + 0.08487625699237074, + 0.11958220859715141, + 0.07085580306371221, + 0.09205719338090688, + 0.1250107268926757, + 0.09918045526313168, + 0.09918874646549326, + 0.09762150513334136, + 0.09238418168820249, + 0.10331257122360034, + 0.09128391038584395, + 0.08769308253588412, + 0.10779690819048787, + 0.07770195013128653, + 0.11399185325314388, + 0.09361325663429335, + 0.13337767602504697, + 0.08973111661696986, + 0.10491398925621828, + 0.100210248826877, + 0.08604273658035236, + 0.1059002986987115, + 0.06396046648327446, + 0.09088120014623638, + 0.09687703259533113, + 0.08723721452300177, + 0.09176085139788352, + 0.08513212879815381, + 0.1242385473378246, + 0.10515679411022431, + 0.08387353963077109, + 0.08219426613708378, + 0.1048871726980082, + 0.09350854453649114, + 0.09575216291586769, + 0.09643136514839137, + 0.10899832059088159, + 0.08357410173290597, + 0.12495258560594297, + 0.1046751448885523, + 0.09134221381445527, + 0.09025194469692202, + 0.09118040347222815, + 0.08640732269290034, + 0.08746027759729323, + 0.09422726254488864, + 0.0936317848053555, + 0.10522313852201907, + 0.09496724062040506, + 0.09144059744649372, + 0.06528720267790489, + 0.09993619577463489, + 0.08211263027759383, + 0.08034325849892963, + 0.092615372064047, + 0.08529072053848227, + 0.08063744771450161, + 0.07128159189577181, + 0.08823201511105729, + 0.0959518395621434, + 0.09210106996417931, + 0.10197557251037916, + 0.12297492344994825, + 0.0819375349500675, + 0.11095616435131359, + 0.09452275596285824, + 0.07799982525040637, + 0.1132904823646943, + 0.16002263326013935, + 0.1152097601816253, + 0.08135280765912238, + 0.09307762169730398, + 0.10151080027419802, + 0.09429674476508675, + 0.09360528275675069, + 0.0776316649013095, + 0.12456320412439453, + 0.08493081677046317, + 0.08377843023242662, + 0.08400825709429109, + 0.09400271149241284, + 0.10897783937169406, + 0.09607383807693806, + 0.09053554972157679, + 0.09272996815390049, + 0.10216237206183659, + 0.11179566836488843, + 0.0938766103381699, + 0.10022350207324478, + 0.11676102736084588, + 0.09295407938986498, + 0.09668229195642561, + 0.08307268871469375, + 0.13579497880899438, + 0.08011858357504997, + 0.0922153443152925, + 0.08749102433237217, + 0.0719818310415513, + 0.10793186975589816, + 0.09961185895561873, + 0.0944443536291194, + 0.08400159499045438, + 0.13781329060481265, + 0.09942122019900371, + 0.09025783660320826, + 0.08144223391894351, + 0.10990290746767611, + 0.0858266913078351, + 0.09341525486863193, + 0.11083095635025796, + 0.11045568700866229, + 0.11457452053594631, + 0.08934118187913305, + 0.09540510167512728, + 0.09991137778727537, + 0.10667425419126869, + 0.10800033630328275, + 0.07888380107460014, + 0.08867473895830992, + 0.0959264661335626, + 0.0702930445688111, + 0.1208283615985157, + 0.08148081367937438, + 0.09062063761097884, + 0.10151101407477889, + 0.09010237694981309, + 0.08847552732386457, + 0.07329193279865442, + 0.09845094020444725, + 0.10989526442046825, + 0.158165650316845, + 0.08936255652767111, + 0.09808757175882493, + 0.0938350309685982, + 0.10971078838458473, + 0.07522066530650336, + 0.1167601776881628, + 0.09206788664965691, + 0.10609120366476806, + 0.10327099083831724, + 0.0991147580744383, + 0.08048647691707496, + 0.10049269761749753, + 0.10070163905561764, + 0.0968119148070096, + 0.09894547837266342, + 0.09745064299636087, + 0.08999557521360385, + 0.09758594423424073, + 0.1024022431462146, + 0.11805370766794263, + 0.08760984777766798, + 0.0735415929511751, + 0.08216879574412916, + 0.07169844684296782, + 0.11003761818542321, + 0.09785981175192304, + 0.12778011262232553, + 0.10192846158427063, + 0.0949903756701458, + 0.08190870188573479, + 0.09512177618177399, + 0.09562345836036032, + 0.12442513354676234, + 0.08883484413422198, + 0.08138508270761731, + 0.08828485295354546, + 0.09278067423642138, + 0.09119437643155925, + 0.07883109832671084, + 0.08349366251384681, + 0.10897588093069766, + 0.10864175621169815, + 0.0976130264396067, + 0.09194896709254108, + 0.08754009862665058, + 0.0886247030651266, + 0.08250703416481868, + 0.10561841842624549, + 0.0955255783410324, + 0.11616884056417941, + 0.08424066738852802, + 0.13537614346565377, + 0.10009129844663579, + 0.10382188298085561, + 0.11320715186590037, + 0.0872944649902954, + 0.10791923918706157, + 0.08994465981403013, + 0.0875482812709512, + 0.10694502576589392, + 0.09041697501159834, + 0.09827667393175148, + 0.09244138590607154, + 0.09218085310253481, + 0.11946478628400349, + 0.15013218279417914, + 0.13399928928195026, + 0.10832640882904329, + 0.13160939095522536, + 0.07466632066778445, + 0.08453351980071877, + 0.07235502470883691, + 0.08450161861498784, + 0.09439894459299347, + 0.07833359864524862, + 0.0800870139960894, + 0.09583927379278018, + 0.0757231536208112, + 0.0691753715947207, + 0.08453410984049758, + 0.10367262949781443, + 0.08496627887690361, + 0.1064887324889967, + 0.0972468146017987, + 0.09849230141261316, + 0.08447330367124489, + 0.07325438940019056, + 0.09755107123510424, + 0.07648507378782987, + 0.09635003518535432, + 0.09479465389614355, + 0.0953418271667458, + 0.10948872808234565, + 0.07953804563772171, + 0.07499476545620645, + 0.08289272851475542, + 0.129811107224393, + 0.11626065011739393, + 0.07982075032976954, + 0.07769365380700358, + 0.0926116815896157, + 0.08946736240988411, + 0.08079446821445724, + 0.09508110212479678, + 0.10234203189212059, + 0.07378696702032167, + 0.09840766760560588, + 0.09627813811412222, + 0.08151945337284841, + 0.09419072086839322, + 0.08499826958823457, + 0.09344577764037786, + 0.0815448303386491, + 0.10289634302822752, + 0.09627495223244911, + 0.09079523379462336, + 0.09407876889159487, + 0.10697305823151564, + 0.09066876091103163, + 0.09547686616131759, + 0.09000350944563033, + 0.08683849233330325, + 0.09477741706421262, + 0.08483674062462539, + 0.08827717636478231, + 0.08670640326044081, + 0.10303105272068828, + 0.09841538239793643, + 0.08808307289859414, + 0.08266146004637046, + 0.09007374154780848, + 0.10380850431566319, + 0.1008776368573375, + 0.10213089725135073, + 0.10232936892566291, + 0.10979519973821612, + 0.08926670026795733, + 0.12810281095565546, + 0.09986690042489953, + 0.0736025500250384, + 0.0723963414990059, + 0.10538380500081951, + 0.08352477398029456, + 0.10248849777403936, + 0.10824862806392282, + 0.10997991274099156, + 0.08332656946786128, + 0.0989163769563892, + 0.10307819443376322, + 0.08933616060856657, + 0.1072893816154381, + 0.07490687617684297, + 0.09461919930532645, + 0.09204706605302575, + 0.12564681675273698, + 0.11168789927686328, + 0.11413049789175166, + 0.09545604210025484, + 0.0955856683876162, + 0.08882911516492796, + 0.07103185327028157, + 0.08931360098084477, + 0.10311989975788585, + 0.143209279023758, + 0.06485118699001578, + 0.09770750982107408, + 0.06803853098373502, + 0.09211931957219852, + 0.08912276985313405, + 0.10586977615340853, + 0.07591516127031013, + 0.08703930833684433, + 0.0815676423682979, + 0.08877615369852658, + 0.09878385501640326, + 0.08669485982128393, + 0.09333897698592497, + 0.09614890540372209, + 0.10651538089845283, + 0.10261459417731411, + 0.12401432626260493, + 0.09006745455418096, + 0.08042694026690843, + 0.10055913274463266, + 0.09514070294574681, + 0.0919623422530746, + 0.09658859146433722, + 0.09628552388270215, + 0.0827108575917091, + 0.08689996583798729, + 0.0974799736428169, + 0.08825632868933977, + 0.09454484592245763, + 0.10894993332480016, + 0.08864039387207215, + 0.06949975084767018, + 0.0822798999068295, + 0.08462946241469488, + 0.09428885974001693, + 0.08554012102099402, + 0.0853098507496379, + 0.13793094116550653, + 0.10279325708907291, + 0.09945267457628773, + 0.08758251059014072, + 0.11263170978757349, + 0.09295858193209859, + 0.08369062195025695, + 0.08437436910849867, + 0.09518498856990595, + 0.09163996493012112, + 0.08766033301629497, + 0.08933764448840303, + 0.09682522939260858, + 0.10468249555699553, + 0.0888399913284421, + 0.09716631575024236, + 0.10382471714918817, + 0.08908652681955163, + 0.0895870154990738, + 0.08603418290214668, + 0.12173270601931448, + 0.10980889421616931, + 0.10563106738934759, + 0.11177032027633661, + 0.09695037884768612, + 0.09276938131628586, + 0.07639066332635584, + 0.12361485353406, + 0.10033120508903129, + 0.11531569683067788, + 0.08855043136526085, + 0.0821024596612096, + 0.1098821363415888, + 0.08583848796312117, + 0.10097735594060996, + 0.08732881936302583, + 0.08826275772163501, + 0.08031130175305952, + 0.096011859425943, + 0.07871123667963739, + 0.06267055786947541, + 0.07662275545901623, + 0.0756155972142407, + 0.09035745147871313, + 0.09986080311577396, + 0.09465412876908973, + 0.0871541153395036, + 0.10139474894290122, + 0.09479009185593698, + 0.0837685676040856, + 0.09925436107932105, + 0.11121125798396057, + 0.09507829144743743, + 0.08604287127436844, + 0.08664243518105916, + 0.08647310797487552, + 0.09498339393772917, + 0.07607340623130168, + 0.06997653149268362, + 0.0886851906193885, + 0.0989756697509846, + 0.08566309284390583, + 0.07552803377294441, + 0.07550308222195125, + 0.10092085410315889, + 0.11394954425884174, + 0.08812575367605702, + 0.10539812218804506, + 0.0958202174575472, + 0.09977125080024225, + 0.08468070355789015, + 0.07274692477440682, + 0.11724481970751474, + 0.08290172566268658, + 0.0811757977524557, + 0.09588011365721175, + 0.07767396932063114, + 0.10394279509460522, + 0.09020717785748074, + 0.08436921462768314, + 0.09233685475864087, + 0.12224835770639524, + 0.09425003450730442, + 0.10156811078292625, + 0.08516715434137814, + 0.11617671093373849, + 0.08102386363265936, + 0.08609652580901425, + 0.09000076387537877, + 0.07982330329899698, + 0.0763139970409829, + 0.09509986351965857, + 0.10273628880851232, + 0.10133013578590618, + 0.09059698866242002, + 0.11185600469088369, + 0.11497989391688614, + 0.07843306117563671, + 0.10840528404908256, + 0.07468611796514193, + 0.1012360326547223, + 0.12118029050771827, + 0.10265812102335305, + 0.09329087853433345, + 0.08742488695936312, + 0.10207331062206036, + 0.11271212102172581, + 0.08366297741954912, + 0.09437343330007784, + 0.09707650373276586, + 0.087691696047027, + 0.10493788864498399, + 0.1224819878419766, + 0.10345183678651856, + 0.0951213394820446, + 0.09896674131467122, + 0.0822172824427955, + 0.07306438329517864, + 0.10089984127903087, + 0.10160373410638329, + 0.11604192111572977, + 0.10700496133258139, + 0.07207399324395443, + 0.10237243017913417, + 0.08430046180039867, + 0.06917081507559923, + 0.08262410891268913, + 0.07900244552640158, + 0.09930301568886389, + 0.09027131119363219, + 0.09169606470332484, + 0.11268693032355355, + 0.06806148519976571, + 0.0766898582611345, + 0.1059195745172603, + 0.08406324314250642, + 0.08900157613810777, + 0.12239840408803442, + 0.09610930670311, + 0.10184515621982912, + 0.0982100529723355, + 0.07888517452381519, + 0.09473372151239559, + 0.10688855032730701, + 0.12228273447629653, + 0.129119297155357, + 0.08121375307412343, + 0.08090077452177045, + 0.10655622442462935, + 0.1023198769975095, + 0.09048980800865246, + 0.0862986442110304, + 0.09340787417564198, + 0.08830025221137462, + 0.07971603953405289, + 0.08332292648914945, + 0.10271148412106511, + 0.07020434391715, + 0.0976765788432934, + 0.10606935184348405, + 0.09977845162876416, + 0.0847043936491569, + 0.09157629518491699, + 0.09911554266784188, + 0.08859939550356238, + 0.08819480347493644, + 0.08074942251411879, + 0.09334660918179331, + 0.13830583139290117, + 0.09706013683545776, + 0.12654410729775858, + 0.07905386347201493, + 0.08252825886321563, + 0.1004167678307094, + 0.09471653592812036, + 0.07939797717087625, + 0.1215374471014526, + 0.0854348741858, + 0.11725091191529902, + 0.11911487212761844, + 0.0970357400068584, + 0.08436906179768534, + 0.08094976667628387, + 0.07374773013567136, + 0.09214561671480646, + 0.10367836059487776, + 0.08010702925705776, + 0.10112512052715056, + 0.09983345787564314, + 0.10233712597605354, + 0.09482370364323352, + 0.07711890646432555, + 0.09838432903325395, + 0.10086582882446679, + 0.07333093732623576, + 0.09377452198812214, + 0.09193774699183337, + 0.08198512657259605, + 0.11449426822045455, + 0.10075584990781174, + 0.10938908026277502, + 0.07923034049850274, + 0.10423952924017063, + 0.08297252765831259, + 0.08978081632583865, + 0.12325348042218305, + 0.08889255308095599, + 0.09799171344651592, + 0.07090342206586304, + 0.09807840252405382, + 0.09441102633994435, + 0.09092458726420442, + 0.11538275588097055, + 0.09689169537633792, + 0.12161869934971563, + 0.08193895735161463, + 0.07607077928503639, + 0.07989695814307109, + 0.13599748217125535, + 0.10126154205982814, + 0.10245210889331921, + 0.08220006728494454, + 0.10663418667873653, + 0.13695855352333677, + 0.07761655068043856, + 0.12814982666116564, + 0.10147208383369946, + 0.08440458569161198, + 0.10364717135620179, + 0.08401394475800228, + 0.07725798317661486, + 0.06739398416375529, + 0.09971527281257794, + 0.11345083738613937, + 0.08988836092589465, + 0.09942232878474251, + 0.08187734893573347, + 0.07858763684678997, + 0.11045243788624547, + 0.0900560782891419, + 0.09091174802933402, + 0.09454137943470801, + 0.0904955446817747, + 0.1126574585015075, + 0.07801922962708113, + 0.09754037757686398, + 0.07023482499782101, + 0.08471353845168662, + 0.11198089986753477, + 0.08778354271825689, + 0.07755668427165154, + 0.12031463116492401, + 0.14372374235558416, + 0.15366906926489135, + 0.11904258154914504, + 0.08102603378268972, + 0.07292382628431317, + 0.07375738425744503, + 0.10859487743366779, + 0.10302103914552428, + 0.0998761293190091, + 0.09437214603928962, + 0.10114260077018238, + 0.09529834608265932, + 0.09670939827736706, + 0.08123013539509569, + 0.10688100959480738, + 0.11245583884381045, + 0.09862390487520697, + 0.08378440842939588, + 0.09585212957217537, + 0.12064797033712814, + 0.09749042106493093, + 0.09251061861544536, + 0.09407470740397968, + 0.0786251580662325, + 0.09080973164959369, + 0.08402828466402072, + 0.09590926135176472, + 0.07474073736864618, + 0.09725826345271894, + 0.09329530289748779, + 0.09759543795515889, + 0.07856607388908148, + 0.10498767061772207, + 0.10048264408776625, + 0.14439911713892067, + 0.10099283693879375, + 0.07220403058458616, + 0.11219777474697046, + 0.09134856732654928, + 0.08300099918038938, + 0.11171285786829367, + 0.09735615051218766, + 0.08287933720522445, + 0.07587206958193934, + 0.10587500202840976, + 0.07527769282170982, + 0.09179363993121178, + 0.07664663983833954, + 0.11730899092202153, + 0.09165718869936418, + 0.09343816580087087, + 0.10020997469162445, + 0.08181854159449335, + 0.08809671777734056, + 0.12335515993674781, + 0.08822444164115621, + 0.09573809601471114, + 0.12097213517714635, + 0.08472093475655001, + 0.08142258709962892, + 0.07129272029415183, + 0.09847187455745385, + 0.09354006580405357, + 0.1014344718466959, + 0.11118796511109809, + 0.07992813621164936, + 0.10138256258878223, + 0.08433108622828168, + 0.09959782072577686, + 0.11008086468519973, + 0.10249475523874549, + 0.10762191013801249, + 0.09334391340498498, + 0.08614620303285749, + 0.08877541585573345, + 0.0715222161427742, + 0.09679169950338509, + 0.10063907752831577, + 0.11216783285772619, + 0.08846662006814193, + 0.13779953557770916, + 0.1004822644456163, + 0.10794374470386141, + 0.09995947328303713, + 0.08687710939593875, + 0.0968260566182273, + 0.07012902770144408, + 0.10180266138009172, + 0.10621144355118727, + 0.07983084646414586, + 0.08553220678422833, + 0.08755383483124851, + 0.08126233516233869, + 0.09806884189311126, + 0.07605860023360803, + 0.09474254244445131, + 0.1285329897376635, + 0.109345599664815, + 0.0861374795604349, + 0.0944176288335238, + 0.07665680762723291, + 0.10827431864026706, + 0.09754392222744226, + 0.09004959410651298, + 0.10227525044935687, + 0.08707154212754385, + 0.12068839383283768, + 0.08428295198630814, + 0.08183443323230091, + 0.12485169814291508, + 0.09077786106664021, + 0.08468654759525071, + 0.07707707857985276, + 0.08969122599279125, + 0.10763567023988055, + 0.07351971362487918, + 0.10232676851433026, + 0.11312747451535192, + 0.08837392789756034, + 0.08325246823871399, + 0.09465984443657154, + 0.1017100381658931, + 0.0885778442637358, + 0.12211740785460962, + 0.08220543986294325, + 0.09182182544521444, + 0.10862440530465627, + 0.07786336657224506, + 0.10214537316352262, + 0.08942960800147352, + 0.10435783341685562, + 0.0830152835474848, + 0.09310126424197948, + 0.08851179696021903, + 0.08610010616624228, + 0.08423492195459865, + 0.10297575291382222, + 0.0899234495704791, + 0.09554823876366478, + 0.09564068390606013, + 0.10901799268322901, + 0.111675314303249, + 0.09907139563356757, + 0.09592185989948739, + 0.07633099683599485, + 0.10467059247107745, + 0.11725238865353037, + 0.15116938198905192, + 0.08489380723944025, + 0.08815253343647728, + 0.10321012603064435, + 0.10756229793424456, + 0.12049384108401667, + 0.11533062063685474, + 0.07498556720379577, + 0.10474494641284494, + 0.0883778164835333, + 0.0778275219184691, + 0.09840870071964539, + 0.08195132688421264, + 0.11539713357109106, + 0.08621169027929976, + 0.0883304245818985, + 0.12186448166125989, + 0.12462637613556646, + 0.10265141367924688, + 0.06405682572716834, + 0.10224615379478902, + 0.1041285601803426, + 0.08887022428920303, + 0.11834620687501801, + 0.08982570484731688, + 0.08433397210209088, + 0.09853511291076134, + 0.10038988735426287, + 0.10761965513744269, + 0.08641142210569584, + 0.08012675754615128, + 0.0846695583504715, + 0.06830730354704821, + 0.08611496383335594, + 0.09295124972394883, + 0.09225890232364345, + 0.1097247154201094, + 0.08721997292306435, + 0.10121242164879758, + 0.08220020735946221, + 0.09253835382393419, + 0.06877592611271038, + 0.1017892242924009, + 0.0817854435622077, + 0.10448814457378781, + 0.08292327931715061, + 0.08171494053616309, + 0.08300334092809052, + 0.10299386527542108, + 0.09127858100506263, + 0.11545047275600229, + 0.08564131142329472, + 0.10432388871667711, + 0.10378139414601736, + 0.08685325090985521, + 0.11090271691805391, + 0.110943674844702, + 0.13168621876504924, + 0.09269406752149899, + 0.13053215508803429, + 0.10462353780356708, + 0.07154327387923998, + 0.08206854167670595, + 0.11536191996924862, + 0.1231974173146746, + 0.08356336580815127, + 0.08194530064532692, + 0.09749638364342238, + 0.09190053466463688, + 0.1166311552021405, + 0.10567445019657261, + 0.0974660637430191, + 0.07038788283026831, + 0.10385739687258999, + 0.09873906070350137, + 0.12194995267628406, + 0.08588179783176107, + 0.09201887468712203, + 0.10384258962473075, + 0.07539225558824662, + 0.10878515890059454, + 0.08953220476788165, + 0.1049256410885999, + 0.08951116312700183, + 0.0906186116862232, + 0.07222769936488786, + 0.11041332377396794, + 0.09225077278764234, + 0.07517642208723546, + 0.08836447859079101, + 0.10295832821086329, + 0.0910838927294654, + 0.09654377146140992, + 0.10689815579744014, + 0.10954923605790719, + 0.09807853067300291, + 0.09816199991611128, + 0.0982794949866467, + 0.07098512553685773, + 0.10859825445315627, + 0.09355476495722333, + 0.10881852654452329, + 0.09364707439497179, + 0.08230808434845406, + 0.1195976789232414, + 0.0864403923238071, + 0.10408158522019569, + 0.09057471877964446, + 0.09172323217744494, + 0.10233662990214186, + 0.07525751612549499, + 0.08123421996231033, + 0.10304275388032134, + 0.0783172897013239, + 0.08106944898420321, + 0.07799392913966906, + 0.09082401680195008, + 0.09756040607975329, + 0.10718625170859877, + 0.08689441669995676, + 0.08659524964034608, + 0.11957740479879242, + 0.09191282411355735, + 0.08709918872396398, + 0.09840959411864326, + 0.11584173888527549, + 0.09247739656572616, + 0.10389281187161417, + 0.0910327364064544, + 0.10309137056847788, + 0.0949378965507306, + 0.10865814695342843, + 0.1359715821551827, + 0.07279899437673854, + 0.07844421187271101, + 0.07689444148037489, + 0.09153222972758553, + 0.08963127005147317, + 0.09860933921500624, + 0.1449018242389305, + 0.09249425864033001, + 0.08829205040409803, + 0.10004325245684209, + 0.08672138088399622, + 0.08636102700466253, + 0.07692803346972485, + 0.10305424822269066, + 0.08847197893803707, + 0.09756934753942066, + 0.07978691187986237, + 0.09682905228882, + 0.08731636353639674, + 0.10411256749404713, + 0.0811024329100824, + 0.11829725556384386, + 0.08149120166819818, + 0.0950015092653705, + 0.10259104363940419, + 0.1032742941506443, + 0.09404630423376736, + 0.07185634007685412, + 0.0848176741702319, + 0.08623905811355598, + 0.12453371679663754, + 0.11669536404777124, + 0.11225633994419117, + 0.070106984766861, + 0.10738076490178013, + 0.09691745133914587, + 0.11401976912644227, + 0.08839768180873464, + 0.09096352181912283, + 0.12223196216418927, + 0.08270467919237345, + 0.09412269809021602, + 0.11158242262463666, + 0.09581911293320011, + 0.09233732283764431, + 0.09849579799012963, + 0.08697667323593591, + 0.12393519899696365, + 0.09112565919435218, + 0.08257453892606426, + 0.07836529948095017, + 0.09722197747192288, + 0.08353175748734169, + 0.091681988708925, + 0.07638878375529111, + 0.08418162505310114, + 0.1086435307482413, + 0.09804090781775561, + 0.11350441899865454, + 0.1037639913452035, + 0.10998055588729372, + 0.09786346145515881, + 0.08152542961545782, + 0.06976198916572236, + 0.09358741910304368, + 0.0824662814882128, + 0.08665075400220286, + 0.08061899451828115, + 0.10573177021703184, + 0.08251335304222447, + 0.10276023700781882, + 0.0813586241947119, + 0.09290000351965574, + 0.09729610012733139, + 0.10161160140911976, + 0.10471112087386092, + 0.09342291760417436, + 0.11716984380241394, + 0.07384962957613245, + 0.06666554568321867, + 0.10834844236753402, + 0.07495903700582089, + 0.0834622527338067, + 0.0920438362473757, + 0.12612620217082787, + 0.07682616685357377, + 0.07785168096546045, + 0.08735942252245865, + 0.11485253791553304, + 0.08750976017020395, + 0.07576782034529599, + 0.08290941396905119, + 0.1016074984686409, + 0.08246809404542524, + 0.10816507119718106, + 0.13219931797893422, + 0.0738711984727059, + 0.08499762756438654, + 0.12147024662725536, + 0.1519957819342224, + 0.10742552963145424, + 0.07616159787329779, + 0.08914994222652087, + 0.10245673334566516, + 0.09806039157473896, + 0.0985215474694961, + 0.08948835962973786, + 0.09403726823935706, + 0.08378793744217705, + 0.0731209779696581, + 0.08011032581831365, + 0.07870472710183944, + 0.07897739793896173, + 0.080710587050038, + 0.09787409616965695, + 0.08263148038208581, + 0.1112783036673511, + 0.1002694292989085, + 0.09220762867925013, + 0.09675829784907285, + 0.10764190562999848, + 0.08861103741508944, + 0.10208266513978698, + 0.10072819888019757, + 0.0792862710111737, + 0.08605167850534559, + 0.0677840535415504, + 0.0931792222528737, + 0.07435989996533655, + 0.08483179443645296, + 0.08146224480946104, + 0.12093969758096548, + 0.09300309105292942, + 0.07988203056210821, + 0.07844420853176921, + 0.144153575931197, + 0.11121138836170237, + 0.0765891911045402, + 0.1166740055625659, + 0.08869299787975572, + 0.09225016657582953, + 0.10925247594364838, + 0.0827732500412366, + 0.08835695237825164, + 0.0761458767142563, + 0.08710936544876015, + 0.1124115919156861, + 0.09763702541983815, + 0.07501476115964627, + 0.1395135563692022, + 0.08327728628300476, + 0.10560137341258716, + 0.0765707414036989, + 0.06232028646859214, + 0.0813859546344676, + 0.09042726512002518, + 0.08051241290216508, + 0.08876052667804238, + 0.08426525343351174, + 0.10331275418999225, + 0.08551692613745726, + 0.10953391016983727, + 0.08310190183084944, + 0.12866977936306137, + 0.10305572249879959, + 0.08949730060583516, + 0.10009368557851782, + 0.10055821149868081, + 0.11365538896109617, + 0.09021780783315327, + 0.08746463926935177, + 0.10157380845169431, + 0.08698363494591933, + 0.09179882845120209, + 0.10263748770446866, + 0.10578661899449514, + 0.08819819405078222, + 0.1128412956057307, + 0.15103302254572692, + 0.09834548354975495, + 0.13567056933301794, + 0.09892037377368415, + 0.08918717598095817, + 0.09457719364665702, + 0.09608369081152633, + 0.09693688249346578, + 0.09192355133096579, + 0.09861139626769874, + 0.08272170452525354, + 0.07246495355585958, + 0.09545997109069929, + 0.11880968428948731, + 0.08904595951489044, + 0.10572278287700915, + 0.06584529198654669, + 0.08000993055240645, + 0.09933495614844043, + 0.09520475200357394, + 0.06773473274949658, + 0.11375513603011991, + 0.11920217106465683, + 0.10628177529718762, + 0.08867927302184568, + 0.09496791826345002, + 0.1002126915891104, + 0.08835110774313969, + 0.09869969519642621, + 0.10217658681116197, + 0.08832814729001513, + 0.09773338459620455, + 0.0846275411832921, + 0.1078700005397729, + 0.11065718715821557, + 0.09144612096586398, + 0.08149449191368976, + 0.10861411570667183, + 0.09775247854993421, + 0.08906386714051256, + 0.10477824751800305, + 0.07273460421128645, + 0.0804261242222193, + 0.10460974305658838, + 0.12038118339898651, + 0.0772048999323539, + 0.11935471635901376, + 0.10699175988958545, + 0.09304215287492061, + 0.0891476871050319, + 0.10755119857121237, + 0.0906934939592066, + 0.0983280202335951, + 0.11810139702693451, + 0.08354724165360428, + 0.08519024185993244, + 0.08404408244277398, + 0.09464989428912307, + 0.06189623877800718, + 0.08238617050407411, + 0.10039000020711909, + 0.08034016731203202, + 0.07966102104600818, + 0.06758502839787885, + 0.10695727490006232, + 0.1015239453376926, + 0.11168363996759727, + 0.10930928379738897, + 0.07913279546469719, + 0.09681438962284222, + 0.10458371869508404, + 0.07632588501515342, + 0.09154209837648601, + 0.09048466212086949, + 0.11018239264702873, + 0.10174398194220247, + 0.11781331296453433, + 0.09624879746419097, + 0.07876863235005113, + 0.11132297921660923, + 0.09583577820872341, + 0.09657984483718172, + 0.060243413378221054, + 0.06833313874264613, + 0.11019015054258352, + 0.09743761909936181, + 0.08543693363555128, + 0.08336020249653539, + 0.08984494253695985, + 0.09062074414013728, + 0.10080514365582935, + 0.09657628865884961, + 0.07134672938439396, + 0.11152282137346384, + 0.0974217758973865, + 0.1322604388045922, + 0.09918644619972077, + 0.0814934571675297, + 0.10572088954372476, + 0.07885899690223687, + 0.10450107984728883, + 0.08683934941278103, + 0.09383673532444842, + 0.09503905014663919, + 0.11166845494757405, + 0.09008209821659867, + 0.09768432328291408, + 0.0789278404917386, + 0.10419980760498382, + 0.11476814410149645, + 0.10824619217683343, + 0.08692120430405663, + 0.08596071095172116, + 0.09728703537995276, + 0.10724961088675859, + 0.09673287291134146, + 0.10414031161272905, + 0.08912467779194291, + 0.10865941538876925, + 0.06406265801292053, + 0.0962831155422847, + 0.08605752825172253, + 0.08191933662047611, + 0.07350389316240862, + 0.09406814123577746, + 0.06865692384286294, + 0.10606243944170836, + 0.0994623872187809, + 0.0848488801786525, + 0.08698385297285197, + 0.10074641554040334, + 0.10426601373220436, + 0.08231716536636223, + 0.11452858432304709, + 0.10968235120975256, + 0.10720833379147468, + 0.09833201017211785, + 0.0908093838935707, + 0.09917560978030761, + 0.12035850062590345, + 0.10015268493068008, + 0.07679350645223662, + 0.09133129215757699, + 0.10065341820804577, + 0.08633149270720909, + 0.0847541184832339, + 0.07874311664374724, + 0.08652337635345866, + 0.12019547321785132, + 0.08351062910929975, + 0.08360666523674554, + 0.08917600171342528, + 0.09770531702542638, + 0.09848826206843975, + 0.09255390665333775, + 0.09090692325078818, + 0.08388606133026519, + 0.08734830056344531, + 0.08928524280207488, + 0.09670394756477346, + 0.09283370273747785, + 0.08905262872118473, + 0.09568801950961613, + 0.0662403330957475, + 0.09445871372562738, + 0.1096018157868586, + 0.07995305810002835, + 0.08848813433022407, + 0.08932203245415533, + 0.08119153331203217, + 0.08043451144513326, + 0.08614508788090526, + 0.07909095459982082, + 0.09975756145950018, + 0.0869636765949072, + 0.09269991894137788, + 0.07410455219407744, + 0.10188710127175764, + 0.09212669226179517, + 0.10454992167329111, + 0.12913563936877884, + 0.08076714868553238, + 0.07396446270880984, + 0.08707087622375637, + 0.10252924918870145, + 0.09076444138192198, + 0.09941426932142158, + 0.09314280851896595, + 0.07689660352633611, + 0.10120664857859635, + 0.10372239415626833, + 0.0746134792405213, + 0.10053857990097681, + 0.08131920006046381, + 0.08725133457338433, + 0.11360482498028002, + 0.09436374584584412, + 0.09930593629083176, + 0.08747109544016574, + 0.11021424132661187, + 0.07532226592438229, + 0.1330866402547627, + 0.08631135888704568, + 0.07493729234583736, + 0.08970558342645266, + 0.09526870022685871, + 0.09468744907733044, + 0.09095867114315774, + 0.10737525346853702, + 0.09920993564564422, + 0.09356759018900808, + 0.1180621862676401, + 0.09236411040832765, + 0.0832720217374662, + 0.10333572258359114, + 0.08325721946109504, + 0.10222672852094485, + 0.08054566117099747, + 0.08081016560378905, + 0.09965918414086664, + 0.06563091940091742, + 0.09941696872075859, + 0.10708344857317058, + 0.1028185311456231, + 0.08716757694535777, + 0.11034000666432293, + 0.08220195768278958, + 0.08316027137834163, + 0.07021730501886138, + 0.0848026367569896, + 0.09503037078875719, + 0.09571656716377624, + 0.08889268872798946, + 0.08644249690784471, + 0.08365777269537698, + 0.11630952958193289, + 0.08304867024250354, + 0.11479406661346653, + 0.10194452937235483, + 0.10907854285134137, + 0.11313492952085046 + ] + }, + { + "legendgroup": "Beam sensor 2", + "line": { + "color": "rgb(248, 156, 116)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 2", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.11313492952085046, + 0.11763287200147528, + 0.11353139253646201, + 0.08038215292012159, + 0.10001272102144257, + 0.09441508932786528, + 0.0774220267581756, + 0.11460683355311105, + 0.08799568630790144, + 0.07587828381054813, + 0.08529581667003563, + 0.11869668631862515, + 0.0800745517513744, + 0.08055188211420548, + 0.09619397450279307, + 0.09553568492553156, + 0.1054332553937093, + 0.09401937430408834, + 0.10135239667254309, + 0.09296269209832243, + 0.10945109852777234, + 0.08415760062862823, + 0.08996570782474046, + 0.12173797827747858, + 0.11383112902976161, + 0.11322840742922229, + 0.09575698512791599, + 0.09147280625839822, + 0.07795612681065198, + 0.10184924313801204, + 0.08741308347314347, + 0.09755469566159862, + 0.08514441570881666, + 0.09419395639371744, + 0.0826333410228614, + 0.09308500411575255, + 0.09744077864272793, + 0.09728624693158866, + 0.10668197146971842, + 0.076865678797211, + 0.06881408071588067, + 0.09260571006911528, + 0.08909876311892985, + 0.12380474450794575, + 0.09457988083083368, + 0.10966725311627494, + 0.0979249406336613, + 0.09201356844159862, + 0.09322261897743418, + 0.08026643532788427, + 0.08679084106917509, + 0.0699260107146297, + 0.09358327108642289, + 0.08838239785224755, + 0.09041579473379127, + 0.15474056954119922, + 0.10022466172566048, + 0.09960524024150628, + 0.10303164133548373, + 0.10876131659321016, + 0.10352738663028754, + 0.08845432490099825, + 0.08362514383818419, + 0.08448149723423101, + 0.09074335672056932, + 0.07754222345705923, + 0.1210035808136213, + 0.09476280531989795, + 0.10126303971759607, + 0.06847757100164711, + 0.09423942452175194, + 0.10071684369535848, + 0.10515106457165763, + 0.08931949517234007, + 0.09681234599719421, + 0.0975769244752376, + 0.07953622417018927, + 0.08918257341970359, + 0.08103965280177022, + 0.08764661601498006, + 0.09311765400202501, + 0.09277728872505264, + 0.07202908807955391, + 0.08959648345008785, + 0.09609123642926723, + 0.11787872800382096, + 0.09999796558481708, + 0.09678235254155138, + 0.08552295486999605, + 0.09558476139771192, + 0.09227771106076262, + 0.12014243029631844, + 0.12053415583854432, + 0.08299908248417778, + 0.12617381298616465, + 0.08713580384704817, + 0.10768920707150513, + 0.08362824415822129, + 0.07868887126203787, + 0.08096619569657991, + 0.08440899066001491, + 0.10369569341611913, + 0.08764353086900202, + 0.07127750946657063, + 0.08146150538583656, + 0.08124724984884392, + 0.10359707918775818, + 0.0890901777830174, + 0.06895712367907737, + 0.11037379858148706, + 0.08706128450744878, + 0.08692185788933234, + 0.07778359394421727, + 0.09030568028994063, + 0.10492806749852397, + 0.0882981880469197, + 0.09599759928309759, + 0.08623690279334476, + 0.10003786000900897, + 0.09586603519698869, + 0.08413771926644371, + 0.09777846774536036, + 0.06830303610452702, + 0.08447570434326217, + 0.08463886007471012, + 0.09817954559897715, + 0.08348062862177782, + 0.0878371538682367, + 0.13013071799666212, + 0.09816420626861994, + 0.08148179002867639, + 0.08438117036610782, + 0.10361999153295187, + 0.07522875780806901, + 0.07798275152868155, + 0.09521878847881997, + 0.09870464432710764, + 0.08263125319861828, + 0.0966039659179742, + 0.08630464979892558, + 0.10711295715429643, + 0.08181583919329465, + 0.08019064946309959, + 0.07283386496173545, + 0.0900739299856676, + 0.08692779789412773, + 0.09303131212742927, + 0.10310464880678938, + 0.0990985186379144, + 0.07715594717174426, + 0.10112419504784853, + 0.111481807046568, + 0.09073528916703183, + 0.09083872926714227, + 0.10621153216948223, + 0.07410760085335212, + 0.07454364626184845, + 0.09457113965981244, + 0.09911922638534282, + 0.09463214999251841, + 0.08281471124077354, + 0.1097029530341799, + 0.09839370503288754, + 0.11994987351614958, + 0.08318306255109453, + 0.10031399008577858, + 0.10819462100515397, + 0.09682258669842025, + 0.09498126775447137, + 0.1147239938556925, + 0.10743924207590907, + 0.08755161104153579, + 0.11665274977602486, + 0.10246563785545584, + 0.10378084870586606, + 0.0827780458893676, + 0.0755974167108254, + 0.11823149471376744, + 0.08655922043238895, + 0.08939389399909635, + 0.1179598657784296, + 0.09848782490786276, + 0.08704590450635925, + 0.10409348006614673, + 0.09900382119667422, + 0.12348290051703521, + 0.13063192746401758, + 0.13954271789438355, + 0.11365999653023129, + 0.11050640845498988, + 0.09621145943961146, + 0.09943689412160166, + 0.10933899633633336, + 0.10979920575328579, + 0.08526545150674435, + 0.11057774186260866, + 0.09516317564673647, + 0.10946336810882717, + 0.07632976477318744, + 0.0947535727302625, + 0.07624429376846495, + 0.06783094416124494, + 0.08249160356605775, + 0.0844694919725723, + 0.07336869855874727, + 0.09418980575120804, + 0.09312857218591936, + 0.07446128003693848, + 0.06734569249911598, + 0.07760228989074623, + 0.08583730126474814, + 0.10086927985553976, + 0.08932942618006036, + 0.06871571152021355, + 0.09360942481177476, + 0.07529910838138636, + 0.07717332151057275, + 0.10271295072298257, + 0.09140401577784622, + 0.08536722349866599, + 0.10750813868903453, + 0.10255906608016403, + 0.10632259979687705, + 0.08830752507144699, + 0.09381608780180178, + 0.07782546591234012, + 0.10985654166510299, + 0.07892329420903987, + 0.07848386707539107, + 0.12844483506053603, + 0.09731661971730667, + 0.084607024347371, + 0.09106868535319551, + 0.07537687565628003, + 0.09314711131159475, + 0.09035329690733705, + 0.13216855681729045, + 0.08425903381826447, + 0.07066936411352603, + 0.1095738931665996, + 0.07297309246505411, + 0.0918145278362487, + 0.08930713962811122, + 0.0899260632432089, + 0.09113566716251145, + 0.08717029781301008, + 0.08109800896920664, + 0.08749268465252584, + 0.12762099585380818, + 0.09256338847127678, + 0.0933946389744907, + 0.09723847088129052, + 0.09350482374078364, + 0.09555138034686828, + 0.11353128359389743, + 0.10216009493515464, + 0.11701087434690106, + 0.09342052991660765, + 0.07993906790483914, + 0.10384188785505678, + 0.0977334271561995, + 0.09024871630063877, + 0.09225199281430736, + 0.07870514096689854, + 0.10235525643473105, + 0.09520128012287321, + 0.11981252994070464, + 0.09850045855353685, + 0.08901494082139175, + 0.10174375584400486, + 0.08520002174458378, + 0.08121662121835424, + 0.12111849297335643, + 0.11758444434602516, + 0.10135790577634737, + 0.12679709692831273, + 0.08426986597202206, + 0.10294546808597885, + 0.10332799782369295, + 0.08840773498110414, + 0.10445380925981902, + 0.09202808355363723, + 0.08186052276049306, + 0.0867714928490498, + 0.08560907784928211, + 0.08663443228900483, + 0.08961414222000105, + 0.08184335773682015, + 0.10386054767794145, + 0.14800633786999226, + 0.100349745381839, + 0.07489230257067259, + 0.07618689744499595, + 0.08889415610741674, + 0.08345775664101385, + 0.10627469431169159, + 0.08868756539803958, + 0.07188428550809339, + 0.09398862032551025, + 0.10213786467635752, + 0.09970440066709263, + 0.075913251596586, + 0.07534020638808195, + 0.11700504364593983, + 0.08473866646000369, + 0.09125339296850055, + 0.11467989221444208, + 0.08034607702736388, + 0.10062520516389084, + 0.11288859252088611, + 0.07540737367479845, + 0.09574371087039413, + 0.1030119109561306, + 0.09841498382665345, + 0.09607484353924309, + 0.07409644364671866, + 0.10452663761178331, + 0.10666764803593681, + 0.11483957223684078, + 0.08961756138162746, + 0.08570919739535827, + 0.08819191392712265, + 0.11152339788298846, + 0.08873438544039111, + 0.09356875137749811, + 0.11015690470737848, + 0.1129869052038898, + 0.11560484893884797, + 0.09904297800109318, + 0.07509273052499281, + 0.1019754854632922, + 0.09702528380591054, + 0.12244397994993753, + 0.14114849610309924, + 0.08272374610965415, + 0.1204577055295511, + 0.08579560995554086, + 0.10491928662757433, + 0.09632924900949788, + 0.11242779036685946, + 0.10125594516648552, + 0.09098498458481778, + 0.09636952523702867, + 0.11050025077058999, + 0.08290425063807506, + 0.09337066882572749, + 0.11071535355385716, + 0.09702550856235004, + 0.08010643667556913, + 0.10000483850183749, + 0.10505998878537776, + 0.07847722856453808, + 0.12208117870123111, + 0.11091237742753779, + 0.08863769865943738, + 0.08509612373743475, + 0.08023602410835275, + 0.11259166132561187, + 0.10326542162195361, + 0.1048911788804514, + 0.0879381822807276, + 0.10217731651075262, + 0.13802922679055699, + 0.1064564296583161, + 0.0891218500160671, + 0.10123271754896603, + 0.08702780056163165, + 0.08941590562122814, + 0.09369997188773034, + 0.09380297390877831, + 0.10108426153294582, + 0.0816430804654138, + 0.08442651512823535, + 0.10627504126041595, + 0.07349802578832396, + 0.12746336108145423, + 0.07511466956182314, + 0.09745046098364687, + 0.08199405459246167, + 0.08008569649202962, + 0.09214165191345354, + 0.08587039923235748, + 0.08384571612457312, + 0.09498037273726663, + 0.1161463282650976, + 0.09510524943722824, + 0.12325939526095787, + 0.09917804699017696, + 0.07876856185428256, + 0.10491230290432267, + 0.09173704865487238, + 0.08363906420195347, + 0.10743218149297609, + 0.09455105778828099, + 0.09556665115201264, + 0.09112918223941305, + 0.08967282807253722, + 0.09189161150519172, + 0.11036117354007895, + 0.08913733825707693, + 0.09474164606837848, + 0.0766172519666671, + 0.08355890445445094, + 0.07817601825089504, + 0.08069951246338912, + 0.06948710578921832, + 0.07954598650244914, + 0.09046833010051636, + 0.09418413622750564, + 0.1357989475306721, + 0.0845411997505631, + 0.13712691671571456, + 0.077967481823479, + 0.08401105537481246, + 0.1162287035881292, + 0.08760705470968509, + 0.101337191053409, + 0.06809620195733196, + 0.11946278058530138, + 0.10875238463687943, + 0.09314004394322835, + 0.09657351449359344, + 0.09879812008257674, + 0.09069880352707756, + 0.08861502484988298, + 0.11138421662236643, + 0.09706118412461397, + 0.1248222366733231, + 0.12232621117691965, + 0.08554020145950988, + 0.07996361700142238, + 0.1004594275736309, + 0.1086127671948134, + 0.10392402573787728, + 0.11363210591849952, + 0.08670081953812749, + 0.07655899263466337, + 0.07588990548701705, + 0.09915725159899276, + 0.10241702276797023, + 0.08392217872137604, + 0.09642714306351288, + 0.11354525865556371, + 0.1428699691235424, + 0.08913563565032243, + 0.08920147745750906, + 0.09839367160611429, + 0.11495006914374846, + 0.0905185100343622, + 0.10228352888546426, + 0.07565305613881095, + 0.10364092271643723, + 0.10447750483670068, + 0.09617827548789941, + 0.09346454790069132, + 0.0807137364699321, + 0.1316181711858851, + 0.09983866067197136, + 0.10131072552611414, + 0.11006296443858439, + 0.10351338721570036, + 0.07504292512255953, + 0.081033440143574, + 0.09112372804956662, + 0.100097909342732, + 0.09426156663234676, + 0.089715912844174, + 0.12618334232310174, + 0.11434313501233186, + 0.12847301256163196, + 0.11347165030450093, + 0.10298758142237774, + 0.09367589171383316, + 0.09351230452669751, + 0.10867867569751154, + 0.09216799466157445, + 0.0722106634709455, + 0.09910970377341154, + 0.08910663370559116, + 0.08539902373048842, + 0.10879680246756517, + 0.09890681838268066, + 0.10652772097282151, + 0.0922688310165412, + 0.09996482701162461, + 0.0748345265055876, + 0.12076545183064, + 0.08777578489816776, + 0.09533813226142158, + 0.08438797090886795, + 0.10697278551614586, + 0.0996028400140008, + 0.0976072751878204, + 0.09362329269096155, + 0.08303433373458015, + 0.0942677008452181, + 0.10311574484955575, + 0.0932662671520798, + 0.08264038202330114, + 0.08596442991801292, + 0.08540395022831129, + 0.093426971627438, + 0.09901715464174939, + 0.11424313003500455, + 0.11210869207965365, + 0.10701200472160467, + 0.09443347553051909, + 0.07916876868365562, + 0.08992549421158125, + 0.0883559189646452, + 0.0730825600508379, + 0.08952159348143388, + 0.09930585731757502, + 0.09333845173133913, + 0.09340426324179436, + 0.10258428390652216, + 0.09162119560633243, + 0.10696943664525098, + 0.08030953736878127, + 0.08147850251829593, + 0.09732224874966092, + 0.09906566867598375, + 0.11361584998113633, + 0.10554587925608234, + 0.10280611751191453, + 0.07769079329915929, + 0.0853940191459267, + 0.08871546107240698, + 0.08927009206678704, + 0.0777547205707745, + 0.0855372696118034, + 0.10968079998385158, + 0.08303310909557915, + 0.0920553992298292, + 0.09105317429159575, + 0.08576182403933975, + 0.08920273464354579, + 0.11399680472443806, + 0.08839315669369018, + 0.10752959737839067, + 0.10271890938827721, + 0.09251956116359693, + 0.08141488971519516, + 0.1116989051717665, + 0.08761028601177102, + 0.10239367484992304, + 0.0863716243163143, + 0.0860722445550319, + 0.09414361276595618, + 0.08404732669755993, + 0.06925067706126595, + 0.0975812394721035, + 0.10533833599631638, + 0.09882188342491385, + 0.08803166773080644, + 0.1356876877477311, + 0.07398039837194431, + 0.08864365937300198, + 0.1135060705796887, + 0.09344485134956441, + 0.13568197269088647, + 0.08868493200882854, + 0.10493266829291695, + 0.12130362453140034, + 0.09669775363590358, + 0.10689047207733941, + 0.10737452029317411, + 0.08813932989814709, + 0.10576313023151425, + 0.08435352259944484, + 0.08022700507026087, + 0.08811591225558162, + 0.08343314077076013, + 0.09164181112582437, + 0.08953710123067483, + 0.10766485995416127, + 0.07947590393220968, + 0.08105920266050173, + 0.10866088663430652, + 0.08224288220066091, + 0.09400163315448093, + 0.08050303075051152, + 0.07078945558959687, + 0.08676356383696585, + 0.1118197595045804, + 0.11627228855709307, + 0.10469517278004065, + 0.10621169932433483, + 0.09104289949138848, + 0.0823185660091954, + 0.08447447367137796, + 0.09976293461316822, + 0.07673574695460866, + 0.09036648026955563, + 0.08712040538304999, + 0.09988044836190794, + 0.08615985661885199, + 0.09032464118421522, + 0.12766543897615856, + 0.07595141793608824, + 0.10626686769929589, + 0.09167468673358725, + 0.07582454221336953, + 0.09729988417327538, + 0.09384645991689587, + 0.10352170315140799, + 0.10279098080099569, + 0.07976323239015982, + 0.08926094285465096, + 0.10770678430277073, + 0.09505785438529188, + 0.08353712209889849, + 0.10296063074310714, + 0.10611806721693252, + 0.09499796687946692, + 0.13475127716795626, + 0.09815578631769734, + 0.08228358114410984, + 0.10418838801778064, + 0.1246450443181331, + 0.07923679412050855, + 0.09737682978314549, + 0.08923455495561344, + 0.07675937112570373, + 0.08734734827496543, + 0.09120593625197312, + 0.10763663737446218, + 0.11505756847988843, + 0.1016500881602618, + 0.08957697551501197, + 0.09148900871360578, + 0.08654549501932396, + 0.07526132230143871, + 0.10371210764302156, + 0.10408368507206492, + 0.08004743502936948, + 0.0967311764735147, + 0.09174235677909397, + 0.0794955384422656, + 0.1188065342545166, + 0.09519951138754681, + 0.09381314763774758, + 0.09686321650520678, + 0.08975368421943015, + 0.1070346431562038, + 0.12631842634484797, + 0.07113415162263159, + 0.13437248213223335, + 0.09608169019199501, + 0.09200801462709707, + 0.1034045344805861, + 0.0803474459557351, + 0.10398048241678715, + 0.07761821339254814, + 0.07961247547052859, + 0.0718436558993242, + 0.1011353121169446, + 0.09150496238046539, + 0.10029002868810653, + 0.06677310962068264, + 0.07859582094823073, + 0.11298589856893786, + 0.08598746711235648, + 0.0853633969018837, + 0.09542589082995849, + 0.0873857562737276, + 0.07929156028641952, + 0.08938721891786294, + 0.08802151331997479, + 0.1097236044523611, + 0.113056512444095, + 0.11199425675740117, + 0.09136758854112578, + 0.08590197282871656, + 0.09301371296995058, + 0.12221168376971016, + 0.09384539341196002, + 0.09861810306890888, + 0.10998409958676027, + 0.09013428380861636, + 0.11108387339301899, + 0.09356896338351091, + 0.12184083693029397, + 0.11920990481739505, + 0.0799933323995011, + 0.09125905822529867, + 0.10078359958174703, + 0.11176615080787189, + 0.07674821063682155, + 0.08684192678936702, + 0.07459517319517327, + 0.08851128365726436, + 0.07785298098495447, + 0.0770998785626849, + 0.07482211565430004, + 0.09855476352696349, + 0.07953305488632498, + 0.07293747123544561, + 0.08308532157715313, + 0.09817568952787768, + 0.11174372810954457, + 0.0739119888663454, + 0.07720816356115895, + 0.09773707556263848, + 0.08619517924729608, + 0.09119895642326221, + 0.09371375911200404, + 0.0876050964106606, + 0.08116479615963618, + 0.09007177417657675, + 0.08811189273422074, + 0.07597247657975284, + 0.13108452629688794, + 0.10864782619743986, + 0.09873985024034848, + 0.12465503626002451, + 0.10054891157909983, + 0.11409765882475881, + 0.09007710637984602, + 0.09891606223580147, + 0.0973789511235792, + 0.09262829870433778, + 0.09477112031937576, + 0.08223985575748897, + 0.1183783661330145, + 0.09570049816765194, + 0.09530303962592916, + 0.1015794507148158, + 0.07802368695128131, + 0.11773158021323601, + 0.11460775919591888, + 0.10506852994117416, + 0.10821849079872564, + 0.11258881970138535, + 0.08842413700792777, + 0.08840785878693597, + 0.10127985483930135, + 0.08997953340548319, + 0.08524982653448505, + 0.08640583043651681, + 0.08975745345095855, + 0.09390499705972005, + 0.09190497144746756, + 0.07062644949381114, + 0.06775411657598307, + 0.08770176599024838, + 0.08441986982633604, + 0.10762662857686363, + 0.07831733275463149, + 0.10155291762829338, + 0.10140691155109498, + 0.11245179269693714, + 0.09050697759252312, + 0.11144335189703646, + 0.0795327935695177, + 0.10434629565666553, + 0.10754337259915968, + 0.09308418125580858, + 0.11494528573387787, + 0.1173024410194487, + 0.0969607837677206, + 0.08933199530720855, + 0.09886468095026178, + 0.1102258051122236, + 0.09813722710255925, + 0.08531305813196866, + 0.08078773374528692, + 0.09928123048559394, + 0.11690923779396475, + 0.10511215981821433, + 0.08629168740508936, + 0.06718476251281194, + 0.06805794244979113, + 0.09049863078673094, + 0.09557834021146543, + 0.0994160140332266, + 0.10200456775221124, + 0.08107577615201567, + 0.09016402485380448, + 0.0940712318257249, + 0.0823324529725704, + 0.13860784003756343, + 0.07802006921180268, + 0.09082553176688163, + 0.0832461408967769, + 0.0796526264727093, + 0.09270570462898378, + 0.09178719353250225, + 0.10135492363790656, + 0.08274090878087777, + 0.11640039443305303, + 0.13384046153532014, + 0.08136528892283379, + 0.1085930473177809, + 0.11694506892781895, + 0.14495338586534565, + 0.07054600608208937, + 0.0803436142904836, + 0.09174054286628956, + 0.08778426207686517, + 0.08221194763439178, + 0.09325623527560975, + 0.0884848459443211, + 0.09946394096671422, + 0.08896404938118924, + 0.11897220444331465, + 0.08609038183625498, + 0.0687988834714255, + 0.08381681285347939, + 0.08292337459939195, + 0.09545033283931467, + 0.10582530418354127, + 0.10386582431380541, + 0.08886922436442475, + 0.10857212582039226, + 0.09869599497447622, + 0.08290537082314768, + 0.10433206163281274, + 0.08191055042093279, + 0.10182498431565433, + 0.09353451094997602, + 0.10516753942332825, + 0.06855081051330512, + 0.1272821988694099, + 0.10837676379982342, + 0.08411132058082518, + 0.0867243411514824, + 0.10123779992263368, + 0.0888479029362535, + 0.094425364272302, + 0.09471323271702496, + 0.09569730303034416, + 0.11683203856178474, + 0.09466439891373671, + 0.0977427217950273, + 0.11159359893821488, + 0.09145069235091813, + 0.09986265153725643, + 0.10907684514060144, + 0.08257428333207906, + 0.08062967109942944, + 0.07400438987186798, + 0.0745246389491492, + 0.09002442214515226, + 0.10146301481983735, + 0.10519157320317217, + 0.09035828331470237, + 0.1319452421768658, + 0.0863152830498207, + 0.0820836343478534, + 0.1190809198799753, + 0.08815462305769418, + 0.1060881198331129, + 0.09421525140996144, + 0.06739961682922818, + 0.10135566670962103, + 0.06870616653052139, + 0.08294951417717021, + 0.1183043848511017, + 0.10972204596822206, + 0.11687043707666185, + 0.08737193843425897, + 0.0874914505888494, + 0.11965938184879495, + 0.10911716209003905, + 0.11440653556648547, + 0.08643464004459388, + 0.07369082492711242, + 0.08650682213701079, + 0.08217449447283333, + 0.11679875417858936, + 0.10953424083801326, + 0.08363473995613593, + 0.09651634706575657, + 0.10045788009877354, + 0.08914751442504268, + 0.11420311581318675, + 0.09098059184655913, + 0.0845312860186022, + 0.07357952863050819, + 0.09977051726182753, + 0.10396203992615138, + 0.10304851322687796, + 0.10247490873167928, + 0.10880634584681886, + 0.10610480707947127, + 0.09235443142402215, + 0.08283063164295988, + 0.10370587535521181, + 0.08997457081542437, + 0.10313059646973004, + 0.08405334977063474, + 0.12266002405050568, + 0.07835496424246843, + 0.08111116503915013, + 0.09106275833314849, + 0.098170654052819, + 0.10142612478146959, + 0.11872596147652408, + 0.0920405771533404, + 0.09381404425609052, + 0.09008381916007174, + 0.1026417072900822, + 0.08640782570494089, + 0.08302648802389594, + 0.10617418232427885, + 0.09683960513627304, + 0.10388031183346329, + 0.09312281339005725, + 0.08586524182901605, + 0.10268423315649494, + 0.07916788273072961, + 0.10596946097149043, + 0.10249300617253983, + 0.09213989810214392, + 0.08412045866290276, + 0.11300592461230945, + 0.10193866375709272, + 0.07574496563363058, + 0.08040548737162194, + 0.09498802867169344, + 0.09050893170373217, + 0.09914341315879378, + 0.08833647859531231, + 0.12049176831449834, + 0.07333703803308927, + 0.142073977526147, + 0.08592641966436533, + 0.07492971480129423, + 0.07043625087661592, + 0.09087940401550838, + 0.11195583304389997, + 0.1041059847755295, + 0.10111187598970756, + 0.08539326925038536, + 0.07654634045073157, + 0.0858408060243488, + 0.08346266192702008, + 0.0781278191717651, + 0.12117742770433866, + 0.12589701980358342, + 0.08470806672268695, + 0.10770898119917476, + 0.07853284542241962, + 0.09003155038387484, + 0.10542338970927793, + 0.07918049103853664, + 0.09681408885425483, + 0.08054881255920514, + 0.09721789874855802, + 0.08858405297987279, + 0.09194560346201655, + 0.1027480718928353, + 0.0779266565377115, + 0.0725031880099607, + 0.08602388925502757, + 0.1354292002887289, + 0.0960718181760608, + 0.10392253529675126, + 0.10127033843360096, + 0.11567675457695735, + 0.0786475223811559, + 0.10048590086016412, + 0.11832081161531435, + 0.09546274559764568, + 0.07983127564640694, + 0.10996151938271397, + 0.10682834138308493, + 0.12564121413647333, + 0.10977648595546448, + 0.11616424464000538, + 0.07863029810053541, + 0.12448713246800183, + 0.09391997018554976, + 0.08021362219063795, + 0.08364530316266669, + 0.1239621253100239, + 0.08069414683570802, + 0.09624774437593552, + 0.09676283166141328, + 0.10518616402138595, + 0.12000690904777717, + 0.09166491651906071, + 0.10471628178559915, + 0.10546958913791613, + 0.07866562455453796, + 0.0945954378492341, + 0.15711253009392367, + 0.08384357045683619, + 0.09688943122887714, + 0.11617904303217592, + 0.09942518010430633, + 0.11827591429424213, + 0.07391775897666676, + 0.08838660884334615, + 0.10581186141954532, + 0.09715388033619728, + 0.07659443496801809, + 0.08065171104973315, + 0.07626448075533362 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgb(238, 216, 248)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 3", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 1.1703252809796094, + 0.224897493252971, + 0.08970475372313816, + 0.0721326336504697, + 0.06843731127241048, + 0.0673703408060339, + 0.08600735169099787, + 0.09313968266100849, + 0.07186069077756227, + 0.06942531194048325, + 0.08452612598663395, + 0.07793941600940812, + 0.056904377912362206, + 0.0642282430491187, + 0.059703111246548285, + 0.06047313358561989, + 0.06732632943601341, + 0.05831803754464256, + 0.08916051637906218, + 0.07194677260837025, + 0.0836129490213756, + 0.07711397717365538, + 0.07021003175181097, + 0.055271252980202815, + 0.08448438430093888, + 0.08865514555785063, + 0.0958693474458627, + 0.06917675336237941, + 0.08642996894680494, + 0.09346602679193587, + 0.05312054180313, + 0.07705514071722078, + 0.06596356278006885, + 0.07448742714046458, + 0.06625841369073003, + 0.07700573021269971, + 0.06925401931264749, + 0.07406853490122127, + 0.06097347704204173, + 0.06591101380520531, + 0.08835517794986228, + 0.08973224299256467, + 0.06630327685685526, + 0.08859788993276752, + 0.06290413808970423, + 0.08518200002473574, + 0.07238070174590305, + 0.05521032772581109, + 0.06745615031499579, + 0.07123198973679631, + 0.07136822395517523, + 0.07424628747486194, + 0.05969339245422725, + 0.06999149937745358, + 0.07629158776497805, + 0.07602367323236309, + 0.06736674806878007, + 0.08233045734573348, + 0.059574119470766, + 0.0627165912850435, + 0.06705444144251495, + 0.09578937434419933, + 0.0717262106008426, + 0.051721039452258186, + 0.0749017278214438, + 0.06932950165285616, + 0.06527969485451336, + 0.07377179808721405, + 0.07384840275080046, + 0.06807991491963968, + 0.09409692791841323, + 0.0753319755582366, + 0.0629874883969484, + 0.05944571257233211, + 0.10515073444378156, + 0.0723811212313939, + 0.0787759176809216, + 0.0767163996736297, + 0.07322022977532708, + 0.06859817283702085, + 0.06688573895290412, + 0.0679635937811823, + 0.08154772676259245, + 0.06974362369244466, + 0.09050285877165068, + 0.05878391812505819, + 0.08646123236733524, + 0.09288803967994735, + 0.08074095796672415, + 0.07488623798881716, + 0.08550094547024821, + 0.0948498516026346, + 0.07275757889556597, + 0.0726964762895426, + 0.0680520218592763, + 0.10701344754835852, + 0.058330927954576554, + 0.05658569360993727, + 0.06693883710451451, + 0.08258728624582917, + 0.08431827909130225, + 0.05108243381658602, + 0.07272753101870205, + 0.08707838585600722, + 0.0732348552146073, + 0.06928372810627119, + 0.07477181339566986, + 0.07118889941599424, + 0.07365454111391034, + 0.06357037737843205, + 0.07696872477970482, + 0.06831808155244323, + 0.0842731984766055, + 0.07583791561151688, + 0.09877908205874003, + 0.0652969676872028, + 0.07408281616719134, + 0.07240982126356645, + 0.07991955822763247, + 0.09769263611808415, + 0.06424977151423138, + 0.07600349794154486, + 0.07192636874890591, + 0.08036301193108572, + 0.07312035161152414, + 0.05084923954841862, + 0.08235527492790752, + 0.09655631518839504, + 0.0650805981154378, + 0.08208292850112402, + 0.07539936655103582, + 0.06015083771242628, + 0.06732709116857748, + 0.08445552290908352, + 0.0789582599404634, + 0.07536036902222594, + 0.09093092266337387, + 0.07451552240886712, + 0.06726988515889383, + 0.07740156146670017, + 0.08520116220307013, + 0.07158267495106714, + 0.0730974149587198, + 0.07041831649847663, + 0.07468285328090347, + 0.072189758713399, + 0.07908103987650521, + 0.08667642550688318, + 0.06801937859225657, + 0.08187449120595824, + 0.08729805499919575, + 0.05505608566680853, + 0.08688862212203574, + 0.05313309734420473, + 0.08215612638867982, + 0.059501295085255236, + 0.06908284483964133, + 0.0594847770747553, + 0.07716353295455931, + 0.08009842662262345, + 0.06506604171134302, + 0.06978418892754418, + 0.1138792464298818, + 0.06220895008021474, + 0.07087224283751777, + 0.08604148284189272, + 0.07842462627763877, + 0.07056336892272562, + 0.07060564683335149, + 0.09356278495704899, + 0.08532476808833743, + 0.07470417012241502, + 0.05895489584738508, + 0.07190572145597397, + 0.08907405885943774, + 0.08344980685529967, + 0.07431953759018185, + 0.0751840769345442, + 0.06819262168219295, + 0.0834953184823846, + 0.07218213222164806, + 0.063082356439316, + 0.07252287205291781, + 0.09964948467007452, + 0.07247440567792408, + 0.08087272707661093, + 0.0767107626390585, + 0.10034791425901457, + 0.08892766048894384, + 0.06802835603806935, + 0.07070138942652555, + 0.09267612117301029, + 0.0802228452240798, + 0.06988765971107583, + 0.07946107569046534, + 0.0682581238204599, + 0.06787052131881831, + 0.06955470762862904, + 0.06181180839849499, + 0.08317211052981546, + 0.046830674876347185, + 0.0576705414892262, + 0.06228411078292863, + 0.09771167023924662, + 0.08287024725214269, + 0.06302972097733167, + 0.05887759838829259, + 0.07050262835814794, + 0.06260773310007489, + 0.06939223743164875, + 0.06754772345192343, + 0.08246442490543977, + 0.05950899232052931, + 0.07233681404891504, + 0.06843709551933336, + 0.09135089338621727, + 0.0695719089851201, + 0.06789603804190623, + 0.05293954989143543, + 0.09030724430778324, + 0.06120028979796697, + 0.06792335636514292, + 0.06600429119678783, + 0.07140123250740356, + 0.0687399705069916, + 0.07013927458723601, + 0.0712034101217963, + 0.0617349936152549, + 0.07985825322932388, + 0.07593221388788281, + 0.08147261889318128, + 0.07210440592148151, + 0.0756594771923076, + 0.0727091764403087, + 0.07331705678446351, + 0.0714698962141951, + 0.05257021300433841, + 0.06499313182571827, + 0.08227027693517555, + 0.08518334035564544, + 0.06291484078820801, + 0.07255442427734216, + 0.0778099731302994, + 0.0667870339269892, + 0.07440742059744544, + 0.07148125018439108, + 0.0624730535037558, + 0.07111851364790449, + 0.08062565693387266, + 0.08483335697991434, + 0.07336494657923284, + 0.06931954213559087, + 0.08002206080782816, + 0.06091682947854637, + 0.055909386139260914, + 0.06277769575872427, + 0.08489775778377764, + 0.07304355053538321, + 0.05367379278655662, + 0.071805635440645, + 0.05632683692436702, + 0.08337069226934334, + 0.06423423141611002, + 0.07256271575400565, + 0.06597918031277424, + 0.07026498453286423, + 0.0743157961164373, + 0.07555160206530166, + 0.06709107181150777, + 0.06799095562244584, + 0.05776284142117457, + 0.06666541486765515, + 0.08238939349523694, + 0.07613683268612952, + 0.06219240933521377, + 0.08873983127279081, + 0.060601761729293116, + 0.06683642714674409, + 0.07433524818454074, + 0.05528757458512564, + 0.07606185904920004, + 0.058460641734620386, + 0.07786660731276598, + 0.060843154811203996, + 0.06439891437153698, + 0.07622589556388554, + 0.07006011721515466, + 0.0823289997223766, + 0.06133957318807846, + 0.061355069488839994, + 0.07172932261122901, + 0.07058912924255853, + 0.06714247491971977, + 0.07241434812454087, + 0.07381730873566053, + 0.09977862238400663, + 0.08345350880919183, + 0.08853528217536152, + 0.08312985633043053, + 0.0799135317698599, + 0.0704127467712871, + 0.07164521103252094, + 0.0713146821606615, + 0.08291695088181117, + 0.06960502611467548, + 0.08186042456149842, + 0.10952824051112355, + 0.053401117587394666, + 0.05643215923817828, + 0.08574596501911855, + 0.07658580198164736, + 0.08536300993485352, + 0.06907324891609776, + 0.06336402100721772, + 0.061025489671504146, + 0.06582433431015897, + 0.08191123430562361, + 0.06430586173416153, + 0.05798771006663845, + 0.07043428897613835, + 0.07714952744445076, + 0.07640611852703176, + 0.07954446717312409, + 0.06863064363049379, + 0.054183532692070005, + 0.09466824689612165, + 0.08180047277038136, + 0.06418765107520275, + 0.07794491295576284, + 0.09500822460281452, + 0.05821196659254903, + 0.05981391586932123, + 0.08854344709854896, + 0.07414151863415604, + 0.07623661994031203, + 0.08013762655419034, + 0.09645076248879614, + 0.06796854799063667, + 0.05746337624588719, + 0.09392529983079592, + 0.07273822726502019, + 0.07960162870264623, + 0.09631733095460714, + 0.0870241126945123, + 0.06755336483186768, + 0.0747891927575696, + 0.08173243840745936, + 0.05703756818808014, + 0.08042362619244789, + 0.06871382007122862, + 0.07713434112744165, + 0.08517418675236813, + 0.07028093449951912, + 0.0980395684529619, + 0.09362047270791035, + 0.12224968312267948, + 0.08191555886043198, + 0.07545753482730622, + 0.08266591625911168, + 0.061279916299748285, + 0.061721633909372756, + 0.08856980139391957, + 0.06122824104558142, + 0.06813660600171666, + 0.05614241706695177, + 0.06930182827122228, + 0.06950418583445248, + 0.07734766314747593, + 0.08523972965131253, + 0.06916728134687178, + 0.06256906512102825, + 0.04904098953004001, + 0.0742348038186251, + 0.06697999231367924, + 0.05460362941269578, + 0.07168744352610659, + 0.07875163451917916, + 0.09228172146869969, + 0.06521487334990077, + 0.0862562511913824, + 0.07862248184292318, + 0.06454773241855116, + 0.0759283740330448, + 0.06820454900751678, + 0.061557697167951314, + 0.09196820040662688, + 0.08315765480373673, + 0.06785166885504221, + 0.07418413438106863, + 0.05825534032279874, + 0.06814950797069308, + 0.06786886221294364, + 0.07595864282545618, + 0.05943347701323493, + 0.08147387682055661, + 0.06160496667542867, + 0.07248648957629619, + 0.07322064129199729, + 0.05444714417779271, + 0.07112044384760767, + 0.07389856719026995, + 0.07316205974949566, + 0.07913742936031692, + 0.06748355914004278, + 0.07699319871431416, + 0.06796749687570229, + 0.06516942702310892, + 0.09384714802750849, + 0.08060229768130228, + 0.06844823726299208, + 0.09384764784454437, + 0.0792731689118927, + 0.09262829721415985, + 0.0738531320748956, + 0.07857625987929057, + 0.07617366856131524, + 0.06997839657894461, + 0.07831656280907082, + 0.07063784059189884, + 0.07451423833586983, + 0.08140526052917338, + 0.0845692047078902, + 0.05681597293045067, + 0.07554269395296191, + 0.0630280696962184, + 0.060296090107733014, + 0.0652321335542652, + 0.07365669662382149, + 0.07437243894158829, + 0.07899576285203855, + 0.062257488375016254, + 0.09367132375986416, + 0.06956387811062453, + 0.061750056568272885, + 0.08427574803386154, + 0.08314856448043424, + 0.08229136575315482, + 0.07760874843014305, + 0.09024836671171654, + 0.06892723403818944, + 0.08028645435269281, + 0.06627575539394721, + 0.08307500724873502, + 0.0962427660638385, + 0.06853216972839032, + 0.06902742287661973, + 0.08496443216355103, + 0.06914615142935807, + 0.07506606635193765, + 0.073453731474847, + 0.06413388227451841, + 0.07013286422438016, + 0.06611043760812348, + 0.0888459968930602, + 0.08709275443338854, + 0.058439774826065896, + 0.06563748779687642, + 0.07219863870240543, + 0.06627896579049507, + 0.07010651298612885, + 0.09709049771889024, + 0.07295065239383536, + 0.07017341544538375, + 0.0918590482319139, + 0.07100434106085234, + 0.09548909680852237, + 0.0725865299707564, + 0.07111530371123258, + 0.06932060881922175, + 0.06676701163392361, + 0.07579025191628803, + 0.059695987252165454, + 0.0820978489311511, + 0.06470224267614513, + 0.08147025169150697, + 0.0754825886793211, + 0.06764004406543651, + 0.06726792380056855, + 0.0754998106175297, + 0.0881901404781605, + 0.07862544126314887, + 0.06376211028633204, + 0.07576147155909001, + 0.07791068433010255, + 0.09653277005539745, + 0.06263328202498251, + 0.07178326483225883, + 0.07110495828863288, + 0.06711602571323601, + 0.09730304249741466, + 0.06959069462834981, + 0.07451007649686718, + 0.08316054614372531, + 0.07998202315756907, + 0.07629670344386341, + 0.06133772767866931, + 0.05805412735383976, + 0.07001698108511527, + 0.06595693987125145, + 0.0585843761209904, + 0.07615881739005897, + 0.07484590721884804, + 0.0762430835373475, + 0.08143294595333785, + 0.08213285367582421, + 0.06561407523394248, + 0.06888176909388001, + 0.07695452407923178, + 0.09481969503521805, + 0.07883441620101742, + 0.07499952909903917, + 0.08091793258160405, + 0.0645455363842811, + 0.06889687880173441, + 0.06925684459298072, + 0.1252496427468379, + 0.08333504178340347, + 0.06312059638755409, + 0.06085676398886068, + 0.08831175665904996, + 0.08147210691718729, + 0.06835859684359527, + 0.08540540394160766, + 0.0662061563663251, + 0.05027290128230971, + 0.0740491797465274, + 0.062149403923143734, + 0.06549542469594118, + 0.06405569190481271, + 0.07087725795273175, + 0.06704960254770197, + 0.05714769627091312, + 0.06405529448899877, + 0.06863520834815669, + 0.07311156145052929, + 0.06579553130700698, + 0.06350300100161865, + 0.0631349013158796, + 0.082778271682764, + 0.07013068369147842, + 0.07461012114796055, + 0.08993252417701729, + 0.07937807703859937, + 0.07852406523983756, + 0.07188980974529618, + 0.08110065756559681, + 0.07081768798625582, + 0.08693657808263781, + 0.07459537260618328, + 0.08007986910294371, + 0.07481956168580349, + 0.06801036017179589, + 0.07962794453513868, + 0.10096002753010166, + 0.07859169877309792, + 0.08330357627132277, + 0.05945279368481402, + 0.07578667162684576, + 0.07586624320521668, + 0.09208777054617079, + 0.05537113389075643, + 0.06213937982952837, + 0.06438536486114949, + 0.07059533669794957, + 0.057800230339885766, + 0.08837703617122011, + 0.05799149014868417, + 0.07120386694840093, + 0.0909962129584635, + 0.07809755005259014, + 0.07277008809882256, + 0.07441230374892106, + 0.06589791995233224, + 0.061562411134289646, + 0.0800934161188136, + 0.08253711073568497, + 0.07338818110367752, + 0.07747122463855528, + 0.07492379888219268, + 0.06782083508881503, + 0.054312006795801206, + 0.054404765035079385, + 0.05021173370353962, + 0.07345792965245102, + 0.07197794077003332, + 0.08502786294128035, + 0.0822816718328364, + 0.06614233180235779, + 0.06598511678599257, + 0.07073747180963279, + 0.061639768657643576, + 0.07765760175000883, + 0.07470357105251012, + 0.07010213303530992, + 0.06452526210324433, + 0.08760301840054255, + 0.07821223482862931, + 0.10298420598360741, + 0.08134048543142501, + 0.06336402719441758, + 0.06095332373659618, + 0.07573356217325783, + 0.0730671379278129, + 0.06336777205933149, + 0.08098060176899352, + 0.06350965639268866, + 0.07174819785956944, + 0.07346457717745154, + 0.08510878037289092, + 0.0563292433153168, + 0.07282972360724947, + 0.08028489954552596, + 0.08002356919790811, + 0.0789794905399618, + 0.06927923883782161, + 0.06310133341105806, + 0.07388647778317738, + 0.1026649048530064, + 0.0725725794914601, + 0.08738038919784014, + 0.06220429798096587, + 0.0677202630763644, + 0.08202443670088876, + 0.06837875619541212, + 0.0592159278290536, + 0.06865270104497063, + 0.059006356422041245, + 0.06162342663107641, + 0.07472056632064306, + 0.08796647665212805, + 0.06396560853771556, + 0.07934164062975589, + 0.05915664895371706, + 0.07355978116510088, + 0.06793073009853393, + 0.07602770647911299, + 0.08049699500720882, + 0.07893373153209247, + 0.08069287255225471, + 0.06993338823353576, + 0.06116101733365597, + 0.09518138852160658, + 0.08481070185268524, + 0.07278081421156382, + 0.07005929097770852, + 0.06701238412064882, + 0.09266730812883336, + 0.09461322155358075, + 0.07400566407232968, + 0.07104083416675964, + 0.07672891076243274, + 0.06493501340838508, + 0.07061768406984043, + 0.07833528524755672, + 0.06791548058039942, + 0.07591723085258172, + 0.07339474065395946, + 0.08566928951131791, + 0.06841049365485513, + 0.09101326520933752, + 0.08674371544616433, + 0.08802574840038357, + 0.07420698154824032, + 0.07360380364957231, + 0.06635375973673754, + 0.07326411649398802, + 0.08786549967251651, + 0.06875826025938318, + 0.07078144033275341, + 0.08509446720004014, + 0.08042575242805038, + 0.08675325885786277, + 0.07541527052297857, + 0.0819545800685293, + 0.10126477903818004, + 0.10030738511809882, + 0.06843069407852438, + 0.08391268817416869, + 0.06249001969188868, + 0.08831296884734198, + 0.0742384715710573, + 0.06880269802062595, + 0.06578805647102255, + 0.08797157710375664, + 0.08009497481544266, + 0.059014222858072514, + 0.06351569524401797, + 0.08068811237479036, + 0.10547359637444302, + 0.07102150833808699, + 0.0742178016922117, + 0.06315680462872351, + 0.08959551337619963, + 0.10036615616239215, + 0.06317641813375145, + 0.08448063365689111, + 0.07167170617751746, + 0.08444001268213455, + 0.06231944125551486, + 0.06127330225367189, + 0.060210617653449476, + 0.0605794093505969, + 0.0824432234497485, + 0.0638052236664714, + 0.06392768714616874, + 0.07525203176485767, + 0.059271383798074624, + 0.06525945985196295, + 0.06832884749989168, + 0.06703291285169721, + 0.05730382457857213, + 0.07641504750566377, + 0.06279757839581958, + 0.09033070809423842, + 0.0829181763581527, + 0.06103954723494636, + 0.06809394688601157, + 0.07713711104411747, + 0.06618699952414157, + 0.0701397281625494, + 0.06500012481161314, + 0.0770814803118348, + 0.0609409831120576, + 0.08075024815227505, + 0.07395512577660003, + 0.06513098586042919, + 0.0609566178487086, + 0.09537144795716428, + 0.06509314783573436, + 0.07356562738837633, + 0.0730649307378531, + 0.09315210039851476, + 0.07335170747910773, + 0.06762926201257734, + 0.06914349705667482, + 0.06859489320867888, + 0.0786039854758, + 0.058203427476212106, + 0.06431857542563964, + 0.05764455882103112, + 0.07390262873106065, + 0.06636200232017468, + 0.06166328104532263, + 0.05989317916642443, + 0.08838693263197916, + 0.06982392929403156, + 0.08000535744852642, + 0.06705201199937402, + 0.10817206878625811, + 0.07672086820620788, + 0.06023608455332148, + 0.07054335500180196, + 0.07733215921940952, + 0.05640161060452261, + 0.07146835778942512, + 0.06210602761571955, + 0.054062148546352634, + 0.07045929408595156, + 0.07311141286820398, + 0.07675002677286898, + 0.07176063931433883, + 0.07077119675276539, + 0.06669466320317412, + 0.06385571901088635, + 0.0860458558781778, + 0.056540649277647376, + 0.07110639653495514, + 0.09108476484149902, + 0.08615450896064566, + 0.07636241074659963, + 0.07348854470928282, + 0.09545051126842083, + 0.06049623427823685, + 0.06645241302484853, + 0.06466987376022557, + 0.06585788780981754, + 0.07501905695689724, + 0.08552002990926261, + 0.07172586674369573, + 0.06362783503697794, + 0.08764473253448875, + 0.07582853896016874, + 0.06184970637545636, + 0.0856949433890485, + 0.11538886487595101, + 0.07892584705598993, + 0.07484612600427994, + 0.07089161198296487, + 0.12353671039187766, + 0.08285595554743262, + 0.05233827024359683, + 0.07592095353928245, + 0.08026830589028192, + 0.06953353459880117, + 0.08613501219000824, + 0.07059507362250868, + 0.07745054790329123, + 0.07893382138806469, + 0.0720734976197566, + 0.0676117833312894, + 0.076809528118527, + 0.09148951662187241, + 0.04953940704095113, + 0.06781984629803009, + 0.07923841323821075, + 0.08011688004073497, + 0.07341277459345696, + 0.0730084755316059, + 0.07154686477699497, + 0.06735011330002487, + 0.08953863536170362, + 0.07986448158317383, + 0.07148284562174737, + 0.07649766374396054, + 0.07323968502078719, + 0.0661237440698846, + 0.06780755291503847, + 0.06311519521762295, + 0.061027517468817155, + 0.08253654357908531, + 0.0718790958994309, + 0.0904802625043655, + 0.0808109986350384, + 0.06647938221091765, + 0.05216155353506219, + 0.09089810276445066, + 0.0851454008864742, + 0.07450419190802422, + 0.0783775788065491, + 0.07552215645471098, + 0.05930158948291541, + 0.058238815711150985, + 0.08004520562365851, + 0.08666382822996536, + 0.07816543235385918, + 0.07605457418623501, + 0.0720141298019991, + 0.10180549825014486, + 0.09037690359818369, + 0.06567124108038823, + 0.06803204824110183, + 0.07841395652524372, + 0.07772742278219442, + 0.0744330240017098, + 0.0718301361956552, + 0.07363320984304776, + 0.07028580240142758, + 0.06271607411366399, + 0.0832257544388091, + 0.07407852499970068, + 0.09636685453391418, + 0.06623768863019422, + 0.06779246351953931, + 0.07679298208877088, + 0.06136310109013078, + 0.0680668859493157, + 0.07372851950615236, + 0.05925311419895811, + 0.059104013271704524, + 0.0699211003169763, + 0.06736607378794733, + 0.07426929143847741, + 0.07799373156732033, + 0.06531311429319238, + 0.07407247413281182, + 0.07513741218941243, + 0.0790291442634814, + 0.07087478991134072, + 0.07539964715193148, + 0.05791333475622648, + 0.10776814620047545, + 0.05394653254935745, + 0.06387009748065647, + 0.070446780225207, + 0.05698031703226106, + 0.06917870493179945, + 0.07169101898680444, + 0.11050819469844152, + 0.07621011754244204, + 0.08588097635776071, + 0.06323936240806227, + 0.06012773788598259, + 0.060472892412947274, + 0.09250798883412334, + 0.06730814268969447, + 0.06918158548657226, + 0.07518595093668624, + 0.06287796827680027, + 0.06988660345370858, + 0.09485357877166935, + 0.07770394512642508, + 0.08708726311021364, + 0.08150982027555045, + 0.06967459961199066, + 0.058341244632020235, + 0.07393030788536127, + 0.08308267107911191, + 0.07198803622861662, + 0.07596657400993426, + 0.07712273157127582, + 0.06778860575770303, + 0.11077712201226309, + 0.0660678259099212, + 0.09188377771769118, + 0.07314212287663588, + 0.06633898201510857, + 0.0747264981495494, + 0.09756715310662907, + 0.07729215442325443, + 0.0765979001425984, + 0.06623986951115365, + 0.0866243121974116, + 0.07649580942873843, + 0.0654661855644138, + 0.0726662548356256, + 0.07985752488697553, + 0.07941072212671854, + 0.06684489793166722, + 0.07509231215333659, + 0.0879979352614501, + 0.06771354795235118, + 0.05372901547247338, + 0.060201332529347694, + 0.05910389015078941, + 0.06943312640645552, + 0.06700680087032419, + 0.06708511968675748, + 0.1060356437287007, + 0.07879168866584896, + 0.06294360634507036, + 0.06312600073665102, + 0.0924268503023262, + 0.08120963102760352, + 0.06872166152985673, + 0.10610351400405423, + 0.06016599859760929, + 0.08211187689848637, + 0.07658436667210385, + 0.08321466087906289, + 0.08757137697086947, + 0.08401508361087008, + 0.07759342022130902, + 0.06308575618024843, + 0.08100607833283824, + 0.06932490035621004, + 0.07872824836986131, + 0.07054945395312663, + 0.07280776989754913, + 0.062208000688360826, + 0.053894395499308766, + 0.06630138045706463, + 0.07167013253384265, + 0.07613054912203025, + 0.0904961118913779, + 0.062050569391036606, + 0.07942825532088142, + 0.0756547759650386, + 0.07873274871800864, + 0.07724677986671562, + 0.06842883968399037, + 0.06698093191982867, + 0.049734867744719254, + 0.07398689643654285, + 0.08330303796245332, + 0.07502000349848988, + 0.07790095631824431, + 0.0760883750626668, + 0.07050842330782835, + 0.06759351840030671, + 0.08861997390837356, + 0.07938255511635217, + 0.06166063766979888, + 0.07434053607784376, + 0.09570370024430117, + 0.07388196823705728, + 0.09149453579862563, + 0.07552886863927229, + 0.07647707617336415, + 0.07672414109012879, + 0.08767668142849695, + 0.0790223994062881, + 0.06576479932623171, + 0.0803854046937664, + 0.06528359987727332, + 0.08401494565239767, + 0.06786502266224291, + 0.08752020385694317, + 0.06724765062593333, + 0.09363772738942033, + 0.1220523523905778, + 0.08491165540813451, + 0.06995818446618575, + 0.06320852037520322, + 0.066207764068301, + 0.06244347263045383, + 0.08093896414523079, + 0.07507420675763003, + 0.06486571163586174, + 0.0614314819892654, + 0.06986704768103592, + 0.06572036231104451, + 0.10400031577443017, + 0.08121701484759747, + 0.062192863320598084, + 0.07579233585016007, + 0.07904043453168363, + 0.0677250303582122, + 0.07626891810768184, + 0.06675536046957835, + 0.07874999627232876, + 0.06612968993926477, + 0.06539530330230524, + 0.08998241906659375, + 0.05599402163468744, + 0.061159072821109065, + 0.05527432896119374, + 0.055251491912171456, + 0.05966439785322084, + 0.07527694037868311, + 0.06829216993508952, + 0.06807907920652335, + 0.05385521911279871, + 0.07077003985291318, + 0.07730358864657504, + 0.06548758996155188, + 0.08389443419008742, + 0.08485132440426098, + 0.0600234734511937, + 0.07631140205385109, + 0.07970512095436393, + 0.061809501840545865, + 0.06307126627140916, + 0.05865856444725805, + 0.06918746318951964, + 0.0938926373041105, + 0.0708254644702252, + 0.10407314140461935, + 0.05915868471723108, + 0.0721778772753855, + 0.06307817946487931, + 0.06617970554197247, + 0.07500591890454136, + 0.07765432422279525, + 0.0698514863499555, + 0.068051044884972, + 0.08653831238022443, + 0.06699165998015441, + 0.06478107670967842, + 0.0729013853870793, + 0.08246876866310082, + 0.07835668455054694, + 0.07440573520731973, + 0.07025953010067248, + 0.06367587684786905, + 0.09265544134663707, + 0.07772184081732085, + 0.07808447770890443, + 0.060534747229476965, + 0.08034706804803898, + 0.0636115691645984, + 0.07313058171726929, + 0.055587213484680015, + 0.06820438109962056, + 0.06209545702496395, + 0.06824762620028357, + 0.05285100800634396, + 0.08192832801752538, + 0.06879380122056494, + 0.08587126540908772, + 0.07390861062465102, + 0.06855354674244495, + 0.060511659788009306, + 0.07099093200549852, + 0.056521485948300934, + 0.07951327685044092, + 0.07987369402866998, + 0.07255546829235814, + 0.0729695851460332, + 0.06954307334960982, + 0.07920892980057007, + 0.06450130766631382, + 0.06679510307015434, + 0.06210233073161503, + 0.06891718118404978, + 0.06875881460285901, + 0.06073610958545808, + 0.08616229393005391, + 0.06210245220702486, + 0.05327836172360938, + 0.07325377090628386, + 0.06541793993944937, + 0.09080604584244183, + 0.09102238729294207, + 0.07501152311417637, + 0.09023184020149154, + 0.07059250205024176, + 0.08124176886596793, + 0.06751329770968269, + 0.07922854842440193, + 0.07639642111166628, + 0.09062095962094986, + 0.07325357071661488, + 0.0697084487820617, + 0.07271172225452348, + 0.07125666731751126, + 0.09386264374524249, + 0.07676773706019885, + 0.07910159677845181, + 0.05998932226326791, + 0.06699449565859233, + 0.06760903571037276, + 0.09023945383755537, + 0.06585812505724933, + 0.06813774330796069, + 0.063441751152206, + 0.07299098135880963, + 0.05283674509736393, + 0.08672637447966462, + 0.10734240076906658, + 0.07563103810507302, + 0.07640464864575848, + 0.07115712868922462, + 0.0795997601138285, + 0.07277424413258832, + 0.067847731349221, + 0.09151345756195288, + 0.07085712400991709, + 0.05940703370483924, + 0.08871998024323904, + 0.07127393504016744, + 0.07894738705547015, + 0.06874892941255308, + 0.07611488183565306, + 0.0649195355442654, + 0.08372690056640325, + 0.07169093742800596, + 0.06145337933639816, + 0.06558497999391892, + 0.06637338289872163, + 0.08187935308335426, + 0.07013782938008739, + 0.09493791868773718, + 0.07680885988589789, + 0.06367675489067351, + 0.08209147293866186, + 0.09187050123686959, + 0.06284529054364286, + 0.06468683865077729, + 0.058695325565399505, + 0.09238199667081645, + 0.08150595987640609, + 0.10287281775719868, + 0.055186778700299984, + 0.06353851167433638, + 0.0727072868327652, + 0.07758482902016475, + 0.0564918769291321, + 0.06028574812328203, + 0.06788681708501673, + 0.0658230766951685, + 0.08597134998438952, + 0.07711940426857594, + 0.0740151314805498, + 0.07888618615654672, + 0.0821317727705974, + 0.07995238510434088, + 0.08466516943861996, + 0.07697324097113305, + 0.06136570633243912, + 0.07889329528326863, + 0.07466615606541872, + 0.057591527529216716, + 0.06623368262077559, + 0.08048420017844272, + 0.11044547767247176, + 0.07953259720003811, + 0.07520037363651928, + 0.06448193903754, + 0.06877858217373244, + 0.09141396129028206, + 0.06461040011440763, + 0.06823568203584528, + 0.07678620110481095, + 0.07218592307970327, + 0.08559260799485531, + 0.06800281544707723, + 0.06841287417260185, + 0.07580235285023786, + 0.058739269567653095, + 0.08053656325232411, + 0.07413233608850488, + 0.07115434631888512, + 0.06439546255591728, + 0.06814329554986148, + 0.07410561032897012, + 0.07839620138947488, + 0.0684974678964602, + 0.05797199384203642, + 0.06822504536129144, + 0.08989495722839365, + 0.05810481400532711, + 0.06930266504786078, + 0.08554574811639884, + 0.06212822694793094, + 0.0790701506159853, + 0.0633683777440529, + 0.08442056134946807, + 0.0774821739007171, + 0.07305479574791557, + 0.08141181489929014, + 0.07080180639921112, + 0.0828673367009427, + 0.0779034364457544, + 0.08033999462469499, + 0.09543025654421788, + 0.07209891161050153, + 0.07910604248352231, + 0.06979961725997362, + 0.06518195174524155, + 0.07107610079452797, + 0.07117338081907537, + 0.0650254834883564, + 0.06246235805076036, + 0.07463712834128684, + 0.07583632881793578, + 0.07348976824609006, + 0.08553520792959879, + 0.06436654993169792, + 0.07515886729325756, + 0.08875975777851888, + 0.06694659695174059, + 0.07994024351841093, + 0.061966199547443035, + 0.05797200823370738, + 0.08042447875959721, + 0.09360400850112915, + 0.06717620854176602, + 0.0715231088984647, + 0.0645756404956173, + 0.08368938255894051, + 0.07431189271981592, + 0.08285818413187562, + 0.07171709859800615, + 0.08119024758296232, + 0.06848495737819661, + 0.057995788101385545, + 0.06481856550276699, + 0.05993329701925602, + 0.06399958946560484, + 0.0673408543258914, + 0.07851722463155175, + 0.08079875703641219, + 0.07029042877002067, + 0.06878110102640965, + 0.06287361671039726, + 0.059432191151754805, + 0.06162383473266005, + 0.05820891139899635, + 0.07816620844870095, + 0.061767043414250995, + 0.07454739213697849, + 0.07261661548915631, + 0.08064375322341287, + 0.07507398352011709, + 0.06798491420637885, + 0.09093774913062583, + 0.08410116937532179, + 0.07229554058986347, + 0.06908866854479662, + 0.060934506491535555, + 0.08320045511950647, + 0.06525744020469712, + 0.06654059994563402, + 0.05627094326722457, + 0.077626007195173, + 0.06775677689993427, + 0.07170550182581416, + 0.07365375982450825, + 0.08483272090658293, + 0.09299907540376029, + 0.08197660521381277, + 0.0760096798746603, + 0.09459444496520199, + 0.09917005623079098, + 0.06882496799342448, + 0.06610571794217258, + 0.06370766203419928, + 0.0952750073319156, + 0.0703877431796261, + 0.08077154650890192, + 0.07458266416647723, + 0.05649078951420611, + 0.06765957274951671, + 0.0861599815362729, + 0.0720028668472659, + 0.05945560750185331, + 0.07247498925592481, + 0.0662655193351764, + 0.08218122200559326, + 0.06321726961153193, + 0.05909858669508088, + 0.07427088762404993, + 0.07437994439474739, + 0.0652040722394446, + 0.06908211543516185, + 0.07874377190128105, + 0.05637198305754194, + 0.06443338528215205, + 0.0602506944107631, + 0.07177772491045498, + 0.08061081804899876, + 0.08800623785361404, + 0.06924924643468303, + 0.07154333547120438, + 0.06287734972388191, + 0.07943516541484011, + 0.09318659619190592, + 0.10245179340069002, + 0.07432462225957846, + 0.06887811426802984, + 0.08130677863633336, + 0.08019191672958578, + 0.0824993566747245, + 0.06367014314339703, + 0.06163772932741532, + 0.05297303917607919, + 0.06830185801337403, + 0.08225827277682306, + 0.05683198543223114, + 0.07352413072222427, + 0.09100198171084495, + 0.06567809824931232, + 0.06018288510311873, + 0.0638311212105374, + 0.06711561747020041, + 0.0747515343354436, + 0.07399162729672325, + 0.05997503805737886, + 0.06608150086829837, + 0.07595227306074923, + 0.06761814103232539, + 0.10103164245831896, + 0.07822015061451584, + 0.07872279954705924, + 0.06634808451533095, + 0.06329148577268141, + 0.09495131011291788, + 0.0730865569758, + 0.08674078432010231, + 0.06197782220868292, + 0.07177894533037318, + 0.05721122676188195, + 0.08421662219952372, + 0.07746550865579989, + 0.06984771045637118, + 0.100226863804346, + 0.07979260611719503, + 0.058584523418468204, + 0.06732704741030367, + 0.07073352723645826, + 0.07670580447318087, + 0.09634570402357932, + 0.07358123365921997, + 0.06077902037337915, + 0.06798933404419924, + 0.06849679056095145, + 0.0838277672731815, + 0.07848721151509126, + 0.07911262809966679, + 0.08851010123255966, + 0.07440860039323957, + 0.07772511827466386, + 0.07079780395435498, + 0.07491943296799251, + 0.07636286940692215, + 0.06569327081659554, + 0.08521324077821234, + 0.08026509200989652, + 0.07377975632654607, + 0.09469601119435939, + 0.06731081527809119, + 0.06719788974424894, + 0.08057376896343327, + 0.06888438037039869, + 0.08974786680773929, + 0.07395174690467413, + 0.07186593688721601, + 0.06839092753918677, + 0.0757528805461036, + 0.056641994613432806, + 0.060397726955496826, + 0.056290663572504285, + 0.06720341626069488, + 0.06269852455949593, + 0.07292549917070401, + 0.07517904153356159, + 0.07496623670047503, + 0.08441337007722918, + 0.06181712734456289, + 0.06072343642664827, + 0.07399979566662418, + 0.08838637973023766, + 0.07920626736433314, + 0.07953964455174166, + 0.07539527061428823, + 0.07573359446883293, + 0.06990447731628681, + 0.09265437800461442, + 0.06528084557825078, + 0.07004568771036097, + 0.06561255872999232, + 0.07050110770980614, + 0.06468805380923319, + 0.08095485762618966, + 0.07658888001494756, + 0.07050927539672384, + 0.09123982067136507, + 0.08460445971371408, + 0.0857005832741917, + 0.0696194439986323, + 0.07617027142052658, + 0.07603622993802588, + 0.07045280619896237, + 0.0762623098140127, + 0.07327621835850139, + 0.06634159390049843, + 0.09236950398431101, + 0.05951434990169526, + 0.08686557017360423, + 0.06983520648476156, + 0.061872381806286084, + 0.08641160123330446, + 0.09001738609949353, + 0.08873678644258828, + 0.08431858791552879, + 0.07576025918929039, + 0.07401944972354091, + 0.07465000860057026, + 0.07920560939533651, + 0.06916509906062243, + 0.06039194436771756, + 0.09353759606025741, + 0.07546706033289266, + 0.06907503820397691, + 0.08892306278882194, + 0.07340592253987269, + 0.07262413899023357, + 0.08242612324356093, + 0.07296173629013859, + 0.0781973707378343, + 0.08021140431360642, + 0.08422081119287543, + 0.07631965455353433, + 0.06816708050902329, + 0.07523190184044366, + 0.08219981076284862, + 0.04993105460106168, + 0.08535471286256092, + 0.0870710459957238, + 0.07438225588768894, + 0.06565010099456353, + 0.09252763108718971, + 0.08451137302296804, + 0.07982425376278617, + 0.0681151452156869, + 0.07510718163172007, + 0.0665538674428666, + 0.08319272564029666, + 0.07618747541049102, + 0.0782203056118477, + 0.08629391483220895, + 0.09909962316813235, + 0.07163295806397692, + 0.05720592304997952, + 0.07048395358401813, + 0.07834393491746405, + 0.079002349205523, + 0.06728154010485514, + 0.06094181943555963, + 0.08524069968240154, + 0.07076797340861919, + 0.08152004580518069, + 0.07040292426563886, + 0.07846256635622219, + 0.08311639614919826, + 0.08022911252943922, + 0.0579525926336329, + 0.0762180365247149, + 0.07904374098167619, + 0.07835610189722636, + 0.06638544318744166, + 0.06928713747078505, + 0.062343025094060686, + 0.11704775807787492, + 0.07022478874948224, + 0.08086113591949155, + 0.08050948989996473, + 0.07018996381773122, + 0.07654739209249717, + 0.07919772100085028, + 0.06363706703786713, + 0.08126873720982421, + 0.07053588606593453, + 0.07498602998416962, + 0.07509064770646708, + 0.07278036394701842, + 0.07507762764002741, + 0.08298321029920912, + 0.06801493500934722, + 0.07681586616434535, + 0.061359357210672656, + 0.07110552730959234, + 0.06380648108352602, + 0.06276799732382789, + 0.08067608559571454, + 0.07758980593958667, + 0.08902125771739539, + 0.07687754050860605, + 0.0807406537361915, + 0.07824014683561155, + 0.07120580905805357, + 0.06875179405876716, + 0.09561379667034305, + 0.0808735512076536, + 0.07819754952207515, + 0.08848608690853954, + 0.08893221907778077, + 0.0876409098083666, + 0.09877149556278883, + 0.07776971873931761, + 0.07174025079495537, + 0.06923119359805532, + 0.05683995670367359, + 0.07637289202976327, + 0.07782186996894545, + 0.0632770273562883, + 0.06632792939748985, + 0.10894019172548287, + 0.06917444768607299, + 0.05467011560398911, + 0.07015289702833268, + 0.07068425429915408, + 0.05220427786422355, + 0.052929279676593576, + 0.10850586937341214, + 0.06524568869951716, + 0.08141912166902827, + 0.07675513752840503, + 0.07485736299014771, + 0.06966033487075875, + 0.09147258077927505, + 0.08652666177636602, + 0.08480146088601122, + 0.08779173459847667, + 0.06517201013898292, + 0.07064263133030917, + 0.08442546012646641, + 0.0687077640481535, + 0.055389536638178256, + 0.06429159261195157, + 0.0750379005094482, + 0.05941548144155969, + 0.07493203737599968, + 0.09315810793636514, + 0.0619307286313361, + 0.08554221252965234, + 0.10290074131647757, + 0.069090401962703, + 0.0829708179611052, + 0.06951806211916238, + 0.07278496372958729, + 0.0671710275782712, + 0.0677567521094478, + 0.0727958651435633, + 0.06861901558090398, + 0.10508207456121224, + 0.07122694092952628, + 0.07582538769797748, + 0.07068329522621769, + 0.07763326872313944, + 0.07350234850571301, + 0.09055884057107409, + 0.0871693514752039, + 0.08085241621635728, + 0.07428202151173022, + 0.08041039301144857, + 0.06600241203323697, + 0.07327396813079556, + 0.09105059183491837, + 0.10853429058466464, + 0.07817055625960613, + 0.07400397135627075, + 0.11386842707744659, + 0.06546384990842592, + 0.07186123270686143, + 0.07929947566817581, + 0.07092939449879902, + 0.08622415883238223, + 0.07333764829952368, + 0.05894082081426164, + 0.08071458530105267, + 0.062030312182954295, + 0.07495179968229554, + 0.06505395683192383, + 0.09624316971737665, + 0.06727965521834527, + 0.05944388038977168, + 0.07245139960729946, + 0.07395507656690296, + 0.08745942591892598, + 0.08459442750081156, + 0.07509409776960685, + 0.06991199322030917, + 0.05723269970971605, + 0.0682451288872506, + 0.06706331549338311, + 0.0704326227491779, + 0.08086499938651111, + 0.06965423364756017, + 0.09223198698566243, + 0.05839791402439044, + 0.08141761508801643, + 0.055947745249928224, + 0.08605899634900967, + 0.0832512490239053, + 0.06251063233491708, + 0.06910239709409721, + 0.08360581220000841, + 0.0749415311435151, + 0.09822198232149053, + 0.05687612395188465, + 0.06240026127393046, + 0.0643330767504052, + 0.08490437031620895, + 0.07135174804677914, + 0.10606055965965022, + 0.06942392057041624, + 0.0841326430034279, + 0.06825986399136615, + 0.06177467873562308, + 0.06598428253560287, + 0.06271314774690342, + 0.0923776688750654, + 0.060898898117697664, + 0.06440848622043494, + 0.07416944559148425, + 0.06883711283645114, + 0.08309856986825298, + 0.07187567706159574, + 0.07813783599743639, + 0.07325892169069013, + 0.0684065298272919, + 0.06830810233137984, + 0.07860881169877382, + 0.06492657557481461, + 0.07314727684172936, + 0.08074493227546299, + 0.05216922491239005, + 0.07178970065220566, + 0.06144368124292302, + 0.10006963156329196, + 0.06819555384837471, + 0.08246800608553513, + 0.08511555105160133, + 0.07913606620190876, + 0.09158449677848189, + 0.06688115787457807, + 0.08423152585520789, + 0.07985336966578516, + 0.07600540628174078, + 0.09919691036167715, + 0.06215026132866924, + 0.07314770460022654, + 0.06499337460131623, + 0.06949821115949516, + 0.09979560197902022, + 0.10161912269053312, + 0.07149176460586462, + 0.06915352181012697, + 0.06501643462015118, + 0.0775513624029736, + 0.06054725551364473, + 0.07332762766918569, + 0.06745994080766335, + 0.08702556301335532, + 0.06283106135064313, + 0.06392719376957566, + 0.0721536509139645, + 0.07469639041965637, + 0.08986426205757721, + 0.06890471302725616, + 0.08078194070522003, + 0.06966280021906782, + 0.05774259644804922, + 0.0928431230595762, + 0.06566812256418385, + 0.06135656532858683, + 0.060728365241512296, + 0.057185209911337395, + 0.07256890241851996, + 0.07201406208145122, + 0.0843332085206266, + 0.06400494624550404, + 0.07201072733732622, + 0.06197070498457411, + 0.07093502542682971, + 0.06888878219424832, + 0.07023965897104459, + 0.07863406766521426, + 0.056412808517478964, + 0.06603307242215528, + 0.0628849146168397, + 0.061588625846221996, + 0.060733258104356945, + 0.07015305937840123, + 0.07587165939557465, + 0.09573777950809458, + 0.05310631089837582, + 0.09188302054935059, + 0.08596305011737966, + 0.05896527798567957, + 0.08296510145893417, + 0.08182250063936544, + 0.07857256408619165, + 0.06828608804787675, + 0.06354143513421844, + 0.06418893150294602, + 0.07300979098450486, + 0.0728936125146958, + 0.1264844538669435, + 0.0655655816915131, + 0.06701326656393314, + 0.07338000668604597, + 0.06622785305874682, + 0.07703297026607002, + 0.08329669384672007, + 0.05357829780137704, + 0.0748299856329921, + 0.07258368817211061, + 0.09416240553509639, + 0.08653689142850096, + 0.06727601292275188, + 0.07279882080283205, + 0.08263577897502815, + 0.07165827952379307, + 0.07545833786750078, + 0.07293102476533031, + 0.05894329207261631, + 0.06812340982858382, + 0.1039455394832702, + 0.08508626470580441, + 0.0700668995545275, + 0.07515230681374997, + 0.09637544681233746, + 0.08253498983058648, + 0.07164473555136852, + 0.06667417431844001, + 0.057624098625038485, + 0.05998505362317375, + 0.0933119130615334, + 0.07160901754179572, + 0.07774550558419462, + 0.09446172458362874, + 0.06461445335328699, + 0.06432252011898812, + 0.06360207135560164, + 0.08030866366795371, + 0.06673476980794825, + 0.07992174056511521, + 0.0872782546705636, + 0.06298067679337817, + 0.07634069273147664, + 0.05915276120884006, + 0.09197955720033112, + 0.06254873711030504, + 0.07196448509382071, + 0.0946120697380238, + 0.07031787902006786, + 0.07201026541930369, + 0.08043691390491658, + 0.07752838027994081, + 0.07680420440171659, + 0.08209354704586179, + 0.06214887839210028, + 0.07673887720190903, + 0.060468099110596675, + 0.06948651804234747, + 0.08120054375771323, + 0.06991040944599715, + 0.06507741284507047, + 0.0847810556904879, + 0.09125780615326226, + 0.0978798713237954, + 0.05402492445142781, + 0.0692175236103094, + 0.0810768029875963, + 0.07243325080811587, + 0.06070425312093145, + 0.07270008271035228, + 0.06915087197505576, + 0.08041485072643763, + 0.06614092190716804, + 0.07752186977375276, + 0.07764806422156922, + 0.06677854185785007, + 0.07323960747892132, + 0.06480234724082828, + 0.08008732174288641, + 0.07964129465504625, + 0.06453878392565245, + 0.0682112108129381, + 0.07342238083057398, + 0.07577546928408618, + 0.06076005041903309, + 0.06783455905235122, + 0.07124391872915013, + 0.05825749746438428, + 0.06836867146757504, + 0.055603976962760496, + 0.08446904629400209, + 0.06108181011362168, + 0.08185565443169747, + 0.06262586245053811, + 0.07626668892346981, + 0.07522913894626704, + 0.07042268373526003, + 0.08449712938572604, + 0.07687384209141285, + 0.06084382601067958, + 0.07486916776306993, + 0.07526747253992529, + 0.08433676965552374, + 0.09118623600344418, + 0.055478919459214536, + 0.06532457255717503, + 0.06823752784601354, + 0.06521543298369033, + 0.08063209252187034, + 0.09152225806397758, + 0.09799041372685346, + 0.07459193273012453, + 0.0881556627111357, + 0.06931629379608725, + 0.07119877633906857, + 0.07127604106155985, + 0.10599843307891957, + 0.06461562657275999, + 0.08005804284479667, + 0.11211203414678719, + 0.09114386093364045, + 0.09345790637199083, + 0.0717613846075896, + 0.07008328682012484, + 0.05837250233913669, + 0.0734095615278174, + 0.07421916911422331, + 0.05759447274925178, + 0.07451967837143827, + 0.0666454139291945, + 0.07315641675633165, + 0.07669027807183422, + 0.06646942796894181, + 0.08014574515468015, + 0.07295794345279255, + 0.07306374446871775, + 0.08280987016883297, + 0.0771024175361094, + 0.06614607061579254, + 0.0573319261510031, + 0.07338585080608526, + 0.1121912355451822, + 0.061375328353355386, + 0.05815930698626193, + 0.06068999262586423, + 0.07000951828880064, + 0.08284860835181382, + 0.06061815697120951, + 0.060784134165450136, + 0.06132212601585849, + 0.07858511932532947, + 0.054125610310843515, + 0.07595854703824062, + 0.060592591069341104, + 0.0678993259880503, + 0.08139202360774826, + 0.06595102322539252, + 0.06903926881455871, + 0.07292603831451423, + 0.06462786989185862, + 0.06268937125351864, + 0.07391108947514063, + 0.06926277647423891, + 0.07041439265530143, + 0.07797540070408325, + 0.06514149023513204, + 0.08518250635505234, + 0.06840314832810902, + 0.07357413350420837, + 0.07328889024728283, + 0.07554288856409419, + 0.08063021253894982, + 0.0796890190636649, + 0.06338723655663123, + 0.06390027556693098, + 0.06186127995879198, + 0.052367290985502385, + 0.0657065403359164, + 0.07825090848124648, + 0.07752231945642292, + 0.06944437844992471, + 0.10043905251942987, + 0.0678723318778707, + 0.06953245440626599, + 0.0738041694240006, + 0.08895183105072284, + 0.0620380654512236, + 0.08099859696803177, + 0.12783791709052142, + 0.0730999227808102, + 0.05717650159762603, + 0.06399946744176696, + 0.06290339211829532, + 0.07549569722447586, + 0.09017913874464233, + 0.0692701001037238, + 0.06610368538170633, + 0.06972575418620262, + 0.08449358232109004, + 0.06264297716718023, + 0.06325212350343055, + 0.07779579903791392, + 0.058798163799922885, + 0.0997210676422231, + 0.08591924797913736, + 0.06954585632785863, + 0.07507880526059982, + 0.0965362366794994, + 0.07714171249675648, + 0.06214810596944981, + 0.0943971880249218, + 0.05851935575811587, + 0.06523723832641484, + 0.08128929383786584, + 0.06179956961505709, + 0.07396628300625291, + 0.07078381822688885, + 0.08081815068866015, + 0.07452584149806682, + 0.062419455313999575, + 0.06324115399598591, + 0.09096598791048743, + 0.07711414562715191, + 0.06975759479744573, + 0.07548689175866313, + 0.07098739282787583, + 0.0656913772807738, + 0.06847670983396736, + 0.06721115241541645, + 0.07344923901236074, + 0.07305609249351457, + 0.058666171843239336, + 0.06381242262035783, + 0.07329148179314014, + 0.06315421748886937, + 0.057958027927597966, + 0.07350396737815315, + 0.06410077036045234, + 0.08678916040717284, + 0.056885718969885396, + 0.08055989609809604, + 0.08046265596297143, + 0.08368458302412735, + 0.08589362590393528, + 0.0992407400985578, + 0.08467974892751136, + 0.05509781990458915, + 0.05632841920984646, + 0.06770505646145554, + 0.06912899518328343, + 0.07455151398379754, + 0.06035097823600946, + 0.07505736571192959, + 0.06727966124263261, + 0.07115011558923295, + 0.07884687124294289, + 0.06898540149053663, + 0.06413452852204243, + 0.07335338656871909, + 0.09944843259386044, + 0.07247789598556133, + 0.06904359825104116, + 0.06273854153785352, + 0.06907653036418147, + 0.0660720988912993, + 0.05849682518522654, + 0.0551185044825423, + 0.07363462931758688, + 0.0626291309732453, + 0.06905649041057774, + 0.04987396539237164, + 0.08343915158809813, + 0.11077199078580661, + 0.09459942540260126, + 0.06875031731507583, + 0.0876483275895902, + 0.059654203011215934, + 0.06473657150658603, + 0.06451006433360298, + 0.08965938024061909, + 0.066224175665067, + 0.08254354584475246, + 0.0685550381601604, + 0.06832968796814691, + 0.08154802842286302, + 0.06642005158644305, + 0.07196973472782689, + 0.08062438695342648, + 0.07517659361554377, + 0.061238704326308145, + 0.07913506278211405, + 0.08452352544103167, + 0.06137727977448388, + 0.08792939043677182, + 0.0634862187405853, + 0.0727348216394332, + 0.05858080635529689, + 0.05737399138677093, + 0.06986040815650442, + 0.06760418436292508, + 0.06028252376065395, + 0.08004902760100452, + 0.07164451691912602, + 0.07804722308253145, + 0.07546478824477398, + 0.07509349108114975, + 0.06541560170855876, + 0.09425186628664013, + 0.07064390480752568, + 0.05830672919178845, + 0.08360841210388079, + 0.06713932991183752, + 0.09783700578545522, + 0.07863592781708174, + 0.08839242864990379, + 0.05672008104647207, + 0.060582217479465385, + 0.07715391097929408, + 0.0639703338790403, + 0.10989576967224325, + 0.058144589545510605, + 0.07821869113430556, + 0.08111155725588036, + 0.06183226480106615, + 0.07656246236087094, + 0.08045378945794403, + 0.06948485114349136, + 0.06891911049106637, + 0.05773113054142943, + 0.08093331507997589, + 0.08325680995983616, + 0.079636362371285, + 0.07090342386697028, + 0.08685338719320569, + 0.07687032860103588, + 0.10969145548196574, + 0.07067750819322702, + 0.05429003490482469, + 0.06282026130780903, + 0.07270851667974172, + 0.08985286177114382, + 0.07469864751337345, + 0.0603956783997096, + 0.09316273580592652, + 0.07422565191331977, + 0.07479902724824296, + 0.06293008513354907, + 0.08222026915668382, + 0.08173268345703935, + 0.08002489904684018, + 0.08417445164791684, + 0.0557920622842285, + 0.09786577860604731, + 0.08659784863583489, + 0.058059503861107586, + 0.06563541967603649, + 0.0638451087250819, + 0.08034124343026766, + 0.061795352789416017, + 0.06341631226986638, + 0.07120713646453523, + 0.069353608849051, + 0.06608182664470215, + 0.08199838071611372, + 0.05469113910141282, + 0.07574386162330399, + 0.06116190863271764, + 0.06958456233362105, + 0.08317253155829965, + 0.05341680888257962, + 0.0785996958854131, + 0.09768573212531202, + 0.07374132503540327, + 0.0796575224354438, + 0.06603285049967662, + 0.09872036942577805, + 0.0783843855894108, + 0.08245785603451884, + 0.06114673977136192, + 0.08864401828927868, + 0.07707777307421389, + 0.07439028584013892, + 0.05936596487419851, + 0.09545152697849071, + 0.0660165634625426, + 0.07818778276791893, + 0.07974770748850081, + 0.08252604972951832, + 0.07468016378344432, + 0.07240177105798432, + 0.06730453839013366, + 0.06710114600523912, + 0.06148351648901248, + 0.06246148346448506, + 0.08933543460247619, + 0.08397252504906777, + 0.06355934751409699, + 0.059244410003550116, + 0.05912332860830723, + 0.06475091300208516, + 0.061646323739637014, + 0.06828857161412313, + 0.09270267200168708, + 0.11657876279560525, + 0.0613113821216531, + 0.06573070834080717, + 0.06713143505007288, + 0.08132823617748423, + 0.07002250824673704, + 0.06793466972449738, + 0.0807873401783637, + 0.08479357737284098, + 0.07825157094287345, + 0.062164894342038333, + 0.07259626235891878, + 0.07934094153801928, + 0.06474605533756964, + 0.08743429495946495, + 0.05797870642033911, + 0.09814083194053053, + 0.06617704733783152, + 0.08561436446891754, + 0.06446676312250246, + 0.0522442576123279, + 0.06583644475677286, + 0.07579045888419805, + 0.0932915287546366, + 0.06619444056047143, + 0.07413347649019766, + 0.07335438619711149, + 0.05614740999547971, + 0.07469614347089622, + 0.07125816270388163, + 0.10135659506577256, + 0.06489011615444612, + 0.07872785013809391, + 0.0690482670811054, + 0.06510626438506405, + 0.07741816860336681, + 0.0730364240139007, + 0.07601134479161009, + 0.08524699299946928, + 0.07633308315204237, + 0.05570142033952155, + 0.09516210001711786, + 0.0655089507880576, + 0.06828778294530992, + 0.0742784314478961, + 0.07842212823908296, + 0.07795528965548743, + 0.07738804533032023, + 0.05864805994690378, + 0.08274243714870709, + 0.07007804826818408, + 0.06752819341184829, + 0.06546518472172447, + 0.06739539568695418, + 0.07073413091012774, + 0.07522262853952853, + 0.05750562974117833, + 0.06762367985465197, + 0.05593905207109658, + 0.0636656672914108, + 0.07669116949575086, + 0.07635503183728462, + 0.08083591493477381, + 0.07810393885570578, + 0.07567520220513037, + 0.0741393380726877, + 0.05405974644018071, + 0.07957672356649619, + 0.0817605080790872, + 0.07272108660781045, + 0.058437888066181914, + 0.07067256241300743, + 0.0799506029581534, + 0.0596129062068539, + 0.07933978925745132, + 0.09084024478872697, + 0.06278830924610417, + 0.06437675710787644, + 0.07484752237253392, + 0.07729213603186609, + 0.05540060344282682, + 0.06475305863020854, + 0.06436986110334456, + 0.07110803808967132, + 0.07855484071470689, + 0.07347482226627988, + 0.08530604833079072, + 0.07219521251479519, + 0.08831440463787546, + 0.0821577154082914, + 0.08533868782601271, + 0.06610190560301427, + 0.07281196329912264, + 0.07959368307120612, + 0.06797928007552823, + 0.07311576666767156, + 0.08014381923374404, + 0.0640297627718957, + 0.06643215484706692, + 0.07300998334137283, + 0.09077205219259359, + 0.08111880657211133, + 0.08579846089252538, + 0.0807866141417956, + 0.09985156844832102, + 0.05281474238207453, + 0.07656940889356777, + 0.07438228289562432, + 0.05569961389261924, + 0.0691083622403757, + 0.062253108231063156, + 0.07980233834805853, + 0.07756133263751458, + 0.0672702960356453, + 0.06708172733000235, + 0.07326878703469686, + 0.08085967990535646, + 0.06194429495238019, + 0.06128802803889804, + 0.08284977377024662, + 0.07128598195525991, + 0.08876382706302607, + 0.07316881556693891, + 0.07440845915148074, + 0.09052539249994838, + 0.0765470982398251, + 0.053693432080988715, + 0.07374210809525512, + 0.06898338648055603, + 0.06840974710481362, + 0.06698959353191575, + 0.0649112692842206, + 0.05655472695994811, + 0.07286197198864418, + 0.08762067706935513, + 0.07148484514140277, + 0.06943344239921, + 0.0790208495780118, + 0.08084093433251328, + 0.07254637983867988, + 0.06969950794263709, + 0.05196026631020626, + 0.06712830743589894, + 0.06497360512921162, + 0.08119179717343386, + 0.07144598553757453, + 0.07085814658389136, + 0.07907312313416892, + 0.08035097825410643, + 0.1118299472448886, + 0.07430090337554751, + 0.05749948356397133, + 0.07703436282270135, + 0.07913778687942301, + 0.06167356199666897, + 0.06671244137165087, + 0.06763554264650767, + 0.08734474597812314, + 0.08947555396282757, + 0.06025176432598656, + 0.07647762184344237, + 0.06509785493938511, + 0.08208212153275722, + 0.09773718591878236, + 0.0715416229019359, + 0.09111297900803926, + 0.08705238515789619, + 0.05848145208164058, + 0.08014658910620563, + 0.0891724005313537, + 0.06849244181546892, + 0.06451211500817959, + 0.07813576250765138, + 0.08668063234937683, + 0.05500756995155951, + 0.06511445168709892, + 0.05808372091963259, + 0.08007315068344388, + 0.07272685559455347, + 0.0678839340640202, + 0.059397050498909705, + 0.06850487052994488, + 0.07180175404587409, + 0.061327110258248364, + 0.07964427190714948, + 0.08746657832068046, + 0.08985913428488473, + 0.06773249773046548, + 0.08864619240291603, + 0.07286408291900257, + 0.059509935707832314, + 0.10111092482203807, + 0.07888983118428416, + 0.07408579705891809, + 0.07428696348720519, + 0.07022104726236324, + 0.0737044679740627, + 0.06699932082022374, + 0.07792935835717334, + 0.08875913081264879, + 0.08228930340583743, + 0.08461135069849843, + 0.0555413507586925, + 0.06936884867125716, + 0.07641702736044301, + 0.08959987079861097, + 0.07089546242481237, + 0.09600960758148606, + 0.0769603331686022, + 0.06869800913098588, + 0.06943623409820492, + 0.06276002754843678, + 0.08707939723618521, + 0.05730455071062536, + 0.06450192260743214, + 0.0846356700082354, + 0.08177319845391755, + 0.0736120726005761, + 0.06594886620382898, + 0.05704217298639215, + 0.0802356108548302, + 0.07835695453663895, + 0.07530870403590248, + 0.06980605215798345, + 0.07720560773993095, + 0.062209604482712996, + 0.06924579356592434, + 0.061737991134365754, + 0.07414895280028598, + 0.08228831082120651, + 0.06391184844283276, + 0.0657613888613973, + 0.09887050098141822, + 0.08215108420689392, + 0.11272398612471426, + 0.07784536981911494, + 0.07042263772878062, + 0.07346738933103057, + 0.0793413333644018, + 0.05956287822098495, + 0.06894045010888644, + 0.06439569940739816, + 0.07671165147603888, + 0.0696017556711261, + 0.07335444317512109, + 0.06126818643452432, + 0.08702213583118572, + 0.05476260626546636, + 0.10438646921826866, + 0.08598574494189257, + 0.056114344065168235, + 0.08147861080590806, + 0.08787263122695951, + 0.06761827376075438, + 0.07663424662701854, + 0.05969689022507293, + 0.0823128356957973, + 0.0786275680532872, + 0.0854105485674773, + 0.0829230167018442, + 0.07047363343877944, + 0.07096857591479074, + 0.07274962912176372, + 0.08288592164341223, + 0.06305540656713633, + 0.061933927351683585, + 0.05480082077324753, + 0.09926726074378438, + 0.09245772898405166, + 0.06568431435250727, + 0.07289402836548108, + 0.07071205496949126, + 0.09800717450254039, + 0.06318807736065474, + 0.07230892694368815, + 0.061230310898009864, + 0.07031876455467131, + 0.060985316187772066, + 0.08790304592422657, + 0.09570773982930471, + 0.08056742319859427, + 0.07966487066034987, + 0.08025008772701786, + 0.08064329117426866, + 0.0778675174336105, + 0.07809094386577269, + 0.06131700006591002, + 0.06819392503907609, + 0.06094643587480487, + 0.07431429943325052, + 0.05543799115553915, + 0.06591911978111516, + 0.06311443615235308, + 0.06719513670956102, + 0.09981836893288484, + 0.08001893934078809, + 0.07027375771721632, + 0.08427779288362307, + 0.09168127779496774, + 0.08988726150185351, + 0.06816782348205801, + 0.06850473038053496, + 0.08126533445422854, + 0.06382100914925137, + 0.07239225395615939, + 0.06356942930492082, + 0.0650794556632024, + 0.07650688960298609, + 0.08367633754968579, + 0.09897502929257015, + 0.07052381237735607, + 0.07603763173649625, + 0.057872068379458456, + 0.09066664858102376, + 0.08612363693560549, + 0.08912159217137745, + 0.0789938636939128, + 0.06389831742769153, + 0.07530265560748411, + 0.08663105983349147, + 0.06837432273410902, + 0.07118533819951837, + 0.07389019284069005, + 0.07370221742664407, + 0.07980343396594793, + 0.0622319007475762, + 0.07326243061136511, + 0.09214369069538275, + 0.09704528368760325, + 0.0809196740502643, + 0.07102347998092236, + 0.06088425123850313, + 0.06726480077345463, + 0.05873310374967827, + 0.09670343055760953, + 0.06994020853875293, + 0.07273510667886265, + 0.06859246581290294, + 0.08616181096844729, + 0.08183607106021394, + 0.0687414224998535, + 0.05555788033936859, + 0.090928366869557, + 0.07516334429309214, + 0.07033772839858088, + 0.07349941157613415, + 0.06996587664038333, + 0.09486490291773615, + 0.0721013758731068, + 0.0774566355812315, + 0.08085385812457578, + 0.08515325826779481, + 0.09241117848547183, + 0.06362305235531275, + 0.07377251021901318, + 0.07927370952050361, + 0.07194573082336042, + 0.08074217180563809, + 0.08705035291163624, + 0.07610639327699549, + 0.06469679119604332, + 0.0772290968683315, + 0.07500946397071591, + 0.07542689049823384, + 0.08452861900509921, + 0.08037430269056739, + 0.07110516443886411, + 0.07467827659619905, + 0.08552419922165404, + 0.08393036089883513, + 0.07052612722026506, + 0.07482813189051304, + 0.06919012117110983, + 0.08351651526365829, + 0.06062579014762478, + 0.06626726198058085, + 0.08685009519744265, + 0.0810321382602507, + 0.06492037317577025, + 0.12268904922412276, + 0.07200999432340557, + 0.06002633079700691, + 0.08293950404799826, + 0.06027116871230309, + 0.07416566952151547, + 0.08119272808788092, + 0.06273527808853678, + 0.09382032738862597, + 0.0723664522665276, + 0.07143026233786215, + 0.08027477399940905, + 0.07262504485936033, + 0.06968047970848493, + 0.06886626381986553, + 0.08866271599432404, + 0.06474684518722325, + 0.08716932290813126, + 0.08318189732460599, + 0.06611599766901738, + 0.06003982409469016, + 0.06959946616722755, + 0.0812319069347073, + 0.06034941344251965, + 0.09414658223901907, + 0.07016739027934628, + 0.0684130129665474, + 0.06223230088159927, + 0.08891212525202909, + 0.09987555811440973, + 0.07219038950766346, + 0.05997530539637909, + 0.0885080538321397, + 0.07230570362903396, + 0.05963425821431159, + 0.07988150494653565, + 0.05996259608849469, + 0.06798272196030856, + 0.06333687258527006, + 0.07055387361573749, + 0.06964370339807181, + 0.11014584016483867, + 0.09481262169445534, + 0.06396573451291854, + 0.05635813131908773, + 0.07908514072512733, + 0.07962237386780568, + 0.06800037597312078, + 0.05883228500736082, + 0.05606305513109068, + 0.09972575719888244, + 0.06502835673245344, + 0.05562115461616947, + 0.07309016599878962, + 0.07132205094777491, + 0.08379878556445976, + 0.06480078370998445, + 0.07245565252032717, + 0.08516873447306854, + 0.06238940021647776, + 0.0925264175304798, + 0.055704169507183585, + 0.0736621184164045, + 0.08296472276894908, + 0.06792552764895363, + 0.08774315426060138, + 0.0648686951716728, + 0.0590645494601129, + 0.07320126818896157, + 0.07989495901305271, + 0.08031698784176955, + 0.07182492029231333, + 0.06801954992646433, + 0.059654801319743975, + 0.09066963336187206, + 0.06918770502785555, + 0.06036566667735619, + 0.09211345014027084, + 0.07523162501478001, + 0.06988068942183771, + 0.08125779016001647, + 0.06370686338566438, + 0.08382968328856863, + 0.07102397642126519, + 0.0652959036462819, + 0.07981319249373847, + 0.06416644914548487, + 0.06641501009235132, + 0.07868699770372833, + 0.07280880934204566, + 0.06435639217439985, + 0.0807341548216838, + 0.057756684238079545, + 0.06394128974350044, + 0.11998877870710634, + 0.0737928689589475, + 0.06450221936536515, + 0.07092543382372468, + 0.05706663692076465, + 0.06948648506648562, + 0.07860495076338991, + 0.08863470677592976, + 0.07463446718555453, + 0.07189068783636161, + 0.08261988336490896, + 0.08580902046249848, + 0.10228072402694356, + 0.06015466729214366, + 0.08211164212306422, + 0.06584740032444661, + 0.05852444559110542, + 0.07567358501373253, + 0.08636949574041375, + 0.08020776013091886, + 0.06099730306375821, + 0.061597309400893197, + 0.06952901943500572, + 0.0580022367792112, + 0.08838448963448767, + 0.07818537816027446, + 0.06507281036917496, + 0.09352330795074458, + 0.07932056411166147, + 0.0656310404402476, + 0.07152311931856185, + 0.07211212518479261, + 0.08035121845155412, + 0.07599205139210378, + 0.07589439999476003, + 0.0772895136107807, + 0.0615302426578369, + 0.059449498092019715, + 0.07309886215127177, + 0.07888546245908067, + 0.06778729926856304, + 0.07855383359429692, + 0.0698773763456435, + 0.062003270515134115, + 0.06690208561477441, + 0.08176015787236934, + 0.06340210440621274, + 0.06383936631558139, + 0.08764493287985153, + 0.07890896983130927, + 0.09976078458476999, + 0.07549842768633877, + 0.08232693737143416, + 0.0710448505780644, + 0.08877676914205639, + 0.09231627284862615, + 0.07983039626783783, + 0.07321272220708618, + 0.07118466820593335, + 0.06694086985958987, + 0.09125700288599434, + 0.06956776519935876, + 0.0783247097854587, + 0.09754249226166017, + 0.09911536828521544, + 0.07604462386891991, + 0.08406252976884168, + 0.09785473165303386, + 0.07186607746132095, + 0.07144094097687087, + 0.0774863136616883, + 0.08215790550458257, + 0.06643743321533592, + 0.07196380710225772, + 0.07998590488233889, + 0.09151142970557107, + 0.0629989468108545, + 0.06073409417520561, + 0.09672734215252422, + 0.06520207942448758, + 0.05948227594690597, + 0.08629877981434889, + 0.10950152214259289, + 0.06860166917395233, + 0.08561904992861644, + 0.07878053692976748, + 0.07137799852727658, + 0.08319400372527484, + 0.05929800536908187, + 0.06809200735339024, + 0.04883701009491954, + 0.06207009507065683, + 0.08670432087843201, + 0.06613789190480962, + 0.06574073769116376, + 0.06188034661726514, + 0.06558632215686683, + 0.0801481367879212, + 0.07704203929716717, + 0.07690510661580847, + 0.06366077968512215, + 0.07716862462133399, + 0.07895503876752669, + 0.061186365398010645, + 0.07316631066543694, + 0.06558353689818018, + 0.06674085846253164, + 0.05825559768345587, + 0.08014818033970557, + 0.08840164037406507, + 0.08965095141869986, + 0.0722188446037045, + 0.06881912924205577, + 0.07671358652537881, + 0.08276981269774447, + 0.06784351240125878, + 0.08097248113232537, + 0.07520433600798175, + 0.07485063795859358, + 0.08300001785517862, + 0.07696959818830001, + 0.0885420329749613, + 0.07105530187034444, + 0.06124412064951518, + 0.08637414018362423, + 0.08188027307080271, + 0.07823464688554578, + 0.08312072808231867, + 0.06825630610406022, + 0.0790854535207667, + 0.060872797883984996, + 0.0762888825015885, + 0.07132046983742898, + 0.09185062502415486, + 0.07645556704578965, + 0.06563242529661807, + 0.06286317101383318, + 0.10109250174693192, + 0.08550738675323007, + 0.07638105302734721, + 0.06157617472330384, + 0.06432372583745845, + 0.08213517401268397, + 0.05843087496927203, + 0.07801301415379545, + 0.0746829496492718, + 0.0753512121888225, + 0.09139614440218798, + 0.07330130512921826, + 0.06220838394143945, + 0.07068777816610408, + 0.05652371007209563, + 0.0824690461006763, + 0.08445236363395628, + 0.0693856239656539, + 0.08690120983757522, + 0.06788986566928205, + 0.060409451635239995, + 0.09065738750110386, + 0.07644280567784124, + 0.07504580909350432, + 0.0692717036122325, + 0.05985036390075034, + 0.06908490948961063, + 0.060220930692934604, + 0.0726187157372022, + 0.05983190988712992, + 0.09448529476986889, + 0.07046809738602253, + 0.07770829762420452, + 0.06292300919745226, + 0.0647612439278809, + 0.07335253361427053, + 0.10250033744704173, + 0.05717751689535369, + 0.09418500176042541, + 0.07234531796230037, + 0.10794808011167818, + 0.054070883879046405, + 0.06837656427895851, + 0.07984832736378909, + 0.08416868657212517, + 0.06309184566288606, + 0.05505228036135872, + 0.08137270508077883, + 0.06639450180935808, + 0.06254531425355286, + 0.07538829395606556, + 0.07296922862896096, + 0.06912364995243837, + 0.0846647800191906, + 0.06754773592520742, + 0.07045930107130491, + 0.05984764538124699, + 0.07030867229796255, + 0.05352334663493503, + 0.0921404269222627, + 0.10522886537660968, + 0.07880088650881373, + 0.09410067884402856, + 0.06763327824254489, + 0.08441346716672311, + 0.0702653383515867, + 0.06688643952014446, + 0.07077080864420585, + 0.06465381569645144, + 0.07538104252388876, + 0.0679561745525119, + 0.08298309259342879, + 0.07116489479139518, + 0.08369938241817908, + 0.08162195144572741, + 0.0676177953031478, + 0.08997143466645391, + 0.07784648844241636, + 0.06210000098966774, + 0.05932564644205332, + 0.057014139780867744, + 0.07407199575242508, + 0.06306346434118748, + 0.06096017295771515, + 0.06718495472411873, + 0.07465345084958458, + 0.06701383371891857, + 0.071144932616653, + 0.05932294502561064, + 0.08826649044486587, + 0.056356470233215196, + 0.06450501649601659, + 0.06725118807350701, + 0.06127786749846318, + 0.074202017310571, + 0.07951962949441989, + 0.08037433330610917, + 0.07223808560185122, + 0.07950123863121074, + 0.08511177005524807, + 0.08109077597546527, + 0.08460818983481817, + 0.08835844700877182, + 0.060424290279799224, + 0.09584794938747689, + 0.053087564127373414, + 0.08262045687073694, + 0.05886491827971537, + 0.06045434553660478, + 0.08147125448254168, + 0.06912994915100538, + 0.08115961297029038, + 0.06371759796029493, + 0.07276984703927758, + 0.05892212979843048, + 0.06224879918042757, + 0.06715150133188481, + 0.07144569555579698, + 0.07157298639556371, + 0.06389360277314413, + 0.07599300424704752, + 0.08185136049065611, + 0.09831079416917425, + 0.06870909842244571, + 0.0731730774867825, + 0.062158942574989516, + 0.06282164043388669, + 0.059659935585274465, + 0.07435801579955904, + 0.07255098398637244, + 0.06427158767746875, + 0.10994006042191144, + 0.08818972124284553, + 0.06259859229578241, + 0.06601998483986447, + 0.06951716540751446, + 0.05835427092639341, + 0.05750230668074557, + 0.06421783140139928, + 0.09913016723739226, + 0.101109717479966, + 0.07434005896781265, + 0.09122172416786545, + 0.08699951399004158, + 0.06989614876517232, + 0.0579571846752854, + 0.06261950773070392, + 0.0688040811800633, + 0.0951115643057192, + 0.09412898107459311, + 0.06432981565068284, + 0.07620873209749082, + 0.06545027851474056, + 0.08154966167963482, + 0.09474902548018863, + 0.07536983598221186, + 0.05854182909908292, + 0.064886854228643, + 0.06251816220587184, + 0.06085568815616378, + 0.0700215084393534, + 0.06034139842520081, + 0.07152124928449706, + 0.08033121803142773, + 0.07074815705514442, + 0.07264718471708066, + 0.07893217494929054, + 0.08691871956742872, + 0.05836930302313702, + 0.05843108638844124, + 0.0731684177832538, + 0.07071027700002491, + 0.08756180832480912, + 0.07437374163446665, + 0.07020992183458206, + 0.0592632763567754, + 0.06070626821549212, + 0.08015668548152913, + 0.07899383591635135, + 0.07294430349977118, + 0.08098622048298318, + 0.06568956807007419, + 0.0764038297029865, + 0.07154977136158477, + 0.06123748486378692, + 0.08217873222825903, + 0.0677727150599527, + 0.06851002994234309, + 0.07874009410879206, + 0.06009520611480442, + 0.06706941920692586, + 0.06789708052866998, + 0.06028498040908859, + 0.08252813231806129, + 0.06531325135808265, + 0.051655250473802775, + 0.07959533657759871, + 0.07234970622557302, + 0.04888002391372721, + 0.09838656952214084, + 0.06892045841115584, + 0.06478905059921741, + 0.05367088939714515, + 0.08692294294481594, + 0.06287051161991515, + 0.08420005488779987, + 0.08380729331398487, + 0.06321597886498426, + 0.07269826556315884, + 0.08030319269533619, + 0.07266867566891862, + 0.08997157377625145, + 0.06136225649074473, + 0.06824463441235822, + 0.08498718447321292, + 0.08772180485267386, + 0.0727487297477219, + 0.07034530955739988, + 0.0615200775523942, + 0.07119434453434265, + 0.07796172772943737, + 0.08049842209249625, + 0.07982121943223654, + 0.06269633468514353, + 0.07797015122515928, + 0.07125986670776528, + 0.0670593726481994, + 0.07080300314924756, + 0.07490185212484277, + 0.06701048884860789, + 0.074301444573631, + 0.0819012955719955, + 0.0714171636927209, + 0.07958038866360176, + 0.0788549015716602, + 0.06354064696987763, + 0.0862517518270543, + 0.06638709565826509, + 0.06816812615376205, + 0.10059864733281654, + 0.07170136604087371, + 0.05889064492437208, + 0.08591569334499584, + 0.06703648080735851, + 0.08371337477383355, + 0.090958417049203, + 0.07417092209769759, + 0.08217895836814482, + 0.06307669563343028, + 0.07501004132971074, + 0.06521678807644071, + 0.07515308764147646, + 0.062112332788285735, + 0.08415548429016503, + 0.08120644098058492, + 0.07170875827124706, + 0.09525323125522628, + 0.08298270893461182, + 0.07453800041353657, + 0.07754279208598233, + 0.06386036442118397, + 0.08154652741707294, + 0.08796520808727275, + 0.06842995902627749, + 0.06577777448841181, + 0.10933645967068571, + 0.0650209578368089, + 0.08347998050856073, + 0.09390480713133437, + 0.09159268281762309, + 0.07268973912685049, + 0.062317686946934014, + 0.05968051325769533, + 0.07321586236714314, + 0.0608781907563185, + 0.07902585064730303, + 0.05347261816969543, + 0.10471404089251188, + 0.07059411105197115, + 0.07025731462450999, + 0.06917230915505856, + 0.08561252437268543, + 0.08940025363025499, + 0.06064132596100644, + 0.07108911055960035, + 0.07980966955628761, + 0.07376495913053195, + 0.06661877206459857, + 0.0636462601982891, + 0.0925021726930641, + 0.06437649391348334, + 0.05944167996699577, + 0.06904122467588417, + 0.06687521202088764, + 0.07981683367248658, + 0.08689693185574227, + 0.0782288544723901, + 0.06165641847708651, + 0.07248971167399099, + 0.06585701395399952, + 0.07090134545868437, + 0.07262544607792741, + 0.06276640360907636, + 0.06928813909841311, + 0.05952472163777956, + 0.0869074567882769, + 0.11088980898295046, + 0.07370040108675205, + 0.0837214009863836, + 0.10391352841795028, + 0.06482475645114244, + 0.0633018827579223, + 0.0763165982729534, + 0.07238450361883673, + 0.06974423218152999, + 0.07964780623587615, + 0.08109027495360126, + 0.07167425869346951, + 0.07182167408714366, + 0.07108478541026614, + 0.07104688535447783, + 0.07753620999893936, + 0.06559417046321815, + 0.06586376382488247, + 0.07320009920187384, + 0.07270333332286077, + 0.07167483654433994, + 0.07292665974339146, + 0.07127035371621701, + 0.08669482861522824, + 0.0831932008304574, + 0.09242989989318887, + 0.06923040986788094, + 0.08019150881745854, + 0.0758254557897533, + 0.08086489552444175, + 0.07068182341946129, + 0.07465194511718604, + 0.05991702749121386, + 0.06983766999870775, + 0.06776891617090047, + 0.08827614320203017, + 0.05733526894807197, + 0.06806246724614613, + 0.06599209940231913, + 0.06688980761605477, + 0.0670687626442681, + 0.08146289882277599, + 0.06294430493801732, + 0.0712685235132589, + 0.06375558621623245, + 0.058511997914048944, + 0.058056065032854175, + 0.05736435793437427, + 0.09192264910530158, + 0.07086843052674574, + 0.05987712752519562, + 0.0648969658838535, + 0.07015853962885527, + 0.08088881203154205, + 0.08261976880549692, + 0.06207180741953146, + 0.09049125571114396, + 0.06479516856332575, + 0.09482111435823212, + 0.054029433806235753, + 0.08227434088717651, + 0.07859925138063523, + 0.07708749648709277, + 0.054928713636233, + 0.06387968234179607, + 0.06247624608435245, + 0.0722987203903327, + 0.0802157301204988, + 0.07159524809616871, + 0.0782618559927021, + 0.08966694808068978, + 0.049055621932830674, + 0.06792936227110512, + 0.06861198660241746, + 0.09228615561461624, + 0.06745823376476869, + 0.07293897913218711, + 0.07123615363042551, + 0.0626746816788977, + 0.08392630595267926, + 0.07405069730962417, + 0.06468073141944554, + 0.06742892623511948, + 0.10227583413371023, + 0.07297620023921057, + 0.06487083076653731, + 0.06171313686525482, + 0.07755826490548087, + 0.08609823760104053, + 0.07504795825113998, + 0.07010391786894965, + 0.07787955777511897, + 0.07173441869895426, + 0.05543173860811207, + 0.0654081216903774, + 0.06818528230010516, + 0.08193212343842754, + 0.0809090703504503, + 0.06434737010021191, + 0.06122073051779153, + 0.08283237514008233, + 0.07774565067977451, + 0.06668271549446186, + 0.06270567183931434, + 0.07342288320223163, + 0.0847218555607717, + 0.07367413456813596, + 0.0771477788124029, + 0.06856252768976444, + 0.06955235830540071, + 0.10914860927777834, + 0.06274681193205105, + 0.09102069817543539, + 0.06821923898888096, + 0.074388837659149, + 0.06413808151758699, + 0.07382271752074919, + 0.0824552866918114, + 0.06433370472871701, + 0.06488666816589272, + 0.073360495133724, + 0.06432545356220606, + 0.08111345395753494, + 0.0641760492721988, + 0.07221598135445143, + 0.10230518410028921, + 0.08172021123286483, + 0.07819183304825408, + 0.06242678665076015, + 0.07726239611886103, + 0.07629526786990638, + 0.0805474922164894, + 0.08035263929458768, + 0.08467600685943648, + 0.10122424135211071, + 0.0989194565410429, + 0.05586777147399341, + 0.07044794047461227, + 0.07409357071226484, + 0.07133367301986834, + 0.06044796315552183, + 0.058184974455303615, + 0.07060821228473245, + 0.07483840980718764, + 0.0729806995871105, + 0.06615899392429997, + 0.07551438020635184, + 0.0702938861469208, + 0.05920234684664344, + 0.06716131329093696, + 0.06996828518707095, + 0.06620505273878417, + 0.05788831425015755, + 0.08051431506808418, + 0.07762684474349472, + 0.09090496346789002, + 0.07367718979059805, + 0.05831096694371185, + 0.06852637990362441, + 0.06625544435155886, + 0.06597973314850503, + 0.07100764736897379, + 0.07574060788186888, + 0.06845114735833488, + 0.06966470474688125, + 0.07029312310066231, + 0.07288707272358501, + 0.0748752982323838, + 0.07796246140410112, + 0.09814711568408703, + 0.07379001956369549, + 0.06674162660219336, + 0.0630563743566139, + 0.07362827442841519, + 0.06849762802382238, + 0.09321563847687155, + 0.059856302101478215, + 0.08673875574077328, + 0.08419019178148954, + 0.0730529981624063, + 0.06350346653381235, + 0.05795365562772606, + 0.07208847112937322, + 0.07786287878686605, + 0.06393615789650887, + 0.07147007256474819, + 0.06474068301409124, + 0.09375488359019987, + 0.0702563866752581, + 0.06598668394541304, + 0.06102442495060122, + 0.07131514030127901, + 0.062469824878217256, + 0.06027134446377781, + 0.08722346750124299, + 0.06684557851829476, + 0.06327075710478164, + 0.09848150752200326, + 0.08450288033757797, + 0.07942975456216828, + 0.07538722632384094, + 0.07042949237340346, + 0.06194260581135368, + 0.059318761531608324, + 0.1013062431715959, + 0.06864387833454151, + 0.09101212138733056, + 0.07955551904096962, + 0.07136040301295721, + 0.08631965675312744, + 0.0768154192854999, + 0.08208082974938687, + 0.0926909615899021, + 0.09952566992402052, + 0.06234982754719477, + 0.07329111487371728, + 0.06284440326986819, + 0.06812744586952674, + 0.07517573584132195, + 0.06096564822233001, + 0.0694256155355208, + 0.0736632492953599, + 0.07096096625189856, + 0.07401826511940524, + 0.06369598218393802, + 0.07007559796266723, + 0.06415253544016375, + 0.06085814893505996, + 0.08408350848027646, + 0.06903281283190232, + 0.08066946750879551, + 0.08811693548538214, + 0.07203349698557396, + 0.09136695787019167, + 0.09285543844975118, + 0.07305527797083791, + 0.05456759814496417, + 0.07290974526089035, + 0.06975473004217311, + 0.07880063608548567, + 0.07268573786046387, + 0.062157681165353675, + 0.06696012935382607, + 0.068959018040582, + 0.07062469622701138, + 0.0717418643260688, + 0.07351240791198554, + 0.08567033646283684, + 0.09682052677225621, + 0.060316119556617157, + 0.07987234191313473, + 0.07099249853551327, + 0.0834877524622115, + 0.08275078726287839, + 0.08239576031958429, + 0.07156530729399983, + 0.07214067523210135, + 0.058331493086604874, + 0.08651849037283568, + 0.11100522994529594, + 0.07909473067251369, + 0.0954366907902758, + 0.06647511825747839, + 0.06426028981253622, + 0.06412164206593503, + 0.0722195516742436, + 0.06768311008698771, + 0.0642784835324526, + 0.06899004236388649, + 0.09455473926288217, + 0.06100336412137569, + 0.079787639539298, + 0.07268767937555358, + 0.08680965378826123, + 0.07109600795796348, + 0.07960127209038101, + 0.08760962257892284, + 0.058798074660723565, + 0.0777799725224412, + 0.0714424488695335, + 0.07051336689804336, + 0.06900746230522624, + 0.07710666029531545, + 0.07087644156251244, + 0.06306655681744085, + 0.07733585158065, + 0.08662015234730232, + 0.09108511682884213, + 0.09601614302338189, + 0.07540470467234425, + 0.06813686771669163, + 0.07536124514260703, + 0.08949558584902503, + 0.07926385877982309, + 0.0809076974058109, + 0.08104935683633471, + 0.07450337141183122, + 0.08349516116165587, + 0.07750539232880305, + 0.06627121200856272, + 0.09061698509388585, + 0.06630464579339666, + 0.08239505004696415, + 0.07204286973363778, + 0.07173137751498022, + 0.07280588489213888, + 0.058223360814774965, + 0.09063193557878975, + 0.08999870641241701, + 0.08422169207140186, + 0.058152756012787556, + 0.06206884240598729, + 0.08357102465688465, + 0.0620443861787115, + 0.07797192739524203, + 0.08914117849656958, + 0.08625308925484863, + 0.06529084779087717, + 0.0657841709594203, + 0.07745583098944142, + 0.0955337387674866, + 0.05515937190843741, + 0.07870144537538235, + 0.07685376972131136, + 0.07451747781895923, + 0.09064721039948236, + 0.06121160160619648, + 0.0849410054687542, + 0.07704040194951103, + 0.05956626986071276, + 0.06632382146409603, + 0.06762362657638453, + 0.09202743536762945, + 0.08579986627215622, + 0.09169608851416856, + 0.06180643497368355, + 0.07365492858590703, + 0.08495110420407852, + 0.06634634756836708, + 0.08308166675053606, + 0.09395489803399265, + 0.07725074190251059, + 0.07402422917864408, + 0.07171931573507341, + 0.068978530900704, + 0.09081499680618267, + 0.07296122417524381, + 0.06627078446529318, + 0.06394685405443593, + 0.07887696187213733, + 0.07740528929261183, + 0.1352903411875452, + 0.059092542696270914, + 0.06639358499415324, + 0.07481165020799538, + 0.0739654755376472, + 0.07860429408171074, + 0.07710896785401657, + 0.06423374550886994, + 0.07510512060334675, + 0.05969670603862651, + 0.06197258495466789, + 0.0794405027743487, + 0.07606880180003762, + 0.10979044420135915, + 0.0587300899783804, + 0.08396579915372482, + 0.1058188126111407, + 0.0743410502142215, + 0.07887440643536546, + 0.0684021628150872, + 0.07442932592610449, + 0.06865306222436858, + 0.06406366344537322, + 0.09445741232390607, + 0.06190245031301375, + 0.06816786399154942, + 0.06860527483782582, + 0.06604097404524238, + 0.06835512110231486, + 0.06698642905533649, + 0.06783959387405251, + 0.05742562769669258, + 0.11795832582897153, + 0.06345381370791371, + 0.09215002347473225, + 0.06025271248910019, + 0.10678937951110788, + 0.08843521408225043, + 0.08831433626560264, + 0.08361345288770984, + 0.07957275056326663, + 0.07683954767208367, + 0.07602860039874358, + 0.08516992891657905, + 0.06808314836156928, + 0.0729833746222185, + 0.06771972390743067, + 0.07404680006980825, + 0.06669633307974256, + 0.06435444984259249, + 0.07702335710516868, + 0.06528027450981695, + 0.07541504613055981, + 0.06056948940398482, + 0.07308926657610688, + 0.06856229084371523, + 0.10378054116943425, + 0.09758837592130727, + 0.09349224665082254, + 0.10840144202698522, + 0.0735085046049351, + 0.06208527486601024, + 0.07046638839396699, + 0.06622986724777023, + 0.07105318596489373, + 0.07121738426410155, + 0.06445058712422581, + 0.07327633767694208, + 0.08592422440864643, + 0.06545304344815078, + 0.08415237690276524, + 0.06629124193927237, + 0.08262043768091677, + 0.0651669972480375, + 0.06309797214976781, + 0.09519517030711298, + 0.10686118274964276, + 0.08075353305839449, + 0.09400943980476738, + 0.060627053649318856, + 0.06201712005403712, + 0.05627927733101667, + 0.06670602476645023, + 0.1082317054906207, + 0.0663565537207034, + 0.06317753790994778, + 0.09330757544712065, + 0.07000427576802207, + 0.0637405515374989, + 0.07620561272475862, + 0.06119851862710507, + 0.0679906289806883, + 0.0888301782759726, + 0.08151622517890383, + 0.06244274522505153, + 0.06529600668227115, + 0.0645152922766625, + 0.06251220638570101, + 0.08434701101526736, + 0.09008421419700949, + 0.06876712025210553, + 0.07286765550002525, + 0.08439931143981358, + 0.08390466431694225, + 0.10265775926044593, + 0.07228700542111795, + 0.10020613036785422, + 0.07967199677717463, + 0.073250559255553, + 0.05914538825197168, + 0.06005031937231125, + 0.07291541348646159, + 0.06296457707817747, + 0.06866572287424569, + 0.0783461340008579, + 0.05922098678600207, + 0.06301202549432378, + 0.060206419886140616, + 0.04932523091284899, + 0.06641586576286862, + 0.08464367067217288, + 0.08524580737150912, + 0.08324206554529504, + 0.09517970463741775, + 0.09703605903952842, + 0.07633187988496487, + 0.07084601834940138, + 0.08090019986567486, + 0.09761204467360317, + 0.07263147887324825, + 0.08864409724911876, + 0.08175045655045636, + 0.0642222688247007, + 0.07858035993473056, + 0.07856486684043446, + 0.06500967997271381, + 0.058425528772973, + 0.0556261391838714, + 0.08348661283955239, + 0.07125820956228915, + 0.07432161417774236, + 0.08796658459693266, + 0.07203305468083669, + 0.057542593488697405, + 0.057769243418233834, + 0.0647230513552764, + 0.07701213642274823, + 0.08144694904141095, + 0.0895487907396127, + 0.09888671164184058, + 0.07793052396149878, + 0.06798892404481846, + 0.09171833583139807, + 0.06308977550079764, + 0.061522528639187175, + 0.06365029989704625, + 0.07375444214628707, + 0.07346201949765149, + 0.07117254782895076, + 0.08903748608839876, + 0.07409477014721672, + 0.07409544667174975, + 0.061807300306841007, + 0.08170009307278833, + 0.057198714089808624, + 0.0647274493059223, + 0.08858542577891083, + 0.08105826693042573, + 0.06953521281365022, + 0.07878124484441841, + 0.07798307108052992, + 0.07448082241012656, + 0.054178730579370074, + 0.06494728312533797, + 0.07195167337301132, + 0.07739567136472528, + 0.06550449509865296, + 0.07338203950509745, + 0.0935838426611816, + 0.07592230402100256, + 0.06769633158541295, + 0.0655472062536434, + 0.07676553509647072, + 0.0666197442273677, + 0.08100538891489754, + 0.09057176033866297, + 0.06910624507115053, + 0.07665709465411513, + 0.06786654120246688, + 0.07760921227475857, + 0.07844746478991892, + 0.0937017832167918, + 0.07511809784241018, + 0.0658807453295884, + 0.05699579516543643, + 0.07298714909334333, + 0.05808162721114106, + 0.08361322851253816, + 0.07252845855402713, + 0.061493676905086406, + 0.09103738290532776, + 0.05590212743846105, + 0.08439071873253788, + 0.07393051128227084, + 0.058532921427700765, + 0.05973931513461214, + 0.06301858125526061, + 0.08768874437758163, + 0.07573634207970395, + 0.06799894924222923, + 0.06629349442798986, + 0.061421045575739186, + 0.06110688577307381, + 0.07651171660498148, + 0.08835567799073811, + 0.061319701795400576, + 0.06603510578358088, + 0.08041213071701983, + 0.07284746488261842, + 0.06616583745182371, + 0.06991347657959894, + 0.07208134140706055, + 0.08955206176884839, + 0.06472607595906762, + 0.07721281062031823, + 0.07660481788968557, + 0.060873959470232476, + 0.07467585371806267, + 0.10178596526772836, + 0.09486401942032112, + 0.06334469450482656, + 0.06893966142137994, + 0.06186096410018812, + 0.07935432125707155, + 0.07725537393830773, + 0.06337767636578474, + 0.07250893013011189, + 0.07382010573166406, + 0.0640182915979837, + 0.07774768198440493, + 0.08158739887874647, + 0.07542859597395918, + 0.05868616349899544, + 0.07880327785389087, + 0.080259307529109, + 0.0923538039447765, + 0.07084460786021791, + 0.070491815983648, + 0.08389071932393219, + 0.08472750705074018, + 0.08009214290067036, + 0.06604432552092741, + 0.06699530053741841, + 0.08914314707483637, + 0.062219744698117446, + 0.09657658012483643, + 0.07320814377739514, + 0.08438761822543722, + 0.06639168390401734, + 0.07800954806857133, + 0.08748374280893297, + 0.062087122105139274, + 0.05856125396394383, + 0.06337057950462287, + 0.06623280137958787, + 0.05854541890746111, + 0.07371541211079984, + 0.06688993672291557, + 0.07538453777458332, + 0.06479455817933077, + 0.08985473264503213, + 0.09367310260004645, + 0.06548382015003038, + 0.08677874415594831, + 0.07310192723041975, + 0.07253572124134615, + 0.054061101826915994, + 0.07651454571398006, + 0.0631290020230335, + 0.05811164640692296, + 0.07647757560758069, + 0.07082928079494255, + 0.07319848582358525, + 0.07400786915646022, + 0.08358519300180275, + 0.07912474034290669, + 0.08061433796910297, + 0.07983637502010987, + 0.07456957594919118, + 0.06863506145244613, + 0.07750146563494875, + 0.07580434132431355, + 0.1049572289345451, + 0.0835383678958208, + 0.06526577951474029, + 0.05574884460682239, + 0.07736692934242981, + 0.05905010348707701, + 0.07135496935666562, + 0.08153561618080347, + 0.06907661907445813, + 0.06831743017593152, + 0.07583054394415364, + 0.06971134609100396, + 0.07206129911661731, + 0.0794398811831709, + 0.09048017962075912, + 0.07093417072928526, + 0.06527110232713806, + 0.07719394235419373, + 0.0598569690738162, + 0.09282140027955013, + 0.0805868610943382, + 0.06641188260566219, + 0.08261712319951665, + 0.07726076968339263, + 0.06475229800940514, + 0.06310503191122953, + 0.060383932081398875, + 0.0705153867651721, + 0.08837511712880146, + 0.06373729362484218, + 0.06843235636529645, + 0.08359119121814858, + 0.05983507890357062, + 0.09187475126434963, + 0.09132449398086419, + 0.08480867937023893, + 0.06472672160468958, + 0.0805484133449856, + 0.06513441968588486, + 0.07337591159526882, + 0.08538122103346608, + 0.06260546828553207, + 0.07659905909122466, + 0.08885557678941258, + 0.06402284413732856, + 0.09065197822642822, + 0.08498311289026507, + 0.061487024384992914, + 0.06686587204542653, + 0.06168106479702608, + 0.07093186375341783, + 0.07363146240515678, + 0.06312858381989511, + 0.07762709858483989, + 0.058685470186207955, + 0.07025683961486189, + 0.07645751253386442, + 0.07975578003232335, + 0.08331291240367875, + 0.09889393019969835, + 0.05432057593463057, + 0.07497212513012176, + 0.06621837732140477, + 0.09241127758723157, + 0.0720535419328001, + 0.07902631140574373, + 0.0566853439283639, + 0.06325646233880479, + 0.08618264536700211, + 0.09101921648680443, + 0.07834582756584461, + 0.0673419757732929, + 0.061768663232661405, + 0.06812360996782958, + 0.06110074002273049, + 0.07344838141601465, + 0.07704492053909168, + 0.08646561025342264, + 0.08574487347737329, + 0.06804437147648872, + 0.07026853862217174, + 0.07780640839659947, + 0.056800595747799554, + 0.06988494014297618, + 0.06722736684185032, + 0.06583157810734845, + 0.061325360184594, + 0.05766401013410591, + 0.0686015876317917, + 0.1017703525035215, + 0.06368774640326814, + 0.06542682376144163, + 0.08039770302345883, + 0.06148069640735861, + 0.07895859946698093, + 0.06477254854030669, + 0.06857336382867663, + 0.07302377707029316, + 0.07062529586694395, + 0.07287770124207626, + 0.061937637984892914, + 0.07329890327301028, + 0.07160972558354373, + 0.06571941459283244, + 0.10585208054230137, + 0.06682443982849873, + 0.08484532882075259, + 0.06962449160707138, + 0.06787804863940416, + 0.06529842287747466, + 0.05842099037493154, + 0.051033574792860845, + 0.0877237940003015, + 0.06063074452762047, + 0.14155659333319884, + 0.07091217648224944, + 0.06556829437569663, + 0.06516297140604495, + 0.07078445805630512, + 0.0870497202902504, + 0.08784809777814231, + 0.07239848747145182, + 0.07801744948865581, + 0.05906017708920344, + 0.057224552771624956, + 0.06694848818593431, + 0.06306196952981039, + 0.09050830381764356, + 0.07180767094019277, + 0.07246970646201847, + 0.0680688677402231, + 0.06978738147174202, + 0.0662965128932929, + 0.0720783603777605, + 0.09166759015113986, + 0.0847241829386416, + 0.08414350811415171, + 0.07687118913670753, + 0.08935330787725748, + 0.07150357834926754, + 0.05114194295344411, + 0.08380180499503072, + 0.08721667428336474, + 0.07437224625528766, + 0.07337313992966717, + 0.05586296051048081, + 0.09474871182004084, + 0.08353261216909945, + 0.08232595587337196, + 0.07042738989251394, + 0.07059900221681123, + 0.07600514598854304, + 0.06533627595731177, + 0.06626050178773915, + 0.057268063379383546, + 0.07434329033064639, + 0.07963898890556567, + 0.07103908347980563, + 0.07764318998307834, + 0.059461824032123696, + 0.06848913175398391, + 0.09541574326473094, + 0.0844257238464889, + 0.08493445686084759, + 0.07093771275272509, + 0.0824177053328231, + 0.060329896587791185, + 0.07370176090807137, + 0.0659928984391831, + 0.0724193852663751, + 0.07947227968508093, + 0.07652497536874595, + 0.07019409850788418, + 0.06016515118278523, + 0.0715643833576486, + 0.08796906986571254, + 0.07837004805501983, + 0.06478351147929137, + 0.061319734136955344, + 0.07942008118814947, + 0.07195654778704183, + 0.06199496866900649, + 0.08378323412635255, + 0.08445150578728514, + 0.0800739064162513, + 0.08108834919353147, + 0.07603113519111504, + 0.06767701793975289, + 0.07633179432825903, + 0.08357901954474976, + 0.08010488016595306, + 0.07543723811325348, + 0.08264756687804983, + 0.060356843285844, + 0.06133179481692858, + 0.0679669845074023, + 0.08693012762494574, + 0.07472676161655552, + 0.06363357342243313, + 0.08381473198622573, + 0.07019597835731718, + 0.07046272155027973, + 0.06323754811325787, + 0.07431197494098143, + 0.0833535743309742, + 0.08191112721076488, + 0.05522136018525592, + 0.08513622821070048, + 0.06404468744988666, + 0.0891647528356049, + 0.07604877624504659, + 0.061649628207930775, + 0.0710119696858894, + 0.06978115603656142, + 0.06773406606856393, + 0.07592229042323625, + 0.06689679159223173, + 0.05954860893867588, + 0.06603960022814213, + 0.0653409555608525, + 0.08049496845028857, + 0.07264497253302026, + 0.1028016504613349, + 0.08922995992728695, + 0.08778352788721093, + 0.06156712774827847, + 0.08496358312861867, + 0.06800402808546736, + 0.08304079676062054, + 0.06238345920213331, + 0.09998844482384385, + 0.0668938381660758, + 0.06846614030248963, + 0.054265241467452444, + 0.06850228582934106, + 0.06347651191068769, + 0.09518804116052239, + 0.061470653751360176, + 0.06809501452827434, + 0.06649861703395353, + 0.05704057476862468, + 0.06399490415500479, + 0.07969536140956338, + 0.06844888637808674, + 0.09550655973899602, + 0.08551598700053695, + 0.085350055635368, + 0.08117487045438887, + 0.08107964118074763, + 0.07477354571415423, + 0.054177509937556496, + 0.0745208407930453, + 0.07695755211081019, + 0.0599631813537558, + 0.06796091986040385, + 0.08902352460788435, + 0.07182687175298863, + 0.0652292387057078, + 0.06948016993762836, + 0.05105462670061785, + 0.05792165969524036, + 0.06448626956306218, + 0.09958146624314333, + 0.0631144329217949, + 0.06812778249781686, + 0.054245698733529794, + 0.06765582209991522, + 0.06370135416678023, + 0.06397948081338828, + 0.07386936760333183, + 0.09292711426734056, + 0.07003815691585567, + 0.0632860833700806, + 0.0758247297094377, + 0.07854611785855399, + 0.07251126165048366, + 0.06274450662058578, + 0.06420444535114328, + 0.0634099964682681, + 0.06285698724631752, + 0.0655629122246278, + 0.08798861599078021, + 0.07676375549856226, + 0.0741018152890305, + 0.08486280939779996, + 0.09557758324859279, + 0.05595266644142326, + 0.09505097790498668, + 0.07959619792980775, + 0.06940298229090343, + 0.07385856025667442, + 0.08043027116941281, + 0.06382754370872969, + 0.08097956404094617, + 0.06936240805589021, + 0.0744172745129261, + 0.075609194420956, + 0.08540729869601148, + 0.05894033940555589, + 0.0761693375159553, + 0.07855700452165522, + 0.07916499240588346, + 0.07328843911808099, + 0.07362647709202322, + 0.06167310883100352, + 0.08317386364812261, + 0.09300422163115232, + 0.07965951003708227, + 0.06806499830196377, + 0.07751748312519968 + ] + }, + { + "legendgroup": "Beam sensor 3", + "line": { + "color": "rgb(220, 176, 242)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 3", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.07751748312519968, + 0.07712150388539996, + 0.07364128316850381, + 0.07827984398985742, + 0.07729688358174301, + 0.08266691709427205, + 0.07623450680819624, + 0.10845649434026836, + 0.07468273645466726, + 0.06532061622896575, + 0.06510786797581845, + 0.07884628805932255, + 0.07661645381995802, + 0.0687205138453863, + 0.08333638787248901, + 0.09334640861077766, + 0.07471434840108993, + 0.06478209375204685, + 0.09797489039019369, + 0.09290401126575636, + 0.07033934018634086, + 0.08495252393798193, + 0.07718031857765165, + 0.06042871823700698, + 0.0845433523908893, + 0.08277940913292851, + 0.06960840999210666, + 0.07475483092812493, + 0.07005328500828165, + 0.09844005747265676, + 0.06606311466014923, + 0.10364196300903986, + 0.06151242418481321, + 0.0655348910071044, + 0.08256844105472023, + 0.080866955549301, + 0.07635956614440455, + 0.07001824827889737, + 0.0725483285587736, + 0.09193472338605313, + 0.08466480305219959, + 0.06948299866997815, + 0.07584394870609455, + 0.07510116413217256, + 0.07657631757032336, + 0.09147961256825997, + 0.07245394018770161, + 0.07395750504502133, + 0.0633127165228168, + 0.051735799585339845, + 0.0654764345944264, + 0.08912471868520659, + 0.08193690531394685, + 0.06545209962871107, + 0.07389003144543113, + 0.07842649086101945, + 0.05735599419132806, + 0.07250037813451511, + 0.06250940031469956, + 0.06697879261473785, + 0.0687230484762069, + 0.07613743510574705, + 0.06848059525446801, + 0.07779307626825135, + 0.06000848153326667, + 0.0585928466881431, + 0.07091329603915149, + 0.0783589544733735, + 0.08390735430111358, + 0.08940745603990052, + 0.061344878083299796, + 0.06357982936164723, + 0.07185875161250053, + 0.0832253500264142, + 0.07502412169642925, + 0.05817980124412841, + 0.08378203151929917, + 0.06826323437417443, + 0.0653007713230765, + 0.07237401648815796, + 0.06324239848605978, + 0.07235843592088428, + 0.08047461948473178, + 0.07656867519791317, + 0.09143046737199105, + 0.0786348600780941, + 0.07672985251538869, + 0.06835369947994822, + 0.06482358885666208, + 0.06863673844337825, + 0.11492981478358134, + 0.07596350801810774, + 0.07366599950149992, + 0.08396433838087299, + 0.0814260238293856, + 0.0664767601915552, + 0.053989458914480454, + 0.06541788884649839, + 0.08092476515285875, + 0.08575568139757357, + 0.06648211719190954, + 0.08399000202712044, + 0.09066332409380988, + 0.07609928666664324, + 0.07597723961905767, + 0.06125380639488999, + 0.06899908004527451, + 0.07080469036015785, + 0.08700546898477374, + 0.07339627315186652, + 0.06278862690679113, + 0.06863620833640241, + 0.06076712431253277, + 0.07976652294600416, + 0.06822295274410685, + 0.09259993022244194, + 0.06801015279188838, + 0.06826098258325179, + 0.06937033049428332, + 0.0636059622371129, + 0.05905465183888291, + 0.08051784091824957, + 0.07237717533256632, + 0.07207486735843724, + 0.085158182977065, + 0.06321511695671791, + 0.07434014517094309, + 0.0806169792705208, + 0.07208821111074365, + 0.07328920226251853, + 0.0811572818326265, + 0.058837877514241035, + 0.07537139465833118, + 0.0562788294196848, + 0.07735629816906768, + 0.06630612039898265, + 0.06976768313435042, + 0.09334663017530628, + 0.07547139069570129, + 0.09963571770178432, + 0.07062945469175767, + 0.1116728368899619, + 0.06539348794174181, + 0.07266709195096753, + 0.07667563087814479, + 0.05828691656320054, + 0.08107129690055952, + 0.07569570806453277, + 0.06926910321274032, + 0.06984422075311103, + 0.09943003159053491, + 0.0657278558914745, + 0.07151824773542943, + 0.0936185552345285, + 0.0736650808016547, + 0.08972897646885097, + 0.0855259963369905, + 0.06901313063583996, + 0.0795736751587697, + 0.07482763799699182, + 0.0607758316359524, + 0.068900244047033, + 0.11092988276912369, + 0.07983069342283372, + 0.0757725633898123, + 0.07553321662696809, + 0.06516096739789703, + 0.08620511735828326, + 0.06763132869884535, + 0.0662990831566689, + 0.07962305675461315, + 0.06914948938376005, + 0.05674383492931674, + 0.09451921697436848, + 0.06973452492819807, + 0.05892249214707327, + 0.06198104130776673, + 0.06339344055423134, + 0.05392251806492533, + 0.06713119117606643, + 0.05588907824309581, + 0.06854203222077453, + 0.07825363229970901, + 0.07894496845181403, + 0.0715676516790495, + 0.06330404748716909, + 0.07600714590100005, + 0.0887466677321905, + 0.07325182843674652, + 0.08846465972900769, + 0.06552635163589121, + 0.060842154298693295, + 0.06509446466667021, + 0.069046517992402, + 0.08978472035669713, + 0.08211664355012319, + 0.0878958458852633, + 0.06361675962843817, + 0.0621228124811801, + 0.0836628290514428, + 0.07116205471180748, + 0.07221664706613774, + 0.05507260299623585, + 0.06830037250839928, + 0.08634270543928074, + 0.07525013072933091, + 0.08079990223492128, + 0.08258180587071495, + 0.08553120117732496, + 0.0793392181356681, + 0.07477790718399871, + 0.060797950023518725, + 0.07340577930934301, + 0.05856499727173589, + 0.06831541650075323, + 0.10866515486627087, + 0.06785288670501562, + 0.09078914411429084, + 0.09313986686597202, + 0.0689666126671105, + 0.07190040303018408, + 0.06977919592662077, + 0.06506988704145562, + 0.07494235177043858, + 0.07710282232624208, + 0.06437014686254763, + 0.07087234535093348, + 0.07495849845364802, + 0.06489478896179708, + 0.0785092867363462, + 0.06789561480158911, + 0.06632008526721953, + 0.07195720376741284, + 0.0795359797663766, + 0.10884423657425286, + 0.07920267035286421, + 0.06818788617979175, + 0.07863935060422014, + 0.0915453838416947, + 0.06572002159611119, + 0.05990979901836317, + 0.11989056981680787, + 0.061970432967104756, + 0.06447455281711763, + 0.060080193781604924, + 0.07319486223030372, + 0.08614305808736367, + 0.06536976926781082, + 0.0734125841091539, + 0.07487318867375233, + 0.05070068309532709, + 0.07384862027626847, + 0.08547278885871618, + 0.06234696330318384, + 0.08233841420216338, + 0.07016660702586738, + 0.07518783369210144, + 0.07757278237108832, + 0.0656870997443197, + 0.0724070558491209, + 0.060675012269673784, + 0.0657265060974613, + 0.07477299918587152, + 0.09838664448724879, + 0.06858939199908055, + 0.06332383134794904, + 0.07575578722768833, + 0.07248188634682819, + 0.08484909353298734, + 0.06370777692437483, + 0.07441536828461356, + 0.08380612010501627, + 0.07258987766811444, + 0.06782352339719448, + 0.06005127832188951, + 0.08400620893284126, + 0.06429207728963633, + 0.07283129573544374, + 0.07831122253646777, + 0.06770576662334507, + 0.08071350295145839, + 0.06982247303063702, + 0.07892134299252351, + 0.06321777768125204, + 0.08399125475165484, + 0.07911036549326014, + 0.06185545403994192, + 0.07351811432914732, + 0.047027050380923405, + 0.07485506734309046, + 0.07672048278748901, + 0.0621463647678136, + 0.0709204439052935, + 0.07532195217652489, + 0.05693603049814394, + 0.07155391932457139, + 0.0912939687378338, + 0.0642684106174854, + 0.06820326789930302, + 0.08220879097720513, + 0.06900919651201752, + 0.07756408109158056, + 0.06670067834222398, + 0.09408359211329571, + 0.05853070204085365, + 0.05784004505030784, + 0.08431879891467742, + 0.06685212414156567, + 0.07509161062746815, + 0.06986327822238671, + 0.06714643216222516, + 0.08087498620248022, + 0.08568588435451975, + 0.06269990034041467, + 0.0715389208354202, + 0.04853739388859325, + 0.06555885960765372, + 0.09546397571623161, + 0.07164471352255371, + 0.06491238603438088, + 0.09229520278982514, + 0.06348445264590673, + 0.07710608862944932, + 0.08943638560282571, + 0.08008773990344688, + 0.07371873028429571, + 0.0706505374068854, + 0.08153602019530462, + 0.05638373099578652, + 0.06274184164996664, + 0.06925865074945421, + 0.07637753002775603, + 0.08205672082157835, + 0.06274031009336854, + 0.0742203792576347, + 0.08247316533888988, + 0.061867922819227074, + 0.0664506887305667, + 0.08080487583269835, + 0.08316551545331372, + 0.08747795887342026, + 0.06648107203860473, + 0.05437932665298877, + 0.07059315136140248, + 0.06695942319478865, + 0.05546390878333743, + 0.059216562150287866, + 0.08589590854564787, + 0.08025655374494349, + 0.07656786605573934, + 0.07908646281176325, + 0.07230721697158995, + 0.09193661269933688, + 0.07955149338307338, + 0.06600885884489772, + 0.06166957582922166, + 0.058086454869406966, + 0.08134721348977614, + 0.06291696820107982, + 0.08701271535780677, + 0.1114573569365375, + 0.05661686314952422, + 0.08708784398883368, + 0.06594329172687796, + 0.1041498093518877, + 0.06142604112826365, + 0.0634110399872681, + 0.05597205544553585, + 0.0638015381659278, + 0.08284909461064817, + 0.08018082176574208, + 0.08767881259818686, + 0.07407327032838198, + 0.06994181694282028, + 0.10325304657712331, + 0.07005824356639982, + 0.0731159214209001, + 0.07601215107127081, + 0.060556209326813756, + 0.07084101402908127, + 0.07917269637919823, + 0.06044701051681098, + 0.07214248852538045, + 0.0750238009351802, + 0.07816516395898504, + 0.0762556445811063, + 0.09482038979057213, + 0.09732064026394084, + 0.06747876233276554, + 0.07522765037721002, + 0.0801179132539906, + 0.08094342639418388, + 0.0688633523826384, + 0.07504767236168977, + 0.06481697870910003, + 0.07434790581632367, + 0.09625594926838112, + 0.06640532887699657, + 0.08392153302794118, + 0.06494321674103573, + 0.0894896307132344, + 0.06601121211316373, + 0.08927470459426409, + 0.07557627125074566, + 0.07280526243372483, + 0.0673891817574763, + 0.08764706665060093, + 0.07985392190456429, + 0.08816800454360776, + 0.08484653992798079, + 0.0626740291956486, + 0.09079489718503453, + 0.0714855458589355, + 0.057597957553172416, + 0.07099186912719505, + 0.06396056190672532, + 0.07650939644322839, + 0.06928831374927008, + 0.07373311628244261, + 0.07973675010411357, + 0.09349973798906155, + 0.06513396326967426, + 0.057840196408987535, + 0.09351515955522817, + 0.08351037053302732, + 0.09486661577082141, + 0.07794085292695216, + 0.05305387930596631, + 0.07009065703116586, + 0.07393622396145273, + 0.0630987104478975, + 0.07729399950964566, + 0.07179962927026344, + 0.09175842715957595, + 0.08219238507330534, + 0.07388977332735147, + 0.058769779409765674, + 0.08181849983782338, + 0.0729723625101667, + 0.07478857461456527, + 0.06102034243875111, + 0.055135858756962634, + 0.0838770772086376, + 0.06608344967448301, + 0.06528011688663012, + 0.06707650610025956, + 0.06088691511376285, + 0.08320232186924675, + 0.08478368770495216, + 0.05538353091439425, + 0.05540254557252777, + 0.07399660740775173, + 0.07025470101618074, + 0.05563649325732891, + 0.0898957947850348, + 0.0714431251548741, + 0.06459043276658846, + 0.07566717076711792, + 0.06724102620533878, + 0.07076439979328626, + 0.12875283606529547, + 0.08670315101331069, + 0.07698326142123157, + 0.07813530318482005, + 0.07969753016675438, + 0.0665030997471986, + 0.07051029489564348, + 0.08366712481739107, + 0.07370207226888133, + 0.062124734444692735, + 0.06252746480664224, + 0.05706034318476435, + 0.07550187671197647, + 0.06827264463540622, + 0.08852922323291237, + 0.08475588265499942, + 0.07809355389492229, + 0.06660364624743938, + 0.09072975331977808, + 0.08386821648434176, + 0.06826887217548994, + 0.05929066564243312, + 0.08837509078660281, + 0.07966846114077945, + 0.09172726135521643, + 0.08193225982330204, + 0.05958784679263722, + 0.05933599611899775, + 0.07093120074272702, + 0.06577085086726209, + 0.062200703353024356, + 0.08757297899018049, + 0.05956587083628963, + 0.10267739533748474, + 0.06530354728103491, + 0.09076819605172905, + 0.0794992199794506, + 0.08516213459407666, + 0.057180298137547436, + 0.06041231149347113, + 0.07624201199424313, + 0.06125222264152034, + 0.05527824452639166, + 0.06419005504549208, + 0.08323275130440348, + 0.07151606742221148, + 0.08268872483008574, + 0.070008776853324, + 0.07516459294853425, + 0.07194760496347706, + 0.08905147980881974, + 0.06781156852036538, + 0.060115023224211854, + 0.0685598589766857, + 0.09875800046302162, + 0.10688818907761376, + 0.0724357380575677, + 0.059351872108882146, + 0.07706606629726388, + 0.09176320452598953, + 0.08491760676181052, + 0.07498760619064603, + 0.10054045264860517, + 0.07139712334629209, + 0.10114063122955502, + 0.06693794640250299, + 0.0830781487672982, + 0.06762934046998768, + 0.08341369928514328, + 0.059884770953636035, + 0.08601503429521302, + 0.07377355189390697, + 0.05436147481353541, + 0.07087009219210111, + 0.06440945087797983, + 0.07945489111609062, + 0.05929068901941506, + 0.0701456381158884, + 0.0677739329248743, + 0.06717367130492136, + 0.06542178667319377, + 0.08088370457844116, + 0.07665812536520061, + 0.07315026079818766, + 0.09672906443338902, + 0.05426725061309626, + 0.08596402710214655, + 0.08334675320344544, + 0.0779315811460325, + 0.061806718857964245, + 0.07508385443677125, + 0.0752659649204726, + 0.07165600494460578, + 0.06955813347592085, + 0.06911048106626728, + 0.06973137323327053, + 0.05854413505548394, + 0.09662495274412664, + 0.07422510093661312, + 0.07075017128998626, + 0.07947186944394265, + 0.0641570469049526, + 0.07274029136406132, + 0.08038301579391648, + 0.07451216900553548, + 0.06281926229611753, + 0.08112187759101555, + 0.07554363722712298, + 0.08401903798397953, + 0.06360545746262557, + 0.07840514749775984, + 0.08074732516912145, + 0.0660922880581058, + 0.05955755999304085, + 0.08146868599209382, + 0.07613274437536914, + 0.07204390433665055, + 0.10149463621585238, + 0.057300025415392135, + 0.08720455961375691, + 0.06315594532078958, + 0.07008205792279447, + 0.07685302344821397, + 0.07717737234733962, + 0.06086701110173684, + 0.07838689748510622, + 0.09034071580598269, + 0.07161755616063384, + 0.0738212072390588, + 0.08705552771590584, + 0.07145438130037832, + 0.09162110736854907, + 0.07111428541711468, + 0.0763380515789178, + 0.0821400707483867, + 0.07598126192492864, + 0.06754846232419563, + 0.07616392584912161, + 0.07152784161921734, + 0.08623912945539783, + 0.10185833780144085, + 0.08973046597356395, + 0.0543966599935823, + 0.07144826194765862, + 0.06543406208245617, + 0.06834622707255311, + 0.08945043748054261, + 0.08392117166144411, + 0.07015496262356924, + 0.10294328042651384, + 0.07521810952802425, + 0.08070578454886666, + 0.07531567778989558, + 0.06626853204139418, + 0.06714908130447234, + 0.08313850589646364, + 0.05708496191308836, + 0.06916324964479006, + 0.05079650398102797, + 0.06672378223997001, + 0.09135453656648049, + 0.06111866651208111, + 0.07534144697587254, + 0.0769192565023968, + 0.07811446363417889, + 0.06966684524375057, + 0.05774762107544314, + 0.07268643057895768, + 0.06960674324301068, + 0.09897077328385226, + 0.06722181451073338, + 0.0791401814285858, + 0.05842977330399473, + 0.0802119686027575, + 0.08378487134266278, + 0.06372590964065776, + 0.06464937038807395, + 0.0599826639595808, + 0.07555652941995139, + 0.06102411243970262, + 0.07358875313085063, + 0.05869037708876518, + 0.05733905577019772, + 0.08978871141170479, + 0.07492917302164433, + 0.08099104881819981, + 0.07364350474833901, + 0.05948228848363815, + 0.05844562289342319, + 0.06087722339680506, + 0.09472299960306264, + 0.06550032831691967, + 0.05574372326322796, + 0.07824639419320706, + 0.08028969095208838, + 0.06058860856866833, + 0.07718296499451385, + 0.06191740867632482, + 0.07901770589891528, + 0.07702788672493299, + 0.06142237531876738, + 0.07535826315166007, + 0.06872124437681792, + 0.06916131459528167, + 0.05856935049097606, + 0.09013272573361795, + 0.05875395852451893, + 0.07693715783879652, + 0.06473839317306349, + 0.05162061985895626, + 0.06009368964788889, + 0.0919689445095233, + 0.08259951097421135, + 0.07243777171818391, + 0.07649049506200024, + 0.1067504806762102, + 0.06898062395235244, + 0.07720773215108583, + 0.09289590340516889, + 0.07568582617839077, + 0.0687835968819942, + 0.0712921642179676, + 0.09498617406121347, + 0.06678919455059071, + 0.0775997262394987, + 0.08333359790696349, + 0.08353263203834217, + 0.10185805288821047, + 0.06697577941314975, + 0.07851224099459168, + 0.0609455987669805, + 0.09412956279105673, + 0.07358528495723321, + 0.07351773760383538, + 0.07436553970127709, + 0.07289903595605078, + 0.06407769686771699, + 0.0691237596480507, + 0.07310207925891841, + 0.07606485084818085, + 0.06957238689180674, + 0.07917786398741951, + 0.11827139676384875, + 0.07204139813686095, + 0.07161521444958548, + 0.09934047813892806, + 0.06207962402785036, + 0.0728929987444511, + 0.0796280177044725, + 0.07169328228992136, + 0.06911678230138167, + 0.07247516037451368, + 0.08187788746708867, + 0.06995485248565975, + 0.09680953604270998, + 0.06431305078030178, + 0.09219431401239261, + 0.0719122049345296, + 0.07226511465911001, + 0.0981690656709947, + 0.09426847551667515, + 0.07167837203188969, + 0.07522454361091237, + 0.07400158544830897, + 0.06004107156717573, + 0.05582745372024391, + 0.07599048874253905, + 0.0695373057034933, + 0.08897395139155605, + 0.08442506943129982, + 0.08950928127716887, + 0.09138619406642176, + 0.08894704708848696, + 0.06711314538785877, + 0.07946553220787213, + 0.08348105509175002, + 0.058720253527375914, + 0.07176018998462001, + 0.05424245211511234, + 0.06921585665392697, + 0.06905410781749591, + 0.05631239137069895, + 0.07271235242315494, + 0.05753405403054708, + 0.05419645781526727, + 0.07856557950923783, + 0.07817736832304367, + 0.0807850975561397, + 0.06784028458313465, + 0.07590171097347713, + 0.06364282188395713, + 0.08738891033975764, + 0.08591895997148982, + 0.06338141873048246, + 0.06206360836909394, + 0.052205273086411416, + 0.06611461064380185, + 0.05929949565156261, + 0.08655434333134811, + 0.06170021365511094, + 0.06562747342261338, + 0.08245571979192867, + 0.06146429672719804, + 0.06494868180066747, + 0.08801417571039157, + 0.0736500050069271, + 0.08188649197081868, + 0.08197212983034322, + 0.06720812332299547, + 0.05713383945219232, + 0.07375159601700819, + 0.06379040315040785, + 0.09789259628837221, + 0.09568646271005869, + 0.07893905926211907, + 0.08630770160805892, + 0.06893574356387515, + 0.07711484978084293, + 0.07628399622488136, + 0.06432354340027419, + 0.06657081267333378, + 0.07901646775399875, + 0.06054457052014582, + 0.0717183731978143, + 0.08177228445758548, + 0.06422930817341305, + 0.07677105237365732, + 0.09261485058606116, + 0.054367992506634516, + 0.10087216771950804, + 0.06147997314861056, + 0.08295806292596647, + 0.09515750529339657, + 0.06041825117751254, + 0.07827986122381055, + 0.07587785893557637, + 0.06656336724919472, + 0.06424562114987509, + 0.08021438028667485, + 0.06494038683164143, + 0.07210553707584115, + 0.10430608970196079, + 0.06891950927330455, + 0.06890904040797932, + 0.06919208403321153, + 0.07190233877411188, + 0.07420701187387821, + 0.0658997851458278, + 0.05825781520501414, + 0.06571724705655999, + 0.07417195325095102, + 0.10421738249948875, + 0.10153555351449127, + 0.07668756073173999, + 0.06681797477848209, + 0.07419519025237013, + 0.07177906633909108, + 0.0708425346269562, + 0.06033445033189937, + 0.08516762769195366, + 0.06168473058411087, + 0.07595515002010327, + 0.06422989993740998, + 0.06261981686930541, + 0.06735244268657262, + 0.08018126741552262, + 0.07632896604347822, + 0.07603143246547193, + 0.07404276197101638, + 0.07462731003043706, + 0.05844066774438587, + 0.07100886306125789, + 0.06253453271184273, + 0.08266397714033134, + 0.061387511365217, + 0.07023657741216752, + 0.06768407691446506, + 0.09333973773568126, + 0.08085251234848001, + 0.07448529680181828, + 0.08166167494576189, + 0.08181533913872295, + 0.05558541110011021, + 0.07208339484214536, + 0.09633974678634032, + 0.07393113411602598, + 0.09185329273685734, + 0.06531780871155343, + 0.07214941407068706, + 0.08322828517039992, + 0.06579437264058687, + 0.08842780173194721, + 0.07829859648839992, + 0.06568353910304843, + 0.06492501252997067, + 0.061022130474148124, + 0.06063221843059982, + 0.07211263384010089, + 0.062383656381370604, + 0.07058945288626835, + 0.08117290136653939, + 0.054593531833493816, + 0.08017732948705461, + 0.07561649259096803, + 0.08041737403371876, + 0.0633956431135357, + 0.07074985104851307, + 0.08230427206744527, + 0.06493996692916619, + 0.06270505644753466, + 0.06387613688090503, + 0.06830374342228039, + 0.07814734474965776, + 0.05726954188240525, + 0.08408919967001971, + 0.06656629784858283, + 0.07183446177890179, + 0.069539311883717, + 0.07018757307116884, + 0.10542759958373968, + 0.06814493085818377, + 0.0773217449597292, + 0.06383947911343935, + 0.0982038730964685, + 0.06848144593208587, + 0.08072493130778043, + 0.07925766240342122, + 0.07268756011753322, + 0.07824293498467472, + 0.07672595125697546, + 0.07986848311250194, + 0.07088005364452124, + 0.07645946367373274, + 0.05918341759594616, + 0.06764420640340246, + 0.10758741466440153, + 0.060117037914836045, + 0.09111285548673922, + 0.07498839117353533, + 0.08866168953089777, + 0.0703638421413358, + 0.07939417120013262, + 0.05611330632106518, + 0.08746368130603746, + 0.057108122127247314, + 0.07646268112215333, + 0.05285401640824758, + 0.05243058725475528, + 0.07528291680314561, + 0.06456318856487965, + 0.07205319805482677, + 0.06531187977631008, + 0.07672284030196865, + 0.07358187787041821, + 0.060834416699533767, + 0.10013838433920444, + 0.08014335769669462, + 0.101057102211556, + 0.06871745429039477, + 0.08080022478231041, + 0.06890772812916256, + 0.06583607974478632, + 0.07593050270117074, + 0.058288527101769405, + 0.09414693002231675, + 0.06873858334159708, + 0.07087407583962128, + 0.059787069737980036, + 0.06457541436571786, + 0.07775965041345759, + 0.07639579252069452, + 0.06931862230746436, + 0.07672793588667949, + 0.07312592610946328, + 0.07412999505722914, + 0.06895502806442372, + 0.07547268912794594, + 0.06289383664119137, + 0.10330242718403179, + 0.06359891507510798, + 0.09108881905486853, + 0.08006976061008707, + 0.08971586708318739, + 0.061242375036514446, + 0.06343870470403745, + 0.08104019785863137, + 0.0772800126642371, + 0.07714133406665453, + 0.06062267159504695, + 0.08966334393544585, + 0.05917185522415622, + 0.07523916751788973, + 0.06572026379392913, + 0.07502032910552003, + 0.08598323940362489, + 0.05378002118672805, + 0.09411414582263049, + 0.0634830463355262, + 0.07193331535474663, + 0.0739183491516453, + 0.07166010582310878, + 0.0660377858081187, + 0.06427111086062938, + 0.08323356612937459, + 0.08670206769414239, + 0.06106267976417933, + 0.0686493772189314, + 0.07537993869025258, + 0.07311482599784655, + 0.08876352389135844, + 0.05417884208722788, + 0.061240037958549966, + 0.06772087406686805, + 0.08303492348168655, + 0.0798916366258167, + 0.07163725526563634, + 0.0725214761311897, + 0.06590451337709859, + 0.07251311933750448, + 0.07388278539350678, + 0.06592225245646836, + 0.06620388612320822, + 0.06347824216584534, + 0.06840915759507078, + 0.06552331555508055, + 0.0778549156799945, + 0.07996171387512699, + 0.06990617495035777, + 0.06994416685461173, + 0.06414642186517798, + 0.05879147348727597, + 0.07661757803144346, + 0.0727913495426771, + 0.062410110129018155, + 0.09088616447860602, + 0.08901024328173679, + 0.08966304637759315, + 0.08176679669086609, + 0.08921079204597113, + 0.0755953703389293 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgb(195, 226, 175)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 4", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 1.07136885861707, + 0.16215029528671843, + 0.04781580037803521, + 0.03906499727297111, + 0.04661060385927132, + 0.05125442394181169, + 0.07522302493591887, + 0.05200735195174587, + 0.05931275753634268, + 0.051145859649157625, + 0.06027920052317959, + 0.03729326386183284, + 0.04522835600601863, + 0.04964745504093386, + 0.05210298655005147, + 0.0362624429146588, + 0.04773528226162187, + 0.04030612308710094, + 0.05078489842456172, + 0.059830288400634035, + 0.045139407777899695, + 0.04369822382881475, + 0.035269340025449146, + 0.049446684948408835, + 0.04823773394018877, + 0.048422655364685575, + 0.04727648177491848, + 0.05479169677732464, + 0.03872175773698081, + 0.04771512125836695, + 0.05185424495982045, + 0.038384285307810274, + 0.04474365977003831, + 0.04476802669731781, + 0.04763576513228003, + 0.053405831473654124, + 0.04418766244293986, + 0.047270588371183225, + 0.04800813930308701, + 0.03655810394878861, + 0.05163184371972455, + 0.045483162942417506, + 0.05007133432100566, + 0.04608977780618808, + 0.038508715760727105, + 0.05436632660691475, + 0.04370595015036305, + 0.049589493051994074, + 0.06753782090718473, + 0.04962541845305189, + 0.04295190136190733, + 0.042190868583167666, + 0.04831376845735267, + 0.04211648725630777, + 0.04808688510389734, + 0.043538593838727165, + 0.040580067724178874, + 0.03785926602545454, + 0.08591652198207898, + 0.04825111280651508, + 0.05476628013399067, + 0.03621562110857239, + 0.04475510418384279, + 0.038493216213497806, + 0.048343132387821876, + 0.046889009237674396, + 0.05141447983541117, + 0.0452327903848928, + 0.04363830301445305, + 0.055417475471911344, + 0.04652584657945464, + 0.04966941227488668, + 0.04213793586910197, + 0.0511079704112292, + 0.04875860300758067, + 0.06195466453405461, + 0.04598003601507097, + 0.04259368013899044, + 0.05091945773519197, + 0.05574603740747556, + 0.044045393910682226, + 0.05496554490822897, + 0.057910974204885814, + 0.04110694004416701, + 0.04427551936185398, + 0.05159740892990269, + 0.06299071278291964, + 0.04480040675009427, + 0.04103590863511122, + 0.04335079728741988, + 0.049409669591773835, + 0.041619910419284256, + 0.04672284648136979, + 0.05572822719110056, + 0.04244404607358586, + 0.04642481831465231, + 0.05247196438880488, + 0.050543873004975176, + 0.041180688010947104, + 0.047303653109170445, + 0.044066464553821544, + 0.0386775944487181, + 0.06338440464223624, + 0.037210736841829385, + 0.04079865883948939, + 0.038976363073952115, + 0.04223243348529902, + 0.04112123047194275, + 0.04816351329095097, + 0.0472197018870847, + 0.04688368498715176, + 0.043548530250602256, + 0.03447056439666812, + 0.07341461935638383, + 0.048608202366459935, + 0.07813899547930098, + 0.0786874315539067, + 0.04040372451631384, + 0.04460592071535972, + 0.040671451680386835, + 0.042957024464662784, + 0.048869289850059235, + 0.05708096060073133, + 0.043726529327148995, + 0.05031590021749706, + 0.053506127935814926, + 0.04123621452119458, + 0.04911400232650132, + 0.041684219791582475, + 0.05446049351730657, + 0.04669609223170751, + 0.048775193740827075, + 0.04909357172788483, + 0.05179313978789203, + 0.045184900137765535, + 0.048287933268842544, + 0.04017724102464825, + 0.052715340485295144, + 0.04555117837381916, + 0.05699495705578539, + 0.05586348151315418, + 0.05367949671324828, + 0.04636808152095286, + 0.046407312047679304, + 0.03826148153903793, + 0.0696519281499724, + 0.05812090497565158, + 0.04182839530346273, + 0.05912232450662095, + 0.06804411891048152, + 0.0367365495751434, + 0.057018806186482154, + 0.04340213218647835, + 0.03716718562602674, + 0.03956188885070324, + 0.04261984449766417, + 0.04917498832577447, + 0.04243490161172254, + 0.03372171904753949, + 0.04575458048772836, + 0.04167401260170441, + 0.04769462450002315, + 0.057182241889772216, + 0.05940052910230576, + 0.04510844235121188, + 0.040385995404501336, + 0.052755697826954835, + 0.059851921765633406, + 0.04280675056984417, + 0.05383442109435847, + 0.04682816247147161, + 0.055943038904316456, + 0.05445656059523424, + 0.05027289654430049, + 0.05545034535957407, + 0.0471810917148988, + 0.04487498087104186, + 0.04916673127653484, + 0.0461049983317569, + 0.04178706160699023, + 0.032084805767687505, + 0.037293568610306894, + 0.04691436507538572, + 0.05287457942291633, + 0.04640971552185341, + 0.05450381911164765, + 0.0538522529650941, + 0.03842062698381485, + 0.05431163716294959, + 0.04565825539722894, + 0.04375638065280106, + 0.04115854636660161, + 0.04640133947205714, + 0.04883238680055009, + 0.04200434421072424, + 0.041113861176298616, + 0.060481979976558374, + 0.06664146149982662, + 0.0425210624692373, + 0.053222199959759714, + 0.04415581631790745, + 0.0454347620817899, + 0.0357839823458865, + 0.04825597781355412, + 0.05135363638203477, + 0.03272902907911413, + 0.03616902489920735, + 0.03652870527913539, + 0.03959018501314598, + 0.04841746193606536, + 0.048138770410856624, + 0.04658537837415096, + 0.04380604538622664, + 0.04605588574005076, + 0.046420700446828694, + 0.044518115907289345, + 0.05350102707269899, + 0.04156527516254633, + 0.05560436976852205, + 0.061115725168806784, + 0.04574891902768442, + 0.04631885221502487, + 0.040443898712623945, + 0.053165140099597746, + 0.0519848136742911, + 0.038915127917608705, + 0.056687824693262535, + 0.049605455569707003, + 0.034396536168373425, + 0.03607748443288948, + 0.04569795652394313, + 0.052770535043131096, + 0.057825845298269445, + 0.04815771379199421, + 0.046882078067557904, + 0.03906923605752146, + 0.04974451660994255, + 0.039085489918456416, + 0.06046186809166926, + 0.047656381942513426, + 0.028680491365498415, + 0.054225568443402476, + 0.04109005701113394, + 0.04266409161354046, + 0.04323944883317749, + 0.040042198317304024, + 0.048689408848855434, + 0.04306236302539044, + 0.036185386355053015, + 0.04466994764478517, + 0.040104495979120955, + 0.04587505768158649, + 0.05251171043778723, + 0.03884941918263268, + 0.04369003568710325, + 0.040767019320270506, + 0.04246842400571565, + 0.04094217114555028, + 0.04772783337941833, + 0.05614695899227317, + 0.046537622412221216, + 0.047488396037588324, + 0.048897390655848916, + 0.04528062028481027, + 0.04722117635703292, + 0.047686948212760594, + 0.05636009543641411, + 0.056996558657199894, + 0.05795285512246503, + 0.043798046501330685, + 0.04570146283302756, + 0.05605436294584923, + 0.0525539076291988, + 0.06080265743104292, + 0.05680549123492636, + 0.061653176208519005, + 0.04744864232821079, + 0.044355650414270496, + 0.045287943429396335, + 0.04323283945477862, + 0.03880293076783906, + 0.056002605245825406, + 0.048969246699631444, + 0.045215749488491115, + 0.04859945718803275, + 0.040958260195499925, + 0.05648210572275845, + 0.043444613964106586, + 0.04068924977157242, + 0.044178202538501216, + 0.056435277637704756, + 0.042740095083000876, + 0.05433246403360874, + 0.04321948823531292, + 0.046870705207375456, + 0.04111962826566835, + 0.06023381830630128, + 0.05830561124692543, + 0.049401497064858704, + 0.05719904646301174, + 0.04864317873234095, + 0.05131348868967643, + 0.04536546178355216, + 0.04478327338239299, + 0.045758827736668395, + 0.0478688772213072, + 0.06657195925456617, + 0.04230738103616888, + 0.03905773680531692, + 0.035404196674454394, + 0.03960596290980635, + 0.03420966577684959, + 0.048339291154039656, + 0.05099134581702703, + 0.05955585737223179, + 0.03696448242791555, + 0.045362761917818975, + 0.04318721579530296, + 0.045338684781297746, + 0.041080484097394364, + 0.04346959685404912, + 0.049977926109039006, + 0.03586412244066536, + 0.05469874442866761, + 0.05207380458368625, + 0.04006609863557105, + 0.05314248533371715, + 0.03933387173620377, + 0.05645668486257704, + 0.06016456443707841, + 0.04520210589821656, + 0.045139020473930196, + 0.05434719845106097, + 0.05461428291683258, + 0.04610367046496316, + 0.04590874832237195, + 0.04925740770406193, + 0.05554892197575927, + 0.04705560629859055, + 0.05361230648488316, + 0.05250290833587349, + 0.04351225936770761, + 0.04907472564041366, + 0.04513440434832228, + 0.04768930796768678, + 0.04457158926237025, + 0.05066737484798308, + 0.05247742719171246, + 0.055106731159311376, + 0.04487240421197394, + 0.043277742399598806, + 0.06319656720848697, + 0.0430796404248105, + 0.06245935926551964, + 0.04094606070890108, + 0.0433893516441253, + 0.047259858723496535, + 0.04512959453561845, + 0.05147193750539993, + 0.05748948229045005, + 0.04868686186120547, + 0.047982379199055694, + 0.046506923060841095, + 0.04028738079348582, + 0.04090461259859882, + 0.06035048413863904, + 0.05134265261751484, + 0.04938200269947508, + 0.05368744963737175, + 0.05179369205342502, + 0.047970003862053315, + 0.051251507438869144, + 0.040385477381547845, + 0.038544521027396944, + 0.03863724408242157, + 0.04327676866815397, + 0.053044824103908976, + 0.05001969535974299, + 0.04692377434347085, + 0.06197876793370873, + 0.04575419227317757, + 0.04255359654435863, + 0.04380377427630778, + 0.04294611548290331, + 0.04591996844989144, + 0.04410787989354845, + 0.05062589489144483, + 0.04848043553180592, + 0.045245018235676816, + 0.03686114254426868, + 0.046158450781960354, + 0.036868076385671585, + 0.04369118281982312, + 0.04707853351022492, + 0.052518759273106355, + 0.04861176647741809, + 0.052139485321382684, + 0.03608960160311182, + 0.03815721873981822, + 0.048090077389536606, + 0.05621776295833748, + 0.05640961315509131, + 0.05346362169751733, + 0.053409555516309264, + 0.05769264809090569, + 0.04179747304412578, + 0.04907921728790329, + 0.053275740397077956, + 0.041553389120236234, + 0.041698789487109394, + 0.042047737912331094, + 0.05275627111700688, + 0.04961755938992219, + 0.048172406130208366, + 0.05086036652305327, + 0.05379458506364471, + 0.0407213034586161, + 0.05260180123381143, + 0.04114244668194272, + 0.0504791750484556, + 0.04772365975767298, + 0.05843564250344574, + 0.052007178957407016, + 0.03579338450358652, + 0.03636825761995947, + 0.042776754397923424, + 0.04676351647146359, + 0.039316268471754484, + 0.04422959254924059, + 0.04401073617552463, + 0.049832240865888326, + 0.05002647887434212, + 0.054809442901715626, + 0.05177600360733348, + 0.05424491217506015, + 0.06461119046880262, + 0.049454491477462434, + 0.06986145776346796, + 0.04624864167497032, + 0.04043912499399973, + 0.04296460164016381, + 0.04612000200854212, + 0.04121947957914147, + 0.057386799251917774, + 0.05804380763845617, + 0.049085675556496934, + 0.04416682254649753, + 0.047730145086366284, + 0.04680524629136765, + 0.04235640088295605, + 0.054827999209581625, + 0.03200191856723676, + 0.037155074711520734, + 0.05403148594564398, + 0.04423751625011444, + 0.05676086132194598, + 0.04837193971048617, + 0.049806705170308746, + 0.05429401883236023, + 0.040717801228185746, + 0.05001439709487214, + 0.050358116610082514, + 0.04944523676348882, + 0.04137114343987118, + 0.04663023615897387, + 0.05794303017156121, + 0.04047986625260862, + 0.04261113997089011, + 0.04699377158752337, + 0.03976732261832585, + 0.03536345469468794, + 0.05315286999728017, + 0.05989695379864667, + 0.03343809316127747, + 0.04230500769637432, + 0.04166370880393289, + 0.0496174087663133, + 0.04696866258647493, + 0.03894280247174822, + 0.05229452818960248, + 0.0509749715852536, + 0.04291583537603695, + 0.04353539413870418, + 0.038026488466498254, + 0.047076795527976445, + 0.042439903168036794, + 0.0640653323716901, + 0.05282306645644211, + 0.0402108453126765, + 0.053093838972134884, + 0.05068278241672214, + 0.04133512156961884, + 0.04608608424417634, + 0.05054832059946768, + 0.04373614805905567, + 0.05120224295610846, + 0.044789372275101366, + 0.06572625826392452, + 0.044682007573566294, + 0.04677542098279923, + 0.03980036474710969, + 0.042273465911212324, + 0.045725310887910695, + 0.04593214602444651, + 0.0424223077973425, + 0.04622530157612599, + 0.05090434263968594, + 0.03815559364373887, + 0.048637055137382264, + 0.040380213540663686, + 0.04476436126395967, + 0.04541179119355231, + 0.05220301550733602, + 0.054198631757370976, + 0.042860851229927624, + 0.04510475872831312, + 0.041247087045226546, + 0.04584426879107185, + 0.047091685783050084, + 0.04335641150642756, + 0.0557887149091317, + 0.05548003731385876, + 0.046209757089583324, + 0.0443979982425408, + 0.046676376654935924, + 0.04569575661881936, + 0.06532799895266543, + 0.040524296038531415, + 0.04679485020662013, + 0.04550479953808541, + 0.041661926577202926, + 0.04126170640520786, + 0.05734395363500261, + 0.04654575946005172, + 0.04460907815436017, + 0.05794029900288434, + 0.04999865453560105, + 0.03975257088051427, + 0.04390688393974508, + 0.050266037104545636, + 0.044180638240714734, + 0.0564815750012424, + 0.036176705660358785, + 0.04634152279011468, + 0.041182793111794146, + 0.0482271213720084, + 0.03532504892793996, + 0.036479260371434084, + 0.044175143660056385, + 0.03736631349869829, + 0.04567621798919364, + 0.05198506246090829, + 0.06190259782392689, + 0.05726039900515001, + 0.05799084921810899, + 0.042735618049451654, + 0.049930911527101336, + 0.04276718670578264, + 0.047960119248256314, + 0.04148329280476184, + 0.042999951178481724, + 0.04291186658564973, + 0.05122869403021792, + 0.04988650268783095, + 0.04395039458587133, + 0.0481758633185683, + 0.04396876859920794, + 0.03829740305505325, + 0.04240565002642912, + 0.05785852815123139, + 0.05192826062967614, + 0.05322273723485788, + 0.046375438872922906, + 0.045031070418207274, + 0.045815612875703814, + 0.04443799111836076, + 0.044864026668395764, + 0.036270921694496076, + 0.05399753352783537, + 0.057010674355269984, + 0.039395605932662385, + 0.05538941763094209, + 0.03697608417834186, + 0.04361985376731791, + 0.03442006902689799, + 0.042000220882888836, + 0.04110081225637483, + 0.05785254025515716, + 0.05778195776912729, + 0.04724833346204761, + 0.0554245715528635, + 0.05474378401715985, + 0.052040052712744964, + 0.042450793602115594, + 0.061462922737942016, + 0.05998846569389644, + 0.05042025398983899, + 0.05933302449693207, + 0.06315140628042887, + 0.04890105382758319, + 0.03483780644556456, + 0.040801597964550664, + 0.0524107918226648, + 0.03874562987544074, + 0.04572451567153369, + 0.0520574596509841, + 0.04496688733701621, + 0.04877149635951016, + 0.04263381121402328, + 0.042998839930084166, + 0.05714560695769925, + 0.04310166480346725, + 0.049696393033464244, + 0.03290698140452088, + 0.05365520457122957, + 0.0498739330452114, + 0.05191005380512699, + 0.04428698866721481, + 0.043663958571208306, + 0.03762784029713403, + 0.05775341932142223, + 0.048002452854571, + 0.041378174737000825, + 0.050724557795675536, + 0.04389334487306989, + 0.04100541113923547, + 0.04378783460067459, + 0.05202196305782533, + 0.05140880175438034, + 0.05165308485435362, + 0.0499602277887575, + 0.05147995089997032, + 0.041099942921070914, + 0.051893622683646334, + 0.04103697895442753, + 0.04269608395978861, + 0.04896380749228725, + 0.04175137260920783, + 0.05920757762878791, + 0.042203397125505644, + 0.040745449616069095, + 0.05576332889698619, + 0.04560145290780808, + 0.04250352477428123, + 0.04923754574432666, + 0.05785311255781027, + 0.052893636797572634, + 0.04959123895679792, + 0.055852423421013035, + 0.04072288977260321, + 0.034672438735676187, + 0.057205240013033225, + 0.04391483210306333, + 0.05626356832154267, + 0.0522232878527108, + 0.05626886246759492, + 0.03945409289402189, + 0.04072894109446605, + 0.05070991748871805, + 0.0471228754754204, + 0.05382386290349609, + 0.05021737477540941, + 0.043190328364198095, + 0.05660002759855584, + 0.04937349829133447, + 0.05346400471148248, + 0.04851124761310344, + 0.04061791378808734, + 0.04641360422932761, + 0.04917959231597474, + 0.04604791079459375, + 0.0453593448104207, + 0.0605536283728905, + 0.052949443525985566, + 0.05618430476328834, + 0.0427252935704812, + 0.04677666551687779, + 0.039435213318812286, + 0.04202759284605368, + 0.05075545035946685, + 0.043918064314893514, + 0.04687099519929931, + 0.044455023664453926, + 0.040311948927112644, + 0.04469523304184593, + 0.04152744635274288, + 0.05182345927963355, + 0.04926776010598158, + 0.043169011044947, + 0.05520264456112237, + 0.05102527531353785, + 0.04297837653121442, + 0.06261213462238335, + 0.036348180406330415, + 0.04084743962553693, + 0.053308746228837744, + 0.03353299144492987, + 0.04717530231826949, + 0.04411254094556778, + 0.04337743339904886, + 0.058840476232693915, + 0.054086211470849965, + 0.03637502644887204, + 0.03211001951470672, + 0.03952575256718946, + 0.0477381242391788, + 0.06011803249738842, + 0.03505611171279328, + 0.057099964111329254, + 0.041729610019150785, + 0.044430949263484815, + 0.03785216283456068, + 0.03862147506165878, + 0.043890756106627925, + 0.043569546931090136, + 0.04973273879569603, + 0.05110722365016828, + 0.0433314740430893, + 0.04207567663727405, + 0.06289119973815135, + 0.053127149046501766, + 0.053132886449126004, + 0.04397529597045265, + 0.04458073149426708, + 0.05381911169775129, + 0.05453945256221657, + 0.0505581249789816, + 0.04639388204885656, + 0.047507318014442954, + 0.05444304955998476, + 0.04849218378346987, + 0.056958706395174905, + 0.04964347461941846, + 0.05117653664379466, + 0.06202235144065751, + 0.04884043475927175, + 0.05835898349468493, + 0.04217945379386823, + 0.036091423738126564, + 0.04838987044868723, + 0.045468526836506235, + 0.048764746583706824, + 0.04491629854245013, + 0.044249884602015586, + 0.05513703928089499, + 0.05600986770389472, + 0.04844299754206656, + 0.03700439204483208, + 0.04530845095572867, + 0.04014888834995671, + 0.04248648887709207, + 0.04713937750398385, + 0.04664385516104081, + 0.05294558423540831, + 0.046906849664586865, + 0.03943713236927339, + 0.04927046827638293, + 0.05631763599235441, + 0.052532251752831056, + 0.05867998659797951, + 0.062049378562870884, + 0.0501618034946382, + 0.05984043528599731, + 0.03820420542989037, + 0.044556559691165884, + 0.044023330812217515, + 0.032573987556387095, + 0.05481704823132747, + 0.0439381113173763, + 0.05905006105482992, + 0.03808191562804516, + 0.03977499281937636, + 0.04650305624637326, + 0.04945800021820186, + 0.04492684354572989, + 0.04898059754918318, + 0.04396451665208113, + 0.0574389195951237, + 0.04587476607708532, + 0.04493182200632909, + 0.050609736598461054, + 0.06277901062998731, + 0.06577051482025975, + 0.044305881839782874, + 0.061755401800164963, + 0.04621296784854992, + 0.05973149635394631, + 0.04800767738726555, + 0.04426086026634424, + 0.035318121865415164, + 0.036185204393720805, + 0.04339740064863543, + 0.04786599644695777, + 0.06737311675263873, + 0.053928326266108474, + 0.04742947765348444, + 0.04402808666295637, + 0.055311779712387855, + 0.0429225543052026, + 0.037119382269978234, + 0.043371766244383776, + 0.05346623594050158, + 0.057400024603948344, + 0.03961542716481083, + 0.050674647779931414, + 0.06285929200674478, + 0.04660775019944077, + 0.04653540105366337, + 0.05366790651704222, + 0.04546737484904722, + 0.047394720817434156, + 0.03598621395629978, + 0.05596205280905335, + 0.06633415034356747, + 0.04176333271875293, + 0.05616107878503158, + 0.04360750050555715, + 0.04914529902074607, + 0.046591514064767595, + 0.05409252570150727, + 0.050456208260174905, + 0.05459381516059144, + 0.0494417806500943, + 0.045568833616770936, + 0.03766512790299995, + 0.047958676986229826, + 0.03464169704307011, + 0.05436555425230342, + 0.06043776118308529, + 0.05175899587027639, + 0.05150758266642091, + 0.042718876670129, + 0.038404234791156365, + 0.03923527879745506, + 0.044512748268669786, + 0.060480302528654946, + 0.03807540230504776, + 0.04760610900934421, + 0.03590984881548774, + 0.042279984093456284, + 0.04140716518258503, + 0.06572985319553676, + 0.04939430485703083, + 0.05408294880941726, + 0.04309681155109773, + 0.0487366328075304, + 0.050827737193938835, + 0.05875235491683055, + 0.05737774884690356, + 0.0679106511931804, + 0.055037541658784384, + 0.03260301115101365, + 0.05064115025168984, + 0.04370741291711643, + 0.046164760644588396, + 0.03672086667942661, + 0.05151618714882064, + 0.042070826842556926, + 0.04712800515051233, + 0.041953230305767635, + 0.04414836424833638, + 0.04843398194845319, + 0.06424038483297502, + 0.04691612223842912, + 0.043407432868670465, + 0.04498697735312419, + 0.05125246405619212, + 0.05124850434854212, + 0.04359246054175116, + 0.040859337792068205, + 0.042449182151659534, + 0.06351366532214513, + 0.04342104172213433, + 0.046574567919668707, + 0.03767019000990029, + 0.041015701712050275, + 0.03656191694174398, + 0.04444853765099248, + 0.04776375220578255, + 0.03604733083198121, + 0.043832570211163505, + 0.058693673525031895, + 0.0393472405468508, + 0.05033653550329106, + 0.05188631308868182, + 0.0510054170595725, + 0.042191582115680935, + 0.042305506473340096, + 0.04249235058632648, + 0.04499126882092429, + 0.06858167100233967, + 0.0571310022178983, + 0.05202404843433119, + 0.04770758073332324, + 0.041976565608359134, + 0.03966456948397224, + 0.05637607961618944, + 0.054777034690974453, + 0.04025053660032351, + 0.03754872390065741, + 0.04164617898722344, + 0.05826887746449647, + 0.04718873222309743, + 0.04475513783000174, + 0.04730947697053987, + 0.055319832068889116, + 0.040420474210416814, + 0.05493106229650127, + 0.04316908431329987, + 0.038030427496086525, + 0.04290647180600535, + 0.056278468381612254, + 0.03861616910370165, + 0.05287450651902311, + 0.055981836163191905, + 0.05103232472019621, + 0.0494906292193737, + 0.03627821022885768, + 0.033139515018464606, + 0.05751828075446349, + 0.058671528085037956, + 0.04289386431764102, + 0.0420046979496406, + 0.04716678547983969, + 0.03859371479912548, + 0.0330171000918728, + 0.05065053457175467, + 0.04381267770932197, + 0.047886332058793446, + 0.054226855066812456, + 0.042782371005800374, + 0.05792073126567859, + 0.042306173214258024, + 0.04520723926584967, + 0.05089278918711858, + 0.04828629186245337, + 0.03618126947802187, + 0.052396269824682935, + 0.06884792101500686, + 0.049857900114039365, + 0.03559579438150849, + 0.04420274242013429, + 0.039481989834523376, + 0.043357778153414364, + 0.04509575582692003, + 0.03678474030862691, + 0.04982041445851908, + 0.043216715277864255, + 0.05247159164685143, + 0.04855178409186416, + 0.03761421312704718, + 0.05230466747318377, + 0.06362059885592158, + 0.045376965805860515, + 0.057562785126628, + 0.034950368802925534, + 0.05476365894631881, + 0.042257600584041426, + 0.05220510623343491, + 0.05056879224962813, + 0.05625302161968986, + 0.04334562421394376, + 0.03939926711605401, + 0.035322657311447056, + 0.039055482501705936, + 0.046592454488677854, + 0.060404231220003005, + 0.06354484807829117, + 0.04687695023235121, + 0.0390404494323768, + 0.047797643634685694, + 0.03953790160686841, + 0.04336323574969402, + 0.0608377394028468, + 0.04386302376965523, + 0.053227893133682924, + 0.03283716037830664, + 0.04303256218110212, + 0.0426875079363669, + 0.048137241132102666, + 0.039716835530342665, + 0.04891519034944567, + 0.050508803464968326, + 0.056511422020163606, + 0.039985750440011694, + 0.0475117917183032, + 0.046847632346750524, + 0.040462631804637966, + 0.046959545601604494, + 0.042323902397559024, + 0.04218636641703128, + 0.04414405687338201, + 0.04524274698834125, + 0.045696815844324196, + 0.034026538791187555, + 0.05043988872935453, + 0.04425121278151739, + 0.04320960497865022, + 0.04261598438827555, + 0.04807673314814083, + 0.0427856836960044, + 0.04576060550980027, + 0.048193406858665896, + 0.06262640767835205, + 0.046369867515178805, + 0.033973532770251676, + 0.045803455325602774, + 0.03768055470487056, + 0.052232398214044795, + 0.05943908901696813, + 0.03725110934339498, + 0.05462902641311595, + 0.0415189563697244, + 0.03677277828218238, + 0.04407444577271823, + 0.0350248816686538, + 0.04184152629984229, + 0.04569613402924549, + 0.040131698586025034, + 0.04703824485031036, + 0.04111108099832736, + 0.04743604216592593, + 0.05495883365513668, + 0.0497344462693304, + 0.054813515753386846, + 0.03874291566558365, + 0.05634785835646233, + 0.0467089606181833, + 0.054881587385252104, + 0.044517386019569824, + 0.058145012464513375, + 0.0521625612998374, + 0.04746728875830948, + 0.06203425650139498, + 0.0462740093557928, + 0.04211349805084006, + 0.04230619572637933, + 0.0569769729882322, + 0.05787487167332255, + 0.043250133867501935, + 0.04972866326191947, + 0.04840274324327517, + 0.047792875948005964, + 0.03330540228750913, + 0.04859840793376147, + 0.05554621046570872, + 0.035190341954717326, + 0.04492792749321017, + 0.05521223261221484, + 0.06164908423081726, + 0.04697899094221001, + 0.0526074589906842, + 0.046380488908744494, + 0.04216359316658129, + 0.046504161221794675, + 0.046633601608882254, + 0.04125484273871232, + 0.057537171040749485, + 0.046266601762469356, + 0.05361804942973813, + 0.05519598535489729, + 0.0413464063871948, + 0.04681081817686964, + 0.06398786182073903, + 0.06605857907150756, + 0.04916005352019398, + 0.04984865594888656, + 0.03559016323907974, + 0.03831584502726281, + 0.04263045649694092, + 0.056124948188677706, + 0.04365136381986687, + 0.05904512158341727, + 0.057383145989096086, + 0.05136314526772132, + 0.04902118154220604, + 0.05218304377112596, + 0.04793651610803297, + 0.056471691607381955, + 0.03959211387531046, + 0.05379992648371163, + 0.0368933314435969, + 0.04513361476320178, + 0.052322058030247615, + 0.042924166765421316, + 0.059013155319361243, + 0.0481915439259094, + 0.04312549649070946, + 0.04715940027179505, + 0.052908478782475774, + 0.05098408318014629, + 0.04425763187503133, + 0.05863938857433213, + 0.05169526136321332, + 0.05222007644542685, + 0.036908016408564955, + 0.050754525437153336, + 0.03673296042623195, + 0.06731743867789967, + 0.0356303262901905, + 0.04461455220368291, + 0.04842632167252105, + 0.06816399627915004, + 0.05530668653207681, + 0.04906508335365652, + 0.0486409484213702, + 0.042904763081316494, + 0.05526780422531098, + 0.052258192891629605, + 0.03614453475840298, + 0.05321191623779511, + 0.058495515686600566, + 0.0490344364530544, + 0.03965678311604806, + 0.05174700631582355, + 0.04460362991885514, + 0.04864398598239692, + 0.03706217733658403, + 0.04023138824567625, + 0.04386998980170378, + 0.04992045307268201, + 0.05553611057707237, + 0.042155127544972165, + 0.06504664975407128, + 0.04785683020647604, + 0.04611281062249106, + 0.04285882988204943, + 0.05094584985009834, + 0.04484412596883621, + 0.04580422068510799, + 0.05826012172778541, + 0.055343648499562005, + 0.050254822813291515, + 0.05994998317129713, + 0.058891421555581934, + 0.044012898516968685, + 0.04923680386421548, + 0.03993156836385871, + 0.0358845300892338, + 0.06012094540507879, + 0.06290788758652525, + 0.044205233924335015, + 0.03583037420431373, + 0.04825955873129979, + 0.054180251810193356, + 0.04760499080283765, + 0.0437811766441498, + 0.044145554770392594, + 0.0555765519576011, + 0.049934897446132415, + 0.04872970242650682, + 0.03742265405573323, + 0.03474241755633976, + 0.04540414096724464, + 0.04072795862130953, + 0.04208407040178872, + 0.03794895568350401, + 0.04006447209893035, + 0.051348748243049656, + 0.03767328152022021, + 0.04746557211956246, + 0.06067445526995815, + 0.055058861509637645, + 0.05156144226348737, + 0.053109009351827066, + 0.057287352207092496, + 0.043208507062673304, + 0.03243844961505896, + 0.037906731848590655, + 0.047069389534548194, + 0.043857617255797475, + 0.04947561520459175, + 0.055249967246046555, + 0.03515229539794841, + 0.04215477425436693, + 0.06648452528841878, + 0.04265178406411677, + 0.054578913281480006, + 0.03654241173272295, + 0.048953494543584004, + 0.04742291896037469, + 0.06324650083949343, + 0.04914470693801089, + 0.04801567499907697, + 0.03988549892000551, + 0.05332357286882963, + 0.047375804018976175, + 0.05370521156922213, + 0.04578825274466908, + 0.059335351886337116, + 0.0428039540373632, + 0.040090076774157456, + 0.04368526920813591, + 0.03841780959966257, + 0.03620039127549334, + 0.0428400417632794, + 0.0546265444263923, + 0.048718745392132834, + 0.0369765246637241, + 0.03937160492994164, + 0.04426243224176914, + 0.0537701599920759, + 0.04578327121210688, + 0.0425012979807115, + 0.039695645006787274, + 0.05526186667052397, + 0.040110682294041626, + 0.04601126443777899, + 0.04256194684720701, + 0.0457970536693166, + 0.04689618065998812, + 0.04239939845881404, + 0.04513152995402943, + 0.05990613331070566, + 0.04125757566498379, + 0.05605678979189463, + 0.04959763436084829, + 0.04838954039173823, + 0.04786545564076041, + 0.04599662686479921, + 0.049455538091688976, + 0.04944573008064038, + 0.04055242907853441, + 0.04825407545091852, + 0.059515847068862544, + 0.061091976636533485, + 0.054994107592407686, + 0.0426349318552259, + 0.04329102080434317, + 0.04113478079437011, + 0.037180892540649074, + 0.035954959362192986, + 0.043899139584349746, + 0.057948941011026066, + 0.06757860835322367, + 0.04169760519111438, + 0.04448922355754548, + 0.042144018013517304, + 0.037287854148076824, + 0.04773483293993403, + 0.04775383484088414, + 0.05200598231519514, + 0.059047002002730616, + 0.052953738857446545, + 0.04622266621805177, + 0.03938612794921115, + 0.042101780084209124, + 0.06181392600239628, + 0.054291871095128515, + 0.051840253635106755, + 0.05384740039462167, + 0.053251074050185115, + 0.04006345362635703, + 0.06364793355764065, + 0.0464857491402962, + 0.047290830698043226, + 0.04631400399312913, + 0.045462391210801596, + 0.04203906496956101, + 0.04138218932175862, + 0.062425669101963316, + 0.040799750833081995, + 0.047338883885688486, + 0.04251055870054614, + 0.04698918192102758, + 0.036944048468342094, + 0.05734439357605771, + 0.05344404908088298, + 0.04109970729575912, + 0.04457816901546422, + 0.05806796234556815, + 0.04980682684802249, + 0.05408362179241901, + 0.04837992047609728, + 0.053113018381589126, + 0.04130227141865702, + 0.054255596779109835, + 0.05168473027644308, + 0.04226899920440337, + 0.051049777758840585, + 0.0389470980206883, + 0.047840999550941156, + 0.04510053656997917, + 0.04968170460064708, + 0.040425435042911774, + 0.06878661624812953, + 0.03887918152834854, + 0.04902033803765942, + 0.04843383661240512, + 0.07386380185223937, + 0.045705198992321436, + 0.05665667377655757, + 0.05082880163759385, + 0.048429087103657516, + 0.0437071065810053, + 0.04338188540898233, + 0.039734449666482555, + 0.07102822037635982, + 0.05741759723158843, + 0.03637022353706816, + 0.03814657388458158, + 0.056330964258302064, + 0.03925119414720808, + 0.04601654163077999, + 0.047671145056778774, + 0.041195335067937634, + 0.04946483445912427, + 0.05020944979623633, + 0.03571298274220292, + 0.04597099571140501, + 0.04468969073572056, + 0.035915247125565264, + 0.042811791469012046, + 0.058349797025750556, + 0.04596477815918578, + 0.052769321571505656, + 0.03730885359888619, + 0.04308650541034853, + 0.05392659712463201, + 0.03753256855924945, + 0.04499174520858641, + 0.04236816525713919, + 0.04868223037499513, + 0.04887127701201549, + 0.041864132079663906, + 0.05371205157910611, + 0.05241707965607122, + 0.05153745718312315, + 0.04566272166764794, + 0.049117252241433415, + 0.05005725782206036, + 0.05049077657757789, + 0.04048283715041154, + 0.05856264806372259, + 0.05164799134591465, + 0.04377400708114015, + 0.0399450350969828, + 0.044653278471347035, + 0.04155255549344088, + 0.0407450823212751, + 0.054110416952239476, + 0.06803377623072436, + 0.05352024874067877, + 0.05001794315777851, + 0.054043860942644226, + 0.044279343135082444, + 0.04460562862808357, + 0.04184621667879842, + 0.04328944850944636, + 0.046771285324445445, + 0.061282674962375376, + 0.04166356125602875, + 0.041734444132411896, + 0.0589513632099029, + 0.06330840638462719, + 0.043248897656031675, + 0.0453942640179068, + 0.04005590573412597, + 0.04615465334338391, + 0.04528574210384689, + 0.039603375919720935, + 0.044735059679512613, + 0.04518907729239167, + 0.04068637125179459, + 0.05972527301991484, + 0.047032540816702516, + 0.04218091004978907, + 0.05093902160902577, + 0.04041208667613572, + 0.03468330931536922, + 0.05106041666870246, + 0.04108466603940163, + 0.04754299530686069, + 0.04306386876345641, + 0.049299272512665554, + 0.05690116524305421, + 0.04148026995925036, + 0.05174534212992847, + 0.04220906064300738, + 0.0438742039560633, + 0.046142107383405837, + 0.040437993041242515, + 0.041089312593477395, + 0.04508476957042117, + 0.051229891878816436, + 0.05218491357370344, + 0.04297875624715028, + 0.047862133307392064, + 0.041892183120899436, + 0.04375903214123718, + 0.04490295268195692, + 0.04764725784698698, + 0.05767326743995693, + 0.050419090400836614, + 0.04294503112900047, + 0.060569018498760015, + 0.0510746841926402, + 0.03776776921960423, + 0.03803570892969716, + 0.0351445175102568, + 0.06437563834717686, + 0.05907050143883299, + 0.05364376202936839, + 0.03989989394753165, + 0.0470280099443995, + 0.04782088279335049, + 0.05061220067326675, + 0.05374674613254702, + 0.03797933892455538, + 0.04237457610113851, + 0.045037218758090906, + 0.05143638324484237, + 0.05010665149883496, + 0.04106282762437879, + 0.05095826909884336, + 0.0429504648726479, + 0.04656182908343431, + 0.04869726700957265, + 0.04272960468393564, + 0.04139897647447378, + 0.041337349297154, + 0.04253604729538405, + 0.04966939521181416, + 0.060469018558908724, + 0.0534671441317615, + 0.06265845353026477, + 0.0524454556797658, + 0.043019933270627676, + 0.04940303134709455, + 0.052009469601218425, + 0.042774797891204835, + 0.03861214490912722, + 0.03809715941639505, + 0.04631427804102319, + 0.054706883667517824, + 0.04241850583065179, + 0.05255607605764991, + 0.046781598429850954, + 0.04955142542832555, + 0.05176023752836593, + 0.05712634317502108, + 0.04229050987421566, + 0.0427361507552598, + 0.044281569683408774, + 0.05134523931617235, + 0.06225723028097367, + 0.0405642460378822, + 0.05195837692000081, + 0.05166091552071544, + 0.04443949575068034, + 0.04234996913660007, + 0.04534592579583411, + 0.04960549063305077, + 0.042142841283766004, + 0.042016961004775, + 0.04766259607717522, + 0.0447712070912775, + 0.05190945692274449, + 0.044454724648322064, + 0.038881835943932734, + 0.04942916078225155, + 0.055689667791574526, + 0.051749596435637105, + 0.05099689952040105, + 0.0509052217255895, + 0.04364974626015123, + 0.05447185408527654, + 0.048120005837403446, + 0.038437903731899516, + 0.071307566599044, + 0.05343964574137618, + 0.05528739081963561, + 0.060494443741161065, + 0.040257220103254214, + 0.05162858297296204, + 0.0424721578927322, + 0.042931708265973596, + 0.04958079477634969, + 0.055957598652260195, + 0.04884706101038645, + 0.054773344346059044, + 0.0530828727131479, + 0.03592268857201729, + 0.036923600981854425, + 0.044220525552746644, + 0.07252418244211564, + 0.06304989353253143, + 0.057261760413464195, + 0.042409078533132825, + 0.04583780713614388, + 0.04755484561979585, + 0.062189900926267125, + 0.04987229882041822, + 0.03614690674550928, + 0.05516923487008347, + 0.04055842173406077, + 0.0457340598457906, + 0.037676316957872054, + 0.04615935896225129, + 0.05249252331742938, + 0.045952156480937194, + 0.04438206567426491, + 0.04857174408898575, + 0.06048416454330738, + 0.042315804548374594, + 0.0631682139806002, + 0.03870604204646068, + 0.05202248103271975, + 0.03942358598316697, + 0.055503753728492464, + 0.04579782840608372, + 0.03710092013057254, + 0.039371185106384654, + 0.048862571828600085, + 0.04324471087334734, + 0.051017377643596616, + 0.05968459691938781, + 0.05236858524171953, + 0.035904636033202694, + 0.045489459020350176, + 0.04732962957302374, + 0.052434100312127446, + 0.0385589566256601, + 0.053260652840184886, + 0.03901368748387379, + 0.05806721526357061, + 0.043159463690590705, + 0.05944732043664209, + 0.05035018879725318, + 0.05992485353352012, + 0.046105914474083035, + 0.04669167780956316, + 0.04752354662175358, + 0.04513705304438322, + 0.03786922692625432, + 0.044053116623249455, + 0.04539615103218803, + 0.05877062867867689, + 0.06096582017448147, + 0.052493367988293425, + 0.05225853959379675, + 0.04360973136649633, + 0.03409651742332684, + 0.04484490443217185, + 0.04719938702993063, + 0.0502614413866207, + 0.06188801089918085, + 0.05060215547940485, + 0.05252712591936159, + 0.040734787809230066, + 0.046133056401160305, + 0.04027284006150872, + 0.036464860164599606, + 0.047947628176249875, + 0.032077891444023385, + 0.042476768520507975, + 0.046581681515286445, + 0.057830479124040386, + 0.04211444421185708, + 0.05393927085759225, + 0.04145312985445342, + 0.05151640271972396, + 0.0606992561640584, + 0.04354702225950365, + 0.04374875067103509, + 0.04530116183140185, + 0.043163014042474, + 0.0458853338505274, + 0.05180926678836645, + 0.042789313673671274, + 0.051388635523324545, + 0.0591371353730517, + 0.04486880989504099, + 0.045457984306329705, + 0.052129852685818025, + 0.04494328914011072, + 0.04794480608095702, + 0.05234175571546186, + 0.04326769550476652, + 0.04612975856431912, + 0.04568923738468719, + 0.05035150925275602, + 0.037893490523089615, + 0.04178080540917544, + 0.04579937048568951, + 0.04449520352039599, + 0.03774595311553712, + 0.04184069250017938, + 0.047013498169760484, + 0.03929292307999585, + 0.05706090758806041, + 0.06346827821681685, + 0.04151084727366958, + 0.039632117259005194, + 0.041722073631548263, + 0.04913323382626192, + 0.04400309183516552, + 0.0635210030010057, + 0.0395365202364234, + 0.04317358959222876, + 0.03609674458695301, + 0.0410452139927769, + 0.053015368125657485, + 0.054044250074795866, + 0.05841870765919327, + 0.051116645743904746, + 0.054489716114177175, + 0.053614206991542124, + 0.055111266174951455, + 0.04677091344178135, + 0.051318167057318065, + 0.03530259505557265, + 0.0636132075513976, + 0.04985663950324243, + 0.041728764120656486, + 0.050786132652658536, + 0.057442763115693435, + 0.056109438683155446, + 0.04427215854509694, + 0.06061414874630038, + 0.051473993062995146, + 0.039483698723807595, + 0.040180594038648404, + 0.047496506083670995, + 0.0443460830205602, + 0.04855366778317779, + 0.05136305250111818, + 0.046085355132538586, + 0.03576917745252533, + 0.04177003438915603, + 0.0492311734749448, + 0.04954993185594121, + 0.04151003396255189, + 0.042489562212637395, + 0.04535940887653741, + 0.049135735208989624, + 0.040002808099643725, + 0.04134955643512541, + 0.04891856405813082, + 0.04405792478803282, + 0.04243598400776126, + 0.05203354903867043, + 0.049071647830508665, + 0.037087714818666, + 0.04356346391030494, + 0.04602503826995956, + 0.05186860154831415, + 0.040121872280518694, + 0.04613052800157679, + 0.042840155629626786, + 0.04852028141220721, + 0.047469723380562184, + 0.05544929375132456, + 0.05314954885147157, + 0.06485037642369094, + 0.041445194997386886, + 0.03485398251515345, + 0.05055299330925472, + 0.04711538475528774, + 0.044682142394317066, + 0.04614262745705624, + 0.03984844668813279, + 0.038095777706007417, + 0.0523318543470598, + 0.04331607753528165, + 0.03984725105445821, + 0.06195198816015682, + 0.03767758215430729, + 0.03633065698774481, + 0.04294272527617346, + 0.04206672160076863, + 0.06083280235321385, + 0.0597565374816646, + 0.06190609838285134, + 0.0503544182595303, + 0.047233431511101674, + 0.04245508576979893, + 0.04297853767318754, + 0.04425888942435091, + 0.04533618513181651, + 0.03990787938653717, + 0.04535267545842936, + 0.05318542130562156, + 0.043242271360638566, + 0.042094046382572664, + 0.046156818362199994, + 0.04643804169466081, + 0.03959013743290822, + 0.04209410908158571, + 0.053569287448019025, + 0.038388644904548845, + 0.052209414721835996, + 0.05275523175862682, + 0.04842932246458344, + 0.04641655426086471, + 0.048392427702787455, + 0.053873010639453905, + 0.04839213459607269, + 0.049450477173900144, + 0.05734389333012098, + 0.0473927184445526, + 0.05361028901072635, + 0.048811062909346295, + 0.041885734107351406, + 0.0530754437954454, + 0.054562950402638845, + 0.03740475030304335, + 0.04874536175282303, + 0.06562623643240846, + 0.048380331496390615, + 0.05982891196804998, + 0.04337401037489754, + 0.03718184657468515, + 0.05206712481098971, + 0.03663004925865035, + 0.042823489117016215, + 0.04640865084114397, + 0.0458800366456041, + 0.04718814810753958, + 0.04320176600413606, + 0.04496392208816763, + 0.04328451530162753, + 0.040096912508597315, + 0.053369332091182345, + 0.0416931569387571, + 0.036325786853524424, + 0.03596581136761816, + 0.06511904035475395, + 0.04425187690866195, + 0.05954830613753539, + 0.04796876841166046, + 0.040597903503740956, + 0.04383696385088573, + 0.048605712961428724, + 0.0425924516578524, + 0.04485679343537951, + 0.041909542470013175, + 0.038203963017809726, + 0.04164181340199803, + 0.053809615823273135, + 0.05926243519132813, + 0.03902737531711751, + 0.0451737621539335, + 0.04299377363421573, + 0.0436813797053973, + 0.06416697881385713, + 0.05495832191950885, + 0.04554918831990486, + 0.046678714633033504, + 0.03765363994957512, + 0.052138459001740606, + 0.047101967975726196, + 0.0599404143368685, + 0.047753154177745075, + 0.040389664791917794, + 0.052914660826225146, + 0.04565511371969979, + 0.04081902425345063, + 0.05618109696320073, + 0.03964455670636187, + 0.04734944029067924, + 0.04635754477276196, + 0.051574430354380967, + 0.046181341534192635, + 0.047131203735008606, + 0.05778043955812573, + 0.047980837489451256, + 0.04376499083290692, + 0.04089874126269233, + 0.05076510758029347, + 0.04328407166896565, + 0.03986409619456367, + 0.048884296674577506, + 0.04750652131346371, + 0.04405388332371472, + 0.047938300063814665, + 0.03963076016795864, + 0.04126769967898762, + 0.053422146149702344, + 0.04087360090006835, + 0.04001816006790368, + 0.051039536317675015, + 0.04724638988818354, + 0.07872087092794017, + 0.05146782019903365, + 0.039384450486675, + 0.04175195733000211, + 0.04970599117453747, + 0.05037169293372726, + 0.043616181648144424, + 0.05592667168822124, + 0.047213860431384855, + 0.03897027080736036, + 0.05421664832713986, + 0.04180480662433703, + 0.057422216304466665, + 0.05951119369708523, + 0.045208059588263225, + 0.03633627240944095, + 0.06312784669850609, + 0.042188603173885314, + 0.056158935606527405, + 0.04224231562271555, + 0.04463254994523448, + 0.05194109170997958, + 0.05757820817694818, + 0.047637356079600186, + 0.05153797794591071, + 0.048076874469505614, + 0.04235533824219648, + 0.041014741635788256, + 0.04859901562754219, + 0.0487061441506125, + 0.0482803113403777, + 0.041692070575651316, + 0.045226311540808604, + 0.054910066412180346, + 0.05355544214815669, + 0.039681818129946526, + 0.048073775127074114, + 0.04224583716336943, + 0.0377279259903047, + 0.039539248776849, + 0.058910336384707745, + 0.04688122638322483, + 0.04426989926011692, + 0.04855904842682103, + 0.06782937694454802, + 0.04240072451903733, + 0.04238131174305265, + 0.04448546771056725, + 0.04372481730879885, + 0.043155683758980115, + 0.05026184123756179, + 0.0539530139625746, + 0.05127088356928871, + 0.03968722659163126, + 0.046197384151000165, + 0.05421008208948345, + 0.0400688132881562, + 0.03598650597117938, + 0.04603898089418024, + 0.04572008803698416, + 0.055437075307004265, + 0.05892401819529806, + 0.055908335928853393, + 0.06018571462581798, + 0.055169970707905705, + 0.0500683814299129, + 0.047380635110714116, + 0.043863127113122784, + 0.05370686962040081, + 0.039319429164372005, + 0.0377228140754641, + 0.03952405994984326, + 0.04418603706918616, + 0.042154402141707174, + 0.05283791889710271, + 0.053880602723207924, + 0.05358344884630411, + 0.048215039451487744, + 0.048529468459367314, + 0.05486094867050144, + 0.049693120809606924, + 0.05668452504275475, + 0.054789125512486964, + 0.03845444017706385, + 0.06098413312643316, + 0.051636692616400214, + 0.04496334003102778, + 0.052378659076775566, + 0.04824198003612476, + 0.05145415319636563, + 0.054017179291725684, + 0.05447708666321827, + 0.058541040924319436, + 0.048096601186132196, + 0.04266948434247068, + 0.038948444591691424, + 0.035930223560017426, + 0.046410231933622544, + 0.03899629316125748, + 0.0461141548150915, + 0.050960670534564684, + 0.045362460724497906, + 0.05158305550180053, + 0.043250241514661766, + 0.051415981209577535, + 0.050878639285108246, + 0.04109931939586153, + 0.037412807604545746, + 0.05270981889275557, + 0.05443358438975171, + 0.05065444789686431, + 0.046706848461010274, + 0.044768316211677164, + 0.058145982991822824, + 0.05606613324735765, + 0.04971232501891713, + 0.04813485601138178, + 0.04160594524996361, + 0.03815071770954348, + 0.04359140853697433, + 0.04652924403235874, + 0.0325712333074626, + 0.032862662758599434, + 0.04373077064046131, + 0.06134154096316166, + 0.04379223995496602, + 0.04332240448614413, + 0.050139190371773036, + 0.052699837977352074, + 0.04510889817034579, + 0.04265603304453653, + 0.04170673783897812, + 0.04232320849125619, + 0.055012423427822234, + 0.05768765126946847, + 0.04145229782767767, + 0.042975319907060806, + 0.03863173469245788, + 0.047639641312972866, + 0.04073139009842745, + 0.04525227598660606, + 0.045472481874754195, + 0.04080234358260814, + 0.048780412678197015, + 0.04399608277469789, + 0.05223524446768768, + 0.04353611474664202, + 0.050788737569875377, + 0.04905588011857364, + 0.047796451993849985, + 0.044064694056823214, + 0.0502835533243391, + 0.04802827675640787, + 0.043170815103076035, + 0.043419710583372115, + 0.06750223543273631, + 0.0448304740786056, + 0.04834751001795019, + 0.0446446983885732, + 0.041841729045400476, + 0.03869954577785803, + 0.05358985995604451, + 0.05114849612201566, + 0.04498253534919977, + 0.04213706892238771, + 0.05673741417529433, + 0.039684813612966344, + 0.04696330315459289, + 0.038819360080261475, + 0.052157322424820886, + 0.0385592840316499, + 0.061936025435744016, + 0.04081658311634346, + 0.05775323347283624, + 0.033863167408226494, + 0.04327102690030737, + 0.04848995838074313, + 0.04552871473763285, + 0.050905152503047855, + 0.06028276243166407, + 0.06959143179049204, + 0.06818714221188636, + 0.04593681657993174, + 0.044343236690030555, + 0.04416325438140827, + 0.04502918628894045, + 0.055878743324987136, + 0.03826397437090716, + 0.037433776484764335, + 0.04837991978905064, + 0.053679326329810574, + 0.04400068422035128, + 0.047903375310872506, + 0.05302210961596527, + 0.05158075219957251, + 0.0590032596669127, + 0.05481598497059894, + 0.050840180974237585, + 0.051206144481102736, + 0.0457612674252055, + 0.0520535116353953, + 0.060357454090476326, + 0.05232122851517069, + 0.04131326062434771, + 0.043110978784885345, + 0.04728089779747378, + 0.06050605523315937, + 0.049862160347666, + 0.05210363365224394, + 0.04529898753405146, + 0.04145537708619594, + 0.0502713322245568, + 0.06092071194711039, + 0.04593578555839125, + 0.04035370018606783, + 0.05747768141328604, + 0.039669672932793006, + 0.04748699214793891, + 0.05140791179428474, + 0.04681705964058138, + 0.04866653491108728, + 0.047176944799446036, + 0.0518531710584708, + 0.047513452753573375, + 0.04781197449671618, + 0.0463178535679858, + 0.05501333902324939, + 0.04037297173571076, + 0.04227359798945074, + 0.05068432139758612, + 0.04217234535951813, + 0.053873261304389845, + 0.03769485020034311, + 0.04571668433987295, + 0.059965571892247854, + 0.04477967896998907, + 0.05061780825137537, + 0.050865428194936474, + 0.049676823005948, + 0.03471455729980282, + 0.04881759695823563, + 0.04331804939129366, + 0.04383039360684025, + 0.04458742320290588, + 0.033349967321806194, + 0.04874238260034749, + 0.040627953474829503, + 0.05601809011388244, + 0.04145198100039625, + 0.04168607384032599, + 0.05145595474894216, + 0.04207000022569021, + 0.04432292924743476, + 0.037683815698773916, + 0.047214091418078995, + 0.049321808779799754, + 0.04004524372694192, + 0.05110818647063024, + 0.048160791287983874, + 0.051841613017516545, + 0.040905953023739006, + 0.046979197731955934, + 0.036763702395623085, + 0.05011022747242662, + 0.048919309193721644, + 0.05886873087668726, + 0.0531091064752372, + 0.05591637949231668, + 0.03793043780924444, + 0.05604501489812702, + 0.07162725466545525, + 0.04268844853772711, + 0.04536482773032176, + 0.04740415653950028, + 0.050340229036270334, + 0.045057785620576475, + 0.0818342625842103, + 0.045569223418133256, + 0.05564874976916661, + 0.03678853313838607, + 0.036245520978249846, + 0.04896679193169422, + 0.04457890551048319, + 0.04319916278093405, + 0.059720019649775115, + 0.055417844519178104, + 0.04732189441029554, + 0.04420155550435306, + 0.029096319160992236, + 0.06208854205434892, + 0.0459157984459185, + 0.042799917097746366, + 0.04406567255005114, + 0.04468881824764346, + 0.042512396180502204, + 0.041962118537991235, + 0.06491165263150006, + 0.04236343860064507, + 0.04899504026918072, + 0.044141462020243785, + 0.051624142734435385, + 0.0461123626867594, + 0.04129345357020314, + 0.05171161207474463, + 0.04308567578493991, + 0.04193404064408214, + 0.05531320674713911, + 0.055308995860212457, + 0.044767355042643404, + 0.04006534216380894, + 0.04181327163733568, + 0.044590563969308654, + 0.04897659711793416, + 0.0408296207735394, + 0.04715645718569236, + 0.03283428867428797, + 0.05155255775634146, + 0.05851603096053927, + 0.04240276758547011, + 0.04241478517677474, + 0.04739231735348431, + 0.05526905721733836, + 0.03963712456496661, + 0.044746979038767336, + 0.03171031749983691, + 0.04028846663782885, + 0.04320739148638104, + 0.03606757444766932, + 0.054998023925345516, + 0.06525680593468175, + 0.05109146451704712, + 0.049308594898971554, + 0.05222111134469815, + 0.05666833446192673, + 0.04609523655796762, + 0.03493532733209019, + 0.048037573659708975, + 0.046189360358275755, + 0.03862532391086745, + 0.04897361586071788, + 0.041975677986340776, + 0.047378272499206155, + 0.04644432493676176, + 0.04378900150378764, + 0.03964277276985909, + 0.0546597531719603, + 0.05283287716332674, + 0.04072723374031526, + 0.054143959342479835, + 0.05482946408652945, + 0.04788437712541737, + 0.04416732580808978, + 0.04138650708270988, + 0.05111558203237939, + 0.03954169694023027, + 0.047183978774738816, + 0.049469391515843106, + 0.0463372395300232, + 0.050847631750277046, + 0.05409065751016956, + 0.0586202883505748, + 0.059841164384649696, + 0.0573567350578902, + 0.04024402794128604, + 0.03653121351947569, + 0.04503340162855748, + 0.048330458152609584, + 0.041823408624071544, + 0.041249985956970756, + 0.046339056516385584, + 0.045644594206722594, + 0.04544889056700632, + 0.044642514753932855, + 0.04222547788341268, + 0.04556861133699486, + 0.050230632161562094, + 0.04671727110500054, + 0.042004964743588384, + 0.046863338681517284, + 0.0512590869418749, + 0.043912289689434926, + 0.04782460352297594, + 0.05648973005418659, + 0.05514448520406959, + 0.05424114012033207, + 0.05037449285563029, + 0.03953290405493157, + 0.05276053967283729, + 0.04867706019698571, + 0.042404063202491384, + 0.0518112202405249, + 0.07351847030958045, + 0.05795095729528178, + 0.039617050636444974, + 0.04751301001326242, + 0.0426249633863833, + 0.057730624973608806, + 0.04305479332894394, + 0.06158762778814898, + 0.05205933135975775, + 0.050011086214229825, + 0.039328698476039016, + 0.04832460281875882, + 0.03890417153161731, + 0.045187429777484495, + 0.035377067685521665, + 0.036441159255236916, + 0.033287346981566414, + 0.04857514080590033, + 0.0373860465747432, + 0.04461785675995728, + 0.06534450924910869, + 0.05817610418446175, + 0.039309468402333854, + 0.04881491048874067, + 0.0501406770819487, + 0.04366261567524742, + 0.03962438665043291, + 0.038504298592026566, + 0.036960615906021704, + 0.0440007459605272, + 0.0518126773948536, + 0.047147445007131195, + 0.0491066316428896, + 0.05457603035531981, + 0.040726888013430704, + 0.04642801445752778, + 0.04064944367235535, + 0.0537420629166828, + 0.04717481795258973, + 0.052559284533338066, + 0.037509315818192036, + 0.03594249530619331, + 0.04852144421709487, + 0.03700225457007138, + 0.0598797736042785, + 0.04768392130174006, + 0.03997623677444171, + 0.05438761425391608, + 0.05364978740800303, + 0.05455205623859592, + 0.03995065298442489, + 0.051696521960951446, + 0.042551025290139585, + 0.05578002309894003, + 0.054483788940253026, + 0.050029670705636686, + 0.04501299614460045, + 0.04964868351845168, + 0.03807416866576636, + 0.041129133858594444, + 0.05538877791640611, + 0.045659356219708284, + 0.048568688153899565, + 0.04484860177452988, + 0.04320604284370225, + 0.05279631988093379, + 0.04149142011006662, + 0.04900831816516284, + 0.05708816445098988, + 0.05207588321782017, + 0.0479033675760891, + 0.042443616957772434, + 0.04804963652575899, + 0.03784393127954197, + 0.03380718056259669, + 0.05126079385467862, + 0.047580937331351776, + 0.059264004624616645, + 0.046374445530072285, + 0.04524101008740931, + 0.04715281058820949, + 0.04231484609874291, + 0.05811946135877917, + 0.05317472612310807, + 0.045843907823822, + 0.03988400314831911, + 0.055882782226821914, + 0.05280071477006304, + 0.046621024434681774, + 0.04245347690288645, + 0.052977205270106575, + 0.03924449710844434, + 0.0393399424212724, + 0.03443626809365973, + 0.03502507695144504, + 0.043369201869287416, + 0.04307593787336844, + 0.04391113732666586, + 0.04879074694924154, + 0.05061066891778716, + 0.04632286187629093, + 0.055152491089247094, + 0.049648987253572634, + 0.054027507875860276, + 0.0419037608553205, + 0.058416473973628695, + 0.04990776398879024, + 0.04699967750296286, + 0.04782682840895093, + 0.04376948989206064, + 0.045348093986190746, + 0.053801336235871966, + 0.0449545294850091, + 0.04772235211253568, + 0.056459865528724694, + 0.05197543227896106, + 0.049780892566068186, + 0.0476005604909007, + 0.05801470181836311, + 0.041422803156368274, + 0.0464719711519654, + 0.04706433195901819, + 0.042068855224927634, + 0.04880113395701836, + 0.04546477045017904, + 0.04188038719097722, + 0.046876290444215866, + 0.06814843637891012, + 0.06308112261564873, + 0.03346957462266734, + 0.048408479634437875, + 0.051056424146225805, + 0.042776709228188145, + 0.04574643475667316, + 0.05243464504856569, + 0.04552431737054825, + 0.04617139150928987, + 0.044050345761499375, + 0.050658200631927996, + 0.045068638331492016, + 0.045191847491113754, + 0.04100824146224693, + 0.05002194746858699, + 0.03956852214905026, + 0.047983963888401385, + 0.04755684176074789, + 0.05003821801895519, + 0.04383554519788138, + 0.04271441114444213, + 0.045848392133951726, + 0.04868339791479809, + 0.05875996038338914, + 0.040027469913880794, + 0.05530115976682298, + 0.040008516992999406, + 0.04647831841517939, + 0.04284012377838727, + 0.056378422273811464, + 0.04895548435575598, + 0.05800964691980324, + 0.056458374596177106, + 0.05329150235685791, + 0.034804335878234435, + 0.03604875344640818, + 0.052324067498759966, + 0.05829067781502882, + 0.05343426022831406, + 0.054429792717840264, + 0.05185169138374399, + 0.04621895021677027, + 0.0424343320899002, + 0.04270144683646594, + 0.044811072087288344, + 0.03975414702341804, + 0.060321348871542474, + 0.062188886349407016, + 0.05316783437670303, + 0.0469324297079959, + 0.04386338043922143, + 0.0399620349857233, + 0.047727727773459225, + 0.055681489872650654, + 0.03963634369699489, + 0.035530001587605144, + 0.03977922293149328, + 0.04743587894056533, + 0.05686321143753964, + 0.0362595342916453, + 0.03226780053503073, + 0.03668507890957247, + 0.03884617880695247, + 0.0417286604471141, + 0.046782952111278205, + 0.052600585583031254, + 0.050905984680423594, + 0.04482823389170031, + 0.04416412245387271, + 0.057859881168745075, + 0.04080856806522785, + 0.041400222749495605, + 0.04276920323950075, + 0.05384840978037852, + 0.05719697723220615, + 0.050647827060583316, + 0.043648591645797305, + 0.045652288139089114, + 0.03768754959079528, + 0.038946717803849375, + 0.05207388747765155, + 0.04097055804986397, + 0.06718542076936783, + 0.06265172915963284, + 0.04257432441210321, + 0.046283957778383504, + 0.03903037889335624, + 0.038467685584645826, + 0.048592088800688965, + 0.04152239293765399, + 0.049941625078178266, + 0.04817249388092849, + 0.04755142052344951, + 0.05652114955445744, + 0.059668987597279725, + 0.04520103001034079, + 0.06316511305409578, + 0.03749841590780947, + 0.04001510822628298, + 0.040869155992942656, + 0.05282984529862982, + 0.043965078727155375, + 0.054651743608188516, + 0.0475613095483078, + 0.046548680415743005, + 0.048238953522900696, + 0.04342409377580147, + 0.05373821400305557, + 0.047649333177112126, + 0.040124434297312946, + 0.04595425753621182, + 0.0496937172572152, + 0.05026414674883173, + 0.04436712254718806, + 0.04154937052745358, + 0.05376138639857075, + 0.0514670177893585, + 0.050277284411057714, + 0.04333841420581031, + 0.0375843396521253, + 0.042023616873946526, + 0.045413749680602016, + 0.04240677669562268, + 0.048103957421182016, + 0.049110439667554504, + 0.07342188611377506, + 0.05051990894130275, + 0.041701280508987394, + 0.03912389262457773, + 0.04845235063840312, + 0.051098307603090004, + 0.04214539408954141, + 0.047603608863165184, + 0.039068560160793554, + 0.052684332187637815, + 0.06899586611579905, + 0.04307906535861538, + 0.053101335347050665, + 0.054377138717241744, + 0.0579530988574614, + 0.034621467169133203, + 0.041933446296837554, + 0.05543145350529464, + 0.048414328929844215, + 0.037800466240553436, + 0.03761081763469691, + 0.03586655224462986, + 0.04599577053661139, + 0.043269189217727565, + 0.05004842081562416, + 0.048213799059076065, + 0.044808746178518245, + 0.046508550396902146, + 0.04918275218753536, + 0.042320057123290566, + 0.0452066730850225, + 0.049077813094329445, + 0.04315724016418025, + 0.05755974011957949, + 0.04707545396923496, + 0.05619319978024808, + 0.058854512224083375, + 0.04557177560145316, + 0.05491193485961431, + 0.04186215915814989, + 0.04316845956490753, + 0.0427869177575949, + 0.05425398828702198, + 0.03993298879011338, + 0.04034165008696429, + 0.03703527236141329, + 0.04759010967358234, + 0.05087609113138712, + 0.05740887074597257, + 0.03710688521003685, + 0.036480745500301205, + 0.07143324201755649, + 0.046171753611725715, + 0.04780842519402217, + 0.04662794979383502, + 0.04383538948327119, + 0.060098296500585145, + 0.04236789355944926, + 0.04547899230952185, + 0.042056024625685896, + 0.03385617765763126, + 0.04256911195601949, + 0.05853938087820285, + 0.059334575235341566, + 0.04253679678565894, + 0.05787105447460437, + 0.04462496396715491, + 0.04916934301356381, + 0.03984752977859432, + 0.052800323686416316, + 0.06277886820238089, + 0.04749359461362632, + 0.04402830180693767, + 0.04357469403803744, + 0.05454812708805026, + 0.04536010509179694, + 0.03969700598330943, + 0.03820782838269205, + 0.04021905288626245, + 0.04612273641390754, + 0.045448548988760086, + 0.049457397695816745, + 0.04153116157428397, + 0.047970631311535596, + 0.04421847924000604, + 0.04707488371796652, + 0.05457827597504357, + 0.04246094109472895, + 0.050041787920864805, + 0.03961676193248711, + 0.044329096594963785, + 0.04748121552939527, + 0.04818987023639576, + 0.0429830984221179, + 0.05848290506648689, + 0.06324002790888911, + 0.060151781981798214, + 0.03776642110495173, + 0.045967810009579765, + 0.0417180000844133, + 0.04698645298564145, + 0.05446685875288798, + 0.050518722535617344, + 0.04709116815497512, + 0.04059668517082562, + 0.04278696807873755, + 0.038771690117863106, + 0.058408091255194236, + 0.051854321187114034, + 0.041389738278396496, + 0.0414045111539502, + 0.04602447000397456, + 0.05212196838589387, + 0.05802720926169386, + 0.055537555864391866, + 0.03957805205510344, + 0.04348653464900419, + 0.06056878138713554, + 0.03885186493288552, + 0.06659607022860403, + 0.06376065110723682, + 0.04958530562370161, + 0.03785705318586447, + 0.042629540642062355, + 0.050829291782159586, + 0.04242135667415956, + 0.035624288872137526, + 0.03486284598126877, + 0.043229691344907936, + 0.03962601688969748, + 0.046586555453616035, + 0.0431728536565235, + 0.050819096257760606, + 0.041528706043202177, + 0.04281816068252644, + 0.04345755249059736, + 0.04296303772367337, + 0.054043482716822196, + 0.05082290012318424, + 0.04990326076414976, + 0.05253909147810553, + 0.04816349834743901, + 0.05333851918016751, + 0.046173040004330805, + 0.048629683277605654, + 0.057443346291472415, + 0.045713748695272574, + 0.044531845150989374, + 0.04000796784306788, + 0.047475751767817376, + 0.040183410461153736, + 0.05201366978632944, + 0.040991723901464015, + 0.038886187512442674, + 0.0540381406698644, + 0.04696660178825372, + 0.049702636929249845, + 0.05728076323191601, + 0.043613067590398784, + 0.041791959241339646, + 0.042571907441141324, + 0.05433146304080784, + 0.045512980897605596, + 0.048098213620482534, + 0.04676730307219026, + 0.04803511409153132, + 0.04756749906128718, + 0.04822622646787255, + 0.0468759696702064, + 0.04808780287139746, + 0.04483366753760084, + 0.04068521959342137, + 0.03607307343353733, + 0.037176132939414304, + 0.03643293579956527, + 0.04317034116405468, + 0.044775685149546815, + 0.04779489942619532, + 0.034634705976283514, + 0.03961448542550822, + 0.04943386273578255, + 0.0393954493287582, + 0.05385609900008626, + 0.05781208965737658, + 0.056383609920567096, + 0.06733307953204598, + 0.04378781506430695, + 0.04162379305762964, + 0.05718436881099791, + 0.038746411116955974, + 0.04034378725217759, + 0.04172139438838637, + 0.04283392494681736, + 0.04115305325754252, + 0.0566106206457833, + 0.05276395027926207, + 0.03790231339302127, + 0.04382374130641925, + 0.04234680122978567, + 0.0427068752501911, + 0.03478031389923752, + 0.04320416706319069, + 0.04769552580388021, + 0.04020291030783999, + 0.04463330841869935, + 0.04740532685882827, + 0.06615818869745524, + 0.045033994224361426, + 0.053773978912408614, + 0.04168467673426065, + 0.04459055421481296, + 0.043947609405072266, + 0.047365595613482754, + 0.04010085005646784, + 0.052649982087447714, + 0.05650805166895837, + 0.05558348664902515, + 0.050718019904865894, + 0.0358352124776362, + 0.0691011043332214, + 0.04354643370779872, + 0.037264316211077134, + 0.05132880947784023, + 0.04984356145797763, + 0.04889705275406774, + 0.04365196656865384, + 0.04685352120100041, + 0.0381436860770351, + 0.04653699241081293, + 0.045161560709366375, + 0.046556634053860166, + 0.042428284020693506, + 0.04305232050101474, + 0.035492599974333336, + 0.05229040717735865, + 0.0609245113260605, + 0.05081353937825536, + 0.04978476596754266, + 0.052019667680699815, + 0.04593511342109403, + 0.055690575642629477, + 0.06802795792800191, + 0.04763889076060407, + 0.050221607612931235, + 0.047549963141262995, + 0.04462054302253029, + 0.04832866156663236, + 0.05006386344249957, + 0.03947327096808553, + 0.04412929223939517, + 0.03826492897981435, + 0.048708708101267345, + 0.039301711525541246, + 0.05795384238470528, + 0.04350952118462732, + 0.04313465370974251, + 0.047344341022802064, + 0.02895527945710968, + 0.05012104573916892, + 0.04064971614579036, + 0.043554980952457474, + 0.04342538616402056, + 0.06069549955220184, + 0.04101154213438987, + 0.052813433995793614, + 0.044896409563158754, + 0.04392748262203777, + 0.043381893348706596, + 0.05611391987906342, + 0.04971181023609717, + 0.047407443659053604, + 0.04496590472772061, + 0.04232022779663042, + 0.04266197253495465, + 0.043702596653372415, + 0.06195027936241185, + 0.04476072829849272, + 0.04320637483711192, + 0.04943212687989807, + 0.05045602384823132, + 0.03983742183997396, + 0.04556357082911136, + 0.03394319703400905, + 0.054466830644636054, + 0.045704859291934984, + 0.04944344941359558, + 0.06637690119609269, + 0.05631315668608422, + 0.039042217955022475, + 0.06262841899061508, + 0.04839241392896017, + 0.051438692179100826, + 0.055944404490599786, + 0.053309789640660986, + 0.057673528337859256, + 0.044236131350610323, + 0.042340284736553054, + 0.0481548006312482, + 0.04551407192254179, + 0.04311445075676378, + 0.05889096268721056, + 0.04725901207521717, + 0.03887433480535795, + 0.03745054044042264, + 0.03876010737958844, + 0.04806403286720149, + 0.04784840648567245, + 0.04398874062508023, + 0.06970801288379816, + 0.05044488201918893, + 0.046335477243356474, + 0.05070270260964318, + 0.05131652591297667, + 0.045288619669164504, + 0.03694980825772363, + 0.04822956090534344, + 0.051559633359316896, + 0.04113234129273838, + 0.03221294267044953, + 0.04913092982589938, + 0.044949943747017454, + 0.039216213585682023, + 0.053193155433592314, + 0.043936343072435796, + 0.04833187531145051, + 0.052724190717725626, + 0.05992629246639184, + 0.055019065384330906, + 0.0371054864796183, + 0.04467916461612326, + 0.0344582949373771, + 0.04555744669904816, + 0.040868027295182546, + 0.044715625659167695, + 0.047646254731025156, + 0.04584726816481912, + 0.037911949016434326, + 0.042014855339422764, + 0.046037182142312824, + 0.04837062059325295, + 0.04478533094423136, + 0.04059160051015845, + 0.048226792183349416, + 0.06094579243767329, + 0.048763657591410374, + 0.04584360913862895, + 0.04456200122113401, + 0.04443173051355753, + 0.04482393059744485, + 0.0412758809207148, + 0.038214301082371144, + 0.040868680309474575, + 0.04768208290307887, + 0.035691463023860455, + 0.05178933517897373, + 0.053535193514220876, + 0.05953774177264575, + 0.05127373830062708, + 0.0553436738366711, + 0.05292438787908326, + 0.04495984825624459, + 0.05186431483119394, + 0.04853904374178874, + 0.054017401230058576, + 0.046188772664127006, + 0.041049543496620225, + 0.045479951134974377, + 0.0491395177382786, + 0.04056629370425686, + 0.04043651292746273, + 0.038670026115684236, + 0.042635932814339694, + 0.041997044895606, + 0.03722599198593904, + 0.044892645245327774, + 0.03553963565165382, + 0.04171219416904496, + 0.05635673061483166, + 0.043055418044807746, + 0.04091308803566574, + 0.06915110255928536, + 0.033387030653460326, + 0.04074714347864019, + 0.04393940287567617, + 0.0478508620634287, + 0.05766159183436655, + 0.05896192226552196, + 0.04418669960027721, + 0.05410657658372688, + 0.04653227376138841, + 0.04244437354209651, + 0.0531816485665114, + 0.06281558833353677, + 0.05582436062132624, + 0.03845653692797773, + 0.03647300355084543, + 0.033174733301050474, + 0.043538773395463, + 0.04842961199717508, + 0.04025585093606783, + 0.04991103346363548, + 0.051390326768216525, + 0.04972124436269242, + 0.042139200426519245, + 0.04572321516802441, + 0.03365403862682921, + 0.045954873055688024, + 0.05245324990818975, + 0.04596106431919717, + 0.042629535786222306, + 0.041931821465635295, + 0.040207342758421145, + 0.0493015088077467, + 0.046921199892420995, + 0.04978546683564788, + 0.04311597703101162, + 0.04982446005749558, + 0.048381106908011964, + 0.03274505507893477, + 0.052073634008606755, + 0.044557708690810466, + 0.036034141355584755, + 0.04086606691414097, + 0.04596730416687251, + 0.04660657588578372, + 0.037589564412899325, + 0.04102258298354943, + 0.04731917774013614, + 0.04114095772863538, + 0.05030476728708237, + 0.03572251138171572, + 0.035822222359354075, + 0.05326677260249138, + 0.04320624883519869, + 0.05119563268474311, + 0.03901052206628479, + 0.052854326077795166, + 0.04048555671208205, + 0.05626478735659365, + 0.042067978698926076, + 0.04339921842041638, + 0.04761457373320175, + 0.0587325315996974, + 0.04420741540020388, + 0.04814779304305057, + 0.04311674388799978, + 0.04393137619576595, + 0.046551218307872566, + 0.051576481908451204, + 0.04174826407242035, + 0.05810478544696496, + 0.05705744135586585, + 0.04932281608612712, + 0.043954130143012374, + 0.038572250835695925, + 0.040816283663202, + 0.040764772619625536, + 0.042939085223993, + 0.049466979949851886, + 0.046811211832486675, + 0.046506732766621206, + 0.04260242630223851, + 0.042318195322226734, + 0.05567702307214208, + 0.05262298435547686, + 0.03188828206955313, + 0.03978383943778033, + 0.047582783036229925, + 0.046661071355849904, + 0.04869941914298565, + 0.043066341706746676, + 0.04755297697769721, + 0.037068720185171204, + 0.04736707026655145, + 0.03980634063508048, + 0.04063319312577597, + 0.0539668488868177, + 0.049726956171302496, + 0.04960618011452435, + 0.058577637044240904, + 0.050454549626685434, + 0.059802899840157804, + 0.04965850605169161, + 0.049055814533162254, + 0.03810699736371297, + 0.047147280537714054, + 0.06688977206355642, + 0.043738088468551005, + 0.05327470227775397, + 0.04123199296430322, + 0.04537312125312427, + 0.0375687489758537, + 0.03956139358206912, + 0.0479144306636209, + 0.04890708682366801, + 0.0474217686039473, + 0.048250249977902754, + 0.04093925788196276, + 0.039192710134508445, + 0.057232295286085436, + 0.04872182099351212, + 0.05541720547369433, + 0.0392944103586913, + 0.051248632333813715, + 0.04986250083461093, + 0.03027053208152394, + 0.05303828574823796, + 0.04331187269177876, + 0.04792756337068704, + 0.06090425287985099, + 0.0440381324857885, + 0.0577889916213746, + 0.056328937298751915, + 0.05207401761935362, + 0.05244664628255006, + 0.044106021730623814, + 0.044642202299682764, + 0.05471533611323071, + 0.04379097772503599, + 0.056734494733084395, + 0.03923056750809534, + 0.05064042598691826, + 0.03688407126939641, + 0.043984028772754216, + 0.04426330679156061, + 0.05428976618014118, + 0.054545794417901215, + 0.04205977839645941, + 0.04659984269713094, + 0.062387977919173714, + 0.04839602455069122, + 0.046214605084265656, + 0.05998242953876397, + 0.04984495859819322, + 0.05932919568255094, + 0.04576660150258616, + 0.05077695026709903, + 0.046752952810349496, + 0.04260662803045239, + 0.04415401840992807, + 0.05356302444406151, + 0.05508478889490943, + 0.05046742830832398, + 0.03977661602564156, + 0.0585747940176164, + 0.05503254927038028, + 0.061394148896225284, + 0.04027863734454064, + 0.04139624573078576, + 0.04164504964578591, + 0.05878817200851311, + 0.04889538590414371, + 0.04331206665883263, + 0.05479801554263923, + 0.048697681234648536, + 0.0414438256652622, + 0.03958289115077519, + 0.050697509055706684, + 0.04456143953450452, + 0.04490574255992236, + 0.04316791251476556, + 0.039223401413315054, + 0.05732508566094362, + 0.03705087680692901, + 0.0563909420781552, + 0.03742823492727305, + 0.04781165419738209, + 0.03801231116843623, + 0.043119699693176534, + 0.03859744967067132, + 0.04125407052982773, + 0.039716104651686346, + 0.03905167746014161, + 0.04472422749996788, + 0.05633091954423612, + 0.03669807900302923, + 0.05204179283455609, + 0.049451775517172836, + 0.04736052240531196, + 0.051496176679568406, + 0.0547210956248523, + 0.048444974884307386, + 0.042585093562136606, + 0.05487819709396173, + 0.05921453725224182, + 0.0413601763616804, + 0.044036546686150715, + 0.05485868453469848, + 0.03858985105473032, + 0.05238239683609914, + 0.05487344981792322, + 0.043652177593480154, + 0.04887710673565377, + 0.04924063065297979, + 0.040596578671411955, + 0.04735464701052198, + 0.03483056072691102, + 0.048782093052839016, + 0.03925769916887851, + 0.04569520405897204, + 0.06025513519711249, + 0.050872058901246006, + 0.06422766710358423, + 0.04085572123072581, + 0.04758158872399014, + 0.05393964759731072, + 0.039005977758929014, + 0.03711929965974829, + 0.04365923538692183, + 0.04592104633850724, + 0.06767462148821742, + 0.05055020180254446, + 0.04439649334506054, + 0.04540869981466672, + 0.05755280803186762, + 0.043688197244167476, + 0.04456276041510086, + 0.044783496784870695, + 0.0497781501618436, + 0.05975916238973553, + 0.05826226560244549, + 0.04691905910777055, + 0.04972271026835798, + 0.04209527156522912, + 0.04885730326709109, + 0.049201608018348296, + 0.04563050152372284, + 0.050443508589655905, + 0.040435822079059096, + 0.05224421771123568, + 0.04499269961526134, + 0.04988446078168221, + 0.05499401981346866, + 0.0432632444656728, + 0.04677347125338999, + 0.05322958681326635, + 0.04360052340085487, + 0.034672386274519414, + 0.04015962267487091, + 0.04360815726937813, + 0.060933577606861716, + 0.03363977543192442, + 0.03809941293145279, + 0.05724312562266459, + 0.043896956921190944, + 0.040331012977590716, + 0.04199527207350154, + 0.06483347985028419, + 0.04503718786412644, + 0.04162252924816277, + 0.058114263954144166, + 0.0535732891146476, + 0.05009861208630365, + 0.04454752922678037, + 0.05329582000756061, + 0.045591913098006275, + 0.03729931875050725, + 0.051146348733660495, + 0.0442009567559974, + 0.05087065323530865, + 0.05174772986672679, + 0.040756624034148335, + 0.058253452186189124, + 0.04594838240412977, + 0.05402850089384014, + 0.036587163871228394, + 0.040020055507853605, + 0.03865338486841971, + 0.03614936354835109, + 0.059642479682866824, + 0.0435595276688751, + 0.05031453138299479, + 0.04793624739121795, + 0.043069416531546806, + 0.04850037693710269, + 0.04273811986814702, + 0.0515650325496523, + 0.05310361292690887, + 0.05824615439296006, + 0.05448854931992405, + 0.04245419743736597, + 0.05191345151470423, + 0.04923291932006828, + 0.05310085708428014, + 0.04439610668864874, + 0.047685070158075216, + 0.034107328226699485, + 0.039153935242496454, + 0.05074936620332517, + 0.03862747505775575, + 0.05026206504123408, + 0.048822106364828005, + 0.048946016069305036, + 0.05261791893806042, + 0.04507938371070955, + 0.0355335937988135, + 0.05832988998779938, + 0.06300010036776553, + 0.057096222113396336, + 0.06004269344575779, + 0.0526065949870298, + 0.06170915286186513, + 0.07497981456980704, + 0.04511037126200552, + 0.04203364931651651, + 0.04213593530522763, + 0.053690122117704596, + 0.04595263136705191, + 0.04766372634276327, + 0.048474229745481656, + 0.040402790542550714, + 0.0489702325150935, + 0.03526740426314887, + 0.042485527326268265, + 0.044839893739992275, + 0.043748381741012414, + 0.061121124921883326, + 0.05034342717711338, + 0.049050216267844796, + 0.04265839567674951, + 0.03844956604106709, + 0.041887975194459345, + 0.044246200462339284, + 0.04421377211632237, + 0.05145988807491923, + 0.05192944151527223, + 0.05158531165467577, + 0.0427732255886368, + 0.04573732626170175, + 0.0480902900333864, + 0.04242776408411627, + 0.05259934361516752, + 0.05519306058590538, + 0.0503323081982618, + 0.0460534635092192, + 0.035527556466016484, + 0.04363386755587687, + 0.041295623409519144, + 0.049737259647214864, + 0.051790859531255604, + 0.048949726956603996, + 0.05437121842585995, + 0.0379206710443059, + 0.05283970201556443, + 0.035248687473629706, + 0.04919994564777131, + 0.05909264921291375, + 0.06062768453897698, + 0.0537378508491099, + 0.05134808222233754, + 0.04911607786260417, + 0.059004403325100666, + 0.04014054513140032, + 0.06315671488415323, + 0.05029448575868563, + 0.0419919350938549, + 0.03960010751212723, + 0.041323830157500824, + 0.03969567147674751, + 0.05636728133932119, + 0.03921230326797909, + 0.03807523661663324, + 0.04471591478465005, + 0.049716740610677435, + 0.04127262064710519, + 0.04384814577741178, + 0.047663284165328224, + 0.05440034093855412, + 0.048948717093456356, + 0.04978981902327082, + 0.06031474537642969, + 0.04408882358017441, + 0.045029059333145015, + 0.04027613317239365, + 0.051478188125033596, + 0.07088228218462596, + 0.04865071056439313, + 0.04646061041098109, + 0.041725473326580255, + 0.04704273345058019, + 0.050650568472230845, + 0.05343077625340048, + 0.047454942314675265, + 0.05109941343308269, + 0.04883892757892736, + 0.037239027717985616, + 0.04966966596017734, + 0.0483104055037849, + 0.0518527752263967, + 0.0564037165892081, + 0.046067206758654784, + 0.04815444821511803, + 0.05557594525752758, + 0.05075565919503578, + 0.04788746837844182, + 0.04646737325893179, + 0.05564686665362568, + 0.04159513792729597, + 0.048849168093530244, + 0.04350686431171286, + 0.047473158034173624, + 0.04266462771868374, + 0.03769511579848705, + 0.03847953121720809, + 0.048198585224743504, + 0.041189067285905386, + 0.04861663672003891, + 0.05317129606644254, + 0.05311544740051457, + 0.05337031985442963, + 0.03505890148033174, + 0.040145085064208594, + 0.04098119658127742, + 0.06647252099409412, + 0.03447762558674137, + 0.04877794335321492, + 0.0457156467751063, + 0.05259648918413829, + 0.05504233154881843, + 0.046912715174814934, + 0.036352925485358296, + 0.04766698941808861, + 0.051851855695787534, + 0.04910416492375133, + 0.042535959761434386, + 0.04597138786305506, + 0.0506212482100797, + 0.05920485508706618, + 0.05072223638349892, + 0.046150153086971735, + 0.05037448332991602, + 0.04241717382688233, + 0.04532922361413369, + 0.04524303849237886, + 0.05103105323849452, + 0.044290540787893684, + 0.037978830036974956, + 0.050402488615785036, + 0.050124012134993505, + 0.03527156559761014, + 0.041498235777176984, + 0.04459232285844818, + 0.05988009562991212, + 0.05294519735329011, + 0.04329302325323838, + 0.03555382740533033, + 0.05873367668632473, + 0.04745635603624988, + 0.035023360251302815, + 0.03881803104004363, + 0.05766552636527126, + 0.04193325942676023, + 0.05068244608411913, + 0.04637980899926149, + 0.0440678671056586, + 0.04020296912692546, + 0.04516655384658511, + 0.04499123972945601, + 0.04087110413492716, + 0.06220345834414035, + 0.050708977667679435, + 0.042806296039844705, + 0.04150940139316648, + 0.041619322311249464, + 0.05795720371939822, + 0.044157902745753076, + 0.04988418098615702, + 0.04432651339819181, + 0.04448472723530982, + 0.05817287922204566, + 0.03755300437917258, + 0.03997538837123693, + 0.04526047361110273, + 0.03778218210159341, + 0.04295829971093554, + 0.04382327701412891, + 0.0557148702250747, + 0.06699262969447162, + 0.0464140224625013, + 0.03818133037236179, + 0.04481773343913, + 0.051038730378229785, + 0.050119338506413334, + 0.05607186425803042, + 0.03865612820226386, + 0.04808819839193305, + 0.04173887521962136, + 0.05457673967714046, + 0.04558074670502523, + 0.04931194674105572, + 0.05552630117536558, + 0.04321899082936202, + 0.044007093273198766, + 0.042437291961612854, + 0.04566987008678403, + 0.048933355853146523, + 0.05262661864964197, + 0.035718997574090666, + 0.056497313257854086, + 0.034990845907334, + 0.04943856310047285, + 0.037699689135988805, + 0.04846066258798276, + 0.041389787346965, + 0.05604963879175087, + 0.05282550368321614, + 0.04432408053808474, + 0.044799465537107626, + 0.042970462181382646, + 0.0458755762227557, + 0.05017183892526458, + 0.04659505970656977, + 0.054316721135866, + 0.05735224844750978, + 0.03376331657267285, + 0.04797928201888653, + 0.04101307252833731, + 0.051220706564983495, + 0.04129492412510512, + 0.056390282111092795, + 0.06168195846325289, + 0.04980779039258684, + 0.04700493160498546, + 0.044130016687981735, + 0.038741279225758006, + 0.039491509097841694, + 0.0563519339913582, + 0.04460774709250817, + 0.060959247286442614, + 0.05983120297903945, + 0.07525834932213138, + 0.04464443096760423, + 0.042563048636010244, + 0.046218804467123266, + 0.04885635614333361, + 0.05817228904233934, + 0.04688802377095431, + 0.04265776155483061, + 0.04729027528532383, + 0.04574677843295876, + 0.04670608052794922, + 0.03914877871494632, + 0.05090558600836858, + 0.03739092198352462, + 0.04404490527124478, + 0.0399555823887167, + 0.0500739085936013, + 0.042758042242476944, + 0.05123609106144384, + 0.0599926980468057, + 0.049083775558022916, + 0.04329331944481419, + 0.04594805283670558, + 0.04011702859804939, + 0.0468055920129092, + 0.05342707926355799, + 0.034987451883458504, + 0.040021717938726296, + 0.03904085007335808, + 0.03963269163078775, + 0.04972429218119613, + 0.0560977043983302, + 0.05532450455892849, + 0.04445831942825302, + 0.048945834850351165, + 0.053551790223534214, + 0.052155299120660935, + 0.0476301295232535, + 0.0458846637689113, + 0.0487193432196862, + 0.04012507277396927, + 0.042135612654791654, + 0.049285663593538205, + 0.03893161952419653, + 0.04255746963764148, + 0.05306038112103938, + 0.0495157099752439, + 0.0379871067212703, + 0.03769078997092001, + 0.04697090574394993, + 0.03657497904069202, + 0.04379851970744684, + 0.04065174076772506, + 0.044332584589904994, + 0.04741797543406656, + 0.04825100815523943, + 0.05578682993352545, + 0.046955106953017994, + 0.05919350760693686, + 0.06446236555251753, + 0.04101005871007084, + 0.0364214153260923, + 0.045783404606275696, + 0.038986327860769984, + 0.04821273510024693, + 0.0665049401644081, + 0.04473229133022155, + 0.04769506480918208, + 0.051272807835879196, + 0.049171268451335806, + 0.04910107845809822, + 0.05221655513644996, + 0.048438159336817735, + 0.049615659432637606, + 0.044851612777260144, + 0.05114136336329328, + 0.04196058411205817, + 0.04935117353308599, + 0.050266925053948995, + 0.048406664310500676, + 0.04129527634326458, + 0.059702335941063986, + 0.049231977192076816, + 0.04420380406540799, + 0.05637766833064205, + 0.04452042922901568, + 0.04760860653043837, + 0.047740754326248254, + 0.043543564392434425, + 0.037241164354563185, + 0.03796894660730966, + 0.04919608658663821, + 0.046687489792148124, + 0.05629963950005221, + 0.04760872635726285, + 0.05393375694240035, + 0.06795246142127583, + 0.04587789214472285, + 0.04891568204355752, + 0.05035805792259276, + 0.04108162528992997, + 0.05416249410279156, + 0.04549212472352094, + 0.04915597137371087, + 0.05068050095466803, + 0.03909169475344427, + 0.04958928997673398, + 0.045508957002386316, + 0.04269888725903272, + 0.034592448741343595, + 0.049029290645449614, + 0.04619242855243259, + 0.05972877959021005, + 0.05158877877023629, + 0.04745441819249161, + 0.052629387048622384, + 0.053955584235328785, + 0.035763866208684165, + 0.05165835072883898, + 0.04219034356363114, + 0.047654063892014355, + 0.04277903039776959, + 0.04564342552454546, + 0.04789399356249431, + 0.04863261506407816, + 0.04433758888646261, + 0.033140005947005856, + 0.04494084212628267, + 0.049006940214136464, + 0.044328896713792774, + 0.04997916049411674, + 0.04778465901241706, + 0.042390051400565114, + 0.059299959190985956, + 0.05024293855791195, + 0.04088919973783011, + 0.04710447894343673, + 0.05895231782219661, + 0.04141737197528747, + 0.04399226277117421, + 0.04585998014792301, + 0.04585291764414784, + 0.03567479695373022, + 0.07435822444299099, + 0.05594506396524251, + 0.05677201803606342, + 0.04786755102670538, + 0.04994293874023423, + 0.04855445470427865, + 0.044149657604126126, + 0.04365129868410088, + 0.046514388641878714, + 0.045215069688049794, + 0.04294710653149264, + 0.04952942073157143, + 0.041057432340278796, + 0.04063074977923252, + 0.045530373928792896, + 0.03605622105156565, + 0.039528106783402094, + 0.04439556434506619, + 0.04371604680264114, + 0.053840151443950046, + 0.04234210240968032, + 0.06794061661471919, + 0.05071589961924185, + 0.052402876483998495, + 0.044973098593937964, + 0.044389010434716304, + 0.042774149242555244, + 0.08117217442618377, + 0.053187741569007393, + 0.04645585266031762, + 0.05248343761500466, + 0.057235934618545085, + 0.04544000743054485, + 0.06100810103164524, + 0.05135455962952646, + 0.04024659434853352, + 0.09522878944643327, + 0.04432224914979836, + 0.050642789187516184, + 0.03980375521739119, + 0.04355606865176292, + 0.04120698563456665, + 0.04020073378778556, + 0.04886134700074559, + 0.05246303082896547, + 0.046144919810970436, + 0.05674346583124776, + 0.07556606892076452, + 0.04644284081928298, + 0.04783669595921825, + 0.054424966822088236, + 0.06203850961561282, + 0.04090162411206379, + 0.051651974927715144, + 0.05734674042811596, + 0.047510723903375365, + 0.0405221113254089, + 0.04279581973166756, + 0.036831062861747824, + 0.03515690225659835, + 0.041260315569616755, + 0.05223227534813523, + 0.04174201192880038, + 0.03998633641463834, + 0.0543443176841274, + 0.041771190733921736, + 0.03773364918314464, + 0.05563517246065607, + 0.04986927905003153, + 0.04993375226744946, + 0.05830147663091506, + 0.04012913678479212, + 0.07323010557476896, + 0.048288464894251086, + 0.03711436883357052, + 0.04094042059557178, + 0.05000988917083928, + 0.03553122765549852, + 0.05082772343186319, + 0.053143873329123376, + 0.04602372069523993, + 0.048196785210763184, + 0.04903719973638053, + 0.05616099133432463, + 0.04392412964023557, + 0.04073581145463022, + 0.040362967918174925, + 0.047738512088742545, + 0.042961473345895486, + 0.04903967733245654, + 0.04453471554205769, + 0.05559557220732, + 0.056768659411617926, + 0.03477533084701114, + 0.06896170998569356, + 0.04232185245443904, + 0.03754973352410798, + 0.05426921809546742, + 0.03864646856406143, + 0.04996742167907798, + 0.05715194122325821, + 0.05013623342159715, + 0.048685821316369254, + 0.05125904871024534, + 0.05360402052650497, + 0.03980788567555581, + 0.043802491988699635, + 0.052187742744647186, + 0.04408746328815231, + 0.04105166384661282, + 0.037085398459578, + 0.030820596066812592, + 0.039684189632543665, + 0.05028928570487465, + 0.03779157309003557, + 0.039866901475581085, + 0.04412041666955202, + 0.03822191846873884, + 0.04444574844208561, + 0.04046186072209539, + 0.0424537359496411, + 0.04549012134115764, + 0.04807162956259467, + 0.04252201442029366, + 0.03897350183111652, + 0.05145779569965439, + 0.04983927112210535, + 0.057625696163826214, + 0.05771659946645689, + 0.03926773158245011, + 0.04728891551293021, + 0.05027201101160707, + 0.03864481864489964, + 0.04493368840548517, + 0.05577858171214234, + 0.04000891645169864, + 0.03966738050536439, + 0.04697037810064938, + 0.04147008093347376, + 0.04979140436985074, + 0.0437063168664506, + 0.05236993806687934, + 0.04540804563102531, + 0.04658881816853798, + 0.04914884830728072, + 0.04098910921001364, + 0.059500654481362034, + 0.03874577749096573, + 0.04931616714337102, + 0.05745809386408539, + 0.042540127734532744, + 0.04316825897275977, + 0.050192366894285544, + 0.055644045104975365, + 0.03963793263996879, + 0.047863877298283196, + 0.05006818506755515, + 0.04318424892058938, + 0.057530370934412614, + 0.05299636396076115, + 0.04848663617360541, + 0.04241223393191708, + 0.03981710221339693, + 0.03528951105452806, + 0.04197459003598015, + 0.045304772011412135, + 0.05163962657991489, + 0.03460929957661504, + 0.0771453378933496, + 0.04770640696175089, + 0.04421043723258291, + 0.04635041932942422, + 0.056772804982306954, + 0.06265653642190486, + 0.04517027182148293, + 0.04037937958472659, + 0.06852380228456274, + 0.04565594006712617, + 0.05336932339182947, + 0.050077824763847346, + 0.05828975263074213, + 0.05738238100099673, + 0.048132590201322975, + 0.048203392532243934, + 0.05038293309915503, + 0.037608962522168395, + 0.042094745443959275, + 0.0375647837054141, + 0.045194187284024995, + 0.04231872882784265, + 0.056009145641231405, + 0.0416719657700455, + 0.04899515549324212, + 0.0656616831993256, + 0.0504044460873806, + 0.05074010274877622, + 0.041191487681478026, + 0.0469873552722552, + 0.04774230898885251, + 0.047629016766313675, + 0.0476643803875807, + 0.045788652681990595, + 0.04129824966004301, + 0.039863426357985954, + 0.03533691182829438, + 0.048023526947958424, + 0.04878863217956306, + 0.048758803247881996, + 0.055746926335811325, + 0.04876724291329261, + 0.051593120248439615, + 0.04875928335128874, + 0.045932359763718233, + 0.051647857925219295, + 0.03374586195356165, + 0.04311954220659097, + 0.06116603101348535, + 0.03959041725366841, + 0.048814600044604126, + 0.06311552668207737, + 0.04396183431479492, + 0.055095695102645045, + 0.04959838430508553, + 0.0543702111631011, + 0.04115162660491115, + 0.05764268831020588, + 0.05063928211254459, + 0.04937224581572942, + 0.04761286678927019, + 0.04744641787618614, + 0.04933620044814235, + 0.039810150610717666, + 0.04497664640146913, + 0.043726269826557626, + 0.05182232389300013, + 0.04232886415307472, + 0.04889984619388448, + 0.0446914854918951, + 0.04539783666061673, + 0.054704326815185465, + 0.06337463512179768, + 0.054803814697458514, + 0.043841024826932265, + 0.046729848979661634, + 0.049128221391966105, + 0.07598833271292518, + 0.042187318103116246, + 0.0501599688652776, + 0.06024857978932492, + 0.04740476227700715, + 0.038981376954418424, + 0.04466037965133032, + 0.04307960449924451, + 0.050388368928937007, + 0.04177455222900854, + 0.0438225456490114, + 0.05289705619716445, + 0.03500902780226975, + 0.03370712578529133, + 0.04715593986694985, + 0.04133817027439744, + 0.04547221508749105, + 0.045602137055673814, + 0.040165950923618056, + 0.049723361650606854, + 0.04580391237611056, + 0.048644088895936785, + 0.042898404091355695, + 0.04567397243870198, + 0.0510138648494436, + 0.03776905855031603, + 0.04751760951377504, + 0.044905563596187574, + 0.04920343611075481, + 0.04832157924812768, + 0.053906121175315076, + 0.03826020168045327, + 0.04390202522773522, + 0.05185359263013029, + 0.04206555474998457, + 0.056641656808994946, + 0.054698518868947825, + 0.04005987130727696, + 0.047151411193056894, + 0.0507692277238884, + 0.04599852913062756, + 0.043973935434117505, + 0.043745159081391455, + 0.04504445158770224, + 0.05788807729686059, + 0.0408657032166622, + 0.042836855362291086, + 0.03485631438718388, + 0.05253148621858, + 0.058875494999321105, + 0.03142061762204922, + 0.04903696651262044, + 0.037050878310697366, + 0.04578564019674534, + 0.043189464142300474, + 0.052567153892207515, + 0.04255581627619823, + 0.03688169346941042, + 0.04851094530570567, + 0.04030569535047428, + 0.04795032952347209, + 0.049570843927724643, + 0.04637663113286078, + 0.03807328431749426, + 0.04714006949649586, + 0.044146069278356015, + 0.050959401170086245, + 0.04027508762153731, + 0.04105386932638021, + 0.03899946845521821, + 0.032877358583117605, + 0.04437852889224844, + 0.03888363280788898, + 0.04489117564778006, + 0.04308306589633016, + 0.062017036720696396, + 0.053558739625190296, + 0.04835110216870277, + 0.045136592943245776, + 0.04832574642302916, + 0.04849256288304549, + 0.042215955698643615, + 0.053612936109916895, + 0.058091452263421675, + 0.043202998652171906, + 0.03980220282050553, + 0.0713197640086863, + 0.04686685969177413, + 0.05361644003454721, + 0.03903832965719138, + 0.05332654694907814, + 0.04615959122573992, + 0.05543022517093187, + 0.046265569135249054, + 0.055177213933565214, + 0.041033975755540714, + 0.04256532158885325, + 0.05582618437971826, + 0.04590825200604387, + 0.04320540293506798, + 0.042097022954798384, + 0.03726225411041518, + 0.04702520481229699, + 0.06240990194242615, + 0.03520474886485074, + 0.044403022738275046, + 0.05419662020340987, + 0.05374026615306333, + 0.046597388103974076, + 0.05550104773192473, + 0.04177069893063553, + 0.05170009202512498, + 0.04507959444320296, + 0.041101700106038926, + 0.03982434449860425, + 0.04608754805995856, + 0.04117480964262659, + 0.04555653713328729, + 0.054063786119193345, + 0.04755226335273632, + 0.039871390407049664, + 0.05499215023525566, + 0.0363583063405609, + 0.03613672702224524, + 0.046656232644966815, + 0.05287055754842265, + 0.04389020118086414, + 0.05314645903923912, + 0.04165971519604197, + 0.04415183663258059, + 0.04169499633515324, + 0.05982347092759748, + 0.06430028591831312, + 0.062180505295742976, + 0.04911081578745753, + 0.04328722484616597, + 0.04860765897600952, + 0.06149842206346525, + 0.04688466129166527, + 0.05786742931110306, + 0.05514231175242084, + 0.043273782887226386, + 0.053305404346301016, + 0.0465010284255737, + 0.04443519346559138, + 0.03783689601257815, + 0.03660380953764393, + 0.04422823366069002, + 0.044850401426172866, + 0.04287374910700246, + 0.04267653093753846, + 0.04447956372399056, + 0.05459706108850363, + 0.03755715145667608, + 0.04026426761089571, + 0.0487764320421818, + 0.04481622781886641, + 0.049448920552557306, + 0.03710767558824472, + 0.04769643034537273, + 0.04233563303706159, + 0.04559550605616353, + 0.03080978549008558, + 0.04300462168409584, + 0.04330597747733736, + 0.05034212515919374, + 0.04617770507286425, + 0.060481841149109525, + 0.051163172783938164, + 0.0736821213550775, + 0.061861974413367105, + 0.04509574874358372, + 0.04739443133121919, + 0.055908243716021676, + 0.04002464127783951, + 0.035789842060379946, + 0.033477748411312104, + 0.04423653078698315, + 0.041639922604402385, + 0.058079214608589926, + 0.04891395682311626, + 0.03762175542563493, + 0.0422191895212404, + 0.04360553850728974, + 0.03272758380515663, + 0.0425203816288871, + 0.036921447307602086, + 0.047317422394586285, + 0.04497074093506324, + 0.035272748877440495, + 0.05211719884082743, + 0.050384878168553776, + 0.043472410213185673, + 0.044328631326211766, + 0.04380873064784555, + 0.0545635546053039, + 0.05314569115754796, + 0.05467122981636813, + 0.059663294197008006, + 0.04992190925662143, + 0.04577888855735105, + 0.0485266172730753, + 0.05053165644656523, + 0.051297193128614825, + 0.043664367162178724, + 0.04707687250907169, + 0.04743815666895022, + 0.03620086882433998, + 0.05291578173661274, + 0.038860786817152326, + 0.04758308184748482, + 0.05444089072252789, + 0.05343439270332032, + 0.04383774103734563, + 0.05270048085168217, + 0.043301062613260534, + 0.052570982620350225, + 0.04913019594530569, + 0.05031643701280422, + 0.0394192691252672, + 0.04654528529544011, + 0.045579204032025845, + 0.04802140113071556, + 0.03733128278342344, + 0.05261701488303109, + 0.050185439663418104, + 0.050717992220027965, + 0.04848549378956493, + 0.03861307024408825, + 0.04285038641560358, + 0.03837549283770486, + 0.05207984534526344, + 0.047633883997939705, + 0.0362501567724217, + 0.035172387836472675, + 0.05676994459730226, + 0.0521332876924329, + 0.04537351536665701, + 0.043892970133084463, + 0.054948508611609256, + 0.046879489273607584, + 0.04708780118815018, + 0.03833872659776776, + 0.042880157911403344, + 0.03538981234457341, + 0.04863258308687238, + 0.04720469760364967, + 0.048185597293568506, + 0.048970411412930404, + 0.04009200233410538, + 0.04832691861869694, + 0.03839311707313239, + 0.04864301850902251, + 0.047681052442701266, + 0.03807438809618849, + 0.04726419567675237 + ] + }, + { + "legendgroup": "Beam sensor 4", + "line": { + "color": "rgb(135, 197, 95)", + "width": 3 + }, + "mode": "lines", + "name": "Beam sensor 4", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.04726419567675237, + 0.036881084539466, + 0.05006043683725608, + 0.04676326791782981, + 0.04486345061486108, + 0.05387691729709245, + 0.04723076192965429, + 0.05845026715281409, + 0.04773493365772964, + 0.045265903291609295, + 0.03997149367613043, + 0.03446168720391206, + 0.057521109995882426, + 0.04364953261847467, + 0.044246919623870194, + 0.05449129110827522, + 0.04017283916357933, + 0.03580478961512732, + 0.05304929406961584, + 0.04595215248273945, + 0.059043312933029175, + 0.04050650611710223, + 0.04122163527009041, + 0.042143395357556346, + 0.03628836313451585, + 0.04429936116084708, + 0.04656875111655962, + 0.051827970242302714, + 0.04998575684614527, + 0.04857751691944672, + 0.048625650387450016, + 0.04206842651049875, + 0.04819278533757117, + 0.041776877766098085, + 0.04819317306845095, + 0.05202847328457535, + 0.044478404919738035, + 0.05269624937708751, + 0.04935495264440414, + 0.03721331534135657, + 0.04409667471266074, + 0.04860736829457256, + 0.05446975143161654, + 0.04698686807402293, + 0.049302071084657284, + 0.05000513334482508, + 0.04805644192647823, + 0.04391441521369819, + 0.05530014117873966, + 0.035744916838950105, + 0.043476769337127304, + 0.04110426826308501, + 0.05226249178571959, + 0.046214943617473046, + 0.04711209339956742, + 0.04088461314832586, + 0.05885098531820468, + 0.042808028812997306, + 0.04385609504690955, + 0.04103602733145842, + 0.04391367896376084, + 0.04221816655473826, + 0.06061781229492478, + 0.04914686693862627, + 0.038623003667583984, + 0.046503356640565756, + 0.045382763416096226, + 0.041329388587708175, + 0.040682417123276984, + 0.04725355240152864, + 0.08517249151762737, + 0.05574489436961632, + 0.050992983965553414, + 0.039340878757001416, + 0.04085912163743376, + 0.04773435278146062, + 0.04268554837605302, + 0.04618967507213679, + 0.04166147212082321, + 0.03793081161403405, + 0.05560352420551972, + 0.043024826735384325, + 0.05099531854542999, + 0.04694687843445629, + 0.04798399576928191, + 0.04540732707791155, + 0.033804511062223326, + 0.0387547350851475, + 0.042271758014562004, + 0.04306133901369432, + 0.04617158154494044, + 0.053506123950341704, + 0.050473146380069805, + 0.042304363003489186, + 0.05059328751252999, + 0.04593570312301968, + 0.05580126211846495, + 0.06001652285210805, + 0.049085049777891694, + 0.04493276258224353, + 0.04542404241739774, + 0.07071166591397858, + 0.050892107467137064, + 0.05595326627993048, + 0.05127915565127704, + 0.062155184971151294, + 0.05024844783326852, + 0.03729513509913289, + 0.04766542502862848, + 0.04316851596154454, + 0.03866259861815816, + 0.03881851699859755, + 0.03861514166358812, + 0.05830297100719988, + 0.0515847061488428, + 0.047657040662913555, + 0.045346909026451374, + 0.043511969464681666, + 0.047828204289447694, + 0.05925080086244245, + 0.04295002764135971, + 0.04913798694373626, + 0.03573655096315353, + 0.03419271030262909, + 0.036514266513848675, + 0.061826837041655945, + 0.05956379585416666, + 0.04062537481331064, + 0.04572205786022986, + 0.04646631372535122, + 0.03775155820825082, + 0.057637004559167565, + 0.05473088411041893, + 0.06924344636613343, + 0.05181642787528978, + 0.043526592834463626, + 0.03663975146831031, + 0.04360333805327612, + 0.047791254062568636, + 0.04863724644049569, + 0.04180674210783504, + 0.04704590555385097, + 0.03869689469127306, + 0.04185371902070565, + 0.040484056577267016, + 0.05167287904804543, + 0.05634015521962414, + 0.045392994383701056, + 0.03908482687034759, + 0.03415063910587608, + 0.053222603879236594, + 0.045895897083545543, + 0.060563970160806245, + 0.04036562788609559, + 0.05198653630288811, + 0.04208715331760518, + 0.04563578989607562, + 0.04583094616081591, + 0.05456637447348087, + 0.06420965489729094, + 0.03722322977475391, + 0.04690962803667721, + 0.05377041655409459, + 0.04439326019067893, + 0.0459342456295597, + 0.036016436919443486, + 0.0532264426305475, + 0.04215800641504944, + 0.05725818894842576, + 0.038624261084200216, + 0.06578679494429089, + 0.043797016216489945, + 0.04420593198444669, + 0.043992161582290454, + 0.053237483657311686, + 0.03689811481439576, + 0.046643339300974855, + 0.04967022210841504, + 0.043475076617943566, + 0.044183779114185, + 0.05854817341599629, + 0.04850610568640289, + 0.048443949498132736, + 0.041823009635212675, + 0.06806923968926255, + 0.0580243453901543, + 0.043428898495701494, + 0.044626541179303515, + 0.056525174409295956, + 0.04929971929753376, + 0.06022569606852146, + 0.04141280875402679, + 0.03892805743663089, + 0.044579143416785365, + 0.05115882157446496, + 0.04353055607809356, + 0.0462234992704664, + 0.052274547364962134, + 0.05152999164529589, + 0.0499384323271808, + 0.04728873859207578, + 0.03891120446049878, + 0.04682354642563995, + 0.03700334213091665, + 0.04850378863628435, + 0.04979415687177632, + 0.044153531045091135, + 0.03826775057215664, + 0.04861155119504171, + 0.05254063547365812, + 0.05485389559914469, + 0.0543745630670949, + 0.03511114435868681, + 0.05558321797922957, + 0.05753684985306505, + 0.05916335813420381, + 0.050615970730970274, + 0.03484195789196849, + 0.048696592275305504, + 0.044522910311806184, + 0.05805694702635457, + 0.04391144415530676, + 0.04601182397596914, + 0.04838218339274392, + 0.06153383218741187, + 0.04583488332518592, + 0.05390604201938416, + 0.04118208408066546, + 0.03548616821307029, + 0.04842680039237844, + 0.04071402065100988, + 0.04258200011995128, + 0.043891331959342125, + 0.05617815589062733, + 0.03678610649128445, + 0.05284818306791125, + 0.043304839515116704, + 0.07402001664782538, + 0.05930720956002788, + 0.04187535840682548, + 0.04157861282033558, + 0.04745097631303089, + 0.03911604169116118, + 0.05454136110597087, + 0.04352856414741783, + 0.037328465286553654, + 0.035751175147472204, + 0.04435909870122639, + 0.042821223944320974, + 0.04735975421744678, + 0.037955065951913544, + 0.04520949599122381, + 0.05024843474845122, + 0.06219496448590855, + 0.04454855576718507, + 0.05597050085872947, + 0.04284163862550577, + 0.045559621371601834, + 0.05067556186739799, + 0.0514463604288999, + 0.04466691684181914, + 0.04999146747965216, + 0.03840857618424987, + 0.059117007594607196, + 0.04821085166975681, + 0.04315497517055908, + 0.03470285330298614, + 0.046801414969928824, + 0.045312055259175484, + 0.03967225172143161, + 0.042598763615822745, + 0.04268932339701896, + 0.04043248998758503, + 0.05495647356231238, + 0.03860827680680124, + 0.04945880808178062, + 0.04247863664503816, + 0.04884625376126691, + 0.04581368023366177, + 0.0382043466910697, + 0.05898425537422299, + 0.05661041294359431, + 0.04182195323715962, + 0.03495182545729195, + 0.03654987466323467, + 0.04372267110054097, + 0.043502396624282305, + 0.0479664486625913, + 0.04119631459536699, + 0.04704225032590241, + 0.06631212125123756, + 0.05837254263475215, + 0.04445541594376637, + 0.04320892181567544, + 0.04972121093294913, + 0.041389285737761364, + 0.04887848189814837, + 0.049702061610103106, + 0.038145238122585294, + 0.07040796201083659, + 0.042488963972550475, + 0.041198669487390295, + 0.05320345559423256, + 0.051565876360182866, + 0.0387801504981783, + 0.03309480224927308, + 0.055839654389714596, + 0.0530896121881187, + 0.035073960838116355, + 0.0416500463490513, + 0.05251956808513941, + 0.055563755474847445, + 0.04769117217058053, + 0.04277810512941836, + 0.05547907266034024, + 0.054366843274146065, + 0.03894230823573471, + 0.03583881223671715, + 0.03530741222502197, + 0.05055249481946586, + 0.03685699643275534, + 0.03881165595766753, + 0.03974177361234883, + 0.05931555982662271, + 0.04466826386827102, + 0.05037291415451357, + 0.040721381119461074, + 0.04025480037058676, + 0.036279717775432374, + 0.05155029651365525, + 0.05371288543912698, + 0.05445931722518698, + 0.03419617830988778, + 0.03696317423321577, + 0.059709954331832765, + 0.05600211970120174, + 0.04941768936961892, + 0.043505942734447425, + 0.04882431794929608, + 0.061858009908334115, + 0.04415956035540477, + 0.06008116885507745, + 0.047771976775922924, + 0.04090054550152817, + 0.041283040530983243, + 0.04175205845047626, + 0.04206179976589404, + 0.04969924588059396, + 0.04965239225272223, + 0.060232389313907043, + 0.044613066988066837, + 0.05392991811765727, + 0.03815319167957941, + 0.04350836555987775, + 0.05730977902803956, + 0.04409812363233069, + 0.04518631615104171, + 0.04683812806394016, + 0.06734188637329974, + 0.052880690612833056, + 0.04165028827592077, + 0.04739892901051152, + 0.05401763501046732, + 0.051458732584300906, + 0.06923835939922274, + 0.06465939099324956, + 0.03950232108245579, + 0.048956984807563705, + 0.038958989314179335, + 0.04265019305005136, + 0.052392891960840224, + 0.06349941334219919, + 0.04263519894157518, + 0.04669617578585943, + 0.059960820858698735, + 0.051513918221107693, + 0.04293912463012529, + 0.0490814367671407, + 0.044684455462581874, + 0.047113552533142776, + 0.05030034975801812, + 0.0470027019556522, + 0.05515868543998448, + 0.03795588675822518, + 0.04003743608579264, + 0.054075967851040664, + 0.05285447429557009, + 0.047567166176896575, + 0.04041619752744611, + 0.03485518302957437, + 0.04481146535139308, + 0.04790184120752132, + 0.05822679972297641, + 0.04208056051652241, + 0.04237528076296457, + 0.05579260526603011, + 0.04781277668779262, + 0.0570005435737774, + 0.03959833360994822, + 0.04660070768295068, + 0.05353687684965777, + 0.04247478557160864, + 0.03421434094915261, + 0.0317902792495084, + 0.04255780342380079, + 0.04654696571946493, + 0.07128051842717024, + 0.04773249540605341, + 0.0594360488852119, + 0.05632890501454638, + 0.0436443681662804, + 0.046432445392098606, + 0.05344997182532704, + 0.044110124372337994, + 0.04739466355289906, + 0.04195875987321314, + 0.050485055686938674, + 0.035231825931641585, + 0.04539551770034332, + 0.042907776420540056, + 0.04420329674080075, + 0.040555749094398255, + 0.04246208140031587, + 0.03549486326546784, + 0.04567571131420674, + 0.04261240465064095, + 0.046639930725459, + 0.05886552050894066, + 0.03819499269383743, + 0.046949081637347956, + 0.04110385172110018, + 0.0493920206497451, + 0.04169535524552373, + 0.042675071626454224, + 0.054377956192601655, + 0.06005187024424992, + 0.04104381312848917, + 0.05001397920008469, + 0.042386224354063355, + 0.038674280416614686, + 0.033365117356897595, + 0.04101250862993127, + 0.04740198093852997, + 0.04589615115056592, + 0.043393858927310416, + 0.04194798941036043, + 0.03976603982615691, + 0.038997008760019415, + 0.052655781390196374, + 0.05680751105635496, + 0.053294687275519656, + 0.04809993626437237, + 0.056361174732804685, + 0.050271264222795084, + 0.048148520697213176, + 0.03707223530625267, + 0.03409431543946865, + 0.0495702220153857, + 0.03714244615211694, + 0.049273482813621046, + 0.04795085678440682, + 0.05465760804032804, + 0.04860519146338227, + 0.044487982296730504, + 0.036496951679781287, + 0.035971567888099056, + 0.05088104952427417, + 0.04207524776066554, + 0.0451085179584551, + 0.04816972951434129, + 0.0484478952244847, + 0.051293253586369915, + 0.06725874194712672, + 0.05488724194762501, + 0.039506538738459905, + 0.041245547360542326, + 0.06528744368219254, + 0.04549163806084589, + 0.04112320785864186, + 0.04390160700796667, + 0.05002996363157522, + 0.05803495231556215, + 0.05153145966361614, + 0.043802420922195724, + 0.06075717689898462, + 0.04596997717013642, + 0.04915799635503928, + 0.05657826761915739, + 0.054119029124437876, + 0.04238127027036093, + 0.06503199875911071, + 0.056483418154073824, + 0.03837232018624608, + 0.039640354545722824, + 0.051528906035925914, + 0.037749781720405474, + 0.04447171298980586, + 0.05003045748605289, + 0.05488005260733826, + 0.037952915462895497, + 0.042853082211723896, + 0.0470040448498885, + 0.04878082397399344, + 0.04319651712364393, + 0.04091896429006093, + 0.050214562611048695, + 0.04638152506881769, + 0.04502834411716665, + 0.056071524622610835, + 0.06027725440197488, + 0.06316934232318867, + 0.055672625747853345, + 0.051498891337573904, + 0.04815391728957577, + 0.04364279378310151, + 0.0460194646201614, + 0.05352561223351427, + 0.05641815232980436, + 0.04426170957003717, + 0.04759112547379766, + 0.04634785149868141, + 0.041029455637927544, + 0.035423875480321027, + 0.05428290057935631, + 0.047090871009529855, + 0.04190922597649849, + 0.040800982590468805, + 0.04740300829051505, + 0.046811130969412286, + 0.05606132817905, + 0.04455778621269648, + 0.044568449515871175, + 0.04773669881924467, + 0.03984939728165908, + 0.044803705573011755, + 0.06558974768028403, + 0.04936007172969017, + 0.04302475327543564, + 0.05237291350263196, + 0.053096689783276196, + 0.03366203626381041, + 0.04932527337928824, + 0.044336253982006774, + 0.04181643048395758, + 0.04476236167144894, + 0.05329238137090603, + 0.06645089303929944, + 0.04580389057239533, + 0.05794082804329562, + 0.04537421757187545, + 0.04699173473745366, + 0.04456932347186326, + 0.04120660667749664, + 0.0396490352928973, + 0.04177806933573599, + 0.04886742800681221, + 0.04967398000888742, + 0.044574528391662066, + 0.060042805447478934, + 0.05100644897825278, + 0.043899132057725894, + 0.045296026616227184, + 0.05567716325105472, + 0.05109527561624891, + 0.04683161381909563, + 0.057612664505783485, + 0.039249854004890825, + 0.04594175634321915, + 0.04499745982135577, + 0.046215644156405146, + 0.04461395254772627, + 0.0437143114067327, + 0.05871395491041189, + 0.05303517803135139, + 0.03764032280420411, + 0.055889973593044616, + 0.05131010652756866, + 0.04027388283378855, + 0.037602656730619945, + 0.04823290583017595, + 0.0492409967236014, + 0.05651827501547918, + 0.04586772329051945, + 0.061626969281984544, + 0.03976383088369782, + 0.0402841213609494, + 0.07362588648695993, + 0.04813808417137476, + 0.045901371626716765, + 0.04994846332431566, + 0.03847826875627223, + 0.03525189559225623, + 0.049935993065315445, + 0.04039236284490161, + 0.044966687483001026, + 0.04959017453112335, + 0.03702835656572712, + 0.06451740028921371, + 0.040010192003754094, + 0.03990289536938668, + 0.0451929930798909, + 0.04159818828487295, + 0.047080237517022505, + 0.04943502705250027, + 0.04091835974241561, + 0.04862444803456494, + 0.04976161999260027, + 0.060197297832692724, + 0.06477638344825358, + 0.04587084768006845, + 0.05251223309302971, + 0.05006090380872862, + 0.05296534605269633, + 0.05644895411298312, + 0.03932205366350276, + 0.03527957066725124, + 0.048535879638483936, + 0.04729249150097235, + 0.041680337756355344, + 0.06107774944039792, + 0.055687047048197054, + 0.036825417639116, + 0.05402300634130637, + 0.040724301241360575, + 0.04281184422156104, + 0.052196521241637935, + 0.04728996951466687, + 0.04316084888686395, + 0.04367041574469611, + 0.052816055896153166, + 0.04670438443709383, + 0.04469164081566282, + 0.04893587683982969, + 0.06095831037601088, + 0.036357813955961715, + 0.051791019354540675, + 0.03859702886009794, + 0.045343422045155186, + 0.034626802042862545, + 0.05192758337155455, + 0.04925918229081112, + 0.041658369422994855, + 0.040187027734229434, + 0.04629344449998145, + 0.0406846044732104, + 0.03666708614538329, + 0.05627942589501684, + 0.04851737402189095, + 0.04578363526693654, + 0.038216493069834406, + 0.043381304946482104, + 0.05926435331920976, + 0.05323107388498897, + 0.04027516319208008, + 0.04216746004315932, + 0.04258444786708307, + 0.04246740758386103, + 0.038502044200276836, + 0.048149296398936225, + 0.04955142820427426, + 0.04056750637314539, + 0.04067369220019334, + 0.04639780464903813, + 0.061796561753874095, + 0.03955345437946351, + 0.046215412647409006, + 0.053115161214318626, + 0.05667232253492283, + 0.05061623738471724, + 0.041949421404927974, + 0.05200488581708626, + 0.04781929491022881, + 0.047859796089902276, + 0.038952238374224055, + 0.048240080751199815, + 0.03767372346645622, + 0.03574510358316386, + 0.040064584784111096, + 0.054950567128165276, + 0.04417303561344488, + 0.06069777718260055, + 0.0518616558148186, + 0.048034793548047634, + 0.05363581877689056, + 0.04350232953413163, + 0.05201523285726535, + 0.052855709737005985, + 0.04227140926896966, + 0.05344492007951235, + 0.04126177650956686, + 0.05024571537621175, + 0.05108385116390369, + 0.05093186184555393, + 0.043793569096045926, + 0.051938186186523606, + 0.0358594615958194, + 0.042661092954800334, + 0.04337662974377576, + 0.04634125449002307, + 0.05396300405391587, + 0.05806116137142104, + 0.05576538759602171, + 0.04609170386652163, + 0.04238022704371396, + 0.06445512344488533, + 0.046772986392353576, + 0.053653748192795635, + 0.04947712713116021, + 0.044682042567988065, + 0.04347472330069597, + 0.040218928876685954, + 0.05351839716213206, + 0.03709039082849319, + 0.04965093235612237, + 0.04851783090277026, + 0.051522073639858945, + 0.059520905952047204, + 0.03938187424984419, + 0.036562299933337324, + 0.0499874106137428, + 0.045131164031521814, + 0.04586075242420621, + 0.042773051939555766, + 0.044009764835906136, + 0.04139630761542554, + 0.045567817834810835, + 0.05072803603389049, + 0.04632322887846513, + 0.05113356893930291, + 0.042256067435065846, + 0.047353467399874026, + 0.05322019221648131, + 0.05077491126959527, + 0.03703493032837879, + 0.03492120291951167, + 0.03868901935750164, + 0.05043743894194113, + 0.042676885037424596, + 0.0416133681148275, + 0.04395545478357435, + 0.043398912793776695, + 0.04020836832718098, + 0.03834360329606667, + 0.03631793286349436, + 0.05546580552852417, + 0.040168510461192956, + 0.047079107276033164, + 0.04355316557765559, + 0.05112605775097038, + 0.058189898188392694, + 0.06189786078047542, + 0.05179513519769146, + 0.04677058886898873, + 0.04926261900340616, + 0.04614507768753958, + 0.04942452391590718, + 0.04793382745665076, + 0.06205193034004292, + 0.05321839316145217, + 0.045204203219282625, + 0.045305301165795224, + 0.04861120299077978, + 0.05508096266367078, + 0.04017928741599274, + 0.04865938613555088, + 0.03700616250741056, + 0.05757325862858236, + 0.05022402486640544, + 0.045155092208282885, + 0.037697979364866116, + 0.03870427419197695, + 0.03956929374557381, + 0.0345665595064656, + 0.05213616968301539, + 0.0436239866510008, + 0.03850044477310851, + 0.05177422097412726, + 0.03793813579264624, + 0.06930261109370359, + 0.04611996359334608, + 0.03681274839867397, + 0.0446688675936881, + 0.053817504097813225, + 0.05162348447947246, + 0.04352226780570223, + 0.036748568145073573, + 0.05041573564780013, + 0.051315658861477466, + 0.056401043416253495, + 0.04338425599817405, + 0.046034459978000014, + 0.04068286517160327, + 0.04135457425934717, + 0.04929999659131981, + 0.05183486003863792, + 0.047526677993111326, + 0.04147045972101494, + 0.05050963657898871, + 0.04513592762782528, + 0.04119389364218156, + 0.05420826247238544, + 0.054176689209340566, + 0.051358241484911485, + 0.040027950229702625, + 0.04692435477133298, + 0.04063988059098274, + 0.031877842737112534, + 0.04686444056924539, + 0.048703946290398925, + 0.038284478015300855, + 0.04873360841229848, + 0.04673895071108055, + 0.05042111286506122, + 0.03975268764914096, + 0.05168087049160423, + 0.038869771537480495, + 0.04196512552356611, + 0.05217125595618196, + 0.05303082147355326, + 0.035699640146222476, + 0.03581683255794542, + 0.03958753637027233, + 0.040445978640076076, + 0.05298596437451905, + 0.04882674210311732, + 0.053898385295079294, + 0.05922089814909926, + 0.04903881034052626, + 0.048356579993235047, + 0.05564992915341666, + 0.04394963290853094, + 0.056963279700322916, + 0.03743186408749249, + 0.05215038263523201, + 0.04088072728009428, + 0.0414084392169447, + 0.046141774622944484, + 0.04497584784820814, + 0.04377702240477008, + 0.043026795918061064, + 0.04511369625577695, + 0.03174314836781477, + 0.047709478223122534, + 0.043290202520162746, + 0.03452095796553967, + 0.04611157688069397, + 0.043017807778827306, + 0.03916404242286411, + 0.04840972439180309, + 0.04013105957165617, + 0.05210992652428849, + 0.03734757957004105, + 0.059754566068910435, + 0.03785666686812961, + 0.044354116533767876, + 0.06806612906394145, + 0.048914139372935275, + 0.04629143874714043, + 0.03760816634301466, + 0.0452730101975151, + 0.045462765750321245, + 0.04625663900360399, + 0.045458529292082, + 0.05333450934436608, + 0.054142248577322645, + 0.04123548308262721, + 0.050603734327841, + 0.041695764208854125, + 0.0403286095017367, + 0.0389373923130943, + 0.052203543290839795, + 0.044043635382690516, + 0.04017368703127489, + 0.04554945169119097, + 0.03308793836321273, + 0.05022729001384214, + 0.05771911933590204, + 0.04237239399230223, + 0.05161960216635911, + 0.043638572558707886, + 0.05684750375788698, + 0.04929159489681486, + 0.059762534883306594, + 0.05498363209978828, + 0.05580578295259145, + 0.045874987779808786, + 0.041313204007262114, + 0.04865719460177967, + 0.05447135561075617, + 0.04233132204694438, + 0.06612670803240832, + 0.04976237625158495, + 0.0530410343114474, + 0.03831704698382851, + 0.0502343871374866, + 0.04688816255602874, + 0.04424648559074078, + 0.05092936641895316, + 0.054843391260857244, + 0.046246076817004864, + 0.04162078364069829, + 0.04368617030079233, + 0.0714968907045944, + 0.047967037838637, + 0.05644687348676008, + 0.04342133853818561, + 0.05196910673558007, + 0.03918264787493723, + 0.042987490967000955, + 0.04199587248455268, + 0.05101002432337444, + 0.04677066295411278, + 0.051002862239573364, + 0.042538238584811316, + 0.0459990904763458, + 0.05100154685082847, + 0.07640551682196861, + 0.040086228768863245, + 0.04053328330301778, + 0.04416660984660224, + 0.03776591474554836, + 0.054153084054510636, + 0.03967509902964108, + 0.055179545495637305, + 0.04778624991277972, + 0.05376974506731766, + 0.04035074442939918, + 0.054558741138903216, + 0.06109870529400047, + 0.046361291732874316, + 0.04813550467852171, + 0.04288282407581398, + 0.047549417028146655, + 0.04062355712785014, + 0.04078198196128162, + 0.043768002611895764, + 0.0450453788352284, + 0.03543404227313847, + 0.0371015606399151, + 0.042417422855968466, + 0.03990107043178202, + 0.04153157887632646, + 0.041774071532352006, + 0.045524174799050555, + 0.04540356983463531, + 0.044266091975788936, + 0.04585289264005529, + 0.04384157439306082, + 0.04510698670147896, + 0.05604448529817501, + 0.04037588315604102, + 0.03964925310217636, + 0.04129411906196193, + 0.05988061833601801, + 0.07419503889164523, + 0.0605218470602241, + 0.05502491016360542, + 0.052817152921631215, + 0.05236816690242299, + 0.052343192845982066, + 0.040376356909782536, + 0.04045280547054256, + 0.04638245349380063, + 0.05289149421917198, + 0.056741495540654295, + 0.03297534821382655, + 0.052657820471686746, + 0.04863016825908334, + 0.05205541203650761, + 0.03980176209417003, + 0.0488531172173745, + 0.044161822519005786, + 0.045178267828584646, + 0.04033842179772416, + 0.05552984713694569, + 0.0471280864121129, + 0.04588642496658769, + 0.05154493701781719, + 0.06275354535037024, + 0.036100769109029526, + 0.04443793058834392, + 0.046137169441240425, + 0.044230144790803554, + 0.05869837488535454, + 0.05071938586027825, + 0.04936794838858237, + 0.03865496987583472, + 0.04759419298833741, + 0.051740512589749585, + 0.05658720978560349, + 0.04420540931229654, + 0.06274850876534606, + 0.053984215488162256, + 0.05048171608927052, + 0.04648559172046201, + 0.04032668159947574, + 0.0466146178797614, + 0.049879650718794445, + 0.04897309667915346, + 0.043864134197430946 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgb(206, 220, 249)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 0", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 2.2688418818621128, + 0.20942856618647607, + 0.07193666036699466, + 0.02793478879292312, + 0.03309019302171476, + 0.034029001634891066, + 0.031623137022043266, + 0.034624198085596955, + 0.02806302056270541, + 0.031885503284855565, + 0.032136527250028114, + 0.035138776221621676, + 0.03594378944493073, + 0.027166908894777776, + 0.02837501635001386, + 0.03151542630875384, + 0.04044544708599811, + 0.034430505889793704, + 0.03167009793170546, + 0.02854793389756897, + 0.042387778378861214, + 0.030412668042728134, + 0.029843725770545882, + 0.03311856022671304, + 0.030265995837668355, + 0.03163530929733342, + 0.03786034095173464, + 0.0349125291065957, + 0.03488795831607344, + 0.03432621478462303, + 0.026917161780880487, + 0.027916595400950903, + 0.03312990501743296, + 0.03215633918816755, + 0.039902958482348816, + 0.026083468185669426, + 0.036318624960360306, + 0.030607834442702892, + 0.03464240129547442, + 0.035171079108155805, + 0.03248190626340975, + 0.029313853642905053, + 0.033428316339605454, + 0.0320908013171458, + 0.03719883359094956, + 0.02986999415513876, + 0.041165649100398036, + 0.03467753530521463, + 0.04014003736520182, + 0.041891550710587096, + 0.03817188904243747, + 0.05075135597159439, + 0.03950796851788342, + 0.022657984838060773, + 0.028334451406826167, + 0.0279036821937131, + 0.03125401767193793, + 0.028804844288407454, + 0.028388288158880108, + 0.033813616246288716, + 0.028954786550282805, + 0.038231580456041366, + 0.035310780883717065, + 0.03418743117715736, + 0.0316617322848646, + 0.036639750101028996, + 0.0409206972546628, + 0.03242400049424764, + 0.034175481295951236, + 0.04151428116473829, + 0.02977086723255998, + 0.03360139038658204, + 0.03685063846646285, + 0.03236883031120962, + 0.03222119089363838, + 0.042451544602575414, + 0.030243862110632173, + 0.049423713119666694, + 0.045779754005749386, + 0.03726124955190462, + 0.03303507611492472, + 0.028389139671846673, + 0.03086896796200758, + 0.029049950672590103, + 0.023172912034884856, + 0.03249551171315656, + 0.028322809496740056, + 0.029889043859847, + 0.029297819841011267, + 0.031152797914469187, + 0.03550828062877206, + 0.022509499226644757, + 0.03602228672905339, + 0.030544305738816245, + 0.03518067772316722, + 0.037637810742945546, + 0.02913973794045108, + 0.03150452129371562, + 0.03138750521598475, + 0.02523394420176119, + 0.033860631362682726, + 0.02757607565521247, + 0.034022290839124204, + 0.024080678140990026, + 0.03780460347181886, + 0.029090213844231494, + 0.02664653134018111, + 0.03718159567799544, + 0.0396755931804341, + 0.027658997939733313, + 0.03572504606144258, + 0.032736955812034334, + 0.028541176661321437, + 0.03538783662906179, + 0.026689417229373538, + 0.031641283485770506, + 0.03306479920030972, + 0.03132325490754045, + 0.025947947211463502, + 0.03370501610856448, + 0.04146602346717048, + 0.03748240262988657, + 0.02712747210928747, + 0.03338798196140233, + 0.032300568425813775, + 0.03234035542335887, + 0.026209051199255044, + 0.03353014922266476, + 0.030302900252364446, + 0.029767576327703226, + 0.024863851413955557, + 0.03485050684649815, + 0.028221744923075266, + 0.02996457950102885, + 0.026555133286828785, + 0.03992633434311574, + 0.03057750366768845, + 0.03442272396240244, + 0.029007145938818493, + 0.026186955195307473, + 0.027305329478329733, + 0.03010669342939232, + 0.03504565461763839, + 0.029062734493195762, + 0.029853689272590526, + 0.029121889220936517, + 0.035258053303233124, + 0.044136985416854395, + 0.023267860310332684, + 0.02926542215904182, + 0.03493752936842837, + 0.032823721558037665, + 0.03715550306501626, + 0.03125459065080018, + 0.026787771317182824, + 0.03557604418563213, + 0.03282172444092911, + 0.027200983115025102, + 0.03707059394823937, + 0.03815066785670759, + 0.03790293535011689, + 0.026662831815094698, + 0.03740271981720423, + 0.0306635869372864, + 0.034010631469610246, + 0.03149653107093526, + 0.03357642241822277, + 0.034053789111569886, + 0.03800110844417549, + 0.030272938301175792, + 0.02842230245407835, + 0.028313927252154546, + 0.028899122786035982, + 0.023354697605782827, + 0.027934034835935855, + 0.03242578232092703, + 0.03642497055844531, + 0.03159213795061318, + 0.029198728914927467, + 0.02804818299304596, + 0.03344100502261053, + 0.02862939865288714, + 0.033947755121227455, + 0.03243604592824849, + 0.029660372446246256, + 0.03572823146191366, + 0.03648118807942512, + 0.03252695513925945, + 0.03109186291005572, + 0.026333481374707264, + 0.028113477625427256, + 0.03723380716282238, + 0.027439771036923046, + 0.02886516608966294, + 0.031375746389549694, + 0.03169754875139997, + 0.025694055282501772, + 0.035268257913921096, + 0.03271014963877657, + 0.03591301951640469, + 0.026450864725508758, + 0.02909634298130788, + 0.031236720854347005, + 0.025005957832344102, + 0.03844036857773176, + 0.03496909984635985, + 0.026897805228689686, + 0.04213906993308156, + 0.0375746746867391, + 0.03789587953101983, + 0.027105382412644735, + 0.03133101641244209, + 0.031255577770718954, + 0.034127678977883845, + 0.02907942879515376, + 0.030011807958499302, + 0.039234274331280995, + 0.03435672908552569, + 0.0315148342436473, + 0.04068791982541467, + 0.02773396713084737, + 0.03458408791580978, + 0.03824562405013859, + 0.0354567227457863, + 0.034343319322559386, + 0.03100664576283332, + 0.033239677812322184, + 0.0441024250702993, + 0.03211729666377758, + 0.038684844080043614, + 0.03426959395852969, + 0.028642084754919882, + 0.02397331945888001, + 0.03319931311176355, + 0.042391256972593244, + 0.04071836917919252, + 0.03400735654254229, + 0.02985271113429017, + 0.03622497583833479, + 0.02897608544015275, + 0.03004069371497917, + 0.03351761681210801, + 0.03301125687787307, + 0.03272915343865823, + 0.03956111124899316, + 0.03673279167889204, + 0.030605712705435804, + 0.049503121849148804, + 0.04492066027501061, + 0.029637819510253828, + 0.028040090633041706, + 0.03166804588371712, + 0.02646802572664732, + 0.03453943450482804, + 0.030831910086858455, + 0.03271041278038208, + 0.03349896770540708, + 0.026522373789678554, + 0.033760155130385605, + 0.03580875427756024, + 0.030712298190607123, + 0.022920650178011738, + 0.03634589576947657, + 0.03604949363737594, + 0.030075406327524264, + 0.028203580140327728, + 0.031726462707408254, + 0.032805875005457785, + 0.03584594681146556, + 0.046738773876877075, + 0.03615973230873567, + 0.04318743771642695, + 0.03585174989479966, + 0.025355338303501916, + 0.03633747808575412, + 0.031411939513397186, + 0.03271857203329095, + 0.04962076176643007, + 0.02982431821069896, + 0.030654319531230725, + 0.03371010097190044, + 0.04057674888098054, + 0.02739762522120983, + 0.03056486921513782, + 0.03789327500231071, + 0.026480806032155395, + 0.030221521411410428, + 0.03046322026631066, + 0.03118304408165836, + 0.03331685077885848, + 0.03480906071425389, + 0.03479089980180387, + 0.02949698692481071, + 0.03169180704427651, + 0.0351295627332948, + 0.03395613577688359, + 0.03775942442447763, + 0.029272358538450748, + 0.026610328136197545, + 0.033722041788785524, + 0.03254809938061807, + 0.02961314278407347, + 0.033237098919901814, + 0.030259616277001727, + 0.0355329186244772, + 0.039846494203514805, + 0.03273124523074972, + 0.026885755867624133, + 0.03610144769032047, + 0.032492545430774566, + 0.029224615146042094, + 0.03617926563620081, + 0.029808026565396745, + 0.03752574832772226, + 0.02796687355346073, + 0.030027651803112218, + 0.03305696545881511, + 0.031373114366256685, + 0.038492637978623956, + 0.05192644381346444, + 0.033175347378107484, + 0.039566993468463846, + 0.03214461386909933, + 0.033014192918864566, + 0.03259251248405111, + 0.02640229359668249, + 0.03427970308130897, + 0.030799870399562602, + 0.03595946780808553, + 0.037001105411090786, + 0.027903599955834878, + 0.025971323345605077, + 0.03436421437486801, + 0.026938998719385772, + 0.03024804512095287, + 0.03486050797234746, + 0.02923495989691274, + 0.04224014582377041, + 0.03138629432108581, + 0.032687429026794924, + 0.02806156265726811, + 0.02902426608538399, + 0.03642475390866445, + 0.03643904255205033, + 0.03896899216448818, + 0.03932062868851294, + 0.03404704958347832, + 0.027313274519132846, + 0.031722955433245464, + 0.03272361695120961, + 0.034778534745524795, + 0.03086041397534438, + 0.02719434104117341, + 0.04252402243070987, + 0.029929513142338285, + 0.024852952045719922, + 0.028742656300320673, + 0.0437240096175914, + 0.035629583343354705, + 0.03450196032395864, + 0.0344598578078978, + 0.038653403271632386, + 0.027843005663034593, + 0.0375125628475139, + 0.028618248534598906, + 0.026736611938227576, + 0.03095017348496659, + 0.03638637571685208, + 0.031119321862695757, + 0.03239005298926282, + 0.04257064945142962, + 0.03444057531407688, + 0.02941147928403351, + 0.036210945705888536, + 0.028858071024022058, + 0.03739651680252323, + 0.03771183831365126, + 0.034091582607324276, + 0.0287694901026827, + 0.02896189078767344, + 0.03155860849635589, + 0.02662845153554702, + 0.030231993971893963, + 0.03377436028069806, + 0.02881633620606646, + 0.02941422996963138, + 0.02939146750960384, + 0.023217294864207868, + 0.04630820291286833, + 0.026667915124790803, + 0.035071426934903255, + 0.036612465941959195, + 0.0320708293233882, + 0.0370773448994279, + 0.03143318727411901, + 0.029762981446836367, + 0.02724942538857535, + 0.03303904484267776, + 0.028633163733462055, + 0.03968464905502619, + 0.036043818217698524, + 0.043484456947742736, + 0.03095118895494879, + 0.035161991381922525, + 0.03429318095993552, + 0.031397602718692276, + 0.04407809270999247, + 0.03148399540127236, + 0.03782196065349451, + 0.03909344477629556, + 0.027785328463470774, + 0.02923922201291257, + 0.025134911563785913, + 0.029754346677085975, + 0.03423560228671215, + 0.041689249154382976, + 0.036039276568095434, + 0.04004441884738741, + 0.035138882277349875, + 0.026764806309568595, + 0.032434024015961245, + 0.0352184845372592, + 0.0423327163276466, + 0.02939881226683241, + 0.022764338266817737, + 0.03384034309807925, + 0.027166617181261968, + 0.026198553693582524, + 0.031097991726263992, + 0.040522989608778565, + 0.040767326657552276, + 0.036531612943313495, + 0.03296991311622532, + 0.03618390299107675, + 0.05339327796802904, + 0.030084923074484335, + 0.03508625897601147, + 0.036110950597009216, + 0.040828760497893024, + 0.03213177952536104, + 0.03631699322008159, + 0.03184557021437032, + 0.03731740711610898, + 0.03448663699811291, + 0.0280736410637436, + 0.038550876946980964, + 0.030155815865799705, + 0.028012454756155512, + 0.031656851936133365, + 0.03502559123838594, + 0.04634735834412311, + 0.03150881328403583, + 0.028571413783275795, + 0.02965416734934776, + 0.035365113475505354, + 0.02220458221536197, + 0.0287267212551508, + 0.026585422501504138, + 0.030715706432560563, + 0.02639031142942087, + 0.03491076564162012, + 0.03358301362514954, + 0.02724885683863873, + 0.02610907006591601, + 0.029963422651147424, + 0.04372605937338352, + 0.02752173682390127, + 0.0237362037883865, + 0.033776082249032204, + 0.027855530851847606, + 0.03246775692202799, + 0.0288369155043034, + 0.030785435580811902, + 0.033549102325206914, + 0.02808600087148047, + 0.031244195646248935, + 0.033579641885604646, + 0.04705010864475634, + 0.03749589918401848, + 0.04339526453037386, + 0.033759077264494085, + 0.02714014974134812, + 0.032346313899601714, + 0.03928493889100291, + 0.03925114623188379, + 0.03359988092550815, + 0.03754240644550272, + 0.030534075709898453, + 0.03466510457982124, + 0.0323226626651891, + 0.036207432101866055, + 0.03404743843726989, + 0.026399662451797267, + 0.031676563835460074, + 0.03723265757756145, + 0.034916042907177744, + 0.03428617629200277, + 0.03162674955767201, + 0.027719929097004884, + 0.02872082635774138, + 0.0375399955257055, + 0.033789286670646186, + 0.028272655461895214, + 0.03454571074936237, + 0.03452939980360844, + 0.026351381514896622, + 0.03255883250192658, + 0.037197325966072524, + 0.03781720976610971, + 0.02814776214187721, + 0.023401325275385586, + 0.02796442694924033, + 0.028910342980007175, + 0.02770223978431602, + 0.02876795364347726, + 0.03548621854539939, + 0.045477503112145615, + 0.02668555924491541, + 0.026084011660933507, + 0.023434315551993573, + 0.036675278602322475, + 0.03469381661924835, + 0.026528650944348326, + 0.03192928008027028, + 0.03198408340249483, + 0.026429335630000526, + 0.03458698549027544, + 0.03154116474121876, + 0.030478906602118272, + 0.03381984683288009, + 0.03701940609871192, + 0.02883217131072375, + 0.03495511520525675, + 0.03515062816654829, + 0.03698549647483503, + 0.0315329292279909, + 0.036749311634936235, + 0.028507237798130993, + 0.0303782188218576, + 0.03126429519422807, + 0.03340112337460025, + 0.033988297556280855, + 0.03869961797459089, + 0.03092426024095065, + 0.03299599556048297, + 0.038981118081319786, + 0.030804185028223432, + 0.039316599189402036, + 0.031622348175709344, + 0.026773479382559178, + 0.03398323179310139, + 0.032164857861503984, + 0.026529423189682728, + 0.035960811688826345, + 0.02937204465195421, + 0.0313563779092793, + 0.030217625515594326, + 0.038665170335733114, + 0.04391373300201169, + 0.039122940783080644, + 0.03229942950585134, + 0.0339839582189528, + 0.03404659791048845, + 0.04070072757910385, + 0.028681558936656363, + 0.028433979374797597, + 0.042869199644066505, + 0.05576622251801386, + 0.02821621709313557, + 0.03295317757619741, + 0.03756929958866847, + 0.038897908785613056, + 0.03241752394276302, + 0.04204881488950069, + 0.028532082228080426, + 0.025369146527322133, + 0.034071108833285256, + 0.025584070797146998, + 0.029665531045069228, + 0.028259913116696803, + 0.029351405397484143, + 0.029125759247218195, + 0.03307555779651078, + 0.03335020977777346, + 0.025533188180288335, + 0.029982588013314767, + 0.027703718585163236, + 0.03109943571418783, + 0.022751905898435752, + 0.031128929092848402, + 0.037164670210120966, + 0.03683612216309883, + 0.03434054593494823, + 0.02912644787087519, + 0.027870340376006462, + 0.03276531911503535, + 0.03522621273059333, + 0.03639247858344851, + 0.038421497354599723, + 0.03474084190171368, + 0.039873903273150685, + 0.02808081601417897, + 0.027493699687552543, + 0.02375585600375497, + 0.041800946236895654, + 0.03023931120616721, + 0.02624559438286925, + 0.028604433525624005, + 0.032937600650744095, + 0.040940873313872896, + 0.03201622926294702, + 0.030686179892786956, + 0.027524367095918854, + 0.03724940845523558, + 0.028432625936998558, + 0.028553553300080945, + 0.038762138656045206, + 0.0445253690215742, + 0.033694726896515786, + 0.03280766352725477, + 0.033508051218406505, + 0.035975097267020514, + 0.03452233001409099, + 0.02983363279350842, + 0.03225784331936064, + 0.030489754324991014, + 0.03639095376391405, + 0.030185330642285083, + 0.03253796504207777, + 0.032453049925103464, + 0.02795079279505759, + 0.028922434327956582, + 0.0299976168169841, + 0.026891624483432765, + 0.03493227184785171, + 0.036279906573769824, + 0.03920227355682231, + 0.030840068062786562, + 0.03525719995705222, + 0.036098822611566, + 0.037125949837380545, + 0.030585581746143783, + 0.032934614801331835, + 0.029566748672625657, + 0.03284359156377429, + 0.0404847297421219, + 0.03556526884453952, + 0.0357101382153417, + 0.036095017493576076, + 0.031492934620482194, + 0.03862796677921177, + 0.028693859195386768, + 0.032314380222096525, + 0.0368199440108542, + 0.0364206056478409, + 0.03904769426973834, + 0.030258051953277576, + 0.03723933965118551, + 0.02918367682364774, + 0.0362576207319164, + 0.027634476808214077, + 0.028436221859301426, + 0.033270891605541565, + 0.02671489152048046, + 0.03198633757071894, + 0.03184858013451267, + 0.0292143760057243, + 0.029831239576184998, + 0.02941871351764566, + 0.033996670029128956, + 0.038059884872664124, + 0.03916878624612567, + 0.025059954282199533, + 0.045649833373155035, + 0.0323098807391344, + 0.03375903912376174, + 0.024651137046128757, + 0.04464476678669364, + 0.03611611206150221, + 0.034826468523024644, + 0.039384141985077004, + 0.03190922858815702, + 0.027900893035103857, + 0.026492920489979557, + 0.031552253742208915, + 0.028031010899048935, + 0.025802258558073853, + 0.026656961701449853, + 0.03982283839335208, + 0.03909628302539821, + 0.037635419501209424, + 0.031708874940680906, + 0.03180950601902787, + 0.028604384652483966, + 0.02916855081980481, + 0.025008124775223885, + 0.03642629010413244, + 0.029040276866962804, + 0.03335940552529032, + 0.030881269171844562, + 0.03411785483439003, + 0.03291370944067005, + 0.03258407465323753, + 0.030905908910093188, + 0.035974913298742965, + 0.038486706946048325, + 0.050946916552558584, + 0.040819679659526674, + 0.03414726303410229, + 0.024145179076532138, + 0.036722504920117284, + 0.02591264097337906, + 0.03283894524427492, + 0.03463790439989575, + 0.030601120798664967, + 0.06799804093825182, + 0.03296569666251481, + 0.030047644247894294, + 0.03804069693412401, + 0.046640127452035815, + 0.027497431396331404, + 0.03595845271819394, + 0.033165403072014155, + 0.0344205596632656, + 0.031146463282626227, + 0.029653798859580378, + 0.03144456092089261, + 0.03506425259089114, + 0.043601317135176496, + 0.03890762133859642, + 0.03494266699395083, + 0.034188996891270466, + 0.036230819124555176, + 0.03113009315375748, + 0.02732279631733377, + 0.028184927938031495, + 0.03414378066332184, + 0.030951686097787524, + 0.040449255417522964, + 0.02873742725876695, + 0.03721063742154015, + 0.03762810226459135, + 0.03259816516599597, + 0.03347979547084031, + 0.03272762575118372, + 0.0324059916434395, + 0.032220728851836036, + 0.03953246812660503, + 0.03490647403547386, + 0.03845931149566052, + 0.029283501923010272, + 0.03156931897396243, + 0.02846883499189473, + 0.03482277783684952, + 0.04285616029303715, + 0.03242050416325331, + 0.031845015076906645, + 0.029764280311036583, + 0.03118166302035038, + 0.054923764604792404, + 0.02985224916300063, + 0.02692390244804952, + 0.031550690282792365, + 0.03478132622664957, + 0.02916564303961586, + 0.03251085939554864, + 0.027420665722429956, + 0.029883857430229085, + 0.04189757276554109, + 0.03609945023885156, + 0.03369653405562281, + 0.03403619213936888, + 0.031937728526897594, + 0.04086120139379131, + 0.02794023886597354, + 0.033893886509920625, + 0.038180602049467716, + 0.02898707523286101, + 0.036988675905421646, + 0.0280854071657025, + 0.038240221797292195, + 0.028624260466653766, + 0.03688798288529755, + 0.037142019361743286, + 0.031915393305045614, + 0.03221458530619149, + 0.041587261694535554, + 0.03443509862639882, + 0.04289038723135788, + 0.03283290233744569, + 0.028059396095420897, + 0.029067296153047366, + 0.04202688114952976, + 0.03764748508503088, + 0.03552027218177451, + 0.03540683661769986, + 0.03722479716610307, + 0.03618094322313147, + 0.031013898287701853, + 0.03444849261366409, + 0.030908153832215707, + 0.03109456312894571, + 0.03294126280153425, + 0.032855609518220585, + 0.03290277649954692, + 0.031245309512797536, + 0.03391671194975426, + 0.03074004646243131, + 0.03175693168452985, + 0.040070389717975566, + 0.0335344526745406, + 0.030781337017633657, + 0.030415256816224194, + 0.0348460685518996, + 0.02986778183958961, + 0.04987102040728923, + 0.02943018074312033, + 0.025930080779046228, + 0.02540229440159571, + 0.03758340297657391, + 0.031044550431696814, + 0.035390419308448544, + 0.03855603794451745, + 0.028148851879928126, + 0.03386512724839303, + 0.031289169501981115, + 0.03265824691054524, + 0.026599042930687006, + 0.03698366449533294, + 0.036070043370981096, + 0.029501523659144196, + 0.04461425659232648, + 0.03583347411903439, + 0.03640216557593996, + 0.045389552818849245, + 0.035508645363426634, + 0.03434633197739508, + 0.027041184483095056, + 0.041145528087961084, + 0.03511382659365107, + 0.030544548198046622, + 0.033360532706626575, + 0.029431241083905667, + 0.030982231976140938, + 0.05306373133601579, + 0.03596980263637416, + 0.02403615236140704, + 0.02895292077446611, + 0.03113397626630894, + 0.025959209182791376, + 0.02959076099720797, + 0.03302139586713075, + 0.03428665337106584, + 0.03352037081996666, + 0.03095165745124634, + 0.03653527968988755, + 0.03391171416568989, + 0.030224138022590493, + 0.031777266197540704, + 0.041905822421303446, + 0.031005155780941734, + 0.03475170230486364, + 0.030512826415099503, + 0.041030736065761714, + 0.031403567497844086, + 0.027034335251783986, + 0.026277432687108904, + 0.03521083691558714, + 0.029266583701685854, + 0.0429223222110846, + 0.03371793709087455, + 0.027587125537762266, + 0.02727873703568143, + 0.029409914596068575, + 0.024029072170511204, + 0.03020985910345412, + 0.031830669038865105, + 0.029312089718315327, + 0.03226767975456857, + 0.027629959517071805, + 0.03771323793476669, + 0.03406839444674509, + 0.028851389043380873, + 0.03440455646841992, + 0.03300973177755624, + 0.0409390478847669, + 0.028438042353841966, + 0.02997758162635023, + 0.03480933622952508, + 0.029762840108591353, + 0.027003296447182225, + 0.03582073268243794, + 0.04087534759997696, + 0.02996493839352443, + 0.03806156757273278, + 0.03461185995637986, + 0.030313832246620088, + 0.03445374692808066, + 0.03155185552700438, + 0.02998351373396642, + 0.0292250345508225, + 0.03653018832271254, + 0.03029905589548702, + 0.023628623259591315, + 0.02925625891248556, + 0.04039642824364821, + 0.05254787346565422, + 0.03252017966118468, + 0.02505206524332029, + 0.03129293333773814, + 0.030043287832739934, + 0.03316882956982724, + 0.03651234147255843, + 0.03456469899731982, + 0.030562821951887996, + 0.0286657358466947, + 0.03214269714408539, + 0.030277777983876947, + 0.02960399582548081, + 0.03812164878867232, + 0.027925569621489784, + 0.02935873220842109, + 0.025862138995510847, + 0.030335016911170323, + 0.028515716746665906, + 0.029013526426889317, + 0.0313326104311741, + 0.03106969863875802, + 0.03511589586879334, + 0.032418208202497904, + 0.03333006152420705, + 0.03391820036606567, + 0.036740918639879674, + 0.03475884302573315, + 0.041078869403238946, + 0.02831307214160712, + 0.031899858166899886, + 0.0340519141029068, + 0.03709352132719883, + 0.02960946957293787, + 0.024885532583348177, + 0.02976882929535381, + 0.03891115811478, + 0.029771143035664818, + 0.035963504464608206, + 0.032521890171114176, + 0.04014564667563717, + 0.030593157244355827, + 0.033293132297618475, + 0.030853821495653275, + 0.03067060109446624, + 0.029910447829346383, + 0.03658868812002147, + 0.03539686122593293, + 0.02751089967939915, + 0.043727164043010115, + 0.03213987181460064, + 0.03673572203992113, + 0.030288839911113762, + 0.02986438302810189, + 0.033145081516687096, + 0.03533877299519858, + 0.026677400322840595, + 0.043442936143037084, + 0.055534354517380514, + 0.03813205806037604, + 0.026031540985690493, + 0.030463568772075466, + 0.034082538953792055, + 0.028319307291470242, + 0.03458554909978166, + 0.040990657717192285, + 0.04371134433643764, + 0.03078275882303117, + 0.02939832061359376, + 0.02817843449875086, + 0.039021537766122445, + 0.039079769633969995, + 0.0464373111493137, + 0.044974117081637094, + 0.032383985423736876, + 0.03397070688656479, + 0.038778643046306994, + 0.03116784980025077, + 0.035824025413356435, + 0.03251931078732483, + 0.030952131933077116, + 0.031666952582562774, + 0.031813176484854, + 0.033566327791460106, + 0.034433899381985204, + 0.04149494024478265, + 0.02954587155748802, + 0.03175903891761749, + 0.02475316954102397, + 0.04020890489296341, + 0.032885552625884384, + 0.02509924949389775, + 0.030443324906211343, + 0.029126863520353236, + 0.022084996866002474, + 0.03293921885012757, + 0.03848929716409081, + 0.03523652470173885, + 0.031305785187740506, + 0.026013473607351227, + 0.03361976372063753, + 0.038351289236301156, + 0.03826974404151151, + 0.0474777536206094, + 0.027595646023159674, + 0.02729404053068558, + 0.033479423785456694, + 0.038766923894762495, + 0.028268166199184246, + 0.03791177365913327, + 0.03568520300585386, + 0.0283907934963855, + 0.028167807004409306, + 0.02411006973619098, + 0.03192262503369728, + 0.02813901768922766, + 0.03367157340464131, + 0.03628475143662623, + 0.02645165889422768, + 0.03404539972508347, + 0.028099190219752032, + 0.02724218703425856, + 0.032321612991491486, + 0.024499270506161727, + 0.030375698483421955, + 0.030234261911082347, + 0.03190504709784548, + 0.02956077329063141, + 0.039307103411469126, + 0.03590682627659257, + 0.030586424340176433, + 0.03319939929686399, + 0.026373172613751713, + 0.039896740825503076, + 0.04230008838747398, + 0.03789543973694744, + 0.03451386842059597, + 0.03377316340995557, + 0.036333452823131815, + 0.03339114616306634, + 0.0295170707535449, + 0.03965440995455172, + 0.02816699830536136, + 0.027739599947886915, + 0.02922467201268944, + 0.029209012574054238, + 0.03467356555627656, + 0.029796824388144592, + 0.03131611919408124, + 0.02946251777674889, + 0.04475358731666645, + 0.03835211029262116, + 0.03211660888465781, + 0.03328549653222209, + 0.029914624797553347, + 0.026944122206858125, + 0.032697674551756414, + 0.028051395729684934, + 0.03173095650839452, + 0.03948745216704709, + 0.02568263733681386, + 0.03799982683707029, + 0.028579246314174342, + 0.02950056855064885, + 0.027589595931173414, + 0.027688038460516224, + 0.03233774710675333, + 0.03994054047785219, + 0.03495452740660009, + 0.034350170846179896, + 0.02895821789969023, + 0.030200043723135162, + 0.034996388959593554, + 0.025622486914867723, + 0.035370519460975684, + 0.032417440306108665, + 0.05322028365599983, + 0.033252291488041354, + 0.03889936795157771, + 0.028046907955014785, + 0.03666734046692952, + 0.040399115829562286, + 0.04186665898335543, + 0.03327373988722242, + 0.03248844285159633, + 0.039794401833504356, + 0.03298078554343277, + 0.02500479608671023, + 0.03693444239642203, + 0.03788876664497907, + 0.03139607166908431, + 0.02868383402259015, + 0.030150527517188764, + 0.033411929782428317, + 0.030230642228896043, + 0.03163749051429152, + 0.03319883435773759, + 0.028799022935003686, + 0.030643653707062925, + 0.034473467761971785, + 0.034299861911761056, + 0.03578470274244906, + 0.03147674513956195, + 0.029886238342183267, + 0.03651416509145945, + 0.03466310396700184, + 0.037202810821714075, + 0.03378260814977904, + 0.041026394720658894, + 0.034231872019260486, + 0.047720770846386165, + 0.04221351490775427, + 0.03863001334997792, + 0.02542551990963971, + 0.0506612311699943, + 0.03499486007534971, + 0.03460654254707504, + 0.029888310992408552, + 0.033575951838003, + 0.03418362013898446, + 0.028917533844529823, + 0.026760695704356005, + 0.03750076127798096, + 0.034937234138281044, + 0.03651467853704308, + 0.031908110685268234, + 0.03102385381527358, + 0.03204186087070638, + 0.028646300077600533, + 0.03415574714391062, + 0.044849566099531446, + 0.03694268335325384, + 0.022897602230457205, + 0.037393501131947296, + 0.030096772681475294, + 0.02679149144412852, + 0.03188476543191755, + 0.033210812540258594, + 0.03710950673207818, + 0.030824136886671783, + 0.04765579532746531, + 0.03084615450645385, + 0.03643555190280026, + 0.027362825856217254, + 0.0443867709572888, + 0.048106129556160684, + 0.028127182119563658, + 0.033205628491357504, + 0.03377192431232135, + 0.037194136527779656, + 0.04256834281590993, + 0.04738470983149801, + 0.02943302008705409, + 0.03906401404341473, + 0.03094334738270926, + 0.027814031382195632, + 0.03210948419655237, + 0.03400254073555083, + 0.03722528488443112, + 0.03012351436452513, + 0.026947815078331286, + 0.029568617804897702, + 0.04069199277160946, + 0.025845589579137327, + 0.03497875670019438, + 0.031118241481441555, + 0.03318446940748425, + 0.026949748897420123, + 0.028774802811445267, + 0.0400362054052737, + 0.034167069475705455, + 0.03053495428935639, + 0.037450928633146925, + 0.037146701313566545, + 0.033842888116113495, + 0.025533130681847573, + 0.03541040187866786, + 0.030601689782871665, + 0.030971071483152247, + 0.031204395528406977, + 0.03713595346208901, + 0.028889867252323207, + 0.030378580289351368, + 0.0261081157748381, + 0.03506959868292491, + 0.03313822376399753, + 0.03508299623571994, + 0.039359194779210835, + 0.031907661899730724, + 0.030143282089886706, + 0.03343534514219543, + 0.042961854011907025, + 0.02846197239812908, + 0.027712290765074706, + 0.02602656116150605, + 0.043954917519710535, + 0.029765613815509448, + 0.03011170030849638, + 0.03715204303719331, + 0.02774995619523754, + 0.02722541084162133, + 0.03316641767056292, + 0.03238935402731761, + 0.03185758659368827, + 0.025135116883216357, + 0.03355239831922444, + 0.030922268677568483, + 0.03058810567642576, + 0.0356179790820488, + 0.032233422874066324, + 0.036123173290149246, + 0.030624102593682836, + 0.039157802823028325, + 0.030058465412516625, + 0.02975241563903793, + 0.03781979232242278, + 0.038568995921942115, + 0.03207055765383094, + 0.03211712640234478, + 0.03501101773680286, + 0.038535590446984666, + 0.03251379225296392, + 0.034892375109715004, + 0.02985118983767663, + 0.0317992384712414, + 0.030623591621675956, + 0.026324069985169896, + 0.02946795386150532, + 0.04335829021800538, + 0.04021647829914625, + 0.03588375698442115, + 0.030074261409470726, + 0.03615383350717803, + 0.0421458827257989, + 0.035473612512642055, + 0.04398001700360119, + 0.031264094911247944, + 0.026889170269511726, + 0.03870045392717722, + 0.032252789457905405, + 0.03177678374340321, + 0.026685219142653913, + 0.026470984974485426, + 0.03162076513771908, + 0.0297218845626831, + 0.04672196246813995, + 0.03477774246453058, + 0.04021988153115837, + 0.03266824001059568, + 0.03415214669900077, + 0.03364172042286301, + 0.039802215188920693, + 0.037330296432422944, + 0.03104843901645439, + 0.031598917484953984, + 0.033629659472496506, + 0.03390328665251148, + 0.025935355305695126, + 0.026158951030329145, + 0.038943940207948356, + 0.035553260389168666, + 0.02909772087319238, + 0.038169102704475995, + 0.030918666729164598, + 0.0388241989383516, + 0.036390588864078005, + 0.027639772349205997, + 0.029310882948828446, + 0.04095132594578938, + 0.023916533096086358, + 0.03741034750224634, + 0.035872358562377644, + 0.026617700403049137, + 0.03215845880762117, + 0.02975167704880176, + 0.030098819395223166, + 0.023236542775199303, + 0.02710121315944, + 0.033629119709542986, + 0.029373311191951742, + 0.033978058107232, + 0.03323180979263005, + 0.03630466870289074, + 0.033579791338924775, + 0.04093163824363753, + 0.029010630530851966, + 0.036807059782973675, + 0.030935579345428364, + 0.03599498243782791, + 0.026121497358686987, + 0.029567326787839646, + 0.024021986225581146, + 0.029911860757005665, + 0.034878721425956084, + 0.02836074612866577, + 0.03556373667191182, + 0.04137089848918424, + 0.03495854633776864, + 0.02802744337646079, + 0.03507501928975531, + 0.040507838650865734, + 0.042223498913504756, + 0.036342787022851895, + 0.036780047078215694, + 0.033697878904759455, + 0.031246788893077946, + 0.031262018080319066, + 0.03437775765628215, + 0.047473850698993056, + 0.03799626383381789, + 0.028159503918912147, + 0.03156657724562151, + 0.02540564570736473, + 0.032113368611515106, + 0.030920588456511452, + 0.032983046359607734, + 0.037079001092236566, + 0.04001784470684331, + 0.041800172183558006, + 0.03466894921392182, + 0.032661201331652935, + 0.030959915954760834, + 0.028561026592029717, + 0.034302355990336326, + 0.03915187993406711, + 0.031346459766131096, + 0.03764103144132925, + 0.033052655208266654, + 0.037966254812679325, + 0.031717297647018645, + 0.02829818082412745, + 0.029802898704065505, + 0.0359876417833689, + 0.03569219693929439, + 0.03689911665116, + 0.026254644757166098, + 0.028882385920258078, + 0.03152452349092811, + 0.03371253595761099, + 0.030670973252950397, + 0.028127983088693673, + 0.03459280893188809, + 0.03073948428426321, + 0.036794794815579374, + 0.03801837554427667, + 0.03630874042699983, + 0.026279343306540987, + 0.028287845586851525, + 0.03826151385698696, + 0.03997790738996333, + 0.03598191433986421, + 0.027465284565475184, + 0.04087863615382034, + 0.02702755613701417, + 0.03364998374810662, + 0.03515652549787168, + 0.02633469522214897, + 0.025395513570597005, + 0.035906863489942244, + 0.030919206378223558, + 0.03177900098844425, + 0.03958702729945181, + 0.026800537074021902, + 0.03762644641975294, + 0.034414504273255216, + 0.03266034454439915, + 0.040127972112976217, + 0.02807914697934108, + 0.03062386699700377, + 0.03305728838526671, + 0.030674428577472965, + 0.03279723241348417, + 0.028677225383417906, + 0.02952067318846892, + 0.031609268804356015, + 0.03001071898627619, + 0.029151986223433592, + 0.03639886506056422, + 0.02919223477401108, + 0.03544484057631178, + 0.03578075252145855, + 0.029155358629894445, + 0.0298944553245688, + 0.03499343761294092, + 0.02940183588892775, + 0.027598201139801676, + 0.026846024406736183, + 0.03966956273671035, + 0.04621398466697546, + 0.03540806888102679, + 0.03218280708514531, + 0.033145659488647235, + 0.041100116272442526, + 0.035062894323226686, + 0.036797890519294704, + 0.04160837397970951, + 0.030895598866285064, + 0.04736119242354615, + 0.04463625816944914, + 0.027876347129272977, + 0.03405055498771791, + 0.03858294169139009, + 0.033256028983879034, + 0.036688123712648464, + 0.035732539358779354, + 0.03522354748351952, + 0.030559820009710137, + 0.03509217194533769, + 0.030540469596674353, + 0.022598931926300563, + 0.04043481267732372, + 0.033003827243578365, + 0.02942128491449992, + 0.03001003329985617, + 0.028909951316102522, + 0.03610403024729118, + 0.027234005714588304, + 0.03523869074981032, + 0.031076524978876828, + 0.033311834644171916, + 0.037963464527042176, + 0.035716951681137456, + 0.031107580588704862, + 0.038241453520874255, + 0.03357983308232454, + 0.031425763465668846, + 0.03627859053344667, + 0.033390882024364, + 0.04152341490300512, + 0.0314681725028556, + 0.03271779706884461, + 0.03475678415888243, + 0.028129724988827223, + 0.03813948048557623, + 0.03687097139068071, + 0.03504594226052613, + 0.030134831381097814, + 0.02669501408079944, + 0.02970714984591415, + 0.03404444684757365, + 0.026786701818470482, + 0.0453787270359513, + 0.0332147858831866, + 0.02995163504879962, + 0.03168883207401113, + 0.02880814052885871, + 0.03146517187595105, + 0.03413811359481216, + 0.04080277129007469, + 0.035509436599279624, + 0.0292827768149374, + 0.029423934024234436, + 0.03423074494248393, + 0.031462045201630096, + 0.027578965913690814, + 0.029058055169193943, + 0.028738552267518192, + 0.03488557784838792, + 0.035000721965477884, + 0.04678875921561054, + 0.028347183568971937, + 0.047438624573147396, + 0.036073418766424496, + 0.03308882445742523, + 0.03160827444966336, + 0.03187053687610448, + 0.03374552660791637, + 0.038587128563292473, + 0.04185717033819106, + 0.031695387045265984, + 0.028761586694168534, + 0.03687890569482791, + 0.034214596525074734, + 0.028575434624531014, + 0.02474237789914695, + 0.026504566507590362, + 0.03985620319306151, + 0.027652029706453047, + 0.027651632081555622, + 0.024043349013439883, + 0.03648873475684296, + 0.030073884102145666, + 0.0380979891406754, + 0.02828744278823142, + 0.0352874509017359, + 0.04610272743599947, + 0.04148559204202911, + 0.035957408284225445, + 0.031458815072940266, + 0.03370350799040008, + 0.027574331360744265, + 0.03097920681798446, + 0.020336569619639096, + 0.03994253408173986, + 0.03518209267576869, + 0.05348397991576337, + 0.028251955145566894, + 0.03651095174714868, + 0.02666155621239721, + 0.04157679756170269, + 0.03926430764276837, + 0.031423093788572436, + 0.038780367856903496, + 0.036528033925338384, + 0.03292759001471626, + 0.030982261944713648, + 0.03203837709651302, + 0.028509933160751982, + 0.030875474971079314, + 0.03509060149949424, + 0.035317628176525756, + 0.03729491543438763, + 0.02948011038351014, + 0.030151678931891086, + 0.032337821145127045, + 0.03970911857325217, + 0.025018720138866572, + 0.03396714541739434, + 0.03866784546363589, + 0.02262694994777095, + 0.02859032320906764, + 0.03154808861642654, + 0.030253039320667436, + 0.030326221903754277, + 0.03898113378770668, + 0.033321756734161594, + 0.03525756657343215, + 0.03640886851444647, + 0.028069566157034757, + 0.032499257538287515, + 0.0292386750534239, + 0.032726026812392395, + 0.03010814869257604, + 0.03706421768974737, + 0.03828082688797144, + 0.029824022338892475, + 0.030383056252428042, + 0.03310102745729878, + 0.0317718962452252, + 0.03915154720837189, + 0.0409018545449776, + 0.03574566206201338, + 0.03093161854420012, + 0.03224550018677131, + 0.030334519756195107, + 0.028610387405373347, + 0.02836396682209706, + 0.03334113423630485, + 0.026845609492295218, + 0.02979814034641465, + 0.027572433330866824, + 0.0375635461774091, + 0.04711538890156816, + 0.03757657351081173, + 0.029407192863674485, + 0.024839357633755974, + 0.029662856697266655, + 0.03011922854159593, + 0.0357379082515848, + 0.040643156559461505, + 0.03635448134539834, + 0.03110479527637331, + 0.028436567960164947, + 0.02848235391584457, + 0.03359745387084422, + 0.03441052159653032, + 0.02665332294350061, + 0.02793084232555274, + 0.03281783665674656, + 0.043137196337637525, + 0.03048073309187879, + 0.028961695002480296, + 0.031800535882184185, + 0.03726939765085183, + 0.031173297855293342, + 0.036399726868541454, + 0.03686677093406907, + 0.032941806597833016, + 0.03638380646184588, + 0.03292889125850548, + 0.03160856369538056, + 0.027422574061959328, + 0.042640792448954676, + 0.035196904575821905, + 0.024412935972716474, + 0.026301067593720154, + 0.03224267256520266, + 0.02800751510249755, + 0.03262719140136168, + 0.02661713460043945, + 0.03543681113615295, + 0.03210982339457509, + 0.03291295700934919, + 0.03277029164254122, + 0.032176191196664206, + 0.03084708746741219, + 0.04080662552702147, + 0.033378465441052385, + 0.043443183384658905, + 0.028533694666821516, + 0.02952507104774454, + 0.03167167530398054, + 0.05191713257451475, + 0.038329176892228645, + 0.03014474326022869, + 0.030550373611576028, + 0.03704556500784094, + 0.03325083040659916, + 0.041820608314312877, + 0.034223207106655155, + 0.036925051034243254, + 0.03216926015104071, + 0.033006150447658256, + 0.02667876833730542, + 0.027505784535903646, + 0.028551306162457064, + 0.03321955004375372, + 0.03238344165858048, + 0.04429127670346131, + 0.03974393249705454, + 0.03146626488126363, + 0.03647588769341569, + 0.02879446843099001, + 0.035007207648132505, + 0.04066021371813793, + 0.03112279206390577, + 0.039725040382656666, + 0.029420473322773106, + 0.034357886998815264, + 0.034796353583576, + 0.03871991309123764, + 0.02661598977231189, + 0.026266718407357094, + 0.03876296329159795, + 0.03415422367849315, + 0.03084172673701404, + 0.043873757415516766, + 0.036815912398655136, + 0.04080001494197607, + 0.031902943725838045, + 0.034004254884474214, + 0.028723378723729005, + 0.023404454700149784, + 0.032752926672305546, + 0.033801780918733, + 0.03155292020439637, + 0.03601192464429425, + 0.03618964322898385, + 0.03447999322073268, + 0.029843385767712807, + 0.03757167393239528, + 0.046230090700722044, + 0.030648264631283804, + 0.03841859848619402, + 0.032221621505220246, + 0.029614356583392842, + 0.034962077710653496, + 0.032975901251596176, + 0.03996613931806303, + 0.03336280182830268, + 0.036474964358278926, + 0.03361384090045543, + 0.030378758789397352, + 0.028566827822133274, + 0.0302540729293536, + 0.035163582023992626, + 0.029728018003539202, + 0.035717536447072464, + 0.027250624687969488, + 0.0416128491009336, + 0.030808022825010373, + 0.03669763388013551, + 0.028706973104603344, + 0.04047537634815319, + 0.0389476203372935, + 0.02826512393473194, + 0.029179484362824425, + 0.0385308764915732, + 0.026747967748003487, + 0.02585911555437084, + 0.03152530101694484, + 0.029879983951845643, + 0.02943363359908079, + 0.031162905546601217, + 0.03647544691330651, + 0.03178306145088272, + 0.03226078871482133, + 0.03594374329560397, + 0.03321375028531564, + 0.028929527967215072, + 0.031050472292530485, + 0.03702755225892909, + 0.027521348998464635, + 0.030031412522022446, + 0.02747652320359145, + 0.04990721379577303, + 0.03921201435758991, + 0.028088323281399073, + 0.030512893148308382, + 0.03315800284984104, + 0.02997627818940424, + 0.027349586087924996, + 0.036682085311144745, + 0.03397158273386814, + 0.03917798747957782, + 0.03428489370063356, + 0.03636252623932956, + 0.031651884827929175, + 0.0345481063179811, + 0.02776792053101581, + 0.038189411917665776, + 0.024215539032422996, + 0.03609555827085982, + 0.04231582123355716, + 0.02880355940317606, + 0.037621553096580676, + 0.02973580603042572, + 0.02800187514667057, + 0.037518799708402155, + 0.036360095580118525, + 0.02768587962447829, + 0.0333556519629998, + 0.026207651262013583, + 0.031128421107164676, + 0.029753463111974004, + 0.03352657392232248, + 0.03179310663904999, + 0.035370290099071465, + 0.032804299115986264, + 0.0323149241439213, + 0.035633760058442925, + 0.025935360304240925, + 0.03681991450282173, + 0.03321554634445964, + 0.037347294856875816, + 0.039413638036074505, + 0.0324605848431565, + 0.026574112372834854, + 0.033133954678940855, + 0.030283977150243557, + 0.03843842816500901, + 0.031229620126743088, + 0.028220453260632265, + 0.04111856676670867, + 0.0327243943063873, + 0.028556914616550057, + 0.033344763094512266, + 0.033025721162897585, + 0.037940308784869176, + 0.04168599048514481, + 0.026082792221853827, + 0.03395882784245465, + 0.03378649582197306, + 0.03188483226079376, + 0.03252419591217225, + 0.026292134557416698, + 0.040276356851796764, + 0.03780506568526853, + 0.0387801250040192, + 0.03162937604499788, + 0.03786822760896804, + 0.02714255405178557, + 0.030228127883153738, + 0.03651750349888706, + 0.04216995045108234, + 0.032892160360722074, + 0.03273227085656242, + 0.026065729876245277, + 0.025838552625536023, + 0.027099595134582412, + 0.03363554000968086, + 0.03150189974266476, + 0.028444041652781516, + 0.032675554032943185, + 0.031454898237540066, + 0.032674238617389405, + 0.029081811230328537, + 0.03096999636562099, + 0.03269666427492149, + 0.03786049959011666, + 0.03277675280931056, + 0.03392255563499216, + 0.030535095685366997, + 0.03640675365245598, + 0.032891776580423505, + 0.02973302451242729, + 0.036327285298057656, + 0.031424215837865345, + 0.03021187302132277, + 0.03470385276493886, + 0.030799231498537027, + 0.030855583533371124, + 0.024662946569514125, + 0.030788019641799644, + 0.03047627931891304, + 0.03601873003369632, + 0.028159390792511212, + 0.032506586642926084, + 0.030557459630488972, + 0.03412678667999877, + 0.031523406535380286, + 0.02997964617018945, + 0.03857509276818369, + 0.03124332678675569, + 0.027558102501319903, + 0.027096097452768503, + 0.03377730647319989, + 0.03742139051905279, + 0.033053357620646165, + 0.0377188841785723, + 0.027102118896264016, + 0.03781749297966692, + 0.02270614333593963, + 0.037353562925800124, + 0.03825565911180058, + 0.031169502551680182, + 0.034720485200725563, + 0.02852799860147799, + 0.029608199195996877, + 0.030760683509337115, + 0.02933399400664443, + 0.027932657472729095, + 0.03584307577175784, + 0.033783902165364685, + 0.03889697617395816, + 0.03742019860472688, + 0.030411953220409557, + 0.03734425751854311, + 0.028585993441687985, + 0.03935899068477171, + 0.034756753706677426, + 0.03292167182470096, + 0.03495782602027848, + 0.03220441495075715, + 0.03423506103466681, + 0.03392833206464198, + 0.04161069869492195, + 0.033330428914047534, + 0.03174951622324006, + 0.03276601998864752, + 0.034219370398803746, + 0.033489940552316966, + 0.03346864679721344, + 0.03269482706730556, + 0.030822335516611635, + 0.02491306603248826, + 0.028172162198604207, + 0.03638787819802302, + 0.035246265325307266, + 0.042025395423282604, + 0.043204085880446136, + 0.03340715694353823, + 0.03736900870574952, + 0.03560225674316866, + 0.033964703155096684, + 0.03557716907200931, + 0.0290418682000139, + 0.02882620797677157, + 0.037875768015788895, + 0.03339708049487844, + 0.0332696817803103, + 0.03129674364171644, + 0.024403343214023324, + 0.025263198779751386, + 0.030305052975994666, + 0.03145935167458676, + 0.026327366885148848, + 0.031914023395416526, + 0.032295355971905006, + 0.032093875817439624, + 0.028060326838925738, + 0.031916511072728665, + 0.031265156559689235, + 0.04391181330152455, + 0.03673580748669015, + 0.035951549349441184, + 0.023663151325193834, + 0.02708345039593644, + 0.039856145920017426, + 0.03513843848051522, + 0.027676067130188695, + 0.04494950263582765, + 0.0262185133507193, + 0.02648590478169066, + 0.029527348724928532, + 0.03356639062886779, + 0.029771828469477808, + 0.037243253741969004, + 0.03833131754212166, + 0.03467991753506127, + 0.029032968347470448, + 0.041010529987812974, + 0.03275002509808228, + 0.0529252867436218, + 0.02880417950834794, + 0.02607055684094137, + 0.03431105449298092, + 0.034037950543575064, + 0.025018884835679375, + 0.05027442076113088, + 0.04106106699960046, + 0.028493969538814216, + 0.04211667649691202, + 0.032964527490049765, + 0.03339376423542498, + 0.039290422013163594, + 0.028517363203847897, + 0.03205973441115699, + 0.03194589713545811, + 0.033283773187570864, + 0.034448135349306394, + 0.02622562075782087, + 0.025868263242687452, + 0.03829205860043405, + 0.029523849529012623, + 0.03719673149785046, + 0.03447630126258836, + 0.031430469700377744, + 0.0300742850377191, + 0.03844089826033006, + 0.02940145701818318, + 0.03571958440332314, + 0.033235677671842385, + 0.036201115653768184, + 0.03148367315756828, + 0.03588441021521131, + 0.03548278596948841, + 0.02430197688511977, + 0.03735023499355036, + 0.028608442415373997, + 0.03013294861328287, + 0.035542040827791006, + 0.0320475575767824, + 0.02930734458095906, + 0.024268795174434064, + 0.04099328210368796, + 0.040002100133335466, + 0.027767092321010774, + 0.027249988526477663, + 0.03816547202252427, + 0.03470641231148942, + 0.033854469813667534, + 0.02824357943830541, + 0.02978423218226154, + 0.03784609442143447, + 0.028787691995543183, + 0.02953041286182216, + 0.032181514945634294, + 0.029648300900283517, + 0.03507656715542532, + 0.03346435352176247, + 0.029912437837046873, + 0.02846146942697034, + 0.03254691726011464, + 0.02969514626264074, + 0.03352853528787328, + 0.03244026551649637, + 0.0317265447226658, + 0.024261545278379502, + 0.02875893073489961, + 0.029089009261292695, + 0.04716732556923585, + 0.027281999600487845, + 0.03666262983188388, + 0.026925497528247747, + 0.029117499642230118, + 0.03978506210014447, + 0.03484317553375924, + 0.04175031409787898, + 0.03395450188074399, + 0.04416827503623655, + 0.03839016319358124, + 0.027334371588205748, + 0.0369513905959551, + 0.030464513420146853, + 0.04025168440966492, + 0.03232350974871321, + 0.029420014764298758, + 0.031140900885568944, + 0.03887545706905441, + 0.03917805350497429, + 0.047474253950171644, + 0.040839588356087635, + 0.027295932915013837, + 0.03129345594760949, + 0.03336812627309065, + 0.04070989302344724, + 0.03751608295696672, + 0.04450856582115736, + 0.04215559089595419, + 0.038608222257974015, + 0.033302929885103645, + 0.032643988640517575, + 0.034373476505141345, + 0.04704629571200574, + 0.030612832301815968, + 0.037256269283342386, + 0.03149483452512715, + 0.03666235753338928, + 0.030779233084026067, + 0.03465110903668059, + 0.03938182934298942, + 0.03139754978575008, + 0.028642844435575215, + 0.03047520301190366, + 0.03869073536012478, + 0.031666952562349436, + 0.034535085991962255, + 0.028132630483880983, + 0.0354477761104487, + 0.04205588124790183, + 0.03566863903445332, + 0.03550958734312345, + 0.0375661618238648, + 0.03223650854002733, + 0.03231834196274145, + 0.02429200367221774, + 0.0316161550404614, + 0.04537513873565816, + 0.031015387869167018, + 0.02438133378771136, + 0.03385684584577862, + 0.03578689451605999, + 0.03553273807742615, + 0.02588039788547368, + 0.031517234476784076, + 0.028638046120998885, + 0.03233694543530415, + 0.027830631285916427, + 0.03479951312374129, + 0.03137861110236968, + 0.025955196674477297, + 0.028098148504583823, + 0.035468255553258665, + 0.036965160183023225, + 0.03396901786493159, + 0.04148684279405645, + 0.04938139517977914, + 0.028938926455356725, + 0.036364789555340386, + 0.03160285424392573, + 0.029526453565117756, + 0.03248166654822536, + 0.04026699652051653, + 0.027712180337608475, + 0.02720079204054212, + 0.027535190996058934, + 0.03815535431184262, + 0.03367347114526399, + 0.029269315060997662, + 0.03138555942228258, + 0.03908681701727419, + 0.034334944458568294, + 0.03430326492381355, + 0.03902658958561577, + 0.0346689574146111, + 0.034199938812112335, + 0.02857183462729625, + 0.026304436802393062, + 0.029017937523276444, + 0.03908797612976629, + 0.033202199401108204, + 0.04320176894149683, + 0.0323541400364587, + 0.03448331379824041, + 0.03466926203050258, + 0.03522527392931569, + 0.02782142279154186, + 0.055060187259100106, + 0.024933863983262288, + 0.03906660646444484, + 0.03597963281108999, + 0.0313941983439109, + 0.033651800552287205, + 0.028689350196972916, + 0.030746506305274895, + 0.03715205431362176, + 0.04127524255137386, + 0.036352921137010705, + 0.03497660047717365, + 0.03259502646996658, + 0.03647272968907414, + 0.03421941483261014, + 0.032454369124395886, + 0.03175256375433981, + 0.04011623755879988, + 0.033979059495789714, + 0.04644284195270513, + 0.035784382093588446, + 0.03828976420323953, + 0.021494607324159698, + 0.025406663776775328, + 0.03680473836996582, + 0.03695986578303219, + 0.027055637532182333, + 0.03198994642806777, + 0.03811237704016531, + 0.04312626698091542, + 0.03326104557591142, + 0.040238978861334866, + 0.029571437573992936, + 0.037336818281960935, + 0.03225692970674336, + 0.026369728415619183, + 0.029802233237170694, + 0.024836602692030026, + 0.025155109950782562, + 0.03364449264374097, + 0.02755385938911089, + 0.03837300757084947, + 0.028685408981981103, + 0.03332941531761189, + 0.030093445732421797, + 0.043622697208338175, + 0.03399748826699097, + 0.031777082648934925, + 0.04050194443143365, + 0.04229440712262454, + 0.03372276784625348, + 0.026704432508072435, + 0.03294695886500767, + 0.032079932290910704, + 0.03177356251592205, + 0.04795868000864204, + 0.0300728883983216, + 0.033750788911738834, + 0.03957052329566903, + 0.032924922665829234, + 0.03458498366434518, + 0.03230253007876703, + 0.029660002853124985, + 0.03791278195800079, + 0.03799933853501183, + 0.03380117461724212, + 0.03068695341156787, + 0.02772165845364669, + 0.029150554263669862, + 0.038695681414942396, + 0.03934043290610719, + 0.033975792705152004, + 0.02978830309151294, + 0.0326983236522522, + 0.033017119814086344, + 0.0346311270696669, + 0.03500543706470116, + 0.036433726832416906, + 0.03373556629062286, + 0.03987195255730508, + 0.030316005822748064, + 0.03833597785383034, + 0.03394432259334309, + 0.03616175222845966, + 0.027136498597625215, + 0.03596943644665458, + 0.03161048679884304, + 0.034729115315579914, + 0.029452648843341367, + 0.029664407337681484, + 0.038717205194481956, + 0.03853472502243387, + 0.03678971199417395, + 0.026885858998972452, + 0.03327709369594095, + 0.035867319522569996, + 0.030849286918695085, + 0.030831260412805928, + 0.03279662368729977, + 0.05449570905856422, + 0.033747237996622, + 0.03131438473451025, + 0.043398022886202765, + 0.03284845987769386, + 0.037577808203867885, + 0.038196514662433644, + 0.036969958919704296, + 0.0324976349218824, + 0.032237108621172454, + 0.027364025550046564, + 0.039251116563970886, + 0.03426026694686632, + 0.0346718601682415, + 0.030223531317247122, + 0.021747975540375022, + 0.03815477495993615, + 0.03689320196228173, + 0.03693483262972827, + 0.03488831124631814, + 0.035538541786127295, + 0.037848013627743385, + 0.026508267118769666, + 0.031016551502690275, + 0.031358271921380534, + 0.029788816421504237, + 0.03434248302327851, + 0.03932870976475282, + 0.04304493840524903, + 0.03396257939825275, + 0.04679671524770865, + 0.04388270285024252, + 0.03055943082922945, + 0.028459935307390095, + 0.030069417756133334, + 0.04773345128350608, + 0.029081647825737113, + 0.03640333309215476, + 0.03210264723096772, + 0.03021445912147607, + 0.029779793109480913, + 0.027391367780826324, + 0.034669789481376716, + 0.03376339862018078, + 0.030193477788098187, + 0.028140564096350944, + 0.03520131689209166, + 0.036372882439455, + 0.033983947335749415, + 0.03288824756873262, + 0.037024987861398295, + 0.02613972570381431, + 0.02838078999214924, + 0.03532262298381898, + 0.021939984683483307, + 0.029782999325249845, + 0.029813102555231265, + 0.03075048568929064, + 0.04280198606061649, + 0.031658590266766054, + 0.026377262686048134, + 0.029833501239055638, + 0.03542252549285374, + 0.029166066792769278, + 0.033557133340653564, + 0.029949598788793042, + 0.030611653900443004, + 0.026313544604030053, + 0.03461346056754369, + 0.028049852287249367, + 0.03267061740349504, + 0.029593368231446576, + 0.03269057143445263, + 0.03333657120159385, + 0.03769538697847905, + 0.03426215646827231, + 0.03506047432709584, + 0.03488058138283023, + 0.027848567194588666, + 0.038476507868717855, + 0.03011329133170039, + 0.029718308738686458, + 0.03249016690200438, + 0.0240734873964698, + 0.037859706467943316, + 0.04379007702525269, + 0.03908337849660737, + 0.027112456914499854, + 0.039239573405287435, + 0.03834759070469355, + 0.02922977236768356, + 0.039157164725482176, + 0.044046616007144754, + 0.03758259447054985, + 0.03448540805396161, + 0.026855693429961403, + 0.032786164831029155, + 0.03979147021712668, + 0.04192757940475693, + 0.029656127591205887, + 0.028842329600623585, + 0.036284868371415924, + 0.03407515139510629, + 0.03373420713407873, + 0.029323026801036454, + 0.037118755357754156, + 0.035644557408933956, + 0.024858870799044266, + 0.028675999383300923, + 0.024883459897955634, + 0.04951656529367642, + 0.035741124609117624, + 0.0313377979975398, + 0.029313226913552794, + 0.036832696755198985, + 0.048986107828456874, + 0.026096326646982484, + 0.025372671279879834, + 0.03025787287169797, + 0.036412191118509706, + 0.04031566263824227, + 0.04288720078718998, + 0.03111229735469642, + 0.030147088531618984, + 0.025452870739752245, + 0.04578387446525426, + 0.026957008363722505, + 0.03333855637152006, + 0.042295304993722395, + 0.05035963792112866, + 0.03130351305026687, + 0.0330575034689702, + 0.032717645434418144, + 0.03182013303243403, + 0.03296337679468871, + 0.0275246592230191, + 0.041758279280327, + 0.03277405949874468, + 0.03409315491697044, + 0.036718397930787655, + 0.03394099781645042, + 0.03437220290423057, + 0.040877291128161325, + 0.028912046010853357, + 0.03062695384368688, + 0.029165459009530617, + 0.02948189209670143, + 0.054418235232273966, + 0.028493775803737152, + 0.038958410679500545, + 0.0422017391130072, + 0.035263151777420815, + 0.0355589900811783, + 0.03201974913807022, + 0.04078780135624761, + 0.032992176101986945, + 0.03446182826520245, + 0.031797118619007254, + 0.039021750673966765, + 0.030426168316202085, + 0.025788951782186223, + 0.02975005261149993, + 0.03415830914634874, + 0.029868160383057188, + 0.03131054351874996, + 0.03198858934477924, + 0.04469479598187681, + 0.038410052985304706, + 0.027475015693020428, + 0.029870209307560833, + 0.02566119543403826, + 0.038270563077599865, + 0.03489048990959309, + 0.038458158034988386, + 0.031473865030264545, + 0.034178132289738185, + 0.03669756429272697, + 0.036111308178546145, + 0.0329457016666098, + 0.030209434457633744, + 0.03459230383580508, + 0.0341510677421159, + 0.03235652525964755, + 0.030503913587369442, + 0.03834299343347912, + 0.028663390843394667, + 0.032693038099353734, + 0.04218692903695388, + 0.041823965962955845, + 0.035099548849774946, + 0.026903224808240287, + 0.028991169081097976, + 0.04154599926956536, + 0.030577546873687002, + 0.030936398486180922, + 0.026230467319293665, + 0.02399712242493725, + 0.03425444627928534, + 0.029523073893887686, + 0.02342697216450579, + 0.028331683614139944, + 0.033440847290421245, + 0.034386851972441644, + 0.030611856725871914, + 0.03158028922317049, + 0.03199622856158624, + 0.040372343045057886, + 0.03640278890429679, + 0.028139670047979695, + 0.03289215497222026, + 0.034480120354913484, + 0.03198684504732662, + 0.03475217196118415, + 0.031010302281034043, + 0.02996457686214406, + 0.028959312984446133, + 0.03269384559009039, + 0.03703756102242372, + 0.02829115618654135, + 0.029808025017470784, + 0.03684581120755718, + 0.0313087405420297, + 0.03525332791417348, + 0.04627992877671054, + 0.03915954135953224, + 0.028743501794003343, + 0.03403201969300691, + 0.032425050252227104, + 0.02756116809125347, + 0.03673188413177504, + 0.04213080819706478, + 0.037860331272526554, + 0.04223372869120118, + 0.03064253070147718, + 0.030161804275109484, + 0.028342569702438945, + 0.0350393423618654, + 0.031336490240600985, + 0.02950151655397015, + 0.026141432779462025, + 0.03508618872247019, + 0.0396659610046672, + 0.02793433871382681, + 0.030160783538121284, + 0.029300239659931063, + 0.02532884748953022, + 0.03800580958200471, + 0.03205969578226413, + 0.031398069644759045, + 0.03227467541246317, + 0.037262456023374135, + 0.030402239619128066, + 0.041764869558821575, + 0.03139900328487786, + 0.03388315905871087, + 0.035234539245853354, + 0.033667633967885954, + 0.030697504889631324, + 0.03322111709581922, + 0.027440603666470987, + 0.03251349723969574, + 0.030829472709341246, + 0.031755623105607755, + 0.03549734561482856, + 0.0367114199797823, + 0.035648455985683974, + 0.03210324214786392, + 0.03316896161973269, + 0.038309068497424735, + 0.02867524205066521, + 0.04074023136204445, + 0.029540955051186004, + 0.02929063048935946, + 0.036695078770905616, + 0.02735747562594502, + 0.03986158382270227, + 0.029967607963736206, + 0.02795285241723142, + 0.02981115672331204, + 0.027971823061907285, + 0.0379308155492068, + 0.03939248270445109, + 0.034768192138756156, + 0.04159550305316351, + 0.03662975544852686, + 0.02853818698033648, + 0.028398926651959342, + 0.02972359961108861, + 0.03133205257044632, + 0.04016892185597657, + 0.041393454541644996, + 0.03899890639151739, + 0.028772219058104516, + 0.03281728908811498, + 0.03755733353682785, + 0.03214576899858941, + 0.03165558017930789, + 0.0318844884618948, + 0.029284203624184206, + 0.03609588183018436, + 0.02678320858641358, + 0.03596740161282255, + 0.030382724521358942, + 0.03233622461359109, + 0.029302383522763504, + 0.03224168467430377, + 0.029040869069817128, + 0.026896960279700798, + 0.05380954636400204, + 0.031865707393800013, + 0.030284941937560865, + 0.035490579389361725, + 0.030347824014749017, + 0.03218325164012589, + 0.027922389609164742, + 0.03359996612473061, + 0.027848703149213602, + 0.033016252326248836, + 0.03602801979291065, + 0.04985473903626365, + 0.027311507929140427, + 0.025219516858478414, + 0.03754520525244077, + 0.03028604004277943, + 0.035890936998225695, + 0.029641797766007037, + 0.027698286687805936, + 0.030675382753125875, + 0.031869498612398205, + 0.033132894424697586, + 0.030346906878299697, + 0.029248010907552285, + 0.029587237312940443, + 0.033889169673320965, + 0.0312061794013041, + 0.03199938635477265, + 0.028398052641274374, + 0.03088047318681074, + 0.032181380549619595, + 0.03125941258327313, + 0.04111247127149849, + 0.035396513940810226, + 0.029212745431276083, + 0.04485511242554535, + 0.028034438729970034, + 0.034123526277484106, + 0.034781849258384505, + 0.034966733243433364, + 0.027276619011467197, + 0.03257915815272512, + 0.03645773830950389, + 0.03171530229456841, + 0.03432503011927639, + 0.03010270497800109, + 0.03446473293025163, + 0.03923834979372454, + 0.028318903934188996, + 0.029145254457675525, + 0.029831033551664273, + 0.03222356909418951, + 0.038239338658036484, + 0.03365428583695577, + 0.03345722665353942, + 0.03616727142350957, + 0.04155552447941915, + 0.04533494626978031, + 0.03180908767442208, + 0.03368623816437063, + 0.04699457150593784, + 0.03249143459312552, + 0.03209047862770979, + 0.03265076824382834, + 0.030348502644206493, + 0.04185085571622328, + 0.037060546935603955, + 0.029562523729367796, + 0.030688015319791106, + 0.03336274317427433, + 0.026886133365129433, + 0.032154236580162435, + 0.026876617854851716, + 0.034364129761097206, + 0.04657854367291029, + 0.025672254282050055, + 0.03696814574569938, + 0.030536908439786715, + 0.03332720994598785, + 0.029646858731227334, + 0.02945688852175272, + 0.02755028643823788, + 0.03173342600392699, + 0.0300424153463172, + 0.03348276767772897, + 0.03043841561807797, + 0.032091505549907876, + 0.030929775334787406, + 0.02905785390596851, + 0.04102902044937459, + 0.03701419829610932, + 0.05875138139954512, + 0.034165807135187215, + 0.028148066997522384, + 0.02945522580884062, + 0.035118934363556245, + 0.034228362362802175, + 0.03301722205625416, + 0.029670567795595244, + 0.03372875324638613, + 0.038001416700037434, + 0.04681440379292073, + 0.029194714043569985, + 0.03309946220899506, + 0.03160410028658938, + 0.03900905746272558, + 0.03795796003051646, + 0.027598287727274722, + 0.03345828030441115, + 0.03544757550828699, + 0.04286768812601123, + 0.03655433741593951, + 0.032453251041361555, + 0.05726571289092662, + 0.0410848917950001, + 0.04051311500993462, + 0.034057932500602545, + 0.035794695238758, + 0.040678269993422556, + 0.03365493928264161, + 0.03252706651016092, + 0.03340290960206663, + 0.04349848093721535, + 0.03441208623983234, + 0.03238865772240602, + 0.028398395613165043, + 0.03405287067958169, + 0.034223289405232296, + 0.026296317661360643, + 0.04557652003764425, + 0.03338214157659361, + 0.032389830062888814, + 0.03670000620745077, + 0.032038726018492156, + 0.03417112993697537, + 0.041268815065253386, + 0.03906919155666462, + 0.03875412298621035, + 0.03678453931192891, + 0.03860101150674736, + 0.031141096692228268, + 0.03156344895358428, + 0.02612540268326362, + 0.04192190304205582, + 0.03983653763530593, + 0.03797118218220155, + 0.04363414790761778, + 0.03286970041668775, + 0.030561505397710943, + 0.03645923343189882, + 0.033915640678413427, + 0.026973449295361555, + 0.028699498239027697, + 0.03291129320607085, + 0.028889661571211686, + 0.03381139544020349, + 0.03978510430724464, + 0.03366390785841273, + 0.028611353355611994, + 0.038946463057552304, + 0.030160047197755006, + 0.03585298679434465, + 0.03455668490302648, + 0.04079923726446755, + 0.03675300867511489, + 0.03780728586530017, + 0.033532095452098364, + 0.022354944473313675, + 0.03396932997596784, + 0.03363237812399306, + 0.03521884627374686, + 0.027620108698830158, + 0.027041419175267492, + 0.031975263663224764, + 0.03619402979915111, + 0.038768593069380276, + 0.045935749414343606, + 0.0389197431639975, + 0.03262671940969188, + 0.04169036480837267, + 0.03234149728921788, + 0.03184815006696596, + 0.03174095543988812, + 0.03741678927304404, + 0.027190623744035133, + 0.03650988030940553, + 0.029956517759173115, + 0.03261068655737363, + 0.034857718786377695, + 0.026235509620031523, + 0.031163878314733783, + 0.03161235114631791, + 0.030246603021764195, + 0.029648634113586012, + 0.02951540145183428, + 0.04398810768924436, + 0.03370024228407807, + 0.03014903057337835, + 0.028130299681025737, + 0.03317790567857075, + 0.03396996410305133, + 0.024158838451394934, + 0.04262383910522245, + 0.031053920468139026, + 0.030037750748385827, + 0.024702774185194346, + 0.03749061070020613, + 0.04731683209061206, + 0.031819890601837306, + 0.045549047285799414, + 0.03788767304466914, + 0.044173635574313495, + 0.029736178361485014, + 0.03313429619853295, + 0.041547448334589565, + 0.031661091425254625, + 0.029581109947167034, + 0.03633529359222652, + 0.034593434612138776, + 0.03033232960409942, + 0.02779221715230189, + 0.03517938590453968, + 0.03701323687214828, + 0.04181896906321876, + 0.028445902930897972, + 0.028172391199854367, + 0.03330446429688259, + 0.0323924699817894, + 0.028021857617616632, + 0.032506394100790606, + 0.027136297967507935, + 0.03207788930801729, + 0.02634358430207402, + 0.031678597419657735, + 0.04195868249328695, + 0.031738404688632656, + 0.03180303117792941, + 0.026226449698596544, + 0.03535125669152849, + 0.0377685582242026, + 0.026564853811246267, + 0.03066926437056271, + 0.03648075001419344, + 0.02987514223701022, + 0.029611550282520417, + 0.031231401189763485, + 0.028345996013123057, + 0.043114207072398214, + 0.027855718617366607, + 0.028081841836611478, + 0.0345353404842747, + 0.030603596709553246, + 0.0333506845922807, + 0.04185508722407182, + 0.03590869046739237, + 0.035537697537755736, + 0.0315074165990586, + 0.02858605104348546, + 0.038001164255234095, + 0.049314897539773674, + 0.04048621050027611, + 0.04376496608838517, + 0.02831591043901795, + 0.04176046596733268, + 0.028631928629970563, + 0.035250405901274685, + 0.037332594440877706, + 0.041910002975750996, + 0.038987284779323256, + 0.03182711448661288, + 0.033473506956593686, + 0.02957801907989489, + 0.03221139109055811, + 0.030361273551080665, + 0.029831777673005884, + 0.0325032288600159, + 0.03378805083948366, + 0.03950265143087661, + 0.03730473703166401, + 0.03888042467526809, + 0.030345187078338446, + 0.040372269612289326, + 0.03982023671402305, + 0.030477875231219, + 0.02746080172006552, + 0.038916947171330166, + 0.04158861402777612, + 0.03565977508050475, + 0.03390577899647792, + 0.03276059346605746, + 0.03404982478006157, + 0.03060711955642502, + 0.03283044571590714, + 0.029110210718502918, + 0.03278376253682656, + 0.03147646080465301, + 0.0355395664169121, + 0.02738877423313774, + 0.027948566669947664, + 0.02518471267420228, + 0.03417568767673393, + 0.03227188848995419, + 0.03421158635949529, + 0.05159962260845475, + 0.025272718762207037, + 0.03039107941641118, + 0.05051681724884349, + 0.04496161544482892, + 0.03187870577355445, + 0.033214819639595314, + 0.02826422647457217, + 0.03600022456405987, + 0.03197806208049244, + 0.03413990715064192, + 0.03404139137278759, + 0.02751398859171088, + 0.02938439679629207, + 0.04524228468495067, + 0.027602473901818598, + 0.031207750873492108, + 0.030549619632981185, + 0.026927260038661752, + 0.029799849563240246, + 0.030109180842146623, + 0.03342838223119944, + 0.028941978219458236, + 0.034177338088670614, + 0.037310079169948336, + 0.03614223155646147, + 0.03959777942783176, + 0.03064310864702174, + 0.03848779982619951, + 0.027378802761018978, + 0.025395861444891588, + 0.028354314235919456, + 0.03344252091902704, + 0.03448250523445224, + 0.03178379244510555, + 0.03434092020594902, + 0.03158475482288779, + 0.03002498158592322, + 0.030022097538509828, + 0.02637809289957069, + 0.030712204427046728, + 0.04287585214849102, + 0.03672354706199393, + 0.03438595065555573, + 0.0326321227086274, + 0.02937055637545134, + 0.03753320164347667, + 0.043659583852294875, + 0.03817266462794834, + 0.03818671155035675, + 0.034993059219337264, + 0.03032367712916349, + 0.03320110933627367, + 0.03936713263361254, + 0.03406617328631184, + 0.03343214770855645, + 0.02950770621964793, + 0.0308335480186706, + 0.025554834057973774, + 0.030134223673647487, + 0.03261763270742214, + 0.033148517598718695, + 0.02999478604209805, + 0.03679477241657478, + 0.029740705883470532, + 0.027541157730986806, + 0.02797617664159746, + 0.03464847272111085, + 0.024069292540608658, + 0.04296074716531125, + 0.02862016080490909, + 0.03797351426993926, + 0.02886756903103594, + 0.03273550678461396, + 0.02793297135596961, + 0.03128622371188489, + 0.026959799853597085, + 0.037884292393999756, + 0.029441283143803183, + 0.03493698659248359, + 0.024468808427306206, + 0.03213183381289402, + 0.03475885352257175, + 0.03491008482457136, + 0.042978471292706315, + 0.02699255954677034, + 0.029085988322495586, + 0.03790424835912237, + 0.04496003836408412, + 0.028820353354450916, + 0.03323511444342246, + 0.03474086877954546, + 0.024732116280001538, + 0.032606084672030175, + 0.02848290680107407, + 0.03532753181478128, + 0.030279862019999236, + 0.028016774216415078, + 0.02956785575533138, + 0.025184785071548758, + 0.03561036880938069, + 0.03608018455942576, + 0.024718163473481738, + 0.030581357957577212, + 0.033721286105516245, + 0.02835871972478121, + 0.03503027846093714, + 0.03608273527880022, + 0.030611418485000656, + 0.03359879630081928, + 0.02723271121430372, + 0.03244114815784915, + 0.033049690929502655, + 0.027899666376628756, + 0.029269372292855325, + 0.030754781773305376, + 0.029885757351663718, + 0.03167524004454884, + 0.0377006883221025, + 0.02849442632899851, + 0.03658525110731795, + 0.03921305677966382, + 0.04454743364635035, + 0.03569319569497865, + 0.04387662827061319, + 0.0358883478671502, + 0.03396805201796177, + 0.032674141340096656, + 0.0249520903880423, + 0.03200124401206458, + 0.03852176519564215, + 0.03568203267332562, + 0.03731414287453686, + 0.0436378207481573, + 0.03340239081724035, + 0.04152739905804064, + 0.028719164592417627, + 0.032141383199164576, + 0.030489440535713192, + 0.03417553111579697, + 0.03554515739146081, + 0.03621368080087225, + 0.04851872761976362, + 0.047802600033419025, + 0.03304222039423887, + 0.0386156395647003, + 0.03068461895835247, + 0.034710784240742774, + 0.029869633732238072, + 0.029778344762470082, + 0.03373665026197353, + 0.03676777762129447, + 0.03005735544185129, + 0.034746056384042635, + 0.02826362703832613, + 0.0347118619357765, + 0.03229742961178772, + 0.025786631959898432, + 0.033593197126464414, + 0.03372797343649871, + 0.035427275354480633, + 0.03107026268726213, + 0.034998137507892046, + 0.036498356973817286, + 0.03582457285971376, + 0.02759207071641089, + 0.031595049176009825, + 0.045199347505690456, + 0.0418757844629975, + 0.03599099383903607, + 0.026857596452286633, + 0.03821325688588468, + 0.030312208620204277, + 0.025608119387390944, + 0.03108151792981014, + 0.026446367996344564, + 0.03324277831156402, + 0.03473330630196459, + 0.02643917613955973, + 0.039918558937225235, + 0.026655709794857364, + 0.030424277850763615, + 0.03477435277229442, + 0.03822880648098449, + 0.02749046713697868, + 0.0330914265397378, + 0.0381460914561179, + 0.03813832407351875, + 0.044529173756325, + 0.028419037674986967, + 0.04027704622510057, + 0.027794410838690307, + 0.03800491840179145, + 0.03201711021845152, + 0.029029852091118902, + 0.02861861533034033, + 0.033751257576037946, + 0.04826756480711573, + 0.03762018298852675, + 0.031638293916763996, + 0.036171621543294036, + 0.03598348310834136, + 0.02675870678956548, + 0.03380657736970041, + 0.03630130453559743, + 0.025640233750348705, + 0.0339675684735253, + 0.027417231985259177, + 0.030828558852775412, + 0.03024081863839232, + 0.0356946612084443, + 0.02399823467563743, + 0.024961782133574383, + 0.048302116372986335, + 0.043562604386179135, + 0.02619095152213158, + 0.026527583690718216, + 0.03335599891857329, + 0.038718725609477235, + 0.030822291726149018, + 0.03403057963022701, + 0.029819544170962387, + 0.033583124267741626, + 0.03563764683543729, + 0.031499422300808926, + 0.03995772705273236, + 0.03167682864587252, + 0.027868774837336834, + 0.029264294574708936, + 0.03173839257767163, + 0.028412599547732693, + 0.024489958982145968, + 0.03369122821123083, + 0.03823372624189525, + 0.033743923287724305, + 0.031419896678695096, + 0.03840010408189063, + 0.025628790116178798, + 0.024392768726922896, + 0.03540172475178078, + 0.024999500953624423, + 0.028974823748440064, + 0.03971275320248287, + 0.02955354165955281, + 0.03816230074705251, + 0.03666268345565227, + 0.029636119491799867, + 0.037070542827916005, + 0.030711221813778413, + 0.034056066459783096, + 0.04261901257440956, + 0.04076872546703711, + 0.029465743907402607, + 0.03753945586419572, + 0.031268890471629354, + 0.03211286859730945, + 0.027315890550156572, + 0.02932631192103541, + 0.037389267243161016, + 0.024696692133856085, + 0.036790343231418235, + 0.03528223081207752, + 0.036163075884016516, + 0.039881405021969296, + 0.03312765455551627, + 0.03173646852108735, + 0.031165447701846757, + 0.043723596046001054, + 0.030117136545552117, + 0.026631638397660654, + 0.027227595610072132, + 0.02809466782865661, + 0.03413662007933003, + 0.030903625190565973, + 0.03720639983445057, + 0.02859459719352801, + 0.03367078846469258, + 0.02871031602795891, + 0.04043858893019433, + 0.037262651987615344, + 0.040180384072596734, + 0.029718831909507887, + 0.03327910733467769, + 0.03469997891851771, + 0.03655629035196335, + 0.02664307431782701, + 0.031795891585125344, + 0.03149624739780687, + 0.02907612192753173, + 0.0318727671315644, + 0.042279436924648334, + 0.028172294522479463, + 0.029499554002309098, + 0.033901644497670726, + 0.028166668455209765, + 0.04185150946390045, + 0.03695399248837766, + 0.028134129676135575, + 0.03516691670595947, + 0.03088898684516888, + 0.029521738090543592, + 0.037241458939893134, + 0.0362618768102659, + 0.03918474331072787, + 0.02913333877354422, + 0.03370910682615867, + 0.02991588341339502, + 0.025842913872775954, + 0.03341862210709054, + 0.03309098005986062, + 0.0262907079919132, + 0.03143375843526446, + 0.03662657931586395, + 0.034199608072019674, + 0.03589760338040009, + 0.03633233529370916, + 0.029512023303167313, + 0.038076102961215705, + 0.04480658862691493, + 0.03499058180253089, + 0.028234728303463595, + 0.03268650161750042, + 0.028290777542708933, + 0.03424761213110953, + 0.03011534595843811, + 0.037095123150423966, + 0.024356882843448523, + 0.03712046576760933, + 0.028534185225396656, + 0.031464498596864655, + 0.031568220521353184, + 0.04470384562610837, + 0.03335150251171738, + 0.03447637433565451, + 0.028836883411341142, + 0.03099490725661284, + 0.03388503333296772, + 0.03965895127307429, + 0.04261793161047223, + 0.026150286587024084, + 0.030860342771685537, + 0.028280842312402018, + 0.04420507025137178, + 0.0349363998631495, + 0.03783952624028991, + 0.03692204653256084, + 0.034480370115778064, + 0.03551428718899251, + 0.029229488076410796, + 0.03325824876369409, + 0.027897030404256735, + 0.02905783286876783, + 0.03364493218152835, + 0.03166567833466508, + 0.02918547885717961, + 0.02989361873031996, + 0.039935007216429, + 0.03369368157718051, + 0.03462674729950746, + 0.03179894237821714, + 0.03673261144170152, + 0.03372296305142475, + 0.03778933756969217, + 0.03351961444334042, + 0.03368007687058764, + 0.030040397407446132, + 0.032675062285344655, + 0.029390599478941248, + 0.03247886865903181, + 0.0332053872986532, + 0.03072801218589997, + 0.03552153375171898, + 0.03310192848679424, + 0.0356842627084329, + 0.027278393164502195, + 0.032775517043265666, + 0.03561362306787779, + 0.028082784640933365, + 0.03239034775013348, + 0.030912759134211203, + 0.041251999572620886, + 0.029527186606731617, + 0.02674686141823126, + 0.03593846072317521, + 0.02708268472197445, + 0.03369654132786615, + 0.038449362806174316, + 0.02932840378161352, + 0.03649188386475874, + 0.03919939454296887, + 0.03779414131379138, + 0.029027003995190356, + 0.04219017836725925, + 0.032118653368959284, + 0.033456921579806904, + 0.027328707888363064, + 0.031120987425104482, + 0.026747351688306917, + 0.039479532347443405, + 0.03129068873236808, + 0.047591867188633806, + 0.0328984680317359, + 0.029250787623496793, + 0.030819781910599968, + 0.03169810229323656, + 0.032233440426726934, + 0.028760901111574748, + 0.030155989323453057, + 0.030460703279693396, + 0.03444550304003846, + 0.04302598057361679, + 0.041844909703815, + 0.033673042392921446, + 0.033118844487632214, + 0.040032212284132236, + 0.03224930417099802, + 0.04283333275925456, + 0.035577422718255265, + 0.030450557581585925, + 0.028758698167850292, + 0.02951685454321719, + 0.03165068032738256, + 0.026535949069979678, + 0.03442370735194391, + 0.03307357274656752, + 0.039154149904168184, + 0.02965828435381119, + 0.027272429107190313, + 0.03332040616948963, + 0.03469240116147239, + 0.029378118580813954, + 0.031058551345830767, + 0.039528087668819774, + 0.04084768693358693, + 0.032915077265460745, + 0.03548561805355121, + 0.03269181264998923, + 0.027183844411084727, + 0.03316023806586348, + 0.025710330931360627, + 0.041088521076145426, + 0.030938735247445986, + 0.027639656704358705, + 0.03226556853380528, + 0.03540580391454147, + 0.02785941222378029, + 0.03402000087874097, + 0.04303441462850389, + 0.03305739934256443, + 0.03647997190973237, + 0.029562210717336463, + 0.0337012960809359, + 0.027557135789372477, + 0.028296071448894358, + 0.036236139163835134, + 0.0310407175885815, + 0.03030636091123691, + 0.036167715197333444, + 0.03723875249892577, + 0.03105443914706742, + 0.03207217373267179, + 0.03780696680777021, + 0.03166925545789776, + 0.040481778655201875, + 0.029543605611614145, + 0.029978589643768455, + 0.03793162078696873, + 0.03195127874484762, + 0.025580690159660382, + 0.029909222332009107, + 0.03503024076885529, + 0.03144508351081107, + 0.02727257010439798, + 0.0316264249751628, + 0.024755733858980444, + 0.02815780933920758, + 0.03704511134502739, + 0.03314024814225822, + 0.04111939892094009, + 0.02668341256020519, + 0.032225011813156255, + 0.033959043751995904, + 0.03325468434997828, + 0.03389768168653367, + 0.03331738282552008, + 0.036689223323184854, + 0.039816804485871764, + 0.036409487530562376, + 0.04659136267937227, + 0.034064341005292584, + 0.026987286387796856, + 0.03134701463547919, + 0.03168849491273467, + 0.035396757747065556, + 0.032466106502714906, + 0.038414127419016904, + 0.042799550096059354, + 0.03529603003502598, + 0.03995724602498172, + 0.03298826239104658, + 0.02720194956924903, + 0.03297022811600953, + 0.03946479243770362, + 0.029297702626265486, + 0.027428778891550796, + 0.030790239220898487, + 0.03489261371211797, + 0.030649211234844494, + 0.03309023561272316, + 0.025380246200613535, + 0.03859374246798831, + 0.034601343029060205, + 0.042219111459538335, + 0.03510659416788658, + 0.03126340247983287, + 0.0273232365245475, + 0.028155158151647736, + 0.041794572309055526, + 0.04429411620516312, + 0.03753566315460498, + 0.02699520264579959, + 0.03721663971875594, + 0.028143184473192754, + 0.04051328591368661, + 0.029412619070389764, + 0.03204529408080673, + 0.03623458951152553, + 0.034669081800868, + 0.025562748418583664, + 0.03224826164432116, + 0.03911042866131359, + 0.02981422547074828, + 0.03440886849983566, + 0.0339125436819952, + 0.031258962272652645, + 0.027729341826015802, + 0.0278225550674863, + 0.0389412342558397, + 0.03985758603134403, + 0.03331557581933068, + 0.025382167761528907, + 0.02721586139761141, + 0.039680247789004953, + 0.033976672206866246, + 0.02977296509996192, + 0.040363560411576176, + 0.03083071685584164, + 0.03230557439271509, + 0.0423672766763619, + 0.03383499227760795, + 0.0463170533545028, + 0.031890570428573295, + 0.03792721180166937, + 0.03595495674824443, + 0.03703283739302694, + 0.03069679808555859, + 0.03008313324381051, + 0.032847758979384266, + 0.04627586080583674, + 0.02820338498251522, + 0.033196293471554734, + 0.03715820073385967, + 0.035845269876513756, + 0.03334169440076251, + 0.030606459043063444, + 0.0381770308140804, + 0.03442702054361603, + 0.03196797686196161, + 0.030531575157775152, + 0.037931419468000833, + 0.034528383834765794, + 0.026696837388502537, + 0.027450812519008824, + 0.024602649311156063, + 0.02851991057238543, + 0.029550631265365605, + 0.044886317506129245, + 0.030774194206177642, + 0.031306567760555126, + 0.03977041841804569, + 0.029784943589077024, + 0.03658483511667743, + 0.04053852949467885, + 0.03196584376125502, + 0.023490242212052783, + 0.03258576777269014, + 0.035703430127682234, + 0.03077879605967547, + 0.03216295962893545, + 0.03378590211909852, + 0.03089363166094497, + 0.03163233784330577, + 0.03292001786603133, + 0.034314427076523976, + 0.03175900998201693, + 0.034675346381044414, + 0.036604226671070834, + 0.032632923950123356, + 0.028717974111397038, + 0.03430332972925866, + 0.04162951498255072, + 0.04293849976335998, + 0.032895327321727535, + 0.03366873116919852, + 0.03119257686489557, + 0.03139687243782869, + 0.03606944269880349, + 0.029531516631040575, + 0.03199127968824795, + 0.031191772163636975, + 0.03296956278436445, + 0.027170949113582924, + 0.027007752424067, + 0.027060886982024104, + 0.03475607341266656, + 0.037209488254891274, + 0.04177706380226301, + 0.02773460370330114, + 0.03244558928962354, + 0.03581483378315258, + 0.026399317581517652, + 0.04398643376243689, + 0.027993826837261458, + 0.02891202029679611, + 0.033979534852170125, + 0.02758720175808346, + 0.038084735922157366, + 0.03706745247606254, + 0.027360782929932242, + 0.03362084385310836, + 0.027147037868226146, + 0.03478427988587017, + 0.029328394926874227, + 0.030949340180146643, + 0.04270195766753568, + 0.024916814910386397, + 0.034666643371621855, + 0.0311222770479039, + 0.02815922767769958, + 0.02700904178084743, + 0.03445175486391946, + 0.032801363247910754, + 0.028615816439936045, + 0.029788141015008162, + 0.030244528007407602, + 0.028309712981283448, + 0.03310358520376223, + 0.0248905820758941, + 0.027887091875046358, + 0.02863243112536242, + 0.03222415736455987, + 0.03580458434931366, + 0.034093456535472154, + 0.02589172123270419, + 0.03210017263471694, + 0.0409739443540201, + 0.029427238268627663, + 0.031243731662585483, + 0.04318453166966129, + 0.039641074253154815, + 0.03515938042014884, + 0.036602958639293595, + 0.033303981102809375, + 0.03718390122712228, + 0.027674974041282895, + 0.029358983091424862, + 0.033225081907806465, + 0.03526038346002134, + 0.028247733439604884, + 0.0404032374540224, + 0.039260777392843525, + 0.039367000234042555, + 0.03109942918690191, + 0.03414635390412976, + 0.03327847823393987, + 0.04252006414322853, + 0.03379206604832752, + 0.03218945570059194, + 0.0336569321089672, + 0.04107224611056038, + 0.04046103240962943, + 0.036488469434115905, + 0.03225497840503156, + 0.03313640817101184, + 0.03185501741695721, + 0.03576531702714129, + 0.03321968054153309, + 0.029273406570792086, + 0.0304791130348643, + 0.03626102953283056, + 0.028034238788533145, + 0.03539081653574833, + 0.041590874605279764, + 0.03548870332824913, + 0.04120619113873232, + 0.040233128360551075, + 0.04181138489102308, + 0.028888229510622417, + 0.031163830339623076, + 0.028812033866744722, + 0.02918981664953061, + 0.03201199737200248, + 0.02982882161233813, + 0.026364305058418122, + 0.04173374654080477, + 0.03693523567801821, + 0.031292169392601904, + 0.043438141329826076, + 0.03291761885705619, + 0.031976183881907594, + 0.03059039284108394, + 0.029408713589213813, + 0.027732772578917573, + 0.03586218220830253, + 0.04357822100788351, + 0.03873748019203538, + 0.029504514227249846, + 0.03348445650471, + 0.039096416967655964, + 0.036617110942101364, + 0.031163726030823076, + 0.04408824798788417, + 0.04305003841390838, + 0.03038519799228312, + 0.027343369128906038, + 0.028711063187694227, + 0.02708309171355686, + 0.03430205639297244, + 0.03336129877788491, + 0.03495780986434471, + 0.028726434539508038, + 0.028278093412062166, + 0.04223438463511463, + 0.0318454996236759, + 0.03325072163353536, + 0.02982730578199687, + 0.02436133174946316, + 0.028713846846392378, + 0.025057453305559526, + 0.03183172185293393, + 0.03827859329667247, + 0.0307031810025159, + 0.028951927903457953, + 0.0335379786113551, + 0.03991370815923501, + 0.02831798899897002, + 0.03712350530431909, + 0.034408692016405666, + 0.03253368092689374, + 0.03525119377968317, + 0.03185351015045212, + 0.04285771255488635, + 0.030508678836961817, + 0.027892436355710808, + 0.03200917826951947, + 0.03498099852779437, + 0.036007674068378445, + 0.03379828533036443, + 0.02909555279563608, + 0.03414337370064514, + 0.03131691788277823, + 0.028539975879674495, + 0.03150359155392459, + 0.029055952034868143, + 0.026356640377160904, + 0.027438407772496703, + 0.0392987403130666, + 0.03188865266783491, + 0.034518613737378204, + 0.0356961357443068, + 0.03481107455139169, + 0.030691588852342994, + 0.0360232543347337, + 0.03314257782601954, + 0.0294459022133486, + 0.031144535369379004, + 0.032051080724507144, + 0.02903837681084335, + 0.024502702811623513, + 0.03178420241352529, + 0.03522481070770721, + 0.041282036883922735, + 0.039434311606295826, + 0.029730147617476565, + 0.03381137846644535, + 0.040570557273387424, + 0.026899309205366467, + 0.030466789164171358, + 0.02914256886367872, + 0.03195601836610159, + 0.027636536759882025, + 0.03928556061349144, + 0.031806498380507905, + 0.026262620344093563, + 0.028849937227533828, + 0.02386491113612777, + 0.036808621453752986, + 0.029945213759674644, + 0.030889478477752468, + 0.03530203799849682, + 0.03836047258667014, + 0.0294332291828317, + 0.02937942374012265, + 0.03059998444743443, + 0.031246316323138606, + 0.02674146405060147, + 0.03876697737169704, + 0.032430737867171176, + 0.02355281541463384, + 0.03378778944222168, + 0.033809982376671655, + 0.03309181274736739, + 0.03270608974058181, + 0.03605471211430364, + 0.03397944572485449, + 0.027963874001190377, + 0.028248401386902624, + 0.02960843603530861, + 0.029219581443916516, + 0.027404004285917855, + 0.02529025400318383, + 0.03126413773019817, + 0.030475072717168473, + 0.027132498193413637, + 0.034882289797054676, + 0.03150121436796456, + 0.03298576201510023, + 0.035578628421479616, + 0.02456050237905695, + 0.027706564422353083, + 0.04707125881714755, + 0.03186212208344181, + 0.04402988921286128, + 0.03339875703601302, + 0.03313749037722236, + 0.03625849171474282, + 0.029239116668782577, + 0.04580827177152931, + 0.031152057118281944, + 0.0391473022831235, + 0.029312796560757807, + 0.02936568850514485, + 0.0277458220726373, + 0.02362339567690415, + 0.03153971908877316, + 0.02617849829423118, + 0.040682687085262924, + 0.03790597914863605, + 0.026163415404843505, + 0.0337885820337571, + 0.031936909097768806, + 0.029523834657926008, + 0.0350612278955846, + 0.026506675240662945, + 0.0322042367710945, + 0.03351766374069789, + 0.03308124985436845, + 0.034039731887694005, + 0.04003027824852746, + 0.03839289299656457, + 0.030520741315002906, + 0.03183831319592672, + 0.02464955590907431, + 0.030696686300434338, + 0.030797454410513236, + 0.03387629869725019, + 0.02603039448672264, + 0.025725351869632176, + 0.040086957586446446, + 0.044735300137918974, + 0.03339908348933919, + 0.03725281539366505, + 0.037070061042083484, + 0.037803107411690476, + 0.03890137610947199, + 0.030262857872221313, + 0.030104136682550253, + 0.03556697802660315, + 0.03478345298746731, + 0.03172306674379437, + 0.03768299658742885, + 0.03837946479296391, + 0.037042039062945536, + 0.036122595052380996, + 0.03453338096228661, + 0.035401428338530425, + 0.03455495545517524, + 0.04042846040396637, + 0.028124023309323606, + 0.029028499360337127, + 0.03610297870970718, + 0.03467578001521716, + 0.03380996751046348, + 0.040053898114464165, + 0.0344340588344269, + 0.03514899032237337, + 0.03380214935218205, + 0.033761801911519694, + 0.033611242131484226, + 0.042602753332024276, + 0.028714809272668444, + 0.03356888076960846, + 0.02383223034179857, + 0.029427525494490167, + 0.032720227436202495, + 0.028900607168812733, + 0.032695859526583604, + 0.031614076692092256, + 0.02314657074068737, + 0.036218770128229244, + 0.028812670358352676, + 0.03791340402233177, + 0.037854245978991306, + 0.030191128491347138, + 0.034878581276691446, + 0.036259203015914315, + 0.02425720104358158, + 0.026188551925098464, + 0.02896193279628356, + 0.04720079402411631, + 0.02566298307528826, + 0.03129743211674899, + 0.03734964414975982, + 0.034716599166801754, + 0.02855803406741944, + 0.03331004367269648, + 0.02897128248249325, + 0.030552601140600405, + 0.03778400270888542, + 0.036389096046903546, + 0.032573338254578955, + 0.026943054778219674, + 0.02904758830617623, + 0.037373431491205686, + 0.04384459720506106, + 0.03895335612356553, + 0.04416384172100577, + 0.03462918203035249, + 0.0405237670864669, + 0.029048451003401334, + 0.029608841574737085, + 0.03543148271790335, + 0.031393510056096245, + 0.03386653650281102, + 0.03750557724160782, + 0.029227911950721136, + 0.032280335043317114, + 0.033115074537857586, + 0.039560121625860825, + 0.032362858214441174, + 0.026179471282616752, + 0.03950156806605429, + 0.04016370071087443, + 0.03423765437342023, + 0.039782249801588315, + 0.032530906148741996, + 0.04495530414334928, + 0.02960698355436091, + 0.029804405228972597, + 0.03196124930544647, + 0.027835186488286864, + 0.03285776225742449, + 0.04725143417657965, + 0.025543448706775832, + 0.03765065156069959, + 0.03373785484681724, + 0.030279717738853233, + 0.026923491605227227, + 0.03964565078120336, + 0.03423222203208535, + 0.03206425359584273, + 0.030451177995470362, + 0.029911070728941835, + 0.03650029529836572, + 0.03508351062803696, + 0.03693932410404872, + 0.034005464551100296, + 0.033357513559508306, + 0.02786270699042153, + 0.029791855429878736, + 0.029546186293740746, + 0.030577768426220852, + 0.03251302585492968, + 0.03235819584305654, + 0.03403386379076707, + 0.038937316930553134, + 0.037631545006835465, + 0.027993411431710004, + 0.030798484730873522, + 0.02808463558603145, + 0.028080039479663834, + 0.037468819531334296, + 0.032960790916441364, + 0.038787118131934535, + 0.031576038204339685, + 0.03625169184573231, + 0.032377871784582034, + 0.03654556129014071, + 0.029567878989818455, + 0.03308724487040621, + 0.04230352161546482, + 0.041984685731688134, + 0.04154519776149997, + 0.03452705017992085, + 0.032828145023701565, + 0.03794731391828579, + 0.03623481976523439, + 0.027419562588825303, + 0.022895627759566425, + 0.03124939104778343, + 0.030724200909585348, + 0.027711793588810343, + 0.035479396806567004, + 0.03236657944992099, + 0.025383799125942876, + 0.03355012012123725, + 0.04094443406834956, + 0.030965503841358957, + 0.03930841352765779, + 0.027642992816166258, + 0.03584738940462405, + 0.026000594566461966, + 0.03828877128674367, + 0.03845777747091339, + 0.032877960872560064, + 0.027887155767787036, + 0.03122660019820442, + 0.034802348732782755, + 0.03612732875052638, + 0.03118842040812846, + 0.030206244119427073, + 0.031346489566685856, + 0.034756885121136435, + 0.02650071189774481, + 0.03500926720418023, + 0.038291222915240834, + 0.025594419411673733, + 0.034073361208489084, + 0.041701021911357945, + 0.0348847532950894, + 0.03363044260198857, + 0.037646063160207174, + 0.032700353712236764, + 0.03426029810917387, + 0.03303963096255399, + 0.039640267348254356, + 0.027892701347118513, + 0.038276393591163096, + 0.03134888940894367, + 0.024456488084963757, + 0.037453613481793144, + 0.033569004712199146, + 0.038397653758842146, + 0.04478582712422026, + 0.029538356441465446, + 0.034265835250280076, + 0.02986974626775311, + 0.04290270055738055, + 0.027671199996401285, + 0.035300950088075884, + 0.03904063793920634, + 0.037497671348449065, + 0.033584966219899266, + 0.04922761166960846, + 0.041027759683188246, + 0.02881076673069492, + 0.03269026158400302, + 0.028525797555870563, + 0.031531287775632265, + 0.0395914930806304, + 0.035875601976130704, + 0.032201703317957506, + 0.028512726493716285, + 0.042663441261862126, + 0.039103177325905854, + 0.02631920090475129, + 0.030910381578722994, + 0.030278939796616895, + 0.031374868212875905, + 0.029498060074887228, + 0.027253096024423374, + 0.03672238950543256, + 0.03483468396259517, + 0.04176125899432201, + 0.03079673364646896, + 0.03783175314189435, + 0.024189197092756715, + 0.038151826307792604, + 0.03892987023547012, + 0.055904482157054285, + 0.038312635981496014, + 0.033205556594096325, + 0.02517860197933624, + 0.027172343386213257, + 0.03138464517137774, + 0.026498080003073667, + 0.030092442104310883, + 0.03611023754998208, + 0.03970864823448831, + 0.05199110912613046, + 0.04933794665085209, + 0.0313166953133547, + 0.03505213174504582, + 0.03137065070832996, + 0.03703791325822058, + 0.04893582550777834, + 0.030697573280556768, + 0.02848121545919873, + 0.028094136916385272, + 0.03960561818490391, + 0.033956503251065154, + 0.03766331070475689, + 0.038554628059630364, + 0.03229682984041271, + 0.03956267966259688, + 0.033430479239069624, + 0.03109175725496817, + 0.03997999340717402, + 0.03378991343421533, + 0.035004717568969265, + 0.03710316528770227, + 0.039118542946172515, + 0.034745596159427426, + 0.04266138027190219, + 0.02949127060758573, + 0.024600469924351775, + 0.03912320764894336, + 0.033968534517677715, + 0.03874128466352929, + 0.036689445077267374, + 0.03903532177613969, + 0.03403192706255862, + 0.027632760796347054, + 0.031171937514822695, + 0.035440283974730535, + 0.036582632321265865, + 0.02954192965561725, + 0.032981052925447896, + 0.042117218254812405, + 0.02658889159084207, + 0.03564293234361485, + 0.032589694720056094, + 0.02791500592682074, + 0.028677015009089722, + 0.04256362268612128, + 0.031497797191642044, + 0.02944665416652815, + 0.02991565418864529, + 0.022148514913302386, + 0.04080546194766982, + 0.034363130238370405, + 0.03787169759499469, + 0.03460014327968104, + 0.04164096307038609, + 0.03163425761719948, + 0.0325622088798828, + 0.032469581711568316, + 0.03167693539563376, + 0.026698209118665106, + 0.033739862298966763, + 0.029260574195488314, + 0.04803529099955516, + 0.033397698214784784, + 0.027910333857111704, + 0.026044577424945956, + 0.027284194369490648, + 0.03760726725328718, + 0.03558907919972693, + 0.032422698438499264, + 0.03588733880353378, + 0.03436190064731567, + 0.03275840379605424, + 0.03288839915744669, + 0.023981526062616117, + 0.027598050623528318, + 0.03441045842961918, + 0.03485756382060149, + 0.03670619733613154, + 0.03316656020618803, + 0.03411275111689395, + 0.03838538157713476, + 0.03211636079535403, + 0.04052080988322535, + 0.03732609336188845, + 0.03914070507134503, + 0.034361141682950944, + 0.03489682996932117, + 0.03501272593923951, + 0.045410495207174266, + 0.032138667173606916, + 0.037533547555821285, + 0.04662432844712052, + 0.03077613754148349, + 0.037214312921653926, + 0.03161291372038152, + 0.025234926999283758, + 0.021883043704058393, + 0.028263120932016373, + 0.033101380928847075, + 0.027951618371099423, + 0.03527084311805966, + 0.03079284005589148, + 0.0290675285010844, + 0.041773952878188435, + 0.03643075889877551, + 0.03767774332071183, + 0.04449601014830308, + 0.031024845264631427, + 0.03375677484186619, + 0.0414303046659578, + 0.038310394395139426, + 0.03126249174808313, + 0.03991072147376599, + 0.0436905634414319, + 0.03294273943439037, + 0.026044347069611326, + 0.028730400081916043 + ] + }, + { + "legendgroup": "Point sensor 0", + "line": { + "color": "rgb(158, 185, 243)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 0", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.028730400081916043, + 0.033881943166148995, + 0.03927781277025736, + 0.038110160398209414, + 0.04589692926632319, + 0.03398042515567846, + 0.0319515114610385, + 0.036747606335503315, + 0.029101548157060734, + 0.030910122601032486, + 0.0325124324682641, + 0.027920599466407046, + 0.030620690814716977, + 0.0340465304735412, + 0.03653270430987505, + 0.028919043459090545, + 0.03319391060825912, + 0.03695261759041335, + 0.032280242583842725, + 0.043681972057122695, + 0.03241442905340647, + 0.04120418270351926, + 0.02941928066381735, + 0.03419121658985303, + 0.035466025698140335, + 0.036265734096579044, + 0.040708188415339686, + 0.04076972504018561, + 0.02708482317636651, + 0.023512972229489386, + 0.03836495873131871, + 0.044378717299332925, + 0.04446383731382336, + 0.041887502424231206, + 0.04698999672656659, + 0.0405585589265223, + 0.030458371940921984, + 0.04753948009705149, + 0.034430141133163304, + 0.028200288467305535, + 0.041128304069258846, + 0.027835063839198877, + 0.030959889905526537, + 0.0389154581895924, + 0.04493067036474671, + 0.02890290925805176, + 0.02801202052985191, + 0.03656649689953787, + 0.034363820056104354, + 0.028133997558454287, + 0.033878670159602754, + 0.03632014463169563, + 0.029078347548122222, + 0.03547783291424104, + 0.03230726201444482, + 0.04078678538858384, + 0.03481377174251607, + 0.03885574350022191, + 0.03107865939260826, + 0.03115605846273629, + 0.024804248139656745, + 0.0354709776347539, + 0.03409431660737118, + 0.027749344900649838, + 0.028427535976220424, + 0.044867736709479814, + 0.03725292405619539, + 0.030513421752671643, + 0.02944262411496978, + 0.029540417390071183, + 0.030992766454580958, + 0.026086122105049108, + 0.02769944189443073, + 0.027218036519247972, + 0.0406376202676903, + 0.028052721180565895, + 0.03903647105946929, + 0.02505713770742484, + 0.037161083651909205, + 0.03272629880104228, + 0.0378545822671327, + 0.023304722565856514, + 0.031050743952005862, + 0.04148358819226048, + 0.03576559881815987, + 0.03296211360303648, + 0.02873852732897543, + 0.03535848079571683, + 0.033745075913444986, + 0.045132337611191696, + 0.03465888408953502, + 0.04554058050761245, + 0.03531439767961805, + 0.03719078183473951, + 0.03874859578014595, + 0.03189688198690347, + 0.03433852244737945, + 0.02981212428551983, + 0.030646905427243715, + 0.03393972120035687, + 0.036731495973571164, + 0.028874951202008305, + 0.032321440975853204, + 0.030086939007068842, + 0.031217679683368128, + 0.02810011412391421, + 0.028461146619625573, + 0.036685793805615804, + 0.0409839199908198, + 0.03127989479094569, + 0.027051303498056584, + 0.03530349468776915, + 0.033509240358780154, + 0.030418725134789982, + 0.029648118270088362, + 0.03883678023299432, + 0.02816346464640427, + 0.028508822049308987, + 0.03405548638777601, + 0.0371763363663313, + 0.030363856720824402, + 0.03997147056268974, + 0.03331122363960413, + 0.033164541265160725, + 0.04272865836187379, + 0.037959765419977344, + 0.029526632620651246, + 0.03914830948728841, + 0.04067050461524373, + 0.03986210064257585, + 0.038175473802584965, + 0.03346363499881953, + 0.03487128161231673, + 0.036534281858609165, + 0.03686689076133713, + 0.03314006247087072, + 0.03217824902453845, + 0.034332150509935246, + 0.0375826474761299, + 0.03369896470310987, + 0.04075377442677322, + 0.044494118531690656, + 0.03838104523756312, + 0.03531133206954018, + 0.04157210935830309, + 0.03429492369768951, + 0.03781887065979853, + 0.04223825829115736, + 0.03599375754817871, + 0.02780109992465961, + 0.04493282822400082, + 0.027988565603909294, + 0.02732614555159464, + 0.030633372091273207, + 0.03184473803422635, + 0.03213910265672934, + 0.027708569386982077, + 0.037751835503167304, + 0.024364059648758134, + 0.030776943130883798, + 0.03439267072971196, + 0.028110166568293918, + 0.038851403214556594, + 0.028794435967891857, + 0.03476834412999139, + 0.030771840197729036, + 0.046006225533884657, + 0.03514583753634455, + 0.03159982919751817, + 0.041036236510873896, + 0.03253851174734522, + 0.035865692011508944, + 0.029410060631906678, + 0.03555112168738075, + 0.03114593070883026, + 0.04065978768051126, + 0.030238943592008675, + 0.02880228104846223, + 0.03440841659824007, + 0.031123769061913654, + 0.042742881508256954, + 0.0293672164639052, + 0.02780330860909197, + 0.03416936020653274, + 0.03062091649258579, + 0.027167081519446898, + 0.03240755853487572, + 0.03779494041789021, + 0.04546878646718969, + 0.0430953406834483, + 0.03315148355069283, + 0.03071785129446141, + 0.033654695676175246, + 0.03709619961996902, + 0.035886340075965105, + 0.04165486615530999, + 0.030052680037478796, + 0.03068319351229605, + 0.030104565428295187, + 0.02834677057493968, + 0.036405931324913675, + 0.031159906387083127, + 0.0394340262306378, + 0.05440367460850538, + 0.03595773577281381, + 0.043553893857130835, + 0.044208039382099835, + 0.03082347618340309, + 0.03677043174786094, + 0.031189211619962715, + 0.04462747141193492, + 0.03502962861518813, + 0.037841964454644605, + 0.033389015945986235, + 0.05103758198972826, + 0.026921301955037967, + 0.02628327097981201, + 0.03522261566865703, + 0.032333697762604884, + 0.03148970373589495, + 0.026598132773666627, + 0.035491879899461114, + 0.028901516173243227, + 0.02458307004952279, + 0.027397701447653022, + 0.037612289793702285, + 0.029108065617765702, + 0.041537287475881306, + 0.03508649951215046, + 0.03205225417574201, + 0.03170791603838071, + 0.027857675311701025, + 0.03802547191236282, + 0.03201208470999693, + 0.03164906399622255, + 0.04003666100009187, + 0.033449984354083556, + 0.04050362748630802, + 0.036306529841773794, + 0.026788815466452513, + 0.03749360279371684, + 0.03634683453407712, + 0.04114339878886541, + 0.037601340634670605, + 0.02964779100089721, + 0.022755921601106913, + 0.02611178791027184, + 0.028583909168130032, + 0.037003786882180006, + 0.033853856777386615, + 0.03209387727354596, + 0.02287595430544444, + 0.030167418889404534, + 0.033384154952263684, + 0.026615816191846945, + 0.047772490631428896, + 0.03409697334898064, + 0.03271840746244994, + 0.03095701964223419, + 0.03000352866599612, + 0.04503529755589143, + 0.023710280556558595, + 0.0428444703204472, + 0.032440031729846504, + 0.03294492079106382, + 0.03073206728193746, + 0.039127547715970976, + 0.03331530118154565, + 0.03896777629872029, + 0.035977413770835125, + 0.030733074534830554, + 0.028793364094033765, + 0.03345361196494266, + 0.02509386576456249, + 0.036293925134882866, + 0.030001702883718076, + 0.03575149178069005, + 0.031879406165652206, + 0.048127467660635755, + 0.03510448992615398, + 0.03054770791384083, + 0.0341501955856718, + 0.030062421878326362, + 0.03081534348134185, + 0.05012247672196684, + 0.04229185795002784, + 0.02750880011661486, + 0.027407497233885945, + 0.028363565184744786, + 0.04175895325181524, + 0.03857533060511729, + 0.028104022237563, + 0.03665993574889248, + 0.029338758006209165, + 0.03535833314863518, + 0.027379777865223894, + 0.034489805790884676, + 0.03573158506942282, + 0.03474417038083268, + 0.036254060044271036, + 0.030536000277769766, + 0.04618872828166714, + 0.049306916988358825, + 0.04318030338397824, + 0.04135173035832307, + 0.039890493126507456, + 0.032975424949020074, + 0.029966099019579473, + 0.029421470993259643, + 0.029957625180864613, + 0.03334954042909975, + 0.03275302804418062, + 0.03519667341539493, + 0.03117302254157118, + 0.04811911249973314, + 0.026761346276290333, + 0.03243861694373515, + 0.029241092039509958, + 0.03715576772010095, + 0.033699618617223114, + 0.035250729811982906, + 0.03636155459554879, + 0.0337043077503691, + 0.03637934276369842, + 0.030859739127199023, + 0.03798930075314889, + 0.04456222255000494, + 0.02575604928105649, + 0.03588814315763298, + 0.03791332037732743, + 0.035188783507917244, + 0.027726390434822754, + 0.04136502373478811, + 0.03947902286915189, + 0.02867110535046317, + 0.027799362492441422, + 0.034811259704578865, + 0.03002424705669078, + 0.044594823525015995, + 0.03555288840899756, + 0.03281179749123341, + 0.03543356295393587, + 0.038194082682701413, + 0.0335719313571137, + 0.035653189917105185, + 0.030538929840645972, + 0.04295385420106068, + 0.028005760085707904, + 0.030512495889694805, + 0.03694268423887027, + 0.028836027061230715, + 0.029677946157772216, + 0.03287093499762886, + 0.02935766756751261, + 0.03930292947216365, + 0.03227200685301598, + 0.02516326961889775, + 0.037369024323997524, + 0.03406087929901412, + 0.030423398240024675, + 0.03675685509141234, + 0.0325606740569769, + 0.0314652304726351, + 0.03150345423281339, + 0.030549230343753876, + 0.031010210513666602, + 0.039363345878078326, + 0.028699867292214475, + 0.026198769073312093, + 0.03406705507138059, + 0.03091550246372912, + 0.0492582188991395, + 0.02748342600760164, + 0.03357594025642514, + 0.025938413220919616, + 0.03578268513830564, + 0.03086037651791753, + 0.030215885463692527, + 0.026094386989562485, + 0.04020212089052995, + 0.024961975723244337, + 0.03427300547830231, + 0.03671485460597924, + 0.02979888885954624, + 0.03274732946577115, + 0.028664315949402785, + 0.03423618519936718, + 0.03380672216546809, + 0.04590000589039639, + 0.03221294749235921, + 0.030639135260273065, + 0.03976132220015528, + 0.036930644166792134, + 0.033747717748431626, + 0.03337546738516923, + 0.034308627969330714, + 0.0416158191537434, + 0.025541596098808142, + 0.028032058266435272, + 0.03910943308336302, + 0.04326222141828421, + 0.028154964765847106, + 0.03142794920553126, + 0.039310368408094, + 0.03189268540537626, + 0.0327791599342847, + 0.038204637322043475, + 0.03713228071255239, + 0.04702090253954085, + 0.03585858052638959, + 0.0433758810473987, + 0.03588592615924385, + 0.028284447153251267, + 0.04204290756694897, + 0.033221051116093185, + 0.02989135783148329, + 0.040247388629399194, + 0.03606441240259314, + 0.02291847200914733, + 0.03135790293304541, + 0.040527459304628734, + 0.02905090567133596, + 0.03449887639949741, + 0.04076897281821405, + 0.027543690005293678, + 0.036636071766337215, + 0.02419558162150175, + 0.029526661736275186, + 0.03235442496236114, + 0.03428412443078698, + 0.030984626295996087, + 0.037204001510299935, + 0.038052585241895455, + 0.03562846846856947, + 0.035456991730392254, + 0.04054329857483479, + 0.03399502939997275, + 0.03066038456720777, + 0.040679935057867725, + 0.026173493162590957, + 0.03403525391183598, + 0.030540628059658136, + 0.029261545654345043, + 0.03311111478248597, + 0.024582096067901953, + 0.026916452238908803, + 0.02574215289221617, + 0.03565234553245693, + 0.026840054282859228, + 0.03316197400782218, + 0.03794897185924013, + 0.04307062807366808, + 0.035317762113668966, + 0.02933143825366428, + 0.047668668526296185, + 0.028868997808262284, + 0.03897289806696191, + 0.032879121580647555, + 0.03469467618168949, + 0.03102663473371115, + 0.02897820347693138, + 0.026163849490415638, + 0.03292704435029004, + 0.03930400416736071, + 0.0414888890384178, + 0.025529331579859576, + 0.025472179280154703, + 0.03587075682742644, + 0.04056257201341388, + 0.035222290025887, + 0.034512506769248795, + 0.026690785903870157, + 0.027606334823235473, + 0.028904155468306218, + 0.0295083412030431, + 0.030970704090303874, + 0.03828628738162924, + 0.04018837104273258, + 0.02974198793207685, + 0.04262989244967345, + 0.02844112252097725, + 0.030300074791675995, + 0.044394489279280164, + 0.031940994280482915, + 0.03884894885597151, + 0.03357529387037988, + 0.02665861363598947, + 0.03259212814705549, + 0.03880217583799049, + 0.02756519629742931, + 0.027675941780116318, + 0.030034496627392136, + 0.03256815885599147, + 0.03258117881768999, + 0.04061977877461629, + 0.03241571728548689, + 0.031773359335959546, + 0.0328119675767194, + 0.03217625326418999, + 0.04023664739305251, + 0.029666020307358747, + 0.0359686928759145, + 0.0510038580351421, + 0.027077922922043383, + 0.04100299828745946, + 0.03604301176483936, + 0.024434346261760487, + 0.03325641111756954, + 0.04383923903444501, + 0.03440054513881078, + 0.03827286510064621, + 0.03582767809089721, + 0.030266812541992767, + 0.0272993432396432, + 0.038258080374885296, + 0.03372719400087233, + 0.0354586397732166, + 0.0367299477499498, + 0.030131220199679627, + 0.032597669722813555, + 0.034516699750622826, + 0.030743761813372995, + 0.029963220969148906, + 0.03785828930028049, + 0.02881428936338901, + 0.03345099696918411, + 0.023706345658847668, + 0.0454972853046259, + 0.03928450989043999, + 0.02796636179209917, + 0.030282384628060186, + 0.02631109362286273, + 0.03216680855501366, + 0.03819820771172872, + 0.028599101750779447, + 0.03255345415835046, + 0.04172763638956458, + 0.038747332442645506, + 0.03624998008879587, + 0.0363738996799991, + 0.031139809234845914, + 0.04376558738813405, + 0.035143614937741485, + 0.03762232166499836, + 0.04137026559611444, + 0.03070343753732814, + 0.03366039033962237, + 0.027962506438261463, + 0.043390687250217025, + 0.02732674803514689, + 0.03295582018715001, + 0.03463865679626418, + 0.03879419587607675, + 0.03382403113287381, + 0.025732995292104953, + 0.0279655853331793, + 0.031237439907963495, + 0.043797193008695355, + 0.026783773282362856, + 0.024113380107770505, + 0.039744239968405704, + 0.038505894507168834, + 0.04100948572727368, + 0.031810821241325574, + 0.03833421540488557, + 0.028554267828629618, + 0.032150975229345374, + 0.030442545273892146, + 0.03029323133657424, + 0.03370272705440659, + 0.042091434366175, + 0.02883617777626739, + 0.02891419556061109, + 0.034199398211100344, + 0.03484455099008817, + 0.041456258646293126, + 0.043866974828015035, + 0.027867543125828613, + 0.03239208656874652, + 0.035138380281738386, + 0.023880528008812622, + 0.030634814342403803, + 0.02274550182230251, + 0.03979550656493363, + 0.03629894804764317, + 0.03530359740809442, + 0.04518600539732794, + 0.03458210546420122, + 0.03566919827305155, + 0.03915707881148644, + 0.0450501402492692, + 0.031212479271530775, + 0.03782179878978385, + 0.029742170217609293, + 0.02565995501686963, + 0.047672852816897114, + 0.02808063059330969, + 0.0358423727579082, + 0.034634718327584586, + 0.033107517937279056, + 0.035322413716626214, + 0.03372143750058938, + 0.03000002507263347, + 0.028222240440089152, + 0.0320301747136645, + 0.03177760184153891, + 0.026251405169322898, + 0.026540706104969905, + 0.026705776074989303, + 0.02919977542871963, + 0.03608629419643647, + 0.033090158503782684, + 0.029437464865450284, + 0.032462588648604795, + 0.03132793796302379, + 0.03235468905335, + 0.03876587186508377, + 0.03651362989774494, + 0.02983912118064083, + 0.030888636503824042, + 0.03991413033022151, + 0.026611105960951092, + 0.03158492309729757, + 0.03180639771402822, + 0.03939447779521454, + 0.0275713454259091, + 0.023622797267416288, + 0.029637303041378574, + 0.03684203129752161, + 0.0239173311593559, + 0.032389884430280146, + 0.027928018355176554, + 0.03125212234949589, + 0.023773103900228378, + 0.03391400886698708, + 0.02962211192177599, + 0.025447021477481888, + 0.03359475932470061, + 0.029743520818615015, + 0.026190218428636163, + 0.05274490207572891, + 0.027849306196281398, + 0.030176807255885403, + 0.03240617622113872, + 0.03330789597649932, + 0.04337549193542732, + 0.042741124841750376, + 0.028360592356186265, + 0.03857014591305177, + 0.03263994685526251, + 0.029147433183258274, + 0.034176024164151456, + 0.04502269934278859, + 0.028656726921042947, + 0.03190121096117925, + 0.03772861584741284, + 0.03319160157943058, + 0.029427822729275487, + 0.02960166772681271, + 0.033485982419986446, + 0.04039726426442144, + 0.030819722600440944, + 0.03998586594284974, + 0.036753821927224595, + 0.03413612190703058, + 0.02750653557086302, + 0.03298388952700729, + 0.03704040586175771, + 0.03798906811446279, + 0.03978788919136661, + 0.03095957445207455, + 0.03780450127187508, + 0.026045863205025728, + 0.03717589342085566, + 0.0364943595053284, + 0.04004439239041462, + 0.027880703304371438, + 0.03032294292915723, + 0.031522325106640915, + 0.04379162230512463, + 0.028723009767412364, + 0.03667064978019111, + 0.029574784369723658, + 0.04196988914408797, + 0.03480041504118841, + 0.03420620292482848, + 0.032394118009922104, + 0.031034069955565537, + 0.039870190403996315, + 0.03796773175699418, + 0.03524479189847216, + 0.03125771537901207, + 0.03650980519136065, + 0.03289135230807299, + 0.029551099730856942, + 0.026795337292864797, + 0.03410038141718872, + 0.032068442973628694, + 0.027455550796513628, + 0.036449700007983386, + 0.04537921039699037, + 0.037150831070282414, + 0.035535917538921, + 0.027930915999203144, + 0.030542612763750424, + 0.03148173314576915, + 0.03577159020779112, + 0.03142865199863498, + 0.029798930185116913, + 0.03914098479966321, + 0.03514392759884803, + 0.037911108310945255, + 0.036117196984939884, + 0.03686271042424865, + 0.02645606273794196, + 0.03895810480197075, + 0.03247971681469701, + 0.03415309963657579, + 0.028428268930439666, + 0.02802536669916236, + 0.030388089737194073, + 0.04107729373935503, + 0.027103055431215342, + 0.03397184590919071, + 0.040785794737757536, + 0.03563520758593882, + 0.024569509844970472, + 0.04034341680132433, + 0.03183883231764088, + 0.039163467329564626, + 0.03286366059715728, + 0.03443350746407875, + 0.032844604903203824, + 0.04217257841478304, + 0.03985559657514195, + 0.03336608367082907, + 0.03693738120327866, + 0.029516835231539383, + 0.030681964039744596, + 0.02779905006240517, + 0.04658067050014131, + 0.04006665376006488, + 0.03861721170389151, + 0.031160022241474385, + 0.02735425632135579, + 0.02964589329140305, + 0.02509624484069129, + 0.03231493730034873, + 0.03098611857833786, + 0.03828150068939855, + 0.04103371925208667, + 0.05480981547372096, + 0.038061521920363016, + 0.0398270255306165, + 0.04440890201003855, + 0.04075139660626996, + 0.03880318299734203, + 0.03468014156118697, + 0.03201255640810878, + 0.03203325435255284, + 0.03490439499837843, + 0.029252951027141184, + 0.02748714144441909, + 0.039327844105675566, + 0.028362597344112606, + 0.033293113205393014, + 0.032646650607911505, + 0.02886118274858472, + 0.04346743039316902, + 0.03897292370004416, + 0.041415531189685086, + 0.03582937872719819, + 0.027125383463025402, + 0.029808030402829387, + 0.04622825176860373, + 0.031871139735612994, + 0.029910533047153454, + 0.028515459972342557, + 0.043223817673702904, + 0.040868381894401784, + 0.03364626760057082, + 0.03130185266379414, + 0.0475929325026086, + 0.035558125593689247, + 0.029251069369614247, + 0.026448410640128102, + 0.03472417720084887, + 0.029390041672446507, + 0.03236480364829256, + 0.03395375153751683, + 0.03533497996373493, + 0.038154921468510766, + 0.027968425417209522, + 0.029450349568009133, + 0.04081127539663292, + 0.04561245214352587, + 0.03188869751763019, + 0.035405519841377714, + 0.03594376704964941, + 0.028203634406032123, + 0.0331960456663394, + 0.03853385751759331, + 0.028858021111395588, + 0.03386928551128228, + 0.029665881443788067, + 0.034625584481223756, + 0.042881451710204264, + 0.03129324180596296, + 0.026156099132118655, + 0.03329476644598046, + 0.03759404379654716, + 0.02476139476066933, + 0.03989646804341892, + 0.04485177050368388, + 0.031015818730418573, + 0.030275057503189554, + 0.039205102973018324, + 0.033301180894371195, + 0.03285022103475917, + 0.030114657168496185, + 0.025815968688483827, + 0.036333245214047794, + 0.035874629778890214, + 0.03499539712140342, + 0.032463506492905796, + 0.046823804363988794, + 0.03430233136991898, + 0.045871807686035604, + 0.03371625048000333, + 0.035669788639321916, + 0.031966157177584796, + 0.035327249451785184, + 0.03522285914822728, + 0.03115903890584419, + 0.029717057894341443, + 0.03610713162783606, + 0.02881915116430541, + 0.03157258603707791, + 0.030416584270958943, + 0.03927458227125133, + 0.027381687755715665, + 0.02425559344464664, + 0.033754597558664175, + 0.02698446818217144, + 0.052171684115883216, + 0.034310341270177576, + 0.03717684999317471, + 0.030426480233400808, + 0.03168385514773541, + 0.029675814280360042, + 0.034811707925861475, + 0.0343784343979912, + 0.03147975748856906, + 0.03147816833909908, + 0.032220298945912385, + 0.029702490877926212, + 0.042464997138487316, + 0.02570931810797261, + 0.027116489242680744, + 0.032208404832182715, + 0.03164073483370064, + 0.027116116684954863, + 0.03760038977041418, + 0.03362702726309607, + 0.03276672911992101, + 0.04162884035694482, + 0.032472939089865455, + 0.03660607226592555, + 0.03319970342317875, + 0.0288347601653997, + 0.04731661025464657, + 0.03424512042049921, + 0.02867276769666236, + 0.033227099894658337, + 0.05164086447830833, + 0.026255542458659988, + 0.029531926985406697, + 0.02994699164356896, + 0.031194009500070664, + 0.04219635425725538, + 0.02897367870267151, + 0.035404412624129654, + 0.04353838425440516, + 0.03005746644787031, + 0.029360821226933936, + 0.04145067417342066, + 0.03353121619125658, + 0.029961196335981877, + 0.038308386124025054, + 0.038067663368815174, + 0.041218530599271816, + 0.022591425136734615, + 0.03531397043805468, + 0.038171105008284606, + 0.02750194478531059, + 0.03865048832652142, + 0.035520572008991336, + 0.0446974958817931, + 0.0373798498854274, + 0.038585187568533755, + 0.03405366054175496, + 0.03258952087539378, + 0.0415856298342921, + 0.03211092770382733, + 0.04012091312546855, + 0.03374058262403983, + 0.045382560504147615, + 0.03913120413788293, + 0.036799789805306606, + 0.0332152496635875, + 0.03129299211249186, + 0.029394261708700183, + 0.03207169419173592, + 0.041083363589904234, + 0.027213338139541136, + 0.02984038676171651, + 0.029910533794823765, + 0.03018621699039128, + 0.027880740228359242, + 0.03482444311397569, + 0.03074809324625761, + 0.03145127066201142, + 0.025336936535130777, + 0.034508347213759206, + 0.02919722073584053, + 0.05393024518481438, + 0.03002772183898221, + 0.025715043849779105, + 0.03171544336179963, + 0.037982107756229726, + 0.03091434611696633, + 0.031149567042502213, + 0.030600725009674846, + 0.041499099742282164, + 0.038413715587188764, + 0.03465639603926772, + 0.03300648171507887, + 0.03713382812428467, + 0.03586187823517403, + 0.026698263516129264, + 0.035459862566539165, + 0.03855162550014608, + 0.03262769296554796, + 0.025489109084121015, + 0.03322769491151407, + 0.02954616187096633, + 0.031084699639821547, + 0.03335711804589879, + 0.04080766746252395, + 0.030857730556546885, + 0.03390970086156695, + 0.034122545059163616, + 0.030391798211392273, + 0.03133507122522102, + 0.03495119103747878, + 0.04075216518163384, + 0.03463034825078001, + 0.033612394787972885, + 0.028259104490819833, + 0.0353127578841417, + 0.03067667096202965, + 0.030854685246250367, + 0.03598260668240897, + 0.033226320828300376, + 0.04378376457002912, + 0.030939831784511124, + 0.04400846139035187, + 0.038610066610099254, + 0.032774988130345066, + 0.029280605379089827, + 0.040563074895336865, + 0.034167152051105064, + 0.03333086489827231, + 0.034270683379884946, + 0.03488338116321936, + 0.03625151079747271, + 0.02936389000533999, + 0.03732495825332566, + 0.03417562244184149, + 0.025498868869240774, + 0.03723657906836694, + 0.03565920550073567, + 0.03245626475229878, + 0.029130562871005697, + 0.030095065772267792, + 0.03282856823303878, + 0.032950493164861, + 0.032619266675051335, + 0.02809559312656241, + 0.03850129464518264, + 0.04802446569353224, + 0.03418038784092213, + 0.03330307978932768, + 0.02911988289031628, + 0.04342150037230189, + 0.027384022256190105, + 0.03295789215689241, + 0.029234816888463452, + 0.03672123514457518, + 0.022909630901197915 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgb(254, 196, 216)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 1", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000 + ], + "y": [ + 1.581277455801921, + 0.12700273461015482, + 0.04710186031403801, + 0.038998545956579866, + 0.033427371085331885, + 0.03535147200210741, + 0.029567191139033687, + 0.037385627866012947, + 0.04131736036330367, + 0.038204397259001155, + 0.048884135644636735, + 0.04731954822477499, + 0.030467338882717594, + 0.03343113150633135, + 0.0380027365301865, + 0.03166815192386568, + 0.033951527276174114, + 0.038776217722774155, + 0.026944123572508687, + 0.028218449896799173, + 0.030716662101100273, + 0.0320824044931607, + 0.036426713823845734, + 0.0379713845126345, + 0.02951437197488532, + 0.03146189005059042, + 0.04417861818025303, + 0.03722043294075036, + 0.0326221539333388, + 0.03534414563498246, + 0.031156247728475292, + 0.038067491506960226, + 0.04058684699160448, + 0.045787047950919965, + 0.03294249065761985, + 0.03882491782616562, + 0.041602942296748636, + 0.053733284321157856, + 0.037938520768387544, + 0.0408680003689611, + 0.04188090298625116, + 0.05052212565826496, + 0.03510022876521931, + 0.03515333161288164, + 0.042989604128556826, + 0.027628664825139766, + 0.03615066606705082, + 0.043329041330320325, + 0.029563782205266155, + 0.04727427977638931, + 0.03467007109445758, + 0.03251475929112239, + 0.034055441530663935, + 0.03139707126869468, + 0.04517459546688249, + 0.036227315519115615, + 0.03256128440778432, + 0.03804411088440626, + 0.0362960206468915, + 0.04159149942311131, + 0.037058889777678516, + 0.05417065902976562, + 0.0416164424152433, + 0.04553040750880754, + 0.04082217864711336, + 0.04139995747816667, + 0.03171626490979059, + 0.041169046150449515, + 0.04380380352721196, + 0.038106774587327204, + 0.03840521873043983, + 0.044335013547934295, + 0.05198081095807101, + 0.04144690053817834, + 0.0339663739316879, + 0.03761735100101799, + 0.03896025936456003, + 0.0417476979082497, + 0.051651246594042015, + 0.03470965767067388, + 0.030734508917598827, + 0.04113471955962526, + 0.03697199752480122, + 0.03589247415098079, + 0.04716762780618855, + 0.04265698917285769, + 0.02749600214982052, + 0.03317622161218468, + 0.029316174010619936, + 0.028089888825276202, + 0.03187088106468358, + 0.03731699952009769, + 0.03799688766041318, + 0.03615494006061818, + 0.040319699655698225, + 0.028890297443711393, + 0.031464429819954044, + 0.04014961566995972, + 0.03788681260418577, + 0.04282757467216083, + 0.04534595728049699, + 0.037627046006497425, + 0.03539150966044863, + 0.03294639517437959, + 0.028587511527689045, + 0.04293281690312515, + 0.032309593836598094, + 0.04348424880230768, + 0.0400659531129849, + 0.04433874100374896, + 0.04367992247586476, + 0.04247424368325626, + 0.041830870513668475, + 0.03849077366218677, + 0.027790100423251876, + 0.03528426218898095, + 0.041782698225258, + 0.03399360345720823, + 0.0362752455907403, + 0.03555971522843304, + 0.03278993528782892, + 0.0470295340060423, + 0.04447960419662385, + 0.03643210298972812, + 0.04913141447468023, + 0.04671226152115099, + 0.050931502568823964, + 0.03948071466440026, + 0.035742804877986645, + 0.04723218806400217, + 0.03542104488919047, + 0.03740059916728993, + 0.030964781910542406, + 0.04261740771032021, + 0.04872187573628349, + 0.043568155368915305, + 0.04231867152632198, + 0.033408162858790634, + 0.04676332492818388, + 0.03885768670417737, + 0.03530197544473374, + 0.04028706626446523, + 0.04089057365481847, + 0.038664791043402286, + 0.0419764801273032, + 0.04096875046772173, + 0.035323609394989804, + 0.04395575487846361, + 0.039213785630474805, + 0.04446511444529224, + 0.050586874182762816, + 0.04948012534924672, + 0.03631713260939786, + 0.030942154273737244, + 0.03740075878735994, + 0.041507254593221576, + 0.025442082253442307, + 0.04757305212671339, + 0.042380769184475316, + 0.028620077452227343, + 0.03272120734872326, + 0.038488179454454444, + 0.04391827558256907, + 0.035802809479, + 0.041329610296225755, + 0.0321169407240189, + 0.03390439768581611, + 0.040135118698962885, + 0.04525229586296277, + 0.029070853254175067, + 0.03401873149879277, + 0.0333032541050049, + 0.04121685798773042, + 0.050188457040080174, + 0.03731304664740405, + 0.03524102542606316, + 0.036954250665722874, + 0.03942340847132637, + 0.037732687725599595, + 0.03466910307310696, + 0.03797001694105115, + 0.03829216466320407, + 0.04340084238043517, + 0.036279242558638486, + 0.03370185027251844, + 0.03589650465476562, + 0.03267029371920958, + 0.037675652912809304, + 0.03551582433210439, + 0.03337940891937295, + 0.03268358539689685, + 0.03929896705735384, + 0.0496172655113639, + 0.05187405182918113, + 0.037518275090379444, + 0.03409752658413768, + 0.041864467450755116, + 0.04450621266658975, + 0.043068625463943175, + 0.036309887764352775, + 0.03649728867548626, + 0.031091648051977103, + 0.029411379512432535, + 0.037471598369616346, + 0.037538066811407575, + 0.03291199599232393, + 0.029865474323766576, + 0.03561896829311152, + 0.03455094679539933, + 0.02753653203856944, + 0.03119986960129854, + 0.0343777464890316, + 0.038036935078511976, + 0.03384747151382617, + 0.03684794602519339, + 0.034978692304416074, + 0.0359189101611546, + 0.03933630168545796, + 0.031145020176793586, + 0.03251513849470771, + 0.03236525702374982, + 0.03881080515649577, + 0.03540321285722886, + 0.04199743266853468, + 0.05817135305378439, + 0.0386999847520157, + 0.03529931776780135, + 0.041695765500173974, + 0.039051901558779495, + 0.038380187170977347, + 0.031547867393200056, + 0.04160507191373311, + 0.045116351449659746, + 0.0402042781421527, + 0.035815979236021166, + 0.036822252154482496, + 0.03677831694127342, + 0.038510354738761, + 0.03863153591138115, + 0.03722790937475675, + 0.04510813386839312, + 0.04070315182888251, + 0.030178619183342116, + 0.03874344026462151, + 0.04048851358970843, + 0.02895385821800578, + 0.03796612163621647, + 0.04216335260368839, + 0.035290304442533456, + 0.04789515909853949, + 0.03837616049665466, + 0.032529610870680445, + 0.030394047737444897, + 0.0606558207294386, + 0.0412346644833984, + 0.04206953272890169, + 0.03157001671725836, + 0.0560674253956749, + 0.0389413263560819, + 0.026463491467651912, + 0.03767190224952935, + 0.03713287785677839, + 0.03358890632010677, + 0.036607522794138744, + 0.030990152967712452, + 0.04520973414047695, + 0.04120975682005383, + 0.03232996224690584, + 0.03244168198475095, + 0.029276537954227386, + 0.0418584608099889, + 0.03715460623523218, + 0.049616751749868106, + 0.037856963140640666, + 0.042428539265426994, + 0.03586656781246628, + 0.03734163872642563, + 0.051093786629318357, + 0.034130985006251016, + 0.04805165205939049, + 0.0344644642673015, + 0.040007451002337296, + 0.04356654579863297, + 0.036583647043085435, + 0.03443028999707206, + 0.03580522065599097, + 0.04187634051646448, + 0.03581413141169665, + 0.053645733938344216, + 0.038536027941983034, + 0.04863274959740526, + 0.0391112279163792, + 0.033942051544663385, + 0.04008225447760795, + 0.03778887491320538, + 0.03179985408608441, + 0.0358664027062693, + 0.04289945311668503, + 0.0478924570705754, + 0.0488134055163466, + 0.03265002055839852, + 0.035690862059677135, + 0.03839412272021177, + 0.03507203379567779, + 0.03942184829424147, + 0.035158237518850555, + 0.03402783780083263, + 0.03718789280498505, + 0.02565082090862794, + 0.03759310234304173, + 0.0492877411284244, + 0.052963541239533174, + 0.03236210270419146, + 0.03338583888293231, + 0.04225772529667564, + 0.03224992795856371, + 0.0411652822052471, + 0.03903949093157484, + 0.03911857057512924, + 0.04055567621900839, + 0.04184918869115156, + 0.031381340707281324, + 0.03753594983838301, + 0.037117460056693065, + 0.03487912502018755, + 0.0441679094620054, + 0.051829668720777225, + 0.030460407395451763, + 0.02155076202509232, + 0.036187903345373716, + 0.04215618639546307, + 0.04724766139939974, + 0.049550503027877696, + 0.04252259900524768, + 0.033658233454266114, + 0.040845221646787944, + 0.042080297268609484, + 0.0393279764979168, + 0.031914400082500974, + 0.0366954505441639, + 0.03462883383437704, + 0.04326170961464949, + 0.03606035716742495, + 0.033430627739502214, + 0.03210609811250086, + 0.045516906253458, + 0.03582922209808705, + 0.03257471016540504, + 0.043301882222114646, + 0.036442719947687253, + 0.042136545501177076, + 0.03230668755682138, + 0.03722281875804362, + 0.03896415874518482, + 0.03636285257474587, + 0.039254382133046474, + 0.03725625585953277, + 0.035184018035112175, + 0.03220386046954381, + 0.02998069511599135, + 0.03514781397344991, + 0.0484802114577093, + 0.05250581946859195, + 0.037059232969811916, + 0.037953721693894424, + 0.030125448743310305, + 0.046176568563294246, + 0.03881268032812843, + 0.03541466013447616, + 0.038130249100862205, + 0.05405308292077606, + 0.0325930697273412, + 0.033306096607695686, + 0.048641067145454644, + 0.036356727980120976, + 0.0346428182539655, + 0.040355484906766506, + 0.04327691285833762, + 0.04097218608503698, + 0.030417744317467056, + 0.033356798683368924, + 0.04482947805747711, + 0.031456902122008155, + 0.03179472547119078, + 0.04055126609850947, + 0.03668326313102506, + 0.028638452631131444, + 0.03308058661082733, + 0.027405429584185192, + 0.0322072539365032, + 0.03209016722086368, + 0.032869238139826305, + 0.034297906365705504, + 0.03256564906895776, + 0.031156217302361573, + 0.03855239208342205, + 0.04053101443027847, + 0.04820260883881936, + 0.034271481342463654, + 0.03764996315879879, + 0.040044347498718096, + 0.045362319593407203, + 0.038151289854831766, + 0.03221791662566957, + 0.032408798316271664, + 0.0467485628430087, + 0.03513717339496827, + 0.036508870019898686, + 0.03282598524946691, + 0.038757796434452776, + 0.04393037308159302, + 0.03799822005279208, + 0.03681634499420908, + 0.041442235302814684, + 0.036342207539188265, + 0.04017317608981218, + 0.04189660196914247, + 0.037795683739386014, + 0.03906598891518533, + 0.04404974371270311, + 0.031154018041237217, + 0.034092035680890656, + 0.04527747564609819, + 0.04587819194442791, + 0.035126137549054276, + 0.03965814649221823, + 0.04878476060194566, + 0.03273539118020731, + 0.03876021283366891, + 0.04055884096792801, + 0.05717494653806499, + 0.037491961466026354, + 0.037782337697326016, + 0.03518451141131569, + 0.03280053135906172, + 0.025305915197273446, + 0.0352888473385826, + 0.03722367435468896, + 0.04550188997280108, + 0.05162473203600905, + 0.045796006996654, + 0.03791114984992891, + 0.03932913787750046, + 0.03523322458124299, + 0.03840821928787822, + 0.040069737314649245, + 0.04383748143522394, + 0.030437982113089523, + 0.04620599436608903, + 0.04070024306140935, + 0.04399707920677944, + 0.039619021833856974, + 0.06032833179430316, + 0.03194883859046701, + 0.03260498333672874, + 0.028288729509782323, + 0.041066070123984874, + 0.04513117394114307, + 0.03994127448207189, + 0.048399219558186234, + 0.044711934692354224, + 0.048634599664654866, + 0.039038801572312314, + 0.03450050778161641, + 0.042460241907268506, + 0.04135408304325241, + 0.03183434378162972, + 0.03118894898219322, + 0.031930928677990515, + 0.03985786367919216, + 0.026492421110324384, + 0.036375423011596485, + 0.03467867456907669, + 0.03507083836032981, + 0.04461333124711267, + 0.041300172591470424, + 0.044681668314408694, + 0.02923959110318084, + 0.03268246364978473, + 0.028813196873804924, + 0.03463579729788065, + 0.06179948595430274, + 0.04480086220766801, + 0.038347459041574654, + 0.03828885756572077, + 0.038845315678578594, + 0.04304982107717726, + 0.03308008995107921, + 0.03141126757035867, + 0.04189753682358986, + 0.0326818300861742, + 0.03912888796974919, + 0.03347746159467164, + 0.03257795730091629, + 0.039470466914441005, + 0.04099954022950838, + 0.040177728687272866, + 0.03408436097516942, + 0.03662293028521257, + 0.03177425336210059, + 0.03883424391085473, + 0.035638922967605534, + 0.029534310343341235, + 0.038722959056415304, + 0.041573117399488574, + 0.03203684285061941, + 0.04092537034800062, + 0.03680844086067583, + 0.03819910605802573, + 0.041216366379487425, + 0.035958104976825334, + 0.05837740835072503, + 0.029485460674617565, + 0.042211275761028656, + 0.0349349066250466, + 0.039381029747925976, + 0.03749060984004438, + 0.037757223761867964, + 0.04532148942880449, + 0.03703630720405316, + 0.04440165115229632, + 0.04462223084160822, + 0.055378337151755, + 0.04894509479920913, + 0.038501499020714085, + 0.03803536385956569, + 0.03350997180360992, + 0.036021338513353124, + 0.02566798604579175, + 0.0628121056762817, + 0.032876231543067964, + 0.037286316629497746, + 0.04193606404358432, + 0.031335768478397204, + 0.04648756028896649, + 0.038739127296960135, + 0.035479578157283385, + 0.039200501631605, + 0.035061851638848264, + 0.03990567300847769, + 0.03848088525485344, + 0.03545029600027571, + 0.03381986740463821, + 0.04257740733896325, + 0.036479033856195546, + 0.029616294852762043, + 0.03371778018570797, + 0.031276407579633216, + 0.044108027229915005, + 0.03130466556530164, + 0.042241454915990094, + 0.0375417781889998, + 0.03347548055263642, + 0.03833380423147872, + 0.03334222838493669, + 0.0362365201503131, + 0.033880779640078115, + 0.03878691898499391, + 0.03870933065997218, + 0.03645756294721795, + 0.032772713063953955, + 0.030360917093587764, + 0.04222614183818972, + 0.03742769566296507, + 0.04100545260365771, + 0.03412443688199449, + 0.030408026481248497, + 0.040808813742927254, + 0.039334570818000666, + 0.029088469551611172, + 0.03389641497919197, + 0.03556256396148737, + 0.0360999730874963, + 0.03727121734587552, + 0.03870961363334247, + 0.04231710523249816, + 0.03211107477438818, + 0.03515183673660855, + 0.03101675618478967, + 0.035117120203061965, + 0.055117616785150134, + 0.03873407454601205, + 0.044418729073849944, + 0.035649735039089955, + 0.0360892610474733, + 0.03302732929835469, + 0.025284553185550306, + 0.028543482133306933, + 0.03782532067136541, + 0.04391878130754183, + 0.03604605633816491, + 0.03683701513857162, + 0.03360091094666982, + 0.037632995000390336, + 0.039898824899179924, + 0.056294557458124304, + 0.03719501792174542, + 0.04271143111680336, + 0.04888639662204374, + 0.04152760599030946, + 0.03339662153316153, + 0.05066224866850087, + 0.02987851371580156, + 0.034183936842167396, + 0.035942214125817024, + 0.04314694875049751, + 0.04032277825324064, + 0.0369506808431129, + 0.05912357149859463, + 0.04152915825049288, + 0.03709396600825788, + 0.03465197427223811, + 0.041637427432548536, + 0.036314826746155514, + 0.04382060761313606, + 0.04048881888046135, + 0.03629957952030831, + 0.0410594538516789, + 0.03243959181758666, + 0.039282526582155364, + 0.04765987692103735, + 0.03881041439254465, + 0.035172762603396766, + 0.03644235631365431, + 0.03599870052228187, + 0.03326862354139855, + 0.038983473609496326, + 0.04642471652858388, + 0.03912912745945573, + 0.03900433318611941, + 0.03845773365359498, + 0.04095132847915137, + 0.05303690046918632, + 0.02657210213476048, + 0.03248315567951603, + 0.035129543925277854, + 0.034950361015344635, + 0.034255449258577084, + 0.02871501275185041, + 0.0344096532871424, + 0.0408332577943851, + 0.043429009951406396, + 0.033349516131193635, + 0.039709774569530835, + 0.04494016932382601, + 0.040644409413954544, + 0.052569094439610324, + 0.032257760292214534, + 0.03097080679058449, + 0.032541291220506995, + 0.04153226639709364, + 0.03646331276736681, + 0.0437495504166005, + 0.03265380546133098, + 0.04187934290899469, + 0.029106404486755756, + 0.033174575416237244, + 0.04799629892811189, + 0.040175095632666406, + 0.02774010766582023, + 0.03225400417204107, + 0.03929121364688299, + 0.04311184017962331, + 0.048056226918875955, + 0.036761827572135704, + 0.038124646289402646, + 0.029374098907570655, + 0.05202870076381608, + 0.036066608646181046, + 0.033834360029135056, + 0.045474496643878266, + 0.03553725545793999, + 0.0425087995824914, + 0.04270678983252742, + 0.03809348475069448, + 0.03928519452342062, + 0.03143956079257654, + 0.045436029351521474, + 0.03330375715667446, + 0.03469962334741888, + 0.06355644215785486, + 0.03619222078806887, + 0.04776264343869035, + 0.05216359896678989, + 0.03980584579358102, + 0.049656615258692444, + 0.038113191328994635, + 0.042515212702202314, + 0.03828773233361059, + 0.042613075311009774, + 0.03479104038206183, + 0.03989543937449671, + 0.03594767940849543, + 0.0329995965173125, + 0.03419394405902317, + 0.033797082708767516, + 0.043896979265312656, + 0.05612870785429354, + 0.03685538717722944, + 0.04000055594106844, + 0.03567228641220083, + 0.0455467099894051, + 0.044997784037128515, + 0.03885826911813979, + 0.04968538805108753, + 0.033347002952580015, + 0.03279834669405074, + 0.0422725912734704, + 0.037149362878440034, + 0.028021603613524126, + 0.04778420806044118, + 0.0325394014866154, + 0.041902251457657386, + 0.04060084544273204, + 0.04572680254253995, + 0.040594203266866254, + 0.0351447307374076, + 0.038752131877146316, + 0.03013709301124568, + 0.026858625470785373, + 0.03022013243628599, + 0.050335813375673846, + 0.04301492953616297, + 0.03146050243882392, + 0.04336058393629862, + 0.03677490685216452, + 0.03617806674386186, + 0.03225749866086935, + 0.043417877863548844, + 0.03156002759361214, + 0.03713195798950028, + 0.03169666555437313, + 0.042174687887937906, + 0.029513835201888026, + 0.040848917074244144, + 0.043362251100753306, + 0.041971445525446995, + 0.05229334226323134, + 0.03482696991971158, + 0.03598239201779041, + 0.03507975358989872, + 0.030533388083666572, + 0.03447968054836837, + 0.03217359565639317, + 0.03555940220089958, + 0.03568144427284126, + 0.03159684731074676, + 0.03549787071673319, + 0.03742795745488562, + 0.03144634200799996, + 0.03665930290288758, + 0.035231411413589465, + 0.037333001516526604, + 0.04291293553439266, + 0.03410232305368855, + 0.039037391334548664, + 0.04403464524306229, + 0.030327269780418047, + 0.04287802020714844, + 0.034428213239655336, + 0.03766010435882981, + 0.037485877534963276, + 0.030105366405502678, + 0.03441025542726528, + 0.04952650671672137, + 0.048136966843990256, + 0.0340468596954693, + 0.029652550382819384, + 0.025949929041892493, + 0.03839321213547541, + 0.03409811700955361, + 0.041467140997128865, + 0.027620943088890994, + 0.031205609490998643, + 0.04065611813965931, + 0.04603723755151243, + 0.04433042293578781, + 0.03910036690435638, + 0.03817550107837481, + 0.034276199787648745, + 0.0394980548810042, + 0.042697071347718996, + 0.035309747222604625, + 0.03728386951170216, + 0.03157048754027776, + 0.03701886462248119, + 0.03044409468719883, + 0.04465985179866221, + 0.04989369769940316, + 0.05232102731830441, + 0.03935764555144705, + 0.039850804727459305, + 0.040626695225116076, + 0.03334946208362011, + 0.03724065163587368, + 0.03318584535380687, + 0.041164359184824514, + 0.039291602653131905, + 0.027883875701770273, + 0.044228922415825815, + 0.039167656007124, + 0.04051284807701519, + 0.033488583181712724, + 0.034986545370119415, + 0.037379163328218064, + 0.04311566371541782, + 0.03744043953505179, + 0.0338598693464447, + 0.03179455182214961, + 0.03505669034318722, + 0.029692728290729595, + 0.04030564453403063, + 0.033324932877473415, + 0.0371801871214437, + 0.04149482465970226, + 0.036156838426703655, + 0.03404192517039589, + 0.027954139245159593, + 0.037189531284084115, + 0.03429962279379551, + 0.04596588006681696, + 0.03703610630963954, + 0.04092712662991181, + 0.034496631644955304, + 0.04471183132117512, + 0.04150827564654394, + 0.04514183194279482, + 0.033007291793695846, + 0.043045219968560644, + 0.0288849618231419, + 0.028527634869966977, + 0.04009374604128328, + 0.038389356164919196, + 0.03397158435811565, + 0.03450068886462015, + 0.041832705260042784, + 0.04122884343028141, + 0.03755262629305604, + 0.04450657864505035, + 0.032834338921183905, + 0.037693399135038344, + 0.029127346262963455, + 0.038986740698461, + 0.04023742712401802, + 0.038897872218566346, + 0.041141805415206706, + 0.04362715760398449, + 0.03813349301200313, + 0.03389543801125619, + 0.042364932396354346, + 0.03604022427331807, + 0.04261257778485486, + 0.040154389322878584, + 0.038386575874660274, + 0.0419540581135927, + 0.030601876070718067, + 0.04273414121040798, + 0.03929562738701891, + 0.04152982365595457, + 0.04651561596110046, + 0.039076969836731076, + 0.03380122689373815, + 0.06031044135655634, + 0.05452478488750508, + 0.03253256725377324, + 0.03867827142273428, + 0.031791663822829594, + 0.03285956491335298, + 0.03614750114237779, + 0.03316224619009911, + 0.03489571710579404, + 0.03867780687048813, + 0.03903296892523893, + 0.04051056353598949, + 0.03285582382376544, + 0.04123244328193473, + 0.03237274026002101, + 0.03202163367414858, + 0.04294921665816635, + 0.03327237747203029, + 0.030380006414350996, + 0.032647290734979406, + 0.03522189187720608, + 0.03338075263484692, + 0.04067350927243548, + 0.02999045017785844, + 0.047991275395132954, + 0.04310891934888517, + 0.04026042360382156, + 0.03131841808369181, + 0.03699516282212176, + 0.04238435551434544, + 0.03668600767421343, + 0.04279192871304432, + 0.03342568136433286, + 0.03344343514727905, + 0.044036217771399565, + 0.035459298480217435, + 0.04666116607586417, + 0.05825086705659441, + 0.04352434189591443, + 0.04367162483048532, + 0.038120145704118535, + 0.041420637565735045, + 0.034077422517627624, + 0.03666323044752288, + 0.043203459824302244, + 0.03559600210437441, + 0.03925203174353401, + 0.04703148162771184, + 0.04235853592627204, + 0.03157157128511138, + 0.03706992451676888, + 0.03488668001343222, + 0.04225876386064665, + 0.03865584659590887, + 0.029704329352032065, + 0.033903160381739, + 0.0326017242963732, + 0.036320452528710516, + 0.03191320315328622, + 0.043468778908798016, + 0.04001944188736791, + 0.03612493300712121, + 0.032298942002791486, + 0.034388726385798894, + 0.03545676835224924, + 0.03977369320341879, + 0.03699843054792448, + 0.05204439636911979, + 0.04044705005740115, + 0.03641364191838041, + 0.03754072538737767, + 0.0393501380031294, + 0.029871822010984348, + 0.032082055812534094, + 0.03316234245778316, + 0.0382902205092892, + 0.04483350258432626, + 0.03729593507350601, + 0.034182790521274535, + 0.04235477566239983, + 0.039867702865184367, + 0.03231020858709507, + 0.030722367761855142, + 0.030772561976315803, + 0.04213007338838225, + 0.034312532059609616, + 0.04633164480701841, + 0.04687247943135694, + 0.029844385496448862, + 0.031718685662161995, + 0.03513432076499287, + 0.03269108023795563, + 0.03570343363631205, + 0.03646200311265533, + 0.037330942149814, + 0.03320502937384482, + 0.04744315365478913, + 0.03985491446248411, + 0.03841099707263899, + 0.05239398031349966, + 0.04238702401196432, + 0.03425986820531529, + 0.028465836265388123, + 0.0429618057443372, + 0.041578647046059285, + 0.032668911221983676, + 0.0482275212004318, + 0.02975479253782807, + 0.04160989831678624, + 0.03255908471780279, + 0.03926680751957993, + 0.0415828794069062, + 0.03750313118285126, + 0.045027895429263366, + 0.039014964137454894, + 0.029271734089164687, + 0.04128946885740718, + 0.04167198344095262, + 0.03891704384243064, + 0.02861194928534362, + 0.04794352681294507, + 0.03674168117607825, + 0.036941989863010706, + 0.031014332684352997, + 0.04542553085739012, + 0.037916293703324666, + 0.040594985447534114, + 0.033707244615725, + 0.03685035771500938, + 0.04242601599376558, + 0.04150907929763758, + 0.05165302467795345, + 0.033694098655403744, + 0.04432280632470766, + 0.02987822476591257, + 0.038942871441673646, + 0.03872895275043884, + 0.04753510347452996, + 0.04115505259947897, + 0.03797416570484949, + 0.028423610325670038, + 0.03830493295702435, + 0.036937303581946135, + 0.033893416994071265, + 0.03444008517411777, + 0.02680209356720611, + 0.026449499041841372, + 0.027215320796325475, + 0.03819583345274679, + 0.03914681783047322, + 0.04367792745369505, + 0.0509729448014971, + 0.03367721445911842, + 0.0383090355272803, + 0.03857987468893091, + 0.03488871238463409, + 0.03908905260261561, + 0.03624836566674989, + 0.043365827798935885, + 0.05887595048011418, + 0.05346930127687389, + 0.03709850388678435, + 0.035797050463565495, + 0.036487152392992106, + 0.03778987953280477, + 0.04337525241347923, + 0.03738922387349082, + 0.03714404259981197, + 0.03480722429897769, + 0.04163320045569133, + 0.04261641275065868, + 0.03156927622064835, + 0.033288240811353384, + 0.03757192620470279, + 0.031942893635469295, + 0.03439084812977176, + 0.0374389249109086, + 0.035511976367270645, + 0.04223540310349009, + 0.032496871086461536, + 0.03263059052556003, + 0.030570483646247634, + 0.04806591149486607, + 0.04932951955126466, + 0.03546087685029298, + 0.04116019081208337, + 0.04139010760535002, + 0.04393992058629227, + 0.030389028646636226, + 0.039419554761369394, + 0.0380486637459267, + 0.04512801915437295, + 0.04390640937237894, + 0.03354216138681314, + 0.04854139078872998, + 0.037540450192023324, + 0.03465683343273216, + 0.035456111514811754, + 0.034494014362562476, + 0.039395124437482984, + 0.03449288750770364, + 0.03499730974905695, + 0.03994208261671468, + 0.03959259231522157, + 0.04316247739498343, + 0.05130118746485339, + 0.03194908544881737, + 0.04010556262686501, + 0.03720459833187079, + 0.03693766645992674, + 0.03251538921147126, + 0.03579139198425048, + 0.03629773854754329, + 0.0428961664881656, + 0.029380832969869826, + 0.03739767056402054, + 0.031859829816940036, + 0.037817862257961396, + 0.04001293808488179, + 0.04542950281653732, + 0.050314692739077384, + 0.04927741061705793, + 0.03278856981722406, + 0.03451473035579789, + 0.03734220994357877, + 0.036341655507450735, + 0.03181752845426773, + 0.03087335549518577, + 0.03119894503185392, + 0.03946407955112093, + 0.03390873698218186, + 0.03961848059722057, + 0.04066229002212603, + 0.02930902496415129, + 0.038237206430423755, + 0.04173872644834194, + 0.03660449235652578, + 0.03597259228572446, + 0.03430801977403305, + 0.03254438659000358, + 0.03751361664215424, + 0.0468374484145797, + 0.04216165966817799, + 0.0369836883532991, + 0.03371516944928572, + 0.03419548567133597, + 0.03501313556919373, + 0.03794833684280722, + 0.03784191781765438, + 0.041488628316922245, + 0.035618624618047996, + 0.041528975514849915, + 0.035769004692768766, + 0.03758956434396649, + 0.040769257601588144, + 0.04412239955296907, + 0.03914716323943476, + 0.04771066834412094, + 0.03792790625190391, + 0.033370898985653236, + 0.041582515524505155, + 0.04230758124781995, + 0.03552164847315969, + 0.03741608543484721, + 0.036034259909921415, + 0.04574534736522267, + 0.03756732442302996, + 0.036798285853285, + 0.038896880341682656, + 0.034747870028345486, + 0.040027562773806445, + 0.03450918678494754, + 0.029293557489304883, + 0.03068830690476302, + 0.03742237871962264, + 0.035446159042553764, + 0.037460894400508774, + 0.0299415033799825, + 0.042145622199267034, + 0.03928240939133698, + 0.04289354717373595, + 0.040970122852830186, + 0.04490744677784468, + 0.038959629468265186, + 0.04215414097282943, + 0.046829628431063114, + 0.0522005771947704, + 0.033283708013988916, + 0.029247611848417635, + 0.034533600160312324, + 0.034782485873983776, + 0.044151506257134064, + 0.03574793675734195, + 0.031650572838448465, + 0.046614862609328345, + 0.04118062971898214, + 0.03317051073868584, + 0.03819996501366347, + 0.036380956781883765, + 0.04250685872548699, + 0.03181126864349238, + 0.03765874737536713, + 0.036206307229892196, + 0.03363141089396577, + 0.032324950067487236, + 0.03479339908824459, + 0.029059146795708698, + 0.061582766046010894, + 0.036886921420197206, + 0.034994171843120495, + 0.031201239430591405, + 0.051317561656683754, + 0.03453026782538782, + 0.04531140988508776, + 0.041083223930923764, + 0.044069457506214924, + 0.03708462846232127, + 0.039626549491545315, + 0.033789837077602955, + 0.03584802682262527, + 0.0354277253843542, + 0.036540922726760294, + 0.048294642520647524, + 0.03538733243663898, + 0.03759337946383291, + 0.03218271936979915, + 0.04537227369471458, + 0.03357849571136781, + 0.03525137436577401, + 0.03073203537207663, + 0.0348019034983876, + 0.04572430978411828, + 0.037979399098773764, + 0.02786908385368369, + 0.034535556234250496, + 0.03879408452703541, + 0.037770581767999155, + 0.04025659002526189, + 0.033781608456544716, + 0.0467664799908445, + 0.03393644450764091, + 0.031214191029648654, + 0.04399081670240459, + 0.04592243146512697, + 0.0398120533535018, + 0.051252405043782735, + 0.035011443942315576, + 0.0375832663902667, + 0.03759642803921876, + 0.035033101611582775, + 0.0415178402783202, + 0.025941129982720877, + 0.03072258640295376, + 0.02680432499357894, + 0.029480219883983784, + 0.046125175473552646, + 0.02840212695959794, + 0.04378006890339967, + 0.03494802338107504, + 0.04031546594236992, + 0.03473625976052326, + 0.032885894981441316, + 0.03262724214586497, + 0.041698041682954934, + 0.049105745270786004, + 0.03437362383572474, + 0.03580839166395477, + 0.030095349684196804, + 0.03367248266282069, + 0.03623535715374934, + 0.035869484156891784, + 0.032050659516227396, + 0.04132134312428582, + 0.03962650896777434, + 0.03250134064113538, + 0.03690781067459747, + 0.03487995890583924, + 0.04491292205634892, + 0.037453711646765905, + 0.03402280605528038, + 0.05233935744840549, + 0.040132391052552806, + 0.03013745513201554, + 0.03468044020237286, + 0.03049941684448601, + 0.03717736492893643, + 0.03902828076464133, + 0.038944784411082276, + 0.03372629344392984, + 0.0366020424265968, + 0.03166767164177297, + 0.034496557855966135, + 0.0320121570525209, + 0.033718937468918596, + 0.03852946592559406, + 0.039871450588765754, + 0.03662410993120432, + 0.032481723789326254, + 0.0320359484346764, + 0.039252250505384514, + 0.03388224857968079, + 0.03457572783126695, + 0.030518491818818248, + 0.042247415909789275, + 0.04450851761453402, + 0.03867932497134077, + 0.03595767271619559, + 0.03767174629451745, + 0.02696245014457545, + 0.031305391092255684, + 0.0404386204506173, + 0.04481803779693773, + 0.05448302500231662, + 0.05175585310267124, + 0.029760258851283167, + 0.042552133186889884, + 0.038848067660984927, + 0.041373331987852764, + 0.0393381432423561, + 0.0428102766803982, + 0.041613488790361225, + 0.03457765087544584, + 0.033024280522562316, + 0.03429663233627866, + 0.04658631770986053, + 0.04133334714842527, + 0.04028996152155439, + 0.028556937709201608, + 0.037584163200961584, + 0.034788983539899156, + 0.0481975582715074, + 0.034212782546912325, + 0.03386603420577681, + 0.029044791531377633, + 0.03135971051209369, + 0.03713583208443278, + 0.031640098634018544, + 0.046166091454798115, + 0.03938108371233467, + 0.040007222022870645, + 0.048876608203120245, + 0.02779051176837832, + 0.04306422314761205, + 0.03730684128937917, + 0.036669714876414385, + 0.03336894276573055, + 0.04483331060977211, + 0.033647290485634765, + 0.03598058391514402, + 0.0446927447040898, + 0.05316172163892913, + 0.03026733018525069, + 0.04767638772565632, + 0.046474526115870725, + 0.044220805955442255, + 0.033891864703835844, + 0.03237600137062467, + 0.03429466583503035, + 0.033098084171077354, + 0.03646705227245967, + 0.03899297895665306, + 0.030716457744490524, + 0.05345977451772545, + 0.03210764511590468, + 0.03287310319601677, + 0.03182578449957918, + 0.038156456826389594, + 0.0497384226272989, + 0.028967991450945748, + 0.03713426963769345, + 0.034426216516556724, + 0.03426262468543851, + 0.03407205515447832, + 0.04051093157973783, + 0.03620972856559124, + 0.034281242755917936, + 0.04046477175292338, + 0.038355671499711495, + 0.037835746657208805, + 0.04079665807922219, + 0.038982029868510355, + 0.03576522330318836, + 0.039981209465311106, + 0.046871303654465374, + 0.029955584502438962, + 0.027491677032063636, + 0.03261918994766015, + 0.03521149023830207, + 0.04320269043695181, + 0.03857782222149291, + 0.036613735610206116, + 0.037509197739103634, + 0.041044712311750144, + 0.02915884830542582, + 0.042683338534924356, + 0.047998477429377545, + 0.046997447479661454, + 0.047770267684378746, + 0.038951421235786765, + 0.0348722609131113, + 0.04069645556890749, + 0.037518048562603115, + 0.04582747120480095, + 0.04606003848911166, + 0.03624025513478198, + 0.030695278329427762, + 0.033459035808667305, + 0.033936346590212066, + 0.03629199104779628, + 0.048161520779280514, + 0.03722202537732676, + 0.04436672073368892, + 0.028176572088327294, + 0.032241153253998754, + 0.029772304616975026, + 0.03402506845115651, + 0.03082682163338694, + 0.02958380851729856, + 0.04136132276508895, + 0.025788337688255884, + 0.04240729264868598, + 0.03473665497903076, + 0.03860754758902393, + 0.04382998620820808, + 0.045682824213371574, + 0.03643932270619859, + 0.03167755225865418, + 0.0380241005458205, + 0.041864912813305864, + 0.046862195417900265, + 0.028851735617815285, + 0.03815039072581936, + 0.03655787933643913, + 0.03423066469352982, + 0.03675204358637212, + 0.0510295311349569, + 0.04333710095875464, + 0.043807810906723206, + 0.03247532127913733, + 0.0513994687154182, + 0.038199029598344224, + 0.038254352030187726, + 0.041736026944808206, + 0.03554393390301706, + 0.03533868157329081, + 0.028050358241001067, + 0.043248637539723855, + 0.03679189117905057, + 0.038898988619418554, + 0.040561247542839705, + 0.04335784183396833, + 0.03182431248372871, + 0.03147277028658221, + 0.0330981791049923, + 0.03181393731034065, + 0.04522717868197601, + 0.04190393882477098, + 0.03392707734026654, + 0.034901433225951774, + 0.03599431570427591, + 0.04023572832122188, + 0.04839922807893964, + 0.041424904832525, + 0.03752049137214786, + 0.05132743797014142, + 0.042021146036357454, + 0.04660227672483781, + 0.037146728257579, + 0.03736667539165662, + 0.03645581092963543, + 0.031723880648844176, + 0.032368134002895295, + 0.036854528643904774, + 0.04457883999423227, + 0.03773186988450143, + 0.04812829043937841, + 0.04789584498642479, + 0.0358189592766491, + 0.04214165125777676, + 0.035679499173269985, + 0.04513729059924817, + 0.04626643393936225, + 0.050304817693504325, + 0.045904476597993196, + 0.03507873655165272, + 0.04010261757537269, + 0.03221552053612622, + 0.04103852679435744, + 0.03042173584784105, + 0.03409229289210993, + 0.03490620427332156, + 0.04378445009610814, + 0.03259603399070243, + 0.032894139692471014, + 0.03843328963321508, + 0.038721386869314554, + 0.03714263334036894, + 0.03199740116310489, + 0.053947423599582274, + 0.038478529819970436, + 0.034077493560069776, + 0.05882808039307977, + 0.035900768420021524, + 0.03555148808344159, + 0.03288779404362087, + 0.035037045888962046, + 0.03765032510110572, + 0.0350980955948427, + 0.028169555919310044, + 0.030312294976129694, + 0.035619749239302556, + 0.029428865121240613, + 0.03337408647562996, + 0.03477741472278651, + 0.0376760090970343, + 0.02956419840663125, + 0.0377230493680857, + 0.03162768568722953, + 0.0377798552534022, + 0.04466505310872451, + 0.03622464655621755, + 0.027166643067548173, + 0.03527719139275261, + 0.042049461315899116, + 0.03562002172932087, + 0.03110364613299399, + 0.0432106092802845, + 0.04070124679887575, + 0.032667005659306816, + 0.03479877821561074, + 0.03315955513704198, + 0.04024804422878356, + 0.04846305931648342, + 0.0396596823505116, + 0.03569285905749512, + 0.03657107865933106, + 0.034330775102754764, + 0.039173235855916984, + 0.035473201973261474, + 0.037739996520452464, + 0.044692450631824386, + 0.05023359966506592, + 0.0338885661903688, + 0.038153782138665354, + 0.04293964549816173, + 0.03868228567850416, + 0.03174996629508084, + 0.03258796421775382, + 0.0356605109122075, + 0.0323122494666547, + 0.03256433299618673, + 0.03455850549959172, + 0.04550802044795971, + 0.03766224239546776, + 0.03528555705140601, + 0.03496592463311676, + 0.030620189520881778, + 0.031279466088786095, + 0.033423184143554205, + 0.03509864995091853, + 0.04097918484734969, + 0.035621313091096216, + 0.03293548636978542, + 0.03953395848404278, + 0.03609288583846013, + 0.034041584707703056, + 0.02790950207106528, + 0.03426570614727602, + 0.036359491767811065, + 0.03786941971967176, + 0.03443095964251611, + 0.03764657656504087, + 0.040693104737753526, + 0.03543662019329792, + 0.03812725175030594, + 0.038149905971661846, + 0.037874145903308606, + 0.03223346676050869, + 0.037670552992040786, + 0.03460712881787693, + 0.044164585645278504, + 0.040978639385832995, + 0.03354058470714203, + 0.045686595102165314, + 0.03272736021636072, + 0.034663540855317795, + 0.043975744890179566, + 0.03974677967709064, + 0.041664690758835526, + 0.039616562132377804, + 0.034231002529943384, + 0.03273005719098603, + 0.044223972136833295, + 0.04662245951827107, + 0.044969387217910335, + 0.0379462144734378, + 0.04806050578436584, + 0.04003967023346988, + 0.035981148094435395, + 0.042688302516885816, + 0.03725916882650892, + 0.041545933164647574, + 0.03403851437319955, + 0.03513994226594421, + 0.035383411939573, + 0.029782970101743206, + 0.044677103802849005, + 0.037282665515293766, + 0.04004245826666551, + 0.0328748135083184, + 0.04016933809066636, + 0.038326420757466215, + 0.03305611278414405, + 0.03553685437419733, + 0.0358975904922617, + 0.03642460236388035, + 0.03875142939828771, + 0.030776443253981576, + 0.034851461098445065, + 0.03061169271251483, + 0.03516551351097187, + 0.03946691520142311, + 0.04313199110019091, + 0.04525929390999682, + 0.03567680243900411, + 0.03723871761987498, + 0.044134332694105785, + 0.03902188604503352, + 0.036005811153561364, + 0.04791504395054445, + 0.03973760164715005, + 0.036385306656790725, + 0.04010433020834564, + 0.031900329676814505, + 0.046473693105637655, + 0.03782924610532211, + 0.03830039448627647, + 0.03288027153265882, + 0.04034049318308939, + 0.032147669379033295, + 0.03562415232486146, + 0.03537076830926647, + 0.03655205421388857, + 0.04464159184146019, + 0.03722834057593325, + 0.04442002548372992, + 0.0331274992408286, + 0.036377393092031404, + 0.0394805442803767, + 0.044329186429292206, + 0.04152887508861695, + 0.03651705045721386, + 0.033967323402246334, + 0.0368453307857785, + 0.04731225147720925, + 0.03689721727050806, + 0.03617351477440037, + 0.03526476117837635, + 0.03951416817172771, + 0.04428004426802626, + 0.04046148599573445, + 0.04292568396395663, + 0.04299436313696256, + 0.04173650483491133, + 0.03316211831503446, + 0.031167071587153018, + 0.04271806948954808, + 0.02723340890287857, + 0.03079088591278609, + 0.037830026812309604, + 0.03761406971433001, + 0.030282479976140513, + 0.03392296752108124, + 0.039755834326357785, + 0.039959131314082734, + 0.035020668665812396, + 0.04121631962942306, + 0.030099662450371635, + 0.03971080056783713, + 0.0375790541156226, + 0.044617807693563584, + 0.03787809067286768, + 0.037160088659908524, + 0.03510670862471708, + 0.03095533955819923, + 0.038654782654605695, + 0.03583687238206181, + 0.040463886712150295, + 0.04051921353285827, + 0.03634625619851319, + 0.039189032908136065, + 0.03465508176043218, + 0.051064934057343137, + 0.04602665824410806, + 0.0399057939871624, + 0.047389610040877134, + 0.023793292736350516, + 0.03762596140794217, + 0.042143133155167795, + 0.03625944073883522, + 0.042754171036574716, + 0.037079599042260415, + 0.038168501152020626, + 0.050416848356539215, + 0.028947068559595026, + 0.03249756821272378, + 0.02964120700534995, + 0.034976410073251224, + 0.03294256211039765, + 0.03956800961258261, + 0.048911086898561745, + 0.03126360153110066, + 0.043392954999971825, + 0.04243246161493766, + 0.03406477612064944, + 0.03985310528447771, + 0.04126806775902926, + 0.04005813107871697, + 0.03362802387864221, + 0.039427324310282424, + 0.037464203108001914, + 0.04011989894364404, + 0.0321601843737673, + 0.04625695829316778, + 0.029320215131115, + 0.035461176090442414, + 0.03765859245105918, + 0.036742649022667995, + 0.03353172951274416, + 0.03040352118885054, + 0.045246117850272695, + 0.038771762766127905, + 0.03756978952615716, + 0.03523067186390819, + 0.0393593945023011, + 0.03742646707417227, + 0.04159145694360628, + 0.036149779114329664, + 0.03394431482420412, + 0.03679020935543944, + 0.036131159692175244, + 0.034101168302989086, + 0.05092879451320453, + 0.04230725263661998, + 0.05106455756499651, + 0.04938737025138997, + 0.03773588281480675, + 0.037523301270277025, + 0.03165580848247228, + 0.03685372518641378, + 0.03183114752990533, + 0.04151288223405479, + 0.04086968513867101, + 0.03661914970148462, + 0.03682095651211631, + 0.03280900134605572, + 0.03604500343615591, + 0.04240053994600447, + 0.04995210665077759, + 0.03832326836774685, + 0.03952001976843773, + 0.03378629097626188, + 0.036897432388648434, + 0.04134647833490218, + 0.03910703403495143, + 0.033482039239645135, + 0.04107778136384346, + 0.03827714244980862, + 0.03283828633309353, + 0.03821009080936676, + 0.044212591641539206, + 0.038488271818700535, + 0.03804929742392869, + 0.038550034774980924, + 0.05300738593471013, + 0.03734761590381995, + 0.03402633330780401, + 0.03382562589922711, + 0.03278673108780589, + 0.02491720599897599, + 0.03540638423097255, + 0.04571505155730847, + 0.03674747626493971, + 0.03149034733778225, + 0.045040621735223794, + 0.042580052261366484, + 0.03378553901511552, + 0.035544264119735665, + 0.040857935576207816, + 0.06345537545461008, + 0.040623137714703654, + 0.03418786131068777, + 0.041174622411589826, + 0.04064196387200534, + 0.030009929094120393, + 0.03745539987841659, + 0.04256468306505475, + 0.04745760001620861, + 0.04119704734918861, + 0.03567574171559508, + 0.04477120350081422, + 0.033521552743791025, + 0.02488216255280122, + 0.051909544856465366, + 0.050271538044844355, + 0.03049086831539034, + 0.03881349299756609, + 0.04302300373130533, + 0.046009497852181246, + 0.034627471349294225, + 0.03945808886201246, + 0.0385421090279734, + 0.05501804160360829, + 0.03895707450999172, + 0.03944012084136429, + 0.04040239040391946, + 0.033036593669546546, + 0.03151195951350756, + 0.03287954507278829, + 0.0350701179962582, + 0.03558287875388176, + 0.03131822172368955, + 0.03579430077352352, + 0.041211188597513625, + 0.03904692123454709, + 0.03884704886855262, + 0.045751190289001875, + 0.04507742951480327, + 0.03522039259098047, + 0.03453963003922568, + 0.057915878933723935, + 0.03865755312804003, + 0.04164359886547433, + 0.033333204836131974, + 0.03291271640612426, + 0.03650056901952035, + 0.03521323753427339, + 0.03450200815901689, + 0.04477427154647318, + 0.055049848026560544, + 0.03868395204294556, + 0.04257065390056778, + 0.04157785053132249, + 0.03297203126048999, + 0.04127884309760898, + 0.03808490492849832, + 0.03877942665798496, + 0.034975722843222194, + 0.03434560890904744, + 0.03260154411843139, + 0.030084565047511683, + 0.03336686368640292, + 0.03912271864938473, + 0.0479851280480055, + 0.03491254511468129, + 0.03747478055072677, + 0.040176669463289544, + 0.03611909824340007, + 0.03675470227054595, + 0.03721090792380749, + 0.03779107016289678, + 0.02972726589950557, + 0.04251328906628961, + 0.0378052601279181, + 0.03666393077799371, + 0.041233374831150686, + 0.033102996339209594, + 0.03658284756113166, + 0.0375101180848333, + 0.03315819955819413, + 0.03788380134913919, + 0.037857408137521184, + 0.026998969199058847, + 0.036611219136302144, + 0.036941811344034695, + 0.04263859009707549, + 0.03370824023076114, + 0.044458417260839427, + 0.040588020997638544, + 0.03605802518342622, + 0.04837491084199531, + 0.03394859912021672, + 0.04866501600229998, + 0.04174259170325907, + 0.032586876906528214, + 0.03394143953337053, + 0.037100364221848973, + 0.04174558019865474, + 0.029950557890461908, + 0.03292349145136799, + 0.03689964986131607, + 0.040324085351794034, + 0.03493130933339046, + 0.03835524666131528, + 0.03450746211351595, + 0.05226842096544274, + 0.04571076895230794, + 0.039176852097801015, + 0.03767852316539451, + 0.03265970100712298, + 0.03893612921881852, + 0.055701132892534144, + 0.041449782310548834, + 0.036045324606291555, + 0.03699822217312444, + 0.03684469755103634, + 0.030554389056481758, + 0.04447334433290726, + 0.03928701719570724, + 0.04786176434051127, + 0.04292532440522577, + 0.03681069165298122, + 0.03826211687081304, + 0.04683739268127328, + 0.04115828439085948, + 0.04505533320361892, + 0.037090970329130654, + 0.0431258208447209, + 0.032400723603120116, + 0.035177998135099954, + 0.040634396914269136, + 0.03846208749536018, + 0.037839077246866915, + 0.03329849857855705, + 0.03301943103512051, + 0.035878947458221094, + 0.03840116040785011, + 0.03611837042752126, + 0.03279399848736184, + 0.04766148097241935, + 0.04049191845046847, + 0.036015466856276324, + 0.03204043880655566, + 0.04423496155337465, + 0.03431897906786185, + 0.040902905461562125, + 0.04385035339012361, + 0.04294501186490252, + 0.035334355965999126, + 0.046035208866973515, + 0.0424550895030381, + 0.049795575165790716, + 0.03275006081533543, + 0.03928536503796407, + 0.03223223777162193, + 0.05267638974776701, + 0.038242106692554165, + 0.042813483131607544, + 0.030905614991993097, + 0.03468659300791756, + 0.0444468399667282, + 0.04209113189534117, + 0.031205615962652703, + 0.030211298735377035, + 0.03806866451790621, + 0.037522742105001554, + 0.043161698659160544, + 0.030474831051886104, + 0.03537490528329947, + 0.03724723831582522, + 0.04423599485711086, + 0.02944901204860744, + 0.03499984839186625, + 0.027582463930558118, + 0.029136984316316502, + 0.0335101914020829, + 0.03320265585718903, + 0.04076012000322418, + 0.04077624688815652, + 0.032333681004033624, + 0.029877861635724444, + 0.03274270557655471, + 0.03147488877950752, + 0.04302846716880189, + 0.03420430585163703, + 0.037358661460062545, + 0.03592607693147557, + 0.03387892317795855, + 0.04586363730308792, + 0.03523776912091873, + 0.0329826715389646, + 0.040977410647328114, + 0.04177694149873966, + 0.06000259199423032, + 0.03538415321142059, + 0.041888112479785515, + 0.036250685943240574, + 0.028135823685109685, + 0.04034803700461254, + 0.03902737172187578, + 0.038902367045769104, + 0.04513750519145869, + 0.03203040466433365, + 0.03406650298118708, + 0.03529277041672731, + 0.03612372360391128, + 0.03868863673477394, + 0.03656656679527455, + 0.04558613203846001, + 0.03808111556168656, + 0.037380714109046614, + 0.03510741673991037, + 0.03398373591258697, + 0.034377462968837674, + 0.050666708226840114, + 0.03564707145165222, + 0.03843634186067142, + 0.04429454549638561, + 0.04198209652350043, + 0.05251076475566079, + 0.037937697130549175, + 0.03927632358351784, + 0.029717890344585135, + 0.036791434622193656, + 0.05282001284045679, + 0.033410125675349914, + 0.047262286020820506, + 0.0338601847944416, + 0.04673483910890712, + 0.03417202903459783, + 0.03774516110057865, + 0.04210500920280691, + 0.04247337163187165, + 0.029390197743098482, + 0.03769605622432724, + 0.03747831612802234, + 0.042006410468024676, + 0.0359182313440113, + 0.040255045379667384, + 0.043910181646185126, + 0.03438495293040074, + 0.04052263663333126, + 0.03859381869211196, + 0.038160223731722724, + 0.03242132273243482, + 0.03731410390199732, + 0.04356591326392716, + 0.03449338307222522, + 0.04075024850656522, + 0.047096855798078915, + 0.04800608687863236, + 0.03201795848675891, + 0.04520421464125126, + 0.03686578870394606, + 0.034853095300864556, + 0.03355559339451194, + 0.05096628177202378, + 0.03104822443659556, + 0.03519482413191264, + 0.04226061095811082, + 0.038272483012414184, + 0.03675366508452365, + 0.04192959773237945, + 0.0316010038532898, + 0.045985887065034356, + 0.04267820914879013, + 0.034882479418999635, + 0.02612341394582705, + 0.03930149029820511, + 0.04207809562372462, + 0.026420635180852556, + 0.03757850383073749, + 0.05266422343732089, + 0.03612741822843645, + 0.04097618781111528, + 0.03663102798739764, + 0.028822282207028642, + 0.039638572704706915, + 0.037945197493143526, + 0.0379837840534401, + 0.03586759517338613, + 0.038782431384189485, + 0.03150641791272288, + 0.031100729361259738, + 0.036831247717082204, + 0.03605521671263444, + 0.03522941994743339, + 0.03245346740299239, + 0.03624737065607451, + 0.053728542285274045, + 0.03920335181989783, + 0.03357679560293461, + 0.041229016345388815, + 0.03551060206867482, + 0.036868832215873296, + 0.037067646716904504, + 0.032113081556772324, + 0.043687518954048515, + 0.04926301414761264, + 0.039777095679548284, + 0.044304470301478605, + 0.029750380843150542, + 0.04605271477697073, + 0.03765955279987305, + 0.033745965313463994, + 0.038223705909656534, + 0.036541863915086334, + 0.038796433071211577, + 0.033788442381128485, + 0.042404184141307526, + 0.039984168455548565, + 0.034046580637227056, + 0.050381624714575184, + 0.03178308514852434, + 0.043029162197209224, + 0.029414178473621776, + 0.03755625956713292, + 0.046647136503305466, + 0.042676909888642076, + 0.037048758346480526, + 0.03822607470444414, + 0.03365140927718977, + 0.03253445905654212, + 0.03380853506603969, + 0.03373330191541571, + 0.03740695482436005, + 0.03553035337920122, + 0.04070973221106141, + 0.03734742154726675, + 0.03846266740452059, + 0.0342328402370747, + 0.039094285280920946, + 0.03823079767658947, + 0.03356320065620914, + 0.030887662187047568, + 0.02957065627313977, + 0.03379625722380191, + 0.04816740318824613, + 0.03850555136965895, + 0.03446802298762347, + 0.035341957833072535, + 0.04426826574866336, + 0.03373443118250234, + 0.032948336632962996, + 0.05625007372168408, + 0.031213739687595752, + 0.04469724849345676, + 0.040327156522331965, + 0.0330989554010271, + 0.03436869210181443, + 0.04136522992663844, + 0.04181542133137288, + 0.03822527322654278, + 0.04010084891354938, + 0.03979085414763936, + 0.036175812527398044, + 0.034597227585234994, + 0.041704726037376405, + 0.035903873372037494, + 0.038824054063638494, + 0.02897629182779753, + 0.03680405275428033, + 0.04613042349845506, + 0.03433620201789554, + 0.029866600876458, + 0.036397898061730806, + 0.037775009497126005, + 0.0431732333499799, + 0.028179256743461386, + 0.04066403377763962, + 0.043334255140473996, + 0.03446832282749706, + 0.03936412900014699, + 0.043636023560119266, + 0.039865521816060165, + 0.04163917129296337, + 0.03675746738507009, + 0.03658982931650411, + 0.039331240206290204, + 0.035748092454435984, + 0.047383667693372794, + 0.02888761767702959, + 0.037654922089758056, + 0.0343150265263848, + 0.04561119582836845, + 0.041927388862184396, + 0.043067569833731736, + 0.03784607948196748, + 0.035942803080715874, + 0.03863671671114515, + 0.037494059719763224, + 0.03749443079241103, + 0.02823710359818581, + 0.04993165323335047, + 0.05014446974493773, + 0.031797340909381626, + 0.035409360025992556, + 0.03271672361421208, + 0.043333588843982855, + 0.03386849839334887, + 0.0378332125123609, + 0.03286815854657673, + 0.0334279421671833, + 0.031010108177271102, + 0.039160416567532004, + 0.030781794705072654, + 0.03837728152399801, + 0.029201784057270037, + 0.03387303601318097, + 0.035111353395468024, + 0.04540605266723682, + 0.03705740308036125, + 0.039369324303396305, + 0.04052764592085936, + 0.030301045784513415, + 0.03657815867924591, + 0.03769972588711498, + 0.0413179192413256, + 0.03373706574418359, + 0.03800185365235206, + 0.041752109616754386, + 0.03943390012847529, + 0.04613024356131916, + 0.04316732746941992, + 0.03494090374097892, + 0.035654812743851676, + 0.032683242330117754, + 0.043003085263539596, + 0.03617686389891173, + 0.04273840390486193, + 0.03355385442445831, + 0.03130762526199547, + 0.040089112523470305, + 0.03352006447630211, + 0.041889035367078935, + 0.028405771620288643, + 0.03483071798904068, + 0.03893141609121072, + 0.030470796751127686, + 0.03644594388921953, + 0.04488952542086894, + 0.029444245784938806, + 0.04054300549654817, + 0.031822530918388, + 0.03889249792420921, + 0.037426020214415254, + 0.036697111495703344, + 0.03599352503819768, + 0.03746322257333365, + 0.04080163634871384, + 0.0252894269661263, + 0.03693158961775255, + 0.03696740192292438, + 0.037346530951347885, + 0.03917597606168916, + 0.0310146862552043, + 0.04224291350748478, + 0.03757217671918882, + 0.040057583077902865, + 0.03654879845312566, + 0.03672291200594053, + 0.03310761331087965, + 0.03920593104982247, + 0.0372758722028228, + 0.0306699810842429, + 0.03738092909561817, + 0.05489562244069448, + 0.049625300934400235, + 0.057821073121948244, + 0.04581080969632234, + 0.05142851363333584, + 0.03590713166843623, + 0.036493226337111044, + 0.03448005611573408, + 0.042245455540686316, + 0.05436901146982032, + 0.03685641817855004, + 0.03729509345675912, + 0.03295948747209554, + 0.041931385516165834, + 0.04045333235253638, + 0.044945586638211125, + 0.03210970538453184, + 0.031440439453243436, + 0.03216208883619346, + 0.039430229368989, + 0.04148481809770222, + 0.032854434637260094, + 0.035256661682874356, + 0.03261959299697482, + 0.03056457448952855, + 0.04179417660660691, + 0.03709401470600037, + 0.03578428579447551, + 0.039423737127332804, + 0.03531468238532583, + 0.03495881675269886, + 0.038528308420816386, + 0.046244410972050315, + 0.03413751251970405, + 0.03330393679532004, + 0.030724440330388948, + 0.04459829952542516, + 0.04191739490657201, + 0.04650870395159464, + 0.03650734250143852, + 0.03433096396094397, + 0.058489176326931194, + 0.040344906901672105, + 0.036797038804848914, + 0.036666662280695254, + 0.03979460596260251, + 0.036085462251656195, + 0.041668545965131476, + 0.04228517862945034, + 0.039806057710654486, + 0.03447457589048687, + 0.0418644798129817, + 0.036877903446083084, + 0.035547317516434244, + 0.03750819432989533, + 0.05159554886644939, + 0.04847138521175479, + 0.037607850752789024, + 0.03234542064336271, + 0.03198029477313237, + 0.03651516565770312, + 0.04874857194914011, + 0.03794312056754906, + 0.028327657387046026, + 0.034024494447155905, + 0.0348876162849785, + 0.048393532440383774, + 0.04345193245910985, + 0.03763757453683894, + 0.03802032285209421, + 0.03950539950794461, + 0.03879454600662846, + 0.03078304324083367, + 0.04326609453978843, + 0.05583523654865908, + 0.03590051133707303, + 0.03548119051813968, + 0.032099334090740735, + 0.0391097271491389, + 0.028065159391229246, + 0.043041522857267936, + 0.03626112547896431, + 0.03797472522958369, + 0.03369121228927952, + 0.03871107855516133, + 0.03355911954749667, + 0.04124017967622655, + 0.02749548688758009, + 0.03649774864745004, + 0.04118511001515938, + 0.03968061759992798, + 0.03352382004292821, + 0.02947153981048823, + 0.04164914215092803, + 0.039701933716187826, + 0.04406147058704961, + 0.04289192242903226, + 0.03488618839404213, + 0.037682058161934956, + 0.04576151877112229, + 0.04410973714420413, + 0.04880080271046833, + 0.03187439599413252, + 0.03857512934625828, + 0.0363103766574457, + 0.050751024863482805, + 0.03546107736358303, + 0.04644388759819551, + 0.0356076691369949, + 0.0329405053577576, + 0.04304564028600423, + 0.04428031698688281, + 0.03473384037803335, + 0.029398562096769536, + 0.03788003561627837, + 0.038764942020093195, + 0.0356698758632289, + 0.04317452603895459, + 0.044061562752372024, + 0.045153912187813526, + 0.05123824402779467, + 0.03568369681751024, + 0.036877604682840674, + 0.042872148547504096, + 0.034102406781173815, + 0.031135346477498483, + 0.03558922265328357, + 0.030278131662132737, + 0.03565220883480501, + 0.03599535177211106, + 0.03364793675553874, + 0.03589281217774354, + 0.04433754571798969, + 0.04011715714499732, + 0.04066774527551027, + 0.03155404801852664, + 0.041255891095263036, + 0.05348063356238884, + 0.03639920013965043, + 0.028526849739237088, + 0.03859572631072595, + 0.04639821690807304, + 0.026607300909979942, + 0.03141054550992005, + 0.034109357061644814, + 0.035211446452835304, + 0.0360526268089765, + 0.03695443067224974, + 0.026355056499127612, + 0.042095706484548696, + 0.03999025292736321, + 0.04661312521566986, + 0.03334395277931645, + 0.04838618380042627, + 0.03618400221225293, + 0.031058282503616537, + 0.03449665674107076, + 0.034419920447823105, + 0.04381629325263008, + 0.034794690319583536, + 0.0404385036833057, + 0.033490525988809, + 0.044887016288155945, + 0.04136539372175497, + 0.03264176670814282, + 0.042707798288784224, + 0.03675637412168553, + 0.03137579495661615, + 0.03908158791319398, + 0.038411295843929015, + 0.04205711946548875, + 0.04404606913057349, + 0.03426138841160384, + 0.036337242940283926, + 0.038409521859343584, + 0.03430400974593417, + 0.03909577692534775, + 0.0477113866636097, + 0.049894475444503546, + 0.04153237017607649, + 0.03564128638745765, + 0.03752839301776889, + 0.046692065936493374, + 0.04287394146152392, + 0.03703185323447618, + 0.04323811113015047, + 0.03922285317650408, + 0.03860694483275475, + 0.03897659797907883, + 0.03612464136316155, + 0.04400453942240355, + 0.030460969965930867, + 0.037366895430838605, + 0.037826960481806164, + 0.030468427817631143, + 0.03999582046787915, + 0.03904875740402337, + 0.036537150328187766, + 0.036109468701536925, + 0.03485382492159212, + 0.03780984624297852, + 0.049725276665145215, + 0.033117439344460056, + 0.03130761102071812, + 0.038306344768218176, + 0.04009277152573155, + 0.035360182512943754, + 0.04157482425797406, + 0.03520492403548326, + 0.029037883939198803, + 0.03248176630102093, + 0.037489537609792234, + 0.03129847860894193, + 0.040677277321063604, + 0.04179502909916472, + 0.04625417006563384, + 0.048349208678738535, + 0.03294759612063325, + 0.03536517297668565, + 0.03253838048469217, + 0.031409960759988975, + 0.03603276257337654, + 0.0340489213057232, + 0.033757319630465, + 0.05125638708531886, + 0.053305634595419975, + 0.05060853947844076, + 0.043960073907879336, + 0.04857252322987233, + 0.038463666899929694, + 0.032000085548812784, + 0.03290603543022343, + 0.03197086477513631, + 0.041452663902632594, + 0.04083296045280335, + 0.03823715000369677, + 0.037541094846173344, + 0.04501781663789503, + 0.03801421197145585, + 0.03772554127350011, + 0.03508599575381345, + 0.045986868466082555, + 0.03457283126336039, + 0.039670929765858974, + 0.03510986785051245, + 0.03434391628032128, + 0.047386179853384294, + 0.031195200843116024, + 0.036102826245529025, + 0.03942010670452565, + 0.03960023979661279, + 0.03915754857158154, + 0.036479003652566414, + 0.03848196702643057, + 0.03631791188127995, + 0.045955219888905524, + 0.04541539587758977, + 0.044371718752753954, + 0.03984476443138564, + 0.03716077289145779, + 0.0362489461314083, + 0.04052701430957249, + 0.038563422122578205, + 0.02914178333358486, + 0.04642047802414613, + 0.03300307302710542, + 0.03938564064106378, + 0.036598770188974325, + 0.034463373974119214, + 0.03451742266995016, + 0.03179490756117757, + 0.03802252711892285, + 0.03883119044965658, + 0.026195867588346546, + 0.03920212981704531, + 0.03727806494846881, + 0.02694380805859417, + 0.041146231916330565, + 0.047614605514756304, + 0.04731844558302646, + 0.046504308098501444, + 0.038249777217866945, + 0.03891265745021732, + 0.036387279816501264, + 0.039374333809730995, + 0.040277917917483065, + 0.036261697878588045, + 0.02805872469741966, + 0.04650276903722949, + 0.039260527143991225, + 0.03704458014076304, + 0.03139378816129422, + 0.041763309269907165, + 0.03593755711651214, + 0.03246271642703323, + 0.04031160510537772, + 0.0328849089631058, + 0.04186301717006903, + 0.03411244059152924, + 0.037204309745456375, + 0.03606827807965834, + 0.037888751955669785, + 0.06300385660539802, + 0.033002414137241795, + 0.05938535154891804, + 0.028860834186203742, + 0.04074569546079103, + 0.04114472041118275, + 0.040062515291175986, + 0.036262936132934194, + 0.03596335955847404, + 0.02811883497595696, + 0.036586239418948494, + 0.03899010116280318, + 0.034275706105782115, + 0.041256937073694856, + 0.03225680511990526, + 0.0394422035864565, + 0.03971195663205127, + 0.03757082388395263, + 0.03970263960270182, + 0.03937526495427845, + 0.03269621007972789, + 0.04849832453506361, + 0.03879651050579021, + 0.037272700451417076, + 0.04001091884016028, + 0.03882070275063705, + 0.03303577506554687, + 0.036389425156164994, + 0.03705863938805122, + 0.04757340925838273, + 0.03646391883701263, + 0.03945918473958251, + 0.035644487629029754, + 0.034353473368676196, + 0.03198645744492398, + 0.040770186314223, + 0.040647255525251995, + 0.041959646211727514, + 0.03731608275867864, + 0.030979457734497284, + 0.026458390007189834, + 0.032276748524072946, + 0.039778450749843916, + 0.03586908026999323, + 0.039708353418399504, + 0.03797249045899612, + 0.04517295792695398, + 0.03485983871020574, + 0.02891134602054303, + 0.0316484995053171, + 0.035862447773872, + 0.04383426568628599, + 0.044808466632958774, + 0.03719418426118373, + 0.03879523221420462, + 0.03875775138803448, + 0.03730997439518184, + 0.03674004159231535, + 0.039030614021835025, + 0.0426199530194233, + 0.04045643114367988, + 0.04973426653867739, + 0.03896435665243588, + 0.037607951771450696, + 0.036609842429208374, + 0.03219676851994107, + 0.039214591240387016, + 0.045677419325921134, + 0.041042617402002636, + 0.05001303222973164, + 0.049783322760212544, + 0.03870315327799955, + 0.03642055101292874, + 0.041075195673355415, + 0.04377341174890593, + 0.030691214116285094, + 0.038510486906423745, + 0.0421066365361497, + 0.043071580955392846, + 0.03718660459421223, + 0.04435767697621762, + 0.03459132375283311, + 0.037222189020527374, + 0.03612201178664184, + 0.03974053003547916, + 0.036963018560733946, + 0.04475658911293778, + 0.040371917663043155, + 0.04211464724251622, + 0.03386445950436824, + 0.04581457881351425, + 0.03885653496562005, + 0.03404675793947748, + 0.03701223495304096, + 0.03509745244311457, + 0.03438854449934538, + 0.04541673817232952, + 0.03275420992085902, + 0.041677470780586263, + 0.03809346693131574, + 0.04224242145235368, + 0.02739562931530803, + 0.03386836243268593, + 0.03667020383025866, + 0.03608760101009877, + 0.039334545169555486, + 0.05108486516384959, + 0.0432987620304001, + 0.04102555918832196, + 0.030080532662607417, + 0.034768728292878075, + 0.03524842516506357, + 0.040732423476013205, + 0.04422815515531903, + 0.039755031140586324, + 0.03535630644564935, + 0.03665034077078201, + 0.039110673311455325, + 0.034680706352664806, + 0.041363203288227096, + 0.03282375501100119, + 0.035795260582077375, + 0.04505286530089689, + 0.03626417278467906, + 0.04078555964107367, + 0.04585047244212783, + 0.04677636410995654, + 0.03559755623357333, + 0.045999176081371454, + 0.04294565233222781, + 0.039717296747021125, + 0.04247514756979296, + 0.048259960295623974, + 0.03230748354803328, + 0.03826235331165317, + 0.043633493453930555, + 0.04109144104426518, + 0.04845431339239015, + 0.04012336145536388, + 0.03323203685620526, + 0.0377888240048068, + 0.03703059851710544, + 0.04726679045685201, + 0.0360221917169703, + 0.0448784332360391, + 0.041614867964821764, + 0.04166756740724433, + 0.03553722156730118, + 0.03597342838075964, + 0.03805219074225193, + 0.034068279345022844, + 0.04421658957271774, + 0.026823218438385938, + 0.03256924356419975, + 0.03559894014329965, + 0.03497693884843499, + 0.03288660319255535, + 0.03355562461884545, + 0.03837088126792684, + 0.03825582119705466, + 0.045148802731797985, + 0.04261009499637181, + 0.03351132035932259, + 0.0324495417817184, + 0.03582450262225449, + 0.027597997799760663, + 0.03804115168884226, + 0.03771376331009423, + 0.039701887470521, + 0.03959930490984308, + 0.03176017929779832, + 0.028793308038790894, + 0.03888875301909826, + 0.03476163392692776, + 0.03045982654164056, + 0.03893164327423019, + 0.04654975016875314, + 0.03423800022236661, + 0.03657184578955376, + 0.03787624306441848, + 0.030012849266046446, + 0.03407788292305741, + 0.04573287710173157, + 0.03529369736655664, + 0.03414188639576161, + 0.045797564707329354, + 0.03786417956885243, + 0.040532368121773174, + 0.036617129236564426, + 0.04064299391406673, + 0.03931825491492424, + 0.040756181636031355, + 0.04244440012094541, + 0.038785149356597264, + 0.0419698173456448, + 0.02594234548932423, + 0.042305280118158775, + 0.03993888343015612, + 0.040060337367817, + 0.04227315304950632, + 0.03211109348738938, + 0.03572088642159684, + 0.036481142491289545, + 0.035644635508093866, + 0.035120318587717685, + 0.02993862972648881, + 0.037937061690772864, + 0.04622851400518608, + 0.04423398353146879, + 0.04423206888515707, + 0.03670177268417874, + 0.043292487818347845, + 0.0406485459049249, + 0.030734442245204545, + 0.04133226439805542, + 0.035848172117938726, + 0.03487903143660557, + 0.0386800530711506, + 0.046947006973196724, + 0.040537893577387664, + 0.0555192851881057, + 0.04539113895980469, + 0.032779004302320724, + 0.03483017709863845, + 0.03018821865272444, + 0.03452465870089393, + 0.0353568920368715, + 0.03561794835140444, + 0.0372417698721024, + 0.033266984144368274, + 0.04098325329954274, + 0.04766145525320224, + 0.03756277074957312, + 0.03022595133307966, + 0.03349070891160892, + 0.043618676323936366, + 0.033423297091354096, + 0.03420291811166465, + 0.03571296222333342, + 0.041938780872698554, + 0.04048377263153359, + 0.0465192457515819, + 0.04282765191202603, + 0.037934013627503094, + 0.04853257140901137, + 0.03826688939635513, + 0.03696846368302356, + 0.03917346026434738, + 0.038611684259770206, + 0.027654659234946775, + 0.035871762723323555, + 0.04152767467326234, + 0.03512576286556703, + 0.03653058905955738, + 0.033321479851307644, + 0.039464077826930156, + 0.03651442861900093, + 0.03542021250127906, + 0.04295908506824189, + 0.0383380235750045, + 0.03830327182848354, + 0.05359731628092138, + 0.04056628641032372, + 0.03463750160940569, + 0.03763829314977869, + 0.02767927136569306, + 0.05138894549758217, + 0.0371928402963474, + 0.046782707880482645, + 0.05478170106735346, + 0.04265554904376973, + 0.04009944400081174, + 0.0358115633558903, + 0.03573980011236075, + 0.03652980843935089, + 0.030290204178749534, + 0.0301469497953118, + 0.03443018141898485, + 0.04075252002529938, + 0.047946546902138815, + 0.03771928427425473, + 0.03538293086925018, + 0.030074470097305246, + 0.03374260903072833, + 0.03560160876509828, + 0.0407123967903499, + 0.03992484449239414, + 0.05152551002221296, + 0.0403217695611085, + 0.03841918287248264, + 0.04209292857080473, + 0.03786221428767942, + 0.04282374959749436, + 0.0415986445205774, + 0.03434325258619837, + 0.04139930884483423, + 0.034101269051908634, + 0.03844119078797623, + 0.04539914466266611, + 0.04225727455741682, + 0.030530889552896186, + 0.026534492161453347, + 0.031733389584510066, + 0.03264114777134815, + 0.03937488056970683, + 0.03474890076032538, + 0.03956085794505028, + 0.0408590563897902, + 0.02791639298470124, + 0.03373004473197729, + 0.031435029822905386, + 0.04042917748182468, + 0.040024978850099244, + 0.037166708888992414, + 0.04077138122362353, + 0.028789988806098423, + 0.028125864735494412, + 0.033476593439224836, + 0.031232083993403072, + 0.03606011839593796, + 0.025579696390505967, + 0.0325486705736813, + 0.037597017457769236, + 0.03586306665722785, + 0.033340263520880535, + 0.03385395039772095, + 0.041841541988983946, + 0.03980862006419679, + 0.03529926723845802, + 0.03625634121755422, + 0.04777363075624528, + 0.044155630522049995, + 0.03438020215326825, + 0.030439661238158274, + 0.04375675464240478, + 0.03473670520780883, + 0.04148506039005488, + 0.03529050536502679, + 0.033387608257534944, + 0.04176709120525497, + 0.044409251491239816, + 0.03796537615428876, + 0.03161447443519717, + 0.037201335270488044, + 0.04262503578161883, + 0.047894755642108294, + 0.033214290366631746, + 0.039625918201965184, + 0.04854512656434281, + 0.03851336220018066, + 0.03176769444116056, + 0.03695821603389723, + 0.04537336083753161, + 0.03784463204332615, + 0.0397685846570915, + 0.03370108075621064, + 0.04674701774428475, + 0.029712658094023243, + 0.034534715110412076, + 0.039863966791761705, + 0.03546992609798873, + 0.030582527152050783, + 0.030194061590729616, + 0.046368111461789104, + 0.045066178578035236, + 0.041802878332685346, + 0.048703141014272165, + 0.04236508136497845, + 0.039954028481569426, + 0.0401896878141823, + 0.03576655788962206, + 0.03644404799278942, + 0.03845879543983342, + 0.03468618324772333, + 0.0430549522476433, + 0.047178747539449624, + 0.034850157939107805, + 0.03632578045034045, + 0.0327335303411314, + 0.027884607646870493, + 0.0578587663776538, + 0.03878904020885957, + 0.042505952362124455, + 0.0365978395111226, + 0.03296742430840966, + 0.03403206414175872, + 0.036068562378296906, + 0.05077625176674408, + 0.04734523642984188, + 0.04044126624802654, + 0.040368118691235653, + 0.0379433083599955, + 0.037176879182779274, + 0.04136662222976418, + 0.0336193140604262, + 0.045492291271021765, + 0.05175525549238502, + 0.032908339353776885, + 0.03641164048569073, + 0.03896466330795308, + 0.03888489246749726, + 0.03482546819036154, + 0.04677020888795283, + 0.042754597851819336, + 0.04847517823363793, + 0.039564102778536864, + 0.03642492049820584, + 0.03383258718003012, + 0.03809146503500441, + 0.03563206590846081, + 0.044019061041222676, + 0.03506534473829988, + 0.036285448957259936, + 0.03403807529818133, + 0.039288054952842794, + 0.0392015838110896, + 0.02812963536261783, + 0.04376539084961521, + 0.03425343128966303, + 0.04388995103099727, + 0.03413124839996007, + 0.03876723299508876, + 0.032399925111421424, + 0.03265150027235655, + 0.040222323136200916, + 0.03059120179670867, + 0.03165929047993339, + 0.04058962711642511, + 0.05127821322877519, + 0.031192347068186268, + 0.03086592803724161, + 0.03930535351956921, + 0.030224081069505318, + 0.03193504873214577, + 0.03978446754766906, + 0.030734624583166417, + 0.03959417282832945, + 0.046206362673673194, + 0.03737666639267602, + 0.03467731225418088, + 0.04199645060516796, + 0.03328934692764233, + 0.04096885825709842, + 0.04191654816087265, + 0.031139574811984164, + 0.0440232261707063, + 0.03154705652280483, + 0.04645735101575443, + 0.03731977326246917, + 0.03551947839123403, + 0.03195375721975527, + 0.05164569253254286, + 0.03830410546083866, + 0.04238887414614551, + 0.03696912371930118, + 0.03608355702112441, + 0.03467543034746934, + 0.031186643380685147, + 0.03212275724513679, + 0.029330115457946632, + 0.0325948500215025, + 0.0273272075335513, + 0.04254940735015603, + 0.04011419714550276, + 0.0325294031722201, + 0.038047288208748385, + 0.034981818489803744, + 0.0389890452568053, + 0.04303943316255147, + 0.033195116211952556, + 0.028823848420485732, + 0.03713718841147862, + 0.054625188428644555, + 0.03853131233890473, + 0.03682934926140472, + 0.031443887182522993, + 0.030974303806605923, + 0.031480598185282656, + 0.03987652193292877, + 0.0503310888646156, + 0.04378064042817136, + 0.031121918852355778, + 0.035220351264451485, + 0.030508330662866175, + 0.0325046334949135, + 0.03877551093617575, + 0.05051618605645818, + 0.042379657821887184, + 0.042525502206169956, + 0.033867908046696225, + 0.041324749928709055, + 0.032395765005249995, + 0.029643754473340295, + 0.036676487495765756, + 0.03335962343873325, + 0.04134558544115029, + 0.04638656246672928, + 0.04478782933619689, + 0.0315583549885158, + 0.03281853467751645, + 0.046439680702811806, + 0.034688838723108975, + 0.03489597346404826, + 0.041946826701771064, + 0.03525040596399905, + 0.040099035557020324, + 0.029006030597203757, + 0.03740591156526392, + 0.03579798119319211, + 0.05150988348716196, + 0.03196377232326482, + 0.050466662786610765, + 0.029192677415271005, + 0.032975394251398185, + 0.03138465799440208, + 0.037212415098600495, + 0.02867874664127045, + 0.03976703710505436, + 0.03584899559583418, + 0.03089107925169109, + 0.040005735005084926, + 0.038539646049049595, + 0.03741710966526561, + 0.03671124969777983, + 0.036880722782489925, + 0.041528866492096674, + 0.039561352647886766, + 0.03859234666346937, + 0.03975715859930455, + 0.03960041186515756, + 0.03629199641424028, + 0.04291364293272526, + 0.03292406662328685, + 0.034563772300305245, + 0.03278947008287785, + 0.03706137008338007, + 0.05280586334515661, + 0.04240408941802733, + 0.0404639344748649, + 0.03212583487655501, + 0.038819172990251095, + 0.03988283988063712, + 0.034061594595523055, + 0.039036194048501206, + 0.029006176007674658, + 0.04075898336142102, + 0.03624516975677751, + 0.03745115850890294, + 0.037700571252799235, + 0.027828041102798098, + 0.03286304398554533, + 0.03788646442325755, + 0.03273533941516796, + 0.03641660548382138, + 0.03494835870945491, + 0.038807113065084144, + 0.03895847133766878, + 0.03746334948247322, + 0.03973628303572923, + 0.033126346739306256, + 0.04648763451811578, + 0.039525353373604674, + 0.03976139850862751, + 0.03706485043810678, + 0.043338112563255406, + 0.04401365461359401, + 0.03640331901906539, + 0.03369919644905924, + 0.040065793944149816, + 0.03679699237009474, + 0.02966502967816615, + 0.039366526510170204, + 0.04182050195226599, + 0.045977005561724474, + 0.04033652454125148, + 0.03499842285619715, + 0.041185021097434535, + 0.044651743447766054, + 0.03950734919709825, + 0.0332392100777702, + 0.040005421416832714, + 0.03674337183049748, + 0.048068956547690556, + 0.03722539592972299, + 0.03389377362769705, + 0.050162599401859326, + 0.038652070078794606, + 0.03468883142544549, + 0.03356486017154953, + 0.032598719728642346, + 0.04740095552849379, + 0.030418740144178735, + 0.04022088250610991, + 0.03168475500122883, + 0.029920533852511172, + 0.033124960954169044, + 0.0375075150451124, + 0.04498870324802989, + 0.03872809099965537, + 0.03443496717014261, + 0.04332021950177796, + 0.03775895344743116, + 0.03054737418546442, + 0.05560970213582159, + 0.03313356958155297, + 0.04698703176624632, + 0.026691172468399398, + 0.03272864793385165, + 0.030812918239275264, + 0.029980791421756903, + 0.03161101946646935, + 0.04800866599166739, + 0.03364498981814394, + 0.038684191792513346, + 0.036369464967865625, + 0.03632491943815282, + 0.044198621112718724, + 0.04039567885977744, + 0.036407857669133015, + 0.04147495771088878, + 0.04752453616435627, + 0.04520240220890625, + 0.03173921238897873, + 0.033033902022680445, + 0.03503473069181417, + 0.03433016362913627, + 0.03962645235710991, + 0.03781965995463683, + 0.03291257303380632, + 0.03599438012015732, + 0.044153066303537956, + 0.036698213902426634, + 0.045301272813350515, + 0.02703556160193841, + 0.02786690512994834, + 0.03721327498812104, + 0.0327270898200866, + 0.03513012528155598, + 0.03789102152435197, + 0.03998335180531263, + 0.03345325223734339, + 0.04149612766016956, + 0.03462147374319388, + 0.04249073459933732, + 0.03749510838443123, + 0.039185800713927944, + 0.03921537744686756, + 0.03880163875720252, + 0.031206063332542944, + 0.03824317014693018, + 0.04039737100660724, + 0.04583973208680168, + 0.02826982068531921, + 0.03720591035051415, + 0.04129987215346998, + 0.0378619910272634, + 0.0397815072711776, + 0.041674192944826584, + 0.037828237392790585, + 0.03514826907169474, + 0.037421410031209884, + 0.0413642712870934, + 0.04278357080355724, + 0.032878919612945964, + 0.03525910087574295, + 0.0341641931771348, + 0.035430282075740595, + 0.03887144007717604, + 0.04074177018579362, + 0.04054636793767495, + 0.03285840893680503, + 0.030235654809456503, + 0.04120714155097761, + 0.037506249186950454, + 0.03082906658548179, + 0.03434544714125384, + 0.030299740654801607, + 0.03191850492687375, + 0.03161831823018429, + 0.05545072158035697, + 0.03397254372466689, + 0.03234054448572166, + 0.03846184601583398, + 0.03730777158786427, + 0.04102307482931448, + 0.033423705639390774, + 0.05303354486536487, + 0.0316998969826635, + 0.034363999811006275, + 0.04811133643879667, + 0.029301091082114133, + 0.053716024469511, + 0.038350550545422364, + 0.028729153288714875, + 0.03179590114412559, + 0.053809947510251754, + 0.035608727158570115, + 0.040072539200390396, + 0.039959193665733854, + 0.04292630561174946, + 0.03562605870778277, + 0.03774918545529193, + 0.04147645522225622, + 0.03297732351886803, + 0.029562418447585684, + 0.044520602923490575, + 0.040172368089213754, + 0.036710515523086774, + 0.036268561081304634, + 0.04018722780570881, + 0.03962593353886856, + 0.029852995001192806, + 0.037091374007387067, + 0.042113637665141, + 0.0331753861419103, + 0.03861445848983125, + 0.04061127161864722, + 0.039669441729607575, + 0.04437711027250108, + 0.033392605139875575, + 0.034591499776234366, + 0.04235565942446136, + 0.040356062257395936, + 0.04035408387376776, + 0.041445818376598643, + 0.040077656002463775, + 0.03893000443034479, + 0.029085274863995546, + 0.03589313730801562, + 0.04038934124204986, + 0.05170712058798448, + 0.0378117605721082, + 0.03571841962836294, + 0.03555473396659697, + 0.032362661650701716, + 0.040495404971812525, + 0.03420939134973378, + 0.035239758984546246, + 0.0359632198978877, + 0.0441702353536253, + 0.04495845443492943, + 0.03636230458890936, + 0.034710976282289925, + 0.030114035354134365, + 0.02742004592932947, + 0.03666006546837657, + 0.04098692771456942, + 0.030039075392241387, + 0.030819784618041073, + 0.03036666347469495, + 0.04698924028526388, + 0.04311509824260262, + 0.03507413261747865, + 0.03532468336480439, + 0.04824090130457213, + 0.036328501553065946, + 0.042452381700214155, + 0.04473121114206074, + 0.0342124633475163, + 0.03637155022509749, + 0.04245718280043546, + 0.05667738213383521, + 0.047995038884750055, + 0.04375412760254694, + 0.03470169496187423, + 0.03665788121444561, + 0.04159735826065351, + 0.035184068254843104, + 0.04389564283821098, + 0.039202092948214376, + 0.03701473136069894, + 0.03518915902411732, + 0.038563306237783035, + 0.04030653250110052, + 0.05189707835945433, + 0.033005212592098356, + 0.042084396439270734, + 0.03507242528708949, + 0.029787825623691717, + 0.033942293027434386, + 0.028997029948112107, + 0.03570084410642428, + 0.0370363002585503, + 0.03227830044488221, + 0.03507546706750197, + 0.04322804271546265, + 0.039155570514575196, + 0.04042208547015864, + 0.03839015982448484, + 0.04119668467952639, + 0.04017615730845641, + 0.03816223606831141, + 0.0450968300946815, + 0.033728743215243016, + 0.035279563091997757, + 0.03955767592469025, + 0.030232149630509533, + 0.0387140745928998, + 0.043344230470794186, + 0.03706536590970532, + 0.04155131474496801, + 0.03708719964656509, + 0.04258593837113183, + 0.03829545678850154, + 0.04293969227904615, + 0.03928246780534043, + 0.04080961322903482, + 0.030718145264291702, + 0.03187970265514363, + 0.03697295419754663, + 0.03648552374744623, + 0.04046948157077591, + 0.03382088968478925, + 0.03567975775214078, + 0.03298548423197548, + 0.03964167063034438, + 0.029509849306381734, + 0.03817426363856078, + 0.03614846810275349, + 0.035450088131644575, + 0.038665184904707356, + 0.03760099995528058, + 0.038330537744134384, + 0.03623233835581044, + 0.02930372758525974, + 0.0393197431833723, + 0.03274271480317688, + 0.038304084190598796, + 0.033041046705687506, + 0.03398291917072617, + 0.0376986744433659, + 0.04493817201841957, + 0.030336696621380135, + 0.03471623276848968, + 0.03540795811448671, + 0.04075097538367962, + 0.03744146919019874, + 0.031910429902881246, + 0.03694527944483542, + 0.051989030347880945, + 0.03816260772521264, + 0.037264774614540336, + 0.040501898940912995, + 0.041759975358181704, + 0.04455066622655594, + 0.04116871305189455, + 0.02680595156723464, + 0.039196239954993724, + 0.031927988747097596, + 0.0376349002630319, + 0.035617442015118614, + 0.04308995454032352, + 0.03662692473656292, + 0.03963428079945681, + 0.033200303342366684, + 0.04813860739508704, + 0.03457730386394215, + 0.035437958357011703, + 0.03756897282746878, + 0.037196873022344215, + 0.0379741468593404, + 0.0404663992475331, + 0.03610886760412616, + 0.04212222816866408, + 0.059463694679098796, + 0.030563514596926872, + 0.049233575473153504, + 0.044473300599293226, + 0.02886839860737074, + 0.04280621006101886, + 0.04182927407374252, + 0.03756598637466515, + 0.03677269179958993, + 0.038878397228281625, + 0.03982100701856605, + 0.035363842727167194, + 0.03970550752452224, + 0.03612222803456659, + 0.048988070847453165, + 0.03824224322799264, + 0.029049865506138677, + 0.04592552457281386, + 0.04240308479477439, + 0.043228901952507656, + 0.04178184057695403, + 0.03184395367966487, + 0.03647842017341695, + 0.044815013376980975, + 0.04111724542938811, + 0.0416209391023639, + 0.03322074610230066, + 0.030177007923423906, + 0.031391170198909406, + 0.04683008897685906, + 0.032212127929755564, + 0.03296219642888084, + 0.04451187923063733, + 0.029266043882103653, + 0.03823457965743061, + 0.03107373366775396, + 0.027286619989959297, + 0.030669843676704264, + 0.03346828047705823, + 0.040507981327774216, + 0.047555906686132125, + 0.03547939159587159, + 0.04551371816955784, + 0.05081563437327712, + 0.037586395978136, + 0.033857545917574124, + 0.03536723221670793, + 0.03211285895747011, + 0.04467335764044503, + 0.034830653496786025, + 0.04272281352296771, + 0.034227743188548855, + 0.042024657191820435, + 0.038492889665055686, + 0.0257408248465315, + 0.03046415393729944, + 0.03701250432559174, + 0.038501882219141144, + 0.038256395788046765, + 0.04249379690266858, + 0.03962546219725655, + 0.04848719917050603, + 0.06178880469379045, + 0.037122114942976146, + 0.037114853173859035, + 0.03998459980681079, + 0.037598254512632885, + 0.040334118479930965, + 0.04904991258771356, + 0.058611798383038836, + 0.033285277909673616, + 0.05500666624346419, + 0.03969277454203648, + 0.04696678843334453, + 0.040852385619596476, + 0.03136378502109843, + 0.03381349770792284, + 0.03870897238292611, + 0.044332855154494887, + 0.030797517815686497, + 0.030155600781182113, + 0.033085866744879906, + 0.04292420817571582, + 0.03316312554527629, + 0.04616339206875481, + 0.0325267241158884, + 0.03741564722929676, + 0.0320778619226157, + 0.03777907885365127, + 0.04242717104116764, + 0.04361777464551593, + 0.03306987760226433, + 0.03483971813490817, + 0.05198184066697535, + 0.04105810748631619, + 0.042879095142482684, + 0.04930814532775295, + 0.06222379250249577, + 0.03803867528512012, + 0.04212137154000915, + 0.041243421357356556, + 0.039237113705923365, + 0.0382177399974455, + 0.03625093986817147, + 0.04401688063935958, + 0.04004408783428864, + 0.03201287460519873, + 0.03194910923799392, + 0.03420029395206843, + 0.03964060751468967, + 0.04719406273458578, + 0.031702468711620906, + 0.03180855274550107, + 0.0352199035487388, + 0.03526423060662745, + 0.03217798388796318, + 0.03371868482874383, + 0.03476472084788737, + 0.0433429880743104, + 0.03966082711743377, + 0.039837572002957886, + 0.03415673568881988, + 0.0407571843958969, + 0.037611970896867596, + 0.038179244915951996, + 0.04087027802479683, + 0.046162963780384404, + 0.040653914075691334, + 0.04100464339558358, + 0.03570970196213084, + 0.030329787909026105, + 0.042312164449059296, + 0.03883935464823839, + 0.04536205748669334, + 0.034387385057653014, + 0.039964320410345616, + 0.03019450370574278, + 0.04765411070356976, + 0.0354268382614629, + 0.03796248459531224, + 0.03617979053048983, + 0.04091137711856621, + 0.03593549096003496, + 0.03794460901244099, + 0.03420838269552546, + 0.05589288379554928, + 0.03333194333218058, + 0.0351647075101268, + 0.03530267680718606, + 0.04344735018441803, + 0.03127306634633836, + 0.04018621462920448, + 0.028211609679146196, + 0.04768931334381315, + 0.041872506230779996, + 0.041937266811121664, + 0.032065385441500685, + 0.03786935386047424, + 0.03970867638845647, + 0.031072903073322066, + 0.03625150878207925, + 0.03623685933786087, + 0.035390154856987, + 0.04277397803876428, + 0.03804216553410402, + 0.03530556167028744, + 0.03678192055757784, + 0.031554942250534235, + 0.03671721516058086, + 0.03783335770316872, + 0.0345488222894794, + 0.04571473701068462, + 0.049689221442986334, + 0.03843638433805722, + 0.03779766930338645, + 0.03866828330956812, + 0.028182728132820488, + 0.03145236194693818, + 0.03364932854723567, + 0.04581846873291885, + 0.03915482133954139, + 0.033122877019934334, + 0.0332775942795484, + 0.03429540293940871, + 0.03511363088449439, + 0.04037462429583326, + 0.028221979143052685, + 0.03357798319980743, + 0.042645171712265006, + 0.033874332899945826, + 0.031697006917317534, + 0.03817926425786388, + 0.042590281852597785, + 0.03895003234984152, + 0.03905027730966538, + 0.03773173825990478, + 0.0358120820624173, + 0.03790176623294227, + 0.0324567200358686, + 0.03975909059753843, + 0.03631498510320277, + 0.0363299000039583, + 0.03475291637501638, + 0.0364829363627053, + 0.03924475285679167, + 0.03186732796633698, + 0.03345558754080759, + 0.039290292758581376, + 0.03904599987584206, + 0.03023249138631032, + 0.03449569443704359, + 0.03568848710324834, + 0.03524793370545074, + 0.034178231267514216, + 0.03973669857376932, + 0.046211226549650465, + 0.03691890053144402, + 0.03617848644030715, + 0.03139850854025818, + 0.04328952265397583, + 0.03788419581401779, + 0.03418734414498445, + 0.04772053378843195, + 0.042525644195537046, + 0.03802811027773053, + 0.037521000064963124, + 0.038945244167158215, + 0.03241646533394563, + 0.036444956011444964, + 0.03462121919633149, + 0.031685783268502035, + 0.03419888981943526, + 0.043399151185171056, + 0.03272587894608283, + 0.041618484972572964, + 0.03489870754509646, + 0.04758089504129023, + 0.04022986277447502, + 0.03807964883739686, + 0.04207634542437489, + 0.043326275965384686, + 0.033428192422483134, + 0.036970975684735986, + 0.03498061116712514, + 0.038393837421679226, + 0.036017422194808225, + 0.040089692264329346, + 0.03720230623747404, + 0.043904377683058424, + 0.04270489393926661, + 0.04008017109600741, + 0.03482266240011928, + 0.036718734388454355, + 0.03516397503911976, + 0.03766589046032642, + 0.03668050325325741, + 0.034734309831811146, + 0.04848744004547515, + 0.04690375272039114, + 0.04404833804909085, + 0.04918586865265526, + 0.03780746028634243, + 0.03745206390877652, + 0.02485560685477521, + 0.04094809067454313, + 0.03372425225122898, + 0.03411403742117722, + 0.029423614912237703, + 0.04152486089062552, + 0.032784559466531506, + 0.036550141798129085, + 0.04248816866564145, + 0.03532520344399691, + 0.03732900756501462, + 0.036476090749024366, + 0.0414624468052248, + 0.03869676186870584, + 0.04385506148521779, + 0.03790083425603543, + 0.031284403115978424, + 0.040913630294152806, + 0.03526737710854296, + 0.04359128819049591, + 0.03537428341618406, + 0.043538444438717024, + 0.04429447050258712, + 0.035095355719373035, + 0.037558253589517455, + 0.039020925710726705, + 0.03457837465911665, + 0.03689757898277826, + 0.03637565596460668, + 0.040940110129094515, + 0.04223533890233734, + 0.04296016736297861, + 0.041938696966262255, + 0.04177739720299804, + 0.03831798705086549, + 0.03918372304636442, + 0.04049623381009079, + 0.05917845722834494, + 0.03734289601721545, + 0.03221169539712051, + 0.03053879868592337, + 0.03735328856335252, + 0.036538243727598896, + 0.049584303382114815, + 0.0328488230497436, + 0.02713795222538995, + 0.03527094956211837, + 0.03942136915643273, + 0.04625867162074992, + 0.03207601748413194, + 0.0335330362999187, + 0.03306293737516894, + 0.0362326292843774, + 0.03436665750794069, + 0.04915702685354906, + 0.03805909275929596, + 0.034202566969114494, + 0.03596176893133917, + 0.037470722959681034, + 0.03609065302947966, + 0.03292533544771909, + 0.041701757223260284, + 0.03499348539550743, + 0.026745133337576207, + 0.028622082423523217, + 0.03946322875505933, + 0.03592129448781039, + 0.041990877770119284, + 0.03381492144455297, + 0.040530103565831185, + 0.03875738452285676, + 0.03151662086855348, + 0.06288497208139543, + 0.03475459095891754, + 0.03779941150618489, + 0.041999887517070573, + 0.039580734575597167, + 0.02994407129367219, + 0.028806008574528093, + 0.03789930929334238, + 0.03693284674333461, + 0.03299069008766131, + 0.030288984434690015, + 0.04042531343682504, + 0.04726801549444752, + 0.043339484452035414, + 0.04130937933559244, + 0.033516152067605234, + 0.03744444925596031, + 0.04490701626601682, + 0.034991000497649374, + 0.02773991000599564, + 0.032232617467096485, + 0.03990962402625602, + 0.045901367513090985, + 0.037560794077516904, + 0.05271446331965637, + 0.044572406098960654, + 0.051025213947252304, + 0.05601161576102489, + 0.03520590789952799, + 0.045728913863686056, + 0.031236164648777813, + 0.04054230154149802, + 0.032683763943849746, + 0.05337480187695021, + 0.032260525310580754, + 0.04271541432422098, + 0.04003709916554024, + 0.040580781533166556, + 0.0350567142168301, + 0.03690434037759839, + 0.03531132016785513, + 0.025441036226225292, + 0.030085276666492165, + 0.04602419158659578, + 0.03245236700060042, + 0.03652070000521866, + 0.03617646650607863, + 0.029859737100936732, + 0.03964331790140039, + 0.03198158433069089, + 0.033231827103801605, + 0.04160460626665193, + 0.03280484293500388, + 0.03917473193690962, + 0.03265697285825095, + 0.04007450079149981, + 0.04313803306077936, + 0.03873086390895461, + 0.05216059905148663, + 0.030379276091337525, + 0.03885483066047741, + 0.035318920121002635, + 0.040797596313347784, + 0.0372864456548352, + 0.0307029942505641, + 0.031485553502109735, + 0.037024993881763335, + 0.039228514639463294, + 0.04008222840918488, + 0.04245084057532345, + 0.03684856081736765, + 0.0347260219189657, + 0.04094984650766821, + 0.03563701885810593, + 0.047474507894942196, + 0.034047243019732, + 0.03687184488184907, + 0.04084131037025515, + 0.030357743453289374, + 0.03924976614290063, + 0.04126185607322306, + 0.05357438559076044, + 0.036709660764053645, + 0.03783768053060672, + 0.03652794456680193, + 0.0340163195412132, + 0.034508217938296545, + 0.034357545594838904, + 0.04464598381184962, + 0.04347823199238968, + 0.03406129251503273, + 0.032925420761244745, + 0.038769758844555975, + 0.03481614536495153, + 0.038145928959829, + 0.039076998188782255, + 0.034935155933828003, + 0.0323584401400707, + 0.03355866097983072, + 0.03379736425028232, + 0.0420497590687918, + 0.04218446718429989, + 0.0373449638880406, + 0.03912315009123173, + 0.043732218646066405, + 0.03833551158082583, + 0.0358393397233389, + 0.03687779446586722, + 0.034707298370130715, + 0.0301248374049759, + 0.038106238997749974, + 0.033290099248123185, + 0.03368641400352329, + 0.04380982384170855, + 0.047476751219564316, + 0.040692456133345545, + 0.03977965230372609, + 0.043486769306281106, + 0.04789673961781321, + 0.03211141673561179, + 0.04364532666411711, + 0.036281329357670596, + 0.03764043009930749, + 0.0452595757855366, + 0.029570861881873117, + 0.0271235314386781, + 0.047594832560546155, + 0.03651821337967487, + 0.03109964036323049, + 0.03766698155914985, + 0.036018246253291045, + 0.03650269090948626, + 0.05024518345704019, + 0.03734135910888349, + 0.0399551758306048, + 0.03844708503893577, + 0.03504125296767992, + 0.03941517911581123, + 0.041097294994177504, + 0.04043454329680051, + 0.03793389920599827, + 0.03344303973219889, + 0.03450596530758061, + 0.037206230008469975, + 0.033442724704682854, + 0.03649824474790818, + 0.040934800832836384, + 0.03790076875866542, + 0.033620866853846396, + 0.03839895550599855, + 0.031806771144640075, + 0.033435735041845015, + 0.040377820784456564, + 0.03928179389683009, + 0.04093444846549985, + 0.040213798588380714, + 0.034881509865314526, + 0.03537361697384941, + 0.03364637914657036, + 0.03920138801300205, + 0.030891723009536794, + 0.044454049742423826, + 0.03893268677338932, + 0.03386981276116218, + 0.03477186485134049, + 0.040370245711487784, + 0.030197770289211747, + 0.03379795544623499, + 0.03460314764849868, + 0.03924361851045999, + 0.03442620626438172, + 0.04342517823747293, + 0.03781998255382228, + 0.029523801001037478, + 0.036743784464931116, + 0.03273909372130658, + 0.035260355708303444, + 0.046407332375733266, + 0.03591172149918704, + 0.03524506256600065, + 0.03516796191531107, + 0.03926354006035652, + 0.038912400099689916, + 0.030590298965018244, + 0.039779386054826525, + 0.03813965844682067, + 0.04121654977573976, + 0.037137225284534475, + 0.03866806834733404, + 0.034261525378014177, + 0.03907064082966197, + 0.03966568800005335, + 0.042964478702124886, + 0.038511218122521236, + 0.028025472767946792, + 0.03013767357199368, + 0.040727895397669356, + 0.035306641406878427, + 0.035577861776609154, + 0.03914358991736032, + 0.029282422306916665, + 0.03482109129704017, + 0.035928283169390035, + 0.03607566550454262, + 0.035122887904014424, + 0.04028707651980281, + 0.045849384628693444, + 0.03867765000261824, + 0.038610402008035664, + 0.0424307716427854, + 0.03690096602478939, + 0.03806331254862636, + 0.041814360893866566, + 0.03795598479067518, + 0.03750461000909161, + 0.027889092987401422, + 0.04606506451050962, + 0.036414365911684995, + 0.03370369939327802, + 0.040036969777508605, + 0.04226893419264957, + 0.03004154193237257, + 0.04210604814345006, + 0.03259282917829774, + 0.04389778486164481, + 0.046183793829019444, + 0.03760878957822801, + 0.041178082436039425, + 0.04095449285629425, + 0.039147053572142244, + 0.03715972301956547, + 0.04054966166321472, + 0.037812827680890566, + 0.033935547358180884, + 0.033906804103052766, + 0.04273227634663727, + 0.041925792594792365, + 0.02870724924110818, + 0.03311142608921862, + 0.03691331925413761, + 0.030147295884668628, + 0.035272598854024215, + 0.036853843376527654, + 0.03691689155273759, + 0.032910254337393564, + 0.04144091052676178, + 0.033057439807353886, + 0.043227622762412835, + 0.03889521712001157, + 0.03276880380515506, + 0.05047692556688867, + 0.04556494429265314, + 0.05149443451864557, + 0.04489747204653238, + 0.0477809075429913, + 0.03769530913610332, + 0.0454785653025024, + 0.04192798649417593, + 0.03601675144218745, + 0.04346851504425563, + 0.030996818016610722, + 0.0319188966543128, + 0.03839747496451723, + 0.03478024178790671, + 0.026028921232316003, + 0.028608115827282895, + 0.0345391388133415, + 0.04068717573046576, + 0.036310357103823465, + 0.044244162853968046, + 0.03926047963778783, + 0.036671833689864285, + 0.031489976524275376, + 0.042760088116988386, + 0.037750067374746926, + 0.03455974972443658, + 0.03427784067658883, + 0.03373601382255973, + 0.039074061722354246, + 0.035485138579225174, + 0.03726811279469122, + 0.036715758805018886 + ] + }, + { + "legendgroup": "Point sensor 1", + "line": { + "color": "rgb(254, 136, 177)", + "width": 3 + }, + "mode": "lines", + "name": "Point sensor 1", + "showlegend": true, + "type": "scatter", + "x": [ + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999 + ], + "y": [ + 0.036715758805018886, + 0.03761371111404099, + 0.04456597690680631, + 0.03718887422326402, + 0.033132472617124625, + 0.037657413931649786, + 0.04234875422909278, + 0.037238221554076995, + 0.045919221257021275, + 0.038321924181496686, + 0.031434053949908176, + 0.032726549090277994, + 0.04354179279219842, + 0.03246368672870783, + 0.049934067167416364, + 0.03839509398449641, + 0.036437367912440864, + 0.04701340444953794, + 0.035251506790326494, + 0.03412915861997621, + 0.05383112514876364, + 0.03429827310248325, + 0.04579368773891595, + 0.03615130466899878, + 0.038116872844928804, + 0.035231914798963676, + 0.038604399840541426, + 0.0382909882182403, + 0.04711148250855792, + 0.042736553114686965, + 0.03782049370205443, + 0.03413348562076277, + 0.04637648287308303, + 0.03206601057951527, + 0.04008568278783138, + 0.042893355437984025, + 0.025818142280357167, + 0.041603632819273484, + 0.03011363592143891, + 0.04138800581439414, + 0.04500984724975833, + 0.03310081102795008, + 0.04109290584897363, + 0.03884816299251912, + 0.036760629587739596, + 0.03118914761049454, + 0.041873178769359955, + 0.04926448726557633, + 0.04060190413004521, + 0.02783967608311954, + 0.03411554053733904, + 0.031395532752002096, + 0.03145514615149224, + 0.039197807095975645, + 0.0457954521944346, + 0.03169889525012153, + 0.031532530129754384, + 0.03574930514781961, + 0.038559171135237706, + 0.04037204254937333, + 0.042746669319890136, + 0.03212961299476064, + 0.03245902049955026, + 0.03714212407403122, + 0.03972198063953546, + 0.04261377921742891, + 0.03977461520070003, + 0.03700482605779567, + 0.03488917583644346, + 0.03713005849986378, + 0.03994963511627558, + 0.041265011778509726, + 0.031147639813542825, + 0.03552359640915921, + 0.03686222189026885, + 0.03191640435709627, + 0.035510666793420236, + 0.042461754462181325, + 0.04426469317235396, + 0.038212985721771404, + 0.029464987635476482, + 0.035941865312509626, + 0.039668587835598734, + 0.035802967253612754, + 0.04103882697664019, + 0.04349635089186975, + 0.03270921346719475, + 0.04656388943147724, + 0.04877705044131105, + 0.03268038335037063, + 0.046536225003309284, + 0.04086372265798133, + 0.04012348983648039, + 0.036121005111605445, + 0.04994769543625967, + 0.04090634448047167, + 0.040808508720138484, + 0.03387584006346526, + 0.038420676687771924, + 0.03381287436189031, + 0.0350115621353388, + 0.03422804090175431, + 0.028652465315277823, + 0.05032389452312852, + 0.035919103168372345, + 0.03974854254822322, + 0.03823071792091161, + 0.03942585534893113, + 0.038379276561192485, + 0.045855066456581536, + 0.03595089258946792, + 0.039590156848364186, + 0.03531986591258068, + 0.037446281311663485, + 0.03345940093749702, + 0.0342064672287236, + 0.03824269990604003, + 0.036052412210443884, + 0.0341504861868828, + 0.03553971624291649, + 0.03839504896027137, + 0.03876100322649816, + 0.030307696075307825, + 0.04472182442027818, + 0.03296284998211795, + 0.032875910093475395, + 0.03093743819354595, + 0.028767392962930585, + 0.03379512477720949, + 0.041691419585193346, + 0.04833500831868932, + 0.032425216454222285, + 0.04501390283480769, + 0.04507443633997496, + 0.0371955493364154, + 0.04781971205787785, + 0.038110730590611035, + 0.032396046051616674, + 0.025498066971874307, + 0.04084221583481411, + 0.041070706484451554, + 0.03486562539395797, + 0.04123603683460369, + 0.03574369407470367, + 0.03529551267489222, + 0.034805717293250306, + 0.0345674469031942, + 0.03506302980313492, + 0.04129198261086204, + 0.030233889527466105, + 0.029956577667988846, + 0.038676934838223404, + 0.037827285357187206, + 0.043605037935895444, + 0.03861726362801062, + 0.053455527359566296, + 0.04276312261256083, + 0.031230972325134162, + 0.034031310507457994, + 0.038511916693395334, + 0.03752132996725646, + 0.036477466230067083, + 0.03827411168894807, + 0.04458429469512739, + 0.04028289803786684, + 0.03481671330111602, + 0.04137311759601927, + 0.047753126625883914, + 0.05374250225761889, + 0.03647807564876881, + 0.04211232450063844, + 0.0453396086023153, + 0.03307908850393018, + 0.03811203326989287, + 0.049116505676995395, + 0.037621427494362376, + 0.03839892675231242, + 0.03656940580745141, + 0.03453755380197039, + 0.037552059123979874, + 0.03922348219327412, + 0.03229997775640834, + 0.03327999085518921, + 0.04549728891678381, + 0.03984453344888643, + 0.030510942993538643, + 0.03904547561040457, + 0.03208002531368396, + 0.027409414990058185, + 0.03528593226615993, + 0.03611918827485112, + 0.04656962506420212, + 0.03048303457917555, + 0.044334889634226236, + 0.038323637382725054, + 0.03172328750653148, + 0.03556667053121626, + 0.03166788709905574, + 0.03787374944796257, + 0.03249448127491312, + 0.036784004885176566, + 0.03265570792722773, + 0.03682818941106086, + 0.034765505102137266, + 0.05240118727218184, + 0.03083048923546675, + 0.03731579847248726, + 0.0327838678261412, + 0.03870031954389056, + 0.032945173924617904, + 0.028630993109236783, + 0.03698382209053213, + 0.035855363148220826, + 0.03431194629389971, + 0.03413802712023519, + 0.037849382044431924, + 0.04071454053629859, + 0.02820144456080722, + 0.04795429088694991, + 0.03377623445294014, + 0.03652885854229156, + 0.03642219155140446, + 0.033124976313715276, + 0.03540159224560339, + 0.032387490121606625, + 0.034759827601520465, + 0.03502919694122812, + 0.04073007449141678, + 0.033126622206818675, + 0.03168311392296023, + 0.03257260437372503, + 0.027973061429932583, + 0.03963787369566249, + 0.037670992184334035, + 0.03924445913839103, + 0.04122290902023144, + 0.038303528342821754, + 0.0528733736784215, + 0.04859971810540912, + 0.03560087902874911, + 0.03709536999624559, + 0.03243680667606082, + 0.035994150977498515, + 0.03933153163254163, + 0.03463418373235728, + 0.047575757719931076, + 0.03913106643152115, + 0.034275373131912215, + 0.038478496608045, + 0.04192593600496307, + 0.03780683252228998, + 0.040012373002774916, + 0.030068832402393973, + 0.040765838550652814, + 0.04071041656768251, + 0.03491264157673311, + 0.034616488981418246, + 0.037729888200561924, + 0.039326857615045105, + 0.0403561351234101, + 0.03342701507189249, + 0.035853776378555954, + 0.04115443073458149, + 0.035273981091055145, + 0.03503677464026672, + 0.038807740044502916, + 0.03617434498934482, + 0.029481249226995083, + 0.033959281382261335, + 0.042242805608274626, + 0.03267122648161732, + 0.0486245034217485, + 0.032120120134161496, + 0.03855285233300243, + 0.040420702265604666, + 0.032461548197925724, + 0.036501404180481825, + 0.03215728002069525, + 0.03699564344558575, + 0.03819538083950608, + 0.03954884705152558, + 0.03302452199893271, + 0.042581151332845145, + 0.04912720225706742, + 0.034872434803216286, + 0.03390827340594482, + 0.03065128825040589, + 0.034963237200559036, + 0.03909741264909873, + 0.036386376270845254, + 0.03841659402878601, + 0.03163563934812633, + 0.034922148213328674, + 0.04608944466655259, + 0.03800802944687497, + 0.03651597950613402, + 0.03631512309197612, + 0.04099829222019171, + 0.03168102963358898, + 0.04262810984998972, + 0.0481117156733257, + 0.03792402145916822, + 0.036862856985281744, + 0.033714579433573026, + 0.03591687613205214, + 0.027777602978446867, + 0.03948379417629511, + 0.04319372891274068, + 0.04178066938033448, + 0.04939616479649805, + 0.04051935875858258, + 0.04351556074216845, + 0.03405263863167781, + 0.039270052995746825, + 0.03550127543783229, + 0.04021746324120415, + 0.03316882929301414, + 0.03389962184983024, + 0.0450845856860652, + 0.03574600057991202, + 0.0356267972270591, + 0.030413294581296067, + 0.028715018587594055, + 0.035275566138418465, + 0.036871269445998806, + 0.034040031980973974, + 0.03805484076374, + 0.034593480045221725, + 0.042121585492652984, + 0.03625583481001632, + 0.03979905218183054, + 0.04556974776576977, + 0.04423392265115496, + 0.050105632039687965, + 0.053591114957901816, + 0.0364930556297462, + 0.04460061656844819, + 0.044082620578703616, + 0.0313912300325533, + 0.03771466378309827, + 0.037445416581557006, + 0.03952914365267955, + 0.04156333053878333, + 0.052146521440500256, + 0.05006224063592753, + 0.03896355303421334, + 0.03204176943263184, + 0.032322547074799125, + 0.03636980657987255, + 0.03605124256024008, + 0.03150404211988156, + 0.03833507626727329, + 0.0463236734941982, + 0.03640437679183998, + 0.03665731286515921, + 0.030847995614580327, + 0.03557375131272736, + 0.029525449133674737, + 0.03339337266621251, + 0.03806893657070767, + 0.04099317534439092, + 0.02718029775391553, + 0.04285619230014603, + 0.04325726673663316, + 0.03314613135051852, + 0.035310038733344255, + 0.06217408779892531, + 0.04327919637549718, + 0.04157601647938288, + 0.029980832709806605, + 0.03967373473194308, + 0.03913776200370407, + 0.031132911077561623, + 0.048267672246126284, + 0.04073232817516046, + 0.038553132035627186, + 0.03355393230385968, + 0.03514366144251663, + 0.04562009777490662, + 0.031405364903795634, + 0.04354602084761362, + 0.03281288182522867, + 0.05397977844053224, + 0.033182670541921824, + 0.038324368996281874, + 0.047334601372317514, + 0.04022055149191233, + 0.04434032231968132, + 0.025494672813232654, + 0.04205373626125983, + 0.036852248776034054, + 0.034428004358127165, + 0.03328427277397614, + 0.04659191762217323, + 0.033524968334039736, + 0.040599082382452516, + 0.04448002864194957, + 0.04641790503075131, + 0.04211785295979987, + 0.039832703082206315, + 0.03617076797226818, + 0.031753287810065214, + 0.03719040880606877, + 0.029288885283735227, + 0.043121357925815514, + 0.035890700247404414, + 0.03520193380510459, + 0.04493682708698273, + 0.0466023363391465, + 0.03379706900596952, + 0.058493841431780734, + 0.04215221999902843, + 0.03536337355906207, + 0.04031609269222653, + 0.04081382476808683, + 0.041661630952518215, + 0.05728950184369718, + 0.032652825240454306, + 0.03956073314051078, + 0.033285257517793425, + 0.03812875877441297, + 0.04248569116899837, + 0.03503979073940796, + 0.033444681140956764, + 0.037920939305003905, + 0.034016385574238646, + 0.04240077522783257, + 0.030919825360622977, + 0.03227200144823134, + 0.0346883068545051, + 0.03135239271376074, + 0.03339742069283562, + 0.045554527366074585, + 0.04349902071317852, + 0.04003642633358658, + 0.03511976938431598, + 0.04743637995159247, + 0.028820246702059057, + 0.04207449140224095, + 0.03082458851664636, + 0.037825004009256195, + 0.03446887437671457, + 0.032691174189143295, + 0.045925240869170665, + 0.045928670947635614, + 0.03585278521514025, + 0.042025404606922376, + 0.03572623715952867, + 0.03267433757833829, + 0.03428696755041483, + 0.040639043684093025, + 0.03107035545919085, + 0.03769137784310412, + 0.05119760514161173, + 0.035255356543607654, + 0.0367692234256108, + 0.044334140481637745, + 0.04148454402119714, + 0.042096936352653526, + 0.031023538314860592, + 0.03911579398772624, + 0.03361444498547066, + 0.030948608165972388, + 0.03180923841136716, + 0.03726770061243345, + 0.03412941375542722, + 0.0370676385803837, + 0.035413153236857134, + 0.03318173550653759, + 0.0304331241644281, + 0.04116806140436625, + 0.04059554333290755, + 0.04367390778702419, + 0.043259165276442656, + 0.03087978404179307, + 0.035237517026634115, + 0.03407840583224009, + 0.03291522081223747, + 0.03989796369154243, + 0.04180631806741871, + 0.02867514275255773, + 0.04550072158426954, + 0.04236889888461575, + 0.041960017372774897, + 0.04203140961165115, + 0.04568547888395555, + 0.03177198831219585, + 0.03277854905223265, + 0.03193896476445684, + 0.03552755023832265, + 0.034901580493108784, + 0.03944203739915901, + 0.034568907713423094, + 0.035721357930727456, + 0.0420236706420898, + 0.034069390568612135, + 0.03649372236840224, + 0.04102000105412112, + 0.03882396251730577, + 0.032024371110323704, + 0.03694798626048489, + 0.04312620218039104, + 0.02940280655957277, + 0.02943009362255559, + 0.030557612857763594, + 0.03650381114732613, + 0.046064805996793, + 0.043258041128460815, + 0.03854306475247794, + 0.03841673962699952, + 0.030598370462560243, + 0.03815858320935913, + 0.04128284109222594, + 0.03598947194437622, + 0.0406147252608411, + 0.03315449658131274, + 0.04123964834380255, + 0.02753420661999809, + 0.03270271587171278, + 0.03497745976085453, + 0.03095616609342909, + 0.027250050929667338, + 0.03970312623064339, + 0.03226590806941381, + 0.038503561814189825, + 0.036997049510136645, + 0.03600907442680853, + 0.03726837922999698, + 0.03794910187266225, + 0.03488012584264187, + 0.039759145362038076, + 0.035806505575580745, + 0.03716548291311412, + 0.050622835209477426, + 0.03522375429637303, + 0.033502821790153556, + 0.04096306305732284, + 0.045146597656104334, + 0.0478256034550368, + 0.0311548931919735, + 0.037032767752720616, + 0.03593509229308459, + 0.04398794972952077, + 0.042869846221773346, + 0.033990000805269385, + 0.03871713116807088, + 0.04366248405677596, + 0.040471703681991454, + 0.033802680210603606, + 0.035309863572722186, + 0.04389355334425488, + 0.0420250764315575, + 0.04398168210529612, + 0.042392431188078714, + 0.033361226369466916, + 0.038628040215847134, + 0.04714707864359085, + 0.04954018189723753, + 0.032650644125130315, + 0.03470353934224197, + 0.03696029199949361, + 0.0447254401708197, + 0.03537698094940832, + 0.05656921863476538, + 0.03812487267864114, + 0.0369095164104582, + 0.030181036369957743, + 0.03449813484304725, + 0.03832787534634266, + 0.029076206640076176, + 0.03813431321259202, + 0.0490460055902869, + 0.040993423563871145, + 0.03323540341506663, + 0.03048815905620584, + 0.03539833020433229, + 0.03303933739290288, + 0.03660638205986224, + 0.034270350749987015, + 0.033290549461506766, + 0.04481449127872367, + 0.03477832303885998, + 0.03260268258900209, + 0.03534148773317315, + 0.03814070205231663, + 0.030064552444546547, + 0.03200865841771246, + 0.03550647567857795, + 0.031814521606439404, + 0.04764201935977072, + 0.03724071880043243, + 0.02856081813599978, + 0.03657225814376211, + 0.03700841072160198, + 0.03940971268771039, + 0.03994592328231754, + 0.04677841675705772, + 0.037649978783837405, + 0.04185578848778017, + 0.04067608674680462, + 0.0358439363000699, + 0.04519684131741998, + 0.03127379334522184, + 0.03964079824395828, + 0.03855251904484925, + 0.024547150881771614, + 0.03476442479423285, + 0.034705583444607356, + 0.0300893727512181, + 0.040023965400510356, + 0.03373566823005311, + 0.03772742071448869, + 0.037356209236610906, + 0.03570458813813139, + 0.038873572666241606, + 0.032355132220645816, + 0.0358740213455162, + 0.03619017383443481, + 0.03896303412197466, + 0.045856338394925776, + 0.05278302287900306, + 0.03522155291484008, + 0.03002378819186469, + 0.026608937862630334, + 0.02772280411391115, + 0.04044651394279887, + 0.038216593967417924, + 0.03794481369998554, + 0.05091749337662563, + 0.034958314547877706, + 0.03533281178708115, + 0.034694421164319145, + 0.03228025223837834, + 0.038849612937189026, + 0.034820626945238235, + 0.03001934617176302, + 0.03343319880973928, + 0.028230293463656676, + 0.037861884761831506, + 0.033711836527189995, + 0.05112813548880267, + 0.03264600113872191, + 0.029302118986939144, + 0.03571406435478474, + 0.03047135760575729, + 0.03691681379191519, + 0.035212450889755095, + 0.040728034366704156, + 0.04585443602349566, + 0.03916837250158608, + 0.03504363325813114, + 0.033303499985894616, + 0.0417600959811885, + 0.030891552581508597, + 0.035924357797211086, + 0.04266986199305422, + 0.03398206118061026, + 0.041023279515027905, + 0.03944370348494714, + 0.03705031100351998, + 0.041066025029738315, + 0.04041253197160983, + 0.039959395679422825, + 0.02989221788628325, + 0.030411178044856928, + 0.035293462113850975, + 0.038282172159236995, + 0.03566464785437826, + 0.029195642959499966, + 0.041546342493078786, + 0.0289685173754357, + 0.04172586078641956, + 0.03876980141561623, + 0.0478283970006955, + 0.0327671267705137, + 0.03583056189793245, + 0.04198295986520934, + 0.04346603097918601, + 0.039908833118398206, + 0.049473725186255, + 0.03683157643841259, + 0.03926910968681111, + 0.047289199640616245, + 0.03372380494027929, + 0.032182989635634165, + 0.030368862426789083, + 0.04751010780115772, + 0.03557728152634131, + 0.047954247331647396, + 0.038420288842531666, + 0.02939233949735182, + 0.03277433183893398, + 0.0390984508891777, + 0.03636729077962587, + 0.03448643707764093, + 0.03268864297639987, + 0.040108119135399634, + 0.049798708661981946, + 0.03678390539114291, + 0.039998438433724574, + 0.03854263818466514, + 0.04776961776767226, + 0.033998173209268776, + 0.03377968496390118, + 0.028275543150118376, + 0.043467296595756245, + 0.03951336339245892, + 0.048176958143833284, + 0.030721763320730434, + 0.03310746387678, + 0.03230820620755947, + 0.039217724684260075, + 0.03502446341316087, + 0.03504059948746193, + 0.038757632580718925, + 0.03460469519924199, + 0.03611405437825071, + 0.03332343730273547, + 0.03952122980839566, + 0.03227004547172884, + 0.03910132598827834, + 0.03514184378283162, + 0.02453250543849377, + 0.044832907297114914, + 0.04509653911330959, + 0.03531850948703844, + 0.0305621977132097, + 0.03212741615703472, + 0.037142314690957225, + 0.03781102330381647, + 0.03701432874465733, + 0.03364984857686847, + 0.0395164187691393, + 0.043321895680821135, + 0.04305840678022903, + 0.03500959355326003, + 0.03469545700730703, + 0.03236512096115993, + 0.036600836768203464, + 0.03422782617721934, + 0.037938134311551776, + 0.032912880882121937, + 0.05310622503702585, + 0.050227399100962154, + 0.03904336489836897, + 0.03280365395872515, + 0.03132847850985798, + 0.03302644561539792, + 0.046946972738591185, + 0.0552530309424089, + 0.029239208030320235, + 0.03599066301762308, + 0.03846009106959797, + 0.03758982173708299, + 0.047720199347417225, + 0.03715244936913667, + 0.04927709982452329, + 0.03852735189821503, + 0.03198450383016956, + 0.02993026437456573, + 0.04108490763054484, + 0.032593767043800966, + 0.03480391243583194, + 0.04385632503528801, + 0.03409195075013542, + 0.03582887653968277, + 0.038229415819002036, + 0.031938948424721246, + 0.03136718621038808, + 0.03861404630074924, + 0.035017736836875306, + 0.03730197207010379, + 0.041079546124591665, + 0.03985152756424145, + 0.04000635400549778, + 0.03451246141151545, + 0.03167445660532408, + 0.0313621086042509, + 0.039756581672345616, + 0.04627707375963826, + 0.046897010240020055, + 0.03961169881736599, + 0.04120894396248618, + 0.040769225545362144, + 0.04337137273934242, + 0.04265367216893077, + 0.04057927079653007, + 0.03640286399835433, + 0.03524816852888787, + 0.03578299016885683, + 0.041738724553370174, + 0.03227292025451312, + 0.041550151177184504, + 0.03354870527602881, + 0.04207292164416621, + 0.035144328422441036, + 0.035218007755802055, + 0.04076482860750487, + 0.03034152330758941, + 0.03534968717759012, + 0.03339723094411533, + 0.03761584553265372, + 0.03811440155482926, + 0.03850504215706432, + 0.034569235490956564, + 0.04117038380915522, + 0.03998332555018564, + 0.048963212186058404, + 0.04068930318740775, + 0.051230348980074766, + 0.043167179471734665, + 0.030981606852595767, + 0.04766139749351286, + 0.03609709722979946, + 0.03663655142415297, + 0.04079106742130546, + 0.045027943720183275, + 0.037448201669320016, + 0.03749659895082117, + 0.034285064215763265, + 0.04711966942810368, + 0.03345548890160075, + 0.035747687616916504, + 0.03287567952181188, + 0.037991964098357624, + 0.05084295879844406, + 0.04115232652713058, + 0.03916642007267858, + 0.0355355252044281, + 0.037685657968598255, + 0.03929881169371623, + 0.047096820547840264, + 0.03630783847680934, + 0.03776251239951641, + 0.04069621400708909, + 0.0345158862693513, + 0.038983185799087494, + 0.04078520766773981, + 0.02724651134845857, + 0.038152194830535044, + 0.037448089803971914, + 0.04295717774464004, + 0.03663809018976437, + 0.03151298551319034, + 0.038263571380799784, + 0.032413406139652844, + 0.036886272810248116, + 0.02507324984329856, + 0.03531971027664307, + 0.05148950949818906, + 0.03487848442976768, + 0.03778527549067953, + 0.05188220653370576, + 0.030039764199134095, + 0.031551246095689954, + 0.03182281326234237, + 0.03543592554033476, + 0.036163484477228884, + 0.02782924796415899, + 0.04474076102053988, + 0.041284999622458726, + 0.042380186090729334, + 0.0353159285744934, + 0.03996116974606357, + 0.04801605913664819, + 0.026261989107443876, + 0.034740708171773785, + 0.03153324200525825, + 0.03511526614440834, + 0.03779528408806364, + 0.039374836089906905, + 0.046213736549700776, + 0.027265216516405705, + 0.037513401327044865, + 0.04756384734973701, + 0.047908365471021494, + 0.03361972731001055, + 0.04221718252928745, + 0.037356522206077485, + 0.03280983592694139, + 0.04516690736834899, + 0.03978378005505906, + 0.04620767901090783, + 0.03725988040543196, + 0.035162291993136675, + 0.03448428958736897, + 0.03959091980111926, + 0.028931684831879332, + 0.03895922856546835, + 0.028298971128085215, + 0.03490782755804173, + 0.03511732029514529, + 0.050244121939968245, + 0.031820879260899076, + 0.030195418800929883, + 0.041589514269203195, + 0.03779480562900424, + 0.04239894617502984, + 0.033624017570215665, + 0.037107073094897136, + 0.05310804491524878, + 0.043325045868050686, + 0.036281319004022594, + 0.03958125679965071, + 0.042405238314352625, + 0.038962790723302304, + 0.03598139619718316, + 0.03616571768582562, + 0.04070052067185569, + 0.04279307477397425, + 0.03955767194747536, + 0.036701075821195285, + 0.034794453735439206, + 0.04126197939185707, + 0.04378288167451097, + 0.03483505066652167, + 0.03377253134595925, + 0.0383370562880236, + 0.039034252351142835, + 0.03501180242307437, + 0.039743479890648546, + 0.029433364749011752, + 0.05522630347174714, + 0.03352342598036267, + 0.03343097884244875, + 0.041155678631908846, + 0.052767316098641756, + 0.034484016963980076, + 0.0414499259366305, + 0.0405256587499812, + 0.03647764598499793, + 0.04046164078210102, + 0.04400240008169536, + 0.04305056557175917, + 0.029241393452320026, + 0.03855658152568071, + 0.04090935151877452, + 0.02928285000296055, + 0.031338560988288806, + 0.03524990531718819, + 0.037701292009701806, + 0.049114403463130445, + 0.03523723449883331, + 0.036202010876162566, + 0.02991708576317777, + 0.030357279528354777, + 0.032405301751366536, + 0.03476870735833102, + 0.04057174517876091, + 0.03620989454277899, + 0.034868536610309746, + 0.03595569114068582, + 0.037224999809258405, + 0.05198272218944813, + 0.03645978280758643, + 0.043478504958563764, + 0.04202260968968424, + 0.041662028649610196, + 0.04068757190303886, + 0.03627856173879898, + 0.031943608913016494, + 0.034557061453707814, + 0.03329827307538936, + 0.0350466831086224, + 0.03325581350954688, + 0.03323239121430699, + 0.037167471350784756, + 0.0480015768847278, + 0.032796826992872036, + 0.03564636112651177, + 0.03397719595598885, + 0.0373680463390271, + 0.036857949087254815, + 0.03244421652526183, + 0.05392982774259806, + 0.04096459364259667, + 0.03613612546424471, + 0.03802777264978094, + 0.040698071806505864, + 0.03496244423426635, + 0.03574761231453372, + 0.04612934103162972, + 0.04095733848162617, + 0.03110888428389563, + 0.03460125471663463, + 0.04090131956205121, + 0.03336182758512927, + 0.03440894677688133, + 0.035557770673273995, + 0.03634887432219722, + 0.03679454227779686, + 0.03541922043809757, + 0.028474730241103238, + 0.041066577985584295, + 0.03895993329907872, + 0.03481090691759697, + 0.041868514951671425, + 0.038819822772288994, + 0.03503792693588444, + 0.04783627732122744 + ] + } + ], + "layout": { + "annotations": [ + { + "showarrow": false, + "text": "\tBurn in: 4000", + "x": 4000, + "xanchor": "left", + "xref": "x", + "y": 1, + "yanchor": "top", + "yref": "y domain" + } + ], + "autosize": true, + "shapes": [ + { + "line": { + "color": "black", + "dash": "dash", + "width": 3 + }, + "type": "line", + "x0": 4000, + "x1": 4000, + "xref": "x", + "y0": 0, + "y1": 1, + "yref": "y domain" + } + ], + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Estimated Error Model Values" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0, + 4999 + ], + "title": { + "standoff": 20, + "text": "MCMC Iteration Number" + }, + "type": "linear" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + -0.1045803921716095, + 2.3937588436533614 + ], + "title": { + "standoff": 20, + "text": "Estimated Error Model
Standard Deviation (ppm)" + }, + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQu4VdP6/99qd6+9SzdKuXQjt1DKJfeT6BCn+nVcQiq3HHQVXUSiVCIRooMUjkoXkTqS013uVLqRLihFKkqS//Md5z/2mWvtudaaa75j773WXt/xPB6195xjjvkZc63W+Kx3vG+xP//8809hIwESIAESIAESIAESIAESIAESIAESIAES8CVQjPKETwYJkAAJkAAJkAAJkAAJkAAJkAAJkAAJxCZAecKngwRIgARIgARIgARIgARIgARIgARIgATiEKA84eNBAiRAAiRAAiRAAiRAAiRAAiRAAiRAApQnfAZIgARIgARIgARIgARIgARIgARIgARIIBwBRp6E48azSIAESIAESIAESIAESIAESIAESIAEMoQA5UmGTDRvkwRIgARIgARIgARIgARIgARIgARIIBwBypNw3HgWCZAACZAACZAACZAACZAACZAACZBAhhCgPMmQieZtkgAJkAAJkAAJkAAJkAAJkAAJkAAJhCNAeRKOG88iARIgARIgARIgARIgARIgARIgARLIEAKUJxky0bxNEiABEiABEiABEiABEiABEiABEiCBcAQoT8Jx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIZQoDyJEMmmrdJAiRAAiRAAiRAAiRAAiRAAiRAAiQQjgDlSThuPIsESIAESIAESIAESIAESIAESIAESCBDCFCeZMhE8zZJgARIgARIgARIgARIgARIgARIgATCEaA8CceNZ5EACZAACZAACZAACZAACZAACZAACWQIAcqTDJlo3iYJkAAJkAAJkAAJkAAJkAAJkAAJkEA4ApQn4bjxLBIgARIgARIgARIgARIgARIgARIggQwhQHmSIRPN2yQBEiABEiABEiABEiABEiABEiABEghHgPIkHDeeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCEEKE8yZKJ5myRAAiRAAiRAAiRAAiRAAiRAAiRAAuEIUJ6E48azSIAESIAESIAESIAESIAESIAESIAEMoQA5UmGTDRvkwRIgARIgARIgARIgARIgARIgARIIBwBypNw3HgWCZAACZAACZAACZAACZAACZAACZBAhhCgPMmQieZtkgAJkAAJkAAJkAAJkAAJkAAJkAAJhCNAeRKOG88iARIgARIgARIgARIgARIgARIgARLIEAKUJxky0bxNEiABEiABEiABEiABEiABEiABEiCBcAQoT8Jx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIZQoDyJEMmmrdJAiRAAiRAAiRAAiRAAiRAAiRAAiQQjgDlSThuPIsESIAESCAggX379skTTzwhixYtkptvvllatmwZ8MzMOuzAgQPyySefyMsvvyxHHHGE3H777ZkFgHcbk0B+PBt4XS5ZssQ8bxdffLFcccUVaTMD6Tz2tIHMgZIACZAACeQhQHnCh4IESIAE0pzA66+/Lk8++WSouzjttNNkwIABUqZMmVDnBzlp/fr10qdPH9m1a5cUxPWCjCmVjvn9999l8uTJ8tprr8nu3bvN0P7617/KHXfckXCYP/30k/Ts2VM2bdqU8Fi/Ax566CFp0qRJqHNT/aSPP/5Y/vOf/8j7778v27ZtM8MtXry4ed7POuuspIa/f/9+AauFCxdGnFe7dm0ZOXKkVK5cOan+gh6seTZiXQPiYcKECfLWW2/lPm+33nprIHnywQcfyN133x1z+PGe21jvU0GfdVxUM/agzHkcCZAACZAACcQiQHnCZ4MESIAEigCBgwcPyqeffirDhg2THTt2SHZ2tjz88MNSt27dPHf3559/ytatW+W5556TX3/9Nd/lCRaeTz31lMyfP5+RJz7PGuYD/0EuYWG6bt26wPLEdgfp8uyzz8qbb76ZUL5gQY4ooMcff9xcr6jKE8sG4qRfv36yYcMG8yOIE9x3qVKlAr/yP/vsM7nnnnvkt99+M+c0a9ZMevfuLTk5OYH7CHOgi2cj1nW///57I97AJ6g8QV87d+6UV199VaZOnSp430Fr3LixdO/eXQ499FAjqPwajt28ebOMGTNGILaqVKlioqsgVLOyspLCE3bsSV2EB5MACZAACZBAFAHKEz4SJEACJFBECOBb2SFDhsjSpUvjyhPvonLixIlyyy23qCNPsACbO3euXH311UWEpsgvv/xiokH+/ve/q/kEgYL5Gzx4sImUSObbeNs3FqR9+/Y1C9og57/yyitSr169Ii9P/vjjDxMdgucTrWTJkvLggw+aBX+QhvMfffRRmT17du7hBR2xo302/O4TzzeicD7//POk5An6ghCFnH3vvfdM19iO17Zt2yA45d133zXz0b9/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xjfffGO+1YbYSJRg0rt9Jtm5x/E2usS75cdvru644w7z46DHRfeBcUIeQLThuYIMwkIY3+BD0Hm3PIW9RvQ1470uoiNH8KxisYzIgapVq+Z25a0E5McXsi66RDBeD5AnkydPNhFKWMhDDEE8Qs7FKyeseTZshSy8Dr/99lsjBSAjsZj3lhj3RmrFm+swz5M9B+8fEAd4bqxQ9esP44RkQZQJ5Mall15qnn28dpBsecyYMea9B8IJ8iGZscd77WNeESWEHDCYl2gJhrEiAgZbeyBJIVG9r1Pv84pnG2IZDe8pSA5ttyxBtEDKstKO5mniuSRAAiSQOgQoT1JnLjgSEiABEiABEiABEiABEiABEiABEiCBFCRAeZKCk8IhkQAJkAAJkAAJkAAJkAAJkAAJkAAJpA4BypPUmQuOhARIgARIgARIgARIgARIgARIgARIIAUJUJ6k4KRwSCRAAiRAAiRAAiRAAiRAAiRAAiRAAqlDgPIkdeaCIyEBEiABEiABEiABEiABEiABEiABEkhBApQnKTgpHBIJkAAJkAAJkAAJkAAJkAAJkAAJkEDqEKA8SZ254EhIgARIgARIgARIgARIgARIgARIgARSkADlSQpOCodEAiRAAiRAAiRAAiRAAiRAAiRAAiSQOgQoT1JnLjgSEiABEiABEiABEiABEiABEiABEiCBFCRAeZKCk8IhkQAJkAAJkAAJkAAJkAAJkAAJkAAJpA4BypPUmQuOhARIgARIgARIgARIgARIgARIgARIIAUJUJ6k4KRwSCRAAiRAAiRAAiRAAiRAAiRAAiRAAqlDgPIkdeaCIyEBEiABEiABEiABEiABEiABEiABEkhBAmknT/7880/Zs2ePHDhwwODMysqSChUqSLFixVIQL4dEAiRAAiRAAiRAAiRAAiRAAiRAAiSQ7gTSQp7s27dPli1bJjNnzpQvv/xSfvvttwjuJUqUkEaNGkmbNm2kWbNmUqZMmXSfF46fBEiABEiABEiABEiABEiABEiABEggRQiktDzZv3+/vPnmm/L888/LL7/8EghZ+fLl5frrr5dLLrlESpUqFegcHkQCJEACJEACJEACJEACJEACJEACJEACsQikrDzZtm2bDB06VNasWSONGzeWJk2aSP369aVmzZpGikCSoGH7Drbx7Nq1S9auXSsffvihLF68WA477DDp37+/1KpVi7NPAiRAAiRAAiRAAiRAAiRAAiRAAiRAAqEJpKQ8+frrr2X48OFy4YUXmgiSZLfhQKhAoLz88svSq1cvqVu3bmhAPJEESIAESIAESIAESIAESIAESIAESCCzCaScPNmxY4eMHTtWOnXqpI4aQUTKhAkTpF27dlKtWrXMnmnePQmQAAmQAAmQAAmQAAmQAAnKrsZNAAAgAElEQVSQAAmQQCgCKSVPUEln1qxZZovOoYceGuqGok/64YcfZPny5XLxxRezIo8TouyEBEiABEiABEiABEiABEiABEiABDKLQErJk4MHD5pKOmXLlg01C0gwi7wnyI3iTRaLPkuWLCnFixcP1S9PIgESIAESIAESIAESIAESIAESIAESyFwCKSVPtNOwceNGGTVqlAwcOFAqV66s7Y7nkwAJkAAJkAAJkAAJkAAJkAAJkAAJkICkjTxBVMrHH38s77zzjqxatcp36pDjpGLFijJy5EjKEz7cJEACJEACJEACJEACJEACJEACJEACTgikhTxBLpTp06ebRLKQKPFa7dq1KU+cPBrshARIgARIgARIgARIgARIgARIgARIAATSQp7s3r1b+vbtK7/++qvcfPPN0qBBA9/ZW7Zsmbz++usydOhQRp7w+SYBEiABEiABEiABEiABEiABEiABEnBCIC3kyc6dO6V3797SqlUradu2bcwb/+mnn2TEiBHSq1cvyhMnjwc7IQESIAESIAESIAESIAESIAESIAESSAt58scff8ijjz4qRx55ZFx5wukkARIgARIgARIgARIgARIgARIgARIgAdcEnMsT5CT55ZdfpHz58k5LA//www/y0ksvSZcuXUxSWL/GyBPXjwf7IwESIAESIAESIAESIAESIAESIAEScC5PduzYYbbO9OnTx/nWmfXr18vixYvlkksuySNmIG3efvttU40H12epYj7cJEACJEACJEACJEACJEACJEACJEACLgjkkSf79++XFStWyL59+5Lu//fff5c5c+bIt99+67zizddffy0PPfSQ4P/xGqvtJD1tPIEESIAESIAESIAESIAESIAESIAESCAOAV95AkmxcOHC0OBcCwwIHTumKlWqyIknniiVKlWKGB/Ezfvvvy+lS5d2Lm5Cg+CJJEACJEACJEACJEACJEACJEACJEACaU/Ad9vOW2+9JZMmTZJmzZolnbdkw4YNsn37dqcCA7lMevbsKY0bN5Zbb71VsrKyfMF///335rr33HMPt+2k/aPJGyABEiABEiABEiABEiABEiABEiCB1CDgK0+2bdsmX3zxhZx//vlJjzI/cp5gC9HgwYOldevWcsYZZ8QcEyJU1q5dK/Xr15dSpUolPXaeQAIkQAIkQAIkQAIkQAIkQAIkQAIkQALRBHzlyZ9//im//fablClTJmWILV26VFatWiXXX3+9FCtWzHdclCcpM10cCAmQAAmQAAmQAAmQAAmQAAmQAAkUGQKhq+14SxJDZhw4cEBKliyZb2AgdN5991058sgj5eijj/a9zsaNG2XUqFEycOBAbtvJt5lgxyRAAiRAAiRAAiRAAiRAAiRAAiSQWQSSlieopDNu3DhZsmSJ1KxZ0+QYqVixorzxxhuCUsKIDEFSV5ft559/NgljkdPkl19+kQoVKvh2v2fPHjMWjImlil3OAPsiARIgARIgARIgARIgARIgARIggcwlkJQ8WbdunfTv31+Q1wQtuqoOEs1Onz7d5CepVq2aM6p//PGHPProozJ79uyEfbqu9JPwgjyABEiABEiABEiABEiABEiABEiABEigSBMILE+swFiwYIG0b99eGjZsKJMnT5a77rorN8pj69at0qtXL2nRooV07do1Zm6SMESXL19utu107NjRNxcLthEhGmbmzJkydOhQRp6EgcxzSIAESIAESIAESIAESIAESIAESIAE8hAILE9QLrhv375y3XXXmYo3+PuIESOMLLFbZGxJ4bJlyxqBgS00rtrOnTvl008/lXPOOSdml9jegy1FEDc5OTmuLs1+SIAESIAESIAESIAESIAESIAESIAEMphAUvLEK0v85AlynvTp08eIC+YdyeCnirdOAiRAAiRAAiRAAiRAAiRAAiRAAkWIQGB58vvvv8tjjz0ml112mTRo0CBP5Am29SDqY8qUKXLaaafJgAEDnJc6RiniefPmmeS0yL+Cax566KEmEgbjqlWrVhGaGt4KCZAACZAACZAACZAACZAACZAACZBAKhAILE8wWOQdgRy58847pXTp0rnbdsqXLy/Tpk2T8ePHC0oK33PPPXG314S5cSSpHTJkiHz++ee+p2M83bp1k1atWjnNtRJmrDyHBEiABEiABEiABEiABEiABEiABEig6BBISp5AjCAh61NPPSXZ2dmye/duOeSQQ0wUym+//SbFixeXTp06Sbt27SQrK8sZJUSY4JoQNBA1bdq0MZKkTJky5hrIdYLfzZ8/X/r16ydNmzZ1dm12RAIkQAIkQAIkQAIkQAIkQAIkQAIkkNkEkpInFtWWLVtkxowZ8uGHH8r27duNSDnxxBON1KhXr57zyA8ki+3du7eRNQ888IC5RnSD2EGZ5C+++MJUACpZsmRmzyzvngRIgARIgARIgARIgARIgARIgARIwAmBUPIk3pWRG8W1uLDypFGjRmbLULFixXyHgK09SGqLpLW2ApATSuyEBEiABEiABEiABEiABEiABEiABEggYwk4lydI6HrKKadIpUqVnEFFVAnyqezatSuuPNm6das8+uijJvLEXh9JZteuXSv169eXUqVKORsTOyIBEiABEiABEiABEiABEiABEiABEsgMAnnkCWTDihUrZN++fUkROHjwoKxZs8bkHenataucddZZSZ2f6OBffvlFnnnmGbn00kvjbtv56quv5I477pASJUqYLiFUUDb57rvvZjRKIsj8PQmQAAmQAAmQAAmQAAmQAAmQAAmQQB4CvvLkoYcekoULF4bGBXECWeEq0gPiZOrUqSa/yvr16+WYY44xyWm97ccff5SlS5dK8+bNTRJb2zZs2GDOg0DhVp7QU8oTSYAESIAESIAESIAESIAESIAESCBjCfhu24E4eeyxx+S8886T448/PjeHCaI6Jk2aZLbAoNpNTk5OBDhUvVm5cqUpU3zCCSc4kyeIhtEIndq1a1OeZOwjzhsnARIgARIgARIgARIgARIgARIgAR0BX3kCCTJ37lxp27ZtbnJWJIJFMlZUusHPoyM/7DBwXsWKFU0EiMsGoTNlyhS54oorAiekxVYiRKNA6GDsjDxxOSPsiwRIgARIgARIgARIgARIgARIgAQyg0DMhLHIeVK6dOlcefLTTz+Z6I+ePXtKjRo1YtLBtppXX31VevToIWXKlHFGEdtyIEGSzaWSKRV4/vKXvxjWkFds4QlAEuLZhwBkC0cACZ4hYF0mjQ43kvQ+CwzxHMYS1el9dwUzemz5RPU3V1tIC2bUqXWV3377Tf744w8pV65cag0sjUYDfngWs7Oz02jUqTdUfA7ll2C6eUHhBbyWs7KydB1l8Nm//vqryauINRIbCZBA5hEIXG0H5YKHDRtmqt3Ekyfvvvuu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ZRJwKp48+OCDuPHGG1VmHRYGhZ07dy4OHTpUQ6pVq1aYOHFiLXcdBo1lMCUG6ouJifEIVYo5M2bMwO2334727durczJ1cffu3TF69Gj1b1rIvPXWW0ro0dl/PHJxOYkQEAJCQAgIASEgBISAEBACQkAICAEh0KIJOBVPnnvuOdx11121BBDGHWHMEf3biSeeCD8/v1oAs7Ky1O/33HOPR8UT+/Ywev0333yD2267rcYqZv78+diwYYP6W0BAQIseWOm8EBACQkAICAEhIASEgBAQAkJACAgBIeAZAg0ST3hJiiPPPvss7r77bsTFxdVpBa1EHAkv7jSXbjtPP/00xo4dCy3YMHXxM888g1NOOQUjRoxQsVBmzpyJFStWeNRlyJ12y7FCQAgIASEgBISAEBACQkAICAEhIASEgO8TaLB44koccfV7Y5ExIO2TTz6pRJLBgwfjoYcews6dO/HII4+of2dmZmLz5s3o2rWrchli1h0pQkAICAEhIASEgBAQAkJACAgBISAEhIAQcJeAz4gnFE2YceeDDz5Av379VEDb4OBgzJkzB6+99poKUst/U1QZNmyYu1zkeCEgBISAEBACQkAICAEhIASEgBAQAkJACCgCPiOeOBsvxmHJyMhAWloaOnfujLCwMBlaISAEhIAQEAJCQAgIASEgBISAEBACQkAIeIyAU/GEMUauv/56REVF1bpYbm6usvRgJh7731iRrjMff/wxHn/8cY8FjGV8k+3bt6Nbt25OUyYzVXF+fj569OhRJ4itx2jJiYSAEBACQkAICAEhIASEgBAQAkJACAiBFkfAqXhCt5h9+/Y1Cki7du08GrTVTBwVWqB88sknYPrk0047rVHt9tWDGFCXff/uu+9Uyuazzz4b//jHPxASEuKrXfJouxkPh6m3d+3aVXPekSNH4v77768R4zh/li5dqoIOMx13//79VdampKSkWm0xW8+jHWjik9FFjmLlO++8gwsuuACDBg1y2IJNmzaptOSsS6uvm2++GX369KlT19P1mhhHoy/HeTd79mx1T1Jsdla+/vprJUjrEhgYqOI7DRgwoOZvOTk5Kj37woUL1Zy9/PLLccYZZ8BisdQ6rdl6je5UEx3IObhgwQK8//77SE9PV/fhtGnTVNBwf3//RvXZLBuz9ZoIRaMvw2fV2rVr1T2akpKiArxzbeB/nEP2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y4OBAo1+/qzLAHe0TKHPNmMzMOidFCEgBISAEBACQkAICAEhIASEgBAQAkJACHiCgFeKJ+wYg6ox0NjKlStVPwcPHqyySxiDKTLoIi1SGMxNl4iICEydOrVFZ5nxxMSQcwgBISAEhIAQEAJCQAgIASEgBISAEBAC1QS8VjyRARICQkAICAEhIASEgBAQAkJACAgBISAEhIA3EBDxxBtGQdogBISAEBACQkAICAEhIASEgBAQAkJACHgtARFPvHZopGFCQAgIASEgBISAEBACQkAICAEhIASEgDcQEPHEG0ZB2iAEhIAQEAJCQAgIASEgBISAEBACQkAIeC0BEU+8dmikYUJACAgBISAEhIAQEAJCQAgIASEgBISANxAQ8cQbRkHaIASEgBAQAkJACAgBISAEhIAQEAJCQAh4LQERT7x2aKRhQkAICAEhIASEgBAQAkJACAgBISAEhIA3EBDxxBtGQdogBISAEBACQkAICAEhIASEgBAQAkJACHgtARFPvHZopGFCQAgIASEgBISAEBACQkAICAEhIASEgDcQEPHEG0ZB2iAEhIAQEAJCQAgIASEgBISAEBACQkAIeC0BEU+8dmikYUJACAgBISAEhIAQEAJCQAgIASEgBISANxAQ8cQbRkHaIASEgBAQAkJACAgBISAEhIAQEAJCQAh4LQERT7x2aKRhQkAICAEhIASEgBAQAkJACAgBISAEhIA3EBDxxBtGQdogBISAEBACQkAICAEhIASEgBAQAkJACHgtARFPvHZopGFCQAgIASEgBISAEBACQkAICAEhIASEgDcQEPHEG0ZB2iAEhIAQEAJCQAgIASEgBISAEBACQkAIeC0BEU+8dmikYUJACAgBISAEhIAQEAJCQAgIASEgBISANxAQ8cQbRkHaIASEgBAQAkJACAgBISAEhIAQEAJCQAh4LQERT7x2aKRhQkAICAEhIAR8h8D333+P119/HTfccAMmTZrkOw33wpaWl5dj7dq1mDVrFkaNGoWzzjrLC1spTRICQkAICAEh0LIIiHjSssZbeisEhIAQcJtARUUFNm3ahMWLF2Pu3LkoLS1F165d8dRTTyE6Otrl+dPT03HPPffgwIEDNXW52b711ltrHVtVVYUdO3bg22+/xcqVK5GVlQV/f38kJibi5GHFDU4AABLPSURBVJNPVhv0w4cPY9euXRg3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IzeULNwUc1Ovi/4SzkChFDG0RQM3efxqTvGC8TVoMUKBJDQ0tFYLKUDw3Axgyswx/LrOr+mMxcH0wRRYKNwwsCzdLXShGMF0uUzNytgrxvgk2mKDdfmbTlHLfxvTv/bu3VtlqmnVqlWtNlGYoOsJY2Vwo3/JJZeodLd09aisrFRf/xlolUFxJ0+erDau9RWyoBDA2CK0uKH1B0UDI8e3335biSHkNGDAABQXFyuhiv189dVXVVpi+0JedJVh/9iun376SYkebBc32507d645hP1mXbad8WA4XtpqhumQ+W+maCaT448/Hs7ao+PKsD3M9sIUx9qqRwtPf/75Jyg8MTUu28a4M6+//roSZ9hmFraXlkSMv9KnTx888sgjiI2NVb+xrZxnnBMPPPAATjzxxHqtkuqbC/bMUlJS1LmHDx9eS7AxZpDi+DDN8IYNG5Qb0urVqxUrcqFQwUxS27dvV9ZAnO9MzcwUxyw8D+clhSIjH+P9wHrGYyj26XGkSxX7S86zZ89WjGbMmFET7JjHcg7xeLbPvhizCnGsWY/iC+8rzmNJT3wUHpBySiEgBISAEGh2BEQ8aXZDKh0SAkJACBxdAkZrCeOV7IOCcpNHwUNbhdSXJcb+iz/Py+ssXbpUbRa5uS0tLVWbUp6TG/1TTz21luiiLUeMbTJmneHfaZFCixYer69BQYEbe/viKMgpN/fcIDO97rp165SlBwtjtHADTdHETEBZsyy4IabVCd1buOm+6qqraiw3uCH/5ZdflLjCmBdM3Uu3DKaJpnWHs3GyZ824JIwvw2tRCOBGPTg4uEbUueuuu9Tf9Qbdvj0UNewzvdhzt28rz08xgq5Zbdu2rXcsmLaahdYWxuJozujfzcwF+/GmKEZBRF9P/04u5MPfOM7kQzGJ4h4FMgoQdANjymdmKrJvI9tpzycyMlJZZLG+/THGNN1kS5Fw8eLFaq7pMaaAZi848rq0EGJ9iitsN13U2L7TTjtNtVW7YxnbqNuis04d3aeHnF0ICAEhIASEgO8SEPHEd8dOWi4EhIAQEAJCQAgIASEgBISAEBACQkAINAEBEU+aALJcQggIASEgBISAEBACQkAICAEhIASEgBDwXQIinvju2EnLhYAQEAJCQAgIASEgBISAEBACQkAICIEmICDiSRNAlksIASEgBISAEBACQkAICAEhIASEgBAQAr5LQMQT3x07abkQEAJCQAgIASEgBISAEBACQkAICAEh0AQERDxpAshyCSEgBISAEBACQkAICAEhIASEgBAQAkLAdwmIeOK7YyctFwJCQAgIASEgBISAEBACQkAICAEhIASagICIJ00AWS4hBISAEBACQkAICAEhIASEgBAQAkJACPguARFPfHfspOVCQAgIASEgBISAEBACQkAICAEhIASEQBMQEPGkCSDLJYSAEBACQkAICAEhIASEgBAQAkJACAgB3yUg4onvjp20XAgIASEgBISAEBACQkAICAEhIASEgBBoAgIinjQBZLmEEBACQkAICAEhIASEgBAQAkJACAgBIeC7BEQ88d2xk5YLASEgBISAEBACQkAICAEhIASEgBAQAk1A4P8BeRmVCv++KvUAAAAASUVORK5CYII=", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "Beam sensor 0", + "marker": { + "color": "rgb(102, 197, 204)" + }, + "name": "Beam sensor 0", + "type": "box", + "y": [ + 0.11447393137470015, + 0.08601614895685247, + 0.06665487649605299, + 0.07900619625585142, + 0.08284809324354658, + 0.06766256994709624, + 0.07283503536073105, + 0.056383171130916565, + 0.08362744074898475, + 0.06310333034545965, + 0.06891743810923376, + 0.07204182122329209, + 0.07901032954941116, + 0.08015226278244958, + 0.09849577310595324, + 0.06643702058412013, + 0.08388336435169948, + 0.09195416515097264, + 0.06571232075597214, + 0.06366720541852532, + 0.07601258935078131, + 0.06174661682523948, + 0.11453871898297897, + 0.07216592178061938, + 0.07850172534551393, + 0.06928483349020712, + 0.0662306337073297, + 0.05576482093165577, + 0.07850550362653552, + 0.07508363450803489, + 0.06588816315463375, + 0.07150108913795072, + 0.08323637756877912, + 0.08635889960071731, + 0.07190620802350206, + 0.08081925565440579, + 0.08294420015650246, + 0.09010474033751692, + 0.06624102171159858, + 0.07810152473869944, + 0.09720358288204446, + 0.07021406369217482, + 0.07969129308531542, + 0.07045152747662785, + 0.0567101162583161, + 0.08952745252162675, + 0.10011724342410384, + 0.07497196385020213, + 0.06653933352604612, + 0.08381570771682363, + 0.0806621213098584, + 0.09531897627413467, + 0.08716055193365968, + 0.08522642992171058, + 0.08591298624446728, + 0.08084153844657367, + 0.06710515773469462, + 0.09430968387215924, + 0.06213257160620119, + 0.07688724986741426, + 0.07680752341347079, + 0.09296246093855981, + 0.08338380216169772, + 0.08115978038325393, + 0.09860024214831854, + 0.08711590147405494, + 0.08845193645713344, + 0.09986358937144846, + 0.10563751596473349, + 0.07986983800198987, + 0.09391370362043723, + 0.08328974314939976, + 0.06353034157919227, + 0.07173178889986198, + 0.06849774847479977, + 0.07395607369830753, + 0.0899784792554148, + 0.09558160705730065, + 0.0967903058121914, + 0.10879279381495442, + 0.0682780996018918, + 0.07023014676153012, + 0.07018472785233362, + 0.06794393303628263, + 0.07562253557652206, + 0.06737320609619915, + 0.06848584920278386, + 0.0719714866727068, + 0.09756345975818605, + 0.1246429443943433, + 0.07406953743291533, + 0.08630599452183056, + 0.061661644771578976, + 0.06828385809904046, + 0.10371403253541417, + 0.06382958285422846, + 0.05369008327523345, + 0.08599365226432865, + 0.0745252382355847, + 0.07098760285632623, + 0.06463176830412305, + 0.07097667049873826, + 0.06504201344633444, + 0.06635464271615078, + 0.07758729315139626, + 0.05776850849516609, + 0.08172460729556434, + 0.06622546915366254, + 0.08525049481954332, + 0.0878261742918285, + 0.07191757196548773, + 0.09690315067140136, + 0.08469713162476505, + 0.07280513026204247, + 0.05219197412294474, + 0.08351782331758498, + 0.07765153524314236, + 0.07051857396758014, + 0.09232309483569463, + 0.08786743900710114, + 0.07820448129649782, + 0.060213464478592604, + 0.07473467506308742, + 0.07833026884176429, + 0.0753715611322922, + 0.11712548142544514, + 0.062240875393909954, + 0.07925836891165816, + 0.0639642676329946, + 0.07776827020914273, + 0.07320208366440101, + 0.08287252901224765, + 0.0693492513890538, + 0.06587756207197815, + 0.06889103831709388, + 0.08843957860273215, + 0.1147944133669514, + 0.08133669674561181, + 0.07233657294045802, + 0.07798271220810435, + 0.0704920336218388, + 0.07705099797161008, + 0.08082979933795469, + 0.07230878134889929, + 0.10413933008540757, + 0.07792174097248634, + 0.07124174850521534, + 0.07793745216511355, + 0.058643435962110614, + 0.08622033030661595, + 0.07156069377236193, + 0.07521353094024891, + 0.09229350589957379, + 0.08922789957414853, + 0.059135394096358825, + 0.05797250854127129, + 0.08524890840051923, + 0.0682904822501719, + 0.08720699072814479, + 0.07987896134319052, + 0.08929144422730077, + 0.11219561306376101, + 0.07070377893486857, + 0.0672730915974678, + 0.09052392785861217, + 0.08218400625863294, + 0.0859103692629877, + 0.07912291386186082, + 0.06065266175719179, + 0.11295059181101481, + 0.07150019003194455, + 0.06875576806024644, + 0.06865172146223689, + 0.07966190293593337, + 0.07062075078253649, + 0.09178642952435778, + 0.07574782853699077, + 0.0935408217113296, + 0.06941602715655137, + 0.073046580884459, + 0.07963468913751347, + 0.10811603423678806, + 0.0730489843540421, + 0.0824320189622287, + 0.07821764726375303, + 0.07467417772469509, + 0.07561984537215373, + 0.06709681809902288, + 0.07951766010987153, + 0.07700524521284692, + 0.07529040120521723, + 0.07588360010570327, + 0.08075634562189682, + 0.09292122056187516, + 0.07201501792327474, + 0.07726142297965469, + 0.07190995598210029, + 0.10740457314330389, + 0.07707765475776454, + 0.08308775111648858, + 0.0733341996284551, + 0.08218039952042501, + 0.08014820735041306, + 0.09184628819786854, + 0.09086204543777972, + 0.0594843267585398, + 0.0629393144881159, + 0.09973705005283119, + 0.06976007185371458, + 0.08900181852600147, + 0.08025511544154748, + 0.09414012999894134, + 0.09120961664666606, + 0.07586750366643918, + 0.06307735963578387, + 0.07224386759238362, + 0.07346095466023034, + 0.07867588053009907, + 0.10310429652641746, + 0.060885859241399956, + 0.07675324381930491, + 0.06170394454164737, + 0.08512477440705574, + 0.0693402390874714, + 0.0697757604164985, + 0.11257663552882656, + 0.09169784869552476, + 0.06958787157114349, + 0.07416659824491252, + 0.06444468281228989, + 0.06323603547393016, + 0.09301047966145883, + 0.06089544351712666, + 0.07403302433929651, + 0.07150895565040416, + 0.07542964915271207, + 0.08510155377972826, + 0.0668345018401326, + 0.0926086898829572, + 0.09459582238712758, + 0.06829926700002749, + 0.08587308870738519, + 0.07559059613276593, + 0.07746544187665194, + 0.08030051585849717, + 0.059565236003503955, + 0.0874879613080152, + 0.09736435879588756, + 0.08213059041495015, + 0.0628717247343395, + 0.06731267094026634, + 0.08495653987676126, + 0.08586918199263968, + 0.09716665004285123, + 0.09127035755722866, + 0.06863936314895139, + 0.07668759801435006, + 0.05730454667551294, + 0.06459838408276403, + 0.09488969683702864, + 0.07356632638838113, + 0.08019248179521675, + 0.08533161343709834, + 0.07153673709273767, + 0.07544520422922632, + 0.09027450092461765, + 0.08779950633587545, + 0.08468257946065447, + 0.08785310802818082, + 0.09086207368946451, + 0.06542922416139665, + 0.072054645248716, + 0.07919802241310896, + 0.07507777553528971, + 0.08739496127033293, + 0.09690622530594047, + 0.07649473136049137, + 0.08088855610130878, + 0.07642213854839092, + 0.05913650796853856, + 0.07235120888240842, + 0.08975737062982718, + 0.08284476547471378, + 0.07138504055646687, + 0.06868791135237501, + 0.07517389255496716, + 0.07487525017876437, + 0.0824518137718452, + 0.06541432040371564, + 0.08199742451963471, + 0.059677726285325715, + 0.061339255557373705, + 0.08821244841980427, + 0.06351048555016134, + 0.0749407818223644, + 0.06254964496931252, + 0.08759247218034395, + 0.07379040201410064, + 0.07374204945567125, + 0.08342308942516187, + 0.06645701923270002, + 0.08755258632757869, + 0.06364151288908773, + 0.0920935008564492, + 0.1034087463340564, + 0.07454200663215498, + 0.0840504874272234, + 0.085595872682885, + 0.08210687247690875, + 0.05758975767591459, + 0.06833889028188614, + 0.060229230511689116, + 0.06368948747301151, + 0.07858333300302617, + 0.07500399858424571, + 0.09130854990133823, + 0.06876439565539427, + 0.06462127284197064, + 0.06792900187506273, + 0.06471406948261195, + 0.06937689884793208, + 0.05836638652826638, + 0.07088304373697007, + 0.08218259503506525, + 0.08297492116580503, + 0.08192840281516625, + 0.06210135775145932, + 0.09895090109317446, + 0.059825330277706625, + 0.1088935017515979, + 0.06563885467592853, + 0.07100286050769015, + 0.062344359179982156, + 0.10754054814009084, + 0.09429598631970175, + 0.06398221957720256, + 0.08213712468506511, + 0.08311285528647334, + 0.07721276628203463, + 0.0989056805793633, + 0.06147362035991655, + 0.08464931616308984, + 0.06348942023659682, + 0.08608968394170419, + 0.08140617483921567, + 0.06663531787432986, + 0.08479624353271892, + 0.09839892382328318, + 0.07453713857251745, + 0.06595762568491742, + 0.07375357851668816, + 0.08688506196674173, + 0.0833982611407247, + 0.07188403460878663, + 0.07430628600624421, + 0.06950346831012712, + 0.06598581427334622, + 0.08233123697069712, + 0.07912029398442523, + 0.09025420812832731, + 0.0757882749484664, + 0.07039967085092443, + 0.06334076317411697, + 0.06355757077677757, + 0.081051876100448, + 0.08785195483697462, + 0.07430980413428202, + 0.092997699968936, + 0.0733893310258755, + 0.08593281023862148, + 0.08972985429583416, + 0.08464811564953974, + 0.07160956979277308, + 0.07673016670499298, + 0.06031805482144385, + 0.07066680623811901, + 0.06761318267366623, + 0.0919447440745381, + 0.07461783492694214, + 0.08731004924979122, + 0.08080187511702797, + 0.08636122191926213, + 0.07484464529981237, + 0.0831084453887049, + 0.07409663055884935, + 0.06978551003756014, + 0.09419378665107161, + 0.10120992440060388, + 0.07852187808316935, + 0.07924511552560778, + 0.07910156535230264, + 0.06521786222557038, + 0.09052096765845304, + 0.08725447569999004, + 0.07864269725286316, + 0.07820361963673553, + 0.0907825688570589, + 0.07167375282335747, + 0.08071671512511618, + 0.0600605440310957, + 0.06256682578534761, + 0.08230280441135988, + 0.08757903072022766, + 0.09985412136842108, + 0.10340029038748502, + 0.08366499596534649, + 0.07655182982214884, + 0.07804651814436636, + 0.06482309533221399, + 0.07621621254268832, + 0.06236540036951853, + 0.08655035595975202, + 0.07450759326144077, + 0.08190482200002261, + 0.09681142853970195, + 0.06689443159389098, + 0.0744818380807826, + 0.07766686887936203, + 0.06689357944940864, + 0.08268362279354818, + 0.07957043742327832, + 0.07077574214902072, + 0.10066386992082715, + 0.07580249290117458, + 0.07534422124230128, + 0.06633349220711687, + 0.07705430890787414, + 0.07399349098036588, + 0.10873876414806177, + 0.11493951871872578, + 0.06885554489770147, + 0.07446866539049761, + 0.08059709027268736, + 0.06464325303734707, + 0.09360681709083189, + 0.0635263696197495, + 0.06995200897101328, + 0.07853874383290806, + 0.08159604136656692, + 0.09335610107894479, + 0.06703972221744038, + 0.0664240062005633, + 0.0924058754706442, + 0.06877143485916433, + 0.07811733903449461, + 0.07092291515044927, + 0.0679459810236854, + 0.07243995250634673, + 0.06860377362234367, + 0.07782687080210457, + 0.08267951518149258, + 0.07889687485488826, + 0.06363766842866425, + 0.06943480531479039, + 0.07743774834327395, + 0.11139193723843882, + 0.07703505326921749, + 0.0763394692365271, + 0.06761434831868827, + 0.07864047204175284, + 0.08398811624769813, + 0.09727189236255904, + 0.07340890982522623, + 0.0728979548118425, + 0.05548912159305028, + 0.0815216389176959, + 0.07344488247895707, + 0.0808551189403844, + 0.08048921636825573, + 0.07399257476753199, + 0.07913338031534904, + 0.07227049819802908, + 0.08551010896871292, + 0.09973176445942342, + 0.09279861930581898, + 0.0909153768627144, + 0.07251391649541185, + 0.09029198956112401, + 0.0796746572029755, + 0.08777367579293233, + 0.07501857785486714, + 0.082749745764031, + 0.07069218916563735, + 0.07797181110399633, + 0.08684767959088519, + 0.06815072837230976, + 0.09423284149688939, + 0.07242168779791947, + 0.08331829088719833, + 0.07485093602060462, + 0.07422936837645037, + 0.07838987714497178, + 0.10268784085054962, + 0.08156503288962434, + 0.08187316977339415, + 0.09270132904789756, + 0.07709220214077123, + 0.07685217633005756, + 0.06743487622556507, + 0.08665612027502535, + 0.09038462711745501, + 0.07278571446373841, + 0.07709784836865462, + 0.07097927421705418, + 0.08316695429050924, + 0.07130913350878548, + 0.07041045945216523, + 0.1053279525424274, + 0.09667527980137407, + 0.09753151071263146, + 0.06422971412288866, + 0.07703872122803548, + 0.09026639243705369, + 0.06457615160649462, + 0.09709716351616014, + 0.10663420914431225, + 0.061413871620174094, + 0.07564589404465283, + 0.07939400120505889, + 0.08003878877340238, + 0.07114124816937828, + 0.07753341919389253, + 0.0672765415863962, + 0.06962421911263848, + 0.08231126206263532, + 0.0783275664000965, + 0.09219502419318681, + 0.1088989093726032, + 0.07269035761693707, + 0.07472475656001436, + 0.08051289631190264, + 0.06366546320747778, + 0.07584729148493694, + 0.07932550807309925, + 0.09115098885760453, + 0.08839727713481789, + 0.08442820124211299, + 0.07709478445498069, + 0.0697798571612283, + 0.0742680429018309, + 0.0692433003839258, + 0.06324926207409469, + 0.055892978207178624, + 0.08174436834888262, + 0.07354693737441079, + 0.0814271375801284, + 0.09697191310614828, + 0.09862185015310362, + 0.10141878028483443, + 0.07260538758612257, + 0.09502894519967052, + 0.07821361014444592, + 0.06345519831486886, + 0.10627357999205878, + 0.0699365774615762, + 0.08081431901806348, + 0.07802780671986118, + 0.08325261703048314, + 0.07541518106709426, + 0.0819484798134012, + 0.07477924712484917, + 0.08165948274224681, + 0.07242673443192532, + 0.0977868486538132, + 0.0975254028591405, + 0.08999047119264812, + 0.08408004771942672, + 0.07607789466917851, + 0.07108595495851153, + 0.06406545057304955, + 0.06550299003260779, + 0.06732619256351961, + 0.06326970111085622, + 0.06050936180233658, + 0.06659216882414835, + 0.06551169605559176, + 0.07976519850067997, + 0.10199847029605952, + 0.09072559610427942, + 0.06950626102673155, + 0.06658827828591671, + 0.08891072789358756, + 0.08649675477132222, + 0.09493030408086815, + 0.09196798963641586, + 0.07630312899712725, + 0.07105652603805117, + 0.08160726437273194, + 0.07104947092679662, + 0.062389768992805496, + 0.0962445383077257, + 0.07180748492985603, + 0.07144139285634933, + 0.06881331576659823, + 0.08027080722548703, + 0.06397047069767009, + 0.06897230648516414, + 0.07857594060916642, + 0.06149358342512446, + 0.07450362863565209, + 0.09164654130875557, + 0.10934822057754111, + 0.07663091171414961, + 0.06864543161706481, + 0.07923526541539076, + 0.08414389039823938, + 0.08768940222163268, + 0.07981382114329867, + 0.06915002382421889, + 0.07988132951930701, + 0.07532476283955065, + 0.07829139061231181, + 0.07900891354664555, + 0.0883784779852678, + 0.06251354102239244, + 0.06841070877182777, + 0.09391841302772613, + 0.09590776563359762, + 0.08748440878573031, + 0.09925090255041578, + 0.0707051376001382, + 0.08002583836443009, + 0.06810939620784656, + 0.0626670751356061, + 0.06743918371846946, + 0.06975887881777547, + 0.08674005776518602, + 0.08007641697699676, + 0.07724007229379931, + 0.09112328251370098, + 0.08238171364639738, + 0.08275357027035064, + 0.07397336309767939, + 0.07330035086559279, + 0.09324575755050295, + 0.08243261851147833, + 0.07833315935159679, + 0.09030266869928101, + 0.07439736088050897, + 0.07326087216689876, + 0.08563691727967472, + 0.09462599969941721, + 0.07555388824623706, + 0.0844027659988426, + 0.10013791633050079, + 0.08093822567316493, + 0.07888126134673129, + 0.07850733828985991, + 0.0856892424066913, + 0.08043677343745301, + 0.08551387729867703, + 0.10190385890324473, + 0.07219084505287436, + 0.061759591582873155, + 0.09423377909927393, + 0.0791538582338517, + 0.08030247854101046, + 0.06767058390814908, + 0.07403365023508893, + 0.084509244878108, + 0.07899168644869359, + 0.068488118343969, + 0.07781566014136189, + 0.07847642592263286, + 0.08021834147749672, + 0.06362072948132237, + 0.09819213161232802, + 0.08028890532712506, + 0.05769805223262799, + 0.07400161857253458, + 0.08645287829373509, + 0.0801534899275563, + 0.07858910258787029, + 0.0707522588339861, + 0.07634870564674279, + 0.0707625676284981, + 0.06264902859961077, + 0.08144983013058536, + 0.07702749867204192, + 0.053162437068084, + 0.08654196440316807, + 0.08394689388780556, + 0.06290453901517627, + 0.08287680013523602, + 0.0753953063778686, + 0.08148191017512382, + 0.06933400624396832, + 0.08320864641646993, + 0.0890457446529895, + 0.059819530839693824, + 0.07751816396331218, + 0.07261928420982501, + 0.0786483853879108, + 0.07576596639954253, + 0.13421542857219287, + 0.06526605973360274, + 0.08110966822805879, + 0.08199109589816726, + 0.06365996071936286, + 0.07157588486746556, + 0.08943871571378152, + 0.07534018588064255, + 0.10346783057392332, + 0.0689949696178118, + 0.06578687733834684, + 0.07193306105093497, + 0.08837689907333929, + 0.0696354045371941, + 0.08415868465551433, + 0.061647921693896206, + 0.05862747211863791, + 0.07938288096434062, + 0.08564294284456848, + 0.08577955247808648, + 0.0897321062177783, + 0.06091342951381326, + 0.08380608358553028, + 0.09438993546845928, + 0.1203745244119162, + 0.0665662926405263, + 0.07248789681285851, + 0.08579254840556264, + 0.0785043603366159, + 0.07518537683030256, + 0.08152672660502874, + 0.09283965806765329, + 0.08687168090475948, + 0.09807924527425933, + 0.06670279457205058, + 0.07678228858455857, + 0.0871915767749327, + 0.09769441649149695, + 0.06544498055889295, + 0.07007028028195667, + 0.0660685146491283, + 0.06804144134387073, + 0.09188800395129014, + 0.10234341498317125, + 0.08479138968351028, + 0.08814888668774401, + 0.06804048737176265, + 0.07663143864009149, + 0.0836647511384597, + 0.1000097675050749, + 0.0920569407414, + 0.09237681655029388, + 0.07714710324445687, + 0.07824614337129342, + 0.07245133067758038, + 0.07825120089165155, + 0.06707422530915268, + 0.08805199090421657, + 0.07533243595828444, + 0.07604885465323771, + 0.11006980096405396, + 0.07383927139768007, + 0.07298825669457584, + 0.08838722046718424, + 0.07897568149138616, + 0.08341766698119388, + 0.0816341216124362, + 0.08628150822536863, + 0.09508355005547653, + 0.09401446433656753, + 0.07728530890457957, + 0.0751444030845301, + 0.08037957076841962, + 0.08497792110118813, + 0.09947432827731859, + 0.08110390440121795, + 0.07855812514249297, + 0.05919818833816716, + 0.07951884460796821, + 0.06477729651009158, + 0.0848358081483786, + 0.08615401664813888, + 0.08963810471213604, + 0.07461094516889337, + 0.061439469869498164, + 0.07744570752387536, + 0.07231432141595996, + 0.07359513935542203, + 0.0647442090729554, + 0.08645332065079217, + 0.06394630975892063, + 0.06182743687182061, + 0.07650702277494591, + 0.06869532799429699, + 0.06422578437568077, + 0.0890497685824673, + 0.10329191777387858, + 0.08098887071831556, + 0.07533795842286253, + 0.05833746954564304, + 0.0793838266479648, + 0.08688829242588601, + 0.0969706752810349, + 0.06453608929155702, + 0.07297444980965605, + 0.07467752213179886, + 0.06876161570612399, + 0.07737673191642887, + 0.07838728287990261, + 0.08356511404006661, + 0.07290127649060264, + 0.08114133758574685, + 0.0796516604342582, + 0.067622429892809, + 0.07446163535553668, + 0.07289720003425901, + 0.0903222101997463, + 0.08272388237263524, + 0.08531223122140903, + 0.061193798274984536, + 0.08182488467946049, + 0.0820280370731087, + 0.06573273911534669, + 0.10120988399948398, + 0.0804424770835976, + 0.07475690678800091, + 0.08363843704525938, + 0.07845734835755658, + 0.06893150934263158, + 0.08576380062218485, + 0.07730658483399498, + 0.07245542708444594, + 0.07330341413751926, + 0.07837437900124619, + 0.07951751717546991, + 0.0786678346976338, + 0.0633068445147492, + 0.08169736738600025, + 0.07653293208144003, + 0.08372371911526678, + 0.06817741799678986, + 0.08432671606563762, + 0.09419212693872227, + 0.0831429437233733, + 0.08142037251611617, + 0.10029838952178911, + 0.09189345058439734, + 0.07541131355260408, + 0.07236379756330982, + 0.06810675194164915, + 0.0940301184716702, + 0.09424033393249086, + 0.09420329831842561, + 0.08317913394081702, + 0.07956338398723889, + 0.08156951380532042, + 0.08031953213543201, + 0.09156717163939819, + 0.08019588849434414, + 0.07753584099462962, + 0.08453675272209861, + 0.11221634662860783, + 0.08811731371688142, + 0.07050906480078005, + 0.06732239156753116, + 0.0831622417179293, + 0.08326635212175806, + 0.08413875949547102, + 0.06706035268600259, + 0.08016814378669615, + 0.07581720877662065, + 0.08172403356841433, + 0.0831355972034597, + 0.08295453515550456, + 0.08871426266570234, + 0.08991615484086382, + 0.07618318814376257, + 0.08661834372787659, + 0.07041064026856686, + 0.0763652599125074, + 0.07706717903790694, + 0.06277518382487368, + 0.06772605578915633, + 0.09265987417842167, + 0.09930767731995911, + 0.07896587031872104, + 0.09498405145071426, + 0.07604767260615722, + 0.08438004666840661, + 0.09973429340100062, + 0.07737318780822884, + 0.07623251948320432, + 0.1002335746661189, + 0.10433143124779991, + 0.07590271574760737, + 0.07069262021487972, + 0.11741544638328735, + 0.06219133325636609, + 0.07169848462834177, + 0.07417535888352386, + 0.11260165223536875, + 0.10458768483096251, + 0.09828348593448337, + 0.08094852404977748, + 0.07338175658299496, + 0.07707301425949417, + 0.08427138336723218, + 0.08800303984720717, + 0.07048669573022696, + 0.10660067700013416, + 0.0655543080429642, + 0.052951082288301435, + 0.10213533740264712, + 0.07322801244447821, + 0.07482664303844551, + 0.0700989220163211, + 0.07333156675978773, + 0.07912128986346825, + 0.07012903311117588, + 0.08354663236912274, + 0.07342204013095494, + 0.05331569704090838, + 0.059273297380302174, + 0.07029444595193762, + 0.06307826953951325, + 0.06707401873856327, + 0.08467367401128474, + 0.07811259959907389, + 0.11409007078425387, + 0.07772941958128636, + 0.0786831002493629, + 0.08940227882703722, + 0.06375568566710431, + 0.06379401764960706, + 0.06123700743527384, + 0.0822439476854724, + 0.08266148456584206, + 0.10433291175137652, + 0.06572363063217587, + 0.07792456764670826, + 0.07821626396344405, + 0.07917001958994486, + 0.07728314667448764, + 0.07344106933705206, + 0.07534207782364019, + 0.07769623665969218, + 0.09280331199470805, + 0.1212362434838904, + 0.08918609860957626, + 0.0909178705030026, + 0.08952330693914252, + 0.09521561513238638, + 0.07799538439027424, + 0.06139720126769126, + 0.06414508350173974, + 0.08616124985818925, + 0.06471911436335241, + 0.09498642936149468, + 0.1169926468309486, + 0.07397540973550461, + 0.08912299083527261, + 0.07136177931536666, + 0.08942434059058722, + 0.07174302683120001, + 0.08496579617763982, + 0.06864388553363603, + 0.06996467174737145, + 0.07732846609693753, + 0.09325325895950567, + 0.09637574016168761, + 0.06271894242253954, + 0.09386001880826082, + 0.10032360014989201, + 0.08811850635763523, + 0.05994741915130772, + 0.09450167893499903, + 0.056574338228903065, + 0.09358439883113141, + 0.08966865671780895, + 0.08022630127152297, + 0.08466313365320323, + 0.07532375348434528, + 0.08590099790538774, + 0.06726430269213406, + 0.07518550306274628, + 0.08780277176608353, + 0.0844508796904951, + 0.08687506416230602, + 0.06710087335006704, + 0.08823954134943467, + 0.09920812521133987, + 0.06167983072478759, + 0.07246085004271793, + 0.10021280437106875, + 0.07773424520847833, + 0.09841615067880097, + 0.07672058604425903, + 0.050384329770070416, + 0.0951351666117986, + 0.0784738220777513, + 0.0733181151277326, + 0.07623963528401924, + 0.07343776312297662, + 0.0829034070426589, + 0.08419862239673058, + 0.08487907802718957 + ] + }, + { + "legendgroup": "Beam sensor 1", + "marker": { + "color": "rgb(246, 207, 113)" + }, + "name": "Beam sensor 1", + "type": "box", + "y": [ + 0.10771430103585063, + 0.08990973028579999, + 0.11695742720535282, + 0.11105833175272199, + 0.12664420128037782, + 0.10335751517981265, + 0.10504220775498894, + 0.12176854301321387, + 0.12481392408876776, + 0.11642136115411145, + 0.10771959370757665, + 0.10725691587415652, + 0.10783493311616198, + 0.08475531432856401, + 0.13949672830895912, + 0.1062098159580759, + 0.1280556015076833, + 0.09891773780327211, + 0.0928792028509366, + 0.09527766510060356, + 0.11999934132294318, + 0.11622746644021381, + 0.1039216553105697, + 0.11672327644994596, + 0.13405987206257833, + 0.10255998672860285, + 0.10729458426368658, + 0.12270490741137571, + 0.11092376419111487, + 0.11212052018312402, + 0.1586870059755137, + 0.12837612620051314, + 0.1109070564618603, + 0.11172349297083364, + 0.11419294262211158, + 0.07693619380923722, + 0.12289779449456167, + 0.11246400964942979, + 0.1163518053409757, + 0.09786533118671592, + 0.0976878793152625, + 0.1198955307784465, + 0.1195350414712064, + 0.09765962967602107, + 0.1271618239959155, + 0.09844410330970288, + 0.10372192877486214, + 0.10839836633435244, + 0.12491379724909688, + 0.10119597438585423, + 0.0892383740988926, + 0.08919992917042122, + 0.11125781485048898, + 0.10302400319122176, + 0.1157686773575767, + 0.14362635385058048, + 0.10662584971818019, + 0.14432573087989378, + 0.17491249707932513, + 0.1095915087897665, + 0.10181869220788059, + 0.10003117734525126, + 0.09267909106143855, + 0.10094111418242184, + 0.08567444116286968, + 0.13805139624428286, + 0.10483398570080711, + 0.09030754512219034, + 0.10904280298519005, + 0.15133940283380504, + 0.10488625716288215, + 0.11049242328921231, + 0.09611868078716311, + 0.1540523975452653, + 0.1152287208977254, + 0.135221493160919, + 0.12789502175598694, + 0.11736368225401986, + 0.09571775908517875, + 0.12139351888573696, + 0.1120501275878941, + 0.08397355983550372, + 0.1197059532124798, + 0.11872773479030095, + 0.09094669048453352, + 0.10650032117107808, + 0.14847735529224146, + 0.12621629509593113, + 0.11072725526182609, + 0.10816476578555145, + 0.11145096804107184, + 0.09322326231522028, + 0.10208024313197224, + 0.10447011078552122, + 0.11407444180142216, + 0.1111898338871953, + 0.09904901684214043, + 0.12889625585512002, + 0.12250465055398209, + 0.11227438943859035, + 0.08882775984885023, + 0.1349722924273407, + 0.13351962025832143, + 0.08320615399352085, + 0.10164312789623633, + 0.11203503076081113, + 0.1157109536090055, + 0.09764567813572039, + 0.11195639027749359, + 0.11571939921050832, + 0.11252075499593744, + 0.09815142004913893, + 0.20570101742227576, + 0.12878678316267725, + 0.14501166106121852, + 0.12870955177387208, + 0.11580957996640007, + 0.11531137360419315, + 0.10531180171761043, + 0.10171800853753292, + 0.10740244384501177, + 0.08727831987381797, + 0.11516692026287534, + 0.11196129369943682, + 0.11257091041797256, + 0.11776925826098403, + 0.11268998406989451, + 0.127675191532098, + 0.131335862912479, + 0.09194597663852203, + 0.130138426003643, + 0.1256309088431144, + 0.10089172549712731, + 0.09177654145774791, + 0.09798381096044916, + 0.1280489879597341, + 0.12371142884032198, + 0.10173075455909772, + 0.10761720721543909, + 0.1107899954569726, + 0.10129085806806674, + 0.11868101133930267, + 0.12365160696189699, + 0.14900242068577374, + 0.10423980691917488, + 0.14883781543660254, + 0.13853633743859825, + 0.10360777755888585, + 0.10230141641096423, + 0.10857589466796996, + 0.13716224158952936, + 0.10356652362193568, + 0.11591953188750875, + 0.10328136669926807, + 0.1037719873547672, + 0.09901556475819794, + 0.12713950668024276, + 0.12788966975733532, + 0.10902290737201488, + 0.10924888750128751, + 0.09277447166664123, + 0.09936967497189103, + 0.12791760405234978, + 0.08921051464691233, + 0.0907888672819167, + 0.10555913957525842, + 0.11687428319630942, + 0.11519053523055718, + 0.1397328945708891, + 0.12768706174060218, + 0.1295614482918309, + 0.10612375190524029, + 0.11785255908715841, + 0.14887068667580933, + 0.11368036434993038, + 0.12559901459960546, + 0.1030336525478611, + 0.10613166238615113, + 0.12499958421638774, + 0.10640767615124459, + 0.10474416222731414, + 0.10963930144526453, + 0.12645054111893445, + 0.12797523481682824, + 0.09497375627247666, + 0.11737739599929516, + 0.11400867818587702, + 0.09942398190160759, + 0.11228959203286795, + 0.11533243841855946, + 0.12274912069334867, + 0.11656004576900497, + 0.13072644988342583, + 0.09332063339298931, + 0.1400184317228359, + 0.0934588157022023, + 0.14429199061867015, + 0.12809387191311042, + 0.12208952499410049, + 0.13070579282064362, + 0.11206248816666253, + 0.10993609259451116, + 0.11697585313934969, + 0.1160936383932534, + 0.11648710015054028, + 0.11127770233532537, + 0.10904411997471784, + 0.10262668869631524, + 0.13836554256977285, + 0.09297685106991325, + 0.10620896799649765, + 0.09102617797616527, + 0.1347967727892822, + 0.13595609770296577, + 0.12255698755725823, + 0.1322133133135231, + 0.11985636026591497, + 0.109135732263824, + 0.09902185468619282, + 0.10817079057560483, + 0.10975015056938617, + 0.12891623043806005, + 0.08684859233366948, + 0.11728241620140142, + 0.08766300705431224, + 0.11328069058381601, + 0.1204922005660577, + 0.11463670158244063, + 0.10737577031775615, + 0.14258798240946788, + 0.09277904014044716, + 0.12156143955966477, + 0.10137382317203977, + 0.11184265266182898, + 0.13211075847107706, + 0.10152746627183512, + 0.12499771931612154, + 0.1426811720660384, + 0.09144475103247841, + 0.09578324298826281, + 0.1205074225154566, + 0.1305219914254538, + 0.07924039706055054, + 0.1113640737361384, + 0.10252762678644317, + 0.07393272244990358, + 0.10171386950161143, + 0.0919451701688354, + 0.10491685590272358, + 0.09462516703553725, + 0.15987543939340065, + 0.0926099094426389, + 0.10935986373502936, + 0.1418493019066413, + 0.1397190150206972, + 0.11824175343691376, + 0.12758948851172125, + 0.1158794393555612, + 0.12913551587250868, + 0.10041862125671086, + 0.0921125574145067, + 0.12614025749211794, + 0.09696745043646979, + 0.10577351092491068, + 0.11476679063608848, + 0.11805327958700047, + 0.1523665913842855, + 0.11537960451863839, + 0.12015852277044747, + 0.10253226402774251, + 0.10340417422738922, + 0.12970379013690403, + 0.14741476586777863, + 0.08320768436883356, + 0.09957555791720045, + 0.10700459947432685, + 0.10350716363854785, + 0.13006799231866176, + 0.10487010389872024, + 0.09985172838837858, + 0.09576891066366022, + 0.10470797599256972, + 0.136243010346231, + 0.07744160887394132, + 0.12304790508718896, + 0.13134619098515446, + 0.10494365138391336, + 0.09154222811715726, + 0.0998998821342874, + 0.06987896672954388, + 0.10311695494812652, + 0.08764738064248415, + 0.10686672267273888, + 0.11463525423318165, + 0.12340250502430061, + 0.1126033395499685, + 0.0992032445482963, + 0.13277214814779004, + 0.11701477419545968, + 0.10946509029200835, + 0.11236160356018872, + 0.11344979052417391, + 0.08217870506010495, + 0.12474860610651897, + 0.1067636609414208, + 0.1006793832510782, + 0.13000257706011603, + 0.10654673358471627, + 0.09576042089275509, + 0.08866156357463678, + 0.12098051191986116, + 0.10908307646506551, + 0.09432353902807411, + 0.09326617152532228, + 0.1076962713793914, + 0.09939183482602378, + 0.09439736064430715, + 0.13024227602403285, + 0.09922746384285218, + 0.09889993101712286, + 0.10409334512957588, + 0.09373040240475132, + 0.13152452724233252, + 0.134702118391588, + 0.1386310281356789, + 0.10786524827209365, + 0.09745147871574754, + 0.11124889814761678, + 0.1166388663001898, + 0.14084581599595433, + 0.149257869483863, + 0.12270950203950724, + 0.09842596370846027, + 0.11199640306618115, + 0.10765640060447504, + 0.08915872386148607, + 0.08983249809619885, + 0.10298454365224212, + 0.09813056769520666, + 0.10950263009091897, + 0.11995056877686708, + 0.111347610228836, + 0.11025119045304112, + 0.11836939185202255, + 0.15537991391858866, + 0.12641501828243717, + 0.11518701647868985, + 0.14151192500667592, + 0.0986921845329426, + 0.11235333797563074, + 0.1169571720025397, + 0.09971325323899075, + 0.11729932168954192, + 0.12437222793696871, + 0.1154339384319266, + 0.13144392906096403, + 0.08369401554736539, + 0.10083554810487902, + 0.13588328792630988, + 0.1174001023025675, + 0.11227347073539938, + 0.13624954348813928, + 0.10969440824544671, + 0.10921322899066739, + 0.10824024255329998, + 0.1287608446202014, + 0.12353090336444722, + 0.13195940164927084, + 0.13594748994763972, + 0.11041213901055436, + 0.11328653150587986, + 0.10798120500255719, + 0.1288884466294989, + 0.1324207030482782, + 0.1076596294746599, + 0.12085817507326424, + 0.10847727487074464, + 0.12676724981137588, + 0.1525156164559577, + 0.1331366207457066, + 0.12528416214668273, + 0.10954909332750101, + 0.10173380634524054, + 0.10952814565129654, + 0.11579060227414889, + 0.11074106389839235, + 0.11432857212116249, + 0.1031724612788839, + 0.10273351286483155, + 0.12273275521629966, + 0.12443239118145336, + 0.12045961887998988, + 0.11727219645898479, + 0.12427962488432369, + 0.1058621749688009, + 0.14131569224721385, + 0.10162712872142204, + 0.123574362617241, + 0.12013407644020715, + 0.10694777640641377, + 0.1454004119304638, + 0.12405561066699868, + 0.10218058646948873, + 0.10603182124723565, + 0.10207566522720847, + 0.09063988236936919, + 0.10926946206657356, + 0.10733313824796384, + 0.08899763138826862, + 0.10962718644021394, + 0.11612322415859735, + 0.11699617603508308, + 0.08970179910761265, + 0.09131488504863608, + 0.10766129307384793, + 0.11450874350497502, + 0.12222137559955383, + 0.11055566606456965, + 0.12166082175066593, + 0.11456034736603375, + 0.11260409159310228, + 0.10955691401191012, + 0.12023173396128783, + 0.13750837650675812, + 0.14346382456656415, + 0.11832543858524085, + 0.10538705781832641, + 0.18184268196842152, + 0.11081950127601756, + 0.0752239115394271, + 0.12923058298488385, + 0.10486821197185114, + 0.10478543135263019, + 0.12416916339015548, + 0.11128094245904684, + 0.11869269872255254, + 0.11199056172212116, + 0.13705460316162843, + 0.11158119374376216, + 0.129022464855887, + 0.10546711525583595, + 0.11437927512587588, + 0.13395361287529053, + 0.11156913510109107, + 0.11271139822294533, + 0.11859480380029741, + 0.10654624593031148, + 0.08901715237122948, + 0.08576377379676864, + 0.08906119288349365, + 0.10889055710345952, + 0.11661231193613047, + 0.11099925781172004, + 0.12021476501607724, + 0.1032705754075785, + 0.11670890416913177, + 0.10058420328154347, + 0.09522043505802445, + 0.07948804174804257, + 0.13079194055000423, + 0.08523688957784123, + 0.10469591714787807, + 0.1021784927348976, + 0.13071395866546054, + 0.11305883177698985, + 0.13965403958642625, + 0.15235339592903757, + 0.1528531465180056, + 0.10636200385221765, + 0.11288552439636426, + 0.13209393977957093, + 0.12532562231235292, + 0.1017711793185907, + 0.11197448036094396, + 0.1377876633972704, + 0.11501548279040877, + 0.11556646086518312, + 0.12384929690572467, + 0.12016790659931659, + 0.13110584368756664, + 0.10076256448461846, + 0.11427016421939364, + 0.10602456008634285, + 0.10808466074433709, + 0.123101010499332, + 0.11297166819249627, + 0.14660036591826572, + 0.13166702219751314, + 0.10774115129831639, + 0.08766500499531168, + 0.1271688849425189, + 0.11033228095818162, + 0.12001535861540628, + 0.15254783300407632, + 0.15726118419011703, + 0.12850374544894058, + 0.12704111844276036, + 0.1451784881122515, + 0.10931152949830715, + 0.09492560582809974, + 0.11061507729669816, + 0.11438223589979335, + 0.10310835188635854, + 0.11040012619186447, + 0.11889063744987022, + 0.12017262607289655, + 0.09887869549342905, + 0.10500721739275089, + 0.09412538524704893, + 0.10743389568347346, + 0.1091080587152491, + 0.10633748660625358, + 0.10822393613006642, + 0.08506791472271115, + 0.12275160057215781, + 0.12660362306816547, + 0.10793275060068581, + 0.10036946814713292, + 0.09065823243529365, + 0.1099235025682142, + 0.13704476310249017, + 0.1053078407992593, + 0.1268643000124632, + 0.11287477032945746, + 0.11462911131959432, + 0.11100279482261222, + 0.12365017340902013, + 0.1135188136177103, + 0.09927362314553413, + 0.07063149082095684, + 0.11063419178391166, + 0.10702215769867837, + 0.10187027087886373, + 0.09702269303750259, + 0.1235720287695932, + 0.11050002041678493, + 0.14492660100552746, + 0.09835772931825579, + 0.12969210113376897, + 0.08042916251289828, + 0.09933018293890056, + 0.13312591406978577, + 0.13391049515273892, + 0.10527615993835464, + 0.12137238295937836, + 0.09513568147483653, + 0.11216283427044753, + 0.10411367894098637, + 0.1412950637229987, + 0.12580651137628318, + 0.1252311049084829, + 0.09773744333735096, + 0.10352734760344057, + 0.128957770455591, + 0.11230999745422122, + 0.1097261666897043, + 0.13006503069888045, + 0.12542584712595153, + 0.0858527251597736, + 0.11566143404702914, + 0.12665635141691065, + 0.07970385996733295, + 0.08335509091574975, + 0.11466154575279826, + 0.13395484790724135, + 0.11677292913751848, + 0.1112525328691467, + 0.09442771630556737, + 0.1404571351411344, + 0.10973625267618786, + 0.11663686030490371, + 0.11150722044046475, + 0.1258894438770745, + 0.10070207287189141, + 0.10408337023784678, + 0.11762183735943563, + 0.10108447660438485, + 0.09933187238942202, + 0.09627481729489115, + 0.09626695697586689, + 0.09388234578476515, + 0.10684812459648901, + 0.0975062813544299, + 0.09225658578732898, + 0.12548318395513558, + 0.0844269822965979, + 0.09823036965564799, + 0.09239042882862707, + 0.0981251534977741, + 0.0886676936446787, + 0.11654497671967573, + 0.09099663913788628, + 0.11277222005611585, + 0.10775528253834488, + 0.10409898759986545, + 0.09015430307786873, + 0.09801813562563205, + 0.11392279305576318, + 0.07571352168475123, + 0.09996237224244511, + 0.11499990092950149, + 0.11132679724227, + 0.11818137300919218, + 0.11696766798257048, + 0.0981827299643267, + 0.11001296839506491, + 0.10182928682908242, + 0.09216632837713307, + 0.10557919970444328, + 0.09698831235983585, + 0.14276141794692232, + 0.12212317695502656, + 0.10900744871412148, + 0.1051513977977385, + 0.12663615973540854, + 0.10350995084678041, + 0.09144637804926874, + 0.13177392922328893, + 0.12658110410730666, + 0.10779276350614533, + 0.09797885492547968, + 0.12630756903545384, + 0.11757537262817565, + 0.11688867179707739, + 0.10979932790529734, + 0.11336188374846409, + 0.1320442333765749, + 0.12416340357541635, + 0.13337241725077414, + 0.10634742630936204, + 0.10939674856751501, + 0.1021514007940311, + 0.10092743360269135, + 0.13256200589285638, + 0.11955108802132025, + 0.13731836681222373, + 0.10005294504644739, + 0.12233663352384917, + 0.09585094794854557, + 0.10383189899457679, + 0.1171546126575045, + 0.09317199059025147, + 0.11722078005756285, + 0.13199824539779703, + 0.15605532292542268, + 0.12966467063223258, + 0.11362950331300864, + 0.11730809803235366, + 0.10781132028478835, + 0.08890492472182013, + 0.13372930401005204, + 0.11423067510864504, + 0.07704271750521621, + 0.1221283208734647, + 0.11981139780680063, + 0.12436904747770255, + 0.09759683262196667, + 0.09535419999786361, + 0.11237363793193599, + 0.08208840076530786, + 0.13344886702512032, + 0.11624174630455422, + 0.1010587377260286, + 0.12105181073000018, + 0.13918372731716908, + 0.10948044246629127, + 0.11857425371318395, + 0.11414499226379614, + 0.09672535474035812, + 0.1008287285842857, + 0.12088143321050873, + 0.11865610827129386, + 0.09158911503886603, + 0.10053826843326065, + 0.11159121065336879, + 0.08700714599190387, + 0.11228704727964318, + 0.13511869744020963, + 0.111152884359621, + 0.10542317516945536, + 0.13300819895670435, + 0.12844827135231196, + 0.08402929476609552, + 0.08614602662318574, + 0.12348262671568529, + 0.08696003277126667, + 0.12614543548177146, + 0.0942274947115354, + 0.10796982469065475, + 0.12613272829435504, + 0.10753620557093113, + 0.14603106539564437, + 0.1430371655724716, + 0.11104172966415161, + 0.11132046736328892, + 0.11144461308155504, + 0.11220562175780716, + 0.0925118318950714, + 0.11528195451352427, + 0.13096842455282914, + 0.1158758698241022, + 0.12913839141930783, + 0.13179726765521127, + 0.09913254980755075, + 0.10447088325647341, + 0.11861655395769925, + 0.13102265669664345, + 0.08675969091855538, + 0.12349648060221907, + 0.11266475559190474, + 0.11187657295982477, + 0.11256295081126352, + 0.096596589182752, + 0.15874579209137676, + 0.08819103401372748, + 0.11820177678058938, + 0.10267782905704811, + 0.18090788653056314, + 0.1531885052620999, + 0.13823605350205195, + 0.18754370722451302, + 0.10170704265098815, + 0.12602511184227516, + 0.09900548641031985, + 0.11456006434501585, + 0.13064942543887045, + 0.11787309966704443, + 0.09104813985444464, + 0.0938590507643756, + 0.11878020227751651, + 0.10612952678273567, + 0.1338921614592092, + 0.1406872586335142, + 0.11726016286023747, + 0.1097044935504469, + 0.08551921449571252, + 0.10511068935880113, + 0.09740850085197852, + 0.10301761124900281, + 0.11678398252321141, + 0.10271787754953933, + 0.11968830573985621, + 0.11836271375014842, + 0.09717922548542814, + 0.12153609964741122, + 0.10166719422247342, + 0.12229524788992559, + 0.1204251614510416, + 0.1095751353714955, + 0.13462092941593481, + 0.12379996626504058, + 0.10485777498031354, + 0.10707230046896792, + 0.11533492393439203, + 0.10286446913511486, + 0.12566229236998272, + 0.1266419436050498, + 0.11990990038313692, + 0.09887998282885394, + 0.09494530076331761, + 0.13650173312222694, + 0.1628585630020621, + 0.09613203685765902, + 0.07619236575480498, + 0.10217116758288157, + 0.1249821011868058, + 0.1013642007569843, + 0.12605129895251974, + 0.11404258681754591, + 0.11472096550004932, + 0.13261385411296558, + 0.10516310974018675, + 0.09145978222295102, + 0.11643909434893504, + 0.08948850854636617, + 0.13836439617539403, + 0.10110831774990195, + 0.13207671603798948, + 0.1242800831682992, + 0.129259794880564, + 0.10923694870987989, + 0.0931006207398667, + 0.12099463503672253, + 0.09449891998449136, + 0.13922979043485664, + 0.09855587099566533, + 0.1025499634054648, + 0.12775205906555617, + 0.13074088735357567, + 0.11284952909928314, + 0.1196054421918368, + 0.1167205067042091, + 0.09075196799914816, + 0.13202695093347253, + 0.11828359758722574, + 0.09564475527811205, + 0.1241310325614398, + 0.12824314909522636, + 0.10108251777559862, + 0.1251553390258921, + 0.09896104231900656, + 0.11758586395539565, + 0.09936259438054046, + 0.0997872645694563, + 0.12007381315559772, + 0.12004272416709179, + 0.10508548481644561, + 0.10882652941514828, + 0.10661327075212357, + 0.10697775196689241, + 0.10525108591791174, + 0.10048013783826426, + 0.11886603961558215, + 0.0887340455489744, + 0.12259577361654461, + 0.09010374345926585, + 0.08493020221668142, + 0.1071576177480745, + 0.10544801360755399, + 0.12058190055010816, + 0.10646357590516019, + 0.11236835076516864, + 0.1020830568955498, + 0.11170206507985375, + 0.08415739561014554, + 0.09632144537706248, + 0.10229093440378989, + 0.13367321534384152, + 0.12597648731350314, + 0.15776694901799698, + 0.10938355257451081, + 0.10894308292008151, + 0.08868856868751851, + 0.08264501410456056, + 0.1030297261211778, + 0.14371941170671185, + 0.11616777708202985, + 0.15536679864502384, + 0.10874372062609525, + 0.11309439124267162, + 0.1452649491553114, + 0.08258506217263928, + 0.11025376225120687, + 0.08318910232768041, + 0.11851938710151334, + 0.1257188867752418, + 0.11376852590983011, + 0.12390364926140342, + 0.14732927726497796, + 0.1248276883585917, + 0.11830923181042875, + 0.1524167747061945, + 0.0930556477069722, + 0.09872506615404839, + 0.08511857248290247, + 0.10960185681086819, + 0.10909660059572267, + 0.09634662603548386, + 0.1273787676433076, + 0.11699729599729805, + 0.0949631212139996, + 0.08217076096703585, + 0.11998271723031781, + 0.1261922014121578, + 0.13952655723719593, + 0.1234106429859545, + 0.10692216935778581, + 0.13049443007578546, + 0.10638644723011301, + 0.09997514878668384, + 0.09410257019475199, + 0.13224288383853372, + 0.11632405273969934, + 0.10233150422419067, + 0.13514912777482332, + 0.09597047335864148, + 0.10351814995257622, + 0.10762123364418733, + 0.09380390567045409, + 0.10236207105798834, + 0.11202602499523676, + 0.11488080059823792, + 0.11170552447882932, + 0.14731157614136323, + 0.10389687771909864, + 0.11605524702314775, + 0.15502836203749037, + 0.13580406064364964, + 0.1085429472255151, + 0.10004621764037101, + 0.1115904554672671, + 0.12489571563339937, + 0.10435101157717562, + 0.11598710548883004, + 0.10321114869245342, + 0.12100806755791273, + 0.10411249651102308, + 0.11504347771738045, + 0.13310544967536714, + 0.12298434538283701, + 0.11287992600004323, + 0.09545351562853571, + 0.11164050033974281, + 0.11770587737059114, + 0.11843321331175463, + 0.09196806227802685, + 0.11044582886382714, + 0.10689265188344751, + 0.08623285624624753, + 0.12213708071760154, + 0.10217911249585714, + 0.1133323207388037, + 0.106780788470121, + 0.11198755625714736, + 0.08779864595697541, + 0.12791246080405644, + 0.11039687601602972, + 0.12419274720444007, + 0.08708130333962112, + 0.12819256048974575, + 0.10628842763628663, + 0.13802018855460782, + 0.11526242362311968, + 0.14255026882412114, + 0.12480052378335037, + 0.10827620797491148, + 0.12812846174790157, + 0.1020851019432721, + 0.11583140239727978, + 0.1070571076068475, + 0.154878692464917, + 0.12436464005401261, + 0.11291071507422427, + 0.09684415625138677, + 0.1061398555320227, + 0.11098829381404106, + 0.13689340449197174, + 0.10493112086161331, + 0.1144256231174106, + 0.1347460004243068, + 0.11752109173953708, + 0.09711540409139637, + 0.13321483022632674, + 0.1070424793645134, + 0.11679811021625285, + 0.10007824798765286, + 0.13237982394913703, + 0.13461897049277918, + 0.11344732733777282, + 0.09384913719153247, + 0.07331861448009572, + 0.11229407318928317, + 0.13328896314258054, + 0.13075111284312885, + 0.13172978173826927, + 0.10351434050666336, + 0.08791603205909887, + 0.10477054628360066, + 0.14876179522979885, + 0.109235000074231, + 0.12236921251362759, + 0.11173945329323634, + 0.10319337774593977, + 0.1217077997208145, + 0.09871482095349038, + 0.08893911506551702, + 0.0991152776168469, + 0.11849890448043927, + 0.10625068727229538, + 0.10875512454324743, + 0.13759004329741573, + 0.1240477468492056, + 0.08713650665523058, + 0.14070924072290827, + 0.10585778786557669, + 0.12402633099562754, + 0.12642452371039078, + 0.11704224597957331, + 0.12338812952601433, + 0.09946940576236343, + 0.10639514989064262, + 0.10290426069323558, + 0.11606322789161734, + 0.11314059631917793, + 0.1214628169166096, + 0.11919477399856429, + 0.1021984630283632, + 0.11599199029451555, + 0.08874337721540027, + 0.10338222801187419, + 0.10700392239558713, + 0.11912444613394828, + 0.10680917701658253, + 0.10119388456808757, + 0.11517881381639049, + 0.09648115908085401, + 0.100788530879617, + 0.11904454209885694, + 0.11631151274151659, + 0.1310956296950034 + ] + }, + { + "legendgroup": "Beam sensor 2", + "marker": { + "color": "rgb(248, 156, 116)" + }, + "name": "Beam sensor 2", + "type": "box", + "y": [ + 0.11313492952085046, + 0.11763287200147528, + 0.11353139253646201, + 0.08038215292012159, + 0.10001272102144257, + 0.09441508932786528, + 0.0774220267581756, + 0.11460683355311105, + 0.08799568630790144, + 0.07587828381054813, + 0.08529581667003563, + 0.11869668631862515, + 0.0800745517513744, + 0.08055188211420548, + 0.09619397450279307, + 0.09553568492553156, + 0.1054332553937093, + 0.09401937430408834, + 0.10135239667254309, + 0.09296269209832243, + 0.10945109852777234, + 0.08415760062862823, + 0.08996570782474046, + 0.12173797827747858, + 0.11383112902976161, + 0.11322840742922229, + 0.09575698512791599, + 0.09147280625839822, + 0.07795612681065198, + 0.10184924313801204, + 0.08741308347314347, + 0.09755469566159862, + 0.08514441570881666, + 0.09419395639371744, + 0.0826333410228614, + 0.09308500411575255, + 0.09744077864272793, + 0.09728624693158866, + 0.10668197146971842, + 0.076865678797211, + 0.06881408071588067, + 0.09260571006911528, + 0.08909876311892985, + 0.12380474450794575, + 0.09457988083083368, + 0.10966725311627494, + 0.0979249406336613, + 0.09201356844159862, + 0.09322261897743418, + 0.08026643532788427, + 0.08679084106917509, + 0.0699260107146297, + 0.09358327108642289, + 0.08838239785224755, + 0.09041579473379127, + 0.15474056954119922, + 0.10022466172566048, + 0.09960524024150628, + 0.10303164133548373, + 0.10876131659321016, + 0.10352738663028754, + 0.08845432490099825, + 0.08362514383818419, + 0.08448149723423101, + 0.09074335672056932, + 0.07754222345705923, + 0.1210035808136213, + 0.09476280531989795, + 0.10126303971759607, + 0.06847757100164711, + 0.09423942452175194, + 0.10071684369535848, + 0.10515106457165763, + 0.08931949517234007, + 0.09681234599719421, + 0.0975769244752376, + 0.07953622417018927, + 0.08918257341970359, + 0.08103965280177022, + 0.08764661601498006, + 0.09311765400202501, + 0.09277728872505264, + 0.07202908807955391, + 0.08959648345008785, + 0.09609123642926723, + 0.11787872800382096, + 0.09999796558481708, + 0.09678235254155138, + 0.08552295486999605, + 0.09558476139771192, + 0.09227771106076262, + 0.12014243029631844, + 0.12053415583854432, + 0.08299908248417778, + 0.12617381298616465, + 0.08713580384704817, + 0.10768920707150513, + 0.08362824415822129, + 0.07868887126203787, + 0.08096619569657991, + 0.08440899066001491, + 0.10369569341611913, + 0.08764353086900202, + 0.07127750946657063, + 0.08146150538583656, + 0.08124724984884392, + 0.10359707918775818, + 0.0890901777830174, + 0.06895712367907737, + 0.11037379858148706, + 0.08706128450744878, + 0.08692185788933234, + 0.07778359394421727, + 0.09030568028994063, + 0.10492806749852397, + 0.0882981880469197, + 0.09599759928309759, + 0.08623690279334476, + 0.10003786000900897, + 0.09586603519698869, + 0.08413771926644371, + 0.09777846774536036, + 0.06830303610452702, + 0.08447570434326217, + 0.08463886007471012, + 0.09817954559897715, + 0.08348062862177782, + 0.0878371538682367, + 0.13013071799666212, + 0.09816420626861994, + 0.08148179002867639, + 0.08438117036610782, + 0.10361999153295187, + 0.07522875780806901, + 0.07798275152868155, + 0.09521878847881997, + 0.09870464432710764, + 0.08263125319861828, + 0.0966039659179742, + 0.08630464979892558, + 0.10711295715429643, + 0.08181583919329465, + 0.08019064946309959, + 0.07283386496173545, + 0.0900739299856676, + 0.08692779789412773, + 0.09303131212742927, + 0.10310464880678938, + 0.0990985186379144, + 0.07715594717174426, + 0.10112419504784853, + 0.111481807046568, + 0.09073528916703183, + 0.09083872926714227, + 0.10621153216948223, + 0.07410760085335212, + 0.07454364626184845, + 0.09457113965981244, + 0.09911922638534282, + 0.09463214999251841, + 0.08281471124077354, + 0.1097029530341799, + 0.09839370503288754, + 0.11994987351614958, + 0.08318306255109453, + 0.10031399008577858, + 0.10819462100515397, + 0.09682258669842025, + 0.09498126775447137, + 0.1147239938556925, + 0.10743924207590907, + 0.08755161104153579, + 0.11665274977602486, + 0.10246563785545584, + 0.10378084870586606, + 0.0827780458893676, + 0.0755974167108254, + 0.11823149471376744, + 0.08655922043238895, + 0.08939389399909635, + 0.1179598657784296, + 0.09848782490786276, + 0.08704590450635925, + 0.10409348006614673, + 0.09900382119667422, + 0.12348290051703521, + 0.13063192746401758, + 0.13954271789438355, + 0.11365999653023129, + 0.11050640845498988, + 0.09621145943961146, + 0.09943689412160166, + 0.10933899633633336, + 0.10979920575328579, + 0.08526545150674435, + 0.11057774186260866, + 0.09516317564673647, + 0.10946336810882717, + 0.07632976477318744, + 0.0947535727302625, + 0.07624429376846495, + 0.06783094416124494, + 0.08249160356605775, + 0.0844694919725723, + 0.07336869855874727, + 0.09418980575120804, + 0.09312857218591936, + 0.07446128003693848, + 0.06734569249911598, + 0.07760228989074623, + 0.08583730126474814, + 0.10086927985553976, + 0.08932942618006036, + 0.06871571152021355, + 0.09360942481177476, + 0.07529910838138636, + 0.07717332151057275, + 0.10271295072298257, + 0.09140401577784622, + 0.08536722349866599, + 0.10750813868903453, + 0.10255906608016403, + 0.10632259979687705, + 0.08830752507144699, + 0.09381608780180178, + 0.07782546591234012, + 0.10985654166510299, + 0.07892329420903987, + 0.07848386707539107, + 0.12844483506053603, + 0.09731661971730667, + 0.084607024347371, + 0.09106868535319551, + 0.07537687565628003, + 0.09314711131159475, + 0.09035329690733705, + 0.13216855681729045, + 0.08425903381826447, + 0.07066936411352603, + 0.1095738931665996, + 0.07297309246505411, + 0.0918145278362487, + 0.08930713962811122, + 0.0899260632432089, + 0.09113566716251145, + 0.08717029781301008, + 0.08109800896920664, + 0.08749268465252584, + 0.12762099585380818, + 0.09256338847127678, + 0.0933946389744907, + 0.09723847088129052, + 0.09350482374078364, + 0.09555138034686828, + 0.11353128359389743, + 0.10216009493515464, + 0.11701087434690106, + 0.09342052991660765, + 0.07993906790483914, + 0.10384188785505678, + 0.0977334271561995, + 0.09024871630063877, + 0.09225199281430736, + 0.07870514096689854, + 0.10235525643473105, + 0.09520128012287321, + 0.11981252994070464, + 0.09850045855353685, + 0.08901494082139175, + 0.10174375584400486, + 0.08520002174458378, + 0.08121662121835424, + 0.12111849297335643, + 0.11758444434602516, + 0.10135790577634737, + 0.12679709692831273, + 0.08426986597202206, + 0.10294546808597885, + 0.10332799782369295, + 0.08840773498110414, + 0.10445380925981902, + 0.09202808355363723, + 0.08186052276049306, + 0.0867714928490498, + 0.08560907784928211, + 0.08663443228900483, + 0.08961414222000105, + 0.08184335773682015, + 0.10386054767794145, + 0.14800633786999226, + 0.100349745381839, + 0.07489230257067259, + 0.07618689744499595, + 0.08889415610741674, + 0.08345775664101385, + 0.10627469431169159, + 0.08868756539803958, + 0.07188428550809339, + 0.09398862032551025, + 0.10213786467635752, + 0.09970440066709263, + 0.075913251596586, + 0.07534020638808195, + 0.11700504364593983, + 0.08473866646000369, + 0.09125339296850055, + 0.11467989221444208, + 0.08034607702736388, + 0.10062520516389084, + 0.11288859252088611, + 0.07540737367479845, + 0.09574371087039413, + 0.1030119109561306, + 0.09841498382665345, + 0.09607484353924309, + 0.07409644364671866, + 0.10452663761178331, + 0.10666764803593681, + 0.11483957223684078, + 0.08961756138162746, + 0.08570919739535827, + 0.08819191392712265, + 0.11152339788298846, + 0.08873438544039111, + 0.09356875137749811, + 0.11015690470737848, + 0.1129869052038898, + 0.11560484893884797, + 0.09904297800109318, + 0.07509273052499281, + 0.1019754854632922, + 0.09702528380591054, + 0.12244397994993753, + 0.14114849610309924, + 0.08272374610965415, + 0.1204577055295511, + 0.08579560995554086, + 0.10491928662757433, + 0.09632924900949788, + 0.11242779036685946, + 0.10125594516648552, + 0.09098498458481778, + 0.09636952523702867, + 0.11050025077058999, + 0.08290425063807506, + 0.09337066882572749, + 0.11071535355385716, + 0.09702550856235004, + 0.08010643667556913, + 0.10000483850183749, + 0.10505998878537776, + 0.07847722856453808, + 0.12208117870123111, + 0.11091237742753779, + 0.08863769865943738, + 0.08509612373743475, + 0.08023602410835275, + 0.11259166132561187, + 0.10326542162195361, + 0.1048911788804514, + 0.0879381822807276, + 0.10217731651075262, + 0.13802922679055699, + 0.1064564296583161, + 0.0891218500160671, + 0.10123271754896603, + 0.08702780056163165, + 0.08941590562122814, + 0.09369997188773034, + 0.09380297390877831, + 0.10108426153294582, + 0.0816430804654138, + 0.08442651512823535, + 0.10627504126041595, + 0.07349802578832396, + 0.12746336108145423, + 0.07511466956182314, + 0.09745046098364687, + 0.08199405459246167, + 0.08008569649202962, + 0.09214165191345354, + 0.08587039923235748, + 0.08384571612457312, + 0.09498037273726663, + 0.1161463282650976, + 0.09510524943722824, + 0.12325939526095787, + 0.09917804699017696, + 0.07876856185428256, + 0.10491230290432267, + 0.09173704865487238, + 0.08363906420195347, + 0.10743218149297609, + 0.09455105778828099, + 0.09556665115201264, + 0.09112918223941305, + 0.08967282807253722, + 0.09189161150519172, + 0.11036117354007895, + 0.08913733825707693, + 0.09474164606837848, + 0.0766172519666671, + 0.08355890445445094, + 0.07817601825089504, + 0.08069951246338912, + 0.06948710578921832, + 0.07954598650244914, + 0.09046833010051636, + 0.09418413622750564, + 0.1357989475306721, + 0.0845411997505631, + 0.13712691671571456, + 0.077967481823479, + 0.08401105537481246, + 0.1162287035881292, + 0.08760705470968509, + 0.101337191053409, + 0.06809620195733196, + 0.11946278058530138, + 0.10875238463687943, + 0.09314004394322835, + 0.09657351449359344, + 0.09879812008257674, + 0.09069880352707756, + 0.08861502484988298, + 0.11138421662236643, + 0.09706118412461397, + 0.1248222366733231, + 0.12232621117691965, + 0.08554020145950988, + 0.07996361700142238, + 0.1004594275736309, + 0.1086127671948134, + 0.10392402573787728, + 0.11363210591849952, + 0.08670081953812749, + 0.07655899263466337, + 0.07588990548701705, + 0.09915725159899276, + 0.10241702276797023, + 0.08392217872137604, + 0.09642714306351288, + 0.11354525865556371, + 0.1428699691235424, + 0.08913563565032243, + 0.08920147745750906, + 0.09839367160611429, + 0.11495006914374846, + 0.0905185100343622, + 0.10228352888546426, + 0.07565305613881095, + 0.10364092271643723, + 0.10447750483670068, + 0.09617827548789941, + 0.09346454790069132, + 0.0807137364699321, + 0.1316181711858851, + 0.09983866067197136, + 0.10131072552611414, + 0.11006296443858439, + 0.10351338721570036, + 0.07504292512255953, + 0.081033440143574, + 0.09112372804956662, + 0.100097909342732, + 0.09426156663234676, + 0.089715912844174, + 0.12618334232310174, + 0.11434313501233186, + 0.12847301256163196, + 0.11347165030450093, + 0.10298758142237774, + 0.09367589171383316, + 0.09351230452669751, + 0.10867867569751154, + 0.09216799466157445, + 0.0722106634709455, + 0.09910970377341154, + 0.08910663370559116, + 0.08539902373048842, + 0.10879680246756517, + 0.09890681838268066, + 0.10652772097282151, + 0.0922688310165412, + 0.09996482701162461, + 0.0748345265055876, + 0.12076545183064, + 0.08777578489816776, + 0.09533813226142158, + 0.08438797090886795, + 0.10697278551614586, + 0.0996028400140008, + 0.0976072751878204, + 0.09362329269096155, + 0.08303433373458015, + 0.0942677008452181, + 0.10311574484955575, + 0.0932662671520798, + 0.08264038202330114, + 0.08596442991801292, + 0.08540395022831129, + 0.093426971627438, + 0.09901715464174939, + 0.11424313003500455, + 0.11210869207965365, + 0.10701200472160467, + 0.09443347553051909, + 0.07916876868365562, + 0.08992549421158125, + 0.0883559189646452, + 0.0730825600508379, + 0.08952159348143388, + 0.09930585731757502, + 0.09333845173133913, + 0.09340426324179436, + 0.10258428390652216, + 0.09162119560633243, + 0.10696943664525098, + 0.08030953736878127, + 0.08147850251829593, + 0.09732224874966092, + 0.09906566867598375, + 0.11361584998113633, + 0.10554587925608234, + 0.10280611751191453, + 0.07769079329915929, + 0.0853940191459267, + 0.08871546107240698, + 0.08927009206678704, + 0.0777547205707745, + 0.0855372696118034, + 0.10968079998385158, + 0.08303310909557915, + 0.0920553992298292, + 0.09105317429159575, + 0.08576182403933975, + 0.08920273464354579, + 0.11399680472443806, + 0.08839315669369018, + 0.10752959737839067, + 0.10271890938827721, + 0.09251956116359693, + 0.08141488971519516, + 0.1116989051717665, + 0.08761028601177102, + 0.10239367484992304, + 0.0863716243163143, + 0.0860722445550319, + 0.09414361276595618, + 0.08404732669755993, + 0.06925067706126595, + 0.0975812394721035, + 0.10533833599631638, + 0.09882188342491385, + 0.08803166773080644, + 0.1356876877477311, + 0.07398039837194431, + 0.08864365937300198, + 0.1135060705796887, + 0.09344485134956441, + 0.13568197269088647, + 0.08868493200882854, + 0.10493266829291695, + 0.12130362453140034, + 0.09669775363590358, + 0.10689047207733941, + 0.10737452029317411, + 0.08813932989814709, + 0.10576313023151425, + 0.08435352259944484, + 0.08022700507026087, + 0.08811591225558162, + 0.08343314077076013, + 0.09164181112582437, + 0.08953710123067483, + 0.10766485995416127, + 0.07947590393220968, + 0.08105920266050173, + 0.10866088663430652, + 0.08224288220066091, + 0.09400163315448093, + 0.08050303075051152, + 0.07078945558959687, + 0.08676356383696585, + 0.1118197595045804, + 0.11627228855709307, + 0.10469517278004065, + 0.10621169932433483, + 0.09104289949138848, + 0.0823185660091954, + 0.08447447367137796, + 0.09976293461316822, + 0.07673574695460866, + 0.09036648026955563, + 0.08712040538304999, + 0.09988044836190794, + 0.08615985661885199, + 0.09032464118421522, + 0.12766543897615856, + 0.07595141793608824, + 0.10626686769929589, + 0.09167468673358725, + 0.07582454221336953, + 0.09729988417327538, + 0.09384645991689587, + 0.10352170315140799, + 0.10279098080099569, + 0.07976323239015982, + 0.08926094285465096, + 0.10770678430277073, + 0.09505785438529188, + 0.08353712209889849, + 0.10296063074310714, + 0.10611806721693252, + 0.09499796687946692, + 0.13475127716795626, + 0.09815578631769734, + 0.08228358114410984, + 0.10418838801778064, + 0.1246450443181331, + 0.07923679412050855, + 0.09737682978314549, + 0.08923455495561344, + 0.07675937112570373, + 0.08734734827496543, + 0.09120593625197312, + 0.10763663737446218, + 0.11505756847988843, + 0.1016500881602618, + 0.08957697551501197, + 0.09148900871360578, + 0.08654549501932396, + 0.07526132230143871, + 0.10371210764302156, + 0.10408368507206492, + 0.08004743502936948, + 0.0967311764735147, + 0.09174235677909397, + 0.0794955384422656, + 0.1188065342545166, + 0.09519951138754681, + 0.09381314763774758, + 0.09686321650520678, + 0.08975368421943015, + 0.1070346431562038, + 0.12631842634484797, + 0.07113415162263159, + 0.13437248213223335, + 0.09608169019199501, + 0.09200801462709707, + 0.1034045344805861, + 0.0803474459557351, + 0.10398048241678715, + 0.07761821339254814, + 0.07961247547052859, + 0.0718436558993242, + 0.1011353121169446, + 0.09150496238046539, + 0.10029002868810653, + 0.06677310962068264, + 0.07859582094823073, + 0.11298589856893786, + 0.08598746711235648, + 0.0853633969018837, + 0.09542589082995849, + 0.0873857562737276, + 0.07929156028641952, + 0.08938721891786294, + 0.08802151331997479, + 0.1097236044523611, + 0.113056512444095, + 0.11199425675740117, + 0.09136758854112578, + 0.08590197282871656, + 0.09301371296995058, + 0.12221168376971016, + 0.09384539341196002, + 0.09861810306890888, + 0.10998409958676027, + 0.09013428380861636, + 0.11108387339301899, + 0.09356896338351091, + 0.12184083693029397, + 0.11920990481739505, + 0.0799933323995011, + 0.09125905822529867, + 0.10078359958174703, + 0.11176615080787189, + 0.07674821063682155, + 0.08684192678936702, + 0.07459517319517327, + 0.08851128365726436, + 0.07785298098495447, + 0.0770998785626849, + 0.07482211565430004, + 0.09855476352696349, + 0.07953305488632498, + 0.07293747123544561, + 0.08308532157715313, + 0.09817568952787768, + 0.11174372810954457, + 0.0739119888663454, + 0.07720816356115895, + 0.09773707556263848, + 0.08619517924729608, + 0.09119895642326221, + 0.09371375911200404, + 0.0876050964106606, + 0.08116479615963618, + 0.09007177417657675, + 0.08811189273422074, + 0.07597247657975284, + 0.13108452629688794, + 0.10864782619743986, + 0.09873985024034848, + 0.12465503626002451, + 0.10054891157909983, + 0.11409765882475881, + 0.09007710637984602, + 0.09891606223580147, + 0.0973789511235792, + 0.09262829870433778, + 0.09477112031937576, + 0.08223985575748897, + 0.1183783661330145, + 0.09570049816765194, + 0.09530303962592916, + 0.1015794507148158, + 0.07802368695128131, + 0.11773158021323601, + 0.11460775919591888, + 0.10506852994117416, + 0.10821849079872564, + 0.11258881970138535, + 0.08842413700792777, + 0.08840785878693597, + 0.10127985483930135, + 0.08997953340548319, + 0.08524982653448505, + 0.08640583043651681, + 0.08975745345095855, + 0.09390499705972005, + 0.09190497144746756, + 0.07062644949381114, + 0.06775411657598307, + 0.08770176599024838, + 0.08441986982633604, + 0.10762662857686363, + 0.07831733275463149, + 0.10155291762829338, + 0.10140691155109498, + 0.11245179269693714, + 0.09050697759252312, + 0.11144335189703646, + 0.0795327935695177, + 0.10434629565666553, + 0.10754337259915968, + 0.09308418125580858, + 0.11494528573387787, + 0.1173024410194487, + 0.0969607837677206, + 0.08933199530720855, + 0.09886468095026178, + 0.1102258051122236, + 0.09813722710255925, + 0.08531305813196866, + 0.08078773374528692, + 0.09928123048559394, + 0.11690923779396475, + 0.10511215981821433, + 0.08629168740508936, + 0.06718476251281194, + 0.06805794244979113, + 0.09049863078673094, + 0.09557834021146543, + 0.0994160140332266, + 0.10200456775221124, + 0.08107577615201567, + 0.09016402485380448, + 0.0940712318257249, + 0.0823324529725704, + 0.13860784003756343, + 0.07802006921180268, + 0.09082553176688163, + 0.0832461408967769, + 0.0796526264727093, + 0.09270570462898378, + 0.09178719353250225, + 0.10135492363790656, + 0.08274090878087777, + 0.11640039443305303, + 0.13384046153532014, + 0.08136528892283379, + 0.1085930473177809, + 0.11694506892781895, + 0.14495338586534565, + 0.07054600608208937, + 0.0803436142904836, + 0.09174054286628956, + 0.08778426207686517, + 0.08221194763439178, + 0.09325623527560975, + 0.0884848459443211, + 0.09946394096671422, + 0.08896404938118924, + 0.11897220444331465, + 0.08609038183625498, + 0.0687988834714255, + 0.08381681285347939, + 0.08292337459939195, + 0.09545033283931467, + 0.10582530418354127, + 0.10386582431380541, + 0.08886922436442475, + 0.10857212582039226, + 0.09869599497447622, + 0.08290537082314768, + 0.10433206163281274, + 0.08191055042093279, + 0.10182498431565433, + 0.09353451094997602, + 0.10516753942332825, + 0.06855081051330512, + 0.1272821988694099, + 0.10837676379982342, + 0.08411132058082518, + 0.0867243411514824, + 0.10123779992263368, + 0.0888479029362535, + 0.094425364272302, + 0.09471323271702496, + 0.09569730303034416, + 0.11683203856178474, + 0.09466439891373671, + 0.0977427217950273, + 0.11159359893821488, + 0.09145069235091813, + 0.09986265153725643, + 0.10907684514060144, + 0.08257428333207906, + 0.08062967109942944, + 0.07400438987186798, + 0.0745246389491492, + 0.09002442214515226, + 0.10146301481983735, + 0.10519157320317217, + 0.09035828331470237, + 0.1319452421768658, + 0.0863152830498207, + 0.0820836343478534, + 0.1190809198799753, + 0.08815462305769418, + 0.1060881198331129, + 0.09421525140996144, + 0.06739961682922818, + 0.10135566670962103, + 0.06870616653052139, + 0.08294951417717021, + 0.1183043848511017, + 0.10972204596822206, + 0.11687043707666185, + 0.08737193843425897, + 0.0874914505888494, + 0.11965938184879495, + 0.10911716209003905, + 0.11440653556648547, + 0.08643464004459388, + 0.07369082492711242, + 0.08650682213701079, + 0.08217449447283333, + 0.11679875417858936, + 0.10953424083801326, + 0.08363473995613593, + 0.09651634706575657, + 0.10045788009877354, + 0.08914751442504268, + 0.11420311581318675, + 0.09098059184655913, + 0.0845312860186022, + 0.07357952863050819, + 0.09977051726182753, + 0.10396203992615138, + 0.10304851322687796, + 0.10247490873167928, + 0.10880634584681886, + 0.10610480707947127, + 0.09235443142402215, + 0.08283063164295988, + 0.10370587535521181, + 0.08997457081542437, + 0.10313059646973004, + 0.08405334977063474, + 0.12266002405050568, + 0.07835496424246843, + 0.08111116503915013, + 0.09106275833314849, + 0.098170654052819, + 0.10142612478146959, + 0.11872596147652408, + 0.0920405771533404, + 0.09381404425609052, + 0.09008381916007174, + 0.1026417072900822, + 0.08640782570494089, + 0.08302648802389594, + 0.10617418232427885, + 0.09683960513627304, + 0.10388031183346329, + 0.09312281339005725, + 0.08586524182901605, + 0.10268423315649494, + 0.07916788273072961, + 0.10596946097149043, + 0.10249300617253983, + 0.09213989810214392, + 0.08412045866290276, + 0.11300592461230945, + 0.10193866375709272, + 0.07574496563363058, + 0.08040548737162194, + 0.09498802867169344, + 0.09050893170373217, + 0.09914341315879378, + 0.08833647859531231, + 0.12049176831449834, + 0.07333703803308927, + 0.142073977526147, + 0.08592641966436533, + 0.07492971480129423, + 0.07043625087661592, + 0.09087940401550838, + 0.11195583304389997, + 0.1041059847755295, + 0.10111187598970756, + 0.08539326925038536, + 0.07654634045073157, + 0.0858408060243488, + 0.08346266192702008, + 0.0781278191717651, + 0.12117742770433866, + 0.12589701980358342, + 0.08470806672268695, + 0.10770898119917476, + 0.07853284542241962, + 0.09003155038387484, + 0.10542338970927793, + 0.07918049103853664, + 0.09681408885425483, + 0.08054881255920514, + 0.09721789874855802, + 0.08858405297987279, + 0.09194560346201655, + 0.1027480718928353, + 0.0779266565377115, + 0.0725031880099607, + 0.08602388925502757, + 0.1354292002887289, + 0.0960718181760608, + 0.10392253529675126, + 0.10127033843360096, + 0.11567675457695735, + 0.0786475223811559, + 0.10048590086016412, + 0.11832081161531435, + 0.09546274559764568, + 0.07983127564640694, + 0.10996151938271397, + 0.10682834138308493, + 0.12564121413647333, + 0.10977648595546448, + 0.11616424464000538, + 0.07863029810053541, + 0.12448713246800183, + 0.09391997018554976, + 0.08021362219063795, + 0.08364530316266669, + 0.1239621253100239, + 0.08069414683570802, + 0.09624774437593552, + 0.09676283166141328, + 0.10518616402138595, + 0.12000690904777717, + 0.09166491651906071, + 0.10471628178559915, + 0.10546958913791613, + 0.07866562455453796, + 0.0945954378492341, + 0.15711253009392367, + 0.08384357045683619, + 0.09688943122887714, + 0.11617904303217592, + 0.09942518010430633, + 0.11827591429424213, + 0.07391775897666676, + 0.08838660884334615, + 0.10581186141954532, + 0.09715388033619728, + 0.07659443496801809, + 0.08065171104973315, + 0.07626448075533362 + ] + }, + { + "legendgroup": "Beam sensor 3", + "marker": { + "color": "rgb(220, 176, 242)" + }, + "name": "Beam sensor 3", + "type": "box", + "y": [ + 0.07751748312519968, + 0.07712150388539996, + 0.07364128316850381, + 0.07827984398985742, + 0.07729688358174301, + 0.08266691709427205, + 0.07623450680819624, + 0.10845649434026836, + 0.07468273645466726, + 0.06532061622896575, + 0.06510786797581845, + 0.07884628805932255, + 0.07661645381995802, + 0.0687205138453863, + 0.08333638787248901, + 0.09334640861077766, + 0.07471434840108993, + 0.06478209375204685, + 0.09797489039019369, + 0.09290401126575636, + 0.07033934018634086, + 0.08495252393798193, + 0.07718031857765165, + 0.06042871823700698, + 0.0845433523908893, + 0.08277940913292851, + 0.06960840999210666, + 0.07475483092812493, + 0.07005328500828165, + 0.09844005747265676, + 0.06606311466014923, + 0.10364196300903986, + 0.06151242418481321, + 0.0655348910071044, + 0.08256844105472023, + 0.080866955549301, + 0.07635956614440455, + 0.07001824827889737, + 0.0725483285587736, + 0.09193472338605313, + 0.08466480305219959, + 0.06948299866997815, + 0.07584394870609455, + 0.07510116413217256, + 0.07657631757032336, + 0.09147961256825997, + 0.07245394018770161, + 0.07395750504502133, + 0.0633127165228168, + 0.051735799585339845, + 0.0654764345944264, + 0.08912471868520659, + 0.08193690531394685, + 0.06545209962871107, + 0.07389003144543113, + 0.07842649086101945, + 0.05735599419132806, + 0.07250037813451511, + 0.06250940031469956, + 0.06697879261473785, + 0.0687230484762069, + 0.07613743510574705, + 0.06848059525446801, + 0.07779307626825135, + 0.06000848153326667, + 0.0585928466881431, + 0.07091329603915149, + 0.0783589544733735, + 0.08390735430111358, + 0.08940745603990052, + 0.061344878083299796, + 0.06357982936164723, + 0.07185875161250053, + 0.0832253500264142, + 0.07502412169642925, + 0.05817980124412841, + 0.08378203151929917, + 0.06826323437417443, + 0.0653007713230765, + 0.07237401648815796, + 0.06324239848605978, + 0.07235843592088428, + 0.08047461948473178, + 0.07656867519791317, + 0.09143046737199105, + 0.0786348600780941, + 0.07672985251538869, + 0.06835369947994822, + 0.06482358885666208, + 0.06863673844337825, + 0.11492981478358134, + 0.07596350801810774, + 0.07366599950149992, + 0.08396433838087299, + 0.0814260238293856, + 0.0664767601915552, + 0.053989458914480454, + 0.06541788884649839, + 0.08092476515285875, + 0.08575568139757357, + 0.06648211719190954, + 0.08399000202712044, + 0.09066332409380988, + 0.07609928666664324, + 0.07597723961905767, + 0.06125380639488999, + 0.06899908004527451, + 0.07080469036015785, + 0.08700546898477374, + 0.07339627315186652, + 0.06278862690679113, + 0.06863620833640241, + 0.06076712431253277, + 0.07976652294600416, + 0.06822295274410685, + 0.09259993022244194, + 0.06801015279188838, + 0.06826098258325179, + 0.06937033049428332, + 0.0636059622371129, + 0.05905465183888291, + 0.08051784091824957, + 0.07237717533256632, + 0.07207486735843724, + 0.085158182977065, + 0.06321511695671791, + 0.07434014517094309, + 0.0806169792705208, + 0.07208821111074365, + 0.07328920226251853, + 0.0811572818326265, + 0.058837877514241035, + 0.07537139465833118, + 0.0562788294196848, + 0.07735629816906768, + 0.06630612039898265, + 0.06976768313435042, + 0.09334663017530628, + 0.07547139069570129, + 0.09963571770178432, + 0.07062945469175767, + 0.1116728368899619, + 0.06539348794174181, + 0.07266709195096753, + 0.07667563087814479, + 0.05828691656320054, + 0.08107129690055952, + 0.07569570806453277, + 0.06926910321274032, + 0.06984422075311103, + 0.09943003159053491, + 0.0657278558914745, + 0.07151824773542943, + 0.0936185552345285, + 0.0736650808016547, + 0.08972897646885097, + 0.0855259963369905, + 0.06901313063583996, + 0.0795736751587697, + 0.07482763799699182, + 0.0607758316359524, + 0.068900244047033, + 0.11092988276912369, + 0.07983069342283372, + 0.0757725633898123, + 0.07553321662696809, + 0.06516096739789703, + 0.08620511735828326, + 0.06763132869884535, + 0.0662990831566689, + 0.07962305675461315, + 0.06914948938376005, + 0.05674383492931674, + 0.09451921697436848, + 0.06973452492819807, + 0.05892249214707327, + 0.06198104130776673, + 0.06339344055423134, + 0.05392251806492533, + 0.06713119117606643, + 0.05588907824309581, + 0.06854203222077453, + 0.07825363229970901, + 0.07894496845181403, + 0.0715676516790495, + 0.06330404748716909, + 0.07600714590100005, + 0.0887466677321905, + 0.07325182843674652, + 0.08846465972900769, + 0.06552635163589121, + 0.060842154298693295, + 0.06509446466667021, + 0.069046517992402, + 0.08978472035669713, + 0.08211664355012319, + 0.0878958458852633, + 0.06361675962843817, + 0.0621228124811801, + 0.0836628290514428, + 0.07116205471180748, + 0.07221664706613774, + 0.05507260299623585, + 0.06830037250839928, + 0.08634270543928074, + 0.07525013072933091, + 0.08079990223492128, + 0.08258180587071495, + 0.08553120117732496, + 0.0793392181356681, + 0.07477790718399871, + 0.060797950023518725, + 0.07340577930934301, + 0.05856499727173589, + 0.06831541650075323, + 0.10866515486627087, + 0.06785288670501562, + 0.09078914411429084, + 0.09313986686597202, + 0.0689666126671105, + 0.07190040303018408, + 0.06977919592662077, + 0.06506988704145562, + 0.07494235177043858, + 0.07710282232624208, + 0.06437014686254763, + 0.07087234535093348, + 0.07495849845364802, + 0.06489478896179708, + 0.0785092867363462, + 0.06789561480158911, + 0.06632008526721953, + 0.07195720376741284, + 0.0795359797663766, + 0.10884423657425286, + 0.07920267035286421, + 0.06818788617979175, + 0.07863935060422014, + 0.0915453838416947, + 0.06572002159611119, + 0.05990979901836317, + 0.11989056981680787, + 0.061970432967104756, + 0.06447455281711763, + 0.060080193781604924, + 0.07319486223030372, + 0.08614305808736367, + 0.06536976926781082, + 0.0734125841091539, + 0.07487318867375233, + 0.05070068309532709, + 0.07384862027626847, + 0.08547278885871618, + 0.06234696330318384, + 0.08233841420216338, + 0.07016660702586738, + 0.07518783369210144, + 0.07757278237108832, + 0.0656870997443197, + 0.0724070558491209, + 0.060675012269673784, + 0.0657265060974613, + 0.07477299918587152, + 0.09838664448724879, + 0.06858939199908055, + 0.06332383134794904, + 0.07575578722768833, + 0.07248188634682819, + 0.08484909353298734, + 0.06370777692437483, + 0.07441536828461356, + 0.08380612010501627, + 0.07258987766811444, + 0.06782352339719448, + 0.06005127832188951, + 0.08400620893284126, + 0.06429207728963633, + 0.07283129573544374, + 0.07831122253646777, + 0.06770576662334507, + 0.08071350295145839, + 0.06982247303063702, + 0.07892134299252351, + 0.06321777768125204, + 0.08399125475165484, + 0.07911036549326014, + 0.06185545403994192, + 0.07351811432914732, + 0.047027050380923405, + 0.07485506734309046, + 0.07672048278748901, + 0.0621463647678136, + 0.0709204439052935, + 0.07532195217652489, + 0.05693603049814394, + 0.07155391932457139, + 0.0912939687378338, + 0.0642684106174854, + 0.06820326789930302, + 0.08220879097720513, + 0.06900919651201752, + 0.07756408109158056, + 0.06670067834222398, + 0.09408359211329571, + 0.05853070204085365, + 0.05784004505030784, + 0.08431879891467742, + 0.06685212414156567, + 0.07509161062746815, + 0.06986327822238671, + 0.06714643216222516, + 0.08087498620248022, + 0.08568588435451975, + 0.06269990034041467, + 0.0715389208354202, + 0.04853739388859325, + 0.06555885960765372, + 0.09546397571623161, + 0.07164471352255371, + 0.06491238603438088, + 0.09229520278982514, + 0.06348445264590673, + 0.07710608862944932, + 0.08943638560282571, + 0.08008773990344688, + 0.07371873028429571, + 0.0706505374068854, + 0.08153602019530462, + 0.05638373099578652, + 0.06274184164996664, + 0.06925865074945421, + 0.07637753002775603, + 0.08205672082157835, + 0.06274031009336854, + 0.0742203792576347, + 0.08247316533888988, + 0.061867922819227074, + 0.0664506887305667, + 0.08080487583269835, + 0.08316551545331372, + 0.08747795887342026, + 0.06648107203860473, + 0.05437932665298877, + 0.07059315136140248, + 0.06695942319478865, + 0.05546390878333743, + 0.059216562150287866, + 0.08589590854564787, + 0.08025655374494349, + 0.07656786605573934, + 0.07908646281176325, + 0.07230721697158995, + 0.09193661269933688, + 0.07955149338307338, + 0.06600885884489772, + 0.06166957582922166, + 0.058086454869406966, + 0.08134721348977614, + 0.06291696820107982, + 0.08701271535780677, + 0.1114573569365375, + 0.05661686314952422, + 0.08708784398883368, + 0.06594329172687796, + 0.1041498093518877, + 0.06142604112826365, + 0.0634110399872681, + 0.05597205544553585, + 0.0638015381659278, + 0.08284909461064817, + 0.08018082176574208, + 0.08767881259818686, + 0.07407327032838198, + 0.06994181694282028, + 0.10325304657712331, + 0.07005824356639982, + 0.0731159214209001, + 0.07601215107127081, + 0.060556209326813756, + 0.07084101402908127, + 0.07917269637919823, + 0.06044701051681098, + 0.07214248852538045, + 0.0750238009351802, + 0.07816516395898504, + 0.0762556445811063, + 0.09482038979057213, + 0.09732064026394084, + 0.06747876233276554, + 0.07522765037721002, + 0.0801179132539906, + 0.08094342639418388, + 0.0688633523826384, + 0.07504767236168977, + 0.06481697870910003, + 0.07434790581632367, + 0.09625594926838112, + 0.06640532887699657, + 0.08392153302794118, + 0.06494321674103573, + 0.0894896307132344, + 0.06601121211316373, + 0.08927470459426409, + 0.07557627125074566, + 0.07280526243372483, + 0.0673891817574763, + 0.08764706665060093, + 0.07985392190456429, + 0.08816800454360776, + 0.08484653992798079, + 0.0626740291956486, + 0.09079489718503453, + 0.0714855458589355, + 0.057597957553172416, + 0.07099186912719505, + 0.06396056190672532, + 0.07650939644322839, + 0.06928831374927008, + 0.07373311628244261, + 0.07973675010411357, + 0.09349973798906155, + 0.06513396326967426, + 0.057840196408987535, + 0.09351515955522817, + 0.08351037053302732, + 0.09486661577082141, + 0.07794085292695216, + 0.05305387930596631, + 0.07009065703116586, + 0.07393622396145273, + 0.0630987104478975, + 0.07729399950964566, + 0.07179962927026344, + 0.09175842715957595, + 0.08219238507330534, + 0.07388977332735147, + 0.058769779409765674, + 0.08181849983782338, + 0.0729723625101667, + 0.07478857461456527, + 0.06102034243875111, + 0.055135858756962634, + 0.0838770772086376, + 0.06608344967448301, + 0.06528011688663012, + 0.06707650610025956, + 0.06088691511376285, + 0.08320232186924675, + 0.08478368770495216, + 0.05538353091439425, + 0.05540254557252777, + 0.07399660740775173, + 0.07025470101618074, + 0.05563649325732891, + 0.0898957947850348, + 0.0714431251548741, + 0.06459043276658846, + 0.07566717076711792, + 0.06724102620533878, + 0.07076439979328626, + 0.12875283606529547, + 0.08670315101331069, + 0.07698326142123157, + 0.07813530318482005, + 0.07969753016675438, + 0.0665030997471986, + 0.07051029489564348, + 0.08366712481739107, + 0.07370207226888133, + 0.062124734444692735, + 0.06252746480664224, + 0.05706034318476435, + 0.07550187671197647, + 0.06827264463540622, + 0.08852922323291237, + 0.08475588265499942, + 0.07809355389492229, + 0.06660364624743938, + 0.09072975331977808, + 0.08386821648434176, + 0.06826887217548994, + 0.05929066564243312, + 0.08837509078660281, + 0.07966846114077945, + 0.09172726135521643, + 0.08193225982330204, + 0.05958784679263722, + 0.05933599611899775, + 0.07093120074272702, + 0.06577085086726209, + 0.062200703353024356, + 0.08757297899018049, + 0.05956587083628963, + 0.10267739533748474, + 0.06530354728103491, + 0.09076819605172905, + 0.0794992199794506, + 0.08516213459407666, + 0.057180298137547436, + 0.06041231149347113, + 0.07624201199424313, + 0.06125222264152034, + 0.05527824452639166, + 0.06419005504549208, + 0.08323275130440348, + 0.07151606742221148, + 0.08268872483008574, + 0.070008776853324, + 0.07516459294853425, + 0.07194760496347706, + 0.08905147980881974, + 0.06781156852036538, + 0.060115023224211854, + 0.0685598589766857, + 0.09875800046302162, + 0.10688818907761376, + 0.0724357380575677, + 0.059351872108882146, + 0.07706606629726388, + 0.09176320452598953, + 0.08491760676181052, + 0.07498760619064603, + 0.10054045264860517, + 0.07139712334629209, + 0.10114063122955502, + 0.06693794640250299, + 0.0830781487672982, + 0.06762934046998768, + 0.08341369928514328, + 0.059884770953636035, + 0.08601503429521302, + 0.07377355189390697, + 0.05436147481353541, + 0.07087009219210111, + 0.06440945087797983, + 0.07945489111609062, + 0.05929068901941506, + 0.0701456381158884, + 0.0677739329248743, + 0.06717367130492136, + 0.06542178667319377, + 0.08088370457844116, + 0.07665812536520061, + 0.07315026079818766, + 0.09672906443338902, + 0.05426725061309626, + 0.08596402710214655, + 0.08334675320344544, + 0.0779315811460325, + 0.061806718857964245, + 0.07508385443677125, + 0.0752659649204726, + 0.07165600494460578, + 0.06955813347592085, + 0.06911048106626728, + 0.06973137323327053, + 0.05854413505548394, + 0.09662495274412664, + 0.07422510093661312, + 0.07075017128998626, + 0.07947186944394265, + 0.0641570469049526, + 0.07274029136406132, + 0.08038301579391648, + 0.07451216900553548, + 0.06281926229611753, + 0.08112187759101555, + 0.07554363722712298, + 0.08401903798397953, + 0.06360545746262557, + 0.07840514749775984, + 0.08074732516912145, + 0.0660922880581058, + 0.05955755999304085, + 0.08146868599209382, + 0.07613274437536914, + 0.07204390433665055, + 0.10149463621585238, + 0.057300025415392135, + 0.08720455961375691, + 0.06315594532078958, + 0.07008205792279447, + 0.07685302344821397, + 0.07717737234733962, + 0.06086701110173684, + 0.07838689748510622, + 0.09034071580598269, + 0.07161755616063384, + 0.0738212072390588, + 0.08705552771590584, + 0.07145438130037832, + 0.09162110736854907, + 0.07111428541711468, + 0.0763380515789178, + 0.0821400707483867, + 0.07598126192492864, + 0.06754846232419563, + 0.07616392584912161, + 0.07152784161921734, + 0.08623912945539783, + 0.10185833780144085, + 0.08973046597356395, + 0.0543966599935823, + 0.07144826194765862, + 0.06543406208245617, + 0.06834622707255311, + 0.08945043748054261, + 0.08392117166144411, + 0.07015496262356924, + 0.10294328042651384, + 0.07521810952802425, + 0.08070578454886666, + 0.07531567778989558, + 0.06626853204139418, + 0.06714908130447234, + 0.08313850589646364, + 0.05708496191308836, + 0.06916324964479006, + 0.05079650398102797, + 0.06672378223997001, + 0.09135453656648049, + 0.06111866651208111, + 0.07534144697587254, + 0.0769192565023968, + 0.07811446363417889, + 0.06966684524375057, + 0.05774762107544314, + 0.07268643057895768, + 0.06960674324301068, + 0.09897077328385226, + 0.06722181451073338, + 0.0791401814285858, + 0.05842977330399473, + 0.0802119686027575, + 0.08378487134266278, + 0.06372590964065776, + 0.06464937038807395, + 0.0599826639595808, + 0.07555652941995139, + 0.06102411243970262, + 0.07358875313085063, + 0.05869037708876518, + 0.05733905577019772, + 0.08978871141170479, + 0.07492917302164433, + 0.08099104881819981, + 0.07364350474833901, + 0.05948228848363815, + 0.05844562289342319, + 0.06087722339680506, + 0.09472299960306264, + 0.06550032831691967, + 0.05574372326322796, + 0.07824639419320706, + 0.08028969095208838, + 0.06058860856866833, + 0.07718296499451385, + 0.06191740867632482, + 0.07901770589891528, + 0.07702788672493299, + 0.06142237531876738, + 0.07535826315166007, + 0.06872124437681792, + 0.06916131459528167, + 0.05856935049097606, + 0.09013272573361795, + 0.05875395852451893, + 0.07693715783879652, + 0.06473839317306349, + 0.05162061985895626, + 0.06009368964788889, + 0.0919689445095233, + 0.08259951097421135, + 0.07243777171818391, + 0.07649049506200024, + 0.1067504806762102, + 0.06898062395235244, + 0.07720773215108583, + 0.09289590340516889, + 0.07568582617839077, + 0.0687835968819942, + 0.0712921642179676, + 0.09498617406121347, + 0.06678919455059071, + 0.0775997262394987, + 0.08333359790696349, + 0.08353263203834217, + 0.10185805288821047, + 0.06697577941314975, + 0.07851224099459168, + 0.0609455987669805, + 0.09412956279105673, + 0.07358528495723321, + 0.07351773760383538, + 0.07436553970127709, + 0.07289903595605078, + 0.06407769686771699, + 0.0691237596480507, + 0.07310207925891841, + 0.07606485084818085, + 0.06957238689180674, + 0.07917786398741951, + 0.11827139676384875, + 0.07204139813686095, + 0.07161521444958548, + 0.09934047813892806, + 0.06207962402785036, + 0.0728929987444511, + 0.0796280177044725, + 0.07169328228992136, + 0.06911678230138167, + 0.07247516037451368, + 0.08187788746708867, + 0.06995485248565975, + 0.09680953604270998, + 0.06431305078030178, + 0.09219431401239261, + 0.0719122049345296, + 0.07226511465911001, + 0.0981690656709947, + 0.09426847551667515, + 0.07167837203188969, + 0.07522454361091237, + 0.07400158544830897, + 0.06004107156717573, + 0.05582745372024391, + 0.07599048874253905, + 0.0695373057034933, + 0.08897395139155605, + 0.08442506943129982, + 0.08950928127716887, + 0.09138619406642176, + 0.08894704708848696, + 0.06711314538785877, + 0.07946553220787213, + 0.08348105509175002, + 0.058720253527375914, + 0.07176018998462001, + 0.05424245211511234, + 0.06921585665392697, + 0.06905410781749591, + 0.05631239137069895, + 0.07271235242315494, + 0.05753405403054708, + 0.05419645781526727, + 0.07856557950923783, + 0.07817736832304367, + 0.0807850975561397, + 0.06784028458313465, + 0.07590171097347713, + 0.06364282188395713, + 0.08738891033975764, + 0.08591895997148982, + 0.06338141873048246, + 0.06206360836909394, + 0.052205273086411416, + 0.06611461064380185, + 0.05929949565156261, + 0.08655434333134811, + 0.06170021365511094, + 0.06562747342261338, + 0.08245571979192867, + 0.06146429672719804, + 0.06494868180066747, + 0.08801417571039157, + 0.0736500050069271, + 0.08188649197081868, + 0.08197212983034322, + 0.06720812332299547, + 0.05713383945219232, + 0.07375159601700819, + 0.06379040315040785, + 0.09789259628837221, + 0.09568646271005869, + 0.07893905926211907, + 0.08630770160805892, + 0.06893574356387515, + 0.07711484978084293, + 0.07628399622488136, + 0.06432354340027419, + 0.06657081267333378, + 0.07901646775399875, + 0.06054457052014582, + 0.0717183731978143, + 0.08177228445758548, + 0.06422930817341305, + 0.07677105237365732, + 0.09261485058606116, + 0.054367992506634516, + 0.10087216771950804, + 0.06147997314861056, + 0.08295806292596647, + 0.09515750529339657, + 0.06041825117751254, + 0.07827986122381055, + 0.07587785893557637, + 0.06656336724919472, + 0.06424562114987509, + 0.08021438028667485, + 0.06494038683164143, + 0.07210553707584115, + 0.10430608970196079, + 0.06891950927330455, + 0.06890904040797932, + 0.06919208403321153, + 0.07190233877411188, + 0.07420701187387821, + 0.0658997851458278, + 0.05825781520501414, + 0.06571724705655999, + 0.07417195325095102, + 0.10421738249948875, + 0.10153555351449127, + 0.07668756073173999, + 0.06681797477848209, + 0.07419519025237013, + 0.07177906633909108, + 0.0708425346269562, + 0.06033445033189937, + 0.08516762769195366, + 0.06168473058411087, + 0.07595515002010327, + 0.06422989993740998, + 0.06261981686930541, + 0.06735244268657262, + 0.08018126741552262, + 0.07632896604347822, + 0.07603143246547193, + 0.07404276197101638, + 0.07462731003043706, + 0.05844066774438587, + 0.07100886306125789, + 0.06253453271184273, + 0.08266397714033134, + 0.061387511365217, + 0.07023657741216752, + 0.06768407691446506, + 0.09333973773568126, + 0.08085251234848001, + 0.07448529680181828, + 0.08166167494576189, + 0.08181533913872295, + 0.05558541110011021, + 0.07208339484214536, + 0.09633974678634032, + 0.07393113411602598, + 0.09185329273685734, + 0.06531780871155343, + 0.07214941407068706, + 0.08322828517039992, + 0.06579437264058687, + 0.08842780173194721, + 0.07829859648839992, + 0.06568353910304843, + 0.06492501252997067, + 0.061022130474148124, + 0.06063221843059982, + 0.07211263384010089, + 0.062383656381370604, + 0.07058945288626835, + 0.08117290136653939, + 0.054593531833493816, + 0.08017732948705461, + 0.07561649259096803, + 0.08041737403371876, + 0.0633956431135357, + 0.07074985104851307, + 0.08230427206744527, + 0.06493996692916619, + 0.06270505644753466, + 0.06387613688090503, + 0.06830374342228039, + 0.07814734474965776, + 0.05726954188240525, + 0.08408919967001971, + 0.06656629784858283, + 0.07183446177890179, + 0.069539311883717, + 0.07018757307116884, + 0.10542759958373968, + 0.06814493085818377, + 0.0773217449597292, + 0.06383947911343935, + 0.0982038730964685, + 0.06848144593208587, + 0.08072493130778043, + 0.07925766240342122, + 0.07268756011753322, + 0.07824293498467472, + 0.07672595125697546, + 0.07986848311250194, + 0.07088005364452124, + 0.07645946367373274, + 0.05918341759594616, + 0.06764420640340246, + 0.10758741466440153, + 0.060117037914836045, + 0.09111285548673922, + 0.07498839117353533, + 0.08866168953089777, + 0.0703638421413358, + 0.07939417120013262, + 0.05611330632106518, + 0.08746368130603746, + 0.057108122127247314, + 0.07646268112215333, + 0.05285401640824758, + 0.05243058725475528, + 0.07528291680314561, + 0.06456318856487965, + 0.07205319805482677, + 0.06531187977631008, + 0.07672284030196865, + 0.07358187787041821, + 0.060834416699533767, + 0.10013838433920444, + 0.08014335769669462, + 0.101057102211556, + 0.06871745429039477, + 0.08080022478231041, + 0.06890772812916256, + 0.06583607974478632, + 0.07593050270117074, + 0.058288527101769405, + 0.09414693002231675, + 0.06873858334159708, + 0.07087407583962128, + 0.059787069737980036, + 0.06457541436571786, + 0.07775965041345759, + 0.07639579252069452, + 0.06931862230746436, + 0.07672793588667949, + 0.07312592610946328, + 0.07412999505722914, + 0.06895502806442372, + 0.07547268912794594, + 0.06289383664119137, + 0.10330242718403179, + 0.06359891507510798, + 0.09108881905486853, + 0.08006976061008707, + 0.08971586708318739, + 0.061242375036514446, + 0.06343870470403745, + 0.08104019785863137, + 0.0772800126642371, + 0.07714133406665453, + 0.06062267159504695, + 0.08966334393544585, + 0.05917185522415622, + 0.07523916751788973, + 0.06572026379392913, + 0.07502032910552003, + 0.08598323940362489, + 0.05378002118672805, + 0.09411414582263049, + 0.0634830463355262, + 0.07193331535474663, + 0.0739183491516453, + 0.07166010582310878, + 0.0660377858081187, + 0.06427111086062938, + 0.08323356612937459, + 0.08670206769414239, + 0.06106267976417933, + 0.0686493772189314, + 0.07537993869025258, + 0.07311482599784655, + 0.08876352389135844, + 0.05417884208722788, + 0.061240037958549966, + 0.06772087406686805, + 0.08303492348168655, + 0.0798916366258167, + 0.07163725526563634, + 0.0725214761311897, + 0.06590451337709859, + 0.07251311933750448, + 0.07388278539350678, + 0.06592225245646836, + 0.06620388612320822, + 0.06347824216584534, + 0.06840915759507078, + 0.06552331555508055, + 0.0778549156799945, + 0.07996171387512699, + 0.06990617495035777, + 0.06994416685461173, + 0.06414642186517798, + 0.05879147348727597, + 0.07661757803144346, + 0.0727913495426771, + 0.062410110129018155, + 0.09088616447860602, + 0.08901024328173679, + 0.08966304637759315, + 0.08176679669086609, + 0.08921079204597113, + 0.0755953703389293 + ] + }, + { + "legendgroup": "Beam sensor 4", + "marker": { + "color": "rgb(135, 197, 95)" + }, + "name": "Beam sensor 4", + "type": "box", + "y": [ + 0.04726419567675237, + 0.036881084539466, + 0.05006043683725608, + 0.04676326791782981, + 0.04486345061486108, + 0.05387691729709245, + 0.04723076192965429, + 0.05845026715281409, + 0.04773493365772964, + 0.045265903291609295, + 0.03997149367613043, + 0.03446168720391206, + 0.057521109995882426, + 0.04364953261847467, + 0.044246919623870194, + 0.05449129110827522, + 0.04017283916357933, + 0.03580478961512732, + 0.05304929406961584, + 0.04595215248273945, + 0.059043312933029175, + 0.04050650611710223, + 0.04122163527009041, + 0.042143395357556346, + 0.03628836313451585, + 0.04429936116084708, + 0.04656875111655962, + 0.051827970242302714, + 0.04998575684614527, + 0.04857751691944672, + 0.048625650387450016, + 0.04206842651049875, + 0.04819278533757117, + 0.041776877766098085, + 0.04819317306845095, + 0.05202847328457535, + 0.044478404919738035, + 0.05269624937708751, + 0.04935495264440414, + 0.03721331534135657, + 0.04409667471266074, + 0.04860736829457256, + 0.05446975143161654, + 0.04698686807402293, + 0.049302071084657284, + 0.05000513334482508, + 0.04805644192647823, + 0.04391441521369819, + 0.05530014117873966, + 0.035744916838950105, + 0.043476769337127304, + 0.04110426826308501, + 0.05226249178571959, + 0.046214943617473046, + 0.04711209339956742, + 0.04088461314832586, + 0.05885098531820468, + 0.042808028812997306, + 0.04385609504690955, + 0.04103602733145842, + 0.04391367896376084, + 0.04221816655473826, + 0.06061781229492478, + 0.04914686693862627, + 0.038623003667583984, + 0.046503356640565756, + 0.045382763416096226, + 0.041329388587708175, + 0.040682417123276984, + 0.04725355240152864, + 0.08517249151762737, + 0.05574489436961632, + 0.050992983965553414, + 0.039340878757001416, + 0.04085912163743376, + 0.04773435278146062, + 0.04268554837605302, + 0.04618967507213679, + 0.04166147212082321, + 0.03793081161403405, + 0.05560352420551972, + 0.043024826735384325, + 0.05099531854542999, + 0.04694687843445629, + 0.04798399576928191, + 0.04540732707791155, + 0.033804511062223326, + 0.0387547350851475, + 0.042271758014562004, + 0.04306133901369432, + 0.04617158154494044, + 0.053506123950341704, + 0.050473146380069805, + 0.042304363003489186, + 0.05059328751252999, + 0.04593570312301968, + 0.05580126211846495, + 0.06001652285210805, + 0.049085049777891694, + 0.04493276258224353, + 0.04542404241739774, + 0.07071166591397858, + 0.050892107467137064, + 0.05595326627993048, + 0.05127915565127704, + 0.062155184971151294, + 0.05024844783326852, + 0.03729513509913289, + 0.04766542502862848, + 0.04316851596154454, + 0.03866259861815816, + 0.03881851699859755, + 0.03861514166358812, + 0.05830297100719988, + 0.0515847061488428, + 0.047657040662913555, + 0.045346909026451374, + 0.043511969464681666, + 0.047828204289447694, + 0.05925080086244245, + 0.04295002764135971, + 0.04913798694373626, + 0.03573655096315353, + 0.03419271030262909, + 0.036514266513848675, + 0.061826837041655945, + 0.05956379585416666, + 0.04062537481331064, + 0.04572205786022986, + 0.04646631372535122, + 0.03775155820825082, + 0.057637004559167565, + 0.05473088411041893, + 0.06924344636613343, + 0.05181642787528978, + 0.043526592834463626, + 0.03663975146831031, + 0.04360333805327612, + 0.047791254062568636, + 0.04863724644049569, + 0.04180674210783504, + 0.04704590555385097, + 0.03869689469127306, + 0.04185371902070565, + 0.040484056577267016, + 0.05167287904804543, + 0.05634015521962414, + 0.045392994383701056, + 0.03908482687034759, + 0.03415063910587608, + 0.053222603879236594, + 0.045895897083545543, + 0.060563970160806245, + 0.04036562788609559, + 0.05198653630288811, + 0.04208715331760518, + 0.04563578989607562, + 0.04583094616081591, + 0.05456637447348087, + 0.06420965489729094, + 0.03722322977475391, + 0.04690962803667721, + 0.05377041655409459, + 0.04439326019067893, + 0.0459342456295597, + 0.036016436919443486, + 0.0532264426305475, + 0.04215800641504944, + 0.05725818894842576, + 0.038624261084200216, + 0.06578679494429089, + 0.043797016216489945, + 0.04420593198444669, + 0.043992161582290454, + 0.053237483657311686, + 0.03689811481439576, + 0.046643339300974855, + 0.04967022210841504, + 0.043475076617943566, + 0.044183779114185, + 0.05854817341599629, + 0.04850610568640289, + 0.048443949498132736, + 0.041823009635212675, + 0.06806923968926255, + 0.0580243453901543, + 0.043428898495701494, + 0.044626541179303515, + 0.056525174409295956, + 0.04929971929753376, + 0.06022569606852146, + 0.04141280875402679, + 0.03892805743663089, + 0.044579143416785365, + 0.05115882157446496, + 0.04353055607809356, + 0.0462234992704664, + 0.052274547364962134, + 0.05152999164529589, + 0.0499384323271808, + 0.04728873859207578, + 0.03891120446049878, + 0.04682354642563995, + 0.03700334213091665, + 0.04850378863628435, + 0.04979415687177632, + 0.044153531045091135, + 0.03826775057215664, + 0.04861155119504171, + 0.05254063547365812, + 0.05485389559914469, + 0.0543745630670949, + 0.03511114435868681, + 0.05558321797922957, + 0.05753684985306505, + 0.05916335813420381, + 0.050615970730970274, + 0.03484195789196849, + 0.048696592275305504, + 0.044522910311806184, + 0.05805694702635457, + 0.04391144415530676, + 0.04601182397596914, + 0.04838218339274392, + 0.06153383218741187, + 0.04583488332518592, + 0.05390604201938416, + 0.04118208408066546, + 0.03548616821307029, + 0.04842680039237844, + 0.04071402065100988, + 0.04258200011995128, + 0.043891331959342125, + 0.05617815589062733, + 0.03678610649128445, + 0.05284818306791125, + 0.043304839515116704, + 0.07402001664782538, + 0.05930720956002788, + 0.04187535840682548, + 0.04157861282033558, + 0.04745097631303089, + 0.03911604169116118, + 0.05454136110597087, + 0.04352856414741783, + 0.037328465286553654, + 0.035751175147472204, + 0.04435909870122639, + 0.042821223944320974, + 0.04735975421744678, + 0.037955065951913544, + 0.04520949599122381, + 0.05024843474845122, + 0.06219496448590855, + 0.04454855576718507, + 0.05597050085872947, + 0.04284163862550577, + 0.045559621371601834, + 0.05067556186739799, + 0.0514463604288999, + 0.04466691684181914, + 0.04999146747965216, + 0.03840857618424987, + 0.059117007594607196, + 0.04821085166975681, + 0.04315497517055908, + 0.03470285330298614, + 0.046801414969928824, + 0.045312055259175484, + 0.03967225172143161, + 0.042598763615822745, + 0.04268932339701896, + 0.04043248998758503, + 0.05495647356231238, + 0.03860827680680124, + 0.04945880808178062, + 0.04247863664503816, + 0.04884625376126691, + 0.04581368023366177, + 0.0382043466910697, + 0.05898425537422299, + 0.05661041294359431, + 0.04182195323715962, + 0.03495182545729195, + 0.03654987466323467, + 0.04372267110054097, + 0.043502396624282305, + 0.0479664486625913, + 0.04119631459536699, + 0.04704225032590241, + 0.06631212125123756, + 0.05837254263475215, + 0.04445541594376637, + 0.04320892181567544, + 0.04972121093294913, + 0.041389285737761364, + 0.04887848189814837, + 0.049702061610103106, + 0.038145238122585294, + 0.07040796201083659, + 0.042488963972550475, + 0.041198669487390295, + 0.05320345559423256, + 0.051565876360182866, + 0.0387801504981783, + 0.03309480224927308, + 0.055839654389714596, + 0.0530896121881187, + 0.035073960838116355, + 0.0416500463490513, + 0.05251956808513941, + 0.055563755474847445, + 0.04769117217058053, + 0.04277810512941836, + 0.05547907266034024, + 0.054366843274146065, + 0.03894230823573471, + 0.03583881223671715, + 0.03530741222502197, + 0.05055249481946586, + 0.03685699643275534, + 0.03881165595766753, + 0.03974177361234883, + 0.05931555982662271, + 0.04466826386827102, + 0.05037291415451357, + 0.040721381119461074, + 0.04025480037058676, + 0.036279717775432374, + 0.05155029651365525, + 0.05371288543912698, + 0.05445931722518698, + 0.03419617830988778, + 0.03696317423321577, + 0.059709954331832765, + 0.05600211970120174, + 0.04941768936961892, + 0.043505942734447425, + 0.04882431794929608, + 0.061858009908334115, + 0.04415956035540477, + 0.06008116885507745, + 0.047771976775922924, + 0.04090054550152817, + 0.041283040530983243, + 0.04175205845047626, + 0.04206179976589404, + 0.04969924588059396, + 0.04965239225272223, + 0.060232389313907043, + 0.044613066988066837, + 0.05392991811765727, + 0.03815319167957941, + 0.04350836555987775, + 0.05730977902803956, + 0.04409812363233069, + 0.04518631615104171, + 0.04683812806394016, + 0.06734188637329974, + 0.052880690612833056, + 0.04165028827592077, + 0.04739892901051152, + 0.05401763501046732, + 0.051458732584300906, + 0.06923835939922274, + 0.06465939099324956, + 0.03950232108245579, + 0.048956984807563705, + 0.038958989314179335, + 0.04265019305005136, + 0.052392891960840224, + 0.06349941334219919, + 0.04263519894157518, + 0.04669617578585943, + 0.059960820858698735, + 0.051513918221107693, + 0.04293912463012529, + 0.0490814367671407, + 0.044684455462581874, + 0.047113552533142776, + 0.05030034975801812, + 0.0470027019556522, + 0.05515868543998448, + 0.03795588675822518, + 0.04003743608579264, + 0.054075967851040664, + 0.05285447429557009, + 0.047567166176896575, + 0.04041619752744611, + 0.03485518302957437, + 0.04481146535139308, + 0.04790184120752132, + 0.05822679972297641, + 0.04208056051652241, + 0.04237528076296457, + 0.05579260526603011, + 0.04781277668779262, + 0.0570005435737774, + 0.03959833360994822, + 0.04660070768295068, + 0.05353687684965777, + 0.04247478557160864, + 0.03421434094915261, + 0.0317902792495084, + 0.04255780342380079, + 0.04654696571946493, + 0.07128051842717024, + 0.04773249540605341, + 0.0594360488852119, + 0.05632890501454638, + 0.0436443681662804, + 0.046432445392098606, + 0.05344997182532704, + 0.044110124372337994, + 0.04739466355289906, + 0.04195875987321314, + 0.050485055686938674, + 0.035231825931641585, + 0.04539551770034332, + 0.042907776420540056, + 0.04420329674080075, + 0.040555749094398255, + 0.04246208140031587, + 0.03549486326546784, + 0.04567571131420674, + 0.04261240465064095, + 0.046639930725459, + 0.05886552050894066, + 0.03819499269383743, + 0.046949081637347956, + 0.04110385172110018, + 0.0493920206497451, + 0.04169535524552373, + 0.042675071626454224, + 0.054377956192601655, + 0.06005187024424992, + 0.04104381312848917, + 0.05001397920008469, + 0.042386224354063355, + 0.038674280416614686, + 0.033365117356897595, + 0.04101250862993127, + 0.04740198093852997, + 0.04589615115056592, + 0.043393858927310416, + 0.04194798941036043, + 0.03976603982615691, + 0.038997008760019415, + 0.052655781390196374, + 0.05680751105635496, + 0.053294687275519656, + 0.04809993626437237, + 0.056361174732804685, + 0.050271264222795084, + 0.048148520697213176, + 0.03707223530625267, + 0.03409431543946865, + 0.0495702220153857, + 0.03714244615211694, + 0.049273482813621046, + 0.04795085678440682, + 0.05465760804032804, + 0.04860519146338227, + 0.044487982296730504, + 0.036496951679781287, + 0.035971567888099056, + 0.05088104952427417, + 0.04207524776066554, + 0.0451085179584551, + 0.04816972951434129, + 0.0484478952244847, + 0.051293253586369915, + 0.06725874194712672, + 0.05488724194762501, + 0.039506538738459905, + 0.041245547360542326, + 0.06528744368219254, + 0.04549163806084589, + 0.04112320785864186, + 0.04390160700796667, + 0.05002996363157522, + 0.05803495231556215, + 0.05153145966361614, + 0.043802420922195724, + 0.06075717689898462, + 0.04596997717013642, + 0.04915799635503928, + 0.05657826761915739, + 0.054119029124437876, + 0.04238127027036093, + 0.06503199875911071, + 0.056483418154073824, + 0.03837232018624608, + 0.039640354545722824, + 0.051528906035925914, + 0.037749781720405474, + 0.04447171298980586, + 0.05003045748605289, + 0.05488005260733826, + 0.037952915462895497, + 0.042853082211723896, + 0.0470040448498885, + 0.04878082397399344, + 0.04319651712364393, + 0.04091896429006093, + 0.050214562611048695, + 0.04638152506881769, + 0.04502834411716665, + 0.056071524622610835, + 0.06027725440197488, + 0.06316934232318867, + 0.055672625747853345, + 0.051498891337573904, + 0.04815391728957577, + 0.04364279378310151, + 0.0460194646201614, + 0.05352561223351427, + 0.05641815232980436, + 0.04426170957003717, + 0.04759112547379766, + 0.04634785149868141, + 0.041029455637927544, + 0.035423875480321027, + 0.05428290057935631, + 0.047090871009529855, + 0.04190922597649849, + 0.040800982590468805, + 0.04740300829051505, + 0.046811130969412286, + 0.05606132817905, + 0.04455778621269648, + 0.044568449515871175, + 0.04773669881924467, + 0.03984939728165908, + 0.044803705573011755, + 0.06558974768028403, + 0.04936007172969017, + 0.04302475327543564, + 0.05237291350263196, + 0.053096689783276196, + 0.03366203626381041, + 0.04932527337928824, + 0.044336253982006774, + 0.04181643048395758, + 0.04476236167144894, + 0.05329238137090603, + 0.06645089303929944, + 0.04580389057239533, + 0.05794082804329562, + 0.04537421757187545, + 0.04699173473745366, + 0.04456932347186326, + 0.04120660667749664, + 0.0396490352928973, + 0.04177806933573599, + 0.04886742800681221, + 0.04967398000888742, + 0.044574528391662066, + 0.060042805447478934, + 0.05100644897825278, + 0.043899132057725894, + 0.045296026616227184, + 0.05567716325105472, + 0.05109527561624891, + 0.04683161381909563, + 0.057612664505783485, + 0.039249854004890825, + 0.04594175634321915, + 0.04499745982135577, + 0.046215644156405146, + 0.04461395254772627, + 0.0437143114067327, + 0.05871395491041189, + 0.05303517803135139, + 0.03764032280420411, + 0.055889973593044616, + 0.05131010652756866, + 0.04027388283378855, + 0.037602656730619945, + 0.04823290583017595, + 0.0492409967236014, + 0.05651827501547918, + 0.04586772329051945, + 0.061626969281984544, + 0.03976383088369782, + 0.0402841213609494, + 0.07362588648695993, + 0.04813808417137476, + 0.045901371626716765, + 0.04994846332431566, + 0.03847826875627223, + 0.03525189559225623, + 0.049935993065315445, + 0.04039236284490161, + 0.044966687483001026, + 0.04959017453112335, + 0.03702835656572712, + 0.06451740028921371, + 0.040010192003754094, + 0.03990289536938668, + 0.0451929930798909, + 0.04159818828487295, + 0.047080237517022505, + 0.04943502705250027, + 0.04091835974241561, + 0.04862444803456494, + 0.04976161999260027, + 0.060197297832692724, + 0.06477638344825358, + 0.04587084768006845, + 0.05251223309302971, + 0.05006090380872862, + 0.05296534605269633, + 0.05644895411298312, + 0.03932205366350276, + 0.03527957066725124, + 0.048535879638483936, + 0.04729249150097235, + 0.041680337756355344, + 0.06107774944039792, + 0.055687047048197054, + 0.036825417639116, + 0.05402300634130637, + 0.040724301241360575, + 0.04281184422156104, + 0.052196521241637935, + 0.04728996951466687, + 0.04316084888686395, + 0.04367041574469611, + 0.052816055896153166, + 0.04670438443709383, + 0.04469164081566282, + 0.04893587683982969, + 0.06095831037601088, + 0.036357813955961715, + 0.051791019354540675, + 0.03859702886009794, + 0.045343422045155186, + 0.034626802042862545, + 0.05192758337155455, + 0.04925918229081112, + 0.041658369422994855, + 0.040187027734229434, + 0.04629344449998145, + 0.0406846044732104, + 0.03666708614538329, + 0.05627942589501684, + 0.04851737402189095, + 0.04578363526693654, + 0.038216493069834406, + 0.043381304946482104, + 0.05926435331920976, + 0.05323107388498897, + 0.04027516319208008, + 0.04216746004315932, + 0.04258444786708307, + 0.04246740758386103, + 0.038502044200276836, + 0.048149296398936225, + 0.04955142820427426, + 0.04056750637314539, + 0.04067369220019334, + 0.04639780464903813, + 0.061796561753874095, + 0.03955345437946351, + 0.046215412647409006, + 0.053115161214318626, + 0.05667232253492283, + 0.05061623738471724, + 0.041949421404927974, + 0.05200488581708626, + 0.04781929491022881, + 0.047859796089902276, + 0.038952238374224055, + 0.048240080751199815, + 0.03767372346645622, + 0.03574510358316386, + 0.040064584784111096, + 0.054950567128165276, + 0.04417303561344488, + 0.06069777718260055, + 0.0518616558148186, + 0.048034793548047634, + 0.05363581877689056, + 0.04350232953413163, + 0.05201523285726535, + 0.052855709737005985, + 0.04227140926896966, + 0.05344492007951235, + 0.04126177650956686, + 0.05024571537621175, + 0.05108385116390369, + 0.05093186184555393, + 0.043793569096045926, + 0.051938186186523606, + 0.0358594615958194, + 0.042661092954800334, + 0.04337662974377576, + 0.04634125449002307, + 0.05396300405391587, + 0.05806116137142104, + 0.05576538759602171, + 0.04609170386652163, + 0.04238022704371396, + 0.06445512344488533, + 0.046772986392353576, + 0.053653748192795635, + 0.04947712713116021, + 0.044682042567988065, + 0.04347472330069597, + 0.040218928876685954, + 0.05351839716213206, + 0.03709039082849319, + 0.04965093235612237, + 0.04851783090277026, + 0.051522073639858945, + 0.059520905952047204, + 0.03938187424984419, + 0.036562299933337324, + 0.0499874106137428, + 0.045131164031521814, + 0.04586075242420621, + 0.042773051939555766, + 0.044009764835906136, + 0.04139630761542554, + 0.045567817834810835, + 0.05072803603389049, + 0.04632322887846513, + 0.05113356893930291, + 0.042256067435065846, + 0.047353467399874026, + 0.05322019221648131, + 0.05077491126959527, + 0.03703493032837879, + 0.03492120291951167, + 0.03868901935750164, + 0.05043743894194113, + 0.042676885037424596, + 0.0416133681148275, + 0.04395545478357435, + 0.043398912793776695, + 0.04020836832718098, + 0.03834360329606667, + 0.03631793286349436, + 0.05546580552852417, + 0.040168510461192956, + 0.047079107276033164, + 0.04355316557765559, + 0.05112605775097038, + 0.058189898188392694, + 0.06189786078047542, + 0.05179513519769146, + 0.04677058886898873, + 0.04926261900340616, + 0.04614507768753958, + 0.04942452391590718, + 0.04793382745665076, + 0.06205193034004292, + 0.05321839316145217, + 0.045204203219282625, + 0.045305301165795224, + 0.04861120299077978, + 0.05508096266367078, + 0.04017928741599274, + 0.04865938613555088, + 0.03700616250741056, + 0.05757325862858236, + 0.05022402486640544, + 0.045155092208282885, + 0.037697979364866116, + 0.03870427419197695, + 0.03956929374557381, + 0.0345665595064656, + 0.05213616968301539, + 0.0436239866510008, + 0.03850044477310851, + 0.05177422097412726, + 0.03793813579264624, + 0.06930261109370359, + 0.04611996359334608, + 0.03681274839867397, + 0.0446688675936881, + 0.053817504097813225, + 0.05162348447947246, + 0.04352226780570223, + 0.036748568145073573, + 0.05041573564780013, + 0.051315658861477466, + 0.056401043416253495, + 0.04338425599817405, + 0.046034459978000014, + 0.04068286517160327, + 0.04135457425934717, + 0.04929999659131981, + 0.05183486003863792, + 0.047526677993111326, + 0.04147045972101494, + 0.05050963657898871, + 0.04513592762782528, + 0.04119389364218156, + 0.05420826247238544, + 0.054176689209340566, + 0.051358241484911485, + 0.040027950229702625, + 0.04692435477133298, + 0.04063988059098274, + 0.031877842737112534, + 0.04686444056924539, + 0.048703946290398925, + 0.038284478015300855, + 0.04873360841229848, + 0.04673895071108055, + 0.05042111286506122, + 0.03975268764914096, + 0.05168087049160423, + 0.038869771537480495, + 0.04196512552356611, + 0.05217125595618196, + 0.05303082147355326, + 0.035699640146222476, + 0.03581683255794542, + 0.03958753637027233, + 0.040445978640076076, + 0.05298596437451905, + 0.04882674210311732, + 0.053898385295079294, + 0.05922089814909926, + 0.04903881034052626, + 0.048356579993235047, + 0.05564992915341666, + 0.04394963290853094, + 0.056963279700322916, + 0.03743186408749249, + 0.05215038263523201, + 0.04088072728009428, + 0.0414084392169447, + 0.046141774622944484, + 0.04497584784820814, + 0.04377702240477008, + 0.043026795918061064, + 0.04511369625577695, + 0.03174314836781477, + 0.047709478223122534, + 0.043290202520162746, + 0.03452095796553967, + 0.04611157688069397, + 0.043017807778827306, + 0.03916404242286411, + 0.04840972439180309, + 0.04013105957165617, + 0.05210992652428849, + 0.03734757957004105, + 0.059754566068910435, + 0.03785666686812961, + 0.044354116533767876, + 0.06806612906394145, + 0.048914139372935275, + 0.04629143874714043, + 0.03760816634301466, + 0.0452730101975151, + 0.045462765750321245, + 0.04625663900360399, + 0.045458529292082, + 0.05333450934436608, + 0.054142248577322645, + 0.04123548308262721, + 0.050603734327841, + 0.041695764208854125, + 0.0403286095017367, + 0.0389373923130943, + 0.052203543290839795, + 0.044043635382690516, + 0.04017368703127489, + 0.04554945169119097, + 0.03308793836321273, + 0.05022729001384214, + 0.05771911933590204, + 0.04237239399230223, + 0.05161960216635911, + 0.043638572558707886, + 0.05684750375788698, + 0.04929159489681486, + 0.059762534883306594, + 0.05498363209978828, + 0.05580578295259145, + 0.045874987779808786, + 0.041313204007262114, + 0.04865719460177967, + 0.05447135561075617, + 0.04233132204694438, + 0.06612670803240832, + 0.04976237625158495, + 0.0530410343114474, + 0.03831704698382851, + 0.0502343871374866, + 0.04688816255602874, + 0.04424648559074078, + 0.05092936641895316, + 0.054843391260857244, + 0.046246076817004864, + 0.04162078364069829, + 0.04368617030079233, + 0.0714968907045944, + 0.047967037838637, + 0.05644687348676008, + 0.04342133853818561, + 0.05196910673558007, + 0.03918264787493723, + 0.042987490967000955, + 0.04199587248455268, + 0.05101002432337444, + 0.04677066295411278, + 0.051002862239573364, + 0.042538238584811316, + 0.0459990904763458, + 0.05100154685082847, + 0.07640551682196861, + 0.040086228768863245, + 0.04053328330301778, + 0.04416660984660224, + 0.03776591474554836, + 0.054153084054510636, + 0.03967509902964108, + 0.055179545495637305, + 0.04778624991277972, + 0.05376974506731766, + 0.04035074442939918, + 0.054558741138903216, + 0.06109870529400047, + 0.046361291732874316, + 0.04813550467852171, + 0.04288282407581398, + 0.047549417028146655, + 0.04062355712785014, + 0.04078198196128162, + 0.043768002611895764, + 0.0450453788352284, + 0.03543404227313847, + 0.0371015606399151, + 0.042417422855968466, + 0.03990107043178202, + 0.04153157887632646, + 0.041774071532352006, + 0.045524174799050555, + 0.04540356983463531, + 0.044266091975788936, + 0.04585289264005529, + 0.04384157439306082, + 0.04510698670147896, + 0.05604448529817501, + 0.04037588315604102, + 0.03964925310217636, + 0.04129411906196193, + 0.05988061833601801, + 0.07419503889164523, + 0.0605218470602241, + 0.05502491016360542, + 0.052817152921631215, + 0.05236816690242299, + 0.052343192845982066, + 0.040376356909782536, + 0.04045280547054256, + 0.04638245349380063, + 0.05289149421917198, + 0.056741495540654295, + 0.03297534821382655, + 0.052657820471686746, + 0.04863016825908334, + 0.05205541203650761, + 0.03980176209417003, + 0.0488531172173745, + 0.044161822519005786, + 0.045178267828584646, + 0.04033842179772416, + 0.05552984713694569, + 0.0471280864121129, + 0.04588642496658769, + 0.05154493701781719, + 0.06275354535037024, + 0.036100769109029526, + 0.04443793058834392, + 0.046137169441240425, + 0.044230144790803554, + 0.05869837488535454, + 0.05071938586027825, + 0.04936794838858237, + 0.03865496987583472, + 0.04759419298833741, + 0.051740512589749585, + 0.05658720978560349, + 0.04420540931229654, + 0.06274850876534606, + 0.053984215488162256, + 0.05048171608927052, + 0.04648559172046201, + 0.04032668159947574, + 0.0466146178797614, + 0.049879650718794445, + 0.04897309667915346, + 0.043864134197430946 + ] + }, + { + "legendgroup": "Point sensor 0", + "marker": { + "color": "rgb(158, 185, 243)" + }, + "name": "Point sensor 0", + "type": "box", + "y": [ + 0.028730400081916043, + 0.033881943166148995, + 0.03927781277025736, + 0.038110160398209414, + 0.04589692926632319, + 0.03398042515567846, + 0.0319515114610385, + 0.036747606335503315, + 0.029101548157060734, + 0.030910122601032486, + 0.0325124324682641, + 0.027920599466407046, + 0.030620690814716977, + 0.0340465304735412, + 0.03653270430987505, + 0.028919043459090545, + 0.03319391060825912, + 0.03695261759041335, + 0.032280242583842725, + 0.043681972057122695, + 0.03241442905340647, + 0.04120418270351926, + 0.02941928066381735, + 0.03419121658985303, + 0.035466025698140335, + 0.036265734096579044, + 0.040708188415339686, + 0.04076972504018561, + 0.02708482317636651, + 0.023512972229489386, + 0.03836495873131871, + 0.044378717299332925, + 0.04446383731382336, + 0.041887502424231206, + 0.04698999672656659, + 0.0405585589265223, + 0.030458371940921984, + 0.04753948009705149, + 0.034430141133163304, + 0.028200288467305535, + 0.041128304069258846, + 0.027835063839198877, + 0.030959889905526537, + 0.0389154581895924, + 0.04493067036474671, + 0.02890290925805176, + 0.02801202052985191, + 0.03656649689953787, + 0.034363820056104354, + 0.028133997558454287, + 0.033878670159602754, + 0.03632014463169563, + 0.029078347548122222, + 0.03547783291424104, + 0.03230726201444482, + 0.04078678538858384, + 0.03481377174251607, + 0.03885574350022191, + 0.03107865939260826, + 0.03115605846273629, + 0.024804248139656745, + 0.0354709776347539, + 0.03409431660737118, + 0.027749344900649838, + 0.028427535976220424, + 0.044867736709479814, + 0.03725292405619539, + 0.030513421752671643, + 0.02944262411496978, + 0.029540417390071183, + 0.030992766454580958, + 0.026086122105049108, + 0.02769944189443073, + 0.027218036519247972, + 0.0406376202676903, + 0.028052721180565895, + 0.03903647105946929, + 0.02505713770742484, + 0.037161083651909205, + 0.03272629880104228, + 0.0378545822671327, + 0.023304722565856514, + 0.031050743952005862, + 0.04148358819226048, + 0.03576559881815987, + 0.03296211360303648, + 0.02873852732897543, + 0.03535848079571683, + 0.033745075913444986, + 0.045132337611191696, + 0.03465888408953502, + 0.04554058050761245, + 0.03531439767961805, + 0.03719078183473951, + 0.03874859578014595, + 0.03189688198690347, + 0.03433852244737945, + 0.02981212428551983, + 0.030646905427243715, + 0.03393972120035687, + 0.036731495973571164, + 0.028874951202008305, + 0.032321440975853204, + 0.030086939007068842, + 0.031217679683368128, + 0.02810011412391421, + 0.028461146619625573, + 0.036685793805615804, + 0.0409839199908198, + 0.03127989479094569, + 0.027051303498056584, + 0.03530349468776915, + 0.033509240358780154, + 0.030418725134789982, + 0.029648118270088362, + 0.03883678023299432, + 0.02816346464640427, + 0.028508822049308987, + 0.03405548638777601, + 0.0371763363663313, + 0.030363856720824402, + 0.03997147056268974, + 0.03331122363960413, + 0.033164541265160725, + 0.04272865836187379, + 0.037959765419977344, + 0.029526632620651246, + 0.03914830948728841, + 0.04067050461524373, + 0.03986210064257585, + 0.038175473802584965, + 0.03346363499881953, + 0.03487128161231673, + 0.036534281858609165, + 0.03686689076133713, + 0.03314006247087072, + 0.03217824902453845, + 0.034332150509935246, + 0.0375826474761299, + 0.03369896470310987, + 0.04075377442677322, + 0.044494118531690656, + 0.03838104523756312, + 0.03531133206954018, + 0.04157210935830309, + 0.03429492369768951, + 0.03781887065979853, + 0.04223825829115736, + 0.03599375754817871, + 0.02780109992465961, + 0.04493282822400082, + 0.027988565603909294, + 0.02732614555159464, + 0.030633372091273207, + 0.03184473803422635, + 0.03213910265672934, + 0.027708569386982077, + 0.037751835503167304, + 0.024364059648758134, + 0.030776943130883798, + 0.03439267072971196, + 0.028110166568293918, + 0.038851403214556594, + 0.028794435967891857, + 0.03476834412999139, + 0.030771840197729036, + 0.046006225533884657, + 0.03514583753634455, + 0.03159982919751817, + 0.041036236510873896, + 0.03253851174734522, + 0.035865692011508944, + 0.029410060631906678, + 0.03555112168738075, + 0.03114593070883026, + 0.04065978768051126, + 0.030238943592008675, + 0.02880228104846223, + 0.03440841659824007, + 0.031123769061913654, + 0.042742881508256954, + 0.0293672164639052, + 0.02780330860909197, + 0.03416936020653274, + 0.03062091649258579, + 0.027167081519446898, + 0.03240755853487572, + 0.03779494041789021, + 0.04546878646718969, + 0.0430953406834483, + 0.03315148355069283, + 0.03071785129446141, + 0.033654695676175246, + 0.03709619961996902, + 0.035886340075965105, + 0.04165486615530999, + 0.030052680037478796, + 0.03068319351229605, + 0.030104565428295187, + 0.02834677057493968, + 0.036405931324913675, + 0.031159906387083127, + 0.0394340262306378, + 0.05440367460850538, + 0.03595773577281381, + 0.043553893857130835, + 0.044208039382099835, + 0.03082347618340309, + 0.03677043174786094, + 0.031189211619962715, + 0.04462747141193492, + 0.03502962861518813, + 0.037841964454644605, + 0.033389015945986235, + 0.05103758198972826, + 0.026921301955037967, + 0.02628327097981201, + 0.03522261566865703, + 0.032333697762604884, + 0.03148970373589495, + 0.026598132773666627, + 0.035491879899461114, + 0.028901516173243227, + 0.02458307004952279, + 0.027397701447653022, + 0.037612289793702285, + 0.029108065617765702, + 0.041537287475881306, + 0.03508649951215046, + 0.03205225417574201, + 0.03170791603838071, + 0.027857675311701025, + 0.03802547191236282, + 0.03201208470999693, + 0.03164906399622255, + 0.04003666100009187, + 0.033449984354083556, + 0.04050362748630802, + 0.036306529841773794, + 0.026788815466452513, + 0.03749360279371684, + 0.03634683453407712, + 0.04114339878886541, + 0.037601340634670605, + 0.02964779100089721, + 0.022755921601106913, + 0.02611178791027184, + 0.028583909168130032, + 0.037003786882180006, + 0.033853856777386615, + 0.03209387727354596, + 0.02287595430544444, + 0.030167418889404534, + 0.033384154952263684, + 0.026615816191846945, + 0.047772490631428896, + 0.03409697334898064, + 0.03271840746244994, + 0.03095701964223419, + 0.03000352866599612, + 0.04503529755589143, + 0.023710280556558595, + 0.0428444703204472, + 0.032440031729846504, + 0.03294492079106382, + 0.03073206728193746, + 0.039127547715970976, + 0.03331530118154565, + 0.03896777629872029, + 0.035977413770835125, + 0.030733074534830554, + 0.028793364094033765, + 0.03345361196494266, + 0.02509386576456249, + 0.036293925134882866, + 0.030001702883718076, + 0.03575149178069005, + 0.031879406165652206, + 0.048127467660635755, + 0.03510448992615398, + 0.03054770791384083, + 0.0341501955856718, + 0.030062421878326362, + 0.03081534348134185, + 0.05012247672196684, + 0.04229185795002784, + 0.02750880011661486, + 0.027407497233885945, + 0.028363565184744786, + 0.04175895325181524, + 0.03857533060511729, + 0.028104022237563, + 0.03665993574889248, + 0.029338758006209165, + 0.03535833314863518, + 0.027379777865223894, + 0.034489805790884676, + 0.03573158506942282, + 0.03474417038083268, + 0.036254060044271036, + 0.030536000277769766, + 0.04618872828166714, + 0.049306916988358825, + 0.04318030338397824, + 0.04135173035832307, + 0.039890493126507456, + 0.032975424949020074, + 0.029966099019579473, + 0.029421470993259643, + 0.029957625180864613, + 0.03334954042909975, + 0.03275302804418062, + 0.03519667341539493, + 0.03117302254157118, + 0.04811911249973314, + 0.026761346276290333, + 0.03243861694373515, + 0.029241092039509958, + 0.03715576772010095, + 0.033699618617223114, + 0.035250729811982906, + 0.03636155459554879, + 0.0337043077503691, + 0.03637934276369842, + 0.030859739127199023, + 0.03798930075314889, + 0.04456222255000494, + 0.02575604928105649, + 0.03588814315763298, + 0.03791332037732743, + 0.035188783507917244, + 0.027726390434822754, + 0.04136502373478811, + 0.03947902286915189, + 0.02867110535046317, + 0.027799362492441422, + 0.034811259704578865, + 0.03002424705669078, + 0.044594823525015995, + 0.03555288840899756, + 0.03281179749123341, + 0.03543356295393587, + 0.038194082682701413, + 0.0335719313571137, + 0.035653189917105185, + 0.030538929840645972, + 0.04295385420106068, + 0.028005760085707904, + 0.030512495889694805, + 0.03694268423887027, + 0.028836027061230715, + 0.029677946157772216, + 0.03287093499762886, + 0.02935766756751261, + 0.03930292947216365, + 0.03227200685301598, + 0.02516326961889775, + 0.037369024323997524, + 0.03406087929901412, + 0.030423398240024675, + 0.03675685509141234, + 0.0325606740569769, + 0.0314652304726351, + 0.03150345423281339, + 0.030549230343753876, + 0.031010210513666602, + 0.039363345878078326, + 0.028699867292214475, + 0.026198769073312093, + 0.03406705507138059, + 0.03091550246372912, + 0.0492582188991395, + 0.02748342600760164, + 0.03357594025642514, + 0.025938413220919616, + 0.03578268513830564, + 0.03086037651791753, + 0.030215885463692527, + 0.026094386989562485, + 0.04020212089052995, + 0.024961975723244337, + 0.03427300547830231, + 0.03671485460597924, + 0.02979888885954624, + 0.03274732946577115, + 0.028664315949402785, + 0.03423618519936718, + 0.03380672216546809, + 0.04590000589039639, + 0.03221294749235921, + 0.030639135260273065, + 0.03976132220015528, + 0.036930644166792134, + 0.033747717748431626, + 0.03337546738516923, + 0.034308627969330714, + 0.0416158191537434, + 0.025541596098808142, + 0.028032058266435272, + 0.03910943308336302, + 0.04326222141828421, + 0.028154964765847106, + 0.03142794920553126, + 0.039310368408094, + 0.03189268540537626, + 0.0327791599342847, + 0.038204637322043475, + 0.03713228071255239, + 0.04702090253954085, + 0.03585858052638959, + 0.0433758810473987, + 0.03588592615924385, + 0.028284447153251267, + 0.04204290756694897, + 0.033221051116093185, + 0.02989135783148329, + 0.040247388629399194, + 0.03606441240259314, + 0.02291847200914733, + 0.03135790293304541, + 0.040527459304628734, + 0.02905090567133596, + 0.03449887639949741, + 0.04076897281821405, + 0.027543690005293678, + 0.036636071766337215, + 0.02419558162150175, + 0.029526661736275186, + 0.03235442496236114, + 0.03428412443078698, + 0.030984626295996087, + 0.037204001510299935, + 0.038052585241895455, + 0.03562846846856947, + 0.035456991730392254, + 0.04054329857483479, + 0.03399502939997275, + 0.03066038456720777, + 0.040679935057867725, + 0.026173493162590957, + 0.03403525391183598, + 0.030540628059658136, + 0.029261545654345043, + 0.03311111478248597, + 0.024582096067901953, + 0.026916452238908803, + 0.02574215289221617, + 0.03565234553245693, + 0.026840054282859228, + 0.03316197400782218, + 0.03794897185924013, + 0.04307062807366808, + 0.035317762113668966, + 0.02933143825366428, + 0.047668668526296185, + 0.028868997808262284, + 0.03897289806696191, + 0.032879121580647555, + 0.03469467618168949, + 0.03102663473371115, + 0.02897820347693138, + 0.026163849490415638, + 0.03292704435029004, + 0.03930400416736071, + 0.0414888890384178, + 0.025529331579859576, + 0.025472179280154703, + 0.03587075682742644, + 0.04056257201341388, + 0.035222290025887, + 0.034512506769248795, + 0.026690785903870157, + 0.027606334823235473, + 0.028904155468306218, + 0.0295083412030431, + 0.030970704090303874, + 0.03828628738162924, + 0.04018837104273258, + 0.02974198793207685, + 0.04262989244967345, + 0.02844112252097725, + 0.030300074791675995, + 0.044394489279280164, + 0.031940994280482915, + 0.03884894885597151, + 0.03357529387037988, + 0.02665861363598947, + 0.03259212814705549, + 0.03880217583799049, + 0.02756519629742931, + 0.027675941780116318, + 0.030034496627392136, + 0.03256815885599147, + 0.03258117881768999, + 0.04061977877461629, + 0.03241571728548689, + 0.031773359335959546, + 0.0328119675767194, + 0.03217625326418999, + 0.04023664739305251, + 0.029666020307358747, + 0.0359686928759145, + 0.0510038580351421, + 0.027077922922043383, + 0.04100299828745946, + 0.03604301176483936, + 0.024434346261760487, + 0.03325641111756954, + 0.04383923903444501, + 0.03440054513881078, + 0.03827286510064621, + 0.03582767809089721, + 0.030266812541992767, + 0.0272993432396432, + 0.038258080374885296, + 0.03372719400087233, + 0.0354586397732166, + 0.0367299477499498, + 0.030131220199679627, + 0.032597669722813555, + 0.034516699750622826, + 0.030743761813372995, + 0.029963220969148906, + 0.03785828930028049, + 0.02881428936338901, + 0.03345099696918411, + 0.023706345658847668, + 0.0454972853046259, + 0.03928450989043999, + 0.02796636179209917, + 0.030282384628060186, + 0.02631109362286273, + 0.03216680855501366, + 0.03819820771172872, + 0.028599101750779447, + 0.03255345415835046, + 0.04172763638956458, + 0.038747332442645506, + 0.03624998008879587, + 0.0363738996799991, + 0.031139809234845914, + 0.04376558738813405, + 0.035143614937741485, + 0.03762232166499836, + 0.04137026559611444, + 0.03070343753732814, + 0.03366039033962237, + 0.027962506438261463, + 0.043390687250217025, + 0.02732674803514689, + 0.03295582018715001, + 0.03463865679626418, + 0.03879419587607675, + 0.03382403113287381, + 0.025732995292104953, + 0.0279655853331793, + 0.031237439907963495, + 0.043797193008695355, + 0.026783773282362856, + 0.024113380107770505, + 0.039744239968405704, + 0.038505894507168834, + 0.04100948572727368, + 0.031810821241325574, + 0.03833421540488557, + 0.028554267828629618, + 0.032150975229345374, + 0.030442545273892146, + 0.03029323133657424, + 0.03370272705440659, + 0.042091434366175, + 0.02883617777626739, + 0.02891419556061109, + 0.034199398211100344, + 0.03484455099008817, + 0.041456258646293126, + 0.043866974828015035, + 0.027867543125828613, + 0.03239208656874652, + 0.035138380281738386, + 0.023880528008812622, + 0.030634814342403803, + 0.02274550182230251, + 0.03979550656493363, + 0.03629894804764317, + 0.03530359740809442, + 0.04518600539732794, + 0.03458210546420122, + 0.03566919827305155, + 0.03915707881148644, + 0.0450501402492692, + 0.031212479271530775, + 0.03782179878978385, + 0.029742170217609293, + 0.02565995501686963, + 0.047672852816897114, + 0.02808063059330969, + 0.0358423727579082, + 0.034634718327584586, + 0.033107517937279056, + 0.035322413716626214, + 0.03372143750058938, + 0.03000002507263347, + 0.028222240440089152, + 0.0320301747136645, + 0.03177760184153891, + 0.026251405169322898, + 0.026540706104969905, + 0.026705776074989303, + 0.02919977542871963, + 0.03608629419643647, + 0.033090158503782684, + 0.029437464865450284, + 0.032462588648604795, + 0.03132793796302379, + 0.03235468905335, + 0.03876587186508377, + 0.03651362989774494, + 0.02983912118064083, + 0.030888636503824042, + 0.03991413033022151, + 0.026611105960951092, + 0.03158492309729757, + 0.03180639771402822, + 0.03939447779521454, + 0.0275713454259091, + 0.023622797267416288, + 0.029637303041378574, + 0.03684203129752161, + 0.0239173311593559, + 0.032389884430280146, + 0.027928018355176554, + 0.03125212234949589, + 0.023773103900228378, + 0.03391400886698708, + 0.02962211192177599, + 0.025447021477481888, + 0.03359475932470061, + 0.029743520818615015, + 0.026190218428636163, + 0.05274490207572891, + 0.027849306196281398, + 0.030176807255885403, + 0.03240617622113872, + 0.03330789597649932, + 0.04337549193542732, + 0.042741124841750376, + 0.028360592356186265, + 0.03857014591305177, + 0.03263994685526251, + 0.029147433183258274, + 0.034176024164151456, + 0.04502269934278859, + 0.028656726921042947, + 0.03190121096117925, + 0.03772861584741284, + 0.03319160157943058, + 0.029427822729275487, + 0.02960166772681271, + 0.033485982419986446, + 0.04039726426442144, + 0.030819722600440944, + 0.03998586594284974, + 0.036753821927224595, + 0.03413612190703058, + 0.02750653557086302, + 0.03298388952700729, + 0.03704040586175771, + 0.03798906811446279, + 0.03978788919136661, + 0.03095957445207455, + 0.03780450127187508, + 0.026045863205025728, + 0.03717589342085566, + 0.0364943595053284, + 0.04004439239041462, + 0.027880703304371438, + 0.03032294292915723, + 0.031522325106640915, + 0.04379162230512463, + 0.028723009767412364, + 0.03667064978019111, + 0.029574784369723658, + 0.04196988914408797, + 0.03480041504118841, + 0.03420620292482848, + 0.032394118009922104, + 0.031034069955565537, + 0.039870190403996315, + 0.03796773175699418, + 0.03524479189847216, + 0.03125771537901207, + 0.03650980519136065, + 0.03289135230807299, + 0.029551099730856942, + 0.026795337292864797, + 0.03410038141718872, + 0.032068442973628694, + 0.027455550796513628, + 0.036449700007983386, + 0.04537921039699037, + 0.037150831070282414, + 0.035535917538921, + 0.027930915999203144, + 0.030542612763750424, + 0.03148173314576915, + 0.03577159020779112, + 0.03142865199863498, + 0.029798930185116913, + 0.03914098479966321, + 0.03514392759884803, + 0.037911108310945255, + 0.036117196984939884, + 0.03686271042424865, + 0.02645606273794196, + 0.03895810480197075, + 0.03247971681469701, + 0.03415309963657579, + 0.028428268930439666, + 0.02802536669916236, + 0.030388089737194073, + 0.04107729373935503, + 0.027103055431215342, + 0.03397184590919071, + 0.040785794737757536, + 0.03563520758593882, + 0.024569509844970472, + 0.04034341680132433, + 0.03183883231764088, + 0.039163467329564626, + 0.03286366059715728, + 0.03443350746407875, + 0.032844604903203824, + 0.04217257841478304, + 0.03985559657514195, + 0.03336608367082907, + 0.03693738120327866, + 0.029516835231539383, + 0.030681964039744596, + 0.02779905006240517, + 0.04658067050014131, + 0.04006665376006488, + 0.03861721170389151, + 0.031160022241474385, + 0.02735425632135579, + 0.02964589329140305, + 0.02509624484069129, + 0.03231493730034873, + 0.03098611857833786, + 0.03828150068939855, + 0.04103371925208667, + 0.05480981547372096, + 0.038061521920363016, + 0.0398270255306165, + 0.04440890201003855, + 0.04075139660626996, + 0.03880318299734203, + 0.03468014156118697, + 0.03201255640810878, + 0.03203325435255284, + 0.03490439499837843, + 0.029252951027141184, + 0.02748714144441909, + 0.039327844105675566, + 0.028362597344112606, + 0.033293113205393014, + 0.032646650607911505, + 0.02886118274858472, + 0.04346743039316902, + 0.03897292370004416, + 0.041415531189685086, + 0.03582937872719819, + 0.027125383463025402, + 0.029808030402829387, + 0.04622825176860373, + 0.031871139735612994, + 0.029910533047153454, + 0.028515459972342557, + 0.043223817673702904, + 0.040868381894401784, + 0.03364626760057082, + 0.03130185266379414, + 0.0475929325026086, + 0.035558125593689247, + 0.029251069369614247, + 0.026448410640128102, + 0.03472417720084887, + 0.029390041672446507, + 0.03236480364829256, + 0.03395375153751683, + 0.03533497996373493, + 0.038154921468510766, + 0.027968425417209522, + 0.029450349568009133, + 0.04081127539663292, + 0.04561245214352587, + 0.03188869751763019, + 0.035405519841377714, + 0.03594376704964941, + 0.028203634406032123, + 0.0331960456663394, + 0.03853385751759331, + 0.028858021111395588, + 0.03386928551128228, + 0.029665881443788067, + 0.034625584481223756, + 0.042881451710204264, + 0.03129324180596296, + 0.026156099132118655, + 0.03329476644598046, + 0.03759404379654716, + 0.02476139476066933, + 0.03989646804341892, + 0.04485177050368388, + 0.031015818730418573, + 0.030275057503189554, + 0.039205102973018324, + 0.033301180894371195, + 0.03285022103475917, + 0.030114657168496185, + 0.025815968688483827, + 0.036333245214047794, + 0.035874629778890214, + 0.03499539712140342, + 0.032463506492905796, + 0.046823804363988794, + 0.03430233136991898, + 0.045871807686035604, + 0.03371625048000333, + 0.035669788639321916, + 0.031966157177584796, + 0.035327249451785184, + 0.03522285914822728, + 0.03115903890584419, + 0.029717057894341443, + 0.03610713162783606, + 0.02881915116430541, + 0.03157258603707791, + 0.030416584270958943, + 0.03927458227125133, + 0.027381687755715665, + 0.02425559344464664, + 0.033754597558664175, + 0.02698446818217144, + 0.052171684115883216, + 0.034310341270177576, + 0.03717684999317471, + 0.030426480233400808, + 0.03168385514773541, + 0.029675814280360042, + 0.034811707925861475, + 0.0343784343979912, + 0.03147975748856906, + 0.03147816833909908, + 0.032220298945912385, + 0.029702490877926212, + 0.042464997138487316, + 0.02570931810797261, + 0.027116489242680744, + 0.032208404832182715, + 0.03164073483370064, + 0.027116116684954863, + 0.03760038977041418, + 0.03362702726309607, + 0.03276672911992101, + 0.04162884035694482, + 0.032472939089865455, + 0.03660607226592555, + 0.03319970342317875, + 0.0288347601653997, + 0.04731661025464657, + 0.03424512042049921, + 0.02867276769666236, + 0.033227099894658337, + 0.05164086447830833, + 0.026255542458659988, + 0.029531926985406697, + 0.02994699164356896, + 0.031194009500070664, + 0.04219635425725538, + 0.02897367870267151, + 0.035404412624129654, + 0.04353838425440516, + 0.03005746644787031, + 0.029360821226933936, + 0.04145067417342066, + 0.03353121619125658, + 0.029961196335981877, + 0.038308386124025054, + 0.038067663368815174, + 0.041218530599271816, + 0.022591425136734615, + 0.03531397043805468, + 0.038171105008284606, + 0.02750194478531059, + 0.03865048832652142, + 0.035520572008991336, + 0.0446974958817931, + 0.0373798498854274, + 0.038585187568533755, + 0.03405366054175496, + 0.03258952087539378, + 0.0415856298342921, + 0.03211092770382733, + 0.04012091312546855, + 0.03374058262403983, + 0.045382560504147615, + 0.03913120413788293, + 0.036799789805306606, + 0.0332152496635875, + 0.03129299211249186, + 0.029394261708700183, + 0.03207169419173592, + 0.041083363589904234, + 0.027213338139541136, + 0.02984038676171651, + 0.029910533794823765, + 0.03018621699039128, + 0.027880740228359242, + 0.03482444311397569, + 0.03074809324625761, + 0.03145127066201142, + 0.025336936535130777, + 0.034508347213759206, + 0.02919722073584053, + 0.05393024518481438, + 0.03002772183898221, + 0.025715043849779105, + 0.03171544336179963, + 0.037982107756229726, + 0.03091434611696633, + 0.031149567042502213, + 0.030600725009674846, + 0.041499099742282164, + 0.038413715587188764, + 0.03465639603926772, + 0.03300648171507887, + 0.03713382812428467, + 0.03586187823517403, + 0.026698263516129264, + 0.035459862566539165, + 0.03855162550014608, + 0.03262769296554796, + 0.025489109084121015, + 0.03322769491151407, + 0.02954616187096633, + 0.031084699639821547, + 0.03335711804589879, + 0.04080766746252395, + 0.030857730556546885, + 0.03390970086156695, + 0.034122545059163616, + 0.030391798211392273, + 0.03133507122522102, + 0.03495119103747878, + 0.04075216518163384, + 0.03463034825078001, + 0.033612394787972885, + 0.028259104490819833, + 0.0353127578841417, + 0.03067667096202965, + 0.030854685246250367, + 0.03598260668240897, + 0.033226320828300376, + 0.04378376457002912, + 0.030939831784511124, + 0.04400846139035187, + 0.038610066610099254, + 0.032774988130345066, + 0.029280605379089827, + 0.040563074895336865, + 0.034167152051105064, + 0.03333086489827231, + 0.034270683379884946, + 0.03488338116321936, + 0.03625151079747271, + 0.02936389000533999, + 0.03732495825332566, + 0.03417562244184149, + 0.025498868869240774, + 0.03723657906836694, + 0.03565920550073567, + 0.03245626475229878, + 0.029130562871005697, + 0.030095065772267792, + 0.03282856823303878, + 0.032950493164861, + 0.032619266675051335, + 0.02809559312656241, + 0.03850129464518264, + 0.04802446569353224, + 0.03418038784092213, + 0.03330307978932768, + 0.02911988289031628, + 0.04342150037230189, + 0.027384022256190105, + 0.03295789215689241, + 0.029234816888463452, + 0.03672123514457518, + 0.022909630901197915 + ] + }, + { + "legendgroup": "Point sensor 1", + "marker": { + "color": "rgb(254, 136, 177)" + }, + "name": "Point sensor 1", + "type": "box", + "y": [ + 0.036715758805018886, + 0.03761371111404099, + 0.04456597690680631, + 0.03718887422326402, + 0.033132472617124625, + 0.037657413931649786, + 0.04234875422909278, + 0.037238221554076995, + 0.045919221257021275, + 0.038321924181496686, + 0.031434053949908176, + 0.032726549090277994, + 0.04354179279219842, + 0.03246368672870783, + 0.049934067167416364, + 0.03839509398449641, + 0.036437367912440864, + 0.04701340444953794, + 0.035251506790326494, + 0.03412915861997621, + 0.05383112514876364, + 0.03429827310248325, + 0.04579368773891595, + 0.03615130466899878, + 0.038116872844928804, + 0.035231914798963676, + 0.038604399840541426, + 0.0382909882182403, + 0.04711148250855792, + 0.042736553114686965, + 0.03782049370205443, + 0.03413348562076277, + 0.04637648287308303, + 0.03206601057951527, + 0.04008568278783138, + 0.042893355437984025, + 0.025818142280357167, + 0.041603632819273484, + 0.03011363592143891, + 0.04138800581439414, + 0.04500984724975833, + 0.03310081102795008, + 0.04109290584897363, + 0.03884816299251912, + 0.036760629587739596, + 0.03118914761049454, + 0.041873178769359955, + 0.04926448726557633, + 0.04060190413004521, + 0.02783967608311954, + 0.03411554053733904, + 0.031395532752002096, + 0.03145514615149224, + 0.039197807095975645, + 0.0457954521944346, + 0.03169889525012153, + 0.031532530129754384, + 0.03574930514781961, + 0.038559171135237706, + 0.04037204254937333, + 0.042746669319890136, + 0.03212961299476064, + 0.03245902049955026, + 0.03714212407403122, + 0.03972198063953546, + 0.04261377921742891, + 0.03977461520070003, + 0.03700482605779567, + 0.03488917583644346, + 0.03713005849986378, + 0.03994963511627558, + 0.041265011778509726, + 0.031147639813542825, + 0.03552359640915921, + 0.03686222189026885, + 0.03191640435709627, + 0.035510666793420236, + 0.042461754462181325, + 0.04426469317235396, + 0.038212985721771404, + 0.029464987635476482, + 0.035941865312509626, + 0.039668587835598734, + 0.035802967253612754, + 0.04103882697664019, + 0.04349635089186975, + 0.03270921346719475, + 0.04656388943147724, + 0.04877705044131105, + 0.03268038335037063, + 0.046536225003309284, + 0.04086372265798133, + 0.04012348983648039, + 0.036121005111605445, + 0.04994769543625967, + 0.04090634448047167, + 0.040808508720138484, + 0.03387584006346526, + 0.038420676687771924, + 0.03381287436189031, + 0.0350115621353388, + 0.03422804090175431, + 0.028652465315277823, + 0.05032389452312852, + 0.035919103168372345, + 0.03974854254822322, + 0.03823071792091161, + 0.03942585534893113, + 0.038379276561192485, + 0.045855066456581536, + 0.03595089258946792, + 0.039590156848364186, + 0.03531986591258068, + 0.037446281311663485, + 0.03345940093749702, + 0.0342064672287236, + 0.03824269990604003, + 0.036052412210443884, + 0.0341504861868828, + 0.03553971624291649, + 0.03839504896027137, + 0.03876100322649816, + 0.030307696075307825, + 0.04472182442027818, + 0.03296284998211795, + 0.032875910093475395, + 0.03093743819354595, + 0.028767392962930585, + 0.03379512477720949, + 0.041691419585193346, + 0.04833500831868932, + 0.032425216454222285, + 0.04501390283480769, + 0.04507443633997496, + 0.0371955493364154, + 0.04781971205787785, + 0.038110730590611035, + 0.032396046051616674, + 0.025498066971874307, + 0.04084221583481411, + 0.041070706484451554, + 0.03486562539395797, + 0.04123603683460369, + 0.03574369407470367, + 0.03529551267489222, + 0.034805717293250306, + 0.0345674469031942, + 0.03506302980313492, + 0.04129198261086204, + 0.030233889527466105, + 0.029956577667988846, + 0.038676934838223404, + 0.037827285357187206, + 0.043605037935895444, + 0.03861726362801062, + 0.053455527359566296, + 0.04276312261256083, + 0.031230972325134162, + 0.034031310507457994, + 0.038511916693395334, + 0.03752132996725646, + 0.036477466230067083, + 0.03827411168894807, + 0.04458429469512739, + 0.04028289803786684, + 0.03481671330111602, + 0.04137311759601927, + 0.047753126625883914, + 0.05374250225761889, + 0.03647807564876881, + 0.04211232450063844, + 0.0453396086023153, + 0.03307908850393018, + 0.03811203326989287, + 0.049116505676995395, + 0.037621427494362376, + 0.03839892675231242, + 0.03656940580745141, + 0.03453755380197039, + 0.037552059123979874, + 0.03922348219327412, + 0.03229997775640834, + 0.03327999085518921, + 0.04549728891678381, + 0.03984453344888643, + 0.030510942993538643, + 0.03904547561040457, + 0.03208002531368396, + 0.027409414990058185, + 0.03528593226615993, + 0.03611918827485112, + 0.04656962506420212, + 0.03048303457917555, + 0.044334889634226236, + 0.038323637382725054, + 0.03172328750653148, + 0.03556667053121626, + 0.03166788709905574, + 0.03787374944796257, + 0.03249448127491312, + 0.036784004885176566, + 0.03265570792722773, + 0.03682818941106086, + 0.034765505102137266, + 0.05240118727218184, + 0.03083048923546675, + 0.03731579847248726, + 0.0327838678261412, + 0.03870031954389056, + 0.032945173924617904, + 0.028630993109236783, + 0.03698382209053213, + 0.035855363148220826, + 0.03431194629389971, + 0.03413802712023519, + 0.037849382044431924, + 0.04071454053629859, + 0.02820144456080722, + 0.04795429088694991, + 0.03377623445294014, + 0.03652885854229156, + 0.03642219155140446, + 0.033124976313715276, + 0.03540159224560339, + 0.032387490121606625, + 0.034759827601520465, + 0.03502919694122812, + 0.04073007449141678, + 0.033126622206818675, + 0.03168311392296023, + 0.03257260437372503, + 0.027973061429932583, + 0.03963787369566249, + 0.037670992184334035, + 0.03924445913839103, + 0.04122290902023144, + 0.038303528342821754, + 0.0528733736784215, + 0.04859971810540912, + 0.03560087902874911, + 0.03709536999624559, + 0.03243680667606082, + 0.035994150977498515, + 0.03933153163254163, + 0.03463418373235728, + 0.047575757719931076, + 0.03913106643152115, + 0.034275373131912215, + 0.038478496608045, + 0.04192593600496307, + 0.03780683252228998, + 0.040012373002774916, + 0.030068832402393973, + 0.040765838550652814, + 0.04071041656768251, + 0.03491264157673311, + 0.034616488981418246, + 0.037729888200561924, + 0.039326857615045105, + 0.0403561351234101, + 0.03342701507189249, + 0.035853776378555954, + 0.04115443073458149, + 0.035273981091055145, + 0.03503677464026672, + 0.038807740044502916, + 0.03617434498934482, + 0.029481249226995083, + 0.033959281382261335, + 0.042242805608274626, + 0.03267122648161732, + 0.0486245034217485, + 0.032120120134161496, + 0.03855285233300243, + 0.040420702265604666, + 0.032461548197925724, + 0.036501404180481825, + 0.03215728002069525, + 0.03699564344558575, + 0.03819538083950608, + 0.03954884705152558, + 0.03302452199893271, + 0.042581151332845145, + 0.04912720225706742, + 0.034872434803216286, + 0.03390827340594482, + 0.03065128825040589, + 0.034963237200559036, + 0.03909741264909873, + 0.036386376270845254, + 0.03841659402878601, + 0.03163563934812633, + 0.034922148213328674, + 0.04608944466655259, + 0.03800802944687497, + 0.03651597950613402, + 0.03631512309197612, + 0.04099829222019171, + 0.03168102963358898, + 0.04262810984998972, + 0.0481117156733257, + 0.03792402145916822, + 0.036862856985281744, + 0.033714579433573026, + 0.03591687613205214, + 0.027777602978446867, + 0.03948379417629511, + 0.04319372891274068, + 0.04178066938033448, + 0.04939616479649805, + 0.04051935875858258, + 0.04351556074216845, + 0.03405263863167781, + 0.039270052995746825, + 0.03550127543783229, + 0.04021746324120415, + 0.03316882929301414, + 0.03389962184983024, + 0.0450845856860652, + 0.03574600057991202, + 0.0356267972270591, + 0.030413294581296067, + 0.028715018587594055, + 0.035275566138418465, + 0.036871269445998806, + 0.034040031980973974, + 0.03805484076374, + 0.034593480045221725, + 0.042121585492652984, + 0.03625583481001632, + 0.03979905218183054, + 0.04556974776576977, + 0.04423392265115496, + 0.050105632039687965, + 0.053591114957901816, + 0.0364930556297462, + 0.04460061656844819, + 0.044082620578703616, + 0.0313912300325533, + 0.03771466378309827, + 0.037445416581557006, + 0.03952914365267955, + 0.04156333053878333, + 0.052146521440500256, + 0.05006224063592753, + 0.03896355303421334, + 0.03204176943263184, + 0.032322547074799125, + 0.03636980657987255, + 0.03605124256024008, + 0.03150404211988156, + 0.03833507626727329, + 0.0463236734941982, + 0.03640437679183998, + 0.03665731286515921, + 0.030847995614580327, + 0.03557375131272736, + 0.029525449133674737, + 0.03339337266621251, + 0.03806893657070767, + 0.04099317534439092, + 0.02718029775391553, + 0.04285619230014603, + 0.04325726673663316, + 0.03314613135051852, + 0.035310038733344255, + 0.06217408779892531, + 0.04327919637549718, + 0.04157601647938288, + 0.029980832709806605, + 0.03967373473194308, + 0.03913776200370407, + 0.031132911077561623, + 0.048267672246126284, + 0.04073232817516046, + 0.038553132035627186, + 0.03355393230385968, + 0.03514366144251663, + 0.04562009777490662, + 0.031405364903795634, + 0.04354602084761362, + 0.03281288182522867, + 0.05397977844053224, + 0.033182670541921824, + 0.038324368996281874, + 0.047334601372317514, + 0.04022055149191233, + 0.04434032231968132, + 0.025494672813232654, + 0.04205373626125983, + 0.036852248776034054, + 0.034428004358127165, + 0.03328427277397614, + 0.04659191762217323, + 0.033524968334039736, + 0.040599082382452516, + 0.04448002864194957, + 0.04641790503075131, + 0.04211785295979987, + 0.039832703082206315, + 0.03617076797226818, + 0.031753287810065214, + 0.03719040880606877, + 0.029288885283735227, + 0.043121357925815514, + 0.035890700247404414, + 0.03520193380510459, + 0.04493682708698273, + 0.0466023363391465, + 0.03379706900596952, + 0.058493841431780734, + 0.04215221999902843, + 0.03536337355906207, + 0.04031609269222653, + 0.04081382476808683, + 0.041661630952518215, + 0.05728950184369718, + 0.032652825240454306, + 0.03956073314051078, + 0.033285257517793425, + 0.03812875877441297, + 0.04248569116899837, + 0.03503979073940796, + 0.033444681140956764, + 0.037920939305003905, + 0.034016385574238646, + 0.04240077522783257, + 0.030919825360622977, + 0.03227200144823134, + 0.0346883068545051, + 0.03135239271376074, + 0.03339742069283562, + 0.045554527366074585, + 0.04349902071317852, + 0.04003642633358658, + 0.03511976938431598, + 0.04743637995159247, + 0.028820246702059057, + 0.04207449140224095, + 0.03082458851664636, + 0.037825004009256195, + 0.03446887437671457, + 0.032691174189143295, + 0.045925240869170665, + 0.045928670947635614, + 0.03585278521514025, + 0.042025404606922376, + 0.03572623715952867, + 0.03267433757833829, + 0.03428696755041483, + 0.040639043684093025, + 0.03107035545919085, + 0.03769137784310412, + 0.05119760514161173, + 0.035255356543607654, + 0.0367692234256108, + 0.044334140481637745, + 0.04148454402119714, + 0.042096936352653526, + 0.031023538314860592, + 0.03911579398772624, + 0.03361444498547066, + 0.030948608165972388, + 0.03180923841136716, + 0.03726770061243345, + 0.03412941375542722, + 0.0370676385803837, + 0.035413153236857134, + 0.03318173550653759, + 0.0304331241644281, + 0.04116806140436625, + 0.04059554333290755, + 0.04367390778702419, + 0.043259165276442656, + 0.03087978404179307, + 0.035237517026634115, + 0.03407840583224009, + 0.03291522081223747, + 0.03989796369154243, + 0.04180631806741871, + 0.02867514275255773, + 0.04550072158426954, + 0.04236889888461575, + 0.041960017372774897, + 0.04203140961165115, + 0.04568547888395555, + 0.03177198831219585, + 0.03277854905223265, + 0.03193896476445684, + 0.03552755023832265, + 0.034901580493108784, + 0.03944203739915901, + 0.034568907713423094, + 0.035721357930727456, + 0.0420236706420898, + 0.034069390568612135, + 0.03649372236840224, + 0.04102000105412112, + 0.03882396251730577, + 0.032024371110323704, + 0.03694798626048489, + 0.04312620218039104, + 0.02940280655957277, + 0.02943009362255559, + 0.030557612857763594, + 0.03650381114732613, + 0.046064805996793, + 0.043258041128460815, + 0.03854306475247794, + 0.03841673962699952, + 0.030598370462560243, + 0.03815858320935913, + 0.04128284109222594, + 0.03598947194437622, + 0.0406147252608411, + 0.03315449658131274, + 0.04123964834380255, + 0.02753420661999809, + 0.03270271587171278, + 0.03497745976085453, + 0.03095616609342909, + 0.027250050929667338, + 0.03970312623064339, + 0.03226590806941381, + 0.038503561814189825, + 0.036997049510136645, + 0.03600907442680853, + 0.03726837922999698, + 0.03794910187266225, + 0.03488012584264187, + 0.039759145362038076, + 0.035806505575580745, + 0.03716548291311412, + 0.050622835209477426, + 0.03522375429637303, + 0.033502821790153556, + 0.04096306305732284, + 0.045146597656104334, + 0.0478256034550368, + 0.0311548931919735, + 0.037032767752720616, + 0.03593509229308459, + 0.04398794972952077, + 0.042869846221773346, + 0.033990000805269385, + 0.03871713116807088, + 0.04366248405677596, + 0.040471703681991454, + 0.033802680210603606, + 0.035309863572722186, + 0.04389355334425488, + 0.0420250764315575, + 0.04398168210529612, + 0.042392431188078714, + 0.033361226369466916, + 0.038628040215847134, + 0.04714707864359085, + 0.04954018189723753, + 0.032650644125130315, + 0.03470353934224197, + 0.03696029199949361, + 0.0447254401708197, + 0.03537698094940832, + 0.05656921863476538, + 0.03812487267864114, + 0.0369095164104582, + 0.030181036369957743, + 0.03449813484304725, + 0.03832787534634266, + 0.029076206640076176, + 0.03813431321259202, + 0.0490460055902869, + 0.040993423563871145, + 0.03323540341506663, + 0.03048815905620584, + 0.03539833020433229, + 0.03303933739290288, + 0.03660638205986224, + 0.034270350749987015, + 0.033290549461506766, + 0.04481449127872367, + 0.03477832303885998, + 0.03260268258900209, + 0.03534148773317315, + 0.03814070205231663, + 0.030064552444546547, + 0.03200865841771246, + 0.03550647567857795, + 0.031814521606439404, + 0.04764201935977072, + 0.03724071880043243, + 0.02856081813599978, + 0.03657225814376211, + 0.03700841072160198, + 0.03940971268771039, + 0.03994592328231754, + 0.04677841675705772, + 0.037649978783837405, + 0.04185578848778017, + 0.04067608674680462, + 0.0358439363000699, + 0.04519684131741998, + 0.03127379334522184, + 0.03964079824395828, + 0.03855251904484925, + 0.024547150881771614, + 0.03476442479423285, + 0.034705583444607356, + 0.0300893727512181, + 0.040023965400510356, + 0.03373566823005311, + 0.03772742071448869, + 0.037356209236610906, + 0.03570458813813139, + 0.038873572666241606, + 0.032355132220645816, + 0.0358740213455162, + 0.03619017383443481, + 0.03896303412197466, + 0.045856338394925776, + 0.05278302287900306, + 0.03522155291484008, + 0.03002378819186469, + 0.026608937862630334, + 0.02772280411391115, + 0.04044651394279887, + 0.038216593967417924, + 0.03794481369998554, + 0.05091749337662563, + 0.034958314547877706, + 0.03533281178708115, + 0.034694421164319145, + 0.03228025223837834, + 0.038849612937189026, + 0.034820626945238235, + 0.03001934617176302, + 0.03343319880973928, + 0.028230293463656676, + 0.037861884761831506, + 0.033711836527189995, + 0.05112813548880267, + 0.03264600113872191, + 0.029302118986939144, + 0.03571406435478474, + 0.03047135760575729, + 0.03691681379191519, + 0.035212450889755095, + 0.040728034366704156, + 0.04585443602349566, + 0.03916837250158608, + 0.03504363325813114, + 0.033303499985894616, + 0.0417600959811885, + 0.030891552581508597, + 0.035924357797211086, + 0.04266986199305422, + 0.03398206118061026, + 0.041023279515027905, + 0.03944370348494714, + 0.03705031100351998, + 0.041066025029738315, + 0.04041253197160983, + 0.039959395679422825, + 0.02989221788628325, + 0.030411178044856928, + 0.035293462113850975, + 0.038282172159236995, + 0.03566464785437826, + 0.029195642959499966, + 0.041546342493078786, + 0.0289685173754357, + 0.04172586078641956, + 0.03876980141561623, + 0.0478283970006955, + 0.0327671267705137, + 0.03583056189793245, + 0.04198295986520934, + 0.04346603097918601, + 0.039908833118398206, + 0.049473725186255, + 0.03683157643841259, + 0.03926910968681111, + 0.047289199640616245, + 0.03372380494027929, + 0.032182989635634165, + 0.030368862426789083, + 0.04751010780115772, + 0.03557728152634131, + 0.047954247331647396, + 0.038420288842531666, + 0.02939233949735182, + 0.03277433183893398, + 0.0390984508891777, + 0.03636729077962587, + 0.03448643707764093, + 0.03268864297639987, + 0.040108119135399634, + 0.049798708661981946, + 0.03678390539114291, + 0.039998438433724574, + 0.03854263818466514, + 0.04776961776767226, + 0.033998173209268776, + 0.03377968496390118, + 0.028275543150118376, + 0.043467296595756245, + 0.03951336339245892, + 0.048176958143833284, + 0.030721763320730434, + 0.03310746387678, + 0.03230820620755947, + 0.039217724684260075, + 0.03502446341316087, + 0.03504059948746193, + 0.038757632580718925, + 0.03460469519924199, + 0.03611405437825071, + 0.03332343730273547, + 0.03952122980839566, + 0.03227004547172884, + 0.03910132598827834, + 0.03514184378283162, + 0.02453250543849377, + 0.044832907297114914, + 0.04509653911330959, + 0.03531850948703844, + 0.0305621977132097, + 0.03212741615703472, + 0.037142314690957225, + 0.03781102330381647, + 0.03701432874465733, + 0.03364984857686847, + 0.0395164187691393, + 0.043321895680821135, + 0.04305840678022903, + 0.03500959355326003, + 0.03469545700730703, + 0.03236512096115993, + 0.036600836768203464, + 0.03422782617721934, + 0.037938134311551776, + 0.032912880882121937, + 0.05310622503702585, + 0.050227399100962154, + 0.03904336489836897, + 0.03280365395872515, + 0.03132847850985798, + 0.03302644561539792, + 0.046946972738591185, + 0.0552530309424089, + 0.029239208030320235, + 0.03599066301762308, + 0.03846009106959797, + 0.03758982173708299, + 0.047720199347417225, + 0.03715244936913667, + 0.04927709982452329, + 0.03852735189821503, + 0.03198450383016956, + 0.02993026437456573, + 0.04108490763054484, + 0.032593767043800966, + 0.03480391243583194, + 0.04385632503528801, + 0.03409195075013542, + 0.03582887653968277, + 0.038229415819002036, + 0.031938948424721246, + 0.03136718621038808, + 0.03861404630074924, + 0.035017736836875306, + 0.03730197207010379, + 0.041079546124591665, + 0.03985152756424145, + 0.04000635400549778, + 0.03451246141151545, + 0.03167445660532408, + 0.0313621086042509, + 0.039756581672345616, + 0.04627707375963826, + 0.046897010240020055, + 0.03961169881736599, + 0.04120894396248618, + 0.040769225545362144, + 0.04337137273934242, + 0.04265367216893077, + 0.04057927079653007, + 0.03640286399835433, + 0.03524816852888787, + 0.03578299016885683, + 0.041738724553370174, + 0.03227292025451312, + 0.041550151177184504, + 0.03354870527602881, + 0.04207292164416621, + 0.035144328422441036, + 0.035218007755802055, + 0.04076482860750487, + 0.03034152330758941, + 0.03534968717759012, + 0.03339723094411533, + 0.03761584553265372, + 0.03811440155482926, + 0.03850504215706432, + 0.034569235490956564, + 0.04117038380915522, + 0.03998332555018564, + 0.048963212186058404, + 0.04068930318740775, + 0.051230348980074766, + 0.043167179471734665, + 0.030981606852595767, + 0.04766139749351286, + 0.03609709722979946, + 0.03663655142415297, + 0.04079106742130546, + 0.045027943720183275, + 0.037448201669320016, + 0.03749659895082117, + 0.034285064215763265, + 0.04711966942810368, + 0.03345548890160075, + 0.035747687616916504, + 0.03287567952181188, + 0.037991964098357624, + 0.05084295879844406, + 0.04115232652713058, + 0.03916642007267858, + 0.0355355252044281, + 0.037685657968598255, + 0.03929881169371623, + 0.047096820547840264, + 0.03630783847680934, + 0.03776251239951641, + 0.04069621400708909, + 0.0345158862693513, + 0.038983185799087494, + 0.04078520766773981, + 0.02724651134845857, + 0.038152194830535044, + 0.037448089803971914, + 0.04295717774464004, + 0.03663809018976437, + 0.03151298551319034, + 0.038263571380799784, + 0.032413406139652844, + 0.036886272810248116, + 0.02507324984329856, + 0.03531971027664307, + 0.05148950949818906, + 0.03487848442976768, + 0.03778527549067953, + 0.05188220653370576, + 0.030039764199134095, + 0.031551246095689954, + 0.03182281326234237, + 0.03543592554033476, + 0.036163484477228884, + 0.02782924796415899, + 0.04474076102053988, + 0.041284999622458726, + 0.042380186090729334, + 0.0353159285744934, + 0.03996116974606357, + 0.04801605913664819, + 0.026261989107443876, + 0.034740708171773785, + 0.03153324200525825, + 0.03511526614440834, + 0.03779528408806364, + 0.039374836089906905, + 0.046213736549700776, + 0.027265216516405705, + 0.037513401327044865, + 0.04756384734973701, + 0.047908365471021494, + 0.03361972731001055, + 0.04221718252928745, + 0.037356522206077485, + 0.03280983592694139, + 0.04516690736834899, + 0.03978378005505906, + 0.04620767901090783, + 0.03725988040543196, + 0.035162291993136675, + 0.03448428958736897, + 0.03959091980111926, + 0.028931684831879332, + 0.03895922856546835, + 0.028298971128085215, + 0.03490782755804173, + 0.03511732029514529, + 0.050244121939968245, + 0.031820879260899076, + 0.030195418800929883, + 0.041589514269203195, + 0.03779480562900424, + 0.04239894617502984, + 0.033624017570215665, + 0.037107073094897136, + 0.05310804491524878, + 0.043325045868050686, + 0.036281319004022594, + 0.03958125679965071, + 0.042405238314352625, + 0.038962790723302304, + 0.03598139619718316, + 0.03616571768582562, + 0.04070052067185569, + 0.04279307477397425, + 0.03955767194747536, + 0.036701075821195285, + 0.034794453735439206, + 0.04126197939185707, + 0.04378288167451097, + 0.03483505066652167, + 0.03377253134595925, + 0.0383370562880236, + 0.039034252351142835, + 0.03501180242307437, + 0.039743479890648546, + 0.029433364749011752, + 0.05522630347174714, + 0.03352342598036267, + 0.03343097884244875, + 0.041155678631908846, + 0.052767316098641756, + 0.034484016963980076, + 0.0414499259366305, + 0.0405256587499812, + 0.03647764598499793, + 0.04046164078210102, + 0.04400240008169536, + 0.04305056557175917, + 0.029241393452320026, + 0.03855658152568071, + 0.04090935151877452, + 0.02928285000296055, + 0.031338560988288806, + 0.03524990531718819, + 0.037701292009701806, + 0.049114403463130445, + 0.03523723449883331, + 0.036202010876162566, + 0.02991708576317777, + 0.030357279528354777, + 0.032405301751366536, + 0.03476870735833102, + 0.04057174517876091, + 0.03620989454277899, + 0.034868536610309746, + 0.03595569114068582, + 0.037224999809258405, + 0.05198272218944813, + 0.03645978280758643, + 0.043478504958563764, + 0.04202260968968424, + 0.041662028649610196, + 0.04068757190303886, + 0.03627856173879898, + 0.031943608913016494, + 0.034557061453707814, + 0.03329827307538936, + 0.0350466831086224, + 0.03325581350954688, + 0.03323239121430699, + 0.037167471350784756, + 0.0480015768847278, + 0.032796826992872036, + 0.03564636112651177, + 0.03397719595598885, + 0.0373680463390271, + 0.036857949087254815, + 0.03244421652526183, + 0.05392982774259806, + 0.04096459364259667, + 0.03613612546424471, + 0.03802777264978094, + 0.040698071806505864, + 0.03496244423426635, + 0.03574761231453372, + 0.04612934103162972, + 0.04095733848162617, + 0.03110888428389563, + 0.03460125471663463, + 0.04090131956205121, + 0.03336182758512927, + 0.03440894677688133, + 0.035557770673273995, + 0.03634887432219722, + 0.03679454227779686, + 0.03541922043809757, + 0.028474730241103238, + 0.041066577985584295, + 0.03895993329907872, + 0.03481090691759697, + 0.041868514951671425, + 0.038819822772288994, + 0.03503792693588444, + 0.04783627732122744 + ] + } + ], + "layout": { + "autosize": true, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "font": { + "family": "Futura", + "size": 20 + }, + "legend": { + "font": { + "color": "black", + "size": 14 + }, + "orientation": "v", + "x": 1.2, + "xanchor": "right", + "y": 0.5, + "yanchor": "middle" + }, + "title": { + "font": { + "size": 30 + }, + "x": 0.5 + }, + "xaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + }, + "yaxis": { + "linewidth": 2, + "showline": true, + "ticks": "outside" + } + } + }, + "title": { + "text": "Distributions of Estimated Error Model Values After Burn-In" + }, + "xaxis": { + "automargin": true, + "autorange": true, + "range": [ + -0.5, + 6.5 + ], + "title": { + "standoff": 20, + "text": "Sensor" + }, + "type": "category" + }, + "yaxis": { + "automargin": true, + "autorange": true, + "range": [ + 0.012418670009760107, + 0.21587377254925028 + ], + "title": { + "standoff": 20, + "text": "Estimated Error Model
Standard Deviation (ppm)" + }, + "type": "linear" + } + } + }, + "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQeUFUXahr/J5CAIAoJkRHFxBf9lUcAVJYgJFUXAdUUR14RKUDCBIEZETMgCJhBzDouy4gqKAUQUEUkiWRAkCkz+z1tYszU93be77+0b561zPOrc7qrqp6q7q97+QlpxcXGxsJAACZAACZAACZAACZAACZAACZAACZAACdgSSKN4wplBAiRAAiRAAiRAAiRAAiRAAiRAAiRAAs4EKJ5wdpAACZAACZAACZAACZAACZAACZAACZBACAIUTzg9SIAESIAESIAESIAESIAESIAESIAESIDiCecACZAACZAACZAACZAACZAACZAACZAACYRHgJYn4XHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAuWEAMWTcjLQvEwSIAESIAESIAESIAESIAESIAESIIHwCFA8CY8bzyIBEiABEiABEiABEiABEiABEiABEignBCielJOB5mWSAAmQAAmQAAmQAAmQAAmQAAmQAAmER4DiSXjceBYJkAAJkAAJkAAJkAAJkAAJkAAJkEA5IUDxpJwMNC+TBEiABEiABEiABEiABEiABEiABEggPAIUT8LjxrNIgARIgARIgARIgARIgARIgARIgATKCQGKJ+VkoHmZJEACJEACJEACJEACJEACJEACJEAC4RGgeBIeN55FAiRAAiRAAiRAAiRAAiRAAiRAAiRQTghQPCknA83LJAESIAESIAESIAESIAESIAESIAESCI8AxZPwuPEsEiABEiABEiABEiABEiABEiABEiCBckKA4kk5GWheJgmQAAmQAAmQAAmQAAmQAAmQAAmQQHgEKJ6Ex41nkQAJkAAJkAAJkAAJkAAJkAAJkAAJlBMCFE/KyUDzMkmABEiABEiABEiABEiABEiABEiABMIjQPEkPG48iwRIgARIgARIgARIgARIgARIgARIoJwQoHhSTgaal0kCJEACJEACJEACJEACJEACJEACJBAeAYon4XHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAuWEAMWTcjLQvEwSIAESIAESIAESIAESIAESIAESIIHwCFA8CY8bzyIBEiABEiABEiABEiABEiABEiABEignBCielJOB5mWSAAmQAAmQAAmQAAmQAAmQAAmQAAmE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b56KudKjR48yde/bt08Fsz3xxBPl7LPPLuk7XHkee+wxGTdunMDth4UESIAESIAESIAESIAESIAESIAESIAE/BCwtTxBSuLp06ertMSIZ4J/o+Tl5cn27dulqKhIatWqJRUrVizVFn7HP7A6gQBTtWpVP31xPHbXrl0yfPhwFRQ2nNKwYUOZMGECxZNw4PEcEiABEiABEiABEiABEiABEiABEijnBGzFk/Xr18s777wjgwcPlszMTIUIlh9wyVm0aJGMGDFCjjjiiDLoEEQWWXi6dOkSaKpitA3Xm1deeSWs4aJ4EhY2nkQCJEACJEACJEACJEACJEACJEACJCAituIJxIply5ZJq1atSjLowJ1nzJgxcuWVV4aMZwI3mY8++kj++c9/llisBEEabkSLFy+WCy+8UNLT0z1VietYunSpTJkyhW47nojxIBIgARIgARIgARIgARIgARIgARIgASsBzwFjvWay+e6772Ty5Mlyzz33qPTFQRVk3Fm7dq20adPGV5UMGOsLFw8mARIgARIgARIgARIgARIgARIgARKwEPAsnhw8eFAJIt27d5eOHTvagoTbzsSJE1Ww2QceeCBQ8UQ3CGsSxEBBZp38/HyVvrhevXol7kUcYRIgARIgARIgARIgARIgARIgARIgARIIkoBn8QSNfvDBBzJt2jS5/vrr5aSTTirlPgO3nqeeekref/996datm9xwww2Buu2gfbgSTZo0SVmgmCUnJ0d69+4t/fv3lwoVKgTJh3WRAAmQAAmQAAmQAAmQAAmQAAmQAAmUcwK+xBNYlkA8eeONN1SmHZ3615qFBxYqTZo0CRTtwoULVcyV3NxcJdrUrl1bsrOzVRsHDhyQHTt2SIcOHVSWn8qVKwfaNisjARIgARIgARIgARIgARIgARIgARIovwR8iSfAhDTFCxYsUHFNtm3bVorc0UcfrcSLBg0aBEoULkNjx46Vr776Sk455RQZNGiQSqGsC1x5kMZ4/Pjx0rVrV+nbt2+g7bMyEiABEiABEiABEiABEiABEiABEiCB8kvAt3iiUUFEgXiCtMYojRs3VumJ09LSAqeJYLVDhw5Vli6jR4+WqlWr2raBTD8zZ86UUaNG0fok8FFghSRAAiRAAiRAAiRAAiRAAiRAAiRQPgmELZ7EEhcy7UA0QXDYIUOGODbtNSNQLPvOtkiABEiABEiABEiABEiABEiABEiABJKbQFjiycaNG+WZZ56RRYsWqXgjEDVOP/106dWrl6NVSKSYvvjiC5k7d64MGzasJNaJtU5k4Hn22Wfl5ptvLrE8YariSMnzfBIgARIgARIgARIgARIgARIgARIo3wR8iSeILTJ79mx5/PHHVeBWa6lWrZpymWnXrl3gVNH2vHnzZP/+/dKjR48y7kH79u2T++67T0488UQ5++yzS9qHK89jjz0m48aNKwlwG3jnWCEJkAAJkAAJkAAJkAAJkAAJkAAJkEDKEvAlnnz33XdKHEGBpUnnzp2lUaNGKvsNst18/PHHSuC48847pXnz5oFB27VrlwwfPlwFhQ2nNGzYUCZMmEDxJBx4PIcESIAESIAESIAESIAESIAESIAEyjkBz+JJYWGhEiB++eUXlVHHzHZjMvzkk0/k66+/VrFJMjIyAsELq5OpU6fKK6+8ElZ9FE/CwsaTSIAESIAESIAESIAESIAESIAESIAERMSzeALrD1iUXHXVVdK6dWtHeLBAgZvMTTfdFGj8k5UrV8rixYvlwgsvVJYuXgpEl6VLl8qUKVPotuMFGI8hARIgARIgARIgARIgARIgARIgARIoQ8CzeOI1k82mTZvkoYcekttuuy1QNxlk3Fm7dq20adPG1zAyYKwvXDyYBEiABEiABEiABEiABEiABEiABEjAQsCzeHLw4EF54IEH5KKLLpKWLVvagiwoKJB//etfsnr1ahk7dmxJxhuv1BGE9ocffpDjjz++TEBYr3VYj4P1yY8//ihNmzaVnJyccKvheSRAAiRAAiRAAiRAAiRAAiRAAiRAAuWUgGfxBHw++OADlW1n6NChKj2xLkVFRbJu3TrlroOgspdffrn07ds3LKQLFixQsVL+8pe/hHW+eRKEk4ULFyo3n/bt20dcHysgARIgARIgARIgARIgARIgARIgARIofwR8iSdwnUGa4jlz5kitWrWkYsWKAoFi+/btJamLO3TooALKVq5cOSyasF559tlnpUmTJnLKKad4jm9ibSwvL0/effddlQXosssuk8zMzLD6w5NIgARIgARIgARIgARIgARIgARIgATKNwFf4glQQZR4//335bnnnpO9e/eW0IO1yAUXXCADBgyQChUqREQVLkKTJ08WBInt37+/shrxWicEnq+++kpmzpypzoMVTHZ2dkT94ckkQAIkQAIkQAIkQAIkQAIkQAIkQALll4Bv8USjgoXIli1bZOPGjVKtWjVp1qyZZ4HDC27UD8uRZ555Rg4cOCC1a9eWY489Vlm8NG/eXCpVqqSq2bp1q2zevFn1ZdWqVcrSBFYvV155pfTo0SNsyxUvfeQxJEACJEACJEACJEACJEACJEACJEACqU/AVjxBDBNYcECE8JoWWKOK5Fw73BBDXnjhBRVrBQFlQxUEhIVgcvHFFyuRhYUESIAESIAESIAESIAESIAESIAESIAEIiVgK554TUts13gk54a6mPz8fFm2bJlyycG/9+zZow6H1Quy87Rr105at24tWVlZkTLh+SRAAiRAAiRAAiRAAiRAAiRAAiRAAiRQQsBRPEHQ1379+kmnTp08W5/A6mT+/Pkya9Ysuffee6VmzZpETQIkQAIkQAIkQAIkQAIkQAIkQAIkQAJJTcBRPEE64g0bNoR1cQ0bNpQJEyZQPAmLHk8iARIgARIgARIgARIgARIgARIgARJIJAIUTxJpNNgXEiABEiABEiABEiABEiABEiABEiCBhCNgK54g082cOXNUul8EYb3iiiukVatWru47SF381ltvyZIlS+TBBx+k5UnCDTc7RAIkQAIkQAIkQAIkQAIkQAIkQAIk4JdAyFTFEFG+/PJLefbZZ1W9l156qfzlL3+RzMxMx3aQHQfCyYgRIyie+B0NHk8CJEACJEACJEACJEACJEACJEACJJBwBEKKJ7q3CAS7atUqmT59umzZskX69u0rXbt2lQoVKpS5IKQ4htXK6aefrlIds5AACZAACZAACZAACZAACZAACZAACZBAMhPwJJ6YF7hp0yZ55ZVXZN68eXLWWWfJueeeSwuTZJ4B7DsJkAAJkAAJkAAJkAAJkAAJkAAJkEBIAr7FE10b4pu8/vrrKsZJ586dpU+fPtKgQYO44qbLUFzxs3ESIAESIAESIAESIAESIAESIAESSEkCYYsnmsbBgwflo48+khdffFHq1asngwYNkubNm0taWlrgwOAStHr1atm/f3+ZuvPz81U/Nm7cyGC1IcjDnQoFrlUsJEACJEACJEACJEACJEACJEACJEAC7gQiFk+2b9+uLFDefvttyc3NVS0iqOzIkSMDjXmCwLX33HOPQEAJVRo2bCgTJkygK5EDJIon7jcFjyABEiABEiABEiABEiABEiABEiABk0BY4klxcbEg9smMGTPkk08+kcLCQlVnnTp1ZODAgXLSSSfZBpMNFz0Ek9GjR8vSpUvl5JNPlvbt20v16tVLVUfLE290KZ5448SjSIAESIAESIAESIAESIAESIAESEAT8CWemFl3vv32W8H/o8BN57LLLpMTTjghZBrjcLHv3LlThg4dqjL89O/f37GaZIh5AjenWbNmKUsdpILu3bu3uia7zEXmhUKwWrJkiUyePFnWrl0rtWrVUufin+zsbM9oKZ54RsUD406gSAq2fiQFvy2S4vzdkl6poWTV6ynplZvGvWfsAAmQAAmQAAmQAAmQAAmQQPki4Ek8wSZ/8eLF8vTTT6uYIyjp6enSoUMHGTBgQNRinOihgGXLww8/LMcdd5x069bNcYQg5sBKBSmS0b9EK3l5efLQQw/J7t27ZdiwYZKTkyP33nuvig9zyy23hHRzWrhwoUoVffbZZ6vz3nnnHVm2bJkST6688krPohXFk0SbFeyPE4HCnYskb92s0j9nVpaKx9wuku5dMCRhEiABEiABEiABEiABEiABEoiUQEjxBFYSn332mTz11FOybds21VZGRob06NHDMbsOBIJVq1ZJixYtfFlEuF0IRBsEOUVA2szMTNvDIUpMnTpVHWN163GrPxa/w8Vp4sSJMm7cOGnTpo1qcuXKlUo4GTx4sHTv3t22G9pa5YILLpBq1aqpYyASQXiBBdB9990nrVu39nQJFE88YeJBCUAgb/0LUvjbwjI9yWk5RNIrHZUAPWQXSIAESIAESIAESIAESIAEygsBW/EEAsi7774rM2fOFKQkRoE1B6wczjvvPKlataojH7jYPPjgg8qyombNmoFy/P7772XLli1y2mmnlcnmA+uYzz//XJ5//nkVWDbotiO9EAggY8eOlV27dinRQzM8cOCAjBkzRsWNQVwXcLYWxJf59ddf5fjjjy/107x581SduF7EgfFSKJ54ocRjEoEAxZNEGAX2gQRIgARIgARIgARIgARIAARsxRMdY2TDhg0qCGy/fv1UvBG3uBywhpg/f7688cYbSiAISsCAgAPrDFhpuJVEzbYDAWT48OHSrFkzufXWW0tYIpYJXJLglvPAAw9IgwYN3C6x5PdFixYp4eT+++9X9XopFE+8UOIxiUCAbjuJMArsAwmQAAmQAAmQAAmQAAmQgCfxJBxM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iqZW8/HHH29bbbWVvfTSS9atW7dyoQLPD3KVtGnTxtVTTqVSjr9CxJPLL7/cZsyYkdZFxwo6aZ0kwgdJPImwcXVpIiACIhASge9f/dP1tMWRa4fUo7rJNIEf/vjKBn3zgC1bsdh5njQo3dA6trrG1qq9bqa70vlEQASSITBhhpUNHbv6J/faykr23iqZM+gzIiACWSaQtHiCqEElndNPP91at25t8fKLeOGDMsZ33HFHWhVvguJJzZo1rVGjRsbPyhrCDslr+SnxpPI7RuJJlp8onV4EREAEioCAxJNoGHnektnW54tutm6dRtZ5pzujcVG6ChEoVAKjv7ey9/+biyh4Da2aWUn7HQr1qjRuEYgUgZTEk7vvvtt5lhASE088IefJVVddZeuss06FcJ5UiHmRBs+VXXbZJZVDXQnlAQMGOOEm7LCdJUuW2HPPPWevvfaaS5579NFHW8eOHa1OnTpVXkMqx3766ad244032vLly8vPe9lll9mhhx5aZT98QOJJUpj0IREQAREQgUoISDyJxu0h8SQadlyyrMxGf7vMfp2/wurWqWH/bF7bmoYcUhcNkjm+infGW9nYH1YfROMGVnLq3jkenLoXARGAQNLiCYv1++67z4444gj7xz/+sZp4gtcHiWQHDRpku+22m11//fVJCQexZqhOxZzqHFud22HZsmV277332h9//OHEpdLSUifgELaEtw4ViRK1VI79888/7cEHH3QePTVq/B2nzH8fddRRSXv5SDypjqV1rAiIgAiIAAQknkTjPpB4Uvh2JN/v0+/+ZStX+cw1f1/TPq3WtC02DjcnUeHTzPEVPDnCymb/8fcgys1ZZrZmqZVcckiOB6fuRUAEUhJP+PBnn33mxJGuXbs6gcB7oiAODB482Pr162dlZWV2zTXX2L777psW4VWrVpkvgewFgmRPVJ1jk+0j3udGjBhhvXr1sltuucW2224795HJkyc74eS8886zdu3aJTx9Kse+++67RkgUYVPpNokn6ZLTcSIgAiIgAp6AxJNo3AsSTwrfjt/PWmEjJ6xeNr60VomdvF/izbvCv/IIXsHdQ6wsJlmsF1JKrj4ighesSxKBwiOQtOeJE0HLyuz111+3Rx991OrXr294QjRo0MB5oSxdutR5Q5x55pl23HHH2RprrFF4NNIYMSE3VBeaP39+hTwvixcvduE1eOTccMMNcb1PUjl27ty5rgoRSXkJZzrhhBOsRYsWKSfllXiShpF1iAiIgAiIQAUCEk+icUNIPCl8O74zZrH9/N/qV7FXc+bBaxX+BRbTFdz+GhXD/1s63F/43y4oJVcfWUwkdK0ikLcEUhJP/FX8/PPPLrfHmDFjjEU9Qso///lPO/LII9Na0OctnSQGBosrr7zStthiCydu+BwnCE1UJ8Jb56677rImTZqsdrZUjh0/frwNGTLE+EmpaISqww47zM4999yUwqMKUTyZtXiJLQjkeEnCLPb+zF9t7O/zbb+NG9mO66dWOaBhaamtX1o7mW70GREQAREoSgIST7Jj9qnzJ9iLX9+TnZPn2Vmvbv1kno2oMIfz6n8W2e8LK5a25UpYcneSeJJ7o1JBZ8L05MYxY+7fhkNACUZh8d+bNkzqHCWbNzLbc8ukPqsPiYAIpE4gLfEk9W6iewRJchFPCFO65JJLKlwoOWIItenZs6e1bNlyNQjpHvvTTz+5MCGEFBLTIqDE8/R59tlnV+vzySf/nqwgfhVKe2raT/bF/AWhDbfdRg3t0I0bhdafOhIBERCBQiMw850VbsiNDy4OL9Ow7PPDgq/s1e8fDKu7nPZzyY6P5LT/qHQ+dHSZ/bF0lVtv+0YeFNbbJ++jnCe5tnPNT763WqOnJjeMFWVmNUtW9zzBmDWCFk58uhVbb2wrDv47hUAhNNIRqIlAIRFIWjwhGSoJYamCQzWdeO2XX36xd955x4455hhba63icBX8/PPPrXv37tahQ4e44gneIrfffnvcykHVOZa8MCSlnTBhgt15550uiW9s69+//2q/oyIQrZDEk2Gz59o3CxaG9lztvv56tluD+Pd4aINQRyIgAiIQEoFl81LvaO5nf4snDXdNXTypvV7q/RXLEV48Wae0oW293m6RvOxPfxnqrkviSWLz/jC7zD6ZvLo3Sdwj/Mf+u7Z2YR//FU+SXG/b+mubHbSDhJZsPHAlCxZbjT9Xz0kTfyH1h9X6aHJF8WSV2YqtNrKy7TdJanhldUtt1Xp1k/psPnxI4kk+WEFjSIVA0uJJspVs3nzzTZs6dap17tzZataM/ot40qRJ1q1bNzvggANS9jypzrEYefr06a40dKdOnezggw9Oyu6FGLaT1IXpQyIgAiIgAikTWLXcbNrQP1M+rjoHbN5+batRqzpniO6xPmxnjZJaVrd2/Uhe6IKlv7nrUthOYvN+P3OFjZyY5IIbrwQf6hGI9sD75L+FGau8jzZYp4Z12L1wFtxVXlAhf+CjKVb28SQSTbqrKNm2idnhuxTyFWnsIhApAgnFEyrXkBCWnzQ8Tx5++GG74IILEnqezJgxw5555hmXB+Wee+6x9dYLd3uJftdff/2Uk6hWx6I+b8kOO+xgl19+eblgRKJYGIwbN67KnCfpHMuYfcLZPfbYww4//PCkLkPiSVKY9CEREAERKAoCZSvMZn6yKNRrbbxHXStJ3WEl1DHmqjPlPMkV+cLu94UPFtqipX9fQ5mVuXnwobvVtY3WrVHYF1aso/98qpW9O9Fs582t5MBWxUpB1y0CeUmgUvGEnBwvvfSSUU4XMSDZRv4PPCJq1w436eawYcNs++23t0aNwstX4QUMqutQdYeyzTTCaq6//npXWpifPpFskGF1juU89EnIzkknnRQ3bCeevSSeJHsX63MiIAIiIAIiEC4BL57UWaOeNaq7eqL5cEeTnd6mL5jsTizPk8zy/XjiUpv883Krt2aJtd+tnq1VJ7Pn19lCJCDxJETY6koEUiOQVNgOIsott9ziShIjjJTzv6qCAAAgAElEQVSWlibsZcMNN7RDDz3U6tZN3f0PweHll192Hi+pNLxjvv32W5s2bZp16dLF9R9me/vtt61Pnz4uB4nPPTJ58mS7+uqr7bzzzrN27dq54VCBB8EEIYVdAVqyx8a7nilTprgKPFxzskKVxJMw7wz1JQIiIAIiIALJE5DnSfKs9MmKBGbMWWnDxy62pg1r2kE7KQlnRu+PMdOs7NuZGT1lpScjR8r8v8wpYOv9vSkbSmvSwEr2Xb3ARSh9qxMRKBACSYknXMucOXNc2M7FF1+ctXAcvFso7/vWW2+ljY8QmBtuuKHcAyTtE6VwoE/eijiCYLJ06VK7++67XQUc/u69Uai8w++vuOIKlyOFlsyxiEl4ryBMnXXWWdawYUObOHGiDR061CXwJVQp2SbxJFlS+pwIiIAIiIAIhEtg1sKp9t4PL4TW6YpVy2zWwmlWs6SWNV67eWj90lHH7bqH2l/UO5N4kj0Llw2fYDZmWvY6yJczb7GhlRy3e76MJi/HsXzhKvt1XJL5iAJXUHutGrbBDnIHy0ujpjiopMUTzks1nQYNGiT0ckAImD9/vjVpkr6rKTlC8OI45ZRTnBeHL8H72WefOfHmsMMOc54ca6+9doVLJSfLyJEj3b+Ta6VGslmyUgSW6OMLFy60p59+2t544w3HhxLCxx9/fIVwnffee8/lQSE3yv77719+qqqOXbFihQ0cOND9QZhp3LixnXDCCXbggQcm7XHiO5N4kiGD6zQiIAIiIAIiUOAE5i2ZbX2+6Gbr1mlknXe6s8CvJr+G/+PsFfb19OWhDWrp8jKbt3CV1V7DrMHa4RVsqFenxPZpFe1FYbl4UlrLrDSCCZtWrDRbtMxM4kmVz+vS+avspxF/Vfm52A+UrlvDmu4bohdRyiPUAckSSEk8qeqkeF688sorTjzZfff0lEvCWshd0r59+/Lkq/yOsCEW/oQNJWr/+c9/7Lfffks6eWpV1xPFf5d4EkWr6ppEQAREQAREIHUCEk9SZ5bsEQgnn37z3yyuyR5UgJ+rX7fEjt072ovCovE8ad7ISo7fowDvwvCG7MWTGrVKrN5GVQtpq5aV2V+zV1jpOjWsadtoPyfhWSG3PaUkniCOUIb4448/Nrwl4rXx48c7r5BMhs6Qa4XEqIS7VBaiQm6W/v37W/fu3UMN28mtCVPrXeJJarz0aREQAREQARGIKgGJJ9mzrBdP6paarV03PE+Q7F1RxTOvXFlmcxesMoknYREPoR95nlQJ2YsnNeuY1d+06sIoK5eYLfhxmaXjeYJDQMeOHV1+zNh20003uZQOahUJBJkRqfLss8+mlN4iGZ4piScY79577y0vX5yog5YtW9qtt966WmhNMgOK9xlyftx+++3WuXNna9asWcLT4PXy+uuv56RMcrrXFvZxEk/CJq7+REAEREAERCD7BJatXGK//PVDSh39uXSevT6lj61Va107YqvOKR1bo6SmNV17y5SOKaYPf/3jcvv0W3meRMHmReN5IvGkyts1TPHED4Zqrs2bN3dCCs0LBHvttZcElBiL9e3b14455hgnmMCNlmmRKWnxxJfVnTVrlh133HGuBC9iBaoOeVBoP//8sy1YsMDl+ojNSVLl3VjJB/B4Acb06dNdAta11lprtU/j8XLbbbfZFltskbA0cHXGEJVjJZ5ExZK6DhEQAREQARH4HwESvw4Yf2NoSCin3HW3h0Lrr9A6UthOoVmskvFO/dXKZs4L74Loa9qvZhuva9Z8w9D6LWlQz2ybpqH1V4gd5YN4AjeiQMi12atXL7cmVzNbvHixLVq0qNzTBEbkG82ZeELoDC5Cl156abn3x+OPP+6Suu6zzz7OZiQ2ReQ45JBDbPPNN8+oHan2w8X//vvvLqdJixYt3PmBNGLECBs9erQrBXzNNddUmhclo4MqwJNJPClAo2nIIiACIiACIlAFgd8Wz7K3vn8yNE6lNde041p2Da2/QutI4kmhWSyPxvv5VCt7d6LZzptbyYGt8mhgGko+iCfe8+TUU08t90ZBOGCNTtGV7bff3l544QXbaqutnMiy9957O8MFf084y4cffmjHHnusHXzwwc4Zgt9RnKVHjx523nnnJRRm8OgYNGiQPfTQQ24d7teW/J5jaR999JHhGZOoHzxDvv32W1cAhTHssccettNOOznhIxh6Exxz0OOGfioLXeLcpBB58MEHcxe2g3jiy+xSzYY2efJkGzx4sHXt2rW86ss777xjEyZMcL+rWTOzMZ6//vqrG8PYsWNXe3rpizK+VLnxFXr0iK9OQOKJ7goREAEREAEREAERyC4BVdvJLt9In13iSd6aN1fiiRclPBgvTvi/44FCsRUEEy9YEJGBUwEiC8IE4kqbNm1ss802KxdUECDIKcq/UTH3oosusq233touvPBCJz5wvmBDjPnhhx9caIw/H+FE9Ml5EUz4DELKxRdf7Krg0oL9MAaOZ01/wQUX2DfffOM+zzlowb75HR42OGxQPAZxqKp8LxxD1d6c5zwhbKdnz552wAEHODAlJSW2bNkyl8iVsrutW7d2uVC4KMoKU5LXiyyZfALoY8qUKS55DiINjRsCbxSq/DAutcQEJJ7o7hABERABERABERCBaBGYMWelDR+72Jo2rGkH7SQ3/oK2rsSTvDVfrsSTYM4T77GBtwaiCd4fsYllgx4bHmYwB4gXWHzYTzCvivfwIOKDNX+seOKFDl/EJej1EvwsAg9CCx4usf3Eii/+uNhwJH9uBBciW7jOeOOKvWH8cfw+06FNSec8oXPCY1CxEDB22WUXu+6664wKN6hh/H3u3Lk2adIkF1Jzxx13ZDTvyU8//eQ8Tlj816kT7Xry2XxjSDzJJl2dWwREQAREQAREQATCJyDxJHzmyfRY9tG3Zh9/m8xHM/OZbZtaSYedMnMunWU1AvkgnjAoH46DQNGwYcNKQ1SCYTDeayNd8YS+fXiO9+zgd4k8VSrrx4tAX375pT3zzDNOGIn9vO8P8SgV8YTjshW6k5J4gmiCx8eAAQOsVatWdvnll1tpaamrcEOM1MqVK93fEVVQwzLVqLZDoljChKi6g1Cjlh4BiSfpcdNRIiACIiACIiACIhAGge9nrrCRE5eE0ZXrY4N1aliH3euG1l8xdSTxJFrWzlfxhBCZ+++/v0KYjfe+wPvD5zPBGnhuVEc88RZFRKFYDOv+s88+O65HSGX9+PN4EYUcKl4sCZYYph+iXAgnStbzhPMgGl177bWuArD3ksnE3ZiSeJKoQxK1ktB19uzZrpRSvXr1MjG28nP89ddfTlHjJgDAOuusE/f8iDt8lv5r1KiR0TFE5WQST6JiSV2HCIiACIiACIhAFAlIPImiVXVNUSCQD+KJ9ySBJyJD3bp1Xf4Rmg9RGTZsmNWvX9969+5dnjQ1U2E7iDGIGIgeTzzxhN14440ufwneMF70GDdunKsC9PnnnycM2/E5T3xZ4aBA4sswB71HuL5UxBOfQ8WXeM7U/ZcR8SQ4mD/++MNV3DnnnHMSihzpDH7MmDEOPollateuHfcUiDfkWunevXtW8q2kM+58O0biSb5ZROMRAREQAREQAREQAREQARHIdwJePLESs5p1ksizuarMVi41K12nhjVtm5pzQTDcJpZLbDLU2LwjhMH4vCLkI6VR2YYqPL5SDb8jjIfmE9Ly2S+++GK1qj2+fwSSBx54wJ2HFkxcG6y2w3kRQ3yln9h++vXrZ6TkoGoPYTvB6j7BcB6fu6VZs2ZxqwkFuQSP4/c+FCjT91Ra4sny5ctt4cKFcceC0jRw4ECX8yRTCWPxKCF0B8hDhw51N0ODBg0q9D9z5kx74403XMbebCWrzTT8XJxP4kkuqKtPERABERABERABERABERCBQiZQLp6keBGl69awpvumJp6k2IU+HhKBlMQTFDBcbFCkEDQStU022SSjAoYP20GYqapluu+q+iu0f5d4UmgW03hFQAREQAREQAREQAREQARyTaBshdmS+StTHkaNNUoMAUWt8AkkLZ7gbYJw8t5777mcIom8SubNm+e8QjLt/fHKK6+4Os+URCa2K7Yh5iDq0DLdd+Gb+X9XIPEkStbUtYiACIiACIiACIiACIiACIiACIRBIGnxBFGE6jpkuu3atWvCvCPTp093yWqIncpU2A4gOC+xTH7xHw9OtvoOwxBh9SHxJCzS6kcEREAEREAEREAEREAEREAERCAqBJIWTwidobRRmzZt7Oijj054/XyODL8s0jNZdYcyyIQNNWrUKG7f9Pvrr7/aokWLbMstt0wo7kTFcOleR2XiU7rn1HEiIAIiIAIiIAIiIAIiIAIikAoB1oxqIlBIBJIWT7io1157zZUjppZzSUn8DMPLli2zKVOmhC5gUC6Z0J4mTZrY7rvvXkg2CHWsEk9Cxa3OREAEREAEREAEREAEREAE4hCQeKLbotAIpCSerFixwp5//nnbc889rUWLFnGv9ZdffnE5R6655pqMhu0gjkydOtXVkE5U6Wf8+PG29tpr2w033JBRr5dCM6rGa7ZgwQI744wz7OWXXxaOAicwadIke/jhh11pNLXCJvDOO+8Yib+vuuqqwr4Qjd7lION7+bTTThONAidAdcRddtnFDjzwwAK/Eg2/S5cudskll9g//vEPwShwAkcddZQrtbrWWmsV+JVo+CIQLQIpiSdMlL7++mujNvPmm29uNWpUzBqczaStb7/9tt17772VVvnBNC1btrRbb73ViShqxUtA4kl0bC/xJDq2lHgSHVtKPImOLSWeRMeWEk+iY0uJJ9Gxpa4kWgRSEk8I23nooYeqFDAyXS54yZIldvPNN9usWbPsuOOOszXXXNOF6LRr185V9qH9/PPPztvg+OOPl3ASrXs0rauReJIWtrw8SOJJXpolrUFJPEkLW14eJPEkL82S1qAknqSFLS8PkniSl2ZJa1AST9LCpoNEIOsEkhZP/vzzT7v66quNsJzTTz/ddthhh9VECsJ6hg4daiNHjnRljTNVbYdKPzfddJNdeuml1qxZMwfl8ccfd26J++yzj/s7ffft29cOOeQQ5xWjVtwEJJ5Ex/4ST6JjS4kn0bGlxJPo2FLiSXRsKfEkOraUeBIdW+pKokUgafFk/vz5duWVV1r79u0rrbaD0IFwcsUVV2RUPIk95+TJk23w4MEVyiYzMZ8wYYL7Xc2aNaNlKV1NSgQknqSEK68/LPEkr82T0uAknqSEK68/LPEkr82T0uAknqSEK68/LPEkr82T0uAknqSESx8WgdAIJC2eUCq4d+/e1qpVKzv44INDGyAdEbbTs2dPO+CAA2yvvfZylX6o6nPnnXfa/vvvb61bt3ahRH369LHPPvvMJazNlNdLqBeqzkRABERABERABERABERABERABERABPKOQNLiCSOfM2eO8/YgbKd27dpxL+aPP/5w4TPnnHOOrbPOOhm74BEjRthtt93mRBKywl933XX2/fffW48ePdzf586da+xQUwWIXRQljM0Yep1IBERABERABERABERABERABERABIqaQNLiCaIFeU9mzJjhErciWMRrlKEcOHCgEzAy6f1B/1TcGTBggPN+ufzyy620tNRef/11V8YUzxj+jqiyxx57FLVRdfEiIAIiIAIiIAIiIAIiIAIiIAIiIAKZI5C0eOITxpJrpKqW6Wo7lfVH+WQ8YmbPnm3Nmze3evXqVTU8/bsIiIAIiIAIiIAIiIAIiIAIiIAIiIAIJE0gafGEM+JR0r9/f2vYsGHcsB2EDMJnGjVqlJO8I6NGjbKdd945YUhR0lT0QREQAREQAREQAREQAREQAREQAREQARH4L4GUxBO8TvjToUOHhACnT59uvXr1crlIMhm2U5nFEG2orvL888+7BLKUMFYTAREQAREQAREQAREQAREQAREQAREQgUwQSEk8ocINOU+22GKLhH3zmSlTptiWW26ZsgdIKqFBiQZw/PHHu2S1VORREwEREAEREAEREAEREAEREAEREAEREIHqEkhJPEmms+qIJ5yf0KAnnnjCatas6cJ/+EnjvIQEkTh2/fXXtzXXXLPCcPh3/uB1cvXVV6vaTjLG0mdEQAREQAREQAREQAREQAREQAREQASqJJBx8WTatGl2//33px22Q9gPFXTOO+88W2ONNdwFEJZDSM7nn39uV111lW200UarXdiKFStcGeV9993XNthggyovXB8QAREQAREQAREQAREQAREQAREQAREQgWQIrCaeLFmyxG6//XZ3bPfu3a1OnTruvwmpofzwzJkzE56XcsG//vqrNW7cOO2EsQglX331lW211VZWq1at8r5vvPFGO/fccyvNZzJp0iR799137fzzzy/3WEkGgj4jAiIgAiIgAiIgAiIgAiIgAiIgAiIgAokIrCae+LwjHIBYsvbaa7tjEUZ69+5tb731VpU0M12qeN68eXb33XfbFVdcUWkS2vHjx9sjjzzixJ911123ynHqAyIgAiIgAiIgAiIgAiIgAiIgAiIgAiJQFYG4YTt//PGHO26dddapcPy4ceNszJgxdvTRR1v9+vXLw2r8h5YvX27/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IiACIiACIiACIiACIlB4BCSeFJ7NNGIREAEREAEREAEREAEREAEREAEREIEQCUg8CRG2uhIBERABERABERABERABERABERABESg8AhJPCs9mGrEIiIAIiIAIiIAIiIAIiIAIiIAIiECIBCSehAhbXYmACIiACIiACIiACIiACIiACIiACBQeAYknhWczjVgEREAEREAEREAEREAEREAEREAERCBEAhJPQoStrkRABERABERABERABERABERABERABAqPgMSTwrOZRiwCIiACIiACIiACIiACIiACIiACIhAiAYknIcJWVyIgAiIgAiIgAiIgAiIgAiIgAiIgAoVHQOJJ4dlMIxYBERABERABERABERABERABERABEQiRgMSTEGGrKxEQAREQAREQAREQAREQAREQAREQgcIjIPGk8GymEYuACIiACIiACIiACIiACIiACIiACIRIQOJJiLDVlQiIgAiIgAhkmsBvv/1mAwcOtGHDhtlff/1l6667rrVt29aOP/54+/XXX23VqlX2z3/+M9Pd6nwiIAIiIAIiIAIiUFQEJJ4Ulbl1sSIgAiIgAlEi8N1339l1111nrVq1snPOOccaNWrkBJRPPvnE+vTpY/PmzbPbb7/ddtlllyhdtq5FBERABERABERABEInIPEkdOTqUAREQAREQASqTwCR5IYbbnCeJfxce+21K5z0l19+seuvv97OO+88iSfVx60ziIAIiIAIiIAIFDkBiSdFfgPo8kVABERABAqTwA8//GBXXnmltW7d2rp27WolJSWrXcibb75pG2ywgcSTwjSxRi0CIiACIiACIpBHBCSe5JExNBQREAEREAERSJaAF09q1qxpt9xyi7Vo0WK1Q7///ntbvHixbbfddsmeVp8TAREQAREQAREQARGIQ0DiiW4LERABERABEShAAkuWLLGbb77ZRo8ebfXr13feJ3vttZfVqFGjyqtZtmyZDR061AYNGmSE9xDyc/TRR7sks3Xq1HHHz507195++2378MMPnYfL+uuvb48//rh98MEHVrt2bRcOdPDBB1fwePnqq6/skUcesSlTptiaa67pcrFwbvKxrLfeeuXjItSIvCxPPfWUTZs2zZ2DpLZnnHGGtWzZsvycK1asMM45ePBga9CggXXq1Mmd/7333rNjjz3WfR7xSE0EREAEREAEREAEsk1A4km2Cev8IiACIiACIpAlAniW9OjRw1XVoSFAXHzxxdasWbO4YTx8hlwpPXv2tE033dQ6duzojnv22WftxRdftP32288uu+wymzFjhn322Wf2f//3f+7fO3fubJ9++qkL/0F4GTBggK1cudLuvPNO+8c//uE+wzGM5ayzznKhRPSD2DJhwgS75557ysUTjkcAQTS59NJLbZNNNnHH9urVy7755hu74IIL7PDDDzfEoffff9/GjBljI0eOtHbt2rmEuJMnT3Zjw9PmjjvuWC3XS5ZQ67QiIAIiIAIiIAJFTkDiSZHfALp8ERABERCBwiZAqeLevXs7Tw4anif77LOP88po0qRJhYsrKyuzfv362U8//WTdu3d3HiReUCG5LF4e/Nx7771t+fLlTpz4+OOPnSCCZ8oaa6xRLrY8+eSTTujg97TXX3/dhg8f7kKIfPLaP//80x599FE7++yzy8WT1157zTj21ltvdV4mvuEBc9VVV9nvv/9ut912W3l55UmTJlm3bt1cCWYS426++eb2448/Og+ZjTbaqLCNp9GLgAiIgAiIgAgUDAGJJwVjKg1UBERABERABOITIAwGD42+ffs6jw4a4SyxogfCBCE4Rx11lPPuCLb77rvPhgwZ4v6tS5cu7p/4HV4feJhsscUW5R///PPPnfiCRwrhM7R33nnHiTh4kxxwwAHl4UOE/ZBzhbCd+fPnu+MI6SHkqF69euXnRNhh/Hi7HHLIIS4MiWvAuwZRBUEnUWJc3RciIAIiIAIiIAIikG0CEk+yTVjnFwEREAEREIGQCBAS89FHHzlvj3nz5rleETfIORIUIhYsWJBwRLvttpvzPsGzoyrxpEOHDnbJJZe4c+EBc+ONNxqeIttuu62deuqptuOOO1bIweK9SMiF4vsIDsSLMptttpndddddztvEiyd40/i+QsKpbkRABERABERABESgnIDEE90MIiACIiACIhAxAgsXLrQHH3zQ3n33XZdM1nuOeHEC4QIxoqqWinjCuchTQvgOOVTIeUKIDTlYEFNICuv7Dwo0wTF4oWSdddYpz5Mi8aQqK+nfRUAEREAEREAEwiAg8SQMyupDBERABERABDJMAM8SKu2QSDVe8yEy3333nd1+++0u2StCBGE7hMXgjYKgUVlLVTzx51q0aJELAXruueeMijnXXXed7bHHHjZ27Fi7+uqrbeONN3biCBV84oknW265pf373/924T0STzJ84+h0IiACIiACIiACaRGQeJIWNh0kAiIgAiIgArklgHjyxBNP2Pnnn18hd0hwVIgflCQm8SshNFTlIX8IHiIkdqViTbDhLUIZ4MMOO8yF26QinlAZZ5tttrENN9yw/JQTJ050wsnOO+/sRBPGTP+Mg6SwO+ywQ4X+x48f7z532mmn2Yknnuj+TeJJbu8z9S4CIiACIiACIvA3AYknuhNEQAREQAREoAAJIERcccUVLvHrkUceuZoXifc84dIQSvDy8NV2Bg4c6BK4khiWssJU0Zk9e7b179/f2rRp45Kz8lkSwJJDJVHC2GDOk1deecUWL15sJ510UvlYqLaDeNKwYUMnitDP888/7/qhX5LHklvFN8ZF2A9iDyWMg+LJ7rvvbpdffrnL3aImAiIgAiIgAiIgAmETkHgSNnH1JwIiIAIiIAIZIIB4gpjw888/u/wlJGht2rSpEy4QQh566CH7+uuv7ZprrnGeH76R2JUywRMmTFhtFJQdPvfcc53IMXfuXCd8eM8PX0GHyj6E4wwYMMCdl8+stdZahnjSp08fO/PMMw1RhZAbvFEefvhhFypE2A4N7xbEEUKO2rdvb506dXKeM5REfuSRR1yOFP9Z+nrrrbecBwwCDBV6mjdvngF6OoUIiIAIiIAIiIAIpEZA4klqvPRpERABERABEcgLAogno0aNcmWBCXchxwjlipcuXeqq1LRt29aFvsTmFWHw5CQZNGiQvfHGG65KTuPGjd1nDzroICec+MSuwQvFEwShBC+WGTNmlP+TT0j71Vdf2UsvvWRU/OGchP2Qu4Ryxj5hrD+IzwwfPtxeeOEFmzlzppWWlhqeJQgvCEA0QosQSxBZgi3o7ZIXhtAgREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAQkCqQjAAABOUlEQVREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0C/w+n/4kq9iL85gAAAABJRU5ErkJggg==", + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "plotter = elq_model.components[\"error_model\"].plot_iterations(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", "plotter = elq_model.components[\"error_model\"].plot_distributions(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", @@ -597,10 +620048,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "id": "5e288724-d16d-4cd7-8bd4-c529f5b02772", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['count_map',\n", + " 'median_map',\n", + " 'iqr_map',\n", + " 'fitted_values',\n", + " 'log_posterior_plot',\n", + " 'estimated_values_plot',\n", + " 'number_of_sources_plot',\n", + " 'log_estimated_values_plot',\n", + " 'offset_iterations',\n", + " 'offset_distributions',\n", + " 'error_model_iterations',\n", + " 'error_model_distributions']" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list(plotter.figure_dict.keys())" ] From 921373230202acb473de6fc06ac823be56223ba2 Mon Sep 17 00:00:00 2001 From: bvandekerkhof Date: Thu, 23 May 2024 16:17:29 +0200 Subject: [PATCH 5/6] Removing notebook output Signed-off-by: bvandekerkhof --- examples/example.ipynb | 619573 +------------------------------------- 1 file changed, 50 insertions(+), 619523 deletions(-) diff --git a/examples/example.ipynb b/examples/example.ipynb index db9c864..ebb3002 100644 --- a/examples/example.ipynb +++ b/examples/example.ipynb @@ -13,25 +13,10 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "b315a63d-29d4-4163-9d73-50ed9622eec5", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Bas.vandeKerkhof\\AppData\\Local\\Temp\\ipykernel_8872\\937541556.py:5: DeprecationWarning: \n", - "Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),\n", - "(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)\n", - "but was not found to be installed on your system.\n", - "If this would cause problems for you,\n", - "please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466\n", - " \n", - " import pandas as pd\n" - ] - } - ], + "outputs": [], "source": [ "import datetime\n", "from copy import deepcopy\n", @@ -65,7 +50,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "da0c9d2b-eb55-4bc2-b03f-557a3eff352a", "metadata": {}, "outputs": [], @@ -87,7 +72,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "9a813265-29eb-4737-b8a4-76e1f2733747", "metadata": {}, "outputs": [], @@ -101,22 +86,10 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "id": "4df901ae-fd64-4836-8120-cb02533282fd", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[0.00000000e+00 2.69494374e-04 5.00007055e+00]\n", - " [1.03826083e-04 2.48980336e-04 5.00007062e+00]\n", - " [1.91845586e-04 1.90561299e-04 5.00007079e+00]\n", - " [2.50658337e-04 1.03131032e-04 5.00007096e+00]\n", - " [2.71310629e-04 1.65017711e-20 5.00007103e+00]]\n" - ] - } - ], + "outputs": [], "source": [ "ENU_object = ENU(ref_latitude=reference_latitude, ref_longitude=reference_longitude, ref_altitude=reference_altitude)\n", "ENU_object.from_array(np.vstack([sensor_x, sensor_y, sensor_z]).T)\n", @@ -135,7 +108,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "id": "f3338ee8-3c47-40eb-8721-b014f1c74f88", "metadata": {}, "outputs": [], @@ -166,7 +139,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "id": "b7452c52-be86-467c-a2dd-54e57892b637", "metadata": {}, "outputs": [], @@ -196,1058 +169,10 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": null, "id": "d23ea54d-cbf9-40a4-9fc0-bd54037991fb", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - " \n", - " " - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "lat": [ - 0, - 0 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00026949437396969116 - ], - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 0", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00010382608273934404 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.000248980336237809 - ], - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 1", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00019184558556765 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00019056129932629466 - ], - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 2", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00025065833707803124 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.0001031310320344517 - ], - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 3", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00027131062899166537 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 1.6501771123631796e-20 - ], - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 4", - "type": "scattermapbox" - }, - { - "lat": [ - 0.00019896125354572274 - ], - "line": { - "width": 3 - }, - "lon": [ - 4.491575716382319e-05 - ], - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 0", - "type": "scattermapbox" - }, - { - "lat": [ - 4.521846671490127e-05 - ], - "line": { - "width": 3 - }, - "lon": [ - 0.0001796630286547407 - ], - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 1", - "type": "scattermapbox" - } - ], - "layout": { - "autosize": true, - "mapbox": { - "bearing": 0, - "center": { - "lat": -2.261670381744352, - "lon": -1.1786335496311722 - }, - "pitch": 0, - "style": "open-street-map", - "zoom": 3.5012482588262603 - }, - "margin": { - "b": 0, - "l": 0, - "r": 0 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "image/png": "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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "fig=go.Figure()\n", "fig = sensor_group.plot_sensor_location(fig=fig)\n", @@ -1266,355 +191,10 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "id": "703e57c6-246f-429b-ac5d-050539bb81fa", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\plotly\\express\\_core.py:2044: FutureWarning:\n", - "\n", - "The default of observed=False is deprecated and will be changed to True in a future version of pandas. Pass observed=False to retain current behavior or observed=True to adopt the future default and silence this warning.\n", - "\n", - "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\plotly\\express\\_core.py:2065: FutureWarning:\n", - "\n", - "When grouping with a length-1 list-like, you will need to pass a length-1 tuple to get_group in a future version of pandas. Pass `(name,)` instead of `name` to silence this warning.\n", - "\n" - ] - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "hovertemplate": "speed=(3.709, 3.872]
%=%{r}
theta=%{theta}", - "legendgroup": "(3.709, 3.872]", - "marker": { - "color": "rgb(92, 83, 165)", - "pattern": { - "shape": "" - } - }, - "name": "(3.709, 3.872]", - "r": [ - 0, - 0.049586776859504134, - 0.024793388429752067, - 0.04132231404958678, - 0.01652892561983471, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "showlegend": true, - "subplot": "polar", - "theta": [ - -0.0004999999999997229, - 22.5, - 45, - 67.5, - 90, - 112.5, - 135, - 157.5, - 180, - 202.5, - 225, - 247.5, - 270, - 292.5, - 315, - 337.5 - ], - "type": "barpolar" - }, - { - "hovertemplate": "speed=(3.872, 4.035]
%=%{r}
theta=%{theta}", - "legendgroup": "(3.872, 4.035]", - "marker": { - "color": "rgb(160, 89, 160)", - "pattern": { - "shape": "" - } - }, - "name": "(3.872, 4.035]", - "r": [ - 0.0743801652892562, - 0.1322314049586777, - 0.11570247933884298, - 0.1487603305785124, - 0.05785123966942149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "showlegend": true, - "subplot": "polar", - "theta": [ - -0.0004999999999997229, - 22.5, - 45, - 67.5, - 90, - 112.5, - 135, - 157.5, - 180, - 202.5, - 225, - 247.5, - 270, - 292.5, - 315, - 337.5 - ], - "type": "barpolar" - }, - { - "hovertemplate": "speed=(4.035, 4.197]
%=%{r}
theta=%{theta}", - "legendgroup": "(4.035, 4.197]", - "marker": { - "color": "rgb(206, 102, 147)", - "pattern": { - "shape": "" - } - }, - "name": "(4.035, 4.197]", - "r": [ - 0.049586776859504134, - 0.06611570247933884, - 0.09090909090909091, - 0.049586776859504134, - 0.05785123966942149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "showlegend": true, - "subplot": "polar", - "theta": [ - -0.0004999999999997229, - 22.5, - 45, - 67.5, - 90, - 112.5, - 135, - 157.5, - 180, - 202.5, - 225, - 247.5, - 270, - 292.5, - 315, - 337.5 - ], - "type": "barpolar" - }, - { - "hovertemplate": "speed=(4.197, 4.359]
%=%{r}
theta=%{theta}", - "legendgroup": "(4.197, 4.359]", - "marker": { - "color": "rgb(235, 127, 134)", - "pattern": { - "shape": "" - } - }, - "name": "(4.197, 4.359]", - "r": [ - 0.008264462809917356, - 0, - 0.01652892561983471, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "showlegend": true, - "subplot": "polar", - "theta": [ - -0.0004999999999997229, - 22.5, - 45, - 67.5, - 90, - 112.5, - 135, - 157.5, - 180, - 202.5, - 225, - 247.5, - 270, - 292.5, - 315, - 337.5 - ], - "type": "barpolar" - } - ], - "layout": { - "annotations": [ - { - "align": "left", - "bgcolor": "#ffffff", - "bordercolor": "#000000", - "borderpad": 10, - "borderwidth": 2, - "font": { - "color": "#000000", - "size": 18 - }, - "opacity": 0.8, - "showarrow": false, - "text": "Radial Axis: Proportion
of wind measurements
in a given direction.", - "x": 1, - "xanchor": "right", - "xref": "paper", - "y": 1, - "yanchor": "top", - "yref": "paper" - } - ], - "autosize": true, - "barmode": "relative", - "legend": { - "title": { - "text": "speed" - }, - "tracegroupgap": 0 - }, - "margin": { - "l": 0, - "r": 0, - "t": 60 - }, - "polar": { - "angularaxis": { - "direction": "clockwise", - "rotation": 90, - "tickmode": "array", - "ticktext": [ - "N", - "NE", - "E", - "SE", - "S", - "SW", - "W", - "NW" - ], - "tickvals": [ - 0, - 45, - 90, - 135, - 180, - 225, - 270, - 315 - ], - "type": "linear" - }, - "domain": { - "x": [ - 0, - 1 - ], - "y": [ - 0, - 1 - ] - }, - "radialaxis": { - "angle": 90, - "autorange": true, - "range": [ - 0, - 0.26098303610265333 - ], - "tickangle": 90, - "type": "linear" - } - }, - "template": {}, - "title": { - "text": "Distribution of Wind Speeds and Directions" - } - } - }, - "image/png": "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kIAWT3r27CkTJ06UPn36KOsTiicBnCx2iQRIgARIgARIgARcEqB44hIUDyMBEiABEiABNwS0eALRBEW76ixatIhuO24A8hgSIAESIAESIAESCCABiicBnBR2iQRIgARIIH4JGMWTk046ScU/MQspjHkSv/PLnpMACZAACZAACSQmAYoniTnvHDUJkAAJkECUCBjFE6O7jnbjYcDYKIFntSRAAiRAAiRAAiQQRQIUT6IIl1WTAAmQAAkkHgGzeGIXQDbxyHDEJEACJEACJEACJBC/BCiexO/cseckQAIkQAIBJGAWT9BFBIt98MEHpX379kxVHMA5Y5dIgARIgARIgARIwIkAxRMnQnyfBEiABEiABDwQsBJP9Guohm47HmDyUBIgARIgARIgARIICAGKJwGZCHaDBEiABEiABEiABEiABEiABEiABEggmAQongRzXtgrEiABEiABEiABEiABEiABEiABEiCBgBCgeBKQiWA3SIAESIAESIAESIAESIAESIAESIAEgkmA4kkw54W9IgESIAESIAESIAESIAESIAESIAESCAgBiicBmQh2gwRIgARIoGQSGDlypPTv379kDo6jIgESIAESIAESIIEEIUDxJEEmmsMkARIgARIoHgI9evSQ7777rngaZ6skQAIkQAIkQAIkQAIRIUDxJCIYWQkJkAAJkAAJWBOgeMKVQQIkQAIkQAIkQALxT4DiSfzPIUdAAiRAAiQQYAIUTwI8OewaCZAACZAACZAACbgkQPHEJSgeRgIkQAIkQAJ+CFA88UON55AACZAACZAACZBAsAhQPAnWfLA3JEACJEACcULgyJEjkpOT4/gzf/58adu2rZQtW1b9pKenS5kyZQr+16/jd6lSpeJk9OwmCZAACZAACZAACSQWAYoniTXfHC0JkAAJkIBLAtu2bZP169fLhg0bZN26dervY8eOyfLly5Vgkp+fbymAGMUQ/P3ZZ59J3759C0SWgwcPyqFDhwqJLngd9aNAXGnevLk0bNhQ6tSpU/BTpUoV9f6qVatk0KBBsnfvXvV/3bp1Zfjw4VKpUiX1/5gxY2TEiBEhI+3du7cMHDjQ5eh5GAkkBoG//OUviTFQjpIESjiBX375pYSPkMMLAgGKJ0GYBfaBBEiABEigWAhAfIA4AmEEAon+G/9nZGQo0aJ27dpKnMDf+F2+fHklmpQu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gARIgARIgARIgARIgARIIKgJUDwJ6uPn5kmABEiABEiABEiABEiABEiABEiABOwRoHhijxDfJwESIAESIAESIAESIAESIAESIAESCGoCFE+C+vi5eRIgARIgARIgARIgARIgARIgARIgAXsEKJ7YI8T3SYAESIAESIAESIAESIAESIAESIAEgpoAxZOgPn5ungRIgARIgARIgARIgARIgARIgARIwB4Biif2CPF9EiABEiABEiABEiABEiABEiABEiCBoCZA8SSoj5+bJwESIAESIAESIAESIAESIAESIAESsEeA4ok9QnyfBEiABEiABEiABEiABEiABEiABEggqAlQPAnq4+fmSYAESIAESIAESIAESIAESIAESIAE7BH4/+3YIQEAAADCsP6tifAATKMYDudJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIl4DwpITkBAgQIECBAgAABAgQIECBwLeA8uZ5feQIECBAgQIAAAQIECBAgQKAEnCclJCdAgAABAgQIECBAgAABAgSuBZwn1/MrT4AAAQIECBAgQIAAAQIECJSA86SE5AQIECBAgAABAgQIECBAgMC1gPPken7lCRAgQIAAAQIECBAgQIAAgRJwnpSQnAABAgQIECBAgAABAgQIELgWcJ5cz688AQIECBAgQIAAAQIECBAgUALOkxKSEyBAgAABAgQIECBAgAABAtcCzpPr+ZUnQIAAAQIECBAgQIAAAQIESsB5UkJyAgQIECBAgAABAgQIECBA4FrAeXI9v/IECBAgQIAAAQIECBAgQIBACThPSkhOgAABAgQIECBAgAABAgQIXAs4T67nV54AAQIECBAgQIAAAQIECBAoAedJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIl4DwpITkBAgQIECBAgAABAgQIECBwLeA8uZ5feQIECBAgQIAAAQIECBAgQKAEnCclJCdAgAABAgQIECBAgAABAgSuBZwn1/MrT4AAAQIECBAgQIAAAQIECJSA86SE5AQIECBAgAABAgQIECBAgMC1gPPken7lCRAgQIAAAQIECBAgQIAAgRJwnpSQnAABAgQIECBAgAABAgQIELgWcJ5cz688AQIECBAgQIAAAQIECBAgUALOkxKSEyBAgAABAgQIECBAgAABAtcCzpPr+ZUnQIAAAQIECBAgQIAAAQIESsB5UkJyAgQIECBAgAABAgQIECBA4FrAeXI9v/IECBAgQIAAAQIECBAgQIBACThPSkhOgAABAgQIECBAgAABAgQIXAs4T67nV54AAQIECBAgQIAAAQIECBAoAedJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIl4DwpITkBAgQIECBAgAABAgQIECBwLeA8uZ5feQIECBAgQIAAAQIECBAgQKAEnCclJCdAgAABAgQIECBAgAABAgSuBZwn1/MrT4AAAQIECBAgQIAAAQIECJSA86SE5AQIECBAgAABAgQIECBAgMC1gPPken7lCRAgQIAAAQIECBAgQIAAgRJwnpSQnAABAgQIECBAgAABAgQIELgWcJ5cz688AQIECBAgQIAAAQIECBAgUALOkxKSEyBAgAABAgQIECBAgAABAtcCzpPr+ZUnQIAAAQIECBAgQIAAAQIESsB5UkJyAgQIECBAgAABAgQIECBA4FrAeXI9v/IECBAgQIAAAQIECBAgQIBACThPSkhOgAABAgQIECBAgAABAgQIXAs4T67nV54AAQIECBAgQIAAAQIECBAoAedJCckJECBAgAABAgQIECBAgACBawHnyfX8yhMgQIAAAQIECBAgQIAAAQIlMIpbgrN52RpOAAAAAElFTkSuQmCC", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "met_object = Meteorology()\n", "\n", @@ -1637,1145 +217,10 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "id": "3e5e6644-03a3-4357-904d-88f3ede974b2", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "mode": "markers", - "name": "Wind direction", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ] - } - ], - "layout": { - "autosize": true, - "margin": { - "l": 0, - "r": 0 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "Wind Direction [deg]" - }, - "xaxis": { - "autorange": true, - "range": [ - "2024-01-01 07:45:38.1953", - "2024-01-01 12:14:21.8047" - ], - "type": "date" - }, - "yaxis": { - "autorange": true, - "range": [ - -6.810431084453936, - 96.93955528856765 - ], - "type": "linear" - } - } - }, - "image/png": "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zDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDwBwpN4bqyFAAIIIIAAAggggAACCCCAAAI5ESA8yUmhGSYCCCCAAAIIIIAAAggggAACCMQTIDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDwBwpN4bqyFAAIIIIAAAggggAACCCCAAAI5ESA8yUmhGSYCCCCAAAIIIIAAAggggAACCMQTIDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDwBwpN4bqyFAAIIIIAAAggggAACCCCAAAI5ESA8yUmhGSYCCCCAAAIIIIAAAggggAACCMQTIDyJ58ZaCCCAAAIIIIAAAggggAACCCCQEwHCk5wUmmEigAACCCCAAAIIIIAAAggggEA8AcKTeG6shQACCCCAAAIIIIAAAggggAACOREgPMlJoRkmAggggAACCCCAAAIIIIAAAgjEEyA8iefGWggggAACCCCAAAIIIIAAAgggkBMBwpOcFJphIoAAAggggAACCCCAAAIIIIBAPAHCk3hurIUAAggggAACCCCAAAIIIIAAAjkRIDzJSaEZJgIIIIAAAggggAACCCCAAAIIxBMgPInnxloIIIAAAggggAACCCCAAAIIIJATAcKTnBSaYSKAAAIIIIAAAggggAACCCCAQDyB/wPlFucI/TsERwAAAABJRU5ErkJggg==", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "fig = go.Figure()\n", "fig.add_trace(go.Scatter(x=time_axis, y=met_object.wind_direction, mode='markers', name='Wind direction'))\n", @@ -2793,7 +238,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "id": "379f3820-ea9c-4cc0-ae94-1558e2eb21a4", "metadata": {}, "outputs": [], @@ -2813,1044 +258,10 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "id": "38504528-3537-4bd5-8f51-2bedca548fa1", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "lat": [ - 0, - 0 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00026949437396969116 - ], - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 0", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00010382608273934404 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.000248980336237809 - ], - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 1", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00019184558556765 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00019056129932629466 - ], - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 2", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00025065833707803124 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.0001031310320344517 - ], - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 3", - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00027131062899166537 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 1.6501771123631796e-20 - ], - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 4", - "type": "scattermapbox" - }, - { - "lat": [ - 0.00019896125354572274 - ], - "line": { - "width": 3 - }, - "lon": [ - 4.491575716382319e-05 - ], - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 0", - "type": "scattermapbox" - }, - { - "lat": [ - 4.521846671490127e-05 - ], - "line": { - "width": 3 - }, - "lon": [ - 0.0001796630286547407 - ], - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 1", - "type": "scattermapbox" - }, - { - "lat": [ - 0.00018087383831017834, - 0.00013565535732018927 - ], - "lon": [ - 8.983150024330824e-05, - 0.00017966297231761778 - ], - "marker": { - "color": "green", - "size": 10 - }, - "mode": "markers", - "name": "True locations", - "type": "scattermapbox" - } - ], - "layout": { - "autosize": true, - "mapbox": { - "center": { - "lat": 0, - "lon": 0 - }, - "style": "open-street-map", - "zoom": 18 - }, - "margin": { - "b": 0, - "l": 0, - "r": 0 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - } - } - }, - "image/png": "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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "fig=go.Figure()\n", "fig = sensor_group.plot_sensor_location(fig=fig)\n", @@ -3875,7 +286,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "id": "c5c3972b-0ad4-4c83-b13c-3345350fe501", "metadata": {}, "outputs": [], @@ -3893,2692 +304,10 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "id": "734d39c9-63e1-4818-bcba-5c4f4e6eeede", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 7.890544298596149, - 7.958141328760238, - 7.997781006185826, - 7.791714050564657, - 7.782219369759696, - 7.7027693732637434, - 7.907840816891765, - 7.6700135697839205, - 7.399342586559671, - 7.718237540043255, - 7.9351367632351915, - 8.073939392618753, - 8.031656486135207, - 7.812462574982364, - 8.112189138058191, - 7.7788990519010195, - 7.988779900550802, - 8.223226698536852, - 8.46635913540058, - 8.35976039932035, - 8.172487831942838, - 8.192107075317526, - 8.417256468847048, - 8.225621150677922, - 8.21077100799815, - 8.218807731163079, - 7.951363896989119, - 8.195299007997008, - 8.185643574955071, - 8.218548320159844, - 7.9461939768467795, - 7.815597803316228, - 7.794624234656219, - 7.9645143747178935, - 7.720335130908699, - 7.7503081698494185, - 7.688706876286427, - 7.620110694793409, - 7.466715301269638, - 7.720342055147692, - 7.606163454952473, - 7.275749372954192, - 7.4163210916589275, - 7.464469357027655, - 7.083615841940639, - 7.15182294817799, - 7.029489247478757, - 7.431185471393737, - 6.935559078187955, - 7.464442803427087, - 6.990922686398541, - 6.758047623096688, - 7.134644599034315, - 7.127610122606144, - 7.005447146729908, - 6.936970029253562, - 7.1157522487129965, - 7.023155055131738, - 6.94577067240893, - 6.941399122600365, - 6.950554849446046, - 6.8035830453970085, - 6.5952572736008435, - 6.6997112326926365, - 6.4358182873601715, - 6.228512822938784, - 6.370212743602484, - 5.965197619958553, - 5.670722904331665, - 5.4092527154850565, - 5.5241648323843595, - 5.2397473974684985, - 4.91572521356592, - 4.633219256004186, - 4.5400233431839165, - 4.353943694043269, - 4.028485418614057, - 3.864464089807961, - 3.539441897942694, - 3.3939803832605677, - 3.227885487882121, - 3.119255427121228, - 2.9070995206113843, - 2.8161757615155705, - 2.6731276657632774, - 2.5984979552676566, - 2.4500032015307904, - 2.3735466759210153, - 2.2779211217947637, - 2.2405174064881272, - 2.184930658890143, - 2.157572714269137, - 2.1118349207961633, - 2.0652910880277293, - 2.0745550790102345, - 2.0549042473976273, - 2.022638972123836, - 2.029919842896592, - 2.013068496458053, - 2.0214647272413453, - 2.0071553540617373, - 1.9964920853424701, - 1.9831137410811164, - 2.0058707050002367, - 1.980511867669466, - 2.0245139084366777, - 2.000852575176608, - 1.9849020190202036, - 1.9922309396993194, - 2.005094867153131, - 2.0054485571601326, - 2.002963983022924, - 1.9932325539823295, - 1.9963126120697006, - 1.9930378327798541, - 2.0146632064409284, - 2.0050843772358333, - 2.0073227744879043, - 1.9901371591373391, - 1.9974147663996378, - 1.9955842376080692 - ] - }, - { - "legendgroup": "Beam sensor 1", - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 3.682546580145791, - 3.7480905642136455, - 3.7698680043021437, - 3.794598393144694, - 3.83274341111876, - 3.86497740501022, - 4.006802529994472, - 4.00036913392764, - 3.9481857205658546, - 4.117909378036816, - 4.282293259472804, - 4.406231144354147, - 4.447463297540425, - 4.443590076373223, - 4.629636764291417, - 4.545490134137496, - 4.762738236450896, - 4.938310570885127, - 5.111496514565832, - 5.1788582633957265, - 5.123397071785726, - 5.206004099459512, - 5.396100523576821, - 5.372742818795979, - 5.405700982902913, - 5.480551233211444, - 5.4028565673334885, - 5.603169973822201, - 5.648248603408112, - 5.7317007600106695, - 5.613196197980132, - 5.581840737042961, - 5.630356346648869, - 5.781025574448763, - 5.6593174697231685, - 5.785756959055169, - 5.7601284895891025, - 5.788230351783955, - 5.754823564902719, - 5.983036443529689, - 5.974087870474966, - 5.853581332504211, - 6.05036311395665, - 6.256640285625232, - 6.042790621566124, - 6.22990745422102, - 6.309026381181748, - 6.849153378600638, - 6.544674066514035, - 7.184503566262105, - 6.9789420581200305, - 6.886236016904894, - 7.471669563863474, - 7.762957844685767, - 7.821344822244425, - 7.922507789887316, - 8.345401921453925, - 8.472924289116735, - 8.615287303631332, - 8.809610810458969, - 9.035224680826879, - 8.957781684609735, - 8.885928390945166, - 9.246098586643537, - 8.989226600661285, - 8.826880433498385, - 9.224550490249078, - 8.666387184451414, - 8.35830797842546, - 7.9737690388247175, - 8.274314391215423, - 7.895346213420811, - 7.364134570065388, - 7.024706955714454, - 6.856057330634303, - 6.550675240375444, - 6.001026072729235, - 5.7473498709277475, - 5.179122598109574, - 4.9060020586063615, - 4.549379273020302, - 4.399405223274182, - 3.951318128653969, - 3.7854334090717483, - 3.517014058408442, - 3.3266536606027954, - 3.0158811263612737, - 2.8558150557997846, - 2.641022614794618, - 2.5635556005601003, - 2.4417459704023154, - 2.353363963316716, - 2.2918332400362815, - 2.225248550191615, - 2.167120232809512, - 2.150653627504091, - 2.1063974564304617, - 2.0572469716135755, - 2.0666323791183285, - 2.032471250117122, - 2.035065173030915, - 2.016388180351999, - 1.9884035587486506, - 1.9946275607988648, - 2.0110489861306116, - 2.007182303060239, - 2.015862772628424, - 1.9996942978841656, - 2.018956716670328, - 2.005825443548572, - 1.999172793355701, - 2.010995452542602, - 1.9924528691982193, - 1.9975634247956362, - 2.0213335526096783, - 2.001793789629492, - 2.0055065009580493, - 2.0015699208661024, - 2.0045203729281864, - 2.00267582003051, - 2.0018363198777194 - ] - }, - { - "legendgroup": "Beam sensor 2", - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 2", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 2.269245637739695, - 2.2998277822003876, - 2.351115554515013, - 2.3935431861339245, - 2.428123337836534, - 2.470719657409029, - 2.5684442525172146, - 2.608401472914582, - 2.652626621461129, - 2.748034028282946, - 2.894737262301469, - 2.9908490842834103, - 3.0978455239211984, - 3.1509667408846997, - 3.326764555050805, - 3.3330979970861074, - 3.575132425051332, - 3.759228323720947, - 3.8887196453804944, - 4.043437375808217, - 4.050506497912035, - 4.22683691104584, - 4.396473800871551, - 4.4619620709729375, - 4.532003662178585, - 4.64984731095328, - 4.622063816688261, - 4.826252324387638, - 4.885625362565224, - 4.935170844521706, - 4.862291907837204, - 4.805313759351483, - 4.775618316142517, - 4.851701500193712, - 4.691552039484218, - 4.650333511091664, - 4.549063855538922, - 4.436587569348351, - 4.266755975925206, - 4.246945653196009, - 4.105199644437734, - 3.8207443811943587, - 3.76578437913965, - 3.6432292488783906, - 3.434034318674742, - 3.358538229741471, - 3.2112062988002816, - 3.23267184871027, - 3.0798248687520866, - 3.1804620367500456, - 3.0964862033990115, - 3.0612505016338365, - 3.2115489435183475, - 3.335249324326946, - 3.417560925332592, - 3.5664929683330793, - 3.8533906642324256, - 4.1024507553633205, - 4.422140591141545, - 4.730717446434767, - 5.175269837503004, - 5.335543164479105, - 5.751446425842532, - 6.362782149520328, - 6.586851314232249, - 6.997391537873926, - 7.751036556264858, - 7.777454977371383, - 8.155740103878497, - 8.207234627855504, - 9.106795113531648, - 9.32795998520604, - 9.309637673008757, - 9.546740430963878, - 9.804248595901914, - 9.954939637426316, - 9.715272466653715, - 9.919012585224353, - 9.426146994807988, - 9.381143548952075, - 9.225444020959102, - 9.242464997880658, - 8.64771292853549, - 8.720492535923322, - 8.254609334417417, - 8.177520841410793, - 7.49575219181945, - 7.011784661177705, - 6.570573953570048, - 6.4039083492556035, - 5.881223844581611, - 5.743632683422368, - 5.32497879667636, - 5.128065711068347, - 4.771406653946123, - 4.567379970744297, - 4.2633697842224585, - 3.998274617164608, - 3.7431305087916757, - 3.5640369344307383, - 3.4232356065073786, - 3.163615878501435, - 3.0636088603740594, - 2.9268984897298744, - 2.7988888545408037, - 2.6797049743503356, - 2.6743015837582944, - 2.544122439327525, - 2.4766287477503033, - 2.4158531230124223, - 2.388839202446592, - 2.3103962951875596, - 2.2883898387773973, - 2.2656110539544514, - 2.182375903759291, - 2.192195730283244, - 2.1526966227594615, - 2.130321013931836, - 2.121387467257954, - 2.0863309225751463, - 2.080522785486708 - ] - }, - { - "legendgroup": "Beam sensor 3", - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 3", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 2.0048472363581484, - 2.0082219970582025, - 2.015800037650369, - 2.012366744598929, - 2.0111881790208708, - 2.0219622540415894, - 2.057214171269872, - 2.0487982640804923, - 2.0736473164052693, - 2.074484380099291, - 2.111416484473971, - 2.153093852426196, - 2.188017257750393, - 2.2320828234983763, - 2.3031832410600193, - 2.3288576415748485, - 2.4558843536465047, - 2.5730497336031135, - 2.6648526542934325, - 2.801412243407468, - 2.8515649705965536, - 3.025450916377702, - 3.1881448174673945, - 3.3075328329125577, - 3.4593618133667348, - 3.6503357699762815, - 3.757369896428248, - 4.037274701391412, - 4.154784623078697, - 4.364903690879912, - 4.4195768624892455, - 4.524256079262262, - 4.665464106491921, - 4.874705146875558, - 4.879133958904936, - 5.0000493179441134, - 5.021692152651062, - 5.038295909505634, - 4.97903310476586, - 5.094084807969011, - 4.98872815093238, - 4.762696631203361, - 4.759924178895062, - 4.671634607533428, - 4.3974554519641895, - 4.285269765473419, - 4.068842760611289, - 4.067903217716059, - 3.7639949942805484, - 3.8501873348849465, - 3.5186997978414905, - 3.370053762221009, - 3.347379932546897, - 3.266396938229498, - 3.206170357777176, - 3.1592126455779295, - 3.1522128502388886, - 3.1803689117834915, - 3.2328029416584583, - 3.315932694571669, - 3.462249875311364, - 3.5020447261847067, - 3.640269588368556, - 3.9197060623595643, - 4.022398781325316, - 4.229702841015361, - 4.615740838413224, - 4.65131304447365, - 4.915612214498838, - 4.999684311863299, - 5.543001149145256, - 5.770732538353119, - 5.879338834139044, - 6.1394139616632515, - 6.406597261426106, - 6.665192764365242, - 6.706639930014827, - 7.016110775439613, - 6.955765201857972, - 7.1228997204022315, - 7.239182588670879, - 7.4599481238905145, - 7.30786174425639, - 7.610740791514557, - 7.485268147762597, - 7.716168488871713, - 7.500396399116027, - 7.323188388139022, - 7.256850168550908, - 7.365357581221947, - 7.092519875730409, - 7.18067422086919, - 7.02790348186461, - 7.0845065525206525, - 6.823907782604007, - 6.9180174020276795, - 6.724945868466202, - 6.665933745756693, - 6.496744589859477, - 6.422949656642195, - 6.4635260041235965, - 6.03297051046321, - 6.1130595894210105, - 5.989518984719937, - 5.869455688512479, - 5.737087535948124, - 5.863585712595215, - 5.706087485013977, - 5.656232997437064, - 5.586352136512266, - 5.777772230577951, - 5.497138236879059, - 5.496109362261726, - 5.4281912715592755, - 5.181428028873061, - 5.470657114025242, - 5.265092624551789, - 5.251251261270487, - 5.128381042359218, - 5.008954659938972, - 4.937947653434158 - ] - }, - { - "legendgroup": "Beam sensor 4", - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 4", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 2.0051149170621545, - 2.0034643278005198, - 2.008069426224035, - 1.9849772671932653, - 2.003382534648923, - 2.023722447734518, - 2.000352514673192, - 2.03029614903509, - 2.038364567947861, - 2.044964064429174, - 2.03503177506568, - 2.0602008112587473, - 2.0659533343339285, - 2.086741386884045, - 2.118339138419928, - 2.1134645770392844, - 2.1661730767060092, - 2.2321830001956924, - 2.273634634006135, - 2.3527961480161794, - 2.3935902384764454, - 2.501668650775769, - 2.576113817190549, - 2.654032244985692, - 2.751766980314175, - 2.8712009933902998, - 2.976368887925728, - 3.1774776254317003, - 3.2875412192309295, - 3.4634409215358546, - 3.5097132659780277, - 3.664258949210175, - 3.8333056485311654, - 4.016320484607367, - 4.127739610852591, - 4.310502959611292, - 4.383383023829332, - 4.514032596658787, - 4.568620045735389, - 4.786125781625841, - 4.843115420595217, - 4.760113160740463, - 4.860452818460505, - 4.951409764544519, - 4.759584411119105, - 4.781698322616699, - 4.725514599783425, - 4.875837637340524, - 4.581161834822511, - 4.815236594403675, - 4.4918800015416265, - 4.331826904105765, - 4.430303413499499, - 4.367626925330253, - 4.280904744989299, - 4.200828866132116, - 4.243010427480616, - 4.173161369291443, - 4.145098407638647, - 4.146652374238214, - 4.225840142941879, - 4.216756738550404, - 4.220744979762471, - 4.372986967965083, - 4.381007911961047, - 4.439821681257273, - 4.709410203349204, - 4.6624983793001995, - 4.785377791404038, - 4.79402986060704, - 5.171859824263258, - 5.28230622116517, - 5.31745650673929, - 5.496571183198965, - 5.687566471624886, - 5.838544967968865, - 5.859713884878767, - 6.096679717395961, - 6.012214935379968, - 6.1511799807706415, - 6.2752971992968964, - 6.432499348479381, - 6.326462138671673, - 6.59830823800222, - 6.518283171549696, - 6.727572031695778, - 6.600118889212871, - 6.489843412399393, - 6.473240801294676, - 6.580406672112248, - 6.3926950800182105, - 6.5329878517646645, - 6.434990699783117, - 6.540461133216833, - 6.364724151465686, - 6.525799105020119, - 6.382856640265195, - 6.394242262886686, - 6.312802804839117, - 6.30475503979225, - 6.389081999363682, - 6.027710514085191, - 6.149650791980499, - 6.119280994082223, - 6.055487541341745, - 5.977948695431391, - 6.16668878191685, - 6.050103612484466, - 6.030942862360142, - 6.063084092112585, - 6.306490556445346, - 6.078589202500565, - 6.098105029960544, - 6.093142602023775, - 5.870996204245585, - 6.274303171221499, - 6.103022973479154, - 6.112850983512749, - 6.057337768301912, - 5.933769729063229, - 5.913687800179152 - ] - }, - { - "legendgroup": "Point sensor 0", - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 1.983196641913326, - 2.003338201447632, - 1.9980023680323258, - 1.9811123933986097, - 1.9981926227116058, - 2.008487986443864, - 1.99598451932004, - 2.0043234925148106, - 2.0035967771957224, - 2.00649573271151, - 1.9979019682408914, - 2.0155886946449018, - 2.010802288467447, - 1.9984739913497225, - 1.9981652211811711, - 2.007785638574461, - 2.0077414327981047, - 2.0151127155712247, - 1.9911534854438553, - 2.0071369969266817, - 2.000742257816604, - 1.9986624821149852, - 2.003986626306235, - 2.0106836025857766, - 2.0126804138249237, - 2.001351484551734, - 1.9914278509057126, - 1.999349075489228, - 1.995133425312695, - 1.981630438731792, - 1.977598106201599, - 2.0079628341573468, - 1.9948990374192408, - 2.01109993538433, - 1.9907274810474571, - 1.9938013028474497, - 2.0057822811253, - 1.9983305652392451, - 1.999463619254624, - 1.9977336254188551, - 2.0022700414196883, - 2.0072116357950387, - 1.9880021691881749, - 1.9881165019276452, - 1.9895335332960462, - 2.000013724973905, - 2.012614946202352, - 1.979602063694696, - 2.000685390515423, - 1.9858312012979076, - 2.0139014433021156, - 1.9887580556647142, - 1.9908246618062597, - 2.0141503406339583, - 2.00262051522007, - 2.0115438755995494, - 1.9904539656133688, - 1.9865144990716013, - 1.97885909950618, - 1.9940318206848535, - 1.9840486470967087, - 2.001017855471596, - 2.0034305276254143, - 1.9997480894045705, - 1.995895943170991, - 1.998653702453864, - 2.0147231215621284, - 2.0062302966166556, - 1.9930926271728273, - 1.9917376269920124, - 2.001462021131961, - 2.0102317890814967, - 1.9863118778814832, - 2.0303021698877335, - 2.017419847595157, - 2.01977857216658, - 2.0130722944932855, - 1.9900039596089119, - 2.0028124339783955, - 2.0051022026343825, - 2.0097356434257496, - 2.0186141677519647, - 2.0010857879008546, - 2.010724135150452, - 2.04083788016993, - 2.036928506027122, - 2.0633638561233907, - 2.0665207917357473, - 2.099198471338621, - 2.106268810794917, - 2.1485484922903404, - 2.153952703809359, - 2.1822155305649464, - 2.256197934175503, - 2.288037389734159, - 2.3553308865745115, - 2.4357033747252137, - 2.531255542315328, - 2.634642140106805, - 2.765935723765985, - 2.946826068636022, - 3.022266370576072, - 3.2536970594376697, - 3.4639011221589744, - 3.690445208973262, - 3.968261888766348, - 4.175319869850326, - 4.503918671611777, - 4.845715404826579, - 5.356662872626648, - 5.961129754985474, - 6.3423444738567545, - 6.951994414830769, - 7.364531396355585, - 7.801255037898933, - 9.11072067841932, - 9.597050116415245, - 10.589105061013514, - 11.265940243979086, - 11.693093890600919, - 12.714216996695951 - ] - }, - { - "legendgroup": "Point sensor 1", - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:00:00.000000000", - "2024-01-01T08:02:00.000000000", - "2024-01-01T08:04:00.000000000", - "2024-01-01T08:06:00.000000000", - "2024-01-01T08:08:00.000000000", - "2024-01-01T08:10:00.000000000", - "2024-01-01T08:12:00.000000000", - "2024-01-01T08:14:00.000000000", - "2024-01-01T08:16:00.000000000", - "2024-01-01T08:18:00.000000000", - "2024-01-01T08:20:00.000000000", - "2024-01-01T08:22:00.000000000", - "2024-01-01T08:24:00.000000000", - "2024-01-01T08:26:00.000000000", - "2024-01-01T08:28:00.000000000", - "2024-01-01T08:30:00.000000000", - "2024-01-01T08:32:00.000000000", - "2024-01-01T08:34:00.000000000", - "2024-01-01T08:36:00.000000000", - "2024-01-01T08:38:00.000000000", - "2024-01-01T08:40:00.000000000", - "2024-01-01T08:42:00.000000000", - "2024-01-01T08:44:00.000000000", - "2024-01-01T08:46:00.000000000", - "2024-01-01T08:48:00.000000000", - "2024-01-01T08:50:00.000000000", - "2024-01-01T08:52:00.000000000", - "2024-01-01T08:54:00.000000000", - "2024-01-01T08:56:00.000000000", - "2024-01-01T08:58:00.000000000", - "2024-01-01T09:00:00.000000000", - "2024-01-01T09:02:00.000000000", - "2024-01-01T09:04:00.000000000", - "2024-01-01T09:06:00.000000000", - "2024-01-01T09:08:00.000000000", - "2024-01-01T09:10:00.000000000", - "2024-01-01T09:12:00.000000000", - "2024-01-01T09:14:00.000000000", - "2024-01-01T09:16:00.000000000", - "2024-01-01T09:18:00.000000000", - "2024-01-01T09:20:00.000000000", - "2024-01-01T09:22:00.000000000", - "2024-01-01T09:24:00.000000000", - "2024-01-01T09:26:00.000000000", - "2024-01-01T09:28:00.000000000", - "2024-01-01T09:30:00.000000000", - "2024-01-01T09:32:00.000000000", - "2024-01-01T09:34:00.000000000", - "2024-01-01T09:36:00.000000000", - "2024-01-01T09:38:00.000000000", - "2024-01-01T09:40:00.000000000", - "2024-01-01T09:42:00.000000000", - "2024-01-01T09:44:00.000000000", - "2024-01-01T09:46:00.000000000", - "2024-01-01T09:48:00.000000000", - "2024-01-01T09:50:00.000000000", - "2024-01-01T09:52:00.000000000", - "2024-01-01T09:54:00.000000000", - "2024-01-01T09:56:00.000000000", - "2024-01-01T09:58:00.000000000", - "2024-01-01T10:00:00.000000000", - "2024-01-01T10:02:00.000000000", - "2024-01-01T10:04:00.000000000", - "2024-01-01T10:06:00.000000000", - "2024-01-01T10:08:00.000000000", - "2024-01-01T10:10:00.000000000", - "2024-01-01T10:12:00.000000000", - "2024-01-01T10:14:00.000000000", - "2024-01-01T10:16:00.000000000", - "2024-01-01T10:18:00.000000000", - "2024-01-01T10:20:00.000000000", - "2024-01-01T10:22:00.000000000", - "2024-01-01T10:24:00.000000000", - "2024-01-01T10:26:00.000000000", - "2024-01-01T10:28:00.000000000", - "2024-01-01T10:30:00.000000000", - "2024-01-01T10:32:00.000000000", - "2024-01-01T10:34:00.000000000", - "2024-01-01T10:36:00.000000000", - "2024-01-01T10:38:00.000000000", - "2024-01-01T10:40:00.000000000", - "2024-01-01T10:42:00.000000000", - "2024-01-01T10:44:00.000000000", - "2024-01-01T10:46:00.000000000", - "2024-01-01T10:48:00.000000000", - "2024-01-01T10:50:00.000000000", - "2024-01-01T10:52:00.000000000", - "2024-01-01T10:54:00.000000000", - "2024-01-01T10:56:00.000000000", - "2024-01-01T10:58:00.000000000", - "2024-01-01T11:00:00.000000000", - "2024-01-01T11:02:00.000000000", - "2024-01-01T11:04:00.000000000", - "2024-01-01T11:06:00.000000000", - "2024-01-01T11:08:00.000000000", - "2024-01-01T11:10:00.000000000", - "2024-01-01T11:12:00.000000000", - "2024-01-01T11:14:00.000000000", - "2024-01-01T11:16:00.000000000", - "2024-01-01T11:18:00.000000000", - "2024-01-01T11:20:00.000000000", - "2024-01-01T11:22:00.000000000", - "2024-01-01T11:24:00.000000000", - "2024-01-01T11:26:00.000000000", - "2024-01-01T11:28:00.000000000", - "2024-01-01T11:30:00.000000000", - "2024-01-01T11:32:00.000000000", - "2024-01-01T11:34:00.000000000", - "2024-01-01T11:36:00.000000000", - "2024-01-01T11:38:00.000000000", - "2024-01-01T11:40:00.000000000", - "2024-01-01T11:42:00.000000000", - "2024-01-01T11:44:00.000000000", - "2024-01-01T11:46:00.000000000", - "2024-01-01T11:48:00.000000000", - "2024-01-01T11:50:00.000000000", - "2024-01-01T11:52:00.000000000", - "2024-01-01T11:54:00.000000000", - "2024-01-01T11:56:00.000000000", - "2024-01-01T11:58:00.000000000", - "2024-01-01T12:00:00.000000000" - ], - "y": [ - 9.377246903370379, - 9.423095247460608, - 9.432571221240023, - 9.092643660712165, - 8.859556014847556, - 8.655509456619336, - 8.620473634347672, - 8.126352215892458, - 7.556216828468407, - 7.667834335181266, - 7.484190120824107, - 7.292203049043618, - 6.937437951638885, - 6.343060276778562, - 6.248695826695021, - 5.796947607048183, - 5.399953704214194, - 5.2054868573318, - 5.076692625573246, - 4.684901291936489, - 4.423084667770013, - 4.072455920825205, - 3.9769604197494375, - 3.656419322873028, - 3.4913829664245033, - 3.2564493510843198, - 3.0344355276684536, - 2.9199379657722044, - 2.807666317663072, - 2.672359086204675, - 2.555023766707416, - 2.467256334146183, - 2.3871249359278433, - 2.339827196758854, - 2.2338534465193134, - 2.224712859056882, - 2.1731663853566685, - 2.1521046455012036, - 2.116577721548318, - 2.084874706217439, - 2.0820800549053318, - 2.045610396219539, - 2.028951160874966, - 2.045072231824393, - 2.0143918030994663, - 2.0007428356046697, - 2.0090239062769557, - 2.0060044836575006, - 1.9976139058589597, - 2.004287767235816, - 2.0102327551298576, - 1.9987548156068329, - 1.9996715214342469, - 2.01091470788135, - 2.0098539878007107, - 1.998654388722279, - 1.9857268491857063, - 1.9872480126089649, - 1.9950816966568004, - 1.9997903002605422, - 2.0072942052518217, - 1.990422665446124, - 1.999643963962288, - 2.0105812666240666, - 1.9991238345493223, - 2.001857874412059, - 2.003385294941852, - 1.991970309004957, - 2.005932136381029, - 1.9885600447371912, - 2.0046024128583158, - 2.009570753907875, - 2.002457281161687, - 1.9861168732089114, - 2.0079784763024766, - 1.996053334696689, - 1.9925280084505945, - 2.00150993471972, - 2.0101932279858024, - 1.9891225610646486, - 1.9947135488689347, - 1.9951476258144036, - 1.9916435389549159, - 1.991503130184738, - 2.0030709682819654, - 2.0025755496731827, - 1.9995276219214315, - 1.9966205755763724, - 2.002706945674821, - 1.9992555315645966, - 1.9982500980993352, - 1.9999807833367864, - 2.022242743259279, - 2.0085257530060243, - 1.9866346614518706, - 1.9874241273765871, - 2.001375885801873, - 2.004705557046606, - 2.0007831822163507, - 1.9968658321913015, - 2.005643073160123, - 2.0267860575704004, - 1.9908725874788058, - 1.9866998605194408, - 1.9853418508874738, - 1.9943644828801455, - 2.000929517117784, - 2.0004653093004197, - 1.992226728917966, - 1.9912886378073245, - 1.9951980718612405, - 1.9962192149789064, - 1.9925708696350641, - 2.0173339547511038, - 2.010663212866598, - 2.0005141552597387, - 1.973358229637477, - 2.0050875397067385, - 2.003156845028036, - 1.9829852604179308, - 1.9973940468766096 - ] - } - ], - "layout": { - "autosize": true, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 10 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "xaxis": { - "autorange": true, - "range": [ - "2024-01-01 07:45:40.0084", - "2024-01-01 12:14:19.9916" - ], - "type": "date" - }, - "yaxis": { - "autorange": true, - "range": [ - 1.3215435382628342, - 13.366031688070594 - ], - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAMgCAYAAADSp0wWAAAAAXNSR0IArs4c6QAAIABJREFUeF7svXuUZFWZp/1GZGbkPeuSdRcoCkotBAQVBe8IMqstpL/+cGSwu0dtHIbR6dUDsmBR+jku2tFiwaBM9xr5amrEyze2WD0ybdOU2i2ItrQFNFAKQqncKep+z3tmXL51gj5RJ4LMjBNxzj7nF5lP/ANZufe73/N7dkLVU/uckymVSiXjQwIkQAIkQAIkQAIkQAIkQAIkQAIkQAIkMG0CGeQJO4MESIAESIAESIAESIAESIAESIAESIAEZk4AecLuIAESIAESIAESIAESIAESIAESIAESIIFZEkCesD1IgARIgARIgARIgARIgARIgARIgARIAHnCHiABEiABEiABEiABEiABEiABEiABEiCB5hLg5ElzuTGLBEiABEiABEiABEiABEiABEiABEhgniSAPJknoLlMEiABEiABEiABEiABEiABEiABEiCB5hJAnjSXG7NIgARIgARIgARIgARIgARIgARIgATmSQLIk3kCmsskARIgARIgARIgARIgARIgARIgARJoLgHkSXO5MYsESIAESIAESIAESIAESIAESIAESGCeJBBZnuw6ONbyUQ0O5GxoNG+T+WLLX8tcvICBnnYrFM1GxvNz8fJa/pp6Otss19FmR4YnW/5a5uIFtLdlbFF/p+0/Mj4XL29OXNOqwW6bC/8vnRMwprmIpQs67fDwpOULpbl6iS19XQv7Omxismhjk4WWvo652nxfd7tlMxk7Njo1Vy+xpa+rsyNrfd0ddvDYREtfh9e89/9SPiTgOgHkiZkhT1xvs2j1kSfR8nM9G3niOuFo9ZEn0fJLYjbyJImUm18DedJ8dknMRJ4kkXLzayBPms8uiZnIkyRSZo25lADyBHkiv5+RJ9qIkCfafJAn2nz8vy3j5IkuJ+SJLhuvM+SJNh/kiTYf5Ik2H7rTSwB5gjzR25U1HSFPtBEhT7T5IE+0+SBP9PkgT7QZIU+0+SBPtPkgT7T50J1eAsgT5InerkSeyDMJNog80caFPNHmgzzR54M80WaEPNHmgzzR5oM80eZDd3oJIE+QJ3q7EnkizwR50jqIkCf6rHjmiTYj5Ik2H+SJNh/kiTYf5Ik2H7rTSwB5gjzR25XIE3kmyJPWQYQ80WeFPNFm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3fvwUXc/vvHA3VkvraT9nUd/ZKSbCF4kumlwdBw/3vUiHvzqnQbQENjzyM4n8cSjD+GCVe04cbIX3975JL7/yP3G33KvA2+9awAQOR7/6XP42j23oL622jj3gYcfw85H7sfWLRuWbmkFNLfdsJ3wJOs1gAlSASpABagAFaACVIAKUAEqQAWoABVYngIq4Yl1xkZbi/8sWHH7jZ/Czn/9mVHyVGesZDLzxC6twJQHv/XPeOiBuw0AYoc+dphivd6EJNuv2BQ3+8TMl5xrghfOPFlepebVVIAKUAEqQAWoABWgAlSAClABKkAFsqmAOngigGL3ngO4964bjXIKXOgfDBgzMnoHhozZG7dev82YpWKHGcmEyQY8scMRSVMOc8ZMsvw4/Wa93jprhfAkm1WcaVEBKkAFqAAVoAJUgApQASpABagAFVieAurgib04slTmsSeeweM/+DoCI+Nxy2TM2RxfvGNH3FIYJ0mWC0+cZo7Y00wGT+ygxT5rhfBkeRWZV1MBKkAFqAAVoAJUgApQASpABagAFciVAirhiTWQrBR888a15xSemOCktbkhLi5LqjNPrLNnzFkl9mCypsGMe5Krqs50qQAVoAJUgApQASpABagAFaACVIAKZKaAOnhiD8p6rmeeJAInIncqMU+cwImTVZx5klkF5lVUgApQASpABagAFaACVIAKUAEqQAVyrcA5hyf25TBWWCK71AhUeOb5l3My8yRREFdTdLffk+22IzNM7DNTkplJeJLrqs70qQAVoAJUgApQASpABagAFaACVIAKZKbAOYMn1i2ErUtVrFv3SpGu+eRmjI5PZgxPrPeR9Jx27zG3GrZLaG4v3DcwHPeTdYcf6xIjc3mRQB8z/snh97rirk20LIfwJLMKzKuoABWgAlSAClABKkAFqAAVoAJUgArkWoFzBk9yXbBU0hfwsf+1Q3FxTFK5judQASpABagAFaACVIAKUAEqQAWoABWgAuePAuc1PJFlNddu+4TrTj3nT3VgSakAFaACVIAKUAEqQAWoABWgAlSAClABuwL/D9cFB+s6ma9MAAAAAElFTkSuQmCC", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "fig=go.Figure()\n", "fig = sensor_group.plot_timeseries(fig=fig)\n", @@ -6588,1901 +317,10 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "id": "5e753113", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "marker": { - "color": "rgb(102, 197, 204)" - }, - "mode": "markers", - "name": "Beam sensor 0", - "r": [ - 7.890544298596149, - 7.958141328760238, - 7.997781006185826, - 7.791714050564657, - 7.782219369759696, - 7.7027693732637434, - 7.907840816891765, - 7.6700135697839205, - 7.399342586559671, - 7.718237540043255, - 7.9351367632351915, - 8.073939392618753, - 8.031656486135207, - 7.812462574982364, - 8.112189138058191, - 7.7788990519010195, - 7.988779900550802, - 8.223226698536852, - 8.46635913540058, - 8.35976039932035, - 8.172487831942838, - 8.192107075317526, - 8.417256468847048, - 8.225621150677922, - 8.21077100799815, - 8.218807731163079, - 7.951363896989119, - 8.195299007997008, - 8.185643574955071, - 8.218548320159844, - 7.9461939768467795, - 7.815597803316228, - 7.794624234656219, - 7.9645143747178935, - 7.720335130908699, - 7.7503081698494185, - 7.688706876286427, - 7.620110694793409, - 7.466715301269638, - 7.720342055147692, - 7.606163454952473, - 7.275749372954192, - 7.4163210916589275, - 7.464469357027655, - 7.083615841940639, - 7.15182294817799, - 7.029489247478757, - 7.431185471393737, - 6.935559078187955, - 7.464442803427087, - 6.990922686398541, - 6.758047623096688, - 7.134644599034315, - 7.127610122606144, - 7.005447146729908, - 6.936970029253562, - 7.1157522487129965, - 7.023155055131738, - 6.94577067240893, - 6.941399122600365, - 6.950554849446046, - 6.8035830453970085, - 6.5952572736008435, - 6.6997112326926365, - 6.4358182873601715, - 6.228512822938784, - 6.370212743602484, - 5.965197619958553, - 5.670722904331665, - 5.4092527154850565, - 5.5241648323843595, - 5.2397473974684985, - 4.91572521356592, - 4.633219256004186, - 4.5400233431839165, - 4.353943694043269, - 4.028485418614057, - 3.864464089807961, - 3.539441897942694, - 3.3939803832605677, - 3.227885487882121, - 3.119255427121228, - 2.9070995206113843, - 2.8161757615155705, - 2.6731276657632774, - 2.5984979552676566, - 2.4500032015307904, - 2.3735466759210153, - 2.2779211217947637, - 2.2405174064881272, - 2.184930658890143, - 2.157572714269137, - 2.1118349207961633, - 2.0652910880277293, - 2.0745550790102345, - 2.0549042473976273, - 2.022638972123836, - 2.029919842896592, - 2.013068496458053, - 2.0214647272413453, - 2.0071553540617373, - 1.9964920853424701, - 1.9831137410811164, - 2.0058707050002367, - 1.980511867669466, - 2.0245139084366777, - 2.000852575176608, - 1.9849020190202036, - 1.9922309396993194, - 2.005094867153131, - 2.0054485571601326, - 2.002963983022924, - 1.9932325539823295, - 1.9963126120697006, - 1.9930378327798541, - 2.0146632064409284, - 2.0050843772358333, - 2.0073227744879043, - 1.9901371591373391, - 1.9974147663996378, - 1.9955842376080692 - ], - "theta": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ], - "type": "scatterpolar" - }, - { - "marker": { - "color": "rgb(246, 207, 113)" - }, - "mode": "markers", - "name": "Beam sensor 1", - "r": [ - 3.682546580145791, - 3.7480905642136455, - 3.7698680043021437, - 3.794598393144694, - 3.83274341111876, - 3.86497740501022, - 4.006802529994472, - 4.00036913392764, - 3.9481857205658546, - 4.117909378036816, - 4.282293259472804, - 4.406231144354147, - 4.447463297540425, - 4.443590076373223, - 4.629636764291417, - 4.545490134137496, - 4.762738236450896, - 4.938310570885127, - 5.111496514565832, - 5.1788582633957265, - 5.123397071785726, - 5.206004099459512, - 5.396100523576821, - 5.372742818795979, - 5.405700982902913, - 5.480551233211444, - 5.4028565673334885, - 5.603169973822201, - 5.648248603408112, - 5.7317007600106695, - 5.613196197980132, - 5.581840737042961, - 5.630356346648869, - 5.781025574448763, - 5.6593174697231685, - 5.785756959055169, - 5.7601284895891025, - 5.788230351783955, - 5.754823564902719, - 5.983036443529689, - 5.974087870474966, - 5.853581332504211, - 6.05036311395665, - 6.256640285625232, - 6.042790621566124, - 6.22990745422102, - 6.309026381181748, - 6.849153378600638, - 6.544674066514035, - 7.184503566262105, - 6.9789420581200305, - 6.886236016904894, - 7.471669563863474, - 7.762957844685767, - 7.821344822244425, - 7.922507789887316, - 8.345401921453925, - 8.472924289116735, - 8.615287303631332, - 8.809610810458969, - 9.035224680826879, - 8.957781684609735, - 8.885928390945166, - 9.246098586643537, - 8.989226600661285, - 8.826880433498385, - 9.224550490249078, - 8.666387184451414, - 8.35830797842546, - 7.9737690388247175, - 8.274314391215423, - 7.895346213420811, - 7.364134570065388, - 7.024706955714454, - 6.856057330634303, - 6.550675240375444, - 6.001026072729235, - 5.7473498709277475, - 5.179122598109574, - 4.9060020586063615, - 4.549379273020302, - 4.399405223274182, - 3.951318128653969, - 3.7854334090717483, - 3.517014058408442, - 3.3266536606027954, - 3.0158811263612737, - 2.8558150557997846, - 2.641022614794618, - 2.5635556005601003, - 2.4417459704023154, - 2.353363963316716, - 2.2918332400362815, - 2.225248550191615, - 2.167120232809512, - 2.150653627504091, - 2.1063974564304617, - 2.0572469716135755, - 2.0666323791183285, - 2.032471250117122, - 2.035065173030915, - 2.016388180351999, - 1.9884035587486506, - 1.9946275607988648, - 2.0110489861306116, - 2.007182303060239, - 2.015862772628424, - 1.9996942978841656, - 2.018956716670328, - 2.005825443548572, - 1.999172793355701, - 2.010995452542602, - 1.9924528691982193, - 1.9975634247956362, - 2.0213335526096783, - 2.001793789629492, - 2.0055065009580493, - 2.0015699208661024, - 2.0045203729281864, - 2.00267582003051, - 2.0018363198777194 - ], - "theta": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ], - "type": "scatterpolar" - }, - { - "marker": { - "color": "rgb(248, 156, 116)" - }, - "mode": "markers", - "name": "Beam sensor 2", - "r": [ - 2.269245637739695, - 2.2998277822003876, - 2.351115554515013, - 2.3935431861339245, - 2.428123337836534, - 2.470719657409029, - 2.5684442525172146, - 2.608401472914582, - 2.652626621461129, - 2.748034028282946, - 2.894737262301469, - 2.9908490842834103, - 3.0978455239211984, - 3.1509667408846997, - 3.326764555050805, - 3.3330979970861074, - 3.575132425051332, - 3.759228323720947, - 3.8887196453804944, - 4.043437375808217, - 4.050506497912035, - 4.22683691104584, - 4.396473800871551, - 4.4619620709729375, - 4.532003662178585, - 4.64984731095328, - 4.622063816688261, - 4.826252324387638, - 4.885625362565224, - 4.935170844521706, - 4.862291907837204, - 4.805313759351483, - 4.775618316142517, - 4.851701500193712, - 4.691552039484218, - 4.650333511091664, - 4.549063855538922, - 4.436587569348351, - 4.266755975925206, - 4.246945653196009, - 4.105199644437734, - 3.8207443811943587, - 3.76578437913965, - 3.6432292488783906, - 3.434034318674742, - 3.358538229741471, - 3.2112062988002816, - 3.23267184871027, - 3.0798248687520866, - 3.1804620367500456, - 3.0964862033990115, - 3.0612505016338365, - 3.2115489435183475, - 3.335249324326946, - 3.417560925332592, - 3.5664929683330793, - 3.8533906642324256, - 4.1024507553633205, - 4.422140591141545, - 4.730717446434767, - 5.175269837503004, - 5.335543164479105, - 5.751446425842532, - 6.362782149520328, - 6.586851314232249, - 6.997391537873926, - 7.751036556264858, - 7.777454977371383, - 8.155740103878497, - 8.207234627855504, - 9.106795113531648, - 9.32795998520604, - 9.309637673008757, - 9.546740430963878, - 9.804248595901914, - 9.954939637426316, - 9.715272466653715, - 9.919012585224353, - 9.426146994807988, - 9.381143548952075, - 9.225444020959102, - 9.242464997880658, - 8.64771292853549, - 8.720492535923322, - 8.254609334417417, - 8.177520841410793, - 7.49575219181945, - 7.011784661177705, - 6.570573953570048, - 6.4039083492556035, - 5.881223844581611, - 5.743632683422368, - 5.32497879667636, - 5.128065711068347, - 4.771406653946123, - 4.567379970744297, - 4.2633697842224585, - 3.998274617164608, - 3.7431305087916757, - 3.5640369344307383, - 3.4232356065073786, - 3.163615878501435, - 3.0636088603740594, - 2.9268984897298744, - 2.7988888545408037, - 2.6797049743503356, - 2.6743015837582944, - 2.544122439327525, - 2.4766287477503033, - 2.4158531230124223, - 2.388839202446592, - 2.3103962951875596, - 2.2883898387773973, - 2.2656110539544514, - 2.182375903759291, - 2.192195730283244, - 2.1526966227594615, - 2.130321013931836, - 2.121387467257954, - 2.0863309225751463, - 2.080522785486708 - ], - "theta": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ], - "type": "scatterpolar" - }, - { - "marker": { - "color": "rgb(220, 176, 242)" - }, - "mode": "markers", - "name": "Beam sensor 3", - "r": [ - 2.0048472363581484, - 2.0082219970582025, - 2.015800037650369, - 2.012366744598929, - 2.0111881790208708, - 2.0219622540415894, - 2.057214171269872, - 2.0487982640804923, - 2.0736473164052693, - 2.074484380099291, - 2.111416484473971, - 2.153093852426196, - 2.188017257750393, - 2.2320828234983763, - 2.3031832410600193, - 2.3288576415748485, - 2.4558843536465047, - 2.5730497336031135, - 2.6648526542934325, - 2.801412243407468, - 2.8515649705965536, - 3.025450916377702, - 3.1881448174673945, - 3.3075328329125577, - 3.4593618133667348, - 3.6503357699762815, - 3.757369896428248, - 4.037274701391412, - 4.154784623078697, - 4.364903690879912, - 4.4195768624892455, - 4.524256079262262, - 4.665464106491921, - 4.874705146875558, - 4.879133958904936, - 5.0000493179441134, - 5.021692152651062, - 5.038295909505634, - 4.97903310476586, - 5.094084807969011, - 4.98872815093238, - 4.762696631203361, - 4.759924178895062, - 4.671634607533428, - 4.3974554519641895, - 4.285269765473419, - 4.068842760611289, - 4.067903217716059, - 3.7639949942805484, - 3.8501873348849465, - 3.5186997978414905, - 3.370053762221009, - 3.347379932546897, - 3.266396938229498, - 3.206170357777176, - 3.1592126455779295, - 3.1522128502388886, - 3.1803689117834915, - 3.2328029416584583, - 3.315932694571669, - 3.462249875311364, - 3.5020447261847067, - 3.640269588368556, - 3.9197060623595643, - 4.022398781325316, - 4.229702841015361, - 4.615740838413224, - 4.65131304447365, - 4.915612214498838, - 4.999684311863299, - 5.543001149145256, - 5.770732538353119, - 5.879338834139044, - 6.1394139616632515, - 6.406597261426106, - 6.665192764365242, - 6.706639930014827, - 7.016110775439613, - 6.955765201857972, - 7.1228997204022315, - 7.239182588670879, - 7.4599481238905145, - 7.30786174425639, - 7.610740791514557, - 7.485268147762597, - 7.716168488871713, - 7.500396399116027, - 7.323188388139022, - 7.256850168550908, - 7.365357581221947, - 7.092519875730409, - 7.18067422086919, - 7.02790348186461, - 7.0845065525206525, - 6.823907782604007, - 6.9180174020276795, - 6.724945868466202, - 6.665933745756693, - 6.496744589859477, - 6.422949656642195, - 6.4635260041235965, - 6.03297051046321, - 6.1130595894210105, - 5.989518984719937, - 5.869455688512479, - 5.737087535948124, - 5.863585712595215, - 5.706087485013977, - 5.656232997437064, - 5.586352136512266, - 5.777772230577951, - 5.497138236879059, - 5.496109362261726, - 5.4281912715592755, - 5.181428028873061, - 5.470657114025242, - 5.265092624551789, - 5.251251261270487, - 5.128381042359218, - 5.008954659938972, - 4.937947653434158 - ], - "theta": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ], - "type": "scatterpolar" - }, - { - "marker": { - "color": "rgb(135, 197, 95)" - }, - "mode": "markers", - "name": "Beam sensor 4", - "r": [ - 2.0051149170621545, - 2.0034643278005198, - 2.008069426224035, - 1.9849772671932653, - 2.003382534648923, - 2.023722447734518, - 2.000352514673192, - 2.03029614903509, - 2.038364567947861, - 2.044964064429174, - 2.03503177506568, - 2.0602008112587473, - 2.0659533343339285, - 2.086741386884045, - 2.118339138419928, - 2.1134645770392844, - 2.1661730767060092, - 2.2321830001956924, - 2.273634634006135, - 2.3527961480161794, - 2.3935902384764454, - 2.501668650775769, - 2.576113817190549, - 2.654032244985692, - 2.751766980314175, - 2.8712009933902998, - 2.976368887925728, - 3.1774776254317003, - 3.2875412192309295, - 3.4634409215358546, - 3.5097132659780277, - 3.664258949210175, - 3.8333056485311654, - 4.016320484607367, - 4.127739610852591, - 4.310502959611292, - 4.383383023829332, - 4.514032596658787, - 4.568620045735389, - 4.786125781625841, - 4.843115420595217, - 4.760113160740463, - 4.860452818460505, - 4.951409764544519, - 4.759584411119105, - 4.781698322616699, - 4.725514599783425, - 4.875837637340524, - 4.581161834822511, - 4.815236594403675, - 4.4918800015416265, - 4.331826904105765, - 4.430303413499499, - 4.367626925330253, - 4.280904744989299, - 4.200828866132116, - 4.243010427480616, - 4.173161369291443, - 4.145098407638647, - 4.146652374238214, - 4.225840142941879, - 4.216756738550404, - 4.220744979762471, - 4.372986967965083, - 4.381007911961047, - 4.439821681257273, - 4.709410203349204, - 4.6624983793001995, - 4.785377791404038, - 4.79402986060704, - 5.171859824263258, - 5.28230622116517, - 5.31745650673929, - 5.496571183198965, - 5.687566471624886, - 5.838544967968865, - 5.859713884878767, - 6.096679717395961, - 6.012214935379968, - 6.1511799807706415, - 6.2752971992968964, - 6.432499348479381, - 6.326462138671673, - 6.59830823800222, - 6.518283171549696, - 6.727572031695778, - 6.600118889212871, - 6.489843412399393, - 6.473240801294676, - 6.580406672112248, - 6.3926950800182105, - 6.5329878517646645, - 6.434990699783117, - 6.540461133216833, - 6.364724151465686, - 6.525799105020119, - 6.382856640265195, - 6.394242262886686, - 6.312802804839117, - 6.30475503979225, - 6.389081999363682, - 6.027710514085191, - 6.149650791980499, - 6.119280994082223, - 6.055487541341745, - 5.977948695431391, - 6.16668878191685, - 6.050103612484466, - 6.030942862360142, - 6.063084092112585, - 6.306490556445346, - 6.078589202500565, - 6.098105029960544, - 6.093142602023775, - 5.870996204245585, - 6.274303171221499, - 6.103022973479154, - 6.112850983512749, - 6.057337768301912, - 5.933769729063229, - 5.913687800179152 - ], - "theta": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ], - "type": "scatterpolar" - }, - { - "marker": { - "color": "rgb(158, 185, 243)" - }, - "mode": "markers", - "name": "Point sensor 0", - "r": [ - 1.983196641913326, - 2.003338201447632, - 1.9980023680323258, - 1.9811123933986097, - 1.9981926227116058, - 2.008487986443864, - 1.99598451932004, - 2.0043234925148106, - 2.0035967771957224, - 2.00649573271151, - 1.9979019682408914, - 2.0155886946449018, - 2.010802288467447, - 1.9984739913497225, - 1.9981652211811711, - 2.007785638574461, - 2.0077414327981047, - 2.0151127155712247, - 1.9911534854438553, - 2.0071369969266817, - 2.000742257816604, - 1.9986624821149852, - 2.003986626306235, - 2.0106836025857766, - 2.0126804138249237, - 2.001351484551734, - 1.9914278509057126, - 1.999349075489228, - 1.995133425312695, - 1.981630438731792, - 1.977598106201599, - 2.0079628341573468, - 1.9948990374192408, - 2.01109993538433, - 1.9907274810474571, - 1.9938013028474497, - 2.0057822811253, - 1.9983305652392451, - 1.999463619254624, - 1.9977336254188551, - 2.0022700414196883, - 2.0072116357950387, - 1.9880021691881749, - 1.9881165019276452, - 1.9895335332960462, - 2.000013724973905, - 2.012614946202352, - 1.979602063694696, - 2.000685390515423, - 1.9858312012979076, - 2.0139014433021156, - 1.9887580556647142, - 1.9908246618062597, - 2.0141503406339583, - 2.00262051522007, - 2.0115438755995494, - 1.9904539656133688, - 1.9865144990716013, - 1.97885909950618, - 1.9940318206848535, - 1.9840486470967087, - 2.001017855471596, - 2.0034305276254143, - 1.9997480894045705, - 1.995895943170991, - 1.998653702453864, - 2.0147231215621284, - 2.0062302966166556, - 1.9930926271728273, - 1.9917376269920124, - 2.001462021131961, - 2.0102317890814967, - 1.9863118778814832, - 2.0303021698877335, - 2.017419847595157, - 2.01977857216658, - 2.0130722944932855, - 1.9900039596089119, - 2.0028124339783955, - 2.0051022026343825, - 2.0097356434257496, - 2.0186141677519647, - 2.0010857879008546, - 2.010724135150452, - 2.04083788016993, - 2.036928506027122, - 2.0633638561233907, - 2.0665207917357473, - 2.099198471338621, - 2.106268810794917, - 2.1485484922903404, - 2.153952703809359, - 2.1822155305649464, - 2.256197934175503, - 2.288037389734159, - 2.3553308865745115, - 2.4357033747252137, - 2.531255542315328, - 2.634642140106805, - 2.765935723765985, - 2.946826068636022, - 3.022266370576072, - 3.2536970594376697, - 3.4639011221589744, - 3.690445208973262, - 3.968261888766348, - 4.175319869850326, - 4.503918671611777, - 4.845715404826579, - 5.356662872626648, - 5.961129754985474, - 6.3423444738567545, - 6.951994414830769, - 7.364531396355585, - 7.801255037898933, - 9.11072067841932, - 9.597050116415245, - 10.589105061013514, - 11.265940243979086, - 11.693093890600919, - 12.714216996695951 - ], - "theta": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ], - "type": "scatterpolar" - }, - { - "marker": { - "color": "rgb(254, 136, 177)" - }, - "mode": "markers", - "name": "Point sensor 1", - "r": [ - 9.377246903370379, - 9.423095247460608, - 9.432571221240023, - 9.092643660712165, - 8.859556014847556, - 8.655509456619336, - 8.620473634347672, - 8.126352215892458, - 7.556216828468407, - 7.667834335181266, - 7.484190120824107, - 7.292203049043618, - 6.937437951638885, - 6.343060276778562, - 6.248695826695021, - 5.796947607048183, - 5.399953704214194, - 5.2054868573318, - 5.076692625573246, - 4.684901291936489, - 4.423084667770013, - 4.072455920825205, - 3.9769604197494375, - 3.656419322873028, - 3.4913829664245033, - 3.2564493510843198, - 3.0344355276684536, - 2.9199379657722044, - 2.807666317663072, - 2.672359086204675, - 2.555023766707416, - 2.467256334146183, - 2.3871249359278433, - 2.339827196758854, - 2.2338534465193134, - 2.224712859056882, - 2.1731663853566685, - 2.1521046455012036, - 2.116577721548318, - 2.084874706217439, - 2.0820800549053318, - 2.045610396219539, - 2.028951160874966, - 2.045072231824393, - 2.0143918030994663, - 2.0007428356046697, - 2.0090239062769557, - 2.0060044836575006, - 1.9976139058589597, - 2.004287767235816, - 2.0102327551298576, - 1.9987548156068329, - 1.9996715214342469, - 2.01091470788135, - 2.0098539878007107, - 1.998654388722279, - 1.9857268491857063, - 1.9872480126089649, - 1.9950816966568004, - 1.9997903002605422, - 2.0072942052518217, - 1.990422665446124, - 1.999643963962288, - 2.0105812666240666, - 1.9991238345493223, - 2.001857874412059, - 2.003385294941852, - 1.991970309004957, - 2.005932136381029, - 1.9885600447371912, - 2.0046024128583158, - 2.009570753907875, - 2.002457281161687, - 1.9861168732089114, - 2.0079784763024766, - 1.996053334696689, - 1.9925280084505945, - 2.00150993471972, - 2.0101932279858024, - 1.9891225610646486, - 1.9947135488689347, - 1.9951476258144036, - 1.9916435389549159, - 1.991503130184738, - 2.0030709682819654, - 2.0025755496731827, - 1.9995276219214315, - 1.9966205755763724, - 2.002706945674821, - 1.9992555315645966, - 1.9982500980993352, - 1.9999807833367864, - 2.022242743259279, - 2.0085257530060243, - 1.9866346614518706, - 1.9874241273765871, - 2.001375885801873, - 2.004705557046606, - 2.0007831822163507, - 1.9968658321913015, - 2.005643073160123, - 2.0267860575704004, - 1.9908725874788058, - 1.9866998605194408, - 1.9853418508874738, - 1.9943644828801455, - 2.000929517117784, - 2.0004653093004197, - 1.992226728917966, - 1.9912886378073245, - 1.9951980718612405, - 1.9962192149789064, - 1.9925708696350641, - 2.0173339547511038, - 2.010663212866598, - 2.0005141552597387, - 1.973358229637477, - 2.0050875397067385, - 2.003156845028036, - 1.9829852604179308, - 1.9973940468766096 - ], - "theta": [ - 0.14553391101001198, - 0.9004618512205194, - 1.3532448944496627, - 2.159853577101172, - 3.133120112931349, - 3.5886374124281812, - 4.612419303538212, - 5.277948700025175, - 6.0819907218665525, - 6.6591003175066605, - 7.606734925560073, - 8.27900706562739, - 8.991554749650987, - 9.88884460343021, - 10.527993737817486, - 11.093308255053149, - 12.241492797829673, - 12.997084951223302, - 13.563913775003549, - 14.445502002073614, - 14.89368217617486, - 15.890447884876883, - 16.411258435356423, - 17.19107117576573, - 17.808978643129578, - 18.66615619368165, - 19.437607428165308, - 20.376848714641017, - 20.92352113556074, - 21.765869477506325, - 22.37710665878229, - 23.161978354092756, - 24.025982150051266, - 24.647724773636252, - 25.564679768540557, - 26.35646403660762, - 26.927513351085608, - 27.71952835260014, - 28.51760440111661, - 29.14236074693277, - 29.84411556975196, - 30.8223552796183, - 31.425325916455698, - 32.34531543719872, - 32.8979527312836, - 33.67496098941528, - 34.511274266569835, - 35.375520795794905, - 36.01980138689915, - 36.5844445829464, - 37.57980329808829, - 38.10126016895215, - 38.92441418547995, - 39.896026352544844, - 40.486833857253316, - 41.15950028958604, - 41.892483269424176, - 42.728778874500385, - 43.57253681948142, - 44.29053884396273, - 45.103224211582315, - 45.616141827828436, - 46.51969185124082, - 47.29338980509273, - 47.92742678806554, - 48.78635721387836, - 49.49199788881203, - 50.16445944145628, - 51.09611358131349, - 51.695140916873825, - 52.447643447622745, - 53.20886176622811, - 53.985975193216, - 54.86790119642262, - 55.45555434283686, - 56.13449699009592, - 56.971442619783694, - 57.72753962906793, - 58.6419812070953, - 59.29513152653327, - 60.07312902285544, - 60.65714640948324, - 61.54377456006648, - 62.214826206366524, - 62.866162078706274, - 63.631591668088895, - 64.61947588566889, - 65.29386923848332, - 66.20710743550266, - 66.79736676991406, - 67.56022155295413, - 68.12363023533648, - 68.95047831416454, - 69.67946239259291, - 70.3487368395747, - 71.12930767356578, - 71.91337256871368, - 72.75930156087382, - 73.54564164648642, - 74.24361254032016, - 75.04889332646606, - 75.76023336380648, - 76.54701846949533, - 77.37291242208914, - 78.13092281097695, - 78.96129738101195, - 79.33421128475345, - 80.2091968420322, - 80.88712718434465, - 81.7962895614659, - 82.40355493043485, - 83.27086960196368, - 84.06958564941178, - 84.62487808827107, - 85.48170922852778, - 86.22869828148961, - 87.00490437384741, - 87.84478808160831, - 88.56308367469047, - 89.17337924966628, - 89.9835902931037 - ], - "type": "scatterpolar" - } - ], - "layout": { - "annotations": [ - { - "align": "left", - "bgcolor": "#ffffff", - "bordercolor": "#000000", - "borderpad": 10, - "borderwidth": 2, - "font": { - "color": "#000000", - "size": 18 - }, - "opacity": 0.8, - "showarrow": false, - "text": "Radial Axis: Wind
speed in m/s.", - "x": 1, - "xanchor": "right", - "xref": "paper", - "y": 1, - "yanchor": "top", - "yref": "paper" - } - ], - "autosize": true, - "margin": { - "l": 0, - "r": 0 - }, - "polar": { - "angularaxis": { - "direction": "clockwise", - "rotation": 90, - "tickmode": "array", - "ticktext": [ - "N", - "NE", - "E", - "SE", - "S", - "SW", - "W", - "NW" - ], - "tickvals": [ - 0, - 45, - 90, - 135, - 180, - 225, - 270, - 315 - ], - "type": "linear" - }, - "radialaxis": { - "angle": 0, - "autorange": false, - "range": [ - 0, - 12.84135916666291 - ], - "tickangle": 0, - "type": "linear" - } - }, - "template": {}, - "title": { - "text": "Measured Concentration against Wind Direction." - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAGQCAYAAABf8k5KAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQecFOX9/7+712lH71IFaYogIoIiCgqKjZ/GXqJRSUzRaKKxkJgYS9QYSzTFWCKKsXcFVLABioCAiFKk996Pazv//+fZffZm52Z2Z3dn9/Z2P8/rtdxxO/OU9zPt+cy3+AzDMISFBEiABEiABEiABEiABEiABEiABEiABEjAloCP4gmPDBIgARIgARIgARIgARIgARIgARIgARJwJkDxhEcHCZAACZAACZAACZAACZAACZAACZAACUQhQPGEhwcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUDzhMUACJEACJEACJEACJEACJEACJEACJEACiRGg5Uli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZAACZAACZAACZAACZAACZBAjhCgeJIjE81hkgAJkAAJkAAJkAAJkAAJkAAJkAAJJEaA4kli3LgXCZAACZBAigk8/PDDsmXLFpkwYYIUFxenuDVWTwIk4DWBnTt3yo033ihnnHGGjBs3zuvqWR8JkAAJkAAJpJUAxZO04mZjJEACuUhALyDWrl0r1157re0i4vXXX5fHH39cDjnkEPnrX/8qzZo1y0VUEWNORDyZM2eO3HLLLbXY3XPPPTJo0KCsY4rj5rnnnpP77rtPunfv7vn4otWP+fn0009T1rbng/GoQn0+t2vXLmXCHtguWLDA1bXg4MGDcuedd6rRWYXGH374QW666SYZPny4XHfddREE9Lmiz41o2yaKLh7xxHydtLY3ePBgW9ap6LPbseq2L7nkklrX9Fw9N9yy43YkQAIkUF8JUDyprzPHfpMACdQbAuZFgZ04Euv7ejNQjzsaj3iiF5CzZ88Wq1CiF4mnn356rQWkx11Oe3UUT9KOXDJNPAEBp+MgmihrFWhSIUQkIp70798/4jw1n9tW8TkVfXZ7RFE8cUuK25EACZBA9hCgeJI9c8mRkAAJZCgB82Jr48aNtUzYscB5++23BW+y8T0tT4ITGY94EutNL+bg/fffl4suuihDj5LEulWX4kliPeZebgjEY3mC+pwW8qhn/vz5smfPHmWRpa2vtCDRunXrlAqKXognmpcWgpys99xw9XKbaOKJl+2wLhIgARIggcwhQPEkc+aCPSEBEshSAnoBgTeqKGZzfL2IwaJmzZo1tqb6VlcUO+sVvbAwI2zSpEktlwrzW1y9rdUk3km00CKPFnfM44JVB9wDsEgz12dnim/nQqMXItgfBX3Hp3379jFdIxJ9+4xxvvPOO2FkVssU8/iGDRsW4Q7ktICzcxuybmudKyt/86IMnYM7ly5mdnZzju30NnoBftddd8nf//53gVWOPiYWLlwYUa9mbnb/cVu/VeyLxRVt6b7dfvvt8uc//1ng0obi5J5hvTTYHcfR9reOpWPHjupYNbtcOLmNRDsutCuMFrH+9Kc/yaRJkxRrFLtzNdY5aOVnNzdWHuZjVfdJ/+2KK66QyZMnK+FExx2xW/jb/S3eeXLD2ekybzcG87aam1lgtuuzWVDE+a3P8WjnjtNxZ3cOoB64VerrnbmP+lhxEr9inftenBtZehvlsEiABEggIwhQPMmIaWAnSIAEspmAncig3wJjsY3FMRagzz77bC3xxM6iws7aAH9DMQdltG5nFxvBbsESr3iCha/d4kMLCWbxwG6xY7ddtDgO1mNFL0jcxjWJxsEcx8K8mDYvoK2xInR/7OYKdWBex48frzZDbAqrdZGT+wQW92Z2TvPuFPNEL8LtRDQ3xwv6GyvmiZ0QiP107A0nFxfdN7O4EGvxbF1IP/jgg3L++eeHY704HTN282J3HKL9Bx54QH7zm9+EYw5FEyXM7iX6GDSztutPPOeg25gn5uPPvA/GCGEKAhUEBHPwZRzDOF/MYpmTeIJ93cyTW86Jiif6eMT10hqnxSyCmQUK6zXBToAxCxZaCHTaDoymTZsmV199taO1j1198bSR7LmRzfdSjo0ESIAE6poAxZO6ngG2TwIkkPUErAswLU5gkYbFmn4j7LSINpvbA5bbRabVZN7JzBwLhU8++URGjx6t5iJe8cQaowB1RHMLMI+zpKRECQp27gNu3XbidV1x2t7Kx4mz3dicBBXzwW23YMX31nad5snOBSIecSPWiZZs/W65Oi0u9eIYLmyJuq5ZGWuWTueQmyww0SyurJYn1sC9Tv2xBhm1OwfjFU+sbaHf+BuErEWLFoVFWlhN2FlGRLM8sc6HlYkXnN1c16xCayzLE2sQZbfnoJtrSqyYJ+b5c7o+OInXdnNvZR7rfOb3JEACJEAC3hOgeOI9U9ZIAiRAAhEErA/IZjcTc7YS64Im2sOynbBgdX3RndDWC2ZLimhWGl6IJ06LKfTJvIDB/2H+7pSxwk2qYjcLHfOEOI3POk+xxBPUqS0s3CxsnNq1ijGxxBOrxUM0y5NoC/BYx4sWM9zW75ZrLPEknuxBsdzVnI6NaLE47NxmYlleOLVjXTTHcw7GK55YjxuMo1OnTsoazXw+9uvXz1awjFc8Mc9TIpytt4l0iCduz0E3wm084onT9cHOEimay0885wZvwyRAAiRAAt4ToHjiPVPWSAIkQAJRxRO9eIQ5vNkdxPrQbLeIM1dsdpXR25rdPOwWiHZxHaxxGbwQT5xSBuv+a/cG9AdWAXZijpsFjF7gm035ox1+0dyBrN+VlZXJjTfeKE7ZP8ziidOCR/fFKUaHua/6WEiHeOL2eHFr2aItiMxMrGN3w8utEKaP4927d0e4nlgtC5zmxe7c0NxLS0sjLF+StTyxHt9uz8F4xROzCHfZZZepYxfXA1i2mWMrHXHEEUqwtFrjJCOexMPZ6fx0I55YXfTisTxxew7Cxc4p9bO57/GIJ9GuD3bXfSfLE4onfLggARIggbolQPGkbvmzdRIggRwgYLcosDMfj8fyxM1DfLS363p/LXJYhRg7iw83i0hdbzTLE7u+WxdyWmByY3lituTRbhTRDiu3FhLpsjyx9jXV4kms+s2uLG7FE+0KYjdf8bomuFkgRrP0MMfycHrjb3duRHvjb3YlshuPW8sTu+PS6RyMVzzR5wz2g2gyceJEueOOO8LxW/RxP2bMGHnooYdqBZNORjyJh3Oi4kkiAWOtbjtuBVk328UjntDyJAdu9BwiCZBAThCgeJIT08xBkgAJ1CUBN29UzQsfHV/ATRwN7BfLn14vhvGwjwVI3759I3DE8+Yz1iJSV+x2zNG2c7OA0e1hW7MLlHW+zTEl3MbmiEc8iTZXU6ZMkRNOOEGlSnYjDMQSN8yWME4xHOyOJ6tgZrX2sRMU4qnfLddofXNreeIkdFj76/bciGaR5EY0dCueuD0H3biBRRNievfuLY0bN47IVKWDUyMoMop2ObMKnmYXOrcuJG45R7sOx7pm2LURj+UJ2nZ7fDltZ76OxHL9SkXMEzfXj7q817FtEiABEsh2AhRPsn2GOT4SIIE6JxBrUWAWAKxvm7V7hXWhi4XEjBkzBJYWdvWbXQO0K4/dQsPJKsbqaqDN5WPFfjDD1osdu1Sv5qwmdgsV3V4iqWvtWGE8uh92b7A1B7tsO27cdrQgYBVwzAIQtoE7wPfff1/rrT/Gi2KOT2GNA2M3V/G8/Y4mbNkdL9g+nvrdcvVCPLFbSOu/uc14g3TCbrIZwSUs1nEfj3hijfHj9hx0cyFzmkfsG+07p7l2K55Eyyxk5ew0jlhipV098Yonup+xzkG7Y9kamyia4GbHzSrwus38o3nZHWNO11g3xwq3IQESIAESiJ8AxZP4mXEPEiABEoiLQDLiCRqyix9iTT9rjaOAxR5SlCJVqdkNw64u8wLS/KCORaMu2AbFreWJdaGOdMbmYm3TGvgT369ZsyYivaob6E6xVpxiqiDujC52Io/bmCdO3KzxZLCdXZBT83bxWJ7YHR96rNHiLLg9XhKp3xqrx8oVdbpdlEebc+tco51hw4bVSsFrjXWBcwdiGo5va7Ydu+PQzXHvVjxxOp9jnYN26abt2JjH6pSmFyKE3fmQjNsO+hIPZ7u+28WC0ds5iajxiidO5yn+bneuWo9laz+sfdbHerTj23xdtRtXPOcGxRM3dwVuQwIkQALeEaB44h1L1kQCJEACJEACJFAPCLiNyVMPhsIukgAJkAAJkAAJpIkAxZM0gWYzJEACJEACJEAC6SeAN/mwSEHWGV3iiaeT/h6zRRIgARIgARIggUwkQPEkE2eFfSIBEiABEiABEvCEgNX1ApXauRJ50hgrIQESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIgARIgARIgARIgARIgARIgAS8IUDzxgiLrIAESIAESIAESIAESIAESIAESIAESyFoCFE+ydmo5MBIgARIggbogcPDgQbnzzjtl9uzZcs8998igQYNUN+bMmSOvv/66TJgwQYqLi+uia2yTBEiABEiABEiABEggQQIUTxIEx91IgARIgARIwI6AFk9at24tW7ZsCYslFE94vJAACZAACZAACZBA/SVA8aT+zh17TgIkQAIkkIEEtHgyZswYmTx5sowbN05Zn1A8ycDJYpdIgARIgARIgARIwCUBiicuQXEzEiABEiABEnBDQIsnEE1QtKvOokWL6LbjBiC3IQESIAESIAESIIEMJEDxJAMnhV0iARIgARKovwTM4km/fv1U/BOrkMKYJ/V3ftlzEiABEiABEiCB3CRA8SQ3552jJgESIAESSBEBs3hidtfRbjwMGJsi8KyWBEiABEiABEiABFJIgOJJCuGyahIgARIggdwjYBVPnALI5h4ZjpgESIAESIAESIAE6i8Biif1d+7YcxIgARIggQwkYBVP0EUEi73llltk8ODBTFWcgXPGLpEACZAACZAACZBALAIUT2IR4vckQAIkQAIkEAcBO/FE/w3V0G0nDpjclARIgARIgARIgAQy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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "fig = go.Figure()\n", "fig = met_object.plot_polar_scatter(fig=fig, sensor_object=sensor_group)\n", @@ -8500,7 +338,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "id": "625bf435-57c5-4688-a858-335d7a551acb", "metadata": {}, "outputs": [], @@ -8520,1334 +358,10 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "id": "0cd96e2d-2f35-464a-b088-1b8f3f704316", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.791714050564657, - 7.718237540043255, - 8.031656486135207, - 8.223226698536852, - 8.218807731163079, - 8.185643574955071, - 7.794624234656219, - 7.620110694793409, - 7.275749372954192, - 7.029489247478757, - 7.005447146729908, - 6.950554849446046, - 6.5952572736008435, - 5.670722904331665, - 4.633219256004186, - 3.539441897942694, - 2.8161757615155705, - 2.2779211217947637, - 2.0745550790102345, - 2.0214647272413453, - 1.9964920853424701, - 2.000852575176608, - 1.9963126120697006, - 1.9974147663996378 - ] - }, - { - "legendgroup": "Beam sensor 1", - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.794598393144694, - 4.006802529994472, - 4.447463297540425, - 5.111496514565832, - 5.396100523576821, - 5.613196197980132, - 5.6593174697231685, - 5.788230351783955, - 6.05036311395665, - 6.849153378600638, - 7.762957844685767, - 8.615287303631332, - 8.957781684609735, - 8.35830797842546, - 7.024706955714454, - 5.179122598109574, - 3.7854334090717483, - 2.641022614794618, - 2.225248550191615, - 2.0572469716135755, - 2.007182303060239, - 2.005825443548572, - 2.001793789629492, - 2.00267582003051 - ] - }, - { - "legendgroup": "Beam sensor 2", - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 2", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.3935431861339245, - 2.652626621461129, - 3.1509667408846997, - 3.8887196453804944, - 4.4619620709729375, - 4.862291907837204, - 4.775618316142517, - 4.266755975925206, - 3.6432292488783906, - 3.1804620367500456, - 3.335249324326946, - 4.422140591141545, - 6.362782149520328, - 8.155740103878497, - 9.546740430963878, - 9.426146994807988, - 8.64771292853549, - 6.570573953570048, - 5.128065711068347, - 3.7431305087916757, - 2.9268984897298744, - 2.4766287477503033, - 2.2656110539544514, - 2.121387467257954 - ] - }, - { - "legendgroup": "Beam sensor 3", - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 3", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.012366744598929, - 2.0736473164052693, - 2.2320828234983763, - 2.6648526542934325, - 3.3075328329125577, - 4.154784623078697, - 4.874705146875558, - 5.021692152651062, - 4.671634607533428, - 3.8501873348849465, - 3.266396938229498, - 3.2328029416584583, - 3.9197060623595643, - 4.915612214498838, - 6.1394139616632515, - 7.016110775439613, - 7.485268147762597, - 7.323188388139022, - 7.02790348186461, - 6.496744589859477, - 5.989518984719937, - 5.706087485013977, - 5.470657114025242, - 5.128381042359218 - ] - }, - { - "legendgroup": "Beam sensor 4", - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 4", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0034643278005198, - 2.03503177506568, - 2.086741386884045, - 2.273634634006135, - 2.654032244985692, - 3.2875412192309295, - 4.016320484607367, - 4.568620045735389, - 4.781698322616699, - 4.725514599783425, - 4.331826904105765, - 4.173161369291443, - 4.372986967965083, - 4.785377791404038, - 5.496571183198965, - 6.096679717395961, - 6.518283171549696, - 6.489843412399393, - 6.525799105020119, - 6.382856640265195, - 6.055487541341745, - 6.063084092112585, - 6.093142602023775, - 6.057337768301912 - ] - }, - { - "legendgroup": "Point sensor 0", - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 1.9981926227116058, - 2.0035967771957224, - 2.007785638574461, - 2.0071369969266817, - 2.003986626306235, - 1.9914278509057126, - 1.9948990374192408, - 1.999463619254624, - 1.9895335332960462, - 2.000685390515423, - 2.00262051522007, - 1.9865144990716013, - 1.9997480894045705, - 2.001462021131961, - 2.017419847595157, - 2.0051022026343825, - 2.0186141677519647, - 2.099198471338621, - 2.256197934175503, - 2.634642140106805, - 3.4639011221589744, - 4.845715404826579, - 7.364531396355585, - 11.265940243979086 - ] - }, - { - "legendgroup": "Point sensor 1", - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.092643660712165, - 7.667834335181266, - 6.343060276778562, - 5.076692625573246, - 3.656419322873028, - 2.807666317663072, - 2.339827196758854, - 2.116577721548318, - 2.028951160874966, - 2.0060044836575006, - 1.9996715214342469, - 1.9950816966568004, - 1.999643963962288, - 2.003385294941852, - 2.002457281161687, - 1.9947135488689347, - 1.9951476258144036, - 1.9992555315645966, - 1.9999807833367864, - 2.001375885801873, - 1.9908725874788058, - 1.9951980718612405, - 2.0005141552597387, - 1.9973940468766096 - ] - } - ], - "layout": { - "autosize": true, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 0 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "xaxis": { - "autorange": true, - "range": [ - "2024-01-01 07:51:15.8414", - "2024-01-01 12:08:44.1586" - ], - "type": "date" - }, - "yaxis": { - "autorange": true, - "range": [ - 1.42401231150212, - 11.828442431548568 - ], - "type": "linear" - } - } - }, - "image/png": "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Mvv2rez7yHXgoXsN+W6lsjIsxDffflGsuVAfu/eg7sz8rs/Kz/p5Zcd3vi8J4jkM832Wcb/oLPVsfpmRMseMxbwHVT7LuF90lpn1tuDsz6xi34PZJ0it24B1P2t3vONsNeXfu1Am+f4miGRnkG+/aJeJ3b62/KlzhSYS8FWemAiMNZMACZAACZAACZAACZAACZAACZAACSwsApQnCytvrpYESIAESIAESIAESIAESIAESIAESECSAOWJJDA2JwESIAESIAESIAESIAESIAESIAESWFgEKE8WVt5cLQmQAAmQAAmQAAmQAAmQAAmQAAmQgCQByhNJYGxOAiRAAiRAAiRAAiRAAiRAAiRAAiSwsAhQniysvLlaEiABEiABEiABEiABEiABEiABEiABSQKUJ5LA2JwESIAESIAESIAESIAESIAESIAESGBhEVCSJ9+//xH8+OePp0n98z98A1sv3OAJNfH733f//QO480u3YO3KpUXPYf1d8Xx1Zv9e/OaNa3DfvV/DoqaG9BzZ6xP//vZdt+LjN1591vyZecQfvnXnraipriy6RjYkARIgARIgARIgARIgARIgARIgARIwg4CSPBFLy4iDT3z4WtflSbb86Gxvxf3fuUNKngjp8tOHfofbP/vRtNAQouTuex6YHefgkRP423sewN/d/cX0uI8+/hx2vf5uWoCI130P/gqfv+WGtEwRbW+763u45+4v5qwzu8abdm6nPDFje2eVJEACJEACJEACJEACJEACJEACJCBNwDV5IoTF7d/4AXbv7U4XkS0UMrLirz54Oe754b+k//6FT96Ir992c8GCVa88sQ6aqe2O225OCxAhSw739M3Ob5Up2f0zkmT7JZtyrj4RV6es6upIN82IF155Ir39sQMJkAAJkAAJkAAJkAAJkAAJkAAJaE/ANXkiru4QLyEnMrLi5g9fmxYOmas3btyxLS0srDJjPkpuyROrHBHiQ7wy8qZQPfn+lt0/+6oVyhPtt3cWSAIkQAIkQAIkQAIkQAIkQAIkQALSBFyTJ9aZswWDVV4Ue8uPG/Ik35UjmatGMs8xKSRPrKLFetUK5Yn0NscOJEACJEACJEACJEACJEACJEACJGAUAVflifVBq5lbc/ySJxlx0rGkJecWoWKvPBHt+k4N5jzPxLrGTNp87olR2z2LJQESIAESIAESIAESIAESIAESIIGiCbgmT6yiwe8rT+YTJ4JMMc88ySdO8lHllSdFb2tsSAIkQAIkQAIkQAIkQAIkQAIkQAJGElCWJ4WeI2IVF25feTLfQ1wzCdj9vdCv7YjnllivTCmULOWJkds9iyYBEiABEiABEiABEiABEiABEiCBoglIyZPsn+cVM3z7rltnf4Em81DY3pMDED8vvHhRIy67aGP6dhlZeWKdR8yV79d7Mj81bF1tdi3Zf8v+hR/xgNvPffXe9J83b1yD++79Wvqnia2/GpTpP99tOZQnRW9rbEgCJEACJEACJEACJEACJEACJEACRhKQkie6rFCIj+df/rPtTx3rUi/rIAESIAESIAESIAESIAESIAESIAESMJeAkfJE3FZz1bYL0j+LzBcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJeEng/wMekZMdldN5yQAAAABJRU5ErkJggg==", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "fig=go.Figure()\n", "fig = prepocessor_object.sensor_object.plot_timeseries(fig=fig)\n", @@ -9865,7 +379,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "id": "1e1d54a0-f3da-4cd4-a171-f12941ba6e3a", "metadata": {}, "outputs": [], @@ -9910,33 +424,10 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": null, "id": "241d1ea1-9935-417b-b1d2-296983aca7b8", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 5000/5000 [04:46<00:00, 17.47it/s]" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "z_src: Acceptance rate 1%\n", - "n_src: Acceptance rate 1%\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "\n" - ] - } - ], + "outputs": [], "source": [ "elq_model = ELQModel(sensor_object=prepocessor_object.sensor_object, meteorology=prepocessor_object.met_object,\n", " gas_species=gas_object, background=background, source_model=source_model,\n", @@ -9960,36 +451,10 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "id": "259ea88c-086b-4b4a-bbc3-d49761c22fdb", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Summary results:\n", - " latitude longitude altitude height median_estimate quantile_025 quantile_975 iqr_estimate absolute_count_iterations blob_likelihood\n", - "source_ID \n", - "0 0.0001809 0.0000898 2.0000394 2.0000000 14.9978133 14.9017498 15.0901801 0.0631084 1000 1.0000000\n", - "1 0.0001357 0.0001797 3.0000491 3.0000000 9.9505837 9.9024024 9.9936016 0.0313674 1000 1.0000000\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\numpy\\lib\\nanfunctions.py:1217: RuntimeWarning:\n", - "\n", - "All-NaN slice encountered\n", - "\n", - "C:\\Users\\Bas.vandeKerkhof\\python_environments\\pyelq_test\\Lib\\site-packages\\numpy\\lib\\nanfunctions.py:1563: RuntimeWarning:\n", - "\n", - "All-NaN slice encountered\n", - "\n" - ] - } - ], + "outputs": [], "source": [ "burn_in = elq_model.n_iter-1000\n", "\n", @@ -10006,2471 +471,10 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "id": "82c1288e-4610-4b4c-946c-0a420d4358ee", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.7775124500673005, - 7.682422893151921, - 8.03516548537397, - 8.199836612619476, - 8.211681895544416, - 8.133498368796353, - 7.825545066198956, - 7.572912203843689, - 7.31418090679373, - 7.109378065744779, - 6.988034107064822, - 6.921676743237326, - 6.48262753738407, - 5.8992439319455094, - 4.807637999691945, - 3.4755898118227657, - 2.8120572679651348, - 2.2825687679781117, - 2.0784743993692594, - 2.0116882502760065, - 1.9931913052158658, - 1.9909187148997025, - 1.9912023348956174, - 1.9913471609213862 - ] - }, - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgba(102, 197, 204, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.7616547494635455, - 7.666338703629646, - 8.018380317772577, - 8.182193949582246, - 8.194407862930966, - 8.116787312284094, - 7.808487123978765, - 7.554449148580396, - 7.296523992885672, - 7.090329607383164, - 6.967846090306108, - 6.900822979229808, - 6.463316602002197, - 5.879094832499429, - 4.790007690372129, - 3.4569431605311784, - 2.794313571457822, - 2.264040584713106, - 2.0607830397417697, - 1.9940109906199153, - 1.9740660322385757, - 1.9720627016524483, - 1.9710612290895224, - 1.9698017840281183 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(102, 197, 204, 0.3)", - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgba(102, 197, 204, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.792397560877715, - 7.697049028821605, - 8.050614091681915, - 8.216592692034792, - 8.230221372540074, - 8.150201631315042, - 7.8423758828981445, - 7.590110624724046, - 7.332149203365458, - 7.12783752808823, - 7.00608024027095, - 6.939209915536372, - 6.500820655119452, - 5.91633497834365, - 4.825294584995957, - 3.491349751662174, - 2.829467785798972, - 2.300507169889309, - 2.096758652096541, - 2.0306735512027085, - 2.0120831796711163, - 2.01218682176755, - 2.013083963701504, - 2.014052292134691 - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgb(246, 207, 113)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.783251675817577, - 4.082308399786676, - 4.585036123264181, - 4.948063409079042, - 5.361676785667489, - 5.623772049225469, - 5.687056153142228, - 5.774001637819954, - 6.061471373303148, - 6.588273826217893, - 7.755097402789431, - 8.586994339327415, - 8.993608609393995, - 8.606335714825033, - 7.263354711633953, - 5.045201013010813, - 3.7914124822561357, - 2.680678895778721, - 2.217781162569192, - 2.0549799254099175, - 2.005382214497355, - 2.000169979503385, - 1.9996991040093337, - 1.9995218992936432 - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgba(246, 207, 113, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.7726112177936066, - 4.070171853612785, - 4.5720766984603225, - 4.933204466781338, - 5.346912866426113, - 5.608775996141329, - 5.6726198867322974, - 5.759251004678564, - 6.046556286357734, - 6.571140309546626, - 7.734471676586719, - 8.564474697481344, - 8.970698234690156, - 8.585735247564163, - 7.243949880621786, - 5.027509630552106, - 3.7749770654538217, - 2.663998377930485, - 2.2011319902809983, - 2.0378668521064265, - 1.9889048527164457, - 1.9827119119113534, - 1.9810916884418666, - 1.9796271967763575 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(246, 207, 113, 0.3)", - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgba(246, 207, 113, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.793292164627075, - 4.094357610339846, - 4.598870031613887, - 4.962489229286815, - 5.377826329505441, - 5.6387011410514445, - 5.7024092506105655, - 5.7882897958909645, - 6.076025709223912, - 6.603352592416066, - 7.772207980889215, - 8.60568331244701, - 9.013666658732957, - 8.626827439590011, - 7.282317118732897, - 5.0610568438565045, - 3.8076833073669225, - 2.699052216136112, - 2.2366189026425007, - 2.074474250785352, - 2.0252105300934367, - 2.0203218429236602, - 2.020787773491454, - 2.0220154239796275 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgb(248, 156, 116)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 2", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.384332354701816, - 2.7192934903502257, - 3.2714573732543073, - 3.768392414443034, - 4.457396809959219, - 4.862288979134049, - 4.807133787871306, - 4.4043562410378385, - 3.672781137559157, - 3.1612808279049354, - 3.4103471369415708, - 4.406424905733587, - 6.43342365392728, - 7.873066502180767, - 9.483805089414096, - 9.421381897155621, - 8.701472910183233, - 6.6559742478711375, - 5.055548418171832, - 3.849639567908155, - 2.88433021899919, - 2.5009796439301315, - 2.253779566395895, - 2.116663368860496 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgba(248, 156, 116, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.376360597124462, - 2.7086083550386273, - 3.259140766783494, - 3.75490777159207, - 4.44254477816366, - 4.846517888824612, - 4.791850823030353, - 4.390255280581705, - 3.658333032293467, - 3.147126034700499, - 3.3962078793309103, - 4.39260278362924, - 6.417817095302779, - 7.855351657617575, - 9.462073569445002, - 9.400510256088335, - 8.681608652282602, - 6.63896318632313, - 5.04060785258736, - 3.834381325910568, - 2.8685200569308638, - 2.4852692968613557, - 2.2360000271614946, - 2.0975191646794715 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(248, 156, 116, 0.3)", - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgba(248, 156, 116, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.3927829688197066, - 2.7298530260356593, - 3.282673481634771, - 3.781515930953796, - 4.4734811474376555, - 4.877308459435754, - 4.823420315277171, - 4.420133457432816, - 3.6871837868308805, - 3.176033503845686, - 3.423905911542321, - 4.420906620448399, - 6.449611768764002, - 7.891527333906811, - 9.503995794173427, - 9.442550154398706, - 8.720769104356917, - 6.672444685374746, - 5.071959909543078, - 3.866481810275379, - 2.9025198377126276, - 2.520158081420695, - 2.274463589598265, - 2.139396201331 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgb(220, 176, 242)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 3", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0155636397801224, - 2.077342438561284, - 2.281521717360527, - 2.5901715428872274, - 3.317460761937962, - 4.146106193622158, - 4.79750502194198, - 5.034729090347614, - 4.67003371616101, - 3.944897460677653, - 3.2075762166663813, - 3.2395848464813133, - 3.9550612244841545, - 4.73570343444195, - 6.048335423006358, - 7.038810970943178, - 7.590361251210885, - 7.293406113381113, - 7.023561393888615, - 6.5948038081310285, - 5.915587049540726, - 5.664038884947696, - 5.429306348191206, - 5.138627419734364 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgba(220, 176, 242, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.007404049868726, - 2.067486876683118, - 2.269565001029892, - 2.5780433119326207, - 3.30429392909919, - 4.1316805334222035, - 4.7815117122340665, - 5.018228174608708, - 4.654418737911723, - 3.9294470839049906, - 3.193582786895597, - 3.226321516706786, - 3.942000868480325, - 4.721152772541035, - 6.033610837135705, - 7.02182461729145, - 7.574303384155734, - 7.277104489346749, - 7.007885008250342, - 6.578761081850246, - 5.899766799763508, - 5.647815653583092, - 5.412510479763049, - 5.1200155297713446 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(220, 176, 242, 0.3)", - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgba(220, 176, 242, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.023916009643667, - 2.088143804593163, - 2.2929116462892223, - 2.6027081388646245, - 3.3311939812214284, - 4.160166468726176, - 4.812696690303802, - 5.050928487097701, - 4.685582926281352, - 3.9596285865697376, - 3.221166155220159, - 3.2530739060173564, - 3.9691495188733183, - 4.74994088807524, - 6.062913206866294, - 7.053821106408849, - 7.607512455803909, - 7.310314834940737, - 7.040293705338979, - 6.610460659285998, - 5.931079247824498, - 5.680734851481486, - 5.447447088324287, - 5.157627050699161 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgb(135, 197, 95)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 4", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.00504815619205, - 2.02477648546101, - 2.1065465597226565, - 2.2508799449361474, - 2.664162715983304, - 3.2657865039981537, - 3.9554519785323174, - 4.537301560694424, - 4.871352211401282, - 4.73456964122761, - 4.295864839344491, - 4.167399452170388, - 4.363886640597712, - 4.713628138990343, - 5.450028276763003, - 6.094436579529315, - 6.579817911229776, - 6.499980558924083, - 6.506772510988288, - 6.380831822456644, - 6.052428042914718, - 6.055135350414334, - 6.097433315882331, - 6.058706643440703 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgba(135, 197, 95, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 1.9968391044757898, - 2.0144271129677325, - 2.0943610329834987, - 2.239526930671096, - 2.651219377900077, - 3.2526682247596312, - 3.9400735375148606, - 4.521114048887831, - 4.854662364337493, - 4.718529067629117, - 4.279969660869456, - 4.153511036033734, - 4.349306797159298, - 4.698173283302874, - 5.436262399031823, - 6.079804315133738, - 6.56397072822578, - 6.4836589849036725, - 6.48987057461346, - 6.363964685779271, - 6.034972440365318, - 6.0376111516412205, - 6.079136435421588, - 6.039181071025644 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(135, 197, 95, 0.3)", - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgba(135, 197, 95, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0136286257668696, - 2.03551406688887, - 2.117732440220332, - 2.2637576667466957, - 2.677089353948156, - 3.278641853876476, - 3.9688314612519893, - 4.5518463834889475, - 4.887245764512449, - 4.750541884869287, - 4.3109865959130556, - 4.181556813779349, - 4.377359273286049, - 4.727899086511943, - 5.465203741550347, - 6.109461570398638, - 6.595703315154341, - 6.515427903309976, - 6.522282915235225, - 6.397466977213423, - 6.068521392887679, - 6.07166581599392, - 6.116293293438079, - 6.079296603724898 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgb(158, 185, 243)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Point sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.000666212043779, - 1.9990113410595252, - 1.9991230294957703, - 1.999626267692718, - 1.9999275133055519, - 1.9998100283746525, - 1.9992200235243667, - 1.998026399013494, - 1.9969205557509135, - 1.9986018347259464, - 2.0010348007537555, - 2.0013357942440146, - 2.0024020650580723, - 2.0032845406438087, - 2.002429188350589, - 2.00598918879618, - 2.019743825466133, - 2.081208912125925, - 2.2519207227772977, - 2.6162183100781835, - 3.493399412999077, - 4.844621978449012, - 7.37738019107636, - 11.257683945323935 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgba(158, 185, 243, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 1.9918892950564422, - 1.9885595880098674, - 1.9885252711193278, - 1.9885609217185478, - 1.9885031563903368, - 1.9886916117230695, - 1.9888833411056075, - 1.9868121186329, - 1.9851461027080834, - 1.9868731979992047, - 1.9886098565857857, - 1.9891745858448864, - 1.9903764961859345, - 1.9909341720910982, - 1.9908187202674517, - 1.9944378624819779, - 2.0082592754713673, - 2.0698847950581416, - 2.2411847358245724, - 2.605041957048331, - 3.481032214588492, - 4.8316713763782815, - 7.35654106309402, - 11.224586714340678 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(158, 185, 243, 0.3)", - "legendgroup": "Point sensor 0", - "line": { - "color": "rgba(158, 185, 243, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.008947425870537, - 2.0096342331311736, - 2.010828778969616, - 2.011299897376911, - 2.0108586286426053, - 2.011928908677718, - 2.012330984022633, - 2.0108119701254266, - 2.0089003855562426, - 2.0100544620635525, - 2.0127058465683123, - 2.012906212990334, - 2.0137245473282586, - 2.014568506861753, - 2.014143649414111, - 2.0171712583503245, - 2.031194117659771, - 2.0930414096083867, - 2.264573880955624, - 2.628921953131454, - 3.505755167080985, - 4.859380080755669, - 7.39701552584019, - 11.290031816583861 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgb(254, 136, 177)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Point sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.04691591335226, - 7.718810132563073, - 6.310354959735022, - 5.1387272937745445, - 3.6586804494130023, - 2.8124482265364037, - 2.334986250802311, - 2.12700948611425, - 2.031006297345544, - 2.006696319256687, - 2.001707073886375, - 2.0012787901580125, - 2.0024384941614635, - 2.0033758582526504, - 2.0015783656889385, - 2.000745799900142, - 1.9982541751525407, - 1.999404197026101, - 1.9991958500714186, - 1.9985116474958198, - 1.9984426716066221, - 1.9987954574176303, - 1.9987952621117393, - 1.9991482919729648 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgba(254, 136, 177, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.024122198970614, - 7.700738559963982, - 6.295325433830099, - 5.125540946037389, - 3.6472349624137292, - 2.8016173731131366, - 2.3246985703694065, - 2.115806422907009, - 2.019335822203599, - 1.9949068556765457, - 1.9897787663060702, - 1.9891588969223215, - 1.9902546865340873, - 1.990922177188045, - 1.9902021713325786, - 1.9894725849661257, - 1.986802335695116, - 1.9882008939795017, - 1.9879910372079486, - 1.9868603684807162, - 1.9856602682229918, - 1.9858363876914105, - 1.9845331313008878, - 1.982227599052926 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(254, 136, 177, 0.3)", - "legendgroup": "Point sensor 1", - "line": { - "color": "rgba(254, 136, 177, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.068491099448307, - 7.736811545460263, - 6.32505247213344, - 5.152161686536546, - 3.6698647155834228, - 2.82362596117428, - 2.3480630172792556, - 2.1391612854351543, - 2.042589038359397, - 2.0177134393396714, - 2.01355466393002, - 2.0132334792451916, - 2.0139554198605563, - 2.0144204719159595, - 2.0133551199144657, - 2.0123953498890095, - 2.009914571347806, - 2.0114445115762187, - 2.0119817206986963, - 2.0116516128241937, - 2.012298192262004, - 2.0131390438429957, - 2.015040543423236, - 2.017180467547803 - ] - }, - { - "legendgroup": "Beam sensor 0", - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.791714050564657, - 7.718237540043255, - 8.031656486135207, - 8.223226698536852, - 8.218807731163079, - 8.185643574955071, - 7.794624234656219, - 7.620110694793409, - 7.275749372954192, - 7.029489247478757, - 7.005447146729908, - 6.950554849446046, - 6.5952572736008435, - 5.670722904331665, - 4.633219256004186, - 3.539441897942694, - 2.8161757615155705, - 2.2779211217947637, - 2.0745550790102345, - 2.0214647272413453, - 1.9964920853424701, - 2.000852575176608, - 1.9963126120697006, - 1.9974147663996378 - ] - }, - { - "legendgroup": "Beam sensor 1", - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.794598393144694, - 4.006802529994472, - 4.447463297540425, - 5.111496514565832, - 5.396100523576821, - 5.613196197980132, - 5.6593174697231685, - 5.788230351783955, - 6.05036311395665, - 6.849153378600638, - 7.762957844685767, - 8.615287303631332, - 8.957781684609735, - 8.35830797842546, - 7.024706955714454, - 5.179122598109574, - 3.7854334090717483, - 2.641022614794618, - 2.225248550191615, - 2.0572469716135755, - 2.007182303060239, - 2.005825443548572, - 2.001793789629492, - 2.00267582003051 - ] - }, - { - "legendgroup": "Beam sensor 2", - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 2", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.3935431861339245, - 2.652626621461129, - 3.1509667408846997, - 3.8887196453804944, - 4.4619620709729375, - 4.862291907837204, - 4.775618316142517, - 4.266755975925206, - 3.6432292488783906, - 3.1804620367500456, - 3.335249324326946, - 4.422140591141545, - 6.362782149520328, - 8.155740103878497, - 9.546740430963878, - 9.426146994807988, - 8.64771292853549, - 6.570573953570048, - 5.128065711068347, - 3.7431305087916757, - 2.9268984897298744, - 2.4766287477503033, - 2.2656110539544514, - 2.121387467257954 - ] - }, - { - "legendgroup": "Beam sensor 3", - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 3", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.012366744598929, - 2.0736473164052693, - 2.2320828234983763, - 2.6648526542934325, - 3.3075328329125577, - 4.154784623078697, - 4.874705146875558, - 5.021692152651062, - 4.671634607533428, - 3.8501873348849465, - 3.266396938229498, - 3.2328029416584583, - 3.9197060623595643, - 4.915612214498838, - 6.1394139616632515, - 7.016110775439613, - 7.485268147762597, - 7.323188388139022, - 7.02790348186461, - 6.496744589859477, - 5.989518984719937, - 5.706087485013977, - 5.470657114025242, - 5.128381042359218 - ] - }, - { - "legendgroup": "Beam sensor 4", - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 4", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0034643278005198, - 2.03503177506568, - 2.086741386884045, - 2.273634634006135, - 2.654032244985692, - 3.2875412192309295, - 4.016320484607367, - 4.568620045735389, - 4.781698322616699, - 4.725514599783425, - 4.331826904105765, - 4.173161369291443, - 4.372986967965083, - 4.785377791404038, - 5.496571183198965, - 6.096679717395961, - 6.518283171549696, - 6.489843412399393, - 6.525799105020119, - 6.382856640265195, - 6.055487541341745, - 6.063084092112585, - 6.093142602023775, - 6.057337768301912 - ] - }, - { - "legendgroup": "Point sensor 0", - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 1.9981926227116058, - 2.0035967771957224, - 2.007785638574461, - 2.0071369969266817, - 2.003986626306235, - 1.9914278509057126, - 1.9948990374192408, - 1.999463619254624, - 1.9895335332960462, - 2.000685390515423, - 2.00262051522007, - 1.9865144990716013, - 1.9997480894045705, - 2.001462021131961, - 2.017419847595157, - 2.0051022026343825, - 2.0186141677519647, - 2.099198471338621, - 2.256197934175503, - 2.634642140106805, - 3.4639011221589744, - 4.845715404826579, - 7.364531396355585, - 11.265940243979086 - ] - }, - { - "legendgroup": "Point sensor 1", - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.092643660712165, - 7.667834335181266, - 6.343060276778562, - 5.076692625573246, - 3.656419322873028, - 2.807666317663072, - 2.339827196758854, - 2.116577721548318, - 2.028951160874966, - 2.0060044836575006, - 1.9996715214342469, - 1.9950816966568004, - 1.999643963962288, - 2.003385294941852, - 2.002457281161687, - 1.9947135488689347, - 1.9951476258144036, - 1.9992555315645966, - 1.9999807833367864, - 2.001375885801873, - 1.9908725874788058, - 1.9951980718612405, - 2.0005141552597387, - 1.9973940468766096 - ] - } - ], - "layout": { - "annotations": [ - { - "align": "left", - "bgcolor": "#ffffff", - "bordercolor": "#000000", - "borderpad": 10, - "borderwidth": 2, - "font": { - "color": "#000000", - "size": 12 - }, - "opacity": 0.8, - "showarrow": false, - "text": "Point: Real observation
Line: Predicted Value
Shading: Quantiles 10-90", - "x": 1, - "xanchor": "left", - "xref": "paper", - "y": 1.1, - "yanchor": "top", - "yref": "paper" - } - ], - "autosize": true, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 50 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Observations and Predicted Model Values Against Time" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - "2024-01-01 07:51:11.1402", - "2024-01-01 12:08:48.8598" - ], - "title": { - "standoff": 20, - "text": "Time" - }, - "type": "date" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - 1.4154913576766828, - 11.836963385374005 - ], - "title": { - "standoff": 20, - "text": "Concentration (ppm)" - }, - "type": "linear" - } - } - }, - "image/png": "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e/HFF61+/fp2+umn2xFHHGGbbbZZ5mnr1q2z119/3SoqKmzBggX2gx/8wDp37mxnnnmmtWjRouhbdf9rr71mt956qy1evNg6duxo559//nr3hqYr+sIUJ1i1apU98MAD9tRTT9natWvt2GOPtZNPPtk233zzSqV6//337a677rI5c+a43zt06GC/+93vrG3btkVL7zmPGzfOPvvsM2eHvn372l577WWbbLJJpftD6kfRF6Y8wbvvvmvjx4+3Dz/80HbaaSf7wx/+YLvttlulUn377bf2zDPP2MSJE23p0qW24447OnvoO8llmg9HqN1D06UceZXZD6mTquOy2y233OLsttVWW7lv6be//e1631Ihe0yYMMGeeOIJ9x126tTJ+vXrZ82aNVsveUj9KGV7qGxi9NZbb9mjjz5qZ599trVu3Xq9Ite0fQ+xu14amq6UbfL999+7en/nnXfa8ccf79r2fFdN6q4433777fb888+78cIvfvEL6927tzVo0KDSq2pq91KxU8g3Emq3fExCOYemKxXuVZXjiy++sMcff9y1X3369Mmb9Ouvv7apU6faBx98YBdeeGFQ/6EHqa+mD0lWi4rZQ9+H2hvNRfzY9ZRTTnFtT7169Yq+LLTuh6Yr+kISQCAFBBBPEhrpv//9rw0fPtxatWrlBrzLly93/6+J+FlnnZURUN544w276aabbMCAAU740ERRHc6rr75qI0aMsCZNmlT55unTp7vG7qKLLnLPnjRpkj388MM2cuRIa9OmTebe0HQJi5ma5OJ63XXXmewycOBA++EPf2ijR492k+/Bgwe7CaAuCVh/+tOfrFevXnbwwQe731544QW79957nT00ca/qkhAm1t26dXNi1kMPPeSSX3311ZUmPaH1IzWAq5FRiVOqp/o+xHrmzJk2ZswYV5e7dOninqiB12233WYLFy50dmvYsKE9++yzbuJy3nnnWffu3at8c6jdQ9NVo5ipuSW0TspOEgc12FWb89FHH9moUaNsl112ce2YhOJCl+x5zz33mAZQ7dq1czafNm2aE1AuueSSSoPnkPqRGrjVzOiXX35pc+fOdYLv/Pnz12tH/GNr0r6H2j00XTWLmorbVqxYYe+884797W9/c+286r3qbu5Vk7qrd9x88822ww47WPPmzd33oX7lmGOOsXPOOcc23XRT+vUs4CHfSKjd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AAIQCCBQkuLJ/PnzbdCgQbZ8+fJKCPr06WPHHntsAJaaJ1m7dq299dZb9uijj9rZZ59trVu3rvZDP/vsM7vtttvslVdesc0228y6du1qvXv3tmbNmlV65rp16+y1116zW2+91RYvXmwdO3a0888/31q0aFEpXejzsm/Ss++66y77+OOP7ZJLLrHNN9+82uXhRghAAAIQgAAEIAABCEAAAhCAQJoIlKR4IgN8//339thjjznRYa+99rJhw4ZZgwYNNoptvvzyS5s7d6499dRTJiHn6quvrrZ4snTpUrviiits1113tXbt2tkbb7xhU6dOtR122MEuv/xya9q0aaZM06dPt4qKCrvooousQ4cONmnSJHv44Ydt5MiR1qZNG5cuyfOyYc2cOdM9R4IM4slGqUa8BAIQgAAEIAABCEAAAhCAAAQiIVCy4on4vvnmmzZkyBDr2bOn9e/ff6Mjf+mll+zGG2+skXjy7LPPWsuWLW333Xd3+dcOkCeffNLGjx9vvXr1spNPPtn9rp0m2m3TvXt3O+WUU2yTTTaxFStW2PDhw61hw4bub/Xr17fQ52XDWrBggdtBs3r1alu5ciXiyUavSbwQAhCAAAQgAAEIQAACEIAABOqSAOJJLdKXeDNq1Khqiydr1qwxCTAHHXSQbbrpppmcLlmyxAYOHGidOnXKiEJPPPGE3X777TZ69Gi368Rf2n1z3333uTzsuOOOwc/z90uAueOOO+z444+3hx56yOTyw86TWqw0PBoCEIAABCAAAQhAAAIQgAAEoiNQduJJdlyQf//7306UkAhxwQUXWJMmTWzVqlUuVolEhwMOOMD23Xdfu/76691vcp0ZOnRoJVeZqixaU/Gk0LO/+uoru/DCC+2oo45yMVwkskg0mTNnjl1zzTXOpcdfr7/+unNZkivPYYcdlveRuc/zib777jvnBrTbbrtZly5d3C4axJPovmEyBAEIQAACEIAABCAAAQhAAAK1TKDsxBMJDHJlGTBggO233372wQcf2KWXXupEkr59+zrXlHfeecdGjBhh+++/v4tVor8tWrTICRT6t4KwZu8EKWSj2hJP3nvvPbv22mtdOeTSI1eayy67zAkbY8aMscaNG2ey5F2XTj/99IyLT25+c5+XLbx8/vnnduSRRzo3IMSTWv4aeTwEIAABCEAAAhCAAAQgAAEIREmg7MST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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter.figure_dict[\"fitted_values\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}).show()" ] @@ -12486,2471 +490,10 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "id": "46563585-d29e-4133-85be-810750da7d33", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.777413978543755, - 7.682247616053499, - 8.035447475620815, - 8.200143617223443, - 8.212642950409188, - 8.134197663247132, - 7.826128223868668, - 7.573457251653712, - 7.314612719845881, - 7.109335416599933, - 6.987578640176645, - 6.921220404314102, - 6.482609686247809, - 5.898902787357072, - 4.808216086780574, - 3.475562264686157, - 2.812825395657265, - 2.2829871797844055, - 2.079080534744885, - 2.0125622545615154, - 1.9938348161204429, - 1.9919770056045751, - 1.9917323211370577, - 1.991823465001601 - ] - }, - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgba(102, 197, 204, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.76174717224724, - 7.6658738450458275, - 8.018487290446677, - 8.182043044790293, - 8.194590474533555, - 8.116401357521813, - 7.808494780021966, - 7.555069677274258, - 7.2961469464719775, - 7.090902180702989, - 6.968346237582824, - 6.901538017751563, - 6.463753678616581, - 5.880481694979706, - 4.790763823512455, - 3.458135394190191, - 2.795590501332784, - 2.264556282869633, - 2.0606494316373523, - 1.9934795540775956, - 1.9743391933825163, - 1.9719309747444926, - 1.9709727204202747, - 1.9698993102908897 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(102, 197, 204, 0.3)", - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgba(102, 197, 204, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.792506357183844, - 7.697757193046007, - 8.052110902775365, - 8.217746689636765, - 8.230569583061925, - 8.1519597545976, - 7.844261426766104, - 7.591913084892476, - 7.333460801515409, - 7.128620059119351, - 7.00676339346989, - 6.939984635744579, - 6.50132007197033, - 5.916769412653717, - 4.825808029049151, - 3.4922769302034506, - 2.829973652633411, - 2.3005654632583514, - 2.09699465868502, - 2.030754602448548, - 2.0123233048244913, - 2.011706481334106, - 2.012844818824194, - 2.0142227556587793 - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgb(246, 207, 113)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.7831907670616056, - 4.082585023906236, - 4.585610965486822, - 4.948894309879077, - 5.3625919732893585, - 5.6242652363938115, - 5.687928571069401, - 5.774235182167557, - 6.061940215040801, - 6.587899105589992, - 7.753876703416621, - 8.586174674830911, - 8.992538923906718, - 8.605865084285526, - 7.263161415990802, - 5.045004079031223, - 3.791849490636033, - 2.6811396599091437, - 2.218248508949195, - 2.055747601607164, - 2.0060975497319937, - 2.0003477958219005, - 1.9995844564282628, - 1.9998439901477323 - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgba(246, 207, 113, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.7731208665914537, - 4.070190628117046, - 4.572055471768339, - 4.934287342585001, - 5.347531509180206, - 5.609221344002946, - 5.673122736374901, - 5.7591138091601355, - 6.046363400170655, - 6.571608939625658, - 7.734637583096761, - 8.565116414351545, - 8.970475282472854, - 8.584393570524183, - 7.2442617843933, - 5.0286342507512645, - 3.7759473317776133, - 2.6642732884345124, - 2.2009165652091003, - 2.037875839844712, - 1.9880102812117728, - 1.9818131228839744, - 1.9804088020886428, - 1.9788504242922893 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(246, 207, 113, 0.3)", - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgba(246, 207, 113, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.7936365762299893, - 4.094783530789114, - 4.599744902320219, - 4.963872540335072, - 5.378170252647049, - 5.6397506399719965, - 5.703452172089962, - 5.789650493260195, - 6.077132222947889, - 6.604691456839536, - 7.7728035114065275, - 8.606798728192338, - 9.014511302585142, - 8.627179869669728, - 7.282297992145843, - 5.061256591798069, - 3.807867276178816, - 2.697841716008494, - 2.2354038831728356, - 2.073595337171928, - 2.0249976923280597, - 2.020233142331551, - 2.02019753731482, - 2.021845640459105 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgb(248, 156, 116)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 2", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.3842629123448194, - 2.719512086186568, - 3.271695884514551, - 3.7687769495959813, - 4.458163140681288, - 4.862785801928592, - 4.8075493399457025, - 4.405108169569898, - 3.6732522300096933, - 3.161322830562731, - 3.4103025581683943, - 4.406558280116271, - 6.433232283709787, - 7.87284499787995, - 9.483032060275656, - 9.420993452714844, - 8.701161027025003, - 6.655175631699616, - 5.05534464693009, - 3.85010836319329, - 2.8844742699415287, - 2.5008048194720778, - 2.2537406058749614, - 2.116787010882584 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgba(248, 156, 116, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.376234662476255, - 2.708875693529509, - 3.2594113200816834, - 3.7556152943697008, - 4.443695976826312, - 4.847215566456671, - 4.792088368185933, - 4.390255280581705, - 3.6584863308768627, - 3.147334312574462, - 3.396070933399129, - 4.392191722734618, - 6.417203831075697, - 7.854219828772812, - 9.460655295769739, - 9.39947718846939, - 8.681255646953934, - 6.638839940511681, - 5.040051569423087, - 3.8339648601053953, - 2.8676074202014155, - 2.483268167646932, - 2.234885119289638, - 2.0969241876207927 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(248, 156, 116, 0.3)", - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgba(248, 156, 116, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.392933571461605, - 2.730035761868369, - 3.283586718138565, - 3.7823258592594913, - 4.472993195188744, - 4.8784222449393875, - 4.823633836391889, - 4.420774818991754, - 3.6878558616300716, - 3.1763030002702437, - 3.4248573009663668, - 4.4211838773080805, - 6.449541389433557, - 7.891412484799281, - 9.504574658700442, - 9.44266860757187, - 8.720842747903031, - 6.67147122946742, - 5.070600907833136, - 3.8656750134256024, - 2.901959950885637, - 2.519150110600395, - 2.273207625663766, - 2.138407758735404 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgb(220, 176, 242)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 3", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.015640632287532, - 2.0775357421760106, - 2.281668499093955, - 2.590577254715259, - 3.3178590172764357, - 4.146665506402833, - 4.79752450260502, - 5.034872730264199, - 4.670032875013457, - 3.9446300193722683, - 3.207433166743682, - 3.239502396424019, - 3.9551925287304117, - 4.735683167708814, - 6.048065326340876, - 7.037940238217271, - 7.590068726019778, - 7.29276215317444, - 7.022771884452913, - 6.593952560435129, - 5.915054349618537, - 5.663269935517681, - 5.42879444254398, - 5.13768086608982 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgba(220, 176, 242, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0074617269579984, - 2.067158486790972, - 2.270160935170276, - 2.578413894383557, - 3.30527506285169, - 4.132279824047024, - 4.782030708087574, - 5.019096128212928, - 4.654930436987502, - 3.9300666013161103, - 3.1931544036772985, - 3.2254718360709416, - 3.9415278724995026, - 4.72120260297936, - 6.033144138419112, - 7.021934014009101, - 7.573331903556522, - 7.276290178854289, - 7.006752950939073, - 6.577850557187707, - 5.898654877062911, - 5.6470700505458895, - 5.411844561296723, - 5.118993859324232 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(220, 176, 242, 0.3)", - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgba(220, 176, 242, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0240943048184246, - 2.088049065653544, - 2.2930075367165386, - 2.602874876360185, - 3.331013007822788, - 4.160537387340181, - 4.812425754951611, - 5.050928334651311, - 4.685716131246843, - 3.959312243185096, - 3.2214961589928013, - 3.253625717038416, - 3.96942056844417, - 4.750098097539471, - 6.063260453701407, - 7.05406036859143, - 7.606882856467987, - 7.308886619567647, - 7.039220764614316, - 6.60993190283686, - 5.930518528898162, - 5.679345686479526, - 5.446264917693887, - 5.156441028301548 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgb(135, 197, 95)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Beam sensor 4", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0052070356315514, - 2.0249194005410454, - 2.1064583708514615, - 2.251265820466787, - 2.6643003522735995, - 3.2661975089073616, - 3.954874988761339, - 4.536839124202368, - 4.8710499195145776, - 4.73412747533087, - 4.295763294690807, - 4.1672592099626415, - 4.363454555738274, - 4.713278996853488, - 5.4500651373707, - 6.094213734593328, - 6.579532153765347, - 6.499346451288613, - 6.505778738808332, - 6.380138505695801, - 6.05173132035736, - 6.053771886762469, - 6.096473309032602, - 6.057702628303163 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgba(135, 197, 95, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 1.996895080682777, - 2.0146127651753427, - 2.0947838495671047, - 2.2391974952124585, - 2.652086972671722, - 3.2529139398242997, - 3.9403832971576414, - 4.521813660964053, - 4.855159926137164, - 4.718570372198596, - 4.280154707306009, - 4.152347541332638, - 4.3490697410445796, - 4.698432854403537, - 5.435660207810994, - 6.079788526084825, - 6.564222882147529, - 6.483556028310939, - 6.489785366929569, - 6.36379167986516, - 6.035216708524278, - 6.037107564429907, - 6.078851559574522, - 6.038699939948653 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(135, 197, 95, 0.3)", - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgba(135, 197, 95, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0134998128987323, - 2.0356199870544085, - 2.1177954004013593, - 2.2635994649942996, - 2.6771258446420383, - 3.279159412460179, - 3.968908996012999, - 4.551842404997769, - 4.886781089125853, - 4.749956804109351, - 4.310547297297446, - 4.181909381835842, - 4.377635267244333, - 4.728287819375853, - 5.4654691287197625, - 6.109450971776132, - 6.59519665611077, - 6.514679994319775, - 6.521406212890323, - 6.396150989601384, - 6.0677979185645805, - 6.070885195250195, - 6.114912780169626, - 6.077718043690143 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgb(158, 185, 243)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Point sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.000287454669283, - 1.998847011153417, - 1.9993977494408388, - 2.000031912268298, - 2.0000512311323804, - 2.0003413595480524, - 1.9999770742328682, - 1.9983892223104582, - 1.9970418760035478, - 1.9983539414682607, - 2.0003632972391268, - 2.0009029831188476, - 2.001862805408092, - 2.0031857189276643, - 2.0026783964033665, - 2.0061329940055703, - 2.019950207599825, - 2.0812816512938346, - 2.2523653332453746, - 2.6167041781391465, - 3.4935372341164106, - 4.845185084502411, - 7.37802983347852, - 11.259238366782903 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgba(158, 185, 243, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 1.9920748292247032, - 1.9887694533595324, - 1.9885653934817273, - 1.988502767567105, - 1.9886775871409077, - 1.9887776242486, - 1.988670578832634, - 1.986850492080359, - 1.9851388415528184, - 1.9870316974585598, - 1.988672442440576, - 1.9894054615165089, - 1.9905442040820553, - 1.9911399509483712, - 1.9908326724827534, - 1.9941721865746902, - 2.008458786626908, - 2.0693853814204903, - 2.240751057028548, - 2.6048338415910477, - 3.481188751710039, - 4.830898504831401, - 7.357459085201448, - 11.226232441695709 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(158, 185, 243, 0.3)", - "legendgroup": "Point sensor 0", - "line": { - "color": "rgba(158, 185, 243, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0086410232369785, - 2.009154102057293, - 2.0103144904254653, - 2.0112620663669953, - 2.0116112832664896, - 2.012034063076919, - 2.01183136103228, - 2.0103813144748592, - 2.008389870532708, - 2.010072258881579, - 2.0123040343339538, - 2.012534503667641, - 2.0137034288443045, - 2.0148324973149094, - 2.0145330171078553, - 2.0177532993064276, - 2.0320996462574836, - 2.093105213906087, - 2.264225721936059, - 2.629008421105756, - 3.505905512143047, - 4.859515437187343, - 7.398000999084465, - 11.291085878134517 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgb(254, 136, 177)", - "width": 3 - }, - "mode": "lines", - "name": "Median for Point sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.04564143426174, - 7.718255432593205, - 6.309812526615065, - 5.1386553363256775, - 3.658655289596367, - 2.8128376411840255, - 2.3356339083759847, - 2.1271162766064613, - 2.031049035802394, - 2.006578054176223, - 2.00104160766655, - 2.0010066569250515, - 2.0018124928396683, - 2.003121721626832, - 2.0021818831248925, - 2.0010828271194314, - 1.998680755308444, - 1.999554653339222, - 1.999763511667148, - 1.9991432087918133, - 1.9990074673108857, - 1.9993047583751804, - 1.9994096648910216, - 1.9996547506665356 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgba(254, 136, 177, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "10% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.023022614848573, - 7.699117874228742, - 6.29419353942124, - 5.125261669150252, - 3.647174198079254, - 2.801451199328385, - 2.3246152799404047, - 2.1156124907999363, - 2.0191354624638502, - 1.995195547904172, - 1.9895088943513597, - 1.989314425749959, - 1.9904669597479596, - 1.9911059951198784, - 1.9901846187479362, - 1.9890138741694152, - 1.9871281638793903, - 1.9874996774277518, - 1.9878076426237774, - 1.9869626395171542, - 1.985766790581137, - 1.985338971542492, - 1.984291904781224, - 1.982933660102998 - ] - }, - { - "fill": "tonexty", - "fillcolor": "rgba(254, 136, 177, 0.3)", - "legendgroup": "Point sensor 1", - "line": { - "color": "rgba(254, 136, 177, 0.3)", - "width": 0 - }, - "mode": "lines", - "name": "90% quantile", - "showlegend": false, - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.06806866120696, - 7.736362233721338, - 6.3250478164359585, - 5.152738443234237, - 3.6704806522831674, - 2.8242256197783866, - 2.3476520492507142, - 2.1391695882518014, - 2.042473243563558, - 2.018358647155963, - 2.0130504500552884, - 2.0127998943505414, - 2.013766489437985, - 2.0147745498273055, - 2.014140071876861, - 2.012742677119394, - 2.0106311631080422, - 2.011554143172989, - 2.011924766258054, - 2.011575204171482, - 2.0120102002449993, - 2.0131914577713976, - 2.0148476008960645, - 2.0166727047726583 - ] - }, - { - "legendgroup": "Beam sensor 0", - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 7.791714050564657, - 7.718237540043255, - 8.031656486135207, - 8.223226698536852, - 8.218807731163079, - 8.185643574955071, - 7.794624234656219, - 7.620110694793409, - 7.275749372954192, - 7.029489247478757, - 7.005447146729908, - 6.950554849446046, - 6.5952572736008435, - 5.670722904331665, - 4.633219256004186, - 3.539441897942694, - 2.8161757615155705, - 2.2779211217947637, - 2.0745550790102345, - 2.0214647272413453, - 1.9964920853424701, - 2.000852575176608, - 1.9963126120697006, - 1.9974147663996378 - ] - }, - { - "legendgroup": "Beam sensor 1", - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 3.794598393144694, - 4.006802529994472, - 4.447463297540425, - 5.111496514565832, - 5.396100523576821, - 5.613196197980132, - 5.6593174697231685, - 5.788230351783955, - 6.05036311395665, - 6.849153378600638, - 7.762957844685767, - 8.615287303631332, - 8.957781684609735, - 8.35830797842546, - 7.024706955714454, - 5.179122598109574, - 3.7854334090717483, - 2.641022614794618, - 2.225248550191615, - 2.0572469716135755, - 2.007182303060239, - 2.005825443548572, - 2.001793789629492, - 2.00267582003051 - ] - }, - { - "legendgroup": "Beam sensor 2", - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 2", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.3935431861339245, - 2.652626621461129, - 3.1509667408846997, - 3.8887196453804944, - 4.4619620709729375, - 4.862291907837204, - 4.775618316142517, - 4.266755975925206, - 3.6432292488783906, - 3.1804620367500456, - 3.335249324326946, - 4.422140591141545, - 6.362782149520328, - 8.155740103878497, - 9.546740430963878, - 9.426146994807988, - 8.64771292853549, - 6.570573953570048, - 5.128065711068347, - 3.7431305087916757, - 2.9268984897298744, - 2.4766287477503033, - 2.2656110539544514, - 2.121387467257954 - ] - }, - { - "legendgroup": "Beam sensor 3", - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 3", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.012366744598929, - 2.0736473164052693, - 2.2320828234983763, - 2.6648526542934325, - 3.3075328329125577, - 4.154784623078697, - 4.874705146875558, - 5.021692152651062, - 4.671634607533428, - 3.8501873348849465, - 3.266396938229498, - 3.2328029416584583, - 3.9197060623595643, - 4.915612214498838, - 6.1394139616632515, - 7.016110775439613, - 7.485268147762597, - 7.323188388139022, - 7.02790348186461, - 6.496744589859477, - 5.989518984719937, - 5.706087485013977, - 5.470657114025242, - 5.128381042359218 - ] - }, - { - "legendgroup": "Beam sensor 4", - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Beam sensor 4", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 2.0034643278005198, - 2.03503177506568, - 2.086741386884045, - 2.273634634006135, - 2.654032244985692, - 3.2875412192309295, - 4.016320484607367, - 4.568620045735389, - 4.781698322616699, - 4.725514599783425, - 4.331826904105765, - 4.173161369291443, - 4.372986967965083, - 4.785377791404038, - 5.496571183198965, - 6.096679717395961, - 6.518283171549696, - 6.489843412399393, - 6.525799105020119, - 6.382856640265195, - 6.055487541341745, - 6.063084092112585, - 6.093142602023775, - 6.057337768301912 - ] - }, - { - "legendgroup": "Point sensor 0", - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 0", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 1.9981926227116058, - 2.0035967771957224, - 2.007785638574461, - 2.0071369969266817, - 2.003986626306235, - 1.9914278509057126, - 1.9948990374192408, - 1.999463619254624, - 1.9895335332960462, - 2.000685390515423, - 2.00262051522007, - 1.9865144990716013, - 1.9997480894045705, - 2.001462021131961, - 2.017419847595157, - 2.0051022026343825, - 2.0186141677519647, - 2.099198471338621, - 2.256197934175503, - 2.634642140106805, - 3.4639011221589744, - 4.845715404826579, - 7.364531396355585, - 11.265940243979086 - ] - }, - { - "legendgroup": "Point sensor 1", - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 1, - "size": 5 - }, - "mode": "markers", - "name": "Point sensor 1", - "type": "scatter", - "x": [ - "2024-01-01T08:05:00.000000000", - "2024-01-01T08:15:00.000000000", - "2024-01-01T08:25:00.000000000", - "2024-01-01T08:35:00.000000000", - "2024-01-01T08:45:00.000000000", - "2024-01-01T08:55:00.000000000", - "2024-01-01T09:05:00.000000000", - "2024-01-01T09:15:00.000000000", - "2024-01-01T09:25:00.000000000", - "2024-01-01T09:35:00.000000000", - "2024-01-01T09:45:00.000000000", - "2024-01-01T09:55:00.000000000", - "2024-01-01T10:05:00.000000000", - "2024-01-01T10:15:00.000000000", - "2024-01-01T10:25:00.000000000", - "2024-01-01T10:35:00.000000000", - "2024-01-01T10:45:00.000000000", - "2024-01-01T10:55:00.000000000", - "2024-01-01T11:05:00.000000000", - "2024-01-01T11:15:00.000000000", - "2024-01-01T11:25:00.000000000", - "2024-01-01T11:35:00.000000000", - "2024-01-01T11:45:00.000000000", - "2024-01-01T11:55:00.000000000" - ], - "y": [ - 9.092643660712165, - 7.667834335181266, - 6.343060276778562, - 5.076692625573246, - 3.656419322873028, - 2.807666317663072, - 2.339827196758854, - 2.116577721548318, - 2.028951160874966, - 2.0060044836575006, - 1.9996715214342469, - 1.9950816966568004, - 1.999643963962288, - 2.003385294941852, - 2.002457281161687, - 1.9947135488689347, - 1.9951476258144036, - 1.9992555315645966, - 1.9999807833367864, - 2.001375885801873, - 1.9908725874788058, - 1.9951980718612405, - 2.0005141552597387, - 1.9973940468766096 - ] - } - ], - "layout": { - "annotations": [ - { - "align": "left", - "bgcolor": "#ffffff", - "bordercolor": "#000000", - "borderpad": 10, - "borderwidth": 2, - "font": { - "color": "#000000", - "size": 12 - }, - "opacity": 0.8, - "showarrow": false, - "text": "Point: Real observation
Line: Predicted Value
Shading: Quantiles 10-90", - "x": 1, - "xanchor": "left", - "xref": "paper", - "y": 1.1, - "yanchor": "top", - "yref": "paper" - } - ], - "autosize": true, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 50 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Observations and Predicted Model Values Against Time" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - "2024-01-01 07:51:11.1402", - "2024-01-01 12:08:48.8598" - ], - "title": { - "standoff": 20, - "text": "Time" - }, - "type": "date" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - 1.4154913576766828, - 11.836963385374005 - ], - "title": { - "standoff": 20, - "text": "Concentration (ppm)" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAMgCAYAAADSp0wWAAAAAXNSR0IArs4c6QAAIABJREFUeF7snQe4HkW9/3/vacnJSYGESO/SAwQB6VIDKChdUQSxcq/KRUVF/5aLV71WFC9FsQMKiihdkRB6qKGXQCDUEFoS0k5Of/f/fPcwYbLZfXd233d3f+/Z7z5PniTnzM7Mfr+zuzOf/c1MxfM8T3hQASpABagAFaACVIAKUAEqQAWoABXISYGdd97ZL+n+++9PVOJvfvMbefjhh+V73/ueLF68WL7+9a/L9ttvL1/60pdk9OjRoXn961//kgcffLBmGnPi3XffLVtvvbWsscYakfV66KGH5J///KefH46f/exn/t+16hCVGeo2b948+fSnP+2kA9LjeO973+uUvtGJrrjiCtl///1r6tPoMl3zS9umXPOvEJ64SsV0VIAKUAEqQAWoABWgAlSAClABKtAIBdIOdG14gnp885vf9KsDmFILeLjU+fnnn5df//rX8tWvftUZngDYAKb89re/TVWHZoIngFXnn3++fPazn61baxc/kqZJ26ZcyyE8cVWK6agAFaACVIAKUAEqQAWoABWgAlSgIQqkHejWijx59dVX/UiUOXPmyDHHHONHgjz55JPyyU9+UvbYYw8fivz4xz+WhQsXynHHHSff//73V6azz91yyy3lBz/4gUyfPt2/1mBUiB150tvb6wOcHXfccWU6QAb87K677pL/+I//8H+OdIhQ+fvf/y4m/0022USi4ImdB+pu4BDSL1q0yM8bf373u9/J1KlT/XwuuugiOeWUU/w677fffgIYZPTA+euuu66vxUknnSSIsNl3330Fepr6oEz83k6LvHAN0MtcE9Kfeuqpcs4558gBBxzgX19YfVE+8vvGN77h+4BrN/VtSCMKZJK2TbnWhfDEVSmmowJUgApQASpABagAFaACVIAKUIGGKJB2oIvB/q9+9auVdTCQBD8AnJg8efLKgb4BGjZwAXAABAAQ2GCDDXzgAFCCqJULL7xQnn766dgIEsATQAFz2EAAkOSCCy6QI444QtZZZx2/Tu973/v8pPfdd58PGuypN1Hw5M9//rPstddeYgCLmXZ08803y3XXXefXEXACES/f+ta3ZObMmT7IQGTITjvt5MMiEyWCsgGNPvOZz8js2bNXmcIUnAaEa8O0JXMN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CoGKE0+002LmzJl2/fXX289//nPnknLHHXfYuuuuG714IhcaHT2sE3Y22WSTXAXxMU/kgiR3npYtW+b+poCz2llTKOZJsed5V5+aamBDnWC0Vr4KXgIBCEAAAhCAAAQgAAEIQAACEEgQqAjxRK4n2kWha9q0ae5UGsU0adeuXY1uOzHtPNGuEgWxPfzww11g2/xLu1HuvPNOu/zyy619+/a5P48fP94effTR1U78qel5X3zxhb377rurvWPixInORah3797WqlUr22677fiYIAABCEAAAhCAAAQgAAEIQAACZU+gIsQTubR07949dyqN3FwUJHaDDTbIhHgioeP+++9fzY0mWTvnz59v5513njuB5+ijj3Z/UjkVVLZp06Y2ePDgXOySkOcVqvm47ZR9e0ABIQABCEAAAhCAAAQgAAEIQKAAgbIST3S0rnaVaHeJTp/xbikjRoxwuzXksjNmzBibOnWqnXHGGdahQwf378mTJ7udFCeccIJtttlm9s0339j5559vu+66q3N3UcDUxYsXOyHi888/t5EjR7pgszVdCix777332rhx45yosf/++7vgrv6Sa4yC1urEn9NPP93WX3/9go9btGiROyq5a9eutvnmm+fS6PlvvPGGE4U6duzoyvb44487kUVl32abbdyOkwkTJpjK37ZtW3dv6PMQT2gvIAABCEAAAhCAAAQgAAEIQAAC/0+grMQTFej55593YoMEEAWBlUjSokWLnL0lqEi0mDNnju2+++7ueOJJkyaZXFJOOeUUJ7IMGTIkl15HAffv398JJhJQdG288carucEkK9TcuXPdTg+fXn/bbbfdqp3SI4HnhhtucKKJ3icBJP+S0DF06FB38k2hS0cpS+Txp+FIUHnmmWesqqrKiSTdunWzvn37OmHICydpnpf/Tnae0GxAAAIQgAAEIAABCEAAAhCAQCUSKDvxJGtG1M6QbbfdtqB4krWykF8IQAACEIAABCAAAQhAAAIQgEA5EkA8aUCraheMAr326dOnqNtOA2aPV0MAAhCAAAQgAAEIQAACEIAABCBQjm47WbHqrFmzbN68edajRw+Ek6wYjXxCAAIQgAAEIAABCEAAAhCAQEUSYOdJRZqdQkMAAhCAAAQgAAEIQAACEIAABCAQSgDxJJQU6SAAAQhAAAIQgAAEIAABCEAAAhCoSAKIJxVpdgoN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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter = elq_model.plot_fitted_values(plot=plotter)\n", "plotter.figure_dict[\"fitted_values\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}).show()" @@ -14958,1201 +501,10 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "id": "6bd52d03-4af7-4726-b3be-ec140bd0b2db", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "showlegend": true, - "type": "scattermapbox" - }, - { - "colorbar": { - "orientation": "h", - "title": { - "text": "Normalized Count" - } - }, - "colorscale": [ - [ - 0, - "rgb(0,0,255)" - ], - [ - 1, - "rgb(255,0,0)" - ] - ], - "featureidkey": "id_value", - "geojson": { - "features": [ - { - "geometry": { - "coordinates": [ - [ - [ - 9.9e-05, - 0.000181 - ], - [ - 9.9e-05, - 0.00019 - ], - [ - 9e-05, - 0.00019 - ], - [ - 9e-05, - 0.000181 - ], - [ - 9.9e-05, - 0.000181 - ] - ] - ], - "type": "Polygon" - }, - "id_value": 0, - "properties": {}, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 0.000189, - 0.000136 - ], - [ - 0.000189, - 0.000145 - ], - [ - 0.00018, - 0.000145 - ], - [ - 0.00018, - 0.000136 - ], - [ - 0.000189, - 0.000136 - ] - ] - ], - "type": "Polygon" - }, - "id_value": 1, - "properties": {}, - "type": "Feature" - } - ], - "type": "FeatureCollection" - }, - "hoverinfo": "text", - "locations": [ - 0, - 1 - ], - "marker": { - "line": { - "width": 0 - }, - "opacity": 0.8 - }, - "name": "normalized_count", - "showlegend": true, - "text": [ - "Polygon ID: 0
Center (lon, lat): (0.0001, 0.0002)
Value: 1.000000
", - "Polygon ID: 1
Center (lon, lat): (0.0002, 0.0001)
Value: 1.000000
" - ], - "type": "choroplethmapbox", - "z": [ - 1, - 1 - ] - }, - { - "lat": [ - 0, - 0 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00026949437396969116 - ], - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 0", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00010382608273934404 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.000248980336237809 - ], - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 1", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00019184558556765 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00019056129932629466 - ], - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 2", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00025065833707803124 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.0001031310320344517 - ], - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 3", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00027131062899166537 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 1.6501771123631796e-20 - ], - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 4", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0.00019896125354572274 - ], - "line": { - "width": 3 - }, - "lon": [ - 4.491575716382319e-05 - ], - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 0", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 4.521846671490127e-05 - ], - "line": { - "width": 3 - }, - "lon": [ - 0.0001796630286547407 - ], - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 1", - "showlegend": true, - "type": "scattermapbox" - }, - { - "hoverinfo": "text", - "lat": [ - 0.00018087383831017834, - 0.00013565535732018927 - ], - "lon": [ - 8.983150024330824e-05, - 0.00017966297231761778 - ], - "marker": { - "color": "black", - "size": 14 - }, - "mode": "markers", - "name": "Summary", - "showlegend": true, - "text": [ - "Source ID: 0
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0000898, 0.0001809, 2.000)
Height: 2.000 [m]
Median emission rate: 14.9978 [kg/hr]
2.5% quantile: 14.902 [kg/hr]
97.5% quantile: 15.090 [kg/hr]
IQR: 0.0631 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
", - "Source ID: 1
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0001797, 0.0001357, 3.000)
Height: 3.000 [m]
Median emission rate: 9.9506 [kg/hr]
2.5% quantile: 9.902 [kg/hr]
97.5% quantile: 9.994 [kg/hr]
IQR: 0.0314 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
" - ], - "type": "scattermapbox" - }, - { - "lat": [ - 0.00018087383831017834, - 0.00013565535732018927 - ], - "lon": [ - 8.983150024330824e-05, - 0.00017966297231761778 - ], - "marker": { - "color": "green", - "size": 10 - }, - "mode": "markers", - "name": "True locations", - "showlegend": true, - "type": "scattermapbox", - "visible": "legendonly" - } - ], - "layout": { - "autosize": true, - "font": { - "family": "Futura", - "size": 15 - }, - "mapbox": { - "accesstoken": "empty", - "bearing": 0, - "center": { - "lat": 0.0001408600876118271, - "lon": 4.649030938708165e-05 - }, - "pitch": 0, - "style": "carto-positron", - "zoom": 19.806783362277656 - }, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 50 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "Source location probability (>=0.1) for 01-Jan-2024, 08:05:00 to 01-Jan-2024, 11:55:00" - } - } - }, - "image/png": "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yntIPJ6ly/9E7VrVIYGOE+GQ4LPbd+1G106Hc7KbCB3KNpAACZAACZAACZAACSQdAYonSdflbDAJkAAJkAAJkAAJkAAJkAAJkAAJkIAdAhRP7NBiWRIgARIgARIgARIgARIgARIgARIggaQjQPEk6bqcDSYBEiABEiABEiABEiABEiABEiABErBDgOKJHVosSwIkQAIkQAIkQAIkQAIkQAIkQAIkkHQEKJ4kXZezwSRAAiRAAiRAAiRAAiRAAiRAAiRAAnYIUDyxQ4tlSYAESIAESIAESIAESIAESIAESIAEko4AxZOk63I2mARIgARIgARIgARIgARIgARIgARIwA4Biid2aLEsCZAACZAACZAACZAACZAACZAACZBA0hGgeJJ0Xc4GkwAJkAAJkAAJkAAJkAAJkAAJkAAJ2CFA8cQOLZYlARIgARIgARIgARIgARIgARIgARJIOgIUT5Kuy9lgEiABEiABEiABEiABEiABEiABEiABOwQontihxbIkQAIkQAIkQAIkQAIkQAIkQAIkQAJJR4DiSdJ1ORtMAiRAAiRAAiRAAiRAAiRAAiRAAiRghwDFEzu0WJYESIAESIAESIAESIAESIAESIAESCDpCFA8SbouZ4NJgARIgARIgARIgARIgARIgARIgATsEKB4YocWy5IACZAACZAACZAACZAACZAACZAACSQdAYonSdflbDAJkAAJkAAJkAAJkAAJkAAJkAAJkIAdAhRP7NBiWRIgARIgARIgARIgARIgARIgARIggaQjQPEk6bqcDSYBEiABEiABEiABEiABEiABEiABErBDgOKJHVosSwIkQAIkQAIkQAIkQAIkQAIkQAIkkHQEKJ4kXZdXboN37dqF8ePHIzu7Ytd1qNM9FTNSiWc74qiudrDEXz/E17ix2hfsB6ukIl8unu71eBs39nrPg5L2xccRT+PGHtH46gf5roincWO9L+KtXfFWX+s9EV/3esX74byrrsJ5551nHRBLkkCcEaB4EmcdFm/V3bJlC4YNG4ZPPrlHfaB4DB8qpR/yJX8x+3v5y4u9Urul3EoFGN/rVVZ5t0+9pDa+H266fro+FS1f+iIsaa++nv5f/vYrq3xJ+6R/nab18h8PFS0fqn/97Ve8vP/4KiFvbJf8O1D/6v4Jd/lE7V//cR1q/PhyKPt88O3/kudQsOeJ2fgpEe6M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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter.figure_dict[\"count_map\"].add_trace(true_source_location_trace).update_traces(showlegend=True)\n", "plotter.figure_dict[\"count_map\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}, mapbox_zoom=19)\n", @@ -16161,1198 +513,10 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "id": "e0577aa7-6560-4bff-bb8a-25146eca36ff", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "showlegend": true, - "type": "scattermapbox" - }, - { - "colorbar": { - "orientation": "h", - "title": { - "text": "IQR" - } - }, - "colorscale": [ - [ - 0, - "rgb(0,0,255)" - ], - [ - 1, - "rgb(255,0,0)" - ] - ], - "featureidkey": "id_value", - "geojson": { - "features": [ - { - "geometry": { - "coordinates": [ - [ - [ - 9.9e-05, - 0.000181 - ], - [ - 9.9e-05, - 0.00019 - ], - [ - 9e-05, - 0.00019 - ], - [ - 9e-05, - 0.000181 - ], - [ - 9.9e-05, - 0.000181 - ] - ] - ], - "type": "Polygon" - }, - "id_value": 0, - "properties": {}, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 0.000189, - 0.000136 - ], - [ - 0.000189, - 0.000145 - ], - [ - 0.00018, - 0.000145 - ], - [ - 0.00018, - 0.000136 - ], - [ - 0.000189, - 0.000136 - ] - ] - ], - "type": "Polygon" - }, - "id_value": 1, - "properties": {}, - "type": "Feature" - } - ], - "type": "FeatureCollection" - }, - "hoverinfo": "text", - "locations": [ - 0, - 1 - ], - "marker": { - "line": { - "width": 0 - }, - "opacity": 0.8 - }, - "name": "iqr_emission", - "showlegend": true, - "text": [ - "Polygon ID: 0
Center (lon, lat): (0.0001, 0.0002)
Value: 0.063108
", - "Polygon ID: 1
Center (lon, lat): (0.0002, 0.0001)
Value: 0.031367
" - ], - "type": "choroplethmapbox", - "z": [ - 0.06310844945419625, - 0.03136741477453242 - ] - }, - { - "lat": [ - 0, - 0 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00026949437396969116 - ], - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 0", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00010382608273934404 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.000248980336237809 - ], - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 1", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00019184558556765 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00019056129932629466 - ], - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 2", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00025065833707803124 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.0001031310320344517 - ], - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 3", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00027131062899166537 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 1.6501771123631796e-20 - ], - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 4", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0.00019896125354572274 - ], - "line": { - "width": 3 - }, - "lon": [ - 4.491575716382319e-05 - ], - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 0", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 4.521846671490127e-05 - ], - "line": { - "width": 3 - }, - "lon": [ - 0.0001796630286547407 - ], - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 1", - "showlegend": true, - "type": "scattermapbox" - }, - { - "hoverinfo": "text", - "lat": [ - 0.00018087383831017834, - 0.00013565535732018927 - ], - "lon": [ - 8.983150024330824e-05, - 0.00017966297231761778 - ], - "marker": { - "color": "black", - "size": 14 - }, - "mode": "markers", - "name": "Summary", - "showlegend": true, - "text": [ - "Source ID: 0
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0000898, 0.0001809, 2.000)
Height: 2.000 [m]
Median emission rate: 14.9978 [kg/hr]
2.5% quantile: 14.902 [kg/hr]
97.5% quantile: 15.090 [kg/hr]
IQR: 0.0631 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
", - "Source ID: 1
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0001797, 0.0001357, 3.000)
Height: 3.000 [m]
Median emission rate: 9.9506 [kg/hr]
2.5% quantile: 9.902 [kg/hr]
97.5% quantile: 9.994 [kg/hr]
IQR: 0.0314 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
" - ], - "type": "scattermapbox" - }, - { - "lat": [ - 0.00018087383831017834, - 0.00013565535732018927 - ], - "lon": [ - 8.983150024330824e-05, - 0.00017966297231761778 - ], - "marker": { - "color": "green", - "size": 10 - }, - "mode": "markers", - "name": "True locations", - "showlegend": true, - "type": "scattermapbox" - } - ], - "layout": { - "autosize": true, - "font": { - "family": "Futura", - "size": 15 - }, - "mapbox": { - "accesstoken": "empty", - "center": { - "lat": 0, - "lon": 0 - }, - "style": "carto-positron", - "zoom": 19 - }, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 50 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "Inter Quartile range (25%-75%) of emission rate estimate for 01-Jan-2024, 08:05:00 to 01-Jan-2024, 11:55:00" - } - } - }, - "image/png": "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AAECBAgQIECAAAECTQHhiXnIISA8yaFsDwIECBAgQIAAAQIECBBIIiA8ScJq0ZaA8MRIECBAgAABAgQIECBAgECxAsKTYltXVOHCk6LapVgCBAgQIECAAAECBAgQaAoIT8xDDgHhSQ5lexAgQIAAAQIECBAgQIBAEgHhSRJWi7YEhCdGggABAgQIECBAgAABAgSKFRCeFNu6ogoXnhTVLsUSIECAAAECBAgQIECAQFNAeGIecggIT3Io24MAAQIECBAgQIAAAQIEkggIT5KwWrQlIDwxEgQIECBAgAABAgQyCNx8+FCGXWxBYPcJHD1yePddtCvOLiA8yU5uQwIECBAgQIAAgd0m0Ol04q5jt+22y3a9BLII7N2zJ8s+NtndAsKT3d1/V0+AAAECBAgQIJBBYKPw5C/+4i/iDa9//WoVb37zm+N9739/7FnnC+HCwkK84+1vj49+9KP173zvG94QH/3t344jR45s6UoeeOCB+NX3vCd+/QMf2PLvvu+9741f+eVfXt2v2v9f/OAPrrv/9ap5Kxf433/v9+LNP/Zja9ZY/d3x48fjHT//81tZcsPPVib33HNP7TD2+eNPfSpe85rXrP7euNe/8Iu/eF33vl4XsdFMNP+u+u+/97GPbTin7ZrOnDkTP/O2t8U73/WueMlLXnK9Sq7XEZ5cV06LrSMgPDEaBAgQIECAAAECBBILrBeeVF/i//wzn7niS2j1BfvX3ve+NQORcQhx2+23r3753ujzG13WtYQn4/2/+7WvvSIsqcKC6metMKL60lyFGD/0Qz+0+jtVzW9761vjd373d6/7F+mqjsr14x//+Kphu4Yc4cn9998f99133xUmldNaf554/Da9/GZnouqf8GTTrD64QwSEJzukkS6DAAECBAgQIEBg+wqsFZ5UX1R/93d+J971C78Q/+VDH6pPcrzila+sA4Xqy/7/+ZM/eU4YsV5Q0jz10D7JMj79UP159bknn3wyXvmKV8TJkyfj05/+9OrJlWrPH/2RH4m//fKX1z3NUoUO1U912qUKRD75x38c45My1TX8o+/5nitOWoyDjLVOeTQDjKquffv2xSc/+cl6zebJjPaplfH1jL/oH5ibWz2FM/67tcKccVD1z970pvgn3//99XVU+/zzN70p/t3P/mz9z5snvt0AAAdlSURBVFWfqlM0G1k0T92MT9w0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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter.figure_dict[\"iqr_map\"].add_trace(true_source_location_trace).update_traces(showlegend=True)\n", "plotter.figure_dict[\"iqr_map\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}, mapbox_zoom=19)\n", @@ -17361,1198 +525,10 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "id": "458e0125-e64f-45a4-ba6d-c1a07f9d43ea", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "showlegend": true, - "type": "scattermapbox" - }, - { - "colorbar": { - "orientation": "h", - "title": { - "text": "Median Emission" - } - }, - "colorscale": [ - [ - 0, - "rgb(0,0,255)" - ], - [ - 1, - "rgb(255,0,0)" - ] - ], - "featureidkey": "id_value", - "geojson": { - "features": [ - { - "geometry": { - "coordinates": [ - [ - [ - 9.9e-05, - 0.000181 - ], - [ - 9.9e-05, - 0.00019 - ], - [ - 9e-05, - 0.00019 - ], - [ - 9e-05, - 0.000181 - ], - [ - 9.9e-05, - 0.000181 - ] - ] - ], - "type": "Polygon" - }, - "id_value": 0, - "properties": {}, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - 0.000189, - 0.000136 - ], - [ - 0.000189, - 0.000145 - ], - [ - 0.00018, - 0.000145 - ], - [ - 0.00018, - 0.000136 - ], - [ - 0.000189, - 0.000136 - ] - ] - ], - "type": "Polygon" - }, - "id_value": 1, - "properties": {}, - "type": "Feature" - } - ], - "type": "FeatureCollection" - }, - "hoverinfo": "text", - "locations": [ - 0, - 1 - ], - "marker": { - "line": { - "width": 0 - }, - "opacity": 0.8 - }, - "name": "median_emission", - "showlegend": true, - "text": [ - "Polygon ID: 0
Center (lon, lat): (0.0001, 0.0002)
Value: 14.997813
", - "Polygon ID: 1
Center (lon, lat): (0.0002, 0.0001)
Value: 9.950584
" - ], - "type": "choroplethmapbox", - "z": [ - 14.997813267414728, - 9.950583716648215 - ] - }, - { - "lat": [ - 0, - 0 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00026949437396969116 - ], - "marker": { - "color": "rgb(102, 197, 204)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 0", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00010382608273934404 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.000248980336237809 - ], - "marker": { - "color": "rgb(246, 207, 113)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 1", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00019184558556765 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.00019056129932629466 - ], - "marker": { - "color": "rgb(248, 156, 116)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 2", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00025065833707803124 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 0.0001031310320344517 - ], - "marker": { - "color": "rgb(220, 176, 242)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 3", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0, - 0.00027131062899166537 - ], - "line": { - "width": 3 - }, - "lon": [ - 0, - 1.6501771123631796e-20 - ], - "marker": { - "color": "rgb(135, 197, 95)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Beam sensor 4", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 0.00019896125354572274 - ], - "line": { - "width": 3 - }, - "lon": [ - 4.491575716382319e-05 - ], - "marker": { - "color": "rgb(158, 185, 243)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 0", - "showlegend": true, - "type": "scattermapbox" - }, - { - "lat": [ - 4.521846671490127e-05 - ], - "line": { - "width": 3 - }, - "lon": [ - 0.0001796630286547407 - ], - "marker": { - "color": "rgb(254, 136, 177)", - "opacity": 0.8, - "size": 10 - }, - "mode": "markers+lines", - "name": "Point sensor 1", - "showlegend": true, - "type": "scattermapbox" - }, - { - "hoverinfo": "text", - "lat": [ - 0.00018087383831017834, - 0.00013565535732018927 - ], - "lon": [ - 8.983150024330824e-05, - 0.00017966297231761778 - ], - "marker": { - "color": "black", - "size": 14 - }, - "mode": "markers", - "name": "Summary", - "showlegend": true, - "text": [ - "Source ID: 0
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0000898, 0.0001809, 2.000)
Height: 2.000 [m]
Median emission rate: 14.9978 [kg/hr]
2.5% quantile: 14.902 [kg/hr]
97.5% quantile: 15.090 [kg/hr]
IQR: 0.0631 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
", - "Source ID: 1
(Lon, Lat, Alt) ([deg], [deg], [m]):
(0.0001797, 0.0001357, 3.000)
Height: 3.000 [m]
Median emission rate: 9.9506 [kg/hr]
2.5% quantile: 9.902 [kg/hr]
97.5% quantile: 9.994 [kg/hr]
IQR: 0.0314 [kg/hr]
Blob present during: 1000 iterations
Blob likelihood: 1.00000
" - ], - "type": "scattermapbox" - }, - { - "lat": [ - 0.00018087383831017834, - 0.00013565535732018927 - ], - "lon": [ - 8.983150024330824e-05, - 0.00017966297231761778 - ], - "marker": { - "color": "green", - "size": 10 - }, - "mode": "markers", - "name": "True locations", - "showlegend": true, - "type": "scattermapbox" - } - ], - "layout": { - "autosize": true, - "font": { - "family": "Futura", - "size": 15 - }, - "mapbox": { - "accesstoken": "empty", - "center": { - "lat": 0, - "lon": 0 - }, - "style": "carto-positron", - "zoom": 19 - }, - "margin": { - "b": 0, - "l": 0, - "r": 0, - "t": 50 - }, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "annotationdefaults": { - "arrowcolor": "#2a3f5f", - "arrowhead": 0, - "arrowwidth": 1 - }, - "autotypenumbers": "strict", - "coloraxis": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "colorscale": { - "diverging": [ - [ - 0, - "#8e0152" - ], - [ - 0.1, - "#c51b7d" - ], - [ - 0.2, - "#de77ae" - ], - [ - 0.3, - "#f1b6da" - ], - [ - 0.4, - "#fde0ef" - ], - [ - 0.5, - "#f7f7f7" - ], - [ - 0.6, - "#e6f5d0" - ], - [ - 0.7, - "#b8e186" - ], - [ - 0.8, - "#7fbc41" - ], - [ - 0.9, - "#4d9221" - ], - [ - 1, - "#276419" - ] - ], - "sequential": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "sequentialminus": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ] - }, - "colorway": [ - "#636efa", - "#EF553B", - "#00cc96", - "#ab63fa", - "#FFA15A", - "#19d3f3", - "#FF6692", - "#B6E880", - "#FF97FF", - "#FECB52" - ], - "font": { - "color": "#2a3f5f" - }, - "geo": { - "bgcolor": "white", - "lakecolor": "white", - "landcolor": "#E5ECF6", - "showlakes": true, - "showland": true, - "subunitcolor": "white" - }, - "hoverlabel": { - "align": "left" - }, - "hovermode": "closest", - "mapbox": { - "style": "light" - }, - "paper_bgcolor": "white", - "plot_bgcolor": "#E5ECF6", - "polar": { - "angularaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "radialaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "scene": { - "xaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "yaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - }, - "zaxis": { - "backgroundcolor": "#E5ECF6", - "gridcolor": "white", - "gridwidth": 2, - "linecolor": "white", - "showbackground": true, - "ticks": "", - "zerolinecolor": "white" - } - }, - "shapedefaults": { - "line": { - "color": "#2a3f5f" - } - }, - "ternary": { - "aaxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "baxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - }, - "bgcolor": "#E5ECF6", - "caxis": { - "gridcolor": "white", - "linecolor": "white", - "ticks": "" - } - }, - "title": { - "x": 0.05 - }, - "xaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - }, - "yaxis": { - "automargin": true, - "gridcolor": "white", - "linecolor": "white", - "ticks": "", - "title": { - "standoff": 15 - }, - "zerolinecolor": "white", - "zerolinewidth": 2 - } - } - }, - "title": { - "text": "Median emission rate estimate for 01-Jan-2024, 08:05:00 to 01-Jan-2024, 11:55:00" - } - } - }, - "image/png": "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RiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wCI017AAAgAElEQVQUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQnlkRXBIQnXemUOgkQIECAAAECBAgQIJCYgPAksYYmPB3hScLNNTUCBAgQIECAAAECBAi0WUB40ubuqK0oIDyxHggQIECAAAECBAgQIECgEQHhSSPsBi0hIDwpgeYSAgQIECBAgAABAgQIEKguIDypbugO9QgIT+pxNgoBAgQIECBAgAABAgQIzAgITyyJrggIT7rSKXUSIECAAAECBAgQIEAgMQHhSWINTXg6wpOEm2tqBAgQIECAAAECBAgQaLOA8KTN3VFbUUB4Yj0QIECAAAECBAgQIECAQCMCwpNG2A1aQkB4UgLNJQQIECBAgAABAgQIECBQXUB4Ut3QHeoREJ7U42wUAgQIECBAgAABAgQIEJgREJ5YEl0REJ50pVPqJECAAAECBAgQIECAQGICwpPEGprwdIQnCTfX1AgQIECAAAECBAgQINBmAeFJm7ujtqKA8MR6IECAAAECBAgQIECAAIFGBIQnjbAbtISA8KQEmksIECBAgAABAgQIECBAoLqA8KS6oTvUIyA8qcfZKAQIECBAgAABAgQIECAwIyA8sSS6IiA86Uqn1EmAAAECBAgQIECAAIHEBIQniTU04ekITxJurqkRIECAAAECBAgQIECgzQLCkzZ3R21FAeGJ9UCAAAECBAgQIECAAAECjQgITxphN2gJAeFJCTSXECBAgAABAgQIECBAgEB1AeFJdUN3qEdAeFKPs1EIECBAgAABAgQIECBAYEZAeGJJdEVAeNKVTqmTAAECBAgQIECAAAECiQkITxJraMLTEZ4k3FxTI0CAAAECBAgQIECAQJsFhCdt7o7aigLCE+uBAAECBAgQIECAAAECBBoREJ40wm7QEgLCkxJoLiFAgAABAgQIECBAgACB6gLCk+qG7lCPgPCkHmejECBAgAABAgQIECBAgMCMgPDEkuiKgPCkK51SJwECBAgQIECAAAECBBITEJ4k1tCEpyM8Sbi5pkaAAAECBAgQIECAAIE2CwhP2twdtRUFhCfWAwECBAgQIECAAAECBAg0IiA8aYTdoCUEhCcl0FxCgAABAgQIECBAgAABAtUFhCfVDd2hHgHhST3ORiFAgAABAgQIECBAgACBGQHhiSXRFQHhSVc6pU4CBAgQIECAAAECBAgkJiA8SayhCU9HeJJwc02NAAECBAgQIECAAAECbRYQnrS5O2orCghPrAcCBAgQIECAAAECBAgQaERAeNIIu0FLCAhPSqC5hAABAgQIECBAgAABAgSqCwhPqhu6Qz0CwpN6nI1CgAABAgQIECBAgAABAjMCwhNLoisCwpOudEqdBAgQIECAAAECBAgQSExAeJJYQxOejvAk4eaaGgECBAgQIECAAAECBNosIDxpc3fUVhQQnlgPBAgQIECAAAECBAgQINCIgPCkEXaDlhAQnpRAcwkBAgQIECBAgAABAgQIVBcQnlQ3dId6BIQn9TgbhQABAgQIECBAgAABAgRmBIQn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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter.figure_dict[\"median_map\"].add_trace(true_source_location_trace).update_traces(showlegend=True)\n", "plotter.figure_dict[\"median_map\"].update_layout(height=800, margin={\"r\":0,\"t\":50,\"l\":0,\"b\":0}, mapbox_zoom=19)\n", @@ -18561,10725 +537,10 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": null, "id": "4b3ddc5e-d0f1-4570-a37d-5399249b85d0", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Log Posterior", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Log Posterior", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - -7150.631897993312, - 986.6796359280617, - 1115.9407687637777, - 1149.3684222329623, - 1164.4498737922481, - 1159.9790371016798, - 1142.1212731691944, - 1164.4597589938976, - 1150.7454876206732, - 1159.0616364189448, - 1147.3607470311576, - 1146.0973664640353, - 1155.7854420651045, - 1148.6715878380417, - 1148.7710144257583, - 1134.8317818002304, - 1169.66895600269, - 1145.046958388386, - 1165.8150811520982, - 1131.4038490902192, - 1159.7942185140837, - 1145.9511792169205, - 1168.504593361149, - 1154.3283615359053, - 1150.0548349113787, - 1161.1121614909835, - 1144.1196365307421, - 1153.3258053488992, - 1140.6996518446324, - 1136.9131508322691, - 1142.4983957896181, - 1134.7134794965498, - 1143.960318651711, - 1148.11117415432, - 1138.3333125109089, - 1149.2045532824513, - 1135.2745511753774, - 1152.0482283733218, - 1157.6474831655078, - 1133.757640333564, - 1160.6146685177978, - 1155.7481372746995, - 1154.8731830082684, - 1159.866562561771, - 1131.7437924764763, - 1138.0788352601699, - 1146.878910185488, - 1149.1559640821972, - 1132.129159016179, - 1167.263922600478, - 1150.1783117985715, - 1157.5773149751963, - 1148.246404849831, - 1149.3201775112204, - 1141.2243483792959, - 1154.2559048262344, - 1128.1285380737777, - 1156.024066509102, - 1148.1845322167771, - 1152.109023694306, - 1167.1078181605346, - 1131.5681829865696, - 1137.5411421564363, - 1150.0692273696634, - 1160.052627823417, - 1159.103846709992, - 1155.5733702646144, - 1136.0191467618642, - 1159.0448379142115, - 1162.792342743249, - 1159.9743289339067, - 1163.5039825932913, - 1146.64136943185, - 1146.391719961819, - 1148.566034240243, - 1152.4895358426263, - 1153.2680847665279, - 1133.7707401375094, - 1158.803479312247, - 1136.6825952935965, - 1135.662228748901, - 1159.3885594183312, - 1147.108956811786, - 1156.2865004885853, - 1124.3398663993064, - 1151.7620058133386, - 1144.6232957301363, - 1160.281207043417, - 1146.0447315173153, - 1149.079768842337, - 1147.3453606992994, - 1148.0985025967543, - 1149.787972370644, - 1151.7690392502013, - 1157.1711106462556, - 1155.650122875767, - 1143.5855718820847, - 1175.5709557025157, - 1157.2380754209912, - 1158.6300445381496, - 1154.4036523662558, - 1155.7977695705313, - 1161.0539330684326, - 1152.8781093484004, - 1145.8646832153947, - 1157.3449747780485, - 1151.9869709519796, - 1165.6760698034627, - 1144.121728544085, - 1164.5880539624034, - 1148.7442650609248, - 1154.2594785787062, - 1153.3812110000395, - 1157.4064975122253, - 1150.8598321517416, - 1141.563520439574, - 1148.3973516260926, - 1159.119484394837, - 1157.1956096165477, - 1160.380397746393, - 1158.1622399886114, - 1147.5253490819775, - 1161.1299686936325, - 1145.8987797656396, - 1157.0286426256407, - 1145.9517345618694, - 1156.086569473389, - 1166.021674734906, - 1133.6172731321478, - 1161.275330551096, - 1145.7707032278622, - 1164.6934840502945, - 1159.8475608550311, - 1142.4828865217664, - 1139.9333422860504, - 1147.6906140753126, - 1149.0816074970312, - 1150.5262511510232, - 1148.197000083935, - 1146.178982469868, - 1154.6888578938006, - 1140.7238481807997, - 1161.0854403139238, - 1145.641673065307, - 1162.5943850335063, - 1142.6205606351439, - 1150.6432608437572, - 1143.7199545748713, - 1160.4781370964, - 1135.0166721982303, - 1159.9272080128228, - 1144.095862590888, - 1168.0434768747505, - 1150.8968924447279, - 1146.206210922403, - 1163.4448761397555, - 1156.5497399482958, - 1160.429043761286, - 1152.1025232356028, - 1161.696604644817, - 1135.4958752203986, - 1143.1902727414338, - 1158.2499094200427, - 1144.0227416221169, - 1157.6781188245143, - 1147.435472647248, - 1148.308563476283, - 1146.334290976276, - 1141.8763121567033, - 1140.3529167457696, - 1157.0204097120513, - 1148.0381276757576, - 1152.814237063561, - 1160.6830891615398, - 1146.8485697556698, - 1155.9724216980678, - 1151.1172740322793, - 1159.0373788495574, - 1168.8330737826182, - 1161.9296117191616, - 1170.3590929108177, - 1146.3988324738068, - 1157.0230787958467, - 1159.5821826696517, - 1144.7830646743428, - 1153.474839736666, - 1139.0921803730016, - 1145.7285788435954, - 1153.9240460880192, - 1143.0448452395717, - 1137.7678707138996, - 1158.9490584044304, - 1154.2316123079347, - 1156.9652068431596, - 1150.9456422138162, - 1162.7338110287974, - 1148.1519691753344, - 1164.8855983984574, - 1153.3137789204675, - 1132.875132242316, - 1139.2211610667375, - 1159.8982743190616, - 1144.8215816765305, - 1143.009980242183, - 1144.4655489005988, - 1145.6058584138127, - 1144.1476162865545, - 1155.3260950499216, - 1146.5570068886398, - 1149.6349189188782, - 1140.110216258523, - 1150.5861726411192, - 1140.5994768400117, - 1150.0071239154597, - 1162.4741699178735, - 1143.238015191948, - 1144.115966229833, - 1153.7216654547526, - 1153.8494965182203, - 1146.7418127176222, - 1128.5868117802224, - 1156.004040284938, - 1154.9852807261814, - 1152.6754632775467, - 1160.4342610016847, - 1155.3458327050196, - 1163.9318626737177, - 1157.962741812927, - 1152.6510459841174, - 1144.016525789809, - 1158.3949346467296, - 1159.969456151542, - 1174.273894098883, - 1146.7389431125196, - 1152.3699544298456, - 1154.79608912682, - 1168.0000092683613, - 1166.4933848356288, - 1149.8201767242667, - 1134.6035682827494, - 1134.0438532159696, - 1135.9513935681182, - 1145.0300130292471, - 1171.4033704923659, - 1141.5150306550552, - 1143.5880124960324, - 1139.460990153056, - 1143.313292913556, - 1152.5222247141596, - 1155.1297952101272, - 1152.064573902662, - 1149.2377219289651, - 1150.0536525852142, - 1159.961651148118, - 1142.6526155980046, - 1162.989318554615, - 1150.470377878064, - 1133.441858379028, - 1163.2411029306343, - 1149.0254910405602, - 1148.2640506222087, - 1169.077095839915, - 1152.7070529126847, - 1150.0209334945182, - 1146.849162834549, - 1139.500923796251, - 1145.37111406959, - 1147.2561559826327, - 1130.6174672863906, - 1171.4629832354556, - 1149.620901339931, - 1152.5420560181994, - 1161.7244093485938, - 1136.5325900691462, - 1158.742896518963, - 1176.9376872903822, - 1135.8484530752207, - 1146.5926601898714, - 1136.180863192409, - 1173.5529126366241, - 1151.657766924345, - 1137.670918970685, - 1139.5165979851797, - 1153.018586366128, - 1156.2111871650416, - 1150.5089184052858, - 1148.613972774032, - 1146.3813542039413, - 1140.5617523854762, - 1143.966397910096, - 1154.4137123573212, - 1146.850309864841, - 1152.7599738373415, - 1134.8480355185209, - 1130.2749624460198, - 1137.796103785724, - 1150.901673430507, - 1156.9422759625252, - 1141.8732993098108, - 1136.084124489049, - 1153.0736509364076, - 1148.8704804692075, - 1147.9535058869446, - 1148.3368030503775, - 1129.3754611818406, - 1141.5827934304812, - 1148.6390273631862, - 1156.0151195927676, - 1166.3017440037993, - 1157.08422729021, - 1154.7034659260084, - 1138.6831750384288, - 1149.1171907528417, - 1142.3229623362238, - 1134.97258658884, - 1154.519685589448, - 1154.9175492602249, - 1118.9284766830465, - 1159.2245404334699, - 1144.3099540109736, - 1154.3523630479756, - 1154.1908860697272, - 1137.5888488824176, - 1147.167486276299, - 1150.56117920852, - 1151.0594321481185, - 1159.9503312995507, - 1128.8298869351695, - 1128.5849490519377, - 1160.0351701235056, - 1157.1304456819526, - 1147.5818899170536, - 1162.4017118156132, - 1157.2458446800297, - 1144.996400709262, - 1154.9492684716506, - 1168.3186135644503, - 1147.3877308316296, - 1170.1860391524938, - 1135.983064146837, - 1158.288323756832, - 1152.3567182159236, - 1161.834261331083, - 1150.715240890769, - 1145.31710215816, - 1131.4812228370502, - 1144.929399399223, - 1148.8416709086762, - 1150.1056233997126, - 1149.5292395936897, - 1158.194248397555, - 1155.583590980105, - 1163.7649390853348, - 1146.1239828427579, - 1150.3603972754663, - 1158.8766811755825, - 1150.9425409337625, - 1149.9237984154197, - 1167.4631122072055, - 1157.1182060043593, - 1151.3038301260735, - 1151.9470149974024, - 1152.5384534584427, - 1130.701517681269, - 1154.5240753656328, - 1146.9134948854114, - 1143.8806017750483, - 1156.6068990247643, - 1158.6742067845976, - 1153.5254861025003, - 1147.2526989388357, - 1139.595871899845, - 1163.5210519379539, - 1143.142946127185, - 1158.264032014346, - 1152.3715147729301, - 1151.2309828248292, - 1138.9675564559045, - 1152.0313921739903, - 1158.9826868380417, - 1152.6298142611056, - 1161.2537682212512, - 1164.642121527863, - 1149.347566487969, - 1155.4893311686258, - 1140.690959082022, - 1158.6939560228338, - 1149.2328484547847, - 1147.7860075507494, - 1146.6352691932093, - 1169.4716740235615, - 1160.759255778132, - 1162.9774186008283, - 1142.6920134850552, - 1143.9698451713575, - 1154.3118443882254, - 1154.1713868584277, - 1141.2463472819427, - 1147.122191059758, - 1139.202580923675, - 1159.6329524052014, - 1146.7134673156966, - 1140.0534092111473, - 1159.3801398585379, - 1166.101500820952, - 1145.2252042068608, - 1167.8585154174798, - 1149.0443922382344, - 1147.4513181397601, - 1155.1964695068739, - 1154.3267641280265, - 1160.0815828828795, - 1148.9957162100861, - 1155.7683322873831, - 1151.6857917856455, - 1159.0812827501388, - 1162.0360008268597, - 1162.7122513025843, - 1158.2082889843186, - 1150.3891851138012, - 1157.832803401545, - 1148.9849790664312, - 1160.358070791745, - 1140.7969949556932, - 1148.391708671095, - 1155.5680410677523, - 1146.5782736722344, - 1148.0435135466928, - 1153.6785707881013, - 1148.7758272247745, - 1165.7227765748469, - 1144.245631097689, - 1172.0883780669976, - 1158.02422606093, - 1160.772493306259, - 1145.8693124070578, - 1152.3864671112879, - 1145.7073810439383, - 1148.05805202263, - 1138.584538202217, - 1147.4994504989272, - 1155.5969991344728, - 1139.815034217715, - 1158.1537266585867, - 1162.8932747379101, - 1143.472473722664, - 1136.8296604496402, - 1154.169356165449, - 1163.4282140150665, - 1147.4678180821002, - 1150.5988767988886, - 1138.6778388148784, - 1149.7622497029733, - 1153.273270986915, - 1151.7207375137157, - 1130.6499427870535, - 1152.232765226411, - 1154.2257807091087, - 1157.9277423253152, - 1148.961373726578, - 1146.0083685155048, - 1157.8801703972142, - 1153.0704123499834, - 1152.461296080685, - 1129.5891865250035, - 1144.0541978076326, - 1133.553258466837, - 1142.2008191122495, - 1163.1698788813792, - 1158.7756125318313, - 1151.1487813048625, - 1146.816215126479, - 1156.9756840179612, - 1146.124639288794, - 1141.729583707158, - 1157.4097395640433, - 1149.5137314242347, - 1155.2302126004747, - 1142.8485865511298, - 1154.2768842737262, - 1135.2821841521866, - 1131.527298241836, - 1159.436002287294, - 1153.86886253365, - 1164.468185586859, - 1140.4807951670641, - 1153.8037011358942, - 1152.3766217543114, - 1134.060694566336, - 1156.942543524922, - 1145.86216363783, - 1151.5187007709915, - 1136.252993140988, - 1138.061956614867, - 1157.453830747513, - 1156.6917560017791, - 1138.0577789851454, - 1126.7664420717877, - 1145.853789805325, - 1150.582386832093, - 1155.6624377516569, - 1159.752778964802, - 1153.1481331100224, - 1129.1210163535916, - 1154.5349512933642, - 1144.7246520511885, - 1174.237747976529, - 1148.0633415792531, - 1134.1202468222998, - 1137.8338308726607, - 1141.6535407193849, - 1143.135181221045, - 1151.8153948339802, - 1163.8950070113194, - 1156.2504241556, - 1138.0654584155939, - 1140.8695216333888, - 1157.6873319448925, - 1150.2251368593463, - 1150.3051801486788, - 1134.3497343537626, - 1169.124021870288, - 1157.7786570190895, - 1149.6902486288461, - 1159.965737469563, - 1179.2068329346853, - 1148.7077401021668, - 1148.6713449115389, - 1147.153385405245, - 1167.1460711967288, - 1143.083371839215, - 1149.7093833722108, - 1152.5730139314758, - 1139.122656756076, - 1155.0010837820455, - 1144.0224057274115, - 1166.382761559351, - 1165.672793435218, - 1154.1942598350913, - 1140.7744110521828, - 1155.5428211552464, - 1152.3685246835498, - 1144.8696705395644, - 1165.6340241560695, - 1137.639577177243, - 1139.7526514925344, - 1160.9218218230283, - 1130.1456280850657, - 1147.5776110467636, - 1147.6215964148485, - 1161.587829891195, - 1162.2007397267664, - 1152.3391826211052, - 1155.676595399435, - 1139.7490242990016, - 1139.7238628597695, - 1157.3983035019965, - 1148.6984161165367, - 1141.5750627789375, - 1141.152502773535, - 1144.0574136809266, - 1167.741520755786, - 1150.5682611270386, - 1159.906745751091, - 1142.0308336701132, - 1157.5219486406068, - 1134.3991837063916, - 1159.1670783545726, - 1153.1872879699179, - 1161.6939770282536, - 1159.0593010674804, - 1136.3693931656253, - 1152.218417862331, - 1169.0586973116751, - 1149.2028937161595, - 1149.2880510364919, - 1153.7323662276801, - 1149.894726715572, - 1159.1061481697704, - 1141.8232363786972, - 1144.6586435146253, - 1155.2152645842996, - 1145.6498221232623, - 1153.2758057032697, - 1120.8986407000639, - 1164.6936965913928, - 1154.7767147401673, - 1119.8921815505316, - 1155.3580299733526, - 1144.6400504514806, - 1150.4871940409982, - 1165.9392553953867, - 1146.162284044029, - 1153.6774736681127, - 1146.5324594796868, - 1136.5505968228197, - 1154.3182392641318, - 1162.2882431387334, - 1139.386951509282, - 1151.9136942230614, - 1141.888177208522, - 1152.6461968063556, - 1149.5853904551193, - 1159.7132684254698, - 1149.8801623110649, - 1137.2722105449413, - 1156.6051592453498, - 1141.54599782882, - 1146.5744262694147, - 1151.5783829802258, - 1155.3041041311567, - 1132.4434054484764, - 1158.1358935839228, - 1145.53009022688, - 1157.4026503698271, - 1156.2970639105783, - 1140.596270671717, - 1161.4408040653789, - 1159.497383642183, - 1142.6069060210402, - 1143.8460675757049, - 1130.342423754028, - 1146.1081714325583, - 1157.6981090506602, - 1154.766138569832, - 1139.7766568584818, - 1143.6276325933422, - 1142.5416739054847, - 1148.2099690276127, - 1144.877074936023, - 1157.9086285899657, - 1149.2004323079718, - 1152.4294462643688, - 1148.6728790523705, - 1162.540679136611, - 1160.1871292076319, - 1142.7362449004165, - 1158.176334791751, - 1130.0476226751148, - 1146.886394604803, - 1144.8195500619643, - 1147.0041244599986, - 1147.8025066860641, - 1163.1226807835676, - 1138.7650468336615, - 1146.3135327804368, - 1146.8217710720612, - 1155.0764431490045, - 1140.256616443424, - 1142.26578226636, - 1144.922438323321, - 1139.8080124134822, - 1149.2416702911644, - 1152.3447733737748, - 1151.9043415155986, - 1144.1461164094035, - 1138.9996759268838, - 1151.6717133733775, - 1152.4185230651678, - 1155.8899789598654, - 1164.9039899234288, - 1149.3776023154896, - 1129.2692419487892, - 1150.1276860000587, - 1150.664997875686, - 1146.5911549331138, - 1135.9190709258553, - 1158.308278723271, - 1154.6588442226214, - 1162.7783962851881, - 1146.3124741727906, - 1141.321945517478, - 1147.3980860667514, - 1167.4787855009351, - 1153.2392640503463, - 1168.3179041688272, - 1164.2679542999924, - 1149.352004991214, - 1150.0461903785742, - 1158.7010526579945, - 1131.881329294736, - 1140.606424821498, - 1151.460608019956, - 1158.0999834649378, - 1152.868506367474, - 1149.7691773732613, - 1140.5843109481686, - 1143.0514607331093, - 1144.7019404857565, - 1147.6253246178248, - 1156.1925895421584, - 1149.4837450060854, - 1156.2114533485562, - 1141.7769552230852, - 1164.6253709017578, - 1148.8569038268893, - 1153.8742365385062, - 1156.2471170482247, - 1153.761620566367, - 1151.2731654375339, - 1159.2470581279167, - 1149.4009586064653, - 1147.6249881051026, - 1150.7331532920127, - 1127.3873995708743, - 1146.784823181836, - 1151.3251300103377, - 1168.7485616853203, - 1154.980348070099, - 1142.3536543963469, - 1150.7787664606115, - 1136.7262708891453, - 1145.4116057634185, - 1139.1328548746985, - 1142.785229698929, - 1153.7426877335079, - 1147.3262598649358, - 1152.5700707907458, - 1147.8622470886048, - 1157.279107152469, - 1149.6553936881687, - 1156.3545890922128, - 1154.829542072944, - 1151.1799860311307, - 1144.0088514212875, - 1149.5991474990922, - 1149.7744563290105, - 1152.2373266166487, - 1146.7262680612544, - 1160.9703816629037, - 1164.8933986571733, - 1145.2451127684233, - 1148.2870198659307, - 1148.8103031821838, - 1156.355692280537, - 1158.2102493414072, - 1140.5576623767197, - 1163.7013508694224, - 1144.7675749376192, - 1144.2174070467738, - 1170.1716148988867, - 1166.5344242998794, - 1150.1261979550357, - 1157.9121007862882, - 1140.5460560504669, - 1155.4001034728813, - 1157.532765426519, - 1154.1748193433857, - 1155.6688138802926, - 1150.3545060071224, - 1149.2942810332681, - 1142.483371935551, - 1152.3672582247266, - 1142.827986625738, - 1143.530917086619, - 1148.1898727956102, - 1158.0076074744027, - 1142.0804315628095, - 1148.7320312712284, - 1152.1001068068101, - 1133.7897501415355, - 1164.6976688169475, - 1143.6537600603474, - 1166.7053747280065, - 1157.0445213161925, - 1141.6466646795047, - 1145.8195655250877, - 1148.9855217982174, - 1142.8952325489133, - 1164.4902126879792, - 1162.6179988061717, - 1155.0479543279603, - 1136.471273159418, - 1149.9465279812348, - 1134.2767814955005, - 1161.5309739650302, - 1135.266290783461, - 1152.6964317330767, - 1168.8997209237125, - 1146.3735889592626, - 1157.3545341260499, - 1151.6448875050405, - 1160.5879722757068, - 1149.3433734857706, - 1152.1780800765473, - 1149.765426827635, - 1140.288484599404, - 1142.4447685817565, - 1150.4742010828563, - 1141.5273775564003, - 1134.6999059724787, - 1166.4080363688436, - 1137.2368250726793, - 1147.8554370828713, - 1155.036584418229, - 1149.3258248356315, - 1167.072219041901, - 1137.6641959822873, - 1148.7853781432616, - 1149.11222615746, - 1159.2453820756948, - 1154.5445990520404, - 1161.2288695812874, - 1163.4486899998547, - 1151.8459106657617, - 1153.91061015017, - 1147.7465876860674, - 1154.520764438426, - 1160.2638990486566, - 1158.4336038081128, - 1156.9174330727842, - 1144.864779562853, - 1163.9742600301206, - 1144.3869055361336, - 1162.1543300827745, - 1160.9706026813824, - 1145.763743819086, - 1123.82436655201, - 1162.1092435645076, - 1140.2159969366921, - 1153.7404364024137, - 1160.7096061903767, - 1155.7947132155869, - 1125.3050682372327, - 1171.78517160622, - 1156.492243544839, - 1164.7059088477806, - 1150.3131312412286, - 1156.6187944024814, - 1155.2915117564514, - 1154.4709116903987, - 1143.016553322333, - 1154.5817300338094, - 1156.4539660848263, - 1155.5409006224445, - 1146.0105239484963, - 1145.2256270121013, - 1134.0997679879486, - 1146.347658570724, - 1146.6115624273084, - 1179.438398155313, - 1150.899882054027, - 1170.738258229257, - 1150.9484452962824, - 1146.5844170844084, - 1165.5067036565215, - 1154.7660565068763, - 1144.143492412663, - 1136.5561623908573, - 1154.0733158840064, - 1142.9993773788683, - 1146.5750479157762, - 1133.6122466365675, - 1155.199839587917, - 1153.7919940936702, - 1141.1768670301244, - 1151.1963760975411, - 1151.7261212921894, - 1152.4506379000509, - 1151.7012619350594, - 1159.7310705940772, - 1156.4648760802063, - 1145.299226114082, - 1159.9756965870563, - 1136.2900247849368, - 1131.4694507761035, - 1163.5167882741453, - 1140.3709844382045, - 1131.4200928400123, - 1150.6059763244857, - 1161.5444200339289, - 1122.0999158478933, - 1148.5459443463908, - 1143.4415187442464, - 1144.970856875647, - 1153.7727754646908, - 1154.459892445762, - 1137.416298132983, - 1145.2817782014083, - 1152.3110458801727, - 1150.779603061307, - 1165.6294757288408, - 1157.90560971014, - 1164.4003065292532, - 1146.774591165518, - 1146.4039783901335, - 1152.5894046036476, - 1153.1446529180082, - 1160.4887441190426, - 1150.2557199851576, - 1154.2458691858815, - 1151.9647763504174, - 1162.129928598149, - 1165.3301470994443, - 1153.7972405278301, - 1145.1329915099188, - 1139.7138160573613, - 1150.0863058243467, - 1153.9116965559206, - 1136.9150322306618, - 1148.5483327254083, - 1140.7678192051346, - 1155.571887111847, - 1149.9691453580313, - 1151.9597592380815, - 1154.337017551366, - 1155.730787341678, - 1146.4923985874818, - 1146.8795621912977, - 1158.7613549805624, - 1168.5524405405847, - 1142.6035176381579, - 1156.373103621845, - 1149.524246901122, - 1147.804164076084, - 1171.5569480334582, - 1168.6212665571466, - 1156.1442562558798, - 1159.5850269656223, - 1161.77961526, - 1142.0043443003897, - 1147.233906459992, - 1147.9199711980018, - 1148.59104352318, - 1148.5139588027205, - 1148.131420617957, - 1150.4056193393656, - 1157.8632871366226, - 1155.6878867558694, - 1153.0198392403229, - 1152.8486349446991, - 1152.1572963970762, - 1161.177331938604, - 1160.4499452375478, - 1136.0999652355238, - 1140.0821642637027, - 1148.3161886737646, - 1163.8131244982944, - 1145.78882460236, - 1160.3905413472296, - 1162.926950099952, - 1149.667767295947, - 1157.8772075529685, - 1153.5605015478334, - 1162.448678717999, - 1169.6576338448676, - 1154.6539381383263, - 1154.3783874110534, - 1133.3050159724867, - 1132.4368041639684, - 1156.8705615296344, - 1156.3721468531958, - 1145.8382788726215, - 1162.3573248975176, - 1156.5278325387028, - 1149.0616017703906, - 1164.3931093348403, - 1171.759222371844, - 1158.922784593568, - 1140.1000008701815, - 1156.7904653513656, - 1156.886917319267, - 1159.7723576108187, - 1156.815515406263, - 1148.1964637173458, - 1164.915027138695, - 1140.457342566394, - 1163.597274299036, - 1149.7604470573458, - 1157.5085384216968, - 1151.4921108254964, - 1151.4560298511433, - 1146.1497479713319, - 1155.0418017355037, - 1151.7659568699448, - 1154.4028587942455, - 1147.1139841185077, - 1137.3617149523454, - 1152.8824943378224, - 1167.289268084232, - 1142.077727231779, - 1135.1386775720205, - 1139.789572803, - 1157.3771399920822, - 1142.5686451718025, - 1140.0160535549871, - 1152.5461348018023, - 1160.2038257477752, - 1159.3858527443726, - 1144.834872565505, - 1151.9216799000467, - 1149.3052477625586, - 1138.4166473624666, - 1167.2282536852165, - 1155.8767471903855, - 1159.7870622977925, - 1147.7845056228323, - 1151.8148016414348, - 1173.9164385128865, - 1135.8037643713478, - 1134.1031918108877, - 1157.1226723288971, - 1143.3504215314204, - 1140.3971177887438, - 1171.95572812135, - 1157.792749446211, - 1162.4917390046699, - 1157.6876916880822, - 1157.4196765898673, - 1159.6020245209859, - 1148.5111077323531, - 1146.8543120461784, - 1138.9392664211537, - 1140.2031668272277, - 1139.1985522902103, - 1146.4213236065261, - 1155.3618442419645, - 1156.0107299699575, - 1163.5556076301132, - 1170.0151126657538, - 1148.0209263448564, - 1149.926645265731, - 1149.328509708733, - 1135.0081559140626, - 1152.9143288133366, - 1140.5109927951453, - 1163.1046344519355, - 1153.7039748599564, - 1145.7694736509, - 1145.3393332463138, - 1145.8598589004882, - 1143.1705005851447, - 1127.88052695523, - 1155.2468215940291, - 1147.9213339142318, - 1143.5743403531358, - 1147.3895929551197, - 1156.7867662672454, - 1142.1385409668655, - 1150.0106123445228, - 1153.8163242960743, - 1147.6846381631308, - 1140.363165678938, - 1138.512736350715, - 1141.443019786594, - 1151.7511564871365, - 1157.1303713051561, - 1156.0970946623793, - 1155.5570623666824, - 1153.1968414309442, - 1139.0714306426623, - 1152.1004560894182, - 1166.1440184899693, - 1162.5349126658841, - 1146.3407353808648, - 1152.039265350714, - 1148.6365084630384, - 1157.1430994610512, - 1137.7715077899795, - 1150.2851234395482, - 1150.3897252466863, - 1154.3686659782493, - 1174.3394180178454, - 1161.2892655130124, - 1135.7698115606297, - 1138.7509312911347, - 1148.3647015951478, - 1165.080194753794, - 1124.668748928051, - 1164.065834311399, - 1148.834671279336, - 1148.9614689423631, - 1144.635839407211, - 1153.8796574528417, - 1158.1051621524657, - 1153.5393190830528, - 1142.2279209473904, - 1139.7475935065072, - 1143.5269591432686, - 1143.909716430215, - 1144.8893356285544, - 1130.921177694477, - 1146.2839754384363, - 1143.2028984677859, - 1160.2109464034656, - 1147.072433142865, - 1130.6744286597525, - 1153.0742436289656, - 1141.7851938545095, - 1160.1300920852761, - 1159.1700111261673, - 1149.1140103642738, - 1148.0141593556652, - 1156.182520787634, - 1140.9376006591772, - 1147.4467705543525, - 1156.6858048126255, - 1154.5723621130778, - 1164.0904677099322, - 1151.462977945583, - 1152.206169076967, - 1142.6924667047485, - 1142.055543052795, - 1141.9776031563517, - 1165.69214571594, - 1151.4192674465532, - 1150.438689870829, - 1147.2146568004164, - 1158.6107695610115, - 1151.6436087646282, - 1166.1602133474878, - 1154.5751398593172, - 1157.4963863616802, - 1145.2641025912758, - 1159.8482703302377, - 1162.4456362435133, - 1129.1255363573214, - 1144.7996157519135, - 1149.052151499025, - 1157.940672169815, - 1150.323946956985, - 1148.4363824514205, - 1136.8018369889671, - 1155.2848591090308, - 1154.5775138660922, - 1158.5334518052289, - 1154.4028656521539, - 1147.523231818576, - 1146.4399251106033, - 1139.996818531654, - 1146.7243186435176, - 1134.2589043481466, - 1147.6480295446408, - 1160.206260323377, - 1152.1658001183928, - 1147.7944720649411, - 1162.2221137616864, - 1152.4777697009358, - 1161.1671202062616, - 1139.555156448172, - 1152.8715932476903, - 1149.7546191406893, - 1140.77894557246, - 1131.0729779366598, - 1150.7363801311096, - 1150.101068786346, - 1152.5778525154612, - 1158.494235319512, - 1163.6073587528172, - 1153.6979120602252, - 1166.1738559219477, - 1140.1015376000103, - 1156.042860419209, - 1146.0638885601318, - 1157.6340686403178, - 1152.884616924612, - 1148.0880235483583, - 1142.666116580825, - 1147.9713668062554, - 1145.7278130846773, - 1151.445367818047, - 1152.4520646983144, - 1156.0688975825838, - 1148.6826908723517, - 1160.7695302011266, - 1150.3052741079505, - 1145.8904713530983, - 1157.6461432064723, - 1141.869888546732, - 1155.5811247867946, - 1139.9426535087964, - 1129.7378009503336, - 1151.960594950302, - 1159.3493022811072, - 1142.1519087493848, - 1143.4800825060643, - 1130.3700195889119, - 1143.492228790458, - 1137.8173953315115, - 1146.0136155038967, - 1133.2512578180347, - 1139.4773680516976, - 1141.0070452515467, - 1150.124689053405, - 1160.788005121525, - 1148.3938541427701, - 1159.017634128554, - 1149.8549360810368, - 1161.0926783574173, - 1152.8986385586522, - 1157.073411229257, - 1146.4513351573341, - 1163.9755748043026, - 1161.3356816426103, - 1135.5319274017243, - 1157.70202678471, - 1158.5173221136629, - 1150.9011553400503, - 1169.0107014622238, - 1167.5237410882828, - 1159.6346011849776, - 1136.2370238567607, - 1153.7226668024234, - 1146.5924817891969, - 1162.6033423004376, - 1144.9461819810006, - 1156.3734069714671, - 1141.5129816797212, - 1146.065789009417, - 1153.1567749750996, - 1134.623947011393, - 1144.772482878031, - 1154.8746687118637, - 1154.7880065544118, - 1156.2579369775922, - 1157.0663177053534, - 1146.5713160951423, - 1150.934518011384, - 1147.6853949656313, - 1161.4997691482795, - 1154.2427369193472, - 1143.770364634695, - 1164.4408259726035, - 1154.5758106817323, - 1155.7828999239337, - 1145.8474823168688, - 1152.153206965765, - 1146.6572320088221, - 1131.728315115221, - 1139.4047009807111, - 1151.9601156751648, - 1148.3934640260225, - 1148.3614144955854, - 1165.0358772323468, - 1152.9346397110255, - 1158.7747488199248, - 1150.17145528401, - 1157.818299936601, - 1146.6679760632965, - 1157.5155316647547, - 1137.829799888731, - 1155.5098001502863, - 1157.0209700333387, - 1142.7831899906307, - 1153.4702447673676, - 1156.4407081131503, - 1157.368684736417, - 1167.9307328378063, - 1145.9575227154623, - 1167.6079363163428, - 1156.2590523374076, - 1159.0472408809762, - 1148.2366296540688, - 1155.8940185372298, - 1147.2745516863222, - 1151.06010746137, - 1155.1369060942181, - 1149.5191646245894, - 1162.1247732721858, - 1156.8317779497463, - 1153.4199456366111, - 1145.878496117395, - 1129.061946230953, - 1146.0474028424123, - 1162.8505494763183, - 1142.3749209986602, - 1152.5454376084213, - 1136.9721570527777, - 1149.6096089962136, - 1159.1609650409807, - 1156.5944560919484, - 1142.9148290011735, - 1155.1392485768451, - 1171.579510844677, - 1135.1887999639166, - 1143.0145603293113, - 1151.7596076576297, - 1152.125703102802, - 1158.061520101678, - 1138.9713781710468, - 1163.0661532090264, - 1160.1562432231292, - 1159.6393865870568, - 1161.4279986733031, - 1154.2250023445338, - 1155.660856890302, - 1142.1723534271573, - 1146.9579330861154, - 1155.4442165322532, - 1153.5954398464562, - 1136.3936358486098, - 1157.0766305726158, - 1135.575418451421, - 1148.996504321507, - 1145.0981097734436, - 1145.2236205446347, - 1160.2671538771644, - 1148.5652278110613, - 1152.6094075890003, - 1148.6862278513267, - 1152.4913782883318, - 1141.5340496449348, - 1140.256357328581, - 1126.6935047014802, - 1164.9620359992512, - 1131.9496531345458, - 1141.592979487795, - 1128.2951549567763, - 1136.2330899580586, - 1136.1714604314445, - 1160.124180348917, - 1144.4438579246255, - 1135.62044524127, - 1156.9154899598236, - 1139.0650661467425, - 1142.4732373476375, - 1160.7183648645112, - 1149.434203241597, - 1150.3263806362038, - 1161.4767022407025, - 1155.7603514566647, - 1160.6141732020285, - 1160.8925892172867, - 1159.2778386729333, - 1154.028952868077, - 1154.3323185625152, - 1164.482487752219, - 1157.6230665398027, - 1132.7259375056929, - 1137.2719105430688, - 1150.8730309237249, - 1159.9747623216783, - 1147.1318424135686, - 1150.6478545338312, - 1153.0589028102863, - 1121.3890074473102, - 1136.5982941325362, - 1157.4555123531268, - 1148.2945809323946, - 1158.2347306665504, - 1157.2096437468217, - 1151.9807604091218, - 1161.8301618515934, - 1149.4948658909402, - 1161.7951852334045, - 1142.3128184778798, - 1150.7565420507437, - 1161.4961110077215, - 1155.1488176562993, - 1135.3514469866655, - 1143.7139249738195, - 1140.8968680449686, - 1174.6393696717496, - 1151.1589690831852, - 1151.314433222809, - 1165.1779007158655, - 1156.670245740428, - 1155.7986933821094, - 1165.4768212493832, - 1156.8422660747156, - 1153.028160618058, - 1152.486150258313, - 1150.4097519351994, - 1135.9954987373408, - 1138.55813005312, - 1145.978927327455, - 1139.398674667356, - 1153.4096206590962, - 1147.5513531584918, - 1160.0658450989529, - 1170.453801436221, - 1155.2222865810531, - 1149.720705546369, - 1146.7385341418349, - 1145.7458674058548, - 1162.5378268704326, - 1152.0174980495535, - 1134.8543459800624, - 1153.7958243235532, - 1143.557247599691, - 1151.8374913321713, - 1151.259137328238, - 1164.99178958439, - 1143.778752221697, - 1159.7582716203046, - 1154.5596127379204, - 1158.054341694453, - 1163.9974745459958, - 1174.5938665672986, - 1164.8982363111036, - 1152.7091793938898, - 1162.2168065117621, - 1158.976956502162, - 1169.9950793547446, - 1146.175264547805, - 1150.7436726829221, - 1165.711976933624, - 1148.5375702581118, - 1160.953411349547, - 1151.942504842466, - 1157.7809731179352, - 1153.9045056831062, - 1157.9347236815647, - 1153.880335051817, - 1166.2575982225517, - 1153.754795592159, - 1152.9105468713806, - 1148.7062404085452, - 1149.4332121988416, - 1162.8239027280672, - 1150.5032106012532, - 1155.3067035447712, - 1144.1468778217509, - 1148.2989390766224, - 1153.4829684764081, - 1142.934032578671, - 1144.4143799878693, - 1156.7240427964034, - 1138.3646787792882, - 1143.3889688731467, - 1141.3693507691275, - 1134.8184276153931, - 1151.5493953989883, - 1138.3018409073231, - 1154.515420874281, - 1135.1435998545533, - 1152.014088873851, - 1152.4536396222388, - 1150.0436574959472, - 1157.687012938781, - 1141.3410831761996, - 1156.2343423736595, - 1140.1529675081217, - 1165.7981078043226, - 1146.7030329068155, - 1155.0700087432135, - 1153.5164673228555, - 1143.4662730516502, - 1136.2718832750816, - 1151.33717029121, - 1150.5630705776402, - 1146.7408141883975, - 1156.4589563201348, - 1145.6028466000532, - 1159.4775304029988, - 1138.1662845496967, - 1151.2966553987155, - 1142.024574908644, - 1152.2053262152833, - 1167.2138769518947, - 1146.926632513664, - 1154.0003698583341, - 1156.1214238023867, - 1138.7108050679349, - 1158.4479417685206, - 1143.2692742173926, - 1143.488921268792, - 1137.7312635807527, - 1156.8151791608711, - 1158.0731820162246, - 1144.2681469858778, - 1161.145433085934, - 1169.4103154096115, - 1140.8427023413494, - 1149.515420753599, - 1144.0905775902631, - 1153.2893485746686, - 1149.4982990266835, - 1167.8470634780094, - 1168.1659103438594, - 1146.34410193915, - 1154.3810221591802, - 1164.8140213453069, - 1146.5352080993384, - 1159.8328807255148, - 1152.9389812768184, - 1133.709467490686, - 1163.6374657092265, - 1135.9054974435849, - 1136.2393755043443, - 1149.176770496308, - 1153.1775152286023, - 1135.2942631505177, - 1162.4581855388972, - 1146.5975121581712, - 1136.6304689542924, - 1152.4916337417872, - 1142.1200809459128, - 1159.9316745423382, - 1143.036898119569, - 1148.409348985499, - 1147.1073924830666, - 1155.976474892776, - 1150.0767549682284, - 1169.7221793675435, - 1164.0339959311714, - 1136.5722955946987, - 1146.3344349307351, - 1161.3662580618782, - 1153.5891427338966, - 1147.452793414734, - 1154.177388317327, - 1149.0109115684097, - 1143.6903780608823, - 1157.779152927313, - 1161.0560183192501, - 1153.1373849125355, - 1134.901354112241, - 1150.1836748593998, - 1152.3171080837271, - 1151.493546005414, - 1152.4440133588355, - 1151.0094540219745, - 1152.3639184635883, - 1154.5188323962152, - 1165.71825171932, - 1146.947830701578, - 1144.6571865069736, - 1145.8772953773605, - 1145.2956686559653, - 1150.3712717341302, - 1127.6253864646947, - 1158.9069474602957, - 1155.800351780543, - 1144.399752414259, - 1162.1307197918825, - 1152.6720490310904, - 1164.7492832253115, - 1154.4304946600137, - 1150.1940089944624, - 1165.2927935611779, - 1156.4168949757657, - 1163.0987275259167, - 1159.948708713859, - 1156.1223622544746, - 1153.9422479624966, - 1146.4526572030447, - 1149.4402863439723, - 1143.727613475457, - 1150.5257012164323, - 1145.433235786489, - 1139.7078461359222, - 1155.067312872583, - 1127.5859347851867, - 1142.4854637356927, - 1166.9671951042096, - 1148.9300929924277, - 1142.0849496589947, - 1147.0088717927115, - 1151.3961332751296, - 1151.9436309483065, - 1144.5972840058948, - 1140.1918510193343, - 1143.8484679742398, - 1132.5128617520875, - 1153.9960696393373, - 1146.823636110923, - 1160.3194653321214, - 1150.4194853221236, - 1164.5904414392778, - 1164.1437383525536, - 1152.1848181914806, - 1151.2513699117935, - 1143.5514404756043, - 1146.014394098599, - 1155.4633924310924, - 1138.8182931546853, - 1159.8308540254611, - 1157.883688093381, - 1145.0561583074127, - 1159.047419336535, - 1136.6062612113242, - 1151.1568145537558, - 1160.2799764299007, - 1165.363570510729, - 1158.5619468686755, - 1157.4873476660373, - 1156.9686735141927, - 1163.8408864291973, - 1173.4024045964009, - 1158.0384886107422, - 1151.5312773615997, - 1160.218307075837, - 1155.5895804675927, - 1158.092062431616, - 1136.1060612052906, - 1148.1130522665533, - 1159.768446940414, - 1130.8044392177262, - 1133.5456977428692, - 1152.8109790402984, - 1149.9221772077638, - 1171.3234064169142, - 1149.5887266041616, - 1151.3003667899975, - 1147.1457462687365, - 1168.9674563763526, - 1155.3307741718863, - 1152.9019010901354, - 1142.5017850504948, - 1134.9927824089737, - 1168.2227786657163, - 1134.0446835267157, - 1159.3629705458372, - 1154.7379715225566, - 1156.138077626839, - 1154.1922795134715, - 1161.6830776468946, - 1131.2719792201167, - 1151.744043480628, - 1148.3412887108943, - 1168.5310900800039, - 1141.5142225431766, - 1157.4848379004798, - 1145.1057480414352, - 1149.7197766513573, - 1141.4639362355658, - 1138.8443493177465, - 1141.9308284496326, - 1164.4113843104346, - 1163.429544931873, - 1146.3329813246446, - 1152.7720646676328, - 1150.2814680806575, - 1149.7877954562912, - 1132.3488519105904, - 1144.9433249673739, - 1150.634601494964, - 1148.245347958344, - 1159.0022646618036, - 1152.9355729249924, - 1160.4237005438836, - 1149.9010596555577, - 1149.2453473887294, - 1156.1393841742054, - 1153.8258182296565, - 1146.996321297061, - 1147.3719765003507, - 1156.1184023122632, - 1166.6385685404416, - 1134.4100424079404, - 1130.172512505762, - 1137.5178028286841, - 1146.243939839001, - 1162.948771059013, - 1154.0750465318145, - 1156.2036299320475, - 1137.474366958549, - 1145.6193842169316, - 1150.959728870247, - 1153.7784481734163, - 1161.5899773906697, - 1150.6365864908641, - 1149.316556859918, - 1138.1172047784291, - 1139.5586072040528, - 1159.2661220182233, - 1143.1393635591512, - 1165.9745328714134, - 1159.20906628267, - 1148.3112949699284, - 1164.9575996006247, - 1142.9988445229023, - 1147.6081379753095, - 1157.2732506628374, - 1155.8054508273465, - 1146.8647649244813, - 1138.4631983317352, - 1136.9522753778936, - 1134.3866549192342, - 1139.2623835757877, - 1149.957859613258, - 1155.7868676778508, - 1155.9668752323785, - 1140.1371813003402, - 1158.8065224955196, - 1156.077966566748, - 1145.0114150146176, - 1145.8570608558784, - 1165.5089846203923, - 1156.7208682008754, - 1151.4250942231897, - 1142.8149747807597, - 1152.546095445487, - 1144.7222326707279, - 1146.3029621367655, - 1152.521535668435, - 1119.386664019032, - 1165.7384403275173, - 1156.8428369100739, - 1164.577908656803, - 1139.867141661742, - 1159.7220203228544, - 1180.2260907149073, - 1167.1299052830905, - 1158.9981582627686, - 1131.1714402013245, - 1154.953262440795, - 1149.99276213443, - 1168.0407579329321, - 1143.3381680291482, - 1144.3577082714437, - 1157.8183473279732, - 1142.566183090595, - 1143.8800619835279, - 1141.1132801345084, - 1153.0429985639685, - 1158.0048618171966, - 1143.5715809045605, - 1159.4464513115377, - 1149.193161435731, - 1161.808106340094, - 1159.8551913339604, - 1156.0757988997877, - 1151.684488260441, - 1161.7243875482243, - 1146.894945551365, - 1134.754265413679, - 1165.3872666205987, - 1129.10411864054, - 1155.9396862086683, - 1155.1668045753327, - 1142.4540265353946, - 1145.6664627552398, - 1139.912034514692, - 1147.3942181403763, - 1152.258988104672, - 1164.297107998509, - 1147.9607767187, - 1141.01691804233, - 1146.2770468809395, - 1156.7893100246504, - 1158.524310082256, - 1153.2642588039455, - 1156.6939073643346, - 1158.7750497590798, - 1138.0344343538168, - 1145.7675224119575, - 1162.4509491951553, - 1158.0207346776485, - 1158.2829827997746, - 1150.7187237032826, - 1161.6448210131798, - 1151.0194388293623, - 1148.2658634868492, - 1140.091002751372, - 1141.854850843313, - 1160.2303892703828, - 1155.7140922838641, - 1160.3512329583673, - 1141.9583200585828, - 1149.7205397940781, - 1148.9209815880204, - 1142.4138293318586, - 1156.5740022866007, - 1145.3439521150162, - 1143.6516125129529, - 1154.1244751237186, - 1151.481012446463, - 1132.500221337283, - 1155.0935135572183, - 1159.5825738655483, - 1158.3065528966815, - 1150.108862070912, - 1147.2292038903756, - 1155.9504949088696, - 1142.661343309969, - 1148.2233527121264, - 1157.8621962812665, - 1162.5467491108159, - 1169.3463410966988, - 1144.3709529381929, - 1159.41014018068, - 1149.1957033553306, - 1151.6214227719643, - 1138.701469534885, - 1161.9694871270706, - 1148.6389217479061, - 1161.6906145578253, - 1163.5401131369372, - 1149.754533374389, - 1153.654026972557, - 1152.2098795674726, - 1127.277782378545, - 1158.9115285568423, - 1153.7500765423895, - 1144.9617781651957, - 1147.4895255062422, - 1147.1403159134707, - 1137.6359121357823, - 1145.6888572721366, - 1133.8765980137644, - 1138.6495232570396, - 1131.2110423880367, - 1148.4590185120617, - 1168.9054991329062, - 1146.6260986486354, - 1159.1897261112344, - 1138.3938145248521, - 1149.9946024331896, - 1155.356921542002, - 1154.1239889427793, - 1150.691054907354, - 1171.5115806151107, - 1127.0637665857807, - 1157.7952796722661, - 1154.706906251317, - 1158.1639229481643, - 1156.4985597101336, - 1143.1039894043272, - 1125.9692140983746, - 1150.1236482596128, - 1148.5947058004958, - 1143.4181482050408, - 1147.379809331946, - 1160.9121689035867, - 1147.5225991781144, - 1151.042693183476, - 1154.5355781860374, - 1153.9727178534051, - 1159.9428181092499, - 1157.3225399205612, - 1139.8082055680813, - 1134.4208777211757, - 1150.6589300057178, - 1145.787543757798, - 1154.317894257576, - 1155.609529188125, - 1157.5501040149093, - 1152.1726095703918, - 1149.8451200719103, - 1156.5343466766321, - 1138.704025162603, - 1143.2729682416011, - 1140.0096452388996, - 1167.5507479882335, - 1150.3124609038953, - 1163.9250150745168, - 1159.732761306893, - 1143.1792104123267, - 1131.9797550672195, - 1152.794866642308, - 1148.7143368802126, - 1157.2677930822933, - 1165.3988241329619, - 1148.0808805767458, - 1152.9117376078677, - 1164.1295044369178, - 1147.536270047531, - 1142.492480387832, - 1148.7283750759382, - 1158.540724029563, - 1149.2204860834447, - 1161.1862070276304, - 1136.123976811969, - 1165.7206354531015, - 1157.5985014381276, - 1136.9308915617003, - 1146.9278102029716, - 1154.3075499728832, - 1144.9493972180137, - 1159.7306747220912, - 1157.9061951019426, - 1138.4792862534835, - 1149.5873774246377, - 1169.0519249053395, - 1151.94725005067, - 1152.1477144244202, - 1162.9362643862914, - 1158.0479974983846, - 1165.1750831580925, - 1145.5057214398269, - 1154.534032713923, - 1147.0926469785763, - 1168.4967639395154, - 1151.0918906903346, - 1171.5261592725403, - 1164.013679889032, - 1149.319757727, - 1136.547202266867, - 1128.4797231888908, - 1156.1835524504036, - 1146.9009744918849, - 1132.038081660466, - 1172.1674369979094, - 1151.6849680299347, - 1158.3978251750184, - 1155.6959946709715, - 1161.9159573645284, - 1140.801508471327, - 1146.4512910439826, - 1153.0138615913202, - 1133.9625661466866, - 1151.8597514381395, - 1162.7480289731448, - 1161.8840295935347, - 1153.2768159099473, - 1154.2600114249512, - 1136.0484755864504, - 1134.0829319295844, - 1145.3940450608297, - 1160.984288454035, - 1155.788270155092, - 1142.5518630415731, - 1150.6620680205283, - 1149.3081523665023, - 1145.8905839304966, - 1145.8112268333678, - 1145.6841210940665, - 1155.1210325524942, - 1161.4687167208083, - 1163.0616567651778, - 1140.0999618125593, - 1165.1027584381436, - 1161.119732420556, - 1154.7894023626573, - 1165.8058548582349, - 1151.9175221268035, - 1154.012685765148, - 1151.2853841653207, - 1141.7255037324262, - 1151.55753881564, - 1165.0620108063783, - 1145.8591615597268, - 1150.3647033049656, - 1138.2318022388731, - 1159.9382524025436, - 1149.6004293755393, - 1157.7873496095544, - 1133.845128007757, - 1149.6776745914126, - 1147.0663481512515, - 1142.4155224458846, - 1150.9710678450133, - 1158.7368791969636, - 1154.5647731030456, - 1157.9392717851672, - 1146.7414139214002, - 1156.6514936328838, - 1147.1218073271177, - 1150.1735341620586, - 1148.650664854858, - 1155.883638934799, - 1157.2534015708136, - 1158.535598431926, - 1144.3352516329708, - 1153.1927751023836, - 1157.748250327034, - 1152.318038593602, - 1140.038647193571, - 1141.6852314314417, - 1128.3771071399567, - 1161.415552746533, - 1171.8970468240145, - 1151.135593694607, - 1154.942148906969, - 1153.172866271143, - 1150.0456358462031, - 1158.891768423352, - 1151.2946592941141, - 1137.8837193788763, - 1153.8081055086896, - 1151.339033410215, - 1174.6103100463326, - 1140.5590490725908, - 1134.3719976336863, - 1146.219902497755, - 1142.4969080829328, - 1137.6173322912136, - 1147.5350364195203, - 1147.5857171736643, - 1148.241425400464, - 1157.980953145823, - 1160.172647964874, - 1134.1626122514242, - 1157.0699622484465, - 1139.6210819571015, - 1136.1485025672591, - 1163.4261203139613, - 1141.21589490065, - 1149.381856706385, - 1136.506052066434, - 1156.9843323257844, - 1153.5900712096, - 1151.0898190003538, - 1148.3961866140821, - 1156.354385057053, - 1132.6575931169905, - 1125.9439262260853, - 1139.5334116949125, - 1145.111215812314, - 1153.139705678469, - 1144.5335641196489, - 1134.6964799986345, - 1129.323416065194, - 1145.2637324473483, - 1147.676533377212, - 1144.8033700680273, - 1147.9535451991994, - 1142.3818357004918, - 1142.5607952102685, - 1141.2415721856282, - 1126.7878728895096, - 1148.1902250997882, - 1156.6106913392941, - 1145.7480389016075, - 1137.8472295587085, - 1150.760643657235, - 1136.6485042344157, - 1131.7280864326094, - 1146.661999403271, - 1142.3494633804144, - 1143.764328297257, - 1161.7968720208091, - 1151.5152343009001, - 1162.1554372060855, - 1156.7841256911988, - 1138.6645974263547, - 1154.9246644364066, - 1141.5531493095887, - 1163.830773283696, - 1135.5390845891366, - 1133.9687073311632, - 1150.4095786196121, - 1152.999954794014, - 1150.6703821831154, - 1160.6124116706915, - 1139.097495619947, - 1156.7260979355967, - 1165.7670986192024, - 1148.5068728131873, - 1169.6986838251726, - 1164.4959699684132, - 1141.051017277328, - 1145.6376662771797, - 1134.671793313805, - 1148.295233401966, - 1153.8393647253622, - 1154.6752504404355, - 1152.0492796386166, - 1163.1278958708278, - 1151.7225479063527, - 1148.8524159746164, - 1159.1308008101353, - 1147.0491204687287, - 1153.7847913634719, - 1155.6257201218248, - 1146.0778187852593, - 1155.0522948411876, - 1146.1322696469674, - 1142.9484773606146, - 1148.773873129233, - 1132.7210456472892, - 1130.5878452450215, - 1142.3190363966773, - 1159.2602720333193, - 1149.0371290300159, - 1141.7159647554263, - 1149.572267562349, - 1150.4833032049971, - 1148.3034184257106, - 1161.148003872978, - 1155.782553129037, - 1155.5415269315804, - 1145.9965874171116, - 1167.3933801316991, - 1161.5594017387248, - 1159.115781391696, - 1156.828526290919, - 1152.581229128527, - 1159.0055072156108, - 1147.2347952044724, - 1155.0691385039217, - 1160.3541720492456, - 1154.651289841447, - 1134.9986023542874, - 1152.4229310186336, - 1163.8215692915192, - 1146.0562829981668, - 1159.8882765267158, - 1152.8491709014145, - 1151.763793826492, - 1154.7341474378775, - 1148.6580376123004, - 1143.3992182188656, - 1160.9830648928837, - 1147.1881866981641, - 1168.7675673520944, - 1151.2678331704442, - 1160.822360212713, - 1148.8373291460698, - 1152.8128574047294, - 1158.8345000563227, - 1139.1986796740323, - 1173.7982994162003, - 1149.6339607275756, - 1147.3013065573214, - 1155.416682580312, - 1143.9733073236885, - 1143.1315734610523, - 1143.053131604075, - 1145.771558813593, - 1153.682882465133, - 1170.0091972390933, - 1144.5333093330921, - 1145.0129962119804, - 1156.7800091224346, - 1151.9913813714904, - 1152.6974631771955, - 1161.6190500538905, - 1149.7265069363852, - 1153.9402290578846, - 1139.521127345723, - 1159.6641098353991, - 1140.3393865475482, - 1166.8856350968367, - 1140.7018126610005, - 1157.8517098335456, - 1152.0918125237908, - 1149.5002969166492, - 1149.5048951568806, - 1153.6740329398801, - 1126.0641367795383, - 1143.127210441913, - 1165.2261104332697, - 1160.0488178653388, - 1160.472082981728, - 1123.8703263281761, - 1166.7066208520705, - 1159.6902527797934, - 1144.6269681256647, - 1161.4221514338653, - 1147.2091859392506, - 1159.4959590733663, - 1176.91100523367, - 1133.7124656495548, - 1153.101276740234, - 1139.002968175218, - 1152.519020950516, - 1133.4537817326393, - 1159.0544443855206, - 1147.8427711781258, - 1156.67727203763, - 1147.0879889471444, - 1145.5277268525206, - 1135.6393852485196, - 1144.2390360503682, - 1139.6792350902413, - 1124.427473593651, - 1133.4174999256763, - 1140.6817025110622, - 1134.6613233384808, - 1145.1621775828423, - 1135.034367880214, - 1145.5099339413564, - 1144.028787760971, - 1134.7013061085142, - 1161.6336199640639, - 1158.888447044353, - 1159.9688406004523, - 1176.5725865330994, - 1152.8888622850386, - 1148.5867681037162, - 1147.0037304927218, - 1145.7768600411123, - 1148.2109845854739, - 1134.973511278632, - 1165.5506292519026, - 1167.0716993350197, - 1152.9510166498394, - 1141.7024449846958, - 1140.192000028921, - 1147.978616875939, - 1139.3771682851605, - 1145.8305784367944, - 1149.4179707632013, - 1154.675499550457, - 1138.405612718692, - 1146.1941677912278, - 1154.47008196338, - 1138.943489084108, - 1159.090183584091, - 1148.8090733009287, - 1134.893077879048, - 1154.6704946998225, - 1152.7180980874903, - 1144.2362459480287, - 1153.4428487712148, - 1128.3101644094606, - 1160.0765218408897, - 1166.1429127581061, - 1152.055704661932, - 1149.5885823483695, - 1156.2647440974797, - 1147.339074371917, - 1144.4950577395196, - 1155.473674846143, - 1145.8873046048568, - 1155.558940586656, - 1154.813499383544, - 1159.9485606498552, - 1147.8069276013691, - 1155.6643140648482, - 1161.5280290699684, - 1165.255549409819, - 1155.3298228392996, - 1161.3437231434666, - 1146.7936548211412, - 1151.5685176384172, - 1169.2830386686803, - 1128.0488289072844, - 1157.5163298205543, - 1155.1257685795965, - 1151.79152290626, - 1141.2867747910414, - 1149.10711653677, - 1131.6064755901048, - 1141.8351224226192, - 1140.6319894992316, - 1149.3695275488467, - 1147.9799571901954, - 1146.5938437628693, - 1149.0107224432363, - 1166.724082202521, - 1143.378116011206, - 1147.941189642851, - 1156.3885970133854, - 1158.3009222107587, - 1159.4696770902924, - 1152.5340014516285, - 1151.0469508452, - 1169.4484958067906, - 1147.257814861169, - 1150.823858736883, - 1146.3782464129447, - 1155.1505766078265, - 1138.4877965168168, - 1149.8228013925186, - 1151.8849736171965, - 1151.1183611731137, - 1145.7769432126008, - 1153.128534206787, - 1156.8967682613734, - 1146.2163201741266, - 1142.4984697479633, - 1152.5402375097738, - 1154.6288258375525, - 1152.788913379317, - 1153.8356440710763, - 1173.4094571499368, - 1164.3312988073067, - 1141.7682277905249, - 1141.0977023425012, - 1139.0279759903258, - 1158.0350152699139, - 1146.5983138764543, - 1137.8894234917473, - 1152.7436208004292, - 1145.61013701898, - 1151.7808627539926, - 1138.5683650041476, - 1148.0565217336111, - 1159.3752393515492, - 1144.5539223721357, - 1142.6418418979804, - 1168.744585255312, - 1145.5738605093711, - 1150.9019478428538, - 1138.5059750346827, - 1149.7964391041935, - 1152.774114066529, - 1140.5225490494583, - 1138.5715455308793, - 1149.4921480546693, - 1154.2593054912084, - 1160.3052061165283, - 1162.9655923784123, - 1162.1488851421216, - 1157.2525327021926, - 1152.9318613592977, - 1165.024607873685, - 1145.8571785804434, - 1141.2055163988477, - 1155.206074985351, - 1141.0856108115668, - 1148.5723564193117, - 1137.6148595196996, - 1164.7720219235064, - 1140.9579333236868, - 1155.5580607048278, - 1149.123802716543, - 1149.6840101396758, - 1149.09163071982, - 1160.6093677841961, - 1169.6218918352936, - 1152.578637014413, - 1150.4155625649219, - 1148.1870297303135, - 1144.6469868491206, - 1143.2542667380715, - 1163.5102505907416, - 1131.5825326892746, - 1146.0887907666004, - 1168.8832585299924, - 1143.1953442574097, - 1142.4654796649465, - 1142.6000227840182, - 1153.7967158452109, - 1156.779564770501, - 1147.5988583058179, - 1147.7248548171615, - 1147.5593023796143, - 1134.8856805313665, - 1159.6466947077604, - 1150.9632636070041, - 1147.6286806149192, - 1140.1149076145464, - 1160.3425153988505, - 1148.8120529519842, - 1147.6803703179382, - 1128.4126248242276, - 1154.159681980869, - 1155.8889078252416, - 1150.0030697412685, - 1157.5098883133583, - 1153.219205246911, - 1141.5396018815231, - 1151.8610173486345, - 1146.4682592401182, - 1148.1147114184341, - 1161.7465085165004, - 1130.4617130292077, - 1136.163297701146, - 1155.1162657236475, - 1145.9577241452168, - 1152.6995248534306, - 1147.5415513701557, - 1145.7820358137349, - 1160.6569441551771, - 1156.8832519629982, - 1147.615287562807, - 1144.2036338164564, - 1130.3833541396968, - 1140.3443688617926, - 1148.0306588967744, - 1139.0671892011676, - 1147.3573634341785, - 1150.1481761128823, - 1155.6017834102743, - 1159.9197091053443, - 1150.9373033338916, - 1146.1696521289273, - 1150.5184873750231, - 1149.5328137594347, - 1158.6562519088577, - 1158.0984993098725, - 1150.5333571232375, - 1154.847462540751, - 1156.137347081578, - 1154.022569178059, - 1141.9381541026335, - 1166.3267218619856, - 1136.0251845714288, - 1161.2739368074422, - 1154.7192334626295, - 1165.6047607840162, - 1131.7975459075585, - 1141.441810916669, - 1153.0184044921982, - 1160.5372414442081, - 1134.4049342297455, - 1159.9701858470182, - 1142.560736996514, - 1160.7815480142806, - 1146.33339998127, - 1149.0752118349262, - 1153.3167908858522, - 1136.3088477637846, - 1158.2468437043256, - 1157.681040541027, - 1163.1152895988048, - 1141.1133347745088, - 1158.99894093831, - 1142.4824515265987, - 1150.7573223364288, - 1156.2835240844297, - 1155.8124906041278, - 1152.0030506492046, - 1149.9658303224278, - 1150.9669713098428, - 1147.0294336349464, - 1147.0806375783104, - 1139.790764827335, - 1148.5582963388845, - 1142.3667843445148, - 1152.01165332922, - 1162.0616664611816, - 1149.274826337039, - 1131.9664640520257, - 1124.8637312094106, - 1150.856417700932, - 1157.8674201760095, - 1134.4529343297909, - 1162.4792714866576, - 1158.709012710433, - 1133.9403736902427, - 1163.0137401841953, - 1143.0703597014879, - 1134.5698539581813, - 1138.0558602463823, - 1177.279115611842, - 1142.4218952300625, - 1174.2322948248616, - 1147.5474113369796, - 1140.3100752471992, - 1129.5162034835107, - 1164.2710188524284, - 1141.313957985468, - 1148.9633987855004, - 1133.0780006551738, - 1155.9839005210022, - 1173.7423431367024, - 1135.5903503900633, - 1166.9317860165013, - 1157.244479058756, - 1150.6101882165437, - 1138.7427439906185, - 1156.5868706732188, - 1158.8275366726316, - 1156.020252866844, - 1141.248920343293, - 1150.8463873799426, - 1138.0407903728944, - 1141.9585953982905, - 1162.466600915855, - 1152.1828222810025, - 1160.7385114770652, - 1150.6369879334793, - 1140.9924337833488, - 1158.8970273680081, - 1151.0732205629824, - 1152.8004922561024, - 1148.0079895951178, - 1146.7387819416952, - 1152.5642466027377, - 1168.4661198433712, - 1161.0450710500415, - 1150.2118791707505, - 1153.8477444725077, - 1156.0644543587036, - 1140.8181792490734, - 1152.9711487094683, - 1155.357146932388, - 1148.031942454866, - 1158.7751017872836, - 1145.9342179346766, - 1154.9638417400745, - 1157.3664194173691, - 1159.6640717104465, - 1159.2127290797837, - 1145.6405805292316, - 1142.350721541614, - 1152.4894546409562, - 1147.466205787001, - 1159.569584189366, - 1155.22910392178, - 1138.3972329435567, - 1141.8456844512873, - 1158.8981568305771, - 1143.381706546469, - 1146.6839365532173, - 1154.316880512843, - 1151.933237763175, - 1149.8741066130253, - 1151.0825195775342, - 1151.9548129359084, - 1128.1502246137559, - 1151.279296070134, - 1152.9912389887604, - 1158.8325725925524, - 1150.6772143806786, - 1149.1192720679092, - 1138.577693295987, - 1148.318327936747, - 1157.6121436554517, - 1156.7826501655088, - 1146.5040800710456, - 1160.295349919406, - 1153.066690717448, - 1148.1383622683777, - 1137.2092775600336, - 1164.448081377917, - 1138.8928640614602, - 1151.2516017650773, - 1155.155696648912, - 1136.7641392398434, - 1159.988630419374, - 1155.5622244497217, - 1156.5349721137943, - 1146.9247299398785, - 1160.2722274429068, - 1141.9194484628913, - 1141.6321962312413, - 1155.7457046009886, - 1158.6093979788018, - 1157.0656151133967, - 1138.5553404758705, - 1148.0308780900366, - 1156.5894095336891, - 1132.7306929483354, - 1155.0158707905691, - 1156.514760693708, - 1152.7929920387323, - 1154.7970394739702, - 1155.6147584561472, - 1139.65809418829, - 1145.6694331328345, - 1131.935738473423, - 1136.9646341313235, - 1146.9699415213129, - 1163.8613079428033, - 1149.0734784828253, - 1134.9416575460084, - 1142.3736259790903, - 1143.9147590182902, - 1163.4621574455057, - 1159.9218583238917, - 1152.6568521520019, - 1157.0825039710317, - 1139.5985826880346, - 1156.6224964268076, - 1147.4636731072283, - 1150.573647231551, - 1169.7927193705957, - 1161.1353440876512, - 1144.2041102089506, - 1146.6007763401788, - 1160.0249544754547, - 1148.278904244331, - 1145.2876473482156, - 1139.3602910218904, - 1139.061595407522, - 1167.6279858714163, - 1162.200982300193, - 1155.7430777308743, - 1160.9774319305884, - 1142.634008972015, - 1153.455293338517, - 1151.1728647031628, - 1164.6085340410739, - 1156.628984797176, - 1144.0181193698777, - 1166.0874045424068, - 1141.0675247410147, - 1143.6892026609778, - 1137.3321065626028, - 1147.6167134291156, - 1150.8706437599976, - 1151.5780889781788, - 1146.6477901099431, - 1131.622995152634, - 1150.601647712217, - 1151.0195907532109, - 1161.4782176695269, - 1145.2312834380225, - 1171.6573821169743, - 1153.5026126638018, - 1136.6816553891722, - 1145.6504846186897, - 1136.734924662459, - 1151.933187644456, - 1139.4598838881736, - 1154.5912971976811, - 1159.2721331395044, - 1142.2201264112584, - 1138.3635891158444, - 1151.5434025928987, - 1145.3898371873263, - 1132.3481130823602, - 1151.8344621314739, - 1147.953461070532, - 1174.2523971497412, - 1147.1534620640023, - 1149.4216590110925, - 1157.5568945940684, - 1159.2293531644746, - 1173.5830400010552, - 1156.3776541027783, - 1162.137197962491, - 1159.3368038799038, - 1154.763476252822, - 1154.6217563225996, - 1151.6474087023118, - 1160.879881255124, - 1148.5118023434434, - 1157.2882599277107, - 1157.9047413532094, - 1170.352786353748, - 1147.3136491606006, - 1142.1239740026072, - 1154.6104071660643, - 1143.8191970449643, - 1156.2836825400684, - 1149.8694535366126, - 1153.7548370063512, - 1131.3912517216756, - 1162.251371345287, - 1143.2479336866313, - 1141.398399238009, - 1138.5401031708095, - 1158.3270531215826, - 1156.251043928847, - 1142.9614450430604, - 1144.763404485912, - 1167.6707921803488, - 1147.89985855502, - 1142.6774057064808, - 1150.2774354192388, - 1151.3669046409857, - 1155.6861064216573, - 1153.2733163899068, - 1144.1201124853346, - 1153.1254208999303, - 1139.7474471503272, - 1128.0306142494912, - 1154.3740074515836, - 1138.8599621090725, - 1152.0911535912328, - 1157.3930388895371, - 1161.3085367925362, - 1165.5581416657749, - 1151.2362565908738, - 1159.3339881026316, - 1163.609758289597, - 1143.4438686112107, - 1151.7429723585044, - 1152.5429927413304, - 1148.3736813689711, - 1149.1782397532209, - 1156.21582922753, - 1154.531875037082, - 1162.1240527955142, - 1127.383917600199, - 1153.812132458841, - 1147.4649086089007, - 1156.2010775483661, - 1141.9850646188438, - 1142.1158033784118, - 1141.7605365165098, - 1154.4780804519514, - 1146.929475346445, - 1159.1501517444528, - 1154.6058787209768, - 1158.7967925784508, - 1145.9269196589994, - 1151.3653723124628, - 1155.7924211634254, - 1147.367897665098, - 1155.695488772137, - 1141.1710774873693, - 1159.9709082034906, - 1160.3786824427555, - 1146.7571096399076, - 1149.061330691358, - 1148.339278312757, - 1154.940371673324, - 1144.4596914461797, - 1168.6793628278303, - 1138.6269440874512, - 1158.3374245202363, - 1159.6158786826215, - 1135.8814464766067, - 1138.8158604808168, - 1157.0764199318232, - 1131.5738357044108, - 1152.0584991985413, - 1129.3545673565602, - 1161.36185023072, - 1137.3698458395625, - 1143.5076836692674, - 1144.0030457576113, - 1141.97325890515, - 1156.1207965508097, - 1132.781544818212, - 1152.6434639743327, - 1154.3130425591878, - 1153.4778429748255, - 1152.8602808084927, - 1152.734448517386, - 1147.1883075165683, - 1147.0708448295327, - 1157.6811401078855, - 1164.8873050670568, - 1159.1763409629125, - 1163.0101078506207, - 1148.4548426744775, - 1151.825131144739, - 1142.0859959134257, - 1162.1691914656155, - 1140.1765585305407, - 1150.831051185469, - 1148.8935134749597, - 1141.9991255252799, - 1165.349173273574, - 1147.1067012408562, - 1151.35604656437, - 1145.9978283266482, - 1168.0882842717012, - 1141.9815394721552, - 1167.543502439634, - 1174.8709737083727, - 1144.493924661573, - 1149.3654396218276, - 1143.641112567098, - 1162.8120938564086, - 1145.0015687969037, - 1146.1363856162473, - 1153.583828042614, - 1154.7388328784439, - 1138.7659506224873, - 1152.2637282211087, - 1136.2752873258553, - 1157.5166763902764, - 1162.743553394749, - 1156.0889174865447, - 1154.8434717905634, - 1165.951091181991, - 1152.3133735803108, - 1152.6217639608378, - 1148.0636826853613, - 1149.5005263507169, - 1153.528993368995, - 1147.0594988404425, - 1164.7986816249017, - 1154.8333479086025, - 1126.5441196570625, - 1160.6066835232787, - 1155.2840327127747, - 1148.553981257673, - 1150.4611999932963, - 1144.9054861310185, - 1142.698259755089, - 1144.1149964126976, - 1144.7865830900512, - 1154.261956634817, - 1142.7093964303842, - 1128.8183785573144, - 1145.0832699906346, - 1154.2886664562343, - 1155.523828193477, - 1155.905080758875, - 1143.912499454526, - 1137.8135925413244, - 1142.0452054922105, - 1145.4668207731904, - 1148.3880519637646, - 1151.8454512084152, - 1150.5831663322608, - 1171.4622056578946, - 1152.84054006415, - 1156.617024816327, - 1138.9261516210368, - 1158.3404996613187, - 1151.0804851547077, - 1135.177959187662, - 1160.5971456933123, - 1154.3127437430273, - 1148.9225687764074, - 1141.2439769390119, - 1137.6804195610496, - 1158.6753330349086, - 1161.4693655572787, - 1164.376713920722, - 1148.015807348029, - 1162.6220916642371, - 1161.758879808732, - 1160.606335907076, - 1152.2445319797396, - 1145.7154758359898, - 1150.5206900015744, - 1169.4157212854982, - 1150.09328637023, - 1151.689155129026, - 1144.876172006709, - 1169.4561679985516, - 1138.1710388839156, - 1151.447313778343, - 1145.5370994951813, - 1145.829733716673, - 1147.420426043274, - 1149.3424449379168, - 1154.7781729695478, - 1159.1997656740173, - 1172.7562716006323, - 1154.5194401301312, - 1156.74489979095, - 1138.4728046466653, - 1160.2586775359505, - 1151.2511286292518, - 1149.8745115096337, - 1159.1150690160919, - 1169.2239502412951, - 1143.0966317599605, - 1158.3363484087383, - 1163.0490837427078, - 1147.6540735521007, - 1175.7442102255607, - 1144.485884123146, - 1129.7215036497362, - 1137.3890059023436, - 1142.413425343475, - 1123.743057355583, - 1159.051945380694, - 1142.6023668760195, - 1149.7325866993137, - 1149.3341964130748, - 1158.3093291258542, - 1148.589582988382, - 1158.1780429446296, - 1150.2198550636554, - 1141.2660862162425, - 1162.418474759192, - 1132.7941316278416, - 1157.374243512006, - 1147.5382498806619, - 1156.5788510384382, - 1157.184667335804, - 1150.5190843032901, - 1154.744808031719, - 1145.1113279171593, - 1145.2759681242483, - 1153.5236129743944, - 1129.4192432980474, - 1146.9368916375902, - 1160.120149098676, - 1161.9881976705615, - 1153.812430572495, - 1139.4826584393786, - 1140.5764735270222, - 1157.2038073516023, - 1151.951942196433, - 1142.7166002027059, - 1140.5670517345325, - 1156.6796656848796, - 1137.8276410434664, - 1152.9733233287368, - 1151.6997077919605, - 1156.4592764088352, - 1136.3121171784474, - 1144.2444928337468, - 1158.1955841533409, - 1149.5482435779347, - 1155.1152365611138, - 1170.029068306345, - 1139.6417966841614, - 1151.085426066648, - 1146.4719381303285, - 1144.0279202194272, - 1159.8545057092347, - 1136.562866006618, - 1159.4339862393822, - 1153.1639094021486, - 1145.0446101071404, - 1134.4186681318397, - 1142.8425997330949, - 1155.1302176999297, - 1145.2640737767347, - 1144.991177386038, - 1164.0925936476438, - 1160.4945113674032, - 1148.7705253108802, - 1151.3525835353435, - 1149.4751023072176, - 1155.6324905095632, - 1136.5316481198727, - 1157.9109946334731, - 1134.0269261850044, - 1152.593831926559, - 1146.5945176220355, - 1165.974441639286, - 1156.586630337946, - 1149.4941377931164, - 1164.7538743830196, - 1146.321385757738, - 1156.3303650413022, - 1162.4569207891304, - 1154.2934383688557, - 1145.1102937668581, - 1141.4738488523537, - 1142.4655184555547, - 1143.9306587248984, - 1157.3697160013023, - 1145.3614104471815, - 1150.7289174785315, - 1148.0237266183779, - 1153.080151816187, - 1156.7485188858313, - 1149.3483107288928, - 1152.028958589308, - 1152.1935270029653, - 1128.7320724127787, - 1164.4742768198028, - 1155.2596888896767, - 1139.4311442484952, - 1146.3135368492515, - 1166.363384977505, - 1148.4473303127252, - 1154.523550082654, - 1152.081265467362, - 1132.4374084282151, - 1148.4558995568334, - 1136.6940002999238, - 1160.6378982533038, - 1142.8911708351393, - 1152.187061303377, - 1136.1118000085125, - 1146.433968585743, - 1148.1267572782067, - 1152.808267563165, - 1161.484648548875, - 1153.2163552705472, - 1157.472114213817, - 1154.225813097447, - 1152.2480084466729, - 1147.449332273938, - 1141.0915051486581, - 1149.7783040358736, - 1140.3874285489003, - 1139.2826698218369, - 1150.025904501132, - 1148.8484900106218, - 1159.5751555264656, - 1160.4706359021934, - 1153.1920898252115, - 1164.9173455487655, - 1158.4524332432616, - 1141.1335673097467, - 1147.3960551460655, - 1150.4101650456566, - 1167.691454753384, - 1144.9253779347853, - 1155.1692497527224, - 1155.492241544089, - 1148.2666344819315, - 1140.208604116765, - 1118.1102473313902, - 1152.4952318614617, - 1164.3196048272366, - 1154.4931337160979, - 1148.2466878917126, - 1146.2237014131383, - 1164.9434478996636, - 1137.985149086401, - 1157.5648541496275, - 1146.3602304901895, - 1154.7457703796858, - 1151.327358273629, - 1152.9944742555867, - 1151.5297549649515, - 1155.1322654292119, - 1157.1809278219512, - 1163.7789202222436, - 1154.3098002155082, - 1140.1199471718353, - 1144.5316754989353, - 1126.0095923529784, - 1143.5147225361625, - 1136.7272893227248, - 1139.2705871900587, - 1148.7018554132103, - 1145.7249897273668, - 1145.7802386414892, - 1137.9880907812667, - 1160.2093175809364, - 1164.2621744136138, - 1143.8523438804827, - 1150.5417478885538, - 1162.8875553277903, - 1167.1385526780962, - 1165.8868351845283, - 1151.5692756400965, - 1142.3518095462632, - 1154.6772164575168, - 1140.0543496636046, - 1153.7037981579103, - 1148.3684224187434, - 1161.9665733378872, - 1156.8564050309674, - 1155.1368754080363, - 1153.8459944948377, - 1150.4529007872509, - 1167.123464193391, - 1153.269822411985, - 1165.4442900895615, - 1161.3961919363082, - 1156.7168295490183, - 1154.5860066008495, - 1151.0377194293692, - 1155.528583960322, - 1160.8234915607077, - 1148.6985820275074, - 1162.5345412476725, - 1164.4926208226225, - 1155.9401156663043, - 1154.396309991001, - 1159.1292479013384, - 1138.8574091402675, - 1136.5160675093462, - 1124.315996617926, - 1155.1256944903073, - 1163.6807824160373, - 1153.7367035099826, - 1153.492668906299, - 1151.037211106586, - 1145.2745602620737, - 1157.7671187532387, - 1145.4167402050457, - 1161.3129438692192, - 1159.9637240973166, - 1153.8728216406191, - 1155.6792665755333, - 1135.7849561959322, - 1152.2956986525426, - 1157.2204674731588, - 1146.0884468350096, - 1136.317300276649, - 1159.5607042922945, - 1141.0696607015743, - 1139.245535287107, - 1134.2681040140453, - 1153.8246535723379, - 1147.8852144588882, - 1164.1682990241063, - 1138.287043676745, - 1135.7314353457484, - 1160.5786793427048, - 1164.2792750112105, - 1163.8426451205296, - 1155.379942317531, - 1167.7498107035, - 1148.23711787207, - 1146.1184883695973, - 1145.7732101044903, - 1156.4529119268097, - 1162.5050798987454, - 1168.7559438259461, - 1158.739748488724, - 1159.120494546205, - 1134.309704973635, - 1161.1555503376446, - 1129.8710474251557, - 1151.836671929941, - 1155.3277244724195, - 1138.443160175539, - 1162.0140666679683, - 1147.5831066948108, - 1154.2043027141578, - 1152.2552480502195, - 1154.878801162212, - 1156.7143350183878, - 1165.0857880265553, - 1156.8506450648206, - 1143.9097750633453, - 1151.4086761781489, - 1152.0415660922226, - 1154.672040635609, - 1150.508418010486, - 1154.6602866490282, - 1158.2825951405725, - 1149.6118062268747, - 1161.8669013107005, - 1138.8229475778123, - 1153.2176646042906, - 1141.8248474187642, - 1149.0138798232863, - 1158.8530357513873, - 1155.1211016946195, - 1163.4837680407165, - 1173.8834955327436, - 1146.2543332266675, - 1156.0391456727086, - 1149.6424892540574, - 1155.9460150408722, - 1142.7066417996116, - 1150.499106903309, - 1149.7760540771721, - 1137.417721012079, - 1143.9886348821626, - 1161.3207142822237, - 1147.1450597740056, - 1141.575730591118, - 1155.135146903765, - 1144.3847673952127, - 1147.5739998323554, - 1155.7354297780498, - 1138.1370930946991, - 1146.2735273989501, - 1167.0170938413082, - 1159.1252275482577, - 1136.4237217426619, - 1151.7107473726885, - 1152.639268666191, - 1140.2694990738994, - 1160.2804539970161, - 1147.6161940582128, - 1145.1724707463875, - 1135.942914403176, - 1142.8602208626776, - 1158.1931649923015, - 1150.3341068116797, - 1129.1775994627126, - 1140.6577193328158, - 1155.1938439267308, - 1151.9441589671399, - 1126.9884773097117, - 1144.7226680999381, - 1138.396071577308, - 1136.3070701340068, - 1165.598283362772, - 1152.9284884422277, - 1144.5731381539006, - 1131.7413778828054, - 1151.5250077767266, - 1156.6596535639467, - 1142.9399998153708, - 1147.2196204675647, - 1140.276179839858, - 1148.4045791532085, - 1164.8008242279143, - 1151.9978265809902, - 1142.8891684795778, - 1143.7415486427856, - 1147.184583975602, - 1175.8846246852358, - 1160.9636459167875, - 1164.6560267546154, - 1154.5385581004568, - 1153.4562963298697, - 1135.0840336749118, - 1167.9645197335146, - 1126.8595799663806, - 1128.7659287533563, - 1160.5523632925244, - 1170.0715204793785, - 1158.1373728260253, - 1150.6167688519083, - 1152.8670054042561, - 1144.6740878982023, - 1143.3951291116553, - 1151.2844590548586, - 1139.1366314583743, - 1144.2381738370264, - 1147.0267062601956, - 1159.0232657155434, - 1151.2408338435002, - 1146.275538262597, - 1158.1255833357638, - 1153.8550954805346, - 1146.8203893892112, - 1140.5402720053737, - 1154.4593048660442, - 1149.7442517258896, - 1144.1177028347586, - 1142.8092301594932, - 1155.6083112335957, - 1144.9865359330136, - 1153.3693782256998, - 1144.3932297895833, - 1147.1494833730721, - 1141.9940212765803, - 1164.3813873861072, - 1144.077090464023, - 1135.1939940414495, - 1153.450002421423, - 1151.1056887675313, - 1152.9476103547017, - 1146.2535314669753, - 1143.7673789026492, - 1149.34401924704, - 1147.8316747519054, - 1148.245067801824, - 1149.7320980378265, - 1145.5245414010367, - 1168.1868768473869, - 1159.1393906238552, - 1159.745053609969, - 1147.274418686528, - 1154.097207487535, - 1145.3911596420426, - 1171.2383390064456, - 1150.4192345931367, - 1136.2142240083535, - 1140.452147002381, - 1156.1978556285856, - 1143.9862505126787, - 1138.4225926754696, - 1149.551728811234, - 1146.4918101918693, - 1158.4466968376996, - 1145.8661391789713, - 1138.2902840704035, - 1138.3719347948347, - 1154.4488630075962, - 1144.6670373583863, - 1155.5912990188754, - 1147.0994745759126, - 1150.174613739101, - 1145.7235465791423, - 1141.0986112891023, - 1145.6800288574136, - 1137.6610795513132, - 1140.5530120038322, - 1150.8956486330626, - 1143.6813261625493, - 1149.7361466097134, - 1149.4888917536641, - 1137.9223100510078, - 1148.4015772300093, - 1158.2116153489656, - 1158.497399660681, - 1153.0931811910611, - 1151.4049220001893, - 1155.9419133845406, - 1145.3544688268269, - 1141.1255550995902, - 1146.9358113845783, - 1162.3540944445344, - 1156.3610314266305, - 1149.2889450934638, - 1164.9793220422487, - 1163.6632616260622, - 1163.8632071794102, - 1149.8088034298705, - 1136.7898351371562, - 1158.6641054969707, - 1162.1827851325227, - 1155.900371730333, - 1157.4785908136735, - 1144.8605085763543, - 1158.9861223825758, - 1161.3407937658012, - 1154.5527557766832, - 1124.8176022622804, - 1147.4726852576277, - 1142.0237874109791, - 1157.6537214533048, - 1149.6075227630765, - 1147.709415603198, - 1162.1488811575152, - 1165.6552248315704, - 1155.931734654713, - 1144.6309990681862, - 1155.6090887213334, - 1161.701062607134, - 1155.779175618098, - 1146.5929778911716, - 1148.7223045491899, - 1159.1079595085596, - 1165.7018196603055, - 1159.455907156763, - 1150.2149493897907, - 1145.1044993306366, - 1154.8909394999844, - 1152.8315606140386, - 1154.3170804304623, - 1149.0905026395696, - 1146.0346613646273, - 1140.6931493701438, - 1149.0913510945663, - 1154.1036980742504, - 1121.3404434564386, - 1134.539679897211, - 1168.1057837350263, - 1155.0061880000926, - 1141.8433169751574, - 1144.1611811217745, - 1151.3785705967753, - 1142.5290834010318, - 1168.1389598713388, - 1154.3408622249895, - 1144.048080730528, - 1131.3740464595446, - 1153.3944870738976, - 1151.2903744755165, - 1163.9937203006803, - 1171.7090317820227, - 1162.3612279271567, - 1148.0824818903568, - 1166.911083071812, - 1149.6677415765887, - 1158.2640529671633, - 1157.5490570415072, - 1155.9737959133552, - 1161.1480555407957, - 1150.1431730057498, - 1153.3033250494386, - 1151.8026939421532, - 1143.5890346371732, - 1173.1769903865033, - 1160.0634587620361, - 1152.851188674096, - 1147.8858554643657, - 1144.8960364153857, - 1132.6487857770712, - 1148.0238210862099, - 1140.9730693063862, - 1135.9276529679787, - 1151.0499210213848, - 1141.8416123569953, - 1142.350914653649, - 1153.5093582594136, - 1149.7103319985274, - 1136.3606677217476, - 1145.5168157834025, - 1154.7795416610463, - 1152.777589253334, - 1136.9621469232632, - 1129.3029339375782, - 1157.172485863735, - 1159.6313245646259, - 1144.7867048074845, - 1160.1838082723766, - 1157.6689658407056, - 1146.5554360130716, - 1167.7644437343222, - 1148.2720302324776, - 1159.064684649959, - 1152.08648982265, - 1158.6983817845523, - 1144.8458518545062, - 1146.1777524810332, - 1148.2865190398509, - 1150.5814844020463, - 1153.7793315661984, - 1151.5047126530617, - 1144.3823451118276, - 1162.2192050741826, - 1180.3721957336588, - 1161.669452243318, - 1161.9430767583447, - 1155.8822960047933, - 1162.0711007999296, - 1142.5420930728724, - 1157.1602849119352, - 1161.530653673001, - 1154.0293828910144, - 1160.6057472270327, - 1122.3378892211294, - 1152.3493710667003, - 1137.2859304551434, - 1153.934589101718, - 1154.1399705481242, - 1152.79020551407, - 1146.4868108429753, - 1169.345472692454, - 1136.5676429801226, - 1154.6411880186733, - 1128.2809210949254, - 1145.4814462951936, - 1137.6629609993506, - 1139.6574550983753, - 1160.1561572482187, - 1145.1740404982736, - 1133.569873442279, - 1169.912480542254, - 1159.9493468357714, - 1143.3384650958164, - 1162.499101889883, - 1152.5254536856405, - 1161.4640827062788, - 1156.0494355595313, - 1154.7242562291744, - 1151.0920938642341, - 1143.0942054203524, - 1149.9181038260524, - 1165.5715170894175, - 1170.866359305803, - 1153.466536235315, - 1148.2503776175895, - 1170.9852912933572, - 1151.5600548949185, - 1157.5993922512948, - 1135.3712028858372, - 1153.3986631672938, - 1155.79805300718, - 1161.4272706133554, - 1162.6803682117886, - 1154.347774731906, - 1150.28606342906, - 1152.8010150951998, - 1148.0796821253978, - 1158.950350925224, - 1145.6382328388106, - 1149.8380025563563, - 1155.711585926051, - 1153.0278764168052, - 1139.0895878789315, - 1137.3165626029995, - 1150.7835138861308, - 1132.594497515806, - 1149.5109929526843, - 1147.4305921976922, - 1154.2002155658506, - 1140.200602735305, - 1164.5205405378676, - 1142.5871418044073, - 1140.6884254436031, - 1125.625811097891, - 1154.907712981263, - 1156.1558230380717, - 1156.0987994478648, - 1150.940543468977, - 1161.6135987068571, - 1144.348042536454, - 1144.0654090542578, - 1158.9324306812039, - 1170.7266314138556, - 1147.142187884184, - 1156.2003533648829, - 1149.4010246735447, - 1163.2427519636976, - 1160.7041014490612, - 1141.7056510119253, - 1162.2235826117953, - 1147.3642152259542, - 1144.486359510954, - 1151.9421477723458, - 1155.6727718300835, - 1153.291629191525, - 1168.0544435571903, - 1167.136294266144, - 1144.6283114518396, - 1162.6695378875088, - 1150.766743230749, - 1169.1422764364247, - 1136.6353290556885, - 1159.4336211709572, - 1160.2829539913034, - 1149.8089809683472, - 1161.0031257913333, - 1155.8173775375271, - 1143.353798081242, - 1140.8449955263045, - 1136.0207209962346, - 1158.872261042767, - 1146.6124744848007, - 1146.5196804177936, - 1143.1086302007539, - 1147.4420412657457, - 1140.743565124579, - 1141.8943305885177, - 1151.7213596693114, - 1154.596219374358, - 1147.1218851001315, - 1163.6534933934743, - 1136.5262830188346, - 1141.815756945808, - 1144.3830375279647, - 1165.1204886474866, - 1160.0365834570048, - 1154.0800077333977, - 1145.4529162512674, - 1136.0388627918703, - 1155.989184687495, - 1146.2832036503212, - 1143.469218693908, - 1157.3718354289128, - 1162.0548572339455, - 1136.7533668090205, - 1142.5202782881208, - 1155.6080308637497, - 1147.9932772917161, - 1159.1963648617866, - 1161.6906326536407, - 1156.47952332333, - 1145.1141737747203, - 1159.5526958591404, - 1154.7958860171834, - 1163.1405063218028, - 1133.7128976038512, - 1162.7552795061774, - 1147.2443394786417, - 1157.806782774295, - 1138.9453226051041, - 1142.719019109704, - 1164.2003804147726, - 1155.0275658846672, - 1148.6903355127122, - 1165.2757453809957, - 1151.4030289094874, - 1144.866234565118, - 1158.7537978887342, - 1165.074727168612, - 1153.2251123360636, - 1142.3274319159618, - 1146.7527651777048, - 1163.7330007829203, - 1140.6740467454542, - 1142.9261610298427, - 1157.0901939262894, - 1126.113314596915, - 1143.4468655889398, - 1165.8450999948257, - 1148.3058931356618, - 1147.6237302747763, - 1161.4583676979548, - 1164.3627029149754, - 1144.9745905095708, - 1151.5706921803696, - 1152.7597421770317, - 1152.9708596622977, - 1121.617193565622, - 1144.2416057333335, - 1157.8667603555075, - 1159.8761793249228, - 1150.930461724648, - 1146.5300645867173, - 1147.5218159525411, - 1143.9792406048402, - 1130.2398106502294, - 1155.9501108527636, - 1138.4288608871402, - 1158.6922421361558, - 1143.3347560903635, - 1136.7619296080002, - 1147.7738075805344, - 1152.2881329022416, - 1161.1984242892045, - 1138.7140373155041, - 1147.8678230616933, - 1155.9779184891713, - 1151.2884466847497, - 1155.820071327556, - 1154.6920494928156, - 1147.0545973909511, - 1157.266823830137, - 1146.202892938911, - 1159.9232845430533, - 1146.5043026025746, - 1170.737944386362, - 1158.3418049468783, - 1163.4334708839563, - 1160.615987127566, - 1157.5571632640238, - 1155.575254661198, - 1145.859997625214, - 1153.7877444576911, - 1152.3683480700224, - 1155.2682991198067, - 1155.3780718548633, - 1149.30257158231, - 1141.0369530398555, - 1156.409439880838, - 1146.312542937937, - 1155.4231404887246, - 1154.7204644512922, - 1148.3978408362098, - 1176.9713922418534, - 1158.0478489460982, - 1156.9238565460766, - 1159.061081294634, - 1149.3300664977637, - 1154.77167713862, - 1164.1183057186618, - 1158.3438398914961, - 1157.7034563694042, - 1160.616687317448, - 1169.2099678780355, - 1158.0713441012388, - 1161.1319735182974, - 1159.248292946026, - 1149.7899581012844, - 1153.2972099824644, - 1163.2654766617793, - 1139.4649178948487, - 1145.912084276344, - 1143.2267156023263, - 1136.8633556973687, - 1167.3169874087714, - 1158.3518898226914, - 1173.5258726384702, - 1137.3072563569506, - 1155.9203191514273, - 1168.1811295762298, - 1167.0373663631337, - 1141.9928145604806, - 1151.3887876868785, - 1148.0217388425629, - 1153.094179413408, - 1154.7738314947944, - 1169.4734279764643, - 1152.5830940729388, - 1159.8508083857757, - 1153.13089300533, - 1140.6855184180376, - 1149.5855733633748, - 1152.3061831189752, - 1160.809133285348, - 1153.2537665347384, - 1152.6965015827527, - 1137.2050405782622, - 1124.5655886286886, - 1158.84261111921, - 1141.1371258233673, - 1164.2360837344145, - 1157.6470111228628, - 1140.0014340410564, - 1145.0472132522384, - 1150.2191632046515, - 1152.9870737225992, - 1157.5363018723642, - 1142.4077454025353, - 1128.7075305021622, - 1141.9486302979644, - 1136.7990504437785, - 1137.985372945902, - 1156.325646394527, - 1153.809283846528, - 1164.9752434599473, - 1155.8546885606495, - 1167.7026742883922, - 1159.8365473658002, - 1148.7268514331, - 1160.7388352667563, - 1163.9307596857277, - 1143.6089503107546, - 1147.1752550835727, - 1145.2002414610743, - 1170.206995287996, - 1166.1634613713707, - 1142.997018630879, - 1146.718721930858, - 1165.688392434346, - 1149.739069942922, - 1148.5282874146442, - 1139.7067014684628, - 1150.871347302093, - 1149.588395595241, - 1156.6443705733739, - 1145.270403057537, - 1149.156192413343, - 1144.588053532914, - 1165.484213741074, - 1151.8842101474054, - 1138.0576562950646, - 1140.355401716705, - 1144.356029219033, - 1146.9474584147265, - 1148.5644872740716, - 1142.9827606508147, - 1152.933249313394, - 1162.4462193110817, - 1152.6086275912146, - 1134.9701855396665, - 1156.5337997663837, - 1146.4716400388472, - 1148.2546271361164, - 1167.947060609198, - 1147.436890310413, - 1160.1286326711822, - 1161.9660745086821, - 1151.1679831960007, - 1152.41664744895, - 1157.070643901706, - 1160.129859019652, - 1144.1221475989316, - 1150.6923451785083, - 1139.1766420291535, - 1151.4357823963678, - 1138.4400789659196, - 1155.3593334894638, - 1160.4048885505752, - 1154.408523273472, - 1165.369041046295, - 1162.3283492395524, - 1151.3042778805655, - 1152.2066460896565, - 1140.0608978188848, - 1142.6617679996234, - 1151.013914214401, - 1161.4935839686298, - 1141.2081231622599, - 1136.5189899286488, - 1150.8370652533256, - 1154.7591360972506, - 1146.6993186972966, - 1147.3978835807732, - 1159.4961340264647, - 1155.913096041882, - 1155.9875220865572, - 1143.2203207266368, - 1147.4073608958356, - 1159.9205552709943, - 1153.9839658066342, - 1161.7308329672217, - 1155.826255098201, - 1150.2983598256046, - 1153.8890327741894, - 1149.3854829172903, - 1143.0543132512942, - 1150.9663354252973, - 1155.4625265425404, - 1134.1849965783692, - 1139.1421563221659, - 1144.3839790849058, - 1142.8518379917227, - 1151.180342429113, - 1148.828442672533, - 1150.931893544973, - 1145.3575739558642, - 1147.4542135384395, - 1158.9731756876756, - 1168.3849313979576, - 1152.3786482144712, - 1147.7213350288287, - 1139.6060133961125, - 1154.5778379321373, - 1156.4702639154868, - 1146.7031395540885, - 1130.5430218850488, - 1130.8640495733027, - 1162.69241105478, - 1148.844418200458, - 1150.46396925323, - 1148.6551369936162, - 1149.203907974406, - 1132.9310847039537, - 1154.8501542171498, - 1133.2286729196378, - 1169.8803613427026, - 1176.1798465387678, - 1143.4925647858443, - 1135.0538870117555, - 1152.8413390210208, - 1151.197198032099, - 1146.9390159256297, - 1148.3589545856557, - 1150.0658725179424, - 1146.7676300144767, - 1163.5964048020955, - 1159.181296235734, - 1141.6768316423897, - 1159.8488202320086, - 1160.2461939849013, - 1144.3356279114312, - 1145.3813291554102, - 1143.379140470433, - 1150.42949327241, - 1161.2455779316015, - 1156.309481223974, - 1147.180244845323, - 1157.8002100044073, - 1134.6337802197568, - 1144.3199675113278, - 1138.9165757960552, - 1129.9874240342713, - 1133.9844066534292, - 1152.7526053668325, - 1145.0073137382567, - 1132.6329079504294, - 1155.7539067263322, - 1125.01257047766, - 1154.3179277472002, - 1146.6957060929822, - 1149.1102774174974, - 1133.7930095990307, - 1144.9046269714067, - 1129.6011777222543, - 1149.2941363365696, - 1152.9930263468555, - 1157.7038418038182, - 1151.4248467897628, - 1143.4060865802292, - 1156.7564515700951, - 1146.2348987325452, - 1153.347313152294, - 1144.7743838883446, - 1141.5863677735288, - 1154.1594462112967, - 1155.3307637194755, - 1156.141330086618, - 1162.4169314228182, - 1155.8089156702777, - 1138.770220078021, - 1143.5378242134773, - 1153.9416939893626, - 1145.6130224061899, - 1163.445413511443, - 1140.4532001818218, - 1165.6490168032215, - 1160.9508245805775, - 1161.9321831921743, - 1147.782465751538, - 1169.670853193252, - 1155.8655158186946, - 1142.7429952702971, - 1158.7630172683541, - 1144.5005450121382, - 1155.6688933762644, - 1167.7640948018186, - 1140.1233229669854, - 1131.4130323631284, - 1154.1952961187321, - 1156.8329489980997, - 1153.892198226472, - 1150.3737031757796, - 1138.343080760937, - 1140.0923361421123, - 1137.80228329063, - 1162.9913350750671, - 1138.7352818144238, - 1146.845966444391, - 1154.0146919232131, - 1151.7122506323474, - 1162.6789079725322, - 1142.9412228201004, - 1157.2054455909717, - 1133.0494743789125, - 1149.128641614225, - 1147.6277312956454, - 1144.226849000624, - 1157.8174910376558, - 1149.5566071977578, - 1146.5976779368946, - 1139.8339113072284, - 1151.3093633552508, - 1151.8636508141751, - 1164.7299474247773, - 1155.7524344925878, - 1145.8977849375042, - 1163.7953867530298, - 1143.788405632243, - 1156.367605226515, - 1144.805735497438, - 1155.5657339762192, - 1147.7867521898536, - 1157.8668148514, - 1160.8706860983384, - 1155.7316659201956, - 1154.9011310410692, - 1160.773365098744, - 1154.009302489434, - 1142.89760460303, - 1147.233015293729, - 1151.148199341332, - 1156.663466144589, - 1133.1463691899269, - 1141.925210908851, - 1150.1906161283232, - 1168.0458923857225, - 1161.6225455140045, - 1146.458506457085, - 1148.7862755247752, - 1160.0717853720896, - 1155.3877476607431, - 1164.3847326678615, - 1146.1694502654213, - 1159.2664872892806, - 1163.2913421051828, - 1149.3728383230673, - 1145.3847110159616, - 1153.736443442715, - 1152.4748975505681, - 1165.281161408417, - 1154.5871122600124, - 1164.3983866623535, - 1150.205410326507, - 1147.1733499285187, - 1146.0820826055203, - 1161.9021847516478, - 1145.478040331541, - 1148.805828708835, - 1148.2193803578332, - 1130.6715796831302, - 1159.7050484425858, - 1154.3077682794922, - 1151.4425732374493, - 1156.2763840602042, - 1171.2257996408216, - 1154.689222989695, - 1155.4058819742477, - 1155.7681039498398, - 1152.9275080427112, - 1143.8657488866857, - 1138.8018679509476, - 1142.2073115789672, - 1168.196337496383, - 1155.940248091884, - 1155.8236554873388, - 1142.3169142096258, - 1158.1567062361153, - 1148.8434445449548, - 1160.7657531982827, - 1130.2101916766494, - 1150.3461227544296, - 1157.1462078314246, - 1146.0992592664031, - 1148.4472593227417, - 1142.4936160752698, - 1146.8318250790057, - 1160.542205667781, - 1157.259911503959, - 1161.646058103562, - 1144.5738645280796, - 1142.520710670233, - 1141.68028036262, - 1161.2617268243819, - 1144.9121175716336, - 1160.700967395207, - 1136.4244751957817, - 1146.0084577559646, - 1155.2980949127743, - 1161.189512179718, - 1150.9296555924332, - 1152.9204171343538, - 1139.40007935059, - 1150.1231282483657, - 1152.12884121379, - 1151.0694694979404, - 1143.6404284996402, - 1148.7205124997088, - 1160.0944191709875, - 1149.613727357216, - 1150.360969761676, - 1144.2281787850668, - 1148.5924214160736, - 1156.7129633964983, - 1145.5449125640564, - 1155.3968488815735, - 1156.8242675581414, - 1157.1126290558673, - 1152.3485949419726, - 1147.4206644220515, - 1159.5135561331304, - 1166.5212495698754, - 1159.3034300634172, - 1161.9300450503445, - 1154.4691464308985, - 1165.6428140580078, - 1157.3775850688712, - 1159.938359139141, - 1153.8981634396764, - 1163.7457377469052, - 1156.8852898819018, - 1147.4190785414833, - 1150.6038279315976, - 1166.1095001529031, - 1148.1551298384084, - 1173.2320227774014, - 1162.824916987777, - 1138.2988214299055, - 1162.0575950660836, - 1160.8120048170042, - 1159.595510454872, - 1145.084038666972, - 1155.2335936245543, - 1137.0617129885304, - 1166.4208718923248, - 1157.3629850081288, - 1156.3118809489044, - 1153.9365205115523, - 1149.4778678730086, - 1164.3745033384814, - 1159.407048937311, - 1160.225087503131, - 1159.9799171329712, - 1144.003813895955, - 1163.7506798509723, - 1143.6259941552314, - 1147.8967660886162, - 1137.8479616068844, - 1155.0818623548153, - 1158.5788015166695, - 1158.7584070843702, - 1164.4376241092416, - 1155.56343691062, - 1155.6721796049624, - 1147.88588858027, - 1143.5927134425287, - 1150.8124697592905, - 1125.3636966820607, - 1150.8489474282455, - 1145.685943331262, - 1158.0628628818476, - 1158.9611135636535, - 1154.5728060190845, - 1152.435306282604, - 1139.7408695466368, - 1149.9386271762353, - 1157.2941026889084, - 1152.2025292899655, - 1151.0267141886718, - 1158.5888685781133, - 1155.5542448821182, - 1136.9300641400669, - 1168.1804622628213, - 1162.4729052470584, - 1149.8276763663764, - 1167.491130825539, - 1142.494359750143, - 1159.8812221739743 - ] - }, - { - "legendgroup": "Log Posterior", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Log Posterior", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 1159.8812221739743, - 1144.1016242065668, - 1140.709462633825, - 1139.6502353635174, - 1144.5014884392638, - 1156.642703103214, - 1162.294792258023, - 1152.6746665165315, - 1154.4790018976178, - 1153.7226141709948, - 1162.375195099732, - 1153.5633307383273, - 1139.519778845545, - 1143.785981490218, - 1130.5842108731765, - 1154.3762187250363, - 1167.6545496161555, - 1162.6089413765644, - 1167.5999041759162, - 1156.4303670216811, - 1133.3504662307973, - 1153.074342807342, - 1156.5015770672592, - 1148.6467942531447, - 1152.9040666523708, - 1153.758421583615, - 1165.3483803710217, - 1159.4800516145128, - 1159.3091905698388, - 1148.1306394851713, - 1161.337295528154, - 1159.9730297574727, - 1144.5957123850176, - 1152.959312724916, - 1150.4129746163524, - 1163.1211776505083, - 1151.6044552343003, - 1167.1836519875546, - 1132.8891618194803, - 1141.0315915023268, - 1151.1366890506467, - 1158.6281258363017, - 1154.3330970264913, - 1131.6410829122817, - 1139.2870307760886, - 1150.270049957825, - 1145.381111082111, - 1154.9372349377998, - 1149.7748997646268, - 1152.9290406060752, - 1146.8216890099648, - 1150.9272465909496, - 1150.9323667956703, - 1158.810057536662, - 1152.512896123692, - 1148.7023601698008, - 1153.5523433624942, - 1162.7912211058979, - 1129.8381820508675, - 1158.368256852362, - 1148.2259743073462, - 1154.963100500506, - 1153.6204848186362, - 1157.5965075026065, - 1136.0314025526093, - 1159.5163581468673, - 1152.9757060567624, - 1159.7470264013368, - 1149.120812310631, - 1156.5448024013886, - 1145.7002149624675, - 1117.978092247119, - 1167.3421348913018, - 1156.4741836184023, - 1162.15973459756, - 1159.4563344412657, - 1167.6853061938448, - 1141.6916776374312, - 1164.1420736505906, - 1147.7432699884246, - 1129.9684166894938, - 1155.5227904633668, - 1156.4255521236853, - 1153.5957931088706, - 1142.912060031708, - 1145.1439774674334, - 1140.3140490339645, - 1165.6835744696918, - 1154.804060063677, - 1141.0683707796259, - 1150.3365960426786, - 1131.222657962636, - 1145.9414363778765, - 1164.3000267084872, - 1158.2494233327382, - 1166.3337061334626, - 1146.173990882558, - 1154.0806299764022, - 1152.1426484945378, - 1150.6011361559092, - 1152.9962601229004, - 1144.880999902019, - 1155.6330952276246, - 1132.684306552859, - 1174.9331358686845, - 1152.3827464347846, - 1140.849381370505, - 1146.1491985500395, - 1144.2606055811216, - 1165.9731052795757, - 1154.751650851612, - 1136.3995794865943, - 1135.3256555254022, - 1128.5059579813899, - 1149.7374957204386, - 1142.5996522255243, - 1157.9319350306994, - 1145.0694204151282, - 1155.2765487026807, - 1157.7411159055034, - 1160.4539726726775, - 1147.24732612081, - 1139.707895239822, - 1145.6067775266777, - 1147.2737559543955, - 1134.8751236254734, - 1150.041830397234, - 1160.1454725240533, - 1147.0850389746677, - 1152.3038363602473, - 1144.732931782136, - 1154.280497897104, - 1147.4793699524143, - 1133.907825602426, - 1154.5732210626506, - 1154.8270534313192, - 1151.7846030965204, - 1168.16103479896, - 1145.4715269752032, - 1156.0539787010468, - 1164.2309077315506, - 1145.9709265250547, - 1156.687409115711, - 1138.317008999573, - 1137.7335099721738, - 1151.305184196046, - 1165.595323318498, - 1162.9074760211545, - 1126.3014205341544, - 1157.3972404389117, - 1165.3547376293018, - 1161.1509167714976, - 1153.54782586053, - 1145.2123284817776, - 1143.4324451672935, - 1155.3525023210427, - 1155.700403827741, - 1160.4719824865708, - 1161.971977437904, - 1154.0168939917548, - 1144.6870875867992, - 1146.5309528415553, - 1150.5465305813211, - 1153.9104413043085, - 1154.147405515035, - 1146.669602828167, - 1144.3878652936687, - 1157.5720662891401, - 1147.8459848293028, - 1143.7664368087942, - 1151.475215005268, - 1155.7276494045752, - 1158.4356619551413, - 1148.6008138761406, - 1161.7701047551254, - 1146.9876634764473, - 1154.2508703792723, - 1146.4250115297825, - 1156.6090407052159, - 1157.6560017461575, - 1156.2367621343942, - 1167.0814581371708, - 1159.393869418862, - 1155.3849477188583, - 1165.93445108206, - 1146.4604859489184, - 1154.2838037718384, - 1144.0253556937791, - 1162.0146703331857, - 1152.5254684784036, - 1148.2082830056713, - 1146.121848068763, - 1161.0909616860922, - 1140.1962843054582, - 1143.2877677833758, - 1171.898521078501, - 1152.9806984594904, - 1155.8881766222294, - 1131.8147911542737, - 1147.2271266696876, - 1152.2504994121948, - 1147.2503102407718, - 1141.4789654519566, - 1149.2822984852196, - 1152.981771563709, - 1134.7270778399377, - 1144.1311690805735, - 1147.7648599270942, - 1157.6112677419671, - 1152.6720940051334, - 1142.8591845700878, - 1147.2703171138994, - 1148.3952859823914, - 1161.1468206910934, - 1158.651092753619, - 1154.1990731356425, - 1164.0871395937395, - 1149.0899301345921, - 1155.4750617351972, - 1160.3014200763419, - 1152.9829782836166, - 1129.9130835344247, - 1140.409946284302, - 1158.5211533830677, - 1146.6278333256366, - 1154.7583747218848, - 1146.6198648399454, - 1158.5265185678645, - 1162.4216894879253, - 1164.1246866970462, - 1149.817698626375, - 1158.0449028818414, - 1143.5598143667805, - 1155.7956184325294, - 1144.0104373552056, - 1143.6005638465763, - 1158.5356907280416, - 1149.7334839254215, - 1146.7549271480727, - 1137.5484588943325, - 1152.001138266736, - 1153.4296916633075, - 1129.2023881414493, - 1146.1408853205057, - 1150.9645681540148, - 1129.863896514632, - 1143.5329885396795, - 1140.3413293384633, - 1156.0840331091783, - 1132.776184747954, - 1117.191138529862, - 1158.6910833465383, - 1158.1666325735548, - 1152.4796991919527, - 1160.5629285333102, - 1152.8171318804557, - 1127.0951603006945, - 1141.0932690602892, - 1145.6708149065198, - 1150.9082358579465, - 1159.3075530024714, - 1160.2293687907138, - 1139.9558488484106, - 1138.0502623722996, - 1156.274314051672, - 1167.6157496492176, - 1146.1780091450673, - 1153.9760788097133, - 1145.944777694536, - 1145.5084510036172, - 1163.5563899901374, - 1159.2264740331489, - 1142.7213124787097, - 1146.129047873358, - 1150.7617859787974, - 1156.0141480107698, - 1147.9848335569645, - 1150.2859838217423, - 1152.1795959600206, - 1145.4674852755493, - 1155.911511274735, - 1141.5316073902416, - 1139.443252820079, - 1134.3047135324136, - 1163.74000991056, - 1133.7395102854466, - 1161.7312807993624, - 1157.2423420667249, - 1155.304772512204, - 1143.6976357355945, - 1134.9337538623904, - 1150.5243037452544, - 1145.5986659604453, - 1149.9917722370635, - 1153.5377950678878, - 1171.539202576615, - 1167.8061220102936, - 1157.4160743413245, - 1155.95524553434, - 1156.1910980903156, - 1138.1185187997305, - 1139.8446977692904, - 1148.7744278535424, - 1149.4225251683886, - 1164.6404519821733, - 1142.9909365303845, - 1147.951609718544, - 1144.2253848046166, - 1144.8493096321001, - 1146.3167916781808, - 1149.1946702956525, - 1141.608285233448, - 1149.1228653185447, - 1154.9328658657635, - 1160.0884692697937, - 1157.0533399974718, - 1162.9907842928694, - 1147.2672120423906, - 1148.0522796557102, - 1150.8739467249457, - 1164.1552549165835, - 1140.294701589159, - 1165.647179955923, - 1145.4267305570447, - 1153.4039231766096, - 1137.8331001576066, - 1140.425573664439, - 1149.9937098473981, - 1146.2229596992474, - 1146.0497514934245, - 1159.469224106408, - 1153.6874585439912, - 1141.3868357806807, - 1141.0410579579855, - 1144.647153615161, - 1164.2233390762408, - 1154.8756112519563, - 1158.0888714751657, - 1163.7074699663544, - 1144.4224059647165, - 1148.4102517121225, - 1159.4202909087705, - 1156.7835531668231, - 1153.1346511721772, - 1155.132806129987, - 1151.123100008386, - 1159.031254607296, - 1162.2943070370277, - 1131.763884796543, - 1165.5444980304974, - 1154.6371528696502, - 1154.6289575635192, - 1155.6134030018623, - 1150.3995026861317, - 1148.2507445232227, - 1145.4769497340847, - 1133.6259273786359, - 1151.7066729478902, - 1163.0779445118783, - 1159.6888025575063, - 1139.5807292960963, - 1156.1268169842779, - 1137.8841153337291, - 1144.709085447384, - 1161.548399047388, - 1140.9002979134693, - 1156.9120299470508, - 1155.8891377977723, - 1149.3748241528865, - 1149.3661476418113, - 1156.9930232864426, - 1145.6136546110602, - 1161.9819322621524, - 1146.2130182219714, - 1136.649435147818, - 1165.158163024463, - 1150.4166242201027, - 1164.9342407369693, - 1143.0942593499628, - 1167.1593564194288, - 1152.6733766365778, - 1140.2204775527598, - 1155.5792338553201, - 1152.9597723093818, - 1143.1773494562142, - 1158.5367595789153, - 1154.5613527916933, - 1149.5200122406152, - 1154.4582236773483, - 1152.631052352462, - 1159.7794093906627, - 1163.2652715580668, - 1138.63394547696, - 1145.001243016581, - 1162.2263946567564, - 1130.7820199495163, - 1160.6762183150227, - 1138.391410872006, - 1157.0408952968487, - 1156.0407734192595, - 1155.279617011711, - 1159.735173206114, - 1150.428336580529, - 1137.5516210945698, - 1158.5869528337555, - 1157.2308008685925, - 1149.7490508197343, - 1143.295512980866, - 1145.1323311083486, - 1152.7114409494175, - 1153.3952872424193, - 1133.1815439445636, - 1155.6092413949834, - 1153.1527218641493, - 1167.4793778198402, - 1164.8284140455903, - 1131.0106847221311, - 1126.6672855021898, - 1148.7436994609925, - 1158.4139987087162, - 1171.3219759147883, - 1166.9748882529027, - 1140.5338442364475, - 1146.2519020780678, - 1165.3679375836948, - 1136.3317511002, - 1139.9993263104773, - 1157.8764920970912, - 1151.5137450593195, - 1127.2127974959, - 1141.522824689831, - 1151.6224321788488, - 1156.563155170064, - 1148.9280564236537, - 1157.7100122048107, - 1139.087687919318, - 1155.0762879062297, - 1159.1308398307572, - 1168.2771595796037, - 1165.754210348071, - 1157.7389496221297, - 1165.2396937076956, - 1161.483318012432, - 1140.0016787355282, - 1139.6171118293203, - 1154.091521662015, - 1147.205952044821, - 1148.3937457053567, - 1127.1691274478976, - 1151.8595693722875, - 1135.7476635329488, - 1154.877475639645, - 1160.5849538518523, - 1151.8139883222893, - 1166.7365725126044, - 1150.1511538021323, - 1143.6375045700022, - 1154.9454998298404, - 1156.1435064551963, - 1162.493262128971, - 1159.6636425481677, - 1155.2532240403605, - 1164.9230497630745, - 1154.4773958158544, - 1149.3054903813204, - 1161.3720774958101, - 1147.8446787319986, - 1144.6524644123078, - 1147.511332478238, - 1164.0709765617069, - 1166.0667364256922, - 1145.4442451873954, - 1148.6531693837862, - 1147.8711841121435, - 1170.0718101379737, - 1152.7000960107764, - 1140.8731850122472, - 1149.0446919396775, - 1150.0781578004182, - 1154.5866014515202, - 1155.4878685469387, - 1137.553390903609, - 1172.0060198158956, - 1140.796063037049, - 1150.5169660499118, - 1136.2833724189575, - 1144.9929810201118, - 1158.6891054919909, - 1159.2989900890116, - 1137.5195816001872, - 1151.0497055606638, - 1150.812865704471, - 1170.5917322750627, - 1165.0001277590982, - 1156.8552702023817, - 1155.2180550897701, - 1145.1648435307889, - 1147.004700553329, - 1140.807962712034, - 1160.0527095162697, - 1160.1350282593412, - 1160.8375552519112, - 1152.9702659084107, - 1136.7852624469874, - 1142.2764832442185, - 1144.1558415935083, - 1156.722940464206, - 1161.7425059851198, - 1166.331521125256, - 1135.8998996771293, - 1134.6372376035183, - 1169.5470352845168, - 1160.7589776204468, - 1158.782168559666, - 1151.213748311961, - 1137.8956730878613, - 1152.9508040940716, - 1149.847321294615, - 1169.4330722703955, - 1164.297948381841, - 1138.497887780837, - 1163.4088886481045, - 1160.856454281481, - 1146.405585158014, - 1154.6261060336549, - 1153.5295079133975, - 1154.960828733097, - 1159.0084294731034, - 1158.276356044846, - 1152.0830714115373, - 1132.8310197881249, - 1143.2652332046785, - 1142.85087466583, - 1148.2390278762111, - 1155.053297374903, - 1160.0119821097758, - 1150.354046359674, - 1163.6686000444365, - 1158.9455682143118, - 1169.3545519264983, - 1147.8969781563312, - 1149.8062717197208, - 1138.2164856429897, - 1158.679161595537, - 1152.2246230746625, - 1162.5218147239373, - 1142.4867069038012, - 1147.409582879499, - 1158.9115817622474, - 1156.3736680850525, - 1151.3706477326723, - 1141.8204083998112, - 1157.7387324223573, - 1159.3940455222294, - 1145.2355318450702, - 1140.256503485679, - 1144.6960593806186, - 1147.5954633942367, - 1140.4013259379265, - 1154.4215174606434, - 1163.698845182595, - 1162.9764298210068, - 1147.8362249793652, - 1144.3348198331096, - 1143.7779442748588, - 1148.9904182368996, - 1164.2063033947902, - 1166.5606955202547, - 1160.9971446775464, - 1144.148129615748, - 1146.340214080131, - 1160.8168352524415, - 1158.9912503939715, - 1149.796649682542, - 1146.7665402188861, - 1164.2719973691574, - 1156.3083038739044, - 1148.4125165606695, - 1159.6576519516484, - 1156.1618305085628, - 1154.4792309918146, - 1173.1369607802637, - 1157.9503990850296, - 1165.9473469173506, - 1142.825556180931, - 1149.4518227466947, - 1164.707796682882, - 1143.054689537542, - 1159.5286928449757, - 1149.9178807753121, - 1153.3066107029922, - 1158.1926104250313, - 1159.2025257037503, - 1153.2812328915518, - 1157.1621116363265, - 1147.1788687821763, - 1159.246295237071, - 1159.7268310019363, - 1145.0624167834312, - 1148.9876115629684, - 1167.3761849507182, - 1142.4094957526145, - 1155.9473764080021, - 1150.1048630665935, - 1165.3835102648027, - 1126.6977944882922, - 1140.626187879668, - 1151.983047740812, - 1145.2960618801262, - 1152.425456924319, - 1159.6921928944157, - 1152.4262274397533, - 1157.2417527016385, - 1146.5048283762064, - 1149.6904267180569, - 1139.0004694753095, - 1122.95695182171, - 1143.27001000095, - 1135.509632155115, - 1150.831575966486, - 1149.3727634549787, - 1143.4235994140356, - 1151.3994429240531, - 1157.1095749292513, - 1157.104501836815, - 1155.8027768989155, - 1155.378433204461, - 1137.2661375441974, - 1138.0363624486858, - 1130.5616753090626, - 1144.2303198116194, - 1152.2112481485551, - 1144.8902866388105, - 1139.8286088569992, - 1158.5299770337792, - 1149.7235427780638, - 1169.580015969545, - 1159.5939209475694, - 1158.6772018166423, - 1147.281574691693, - 1145.1962947201341, - 1135.463856579887, - 1156.223778812525, - 1171.0398036281708, - 1146.4840449896458, - 1159.635151092125, - 1156.8685057937716, - 1132.3242603425597, - 1149.1431147228498, - 1144.4818813673405, - 1144.2501681555673, - 1147.3433342532742, - 1124.342089513983, - 1161.3447361985666, - 1142.3598388669805, - 1145.9411946023145, - 1126.8601576998894, - 1168.3202543247287, - 1138.2270627428513, - 1139.4509535048967, - 1136.8931511375029, - 1154.4127355492726, - 1147.8556683983395, - 1149.6485164937883, - 1153.9209062345055, - 1156.0308704078227, - 1161.1721014288285, - 1147.4951627956468, - 1161.3006624009392, - 1127.9105971753065, - 1141.4793819421184, - 1143.0975861618042, - 1140.147175116443, - 1154.9243164231482, - 1166.1976448983557, - 1134.2350930703585, - 1144.9569016297523, - 1143.0437291104583, - 1160.1698036316382, - 1134.0708282384137, - 1157.8073011403337, - 1165.6679451980692, - 1134.5740755420827, - 1139.2802501666256, - 1140.1040671312662, - 1152.336459907058, - 1156.7789308227798, - 1143.449030672042, - 1148.762828737167, - 1139.5971303529716, - 1158.1785065184074, - 1152.234473238663, - 1153.7289063343953, - 1143.971011250082, - 1159.448166301821, - 1151.6188409531428, - 1146.291893212012, - 1159.7449020520376, - 1144.5445615924205, - 1158.9330512821443, - 1152.4419177704779, - 1153.0375033794005, - 1136.4850590203848, - 1137.7912845861028, - 1125.260667112063, - 1165.4851084334225, - 1160.3079343081279, - 1162.790438358681, - 1150.4514438264337, - 1158.4930353763052, - 1158.716665046738, - 1141.6223747546737, - 1151.7788621587777, - 1154.5053994074426, - 1141.3530257365978, - 1147.109718113499, - 1148.4866358184872, - 1150.5854905632355, - 1145.6669675768135, - 1154.5902970514824, - 1158.16199438344, - 1159.2783354558528, - 1145.6698338791612, - 1143.7876858135223, - 1157.9433950815217, - 1148.9404806551472, - 1162.8505215976122, - 1159.8811777130848, - 1148.6700497120917, - 1151.5654525796488, - 1159.9990862272286, - 1150.0767150769673, - 1144.2452031053385, - 1149.7657373011737, - 1156.7343063257276, - 1157.0118176594929, - 1146.9481147322272, - 1155.3480093815137, - 1168.7792295131583, - 1149.23450942639, - 1145.3450230239157, - 1156.9643231460975, - 1149.9113215189498, - 1136.0124235210374, - 1129.875758455184, - 1139.1233623453256, - 1143.9266806240191, - 1159.7165588912817, - 1141.7857153221305, - 1161.776608854945, - 1155.2490280952852, - 1136.062445754403, - 1140.1546762571056, - 1140.533030137014, - 1134.2457059695798, - 1145.603444580874, - 1149.1477126070859, - 1149.2483747014226, - 1143.0933119199549, - 1146.2306090152192, - 1164.8641122754102, - 1146.3644331725009, - 1141.3019661369788, - 1133.3572183414149, - 1159.189029128789, - 1149.1887654733703, - 1154.908359976441, - 1158.1401498247485, - 1154.1623779936617, - 1170.6524279710527, - 1160.4838004660082, - 1148.0648535444059, - 1138.0388986060534, - 1152.4507947311677, - 1150.540800969268, - 1154.1432316252324, - 1166.839819183871, - 1146.1544643796612, - 1125.6377837145142, - 1160.8681318706756, - 1163.6445950105867, - 1150.091154695554, - 1142.1841731104794, - 1164.1893537637025, - 1142.1411881847516, - 1165.8547042523157, - 1150.630748546213, - 1139.0030361028078, - 1142.745410441239, - 1158.7921402087668, - 1156.9276396278722, - 1149.3184741095029, - 1162.656396983291, - 1142.9972067583947, - 1164.1961764286536, - 1140.3707808275497, - 1155.0725656083791, - 1140.1940750397137, - 1146.9613470732247, - 1146.2938718445166, - 1149.4595323597312, - 1157.770207877358, - 1141.0196869484837, - 1136.7522055865536, - 1163.7794167200075, - 1133.330895551683, - 1134.731135224522, - 1145.1541846548332, - 1151.983085822677, - 1141.6518944254562, - 1154.4053422710958, - 1149.5746933293892, - 1163.4926960317468, - 1130.264344841163, - 1151.9080134689727, - 1154.4704447458976, - 1154.2621814294816, - 1140.6542394504118, - 1141.4891583484025, - 1157.004800595801, - 1155.20463519007, - 1147.2973853797048, - 1163.6383580493666, - 1159.108438491276, - 1162.5369239540612, - 1155.3774172537574, - 1151.5480392722955, - 1156.2174842988231, - 1158.4548954601828, - 1146.6083956266573, - 1159.5668142064612, - 1150.9081875382055, - 1132.7462883082462, - 1148.845289948952, - 1144.674277200399, - 1136.6255362691707, - 1155.7669202420532, - 1161.9167302727733, - 1162.9073719086475, - 1158.821063980338, - 1154.1378225702172, - 1143.447729494818, - 1138.565421428154, - 1158.8318676760293, - 1142.5566994143526, - 1136.1744463768316, - 1153.5552391546248, - 1131.956780856413, - 1148.7575283846686, - 1154.4455244203348, - 1150.754431076875, - 1151.186819292963, - 1163.8136408009013, - 1151.2560312902324, - 1163.8304015127967, - 1165.368909255392, - 1139.9854050135082, - 1151.0360080351484, - 1158.340686289729, - 1142.685657032334, - 1153.9923959004818, - 1157.74382871421, - 1170.3363329043277, - 1143.9799106657917, - 1147.6273167468892, - 1147.4309581856103, - 1159.7110926323573, - 1142.2793959974285, - 1144.6179073935411, - 1141.513075074124, - 1147.761979519914, - 1137.8266287303065, - 1145.414469684301, - 1148.8211315199553, - 1152.129498404719, - 1150.0408678271397, - 1162.145776355094, - 1155.7151372347132, - 1151.3340743266722, - 1152.9233948070612, - 1149.6014109896948, - 1176.030003108103, - 1164.2036390059263, - 1139.5775688448487, - 1155.555423717816, - 1142.8140887677116, - 1143.9138460450815, - 1134.132256285864, - 1142.6707114741744, - 1143.2412461524352, - 1154.1333445748025, - 1142.1156759448031, - 1165.423343610612, - 1156.1814307702218, - 1155.195449608646, - 1159.3395354566726, - 1161.8250686866622, - 1141.3013732492932, - 1126.4663547440955, - 1163.935087393157, - 1167.028562240768, - 1159.5371878972858, - 1133.609538353634, - 1156.2927862167305, - 1142.672460427386, - 1141.1868559866207, - 1152.2948698195921, - 1150.3380009308983, - 1159.8734644997203, - 1148.4829352233305, - 1160.8973068741363, - 1154.1082246979904, - 1148.8849516492473, - 1141.5320154840508, - 1149.452144499494, - 1145.177546009737, - 1127.6401237132397, - 1157.2117873024847, - 1125.6627981477875, - 1168.8414904658061, - 1165.4791736469824, - 1153.2865085213193, - 1155.3963819592902, - 1142.064950417399, - 1155.440196306906, - 1149.1989035706968, - 1139.200711301798, - 1152.4834732270917, - 1135.3032027013135, - 1159.0727062669337, - 1150.1925712246787, - 1167.8004375840333, - 1160.2272630606003, - 1137.3702966519002, - 1160.807084340219, - 1145.5212794798986, - 1143.5988684055328, - 1133.8643243179354, - 1158.941093480302, - 1149.9673278994012, - 1161.8951010331398, - 1149.9480403563355, - 1133.9192498862437, - 1148.1840109897971, - 1149.1646108137008, - 1158.5789124356063, - 1151.4824006015347, - 1151.7829986015706, - 1154.1640881377825, - 1151.4266823666956, - 1151.7106985026855, - 1145.23209867472, - 1159.8067968032763, - 1133.4060400821027, - 1143.0470974999932, - 1145.4223704364938, - 1158.8659805476764, - 1137.7935258894631, - 1144.384017092496, - 1151.5368479879035, - 1151.0254507231195, - 1163.1908706205716, - 1162.308491248641, - 1150.8404943832043, - 1140.9412849578182, - 1147.9329572416145, - 1144.432566644521, - 1142.9233175315571, - 1160.9415346933445, - 1147.969433301013, - 1150.3306800664398, - 1137.8702381587332, - 1154.5184932751588, - 1154.6522850622978, - 1150.3871986918912, - 1141.9038006315693, - 1121.106085634505, - 1150.5573884665162, - 1155.2321040199133, - 1154.7474419534265, - 1156.4295329102085, - 1155.5141869332983, - 1162.1753940745966, - 1162.0338479175196, - 1135.8561573316385, - 1155.8462760595598, - 1159.450025833936, - 1141.0869440182482, - 1164.2294711094762, - 1161.1528808407384, - 1160.7213760525456, - 1155.83980448591, - 1134.5341693344478, - 1157.5853822220452, - 1164.5270382755725, - 1158.6623634597113, - 1144.1374607794146, - 1153.3124336894064, - 1150.7015060645972, - 1148.4823376519266 - ] - } - ], - "layout": { - "annotations": [ - { - "showarrow": false, - "text": "\tBurn in: 4000", - "x": 4000, - "xanchor": "left", - "xref": "x", - "y": 1, - "yanchor": "top", - "yref": "y domain" - } - ], - "autosize": true, - "shapes": [ - { - "line": { - "color": "black", - "dash": "dash", - "width": 3 - }, - "type": "line", - "x0": 4000, - "x1": 4000, - "xref": "x", - "y0": 0, - "y1": 1, - "yref": "y domain" - } - ], - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Log posterior values against MCMC iterations" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0, - 4999 - ], - "title": { - "standoff": 20, - "text": "MCMC Iteration Number" - }, - "type": "linear" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - -7613.465458755922, - 1643.2057564962684 - ], - "title": { - "standoff": 20, - "text": "Log Posterior
Value" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQecHkX9/7+5y6VX0kijBUL9USQUI6FLqCJNEFAEhCBq6B2kKj2UUEVAQBCk92booFJDh9BLgPRyqZdL7v9/D865t3nK7uzzJHnuPsOLV5K7nd2Z98zus/N+Zr7TqqGhocGUREAEREAEREAEREAEREAEREAEREAEREAEchJoJXminiECIiACIiACIiACIiACIiACIiACIiAC+QlInqh3iIAIiIAIiIAIiIAIiIAIiIAIiIAIiEABApIn6h4iIAIiIAIiIAIiIAIiIAIiIAIiIAIiIHmiPiACIiACIiACIiACIiACIiACIiACIiACYQQ08ySMm3KJgAiIgAiIgAiIgAiIgAiIgAiIgAi0EAKSJy2koVVNERABERABERABERABERABERABERCBMAKSJ2HclEsEREAEREAEREAEREAEREAEREAERKCFEJA8aSENrWqKgAiIgAiIgAiIgAiIgAiIgAiIgAiEEZA8CeOmXCIgAiIgAiIgAiIgAiIgAiIgAiIgAi2EgORJC2loVVMEREAEREAEREAEREAEREAEREAERCCMgORJGDflEgEREAEREAEREAEREAEREAEREAERaCEEJE9aSEOrmiIgAiIgAiIgAiIgAiIgAiIgAiIgAmEEJE/CuCmXCIiACIiACIiACIiACIiACIiACIhACyEgedJCGlrVFAEREAEREAEREAEREAEREAEREAERCCMgeRLGTblEQAREQAREQAREQAREQAREQAREQARaCAHJkxbS0KqmCIiACIiACIiACIiACIiACIiACIhAGAHJkzBuyiUCIiACIiACIiACIiACIiACIiACItBCCEietJCGVjVFQAREQAREQAREQAREQAREQAREQATCCEiehHFTLhEQAREQAREQAREQAREQAREQAREQgRZCQPKkhTS0qikCIiACIiACIiACIiACIiACIiACIhBGQPIkjJtyiYAIiIAIiIAIiIAIiIAIiIAIiIAItBACkictpKFVTREQAREQAREQAREQAREQAREQAREQgTACkidh3JRLBERABERABERABERABERABERABESghRCQPGkhDa1qioAIiIAIiIAIiIAIiIAIiIAIiIAIhBGQPAnjplwiIAIiIAIiIAIiIAIiIAIiIAIiIAIthIDkSQtpaFVTBERABERABERABERABERABERABEQgjIDkSRg35RIBERABERABERABERABERABERABEWghBCRPWkhDq5oiIAIiIAIiIAIiIAIiIAIiIAIiIAJhBCRPwrgplwiIgAiIQITAvHnz7Morr7QXX3zRDjvsMNtuu+1aPJ9FixbZRx99ZLfffrvV19fbKaecYu3atWvxXJY0gGnTptl5551nn332mZ166qm27rrrLuki6HrNmMBbb71l55xzjq288sp24oknWvfu3Ztxbb+vmp73zb6JVUEREIE8BCRP1DVEQASCCbz66qt20kknFcy/88472xFHHBF8DWWsDAKffPKJHX/88TZz5kzbeOON7bTTTmvRouDpp5+2W2+91b744gvXgGKy9Ppx9DlVic+j2bNn2z333GMffPCBvfbaa7Zw4UIHc/3117czzjjDOnbsmAru2LFj7eSTT7YFCxY0yXf44YfbbrvtlvNcDQ0N9u2339qYMWPs+eefty+//NKVo7q62vr16+fKgjAdNGiQ/ec//7Ha2lrbYYcdbOLEifbggw/a22+/be+//74hFEnbb7+9HXnkkS5/mvToo4/aqFGjFsty7rnn2pAhQ3KeCnH57rvv2pNPPmn0hSlTprjj4LbiiivaD3/4Q9t6662ta9eu9re//c222WYbW2mllRIX67LLLrOHHnrIHV+oHIlPWAEH6nlfAY2kIoqACJSFgORJWbDqpCLQcgjwUs03unzz9tVXX7mK8+LJN3B8E1dVVdVyYLTgmtbV1dk111xjzzzzjGae/LcfMGi78MIL7amnnpI8WYr3BgN5Zp4wC6iSZ57wrL333nvt6quvdjRramrsT3/6kxMXSRP36QUXXGDPPvusy9K2bVv3rB46dGjeZzWy4c9//rO7t9dcc03bb7/97P/+7/+cHEWGMLMHoXLbbbe5v5PiIoZ74aqrrnIihdSjRw9XjhVWWCFp0W3GjBlu9taHH37YeI7TTz/d1lhjDWvVqtVi54EX0uTyyy93sgdhgxzq37+/tW7d2smj8ePH23333WePPfaYk0FdunRx5UICJU1IrT/84Q8tauaJnvdJe4eOEwERaG4EJE+aW4uqPiKwlAiwZIOXUBIiZZNNNllKJWnZl33hhResffv2tuGGG7ZsEMtI7Zl98te/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m+7KOloEREAEREAEREAEshOQPMnOUGcQARFYBgiwHIddZtiWku2Q47tBsGPJVltttdgOJPmKXijyf64dLpYBBCqCCCzzBBCSH330kT344INupxq/Iwa7PrFTDluBMyMl6Vbiy3yFVUAREAEREAEREIFmQ0DypNk0pSoiAiIgAiIgAiIgAiIgAiIgAiIgAiJQDgKSJ+WgqnOKgAiIgAiIgAiIgAiIgAiIgAiIgAg0GwKSJ82mKVURERABERABERABERABERABERABERCBchCQPCkHVZ1TBERABERABERABERABERABERABESg2RCQPGk2TamKiIAIiIAIiIAIiIAIiIAIiIAIiIAIlIOA5Ek5qOqcIiACIiACIiACIiACIiACIiACIiACzYaA5EmzaUpVRAREQAREQAREQAREQAREQAREQAREoBwEJE/KQVXnFAEREAEREAEREAEREAEREAEREAERaDYEJE+aTVOqIiIgAiIgAiIgAiIgAiIgAiIgAiIgAuUgIHlSDqo6pwiIgAiIgAiIgAiIgAiIgAiIgAiIQLMhIHnSbJpSFREBERABERABERABERABERABERABESgHAcmTclDVOUVABERABERABERABERABERABERABJoNAcmTZtOUqogIiIAIiIAIiIAIiIAIiIAIiIAIiEA5CEielIOqzikCIiACIiACIiACIiACIiACIiACItBsCEieNJumVEVEQAREQAREQAREQAREQAREQAREQATKQUDypBxUdU4REAEREAEREAEREAEREAEREAEREIFmQ0DypNk0pSoiAiIgAiIgAiIgAiIgAiIgAiIgAiJQDgKSJ+WgqnOKgAiIgAiIgAiIgAiIgAiIgAiIgAg0GwKSJ82mKVURERABERABERABERABERABERABERCBchCQPCkHVZ1TBERABERABERABERABERABERABESg2RCQPGk2TamKiIAIiIAIiIAIiIAIiIAIiIAIiIAIlIOA5Ek5qOqcIiACIiACIiACIiACIiACIiACIiACzYaA5EmzaUpVRAREQAREQAREQAREQAREQAREQAREoBwEJE/KQVXnFAEREAEREAEREAEREAEREAEREAERaDYEJE+aTVOqIiIgAiIgAiIgAiIgAiIgAiIgAiIgAuUgIHlSDqo6pwiIgAiIgAiIgAiIgAiIgAiIgAiIQLMhIHnSbJpSFREBERABERABERABERABERABERABESgHAcmTclDVOUVABERABERABERABERABERABERABJoNAcmTZtOUqogIiIAIiIAIiIAIiIAIiIAIiIAIiEA5CEielIOqzikCIiACIiACIiACIiACIiACIiACItBsCEieNJumVEVEQAREQAREQAREQAREQAREQAREQATKQUDypBxUdU4REAEREAEREAEREAEREAEREAEREIFmQ0DypNk0pSoiAiIgAiIgAiIgAiIgAiIgAiIgAiJQDgKSJ+WgqnOKgAiIgAiIgAiIgAiIgAiIgAiIgAg0GwKSJ82mKVURERABERABERABERABERABERABERCBchCQPCkHVZ1TBERABERABERABERABERABERABESg2RCQPGk2TamKiIAIiIAIiIAIiIAIiIAIiIAIiIAIlIOA5Ek5qOqcIiACIiACIiACIiACIiACIiACIiACzYaA5EmzaUpVRAREQAREQAREQAREQAREQAREQAREoBwEJE/KQVXnFAEREAEREAEREAEREAEREAEREAERaDYEJE+aTVOqIiIgAiIgAiIgAiIgAiIgAiIgAiIgAuUgIHlSDqo6pwiIgAiIgAiIgAiIgAiIgAiIgAiIQLMhIHnSbJpSFREBERABERABERABERABERABERABESgHAcmTclDVOUVABERABERABERABERABERABERABJoNAcmTZtOUS6YiP/7xj92FnnzyySVzwWZ2lfnz51t9fb117NixmdWs/NVZsGCBzZs3zzp37lz+izWzKyxatMhqa2uta9euzaxmS6Y606ZNs+7duy+ZizWzq0yfPt31u1atWjWzmpW/OjNnznSfFdXV1eW/WDO7wqxZs6xt27ZWU1PTzGpW/urMmTPH9Tn4KaUjwDtKQ0ODtW/fPl1GHS0CIlAxBCRPKqaplo2CSp5kawfJk3B+kifh7CRPwtmRU/IknJ/kSTg7yZNwdpIn4ewkT8LZSZ6Es1NOEagUApInldJSy0g5JU+yNYTkSTg/yZNwdpIn4ewkT7KxkzwJ5yd5Es5O8iScneRJODvJk3B2yikClUJA8qRSWmoZKafkSbaGkDwJ5yd5Es5O8iScneRJNnaSJ+H8JE/C2UmehLOTPAlnJ3kSzk45RaBSCEieVEpLLSPllDzJ1hCSJ+H8JE/C2UmehLOT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IAABCEAAAhCAAAQgAAEIQAACW4UA8mSrYOeiEIAABCAAAQhAAAIQgAAEIAABCKSFAPIkLT1FOyEAAQhAAAIQgAAEIAABCEAAAhDYKgSQJ1sFOxeFAAQgAAEIQAACEIAABCAAAQhAIC0EkCdp6SnaCQEIQAACEIAABCAAAQhAAAIQgMBWIYA82SrYuSgEIAABCEAAAhCAAAQgAAEIQAACaSGAPElLT9FOCEAAAhCAAAQgAAEIQAACEIAABLYKAeTJVsHORSEAAQhAAAIQgAAEIAABCEAAAhBICwHkSVp6inZCAAIQgAAEIAABCEAAAhCAAAQgsFUIIE+2CnYuCgEIQAACEIAABCAAAQhAAAIQgEBaCCBP0tJTtBMCEIAABCAAAQhAAAIQgAAEIACBrUIAebJVsKfzot98842bM2eOe/zxx913333nTj31VHf22We7Ro0apfOGEmr1Sy+95K6++mr3r3/9q/KMl112mTvxxBMrfy6WXbHlEmp6jZ5GY2blypVu3rx5buDAgW7vvffe4vqbN292y5Ytc1OnTnUfffSRO+igg9yll17qdt1114yySZerURCGixXDTqf99NNP3ZVXXunee++9yqscffTR7oorrnANGjTwv6tL7P75z3+62bNnu0WLFvn3rAMPPNBdfPHFbs8999yiF15//XV35513urVr17q99trLDR482P3whz+s9nKG4VAjVUphp/eta6+91i1fvryybe3bt3fjxo1zLVq0qPxd0oxrBIThIuE1dvvtt7tPPvnEv3/993//tzvkkEPcNttsk3HGf/zjH2769Onuueee86/Rn//85+6nP/2pq1+/frWWM9xWjVQphZ0a9Oijj7o77rijsm3bbbedu+GGG1znzp0rf5c04xoBkcBFvvjiC/950KNHD/+8Fj2KfdZIulwCt1UjpyjETg3gua9GuoGLQKAsCSBPyrJbyq9RmzZtcrfccovTB8rw4cNdw4YN3Y033ugfBC+//HLXpEmT8mt0DbToq6++cr/+9a9ds2bN3LbbbuuvqP/v3bu3/1dHseyKLVcDt5X4Jf7+97+7N954w4u3devWuZtuuimnPFmyZIm755573IgRI/xE97HHHnMPPvigu+6665wmY+FIulziN5zgCYtlp0mHxNSf/vQn17Rp08oW9OzZM4N1XWGnh/7x48e75s2bu0MPPdS9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yJPq5cvZIQABCEAAAhCAAAQgAAEIQAACEEg5AeRJyjuQ5kMAAhCAAAQgAAEIQAACEIAABCBQvQSQJ9XLl7NDAAIQgAAEIAABCEAAAhCAAAQgkHICyJOUdyDNhwAEIAABCEAAAhCAAAQgAAEIQKB6CSBPqpcvZ4cABCAAAQhAAAIQgAAEIAABCEAg5QSQJynvQJoPAQhAAAIQgAAEIAABCEAAAhCAQPUSQJ5UL1/ODgEIQAACEIAABCAAAQhAAAIQgEDKCSBPUt6BNB8CEIAABCAAAQhAAAIQgAAEIACB6iWAPKlevpwdAhCAAAQgAAEIQAACEIAABCAAgZQTQJ6kvANpPgQgAAEIQAACEIAABCAAAQhAAALVSwB5Ur18OTsEIAABCEAAAhCAAAQgAAEIQAACKSeAPEl5B9J8CEAAAhCAAAQgAAEIQAACEIAABKqXAPKkevlydghAAAIQgAAEIAABCEAAAhCAAARSTgB5kvIOpPkQgAAEIAABCEAAAhCAAAQgAAEIVC8B5En18uXsEIAABCAAAQhAAAIQgAAEIAABCKScAPIk5R1I8yEAAQhAAAJpJ/DZZ5+5q6++2t/Gr371K9eqVau039JWbf+nn37qFi5c6FauXOm5tmzZcqu2h4tDAAIQgAAEagMB5Elt6EXuAQIQgECKCPz97393y5cvd4899phbt26db/lll13mTjzxxKLuYu7cuW7GjBmVZbfffnt30003ub333juj/oYNG9xvf/tbt2TJEvenP/3Jffvtt65JkyZuv/32c6eddprr1KmTe/TRR91PfvITt91227kVK1a4J5980v+ro2/fvm7AgAFum222qbJdv//97921117r/v3vf1eWHTdunOvatWtGXf191apVfmK7Zs0a949//MPVq1fPtWvXzv30pz91PXr0cH/84x9dRUWF69KlS97rqt133HHHFn/Px6LKG9jKBcpFnnz++edu2LBhbv369ZVETj31VHfhhRe6+vXrb0FJ43fkyJHuyy+/zPhbrr6vKcR/+MMf3NNPP+3072677eYmTpyIPKkp+FwHAhCAAARqNQHkSa3uXm4OAhCAQPkSiE489913X3f99de75s2bF2ywvlG/8sor3XvvvedFiP5fgiIqODZv3uyWLVvmJk2a5Jo2berOPfdc161bN1/+u+++cx988IH7n//5H/e73/3O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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter = elq_model.plot_log_posterior(burn_in_value=burn_in, plot=plotter)\n", "plotter.figure_dict[\"log_posterior_plot\"].show()" @@ -29287,433462 +548,10 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": null, "id": "291e018b-afae-46d1-affb-71c99d3c3d31", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Total Site Emissions", - "line": { - "color": "rgb(247, 170, 157)", - "width": 3 - }, - "mode": "lines", - "name": "Total Site Emissions", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 16.60483674168337, - 25.887685279216296, - 25.132172231275963, - 24.936483503098906, - 24.89882310814985, - 24.9452671862434, - 24.958257606443233, - 24.980012163992726, - 24.91400499288411, - 24.95546052299867, - 25.057879822064805, - 24.92611166256497, - 24.93465840785297, - 25.022751816121904, - 24.934643286608264, - 24.95055385716841, - 25.059913873164184, - 24.94531195485984, - 24.92047823192346, - 24.96827994328294, - 24.991958502939518, - 24.99891884907654, - 24.962987562815847, - 25.088988319385265, - 24.934393122215184, - 24.999207977533658, - 24.947126875069735, - 24.95300067479169, - 25.06237917762319, - 25.019579881343315, - 24.970846189287016, - 25.286042424728425, - 25.16430025271288, - 25.36413980405573, - 25.222631178950067, - 25.25661043187756, - 25.158256526120116, - 25.28005022088201, - 24.829335176498546, - 24.88161150979513, - 24.969779950074393, - 24.92639991505353, - 24.93963320361672, - 25.006715140488964, - 25.00357792442341, - 25.004093300908544, - 24.99864762579417, - 24.9853169934932, - 24.887481580987057, - 24.920785855553774, - 24.952043218818133, - 25.02859754457125, - 24.884192008121026, - 24.965280472475275, - 24.9076827470087, - 25.001606792859192, - 25.058488932284664, - 24.904822907848494, - 24.89538230823593, - 24.908062884953146, - 24.875939965170026, - 24.84810556734338, - 24.873370865016973, - 24.941270484181945, - 24.87603292163699, - 24.93409477246751, - 24.93349502466267, - 24.90722044851535, - 24.861325321258, - 24.875908555888998, - 24.95990891214292, - 25.003538579854798, - 24.97571028354694, - 24.94938181595829, - 24.993570148799094, - 25.026130898284265, - 24.978665664477262, - 24.943052288974663, - 24.91652898917096, - 24.967525074867595, - 24.92458761031655, - 24.929725279960593, - 24.89099457181845, - 24.940854205578653, - 24.938973837120418, - 24.923180268154063, - 24.93261514438094, - 24.945359772846572, - 24.964697647439436, - 24.934411428571412, - 24.990665922491687, - 24.983125602722318, - 24.92340126418344, - 24.945853660451867, - 25.018251519080867, - 24.98098450750318, - 24.972438649470035, - 24.965484469724693, - 25.011846575618712, - 24.959450619955142, - 25.070356378684515, - 25.016876467671963, - 24.95091058003551, - 24.91833706688449, - 24.88142460146458, - 24.879166675165187, - 24.93900825487141, - 24.977944849558277, - 24.93309564379662, - 24.85723444157241, - 24.92579722508536, - 24.932697631275254, - 24.978158707473764, - 24.95526082144807, - 24.965214366092397, - 24.998346646595984, - 24.909026123633886, - 24.883291928721682, - 24.976737611656986, - 24.92239629521665, - 24.853875203657875, - 24.83172146577322, - 24.77181666410917, - 24.836908128019274, - 24.914587118659995, - 24.90346578595641, - 24.99834109475965, - 24.948877931023453, - 24.87010931657823, - 24.937855584464877, - 24.945108640573814, - 24.86377309899442, - 24.900322939288824, - 24.90895761843658, - 24.956891788501785, - 24.85464469491484, - 24.98057081049697, - 24.951210919363035, - 24.999275105763093, - 25.010296008982213, - 25.02597555146066, - 24.989583794262426, - 24.92257163662675, - 24.954660534644127, - 24.907263875487182, - 24.925398338794892, - 24.867347361095955, - 24.85678724342928, - 24.92117785448672, - 24.90323514202896, - 24.946332471053324, - 25.019409297123463, - 25.013537564395854, - 24.90619139295712, - 24.911420532830107, - 25.008468484158332, - 24.939740371906787, - 24.988525074911873, - 24.95303040553742, - 24.899393556900456, - 25.071383029023437, - 25.010414655863663, - 25.00399382250896, - 24.942532014602506, - 25.022018529443415, - 24.96988549878659, - 24.94939831643284, - 24.917566501269583, - 24.960101862332586, - 24.921081892595424, - 25.017959141919455, - 24.973499892457024, - 24.952389580983912, - 24.901756077998122, - 24.960330651824396, - 24.96242102995806, - 24.947220111532125, - 25.07659110072752, - 25.03464993403596, - 24.993417770840814, - 24.946740798826788, - 24.873335413588514, - 24.936867418678425, - 24.955678036433454, - 25.044148540836293, - 25.004162353027233, - 24.93410458480525, - 24.934890943915143, - 24.927648673184464, - 24.96080342311961, - 24.91853996258712, - 24.891280706784666, - 24.847617783170584, - 24.884258041524586, - 24.984248769003063, - 24.921704403425224, - 24.945091010226985, - 24.912563526664716, - 24.875483986038983, - 24.870874374697422, - 24.936425900936683, - 24.95932595946232, - 24.969480754603126, - 24.979360737090815, - 24.96525821493767, - 24.898985799388164, - 24.83785374682583, - 24.88166105633632, - 24.98234863887413, - 24.941532018747747, - 24.96097646710136, - 24.993599229232373, - 24.988085866214853, - 24.956326505384958, - 24.85696567498536, - 24.966440979983062, - 24.92510892555478, - 24.963973958271808, - 24.858760675285207, - 24.804486793668303, - 24.80907465906015, - 24.889008350973928, - 24.927162876240804, - 24.965331533565983, - 25.019391535984568, - 24.85442150512014, - 24.936511037463504, - 25.027408647860437, - 24.927880580155488, - 24.957117361235248, - 24.949724894331595, - 24.92911092567708, - 24.985945769610712, - 24.968412766527123, - 24.94750781736548, - 24.93778689399189, - 24.992907008906485, - 24.96933079415488, - 24.943495833422695, - 25.029512757548876, - 24.95379672500614, - 24.908855705071964, - 24.863975379519314, - 24.960761576391608, - 24.921295118435395, - 24.95639876690786, - 24.903782923029276, - 24.847625665416565, - 25.016648664736536, - 24.977223578973984, - 24.943407246768338, - 24.90060315056357, - 24.92477097419437, - 25.006319588590152, - 25.047769860943745, - 25.00049003153845, - 24.936734299034555, - 25.003460915554406, - 24.98512774326929, - 24.854238281146294, - 24.893360925041627, - 24.92570468167604, - 24.956393951076453, - 24.915630173167024, - 24.942132344304092, - 24.95527240997407, - 24.97610473017691, - 24.929918740638822, - 24.92354804906767, - 24.91016765611853, - 25.02529719600497, - 24.994722389038056, - 25.034886251224314, - 24.979421082269567, - 25.00021808662383, - 24.914158479547375, - 24.97983580405003, - 24.971593410597684, - 24.85265319027483, - 24.884031618036865, - 24.94314666697985, - 24.914188801201142, - 24.905811751742803, - 24.967004634563544, - 24.92601406872386, - 24.965351328162278, - 24.86338198498758, - 25.00386471914721, - 25.058000273893207, - 24.942657255294613, - 25.048099715032784, - 24.99400902453415, - 24.927564620932685, - 24.934102877739896, - 24.92578159427728, - 24.974648646103542, - 25.0352022703524, - 25.055164129024327, - 24.990125341334007, - 24.991108581032663, - 24.992632288925698, - 24.9849869299901, - 24.988863420725266, - 25.00875841539265, - 24.98635221017274, - 24.989427568205436, - 24.970000529334843, - 24.957238099771345, - 24.94507792158729, - 24.976835400213115, - 24.935029032283566, - 24.949551492080317, - 24.929313530184693, - 25.018737127482922, - 24.89593681717134, - 24.886650552146257, - 24.93778857430602, - 24.942945549575285, - 25.028588576889014, - 25.012913369206267, - 24.991991574581, - 24.967982780115335, - 25.00123324300864, - 24.962577242211292, - 24.965026451334587, - 24.968737465514657, - 24.956646542854024, - 25.046670914009077, - 24.94287904311934, - 24.9197713993776, - 24.963577765056918, - 24.97650658937185, - 25.040897201619444, - 24.99542486240812, - 24.91941650619178, - 24.84463095813573, - 24.90105144204528, - 24.914350709393986, - 24.92927130595799, - 24.9325826575671, - 24.861226052052082, - 24.933437137059194, - 24.985288223667524, - 25.008663683410774, - 24.89263718077744, - 24.953391692460677, - 24.87897602427192, - 24.891196295842157, - 24.961241727941925, - 24.917273829154425, - 24.921947887708264, - 24.863612198747994, - 24.887571017661383, - 24.983785354283334, - 24.841781199945743, - 24.903430172365322, - 25.006795481671723, - 24.941491559032002, - 25.06647812403503, - 25.06025770305375, - 24.973904116407212, - 24.987999809147148, - 24.892390793023818, - 24.950679630451532, - 24.985015342066276, - 25.02375518056441, - 24.983163057405157, - 25.017063605174855, - 25.01709571455557, - 25.06065887541712, - 24.97641986126386, - 24.98380362772372, - 24.9498739902229, - 24.985730535184594, - 24.94445429125569, - 24.905786800717593, - 24.908921211826613, - 24.960825084304332, - 24.871089324226908, - 24.938788670900117, - 24.961050328300345, - 25.003781686402007, - 24.985504554456227, - 24.923909111405212, - 24.960084105856872, - 24.9822229283863, - 24.98387702772792, - 24.937195611434703, - 24.929680526709156, - 24.94686657181501, - 24.98574791115641, - 24.880263554475615, - 24.93388008455245, - 24.938776158972047, - 24.89445506838124, - 24.8922355608019, - 24.996078403289786, - 24.958090222382232, - 25.02054914210648, - 24.93133992310504, - 24.98263308829706, - 24.924522391276003, - 25.031457416227163, - 25.00975392365426, - 25.024553530271902, - 25.02143773770044, - 24.92044751823738, - 24.941555099656476, - 24.981943915497737, - 24.894161066762216, - 24.929299585164358, - 24.876166752779703, - 24.858430352759285, - 24.916752594178384, - 24.961333120836237, - 24.99275862944971, - 24.98616170624716, - 24.968133191605347, - 24.98877677031885, - 24.91386368986405, - 24.979441193886508, - 24.97033132987272, - 25.071170085923356, - 24.945994437788194, - 24.90901548510591, - 24.877770873774587, - 24.955860598808158, - 24.93137711559469, - 25.016048237218087, - 24.965067272088383, - 24.919968034794007, - 24.967496928993945, - 24.921675707355348, - 24.971118850390468, - 24.986024082771706, - 25.03555469498681, - 24.948496702846526, - 24.94183036226583, - 24.99158412015252, - 24.949282116276947, - 24.95781030419794, - 24.94441920512383, - 24.934702494502236, - 24.910470064229315, - 24.990639889011746, - 24.930788993527567, - 24.937907045087808, - 24.972700887339396, - 25.041076975594105, - 25.044971099782316, - 24.98610890582711, - 25.01624718147671, - 24.96746998719897, - 24.943470260743993, - 25.050183116574935, - 24.98748148615831, - 24.91603435642513, - 24.859402179387565, - 24.90611112372119, - 24.989021993802357, - 25.000994382370415, - 24.975400941283567, - 24.917712048365686, - 24.9374256433597, - 24.923092996341396, - 24.868480411136677, - 24.964034732010873, - 24.97352237633247, - 24.967824378872955, - 24.938180410506774, - 25.00481388371053, - 24.951445383416853, - 24.947916020176795, - 24.98686054033002, - 24.912360387742872, - 24.907846687993707, - 24.896557341608364, - 24.90680381661663, - 25.06825459091543, - 25.03521392784998, - 25.04390528889075, - 25.01396458179009, - 25.017935001231695, - 24.91311177987269, - 25.016917653254264, - 25.0273652853157, - 24.968110141102905, - 24.951153573656278, - 24.924013658486913, - 24.895421321036554, - 24.905996689334636, - 24.990813216321364, - 25.054316334847925, - 24.97230863669062, - 25.06575634303694, - 25.179021339278062, - 25.040065356186, - 25.05198521605318, - 24.931901737570488, - 25.01264302065662, - 24.976678925797003, - 24.939130198459594, - 24.918078058032208, - 24.9284337437486, - 24.982823756498995, - 24.907249740793887, - 24.915127337450052, - 25.006179096968964, - 25.03119807155101, - 25.77272318762543, - 25.262561931259757, - 24.98895560723828, - 24.99974243240393, - 25.03152491081019, - 24.98280200188904, - 25.011308994774865, - 24.967468117011183, - 25.000658074120473, - 25.017853478094803, - 25.033796079331402, - 24.900647135767233, - 24.954334779860744, - 24.810529205253072, - 24.911781736945837, - 24.939825692098175, - 24.97115648981908, - 25.0365407114653, - 24.991955404853343, - 25.007298432440194, - 24.922889481171573, - 24.879268028283455, - 24.959425891453424, - 24.91495108327343, - 25.016533793646133, - 24.953868598003602, - 24.959880641511305, - 24.93645030362309, - 24.9529401569703, - 24.926375478366985, - 24.98072448621147, - 24.89683177326413, - 24.916839255446288, - 24.9285794677442, - 24.922710109827236, - 24.956201140342028, - 25.011119969881094, - 24.911912453958823, - 24.927215238213883, - 24.966328437892592, - 24.932340972295798, - 25.007187013477445, - 24.999337638427775, - 24.98236661071124, - 24.961346096814296, - 24.869874660579526, - 24.90103399706034, - 24.91565645848535, - 24.89098587169532, - 24.92730774202211, - 24.991753070444627, - 25.022580839444828, - 24.933756757223662, - 24.980648287629457, - 24.98839508719869, - 24.972364967420425, - 24.964234320401772, - 24.99942471785933, - 24.954693242051697, - 24.893864670943845, - 24.95453542301484, - 24.92032333618046, - 25.02652681778764, - 24.92766980695179, - 24.942406391485328, - 24.95194231668577, - 24.952391070966037, - 24.993579981199016, - 24.995637451389662, - 24.98144159829834, - 24.938892246143617, - 24.953051066727852, - 24.920972061352394, - 24.971878217045386, - 25.00728952845251, - 24.92783729638188, - 24.963939241736178, - 24.99655916679732, - 24.92807598206167, - 24.93124411155089, - 25.040997809773113, - 25.047587162650032, - 25.053578449896108, - 24.939512729104152, - 24.926283927625093, - 24.91538557321701, - 24.944843315031864, - 24.97677160364134, - 24.970667009158536, - 24.919450646198317, - 24.953163191607903, - 24.941775844483054, - 24.9061098735249, - 24.883702957523393, - 24.92334883526221, - 24.886057738371974, - 24.845542868787064, - 24.90049120841374, - 24.853289384625462, - 24.83274630481749, - 24.886303377847405, - 24.928735981836216, - 24.981971057567478, - 25.017157029483542, - 24.983771739900725, - 24.961886657788657, - 24.93824253672063, - 24.987772720399274, - 24.943669289702395, - 24.98617642196686, - 24.925309715180752, - 24.97786970100286, - 25.015795955123014, - 25.00893066249023, - 24.998325705732654, - 24.977922045343753, - 24.99936206429912, - 24.923138905485928, - 25.009844557107932, - 25.037491285790658, - 24.900904243019774, - 25.00675750816727, - 24.883873667449357, - 24.866864815065693, - 24.957435258536226, - 25.008068072755364, - 24.95632496304862, - 24.827821684349573, - 24.902600251430005, - 24.945719454436123, - 24.818202104930734, - 24.808967715138692, - 24.878346084188973, - 24.94397705241593, - 24.986718221929237, - 24.95286882297152, - 24.88371508775747, - 24.884915313146006, - 24.937502717963525, - 24.98534643665733, - 24.903666826379517, - 24.898873097888774, - 24.953316601923294, - 24.985558670905355, - 24.905232022197573, - 24.955263400728732, - 25.00503805912669, - 24.882253016768672, - 24.914262186784253, - 24.99139771605038, - 24.948401438290553, - 24.94866222579123, - 24.874431946236786, - 24.80190870181973, - 24.87251693203556, - 24.925807096010466, - 24.953870705883965, - 24.910498723888118, - 24.907245692608985, - 24.96457717619363, - 24.96228067454996, - 24.999503779983336, - 24.945316243148888, - 25.060921627509845, - 25.03644998115552, - 24.938136100226693, - 24.906203254057562, - 24.984951062038476, - 24.95385027656477, - 24.972796004600504, - 24.91596969737401, - 24.973305181437723, - 24.950514120537395, - 24.910284979543633, - 24.974443983375213, - 24.946513164936277, - 24.96493496004198, - 24.93263360236213, - 24.93076219142389, - 24.939912105716424, - 24.959320614918564, - 24.893320799140614, - 24.960817942066196, - 24.898865069881627, - 24.920922445438425, - 24.85059747948735, - 24.987590669849787, - 24.968508931885758, - 24.90290498263305, - 24.931450495943874, - 25.006259578150505, - 24.885031610424164, - 24.910780551466974, - 24.935536119627937, - 24.9191682471742, - 24.905108986123132, - 24.901944937281254, - 24.89284962467579, - 24.95159376750176, - 24.89950414350639, - 24.923734038507078, - 24.939509403514705, - 24.88533529580195, - 24.906978974419467, - 24.893154405585058, - 24.917239035087455, - 24.80930965572353, - 24.921172072496738, - 24.9755237717945, - 25.05091059869129, - 24.964017364087326, - 24.90942627837555, - 24.9028083597278, - 24.938818449413457, - 24.944495618870512, - 24.85694074448248, - 25.03606081863849, - 25.047113195895175, - 25.0648271262618, - 24.967204573133163, - 24.95078716116602, - 24.9554983237577, - 24.870209646699855, - 24.939134972884982, - 24.925230868629562, - 24.94141842228899, - 24.99080353892394, - 24.954939787021704, - 24.98519338274135, - 24.909693951508235, - 24.921986317126397, - 24.903905929353538, - 24.952261797405214, - 24.973370626221435, - 24.950565907755138, - 24.913067010955615, - 24.95783285830903, - 24.953220409522213, - 24.96005130673885, - 24.90300431715878, - 24.836941653001993, - 24.902213192284613, - 24.960612712677843, - 24.96845862808921, - 24.896732219366925, - 24.961137538482333, - 25.00987488434206, - 25.103547348341753, - 25.004918431895547, - 25.031671717473802, - 24.992553138014152, - 25.07323963592893, - 24.9995472139054, - 24.998370591465935, - 25.018334436527752, - 24.989753894568267, - 24.944743424245353, - 24.95388714083913, - 24.919672810034843, - 24.99161032023718, - 24.90818060373355, - 24.953356600115214, - 25.058812888375915, - 25.068231737451704, - 24.872188465772233, - 24.926261339746368, - 25.1088909959853, - 24.97274186554163, - 24.992917278615053, - 24.952662262560477, - 24.992471372363063, - 24.93378075161094, - 24.902125244351595, - 24.887792221798918, - 25.023399137281835, - 25.010234638133923, - 24.933829345421746, - 25.04113055341172, - 24.898284978437545, - 24.933776620209123, - 24.94108650421797, - 24.92371107786277, - 24.960253049228726, - 24.941923620919756, - 24.98207150670479, - 25.029155264319428, - 24.91946677599273, - 24.936247927245546, - 24.839402283990168, - 24.966153778204493, - 24.92727068751673, - 24.95001122948774, - 24.934380073610868, - 24.963628869424408, - 24.983094261201405, - 25.022236215172118, - 24.970237069156248, - 24.954125557824604, - 24.97606180570554, - 24.943422022410196, - 24.972284322818986, - 25.055472231163936, - 24.958517670842333, - 24.91171577380839, - 25.002193600796563, - 24.893250889724207, - 24.85610534319011, - 24.97903147881524, - 24.93296586982405, - 24.929248834378704, - 24.935061267702157, - 24.92870904828633, - 24.87812601932253, - 24.982760660446484, - 24.96631652096521, - 24.947714548000828, - 24.98105206703213, - 24.917022252780058, - 24.84195614120534, - 24.895069251569947, - 24.93172893373097, - 24.949164047505917, - 24.981396621809612, - 24.885987851171272, - 24.87746297877544, - 24.89967047233249, - 24.89150676246407, - 24.958398642566465, - 24.988395541927026, - 25.02231961619978, - 24.963474670680334, - 25.021048324362802, - 25.00213542177257, - 24.903023947764698, - 24.971721869979817, - 24.99420934669879, - 24.92744714360542, - 24.91850421525736, - 24.924336751398755, - 24.934162795284497, - 24.906202399682954, - 25.002574516618836, - 25.000328324938998, - 24.85895340003713, - 24.86927135755773, - 24.923775139851326, - 25.00196607468073, - 24.965804531095433, - 25.009393615709946, - 24.998507231937907, - 25.09218348338144, - 25.024016824103647, - 24.983062489459833, - 24.917778892849995, - 24.87177243913295, - 24.967859980391726, - 24.931877871183133, - 25.018353259457157, - 24.952151043140944, - 24.968705220241276, - 24.990727136167635, - 24.90872507198526, - 24.854462482763058, - 24.848398718164226, - 24.887455023986995, - 24.93608974628612, - 24.968586252223822, - 25.009524433771453, - 24.917807229034786, - 24.911158760402984, - 24.888334516648328, - 24.894236920245817, - 25.041978641340194, - 24.937977934804497, - 24.93465419058336, - 25.1361590879753, - 25.018776273353513, - 25.063921129673993, - 24.970064574510868, - 25.070893843700986, - 25.021071957843873, - 24.994901587506483, - 24.992179742690197, - 25.049415722044028, - 24.978889918160476, - 24.919590048183238, - 24.925872756312195, - 24.981954268565467, - 24.986093370394304, - 24.93993341113459, - 24.957269074634702, - 24.93712024367816, - 24.91781555984243, - 24.97187892772722, - 24.93801568810813, - 24.903574443878288, - 24.903584777817315, - 24.958981828527293, - 24.99507317484435, - 24.909920235715056, - 24.9083837835895, - 24.88154244454863, - 24.908327380154653, - 24.946361150883895, - 24.95434302780283, - 24.91168961819738, - 24.96271982472028, - 24.882900460101176, - 24.977220381608447, - 24.990740771187326, - 24.994566604120532, - 24.971950063866537, - 24.935152304091865, - 24.97582961834916, - 24.92527018385233, - 24.951825889807527, - 24.95337916182544, - 24.90707852974272, - 24.963510154660725, - 24.967160216139124, - 24.971209787652796, - 25.01424235811068, - 24.984775697507082, - 24.95343842856959, - 24.8918459046401, - 24.963284277975845, - 24.953639345022726, - 24.931992326297298, - 25.01177299276648, - 25.05449537333817, - 24.969944317515193, - 24.94173156105689, - 24.91612681252291, - 24.948062987245056, - 24.99273313535414, - 24.96200128777332, - 24.961581835514274, - 24.857721172034474, - 25.014808916590074, - 24.82968610018947, - 24.846466587455886, - 24.96622291495593, - 24.986973936120876, - 25.041310255425223, - 25.00597221949331, - 24.983579850274133, - 24.991772705782978, - 24.949077674124126, - 24.949983291162262, - 24.917970160452846, - 24.895448482566863, - 24.91042983887342, - 24.87707214902533, - 24.924915271119158, - 24.899258609752614, - 24.9315520053238, - 24.935993768690075, - 25.00320483085453, - 24.9778625659946, - 24.994612352441102, - 24.871011033737357, - 24.85671044728197, - 24.926472904259132, - 25.03085943245874, - 25.04103051323687, - 24.9587201925698, - 24.970995929728232, - 24.925747086905186, - 24.948048257663118, - 24.99083757247864, - 24.965417033617477, - 25.01214941839895, - 24.949609460430633, - 24.97436557756895, - 25.04213798719807, - 24.969342426792515, - 24.828167397136795, - 24.863588996651796, - 24.90607556058308, - 24.971153751206998, - 24.922207453118382, - 24.993542337696265, - 24.93742251370069, - 24.948309766267528, - 24.8924643067308, - 24.929775142518228, - 25.020774637588147, - 25.074186457777216, - 25.022616267470987, - 24.98882482177199, - 24.968899722813333, - 24.917092518076622, - 24.98324553115568, - 25.01655362699711, - 24.91110412302003, - 24.96772250105292, - 24.955355661013172, - 24.981120824983684, - 24.89134350396929, - 24.933484307560427, - 24.965080930414167, - 24.95121463723371, - 24.913378480331446, - 24.906629720555706, - 24.87658857909897, - 24.948949575314025, - 24.865732213519532, - 24.962833102536916, - 24.908932812483176, - 24.995514440709396, - 24.926512145618446, - 25.014193058770346, - 24.95886239268367, - 25.013830682044926, - 24.93487088064921, - 25.039573342941885, - 24.995545619777726, - 24.95426242270121, - 25.041035702076123, - 25.07097956419502, - 25.004125992992414, - 24.970897560404435, - 24.92578475044049, - 24.84542634555796, - 24.9402629431616, - 25.03810026773204, - 24.90907596465505, - 24.98316583234392, - 24.915217753684807, - 24.992957382893714, - 24.97772284228669, - 25.030894834152775, - 24.901348868106403, - 24.902705000993585, - 25.024801031462466, - 25.04935218987211, - 24.989080024399, - 24.92013478527252, - 24.920151249827974, - 24.941922082031194, - 24.970876790590456, - 24.986548963294766, - 24.960195921566843, - 24.91297196424869, - 24.915374400200808, - 24.908098384611378, - 24.97601626593979, - 24.954184519834747, - 24.965543662319696, - 24.899122596277163, - 24.971081547592224, - 24.946326238381392, - 25.013728437554526, - 24.96243575798121, - 25.0179068141557, - 24.897537554777983, - 24.948657747841118, - 24.995988742116655, - 24.97343090164268, - 24.94177219539894, - 24.95771974327957, - 24.949435624299902, - 24.97841330277643, - 24.874479190891783, - 24.92332353200385, - 24.906419285438705, - 24.917525698977435, - 24.936375767450393, - 24.954698822516214, - 24.84015219750455, - 25.090507594132383, - 25.20192044497998, - 25.343517055712624, - 25.330607380554934, - 24.930362050112016, - 24.86244980293943, - 24.870577220611104, - 24.903853797790646, - 24.97540766551458, - 24.99301866860047, - 24.90537431683117, - 24.942851394767906, - 24.942715681949196, - 24.954014887199172, - 24.941871564111572, - 24.94858901384973, - 25.01114616333182, - 25.000085741200447, - 24.975764481220818, - 24.901582999330486, - 24.863624656179233, - 24.910207056660518, - 24.94846012069065, - 24.954876884207124, - 24.871634390976833, - 24.982541883136783, - 25.024831452881457, - 24.939947974931194, - 24.964998651941862, - 24.97607708585098, - 24.941181099222813, - 24.91930025801245, - 24.975396047883017, - 24.921849501868458, - 24.931979616903085, - 24.90698875825109, - 24.961921671277064, - 24.805187060907166, - 24.793854787068845, - 24.858632616440502, - 24.8825350420939, - 24.907091807179867, - 24.81118729010567, - 24.8418159195286, - 24.93906641121548, - 24.911398099600902, - 24.868269938015743, - 24.91588393652726, - 24.911034754782825, - 24.93109884563234, - 24.961793724532093, - 24.91585781634404, - 24.935892221554354, - 24.868053552561033, - 24.88307556568528, - 24.870458032417588, - 24.88200605236856, - 24.847273364383653, - 24.842531380649056, - 24.95953389067062, - 24.976275572120024, - 24.952519638370653, - 24.92316977414081, - 24.952595506805235, - 24.933611366479326, - 25.053453109511146, - 24.990046849675124, - 24.9471130188034, - 24.950347282034855, - 25.002999955800338, - 24.95146175793389, - 24.955033613962648, - 24.987464658654666, - 25.00256650235167, - 24.919179837968557, - 24.95122312917816, - 24.897042626201348, - 24.90067749842431, - 24.929687450653798, - 25.0391314740221, - 24.94252572600898, - 24.87007868025905, - 24.93107620923945, - 24.978798983303946, - 24.936199364456225, - 24.907425888002663, - 24.939474903011515, - 24.962643537803896, - 24.949287700766543, - 24.926449756433875, - 24.960589114418397, - 24.93235003893097, - 24.94331742570201, - 25.015279082043065, - 24.98772456174678, - 24.929163466129083, - 24.89950945975462, - 24.869930172725258, - 24.92713046358061, - 24.887480524368865, - 24.926388887524965, - 24.97188180543153, - 24.9134097652094, - 24.923820530686296, - 24.926519356200792, - 24.943399898585916, - 24.92266806163282, - 24.87663590374762, - 24.879323676730017, - 24.909348144875416, - 24.943602780431785, - 24.939840530442495, - 24.95916351332106, - 24.996954570477747, - 24.987357881058866, - 25.02370172403682, - 25.019152282842832, - 24.900060292753864, - 24.896815595658243, - 24.965970251005757, - 24.96571694640445, - 24.956070511568736, - 24.887661151779646, - 24.855450759244572, - 24.872793327722643, - 24.918766333870465, - 24.990178028497073, - 24.940884853844448, - 24.931198284090122, - 24.956544599310984, - 25.002188510376435, - 24.97050295490194, - 24.93400045607112, - 24.930914948136632, - 25.021874692831254, - 24.93302723342156, - 24.906753260341, - 25.023590293792427, - 24.95899051727502, - 24.975783431092133, - 25.03618923180818, - 24.87894040439885, - 24.929430559810974, - 25.0403746640867, - 24.956538943740284, - 24.94430789808146, - 24.93361365816236, - 24.855947084640807, - 24.98488734661673, - 24.9838048766632, - 24.960137791493963, - 24.960321511355694, - 24.934056716345076, - 24.93996650975065, - 25.00089168269682, - 25.02640479200249, - 24.943461416605295, - 24.9858541572902, - 24.904061011824496, - 24.94880110598029, - 24.966211416892946, - 24.923667361611095, - 24.868160851327296, - 24.815251266616052, - 24.855009763825976, - 24.8627325750896, - 24.939873143584414, - 24.92058067108384, - 24.984872725806095, - 25.038613024628436, - 24.979974376857445, - 25.0681337562536, - 24.97908435761663, - 25.030762318283244, - 24.98702024982617, - 24.872947834440254, - 24.947909401550405, - 24.99252798900562, - 24.877026441565846, - 24.954912759793487, - 24.887991203912755, - 25.000305941381036, - 24.884689239250953, - 25.018086348087728, - 24.97824003699905, - 25.016718903158857, - 24.936657729710987, - 24.978152701121765, - 24.966320003859348, - 24.945096646495095, - 24.945979897499193, - 24.97257514003023, - 24.89031531850517, - 24.91831778558254, - 24.92117806273843, - 24.910230006644284, - 24.88653539879673, - 24.921388928677324, - 24.88299358366534, - 24.84356751250987, - 24.960944573904605, - 24.92488193700209, - 24.94647560652846, - 24.91658348343651, - 24.8483561908481, - 24.910492012906545, - 24.970826898606525, - 25.03856438155617, - 25.001172784934244, - 24.94785841521412, - 24.955094261808423, - 24.983791671348758, - 24.836102612581264, - 24.872027530308273, - 24.851572749186516, - 24.868535087569263, - 25.0030264110081, - 25.002445290964033, - 24.986639951637198, - 24.97372774714642, - 24.914701578602745, - 24.939826884821514, - 25.024897935788964, - 25.147202773196774, - 25.21245635499914, - 25.078238639823006, - 25.17855230793576, - 25.1645781320966, - 25.188868170577333, - 24.93340395221073, - 25.013129095718373, - 24.96858963321835, - 24.95204210132095, - 24.934978662676627, - 24.93723936276495, - 24.951816005498593, - 24.842990088847323, - 24.97129560845451, - 24.998169954996726, - 25.027502480463617, - 24.977146458802288, - 24.962936020379544, - 24.96517602281124, - 24.878665993219023, - 24.971023923932137, - 25.011331849633905, - 25.019936208304102, - 24.92300196633183, - 24.934984749093037, - 24.950706497236077, - 25.00125198652763, - 24.972857430519905, - 24.93784498172588, - 24.950438992581546, - 24.852721199637067, - 24.830378278138554, - 24.990829300070132, - 25.02117772161916, - 25.04342322309975, - 25.037600395577602, - 24.950355791491166, - 24.980611558344073, - 24.960648565759143, - 24.970355834730647, - 24.950840690565244, - 24.916022945158602, - 24.979061245004345, - 24.96821980497389, - 24.967052369227417, - 24.954578897878726, - 24.922628220420883, - 24.856734884737243, - 25.072145624505055, - 24.95935841209904, - 24.858299986262253, - 24.959648923142787, - 24.972732214129195, - 24.924103272498925, - 24.917663662264147, - 24.887630231748663, - 24.895881515209172, - 24.85157940487022, - 24.93802498235771, - 24.930318392824873, - 24.888452656586022, - 24.90629599635393, - 24.98482268285563, - 24.90274683398099, - 24.932652158649518, - 24.897229612609742, - 24.933703486675878, - 24.865584076084417, - 24.904732974295207, - 24.910349853364913, - 24.915693458780687, - 24.97045519995713, - 24.963683556055763, - 24.97268177140623, - 24.98006187941996, - 24.922716294749588, - 24.93929876158537, - 24.975902540578762, - 24.913750825181168, - 24.890633337939548, - 24.903833082819773, - 24.888528356513852, - 24.87336378097074, - 24.940043425927684, - 24.956927374432276, - 24.942813645430192, - 24.955719016742663, - 24.87785798290621, - 24.910831153086384, - 24.991623381072223, - 24.96361088914697, - 25.04939061510803, - 24.899391791434173, - 24.98187293764134, - 24.974908082479725, - 24.97512059716844, - 24.942820127421143, - 24.923241981658457, - 25.03926693396548, - 24.971353777461374, - 24.874943353741106, - 24.907636053231656, - 24.9142030390043, - 24.961329325031773, - 24.882052009662036, - 24.933116228400017, - 24.968650034831235, - 24.90457693029748, - 24.96958588816042, - 24.907661922947057, - 24.938229272784532, - 25.00038940966926, - 24.950432232421242, - 24.897541474688843, - 24.877660768579467, - 24.937030101927867, - 25.016622984751017, - 24.924835835692413, - 24.897472734320885, - 24.949906723753703, - 24.91220041854455, - 24.849649081041314, - 24.891989918211728, - 24.98528906707918, - 24.958373418344124, - 24.873285546175744, - 24.833524660818846, - 24.941288264882402, - 25.016585788118487, - 25.028123999702025, - 24.897763858772386, - 24.940719158067512, - 24.909902458673255, - 24.900805983513166, - 24.943274220437363, - 24.929522507707638, - 24.939463470557715, - 24.953249082245335, - 25.026776827097496, - 24.973520565822554, - 24.958377250927413, - 25.013397800408747, - 24.953612362435337, - 24.921994421334716, - 24.919891839491413, - 24.938034808457513, - 24.918755691977758, - 24.85822289418125, - 24.978059264079405, - 24.950216711022666, - 24.924757451969313, - 24.865852527724684, - 24.856764099707213, - 24.91326363974192, - 24.93664683066067, - 24.97760439289301, - 24.929277695318767, - 24.933427883833076, - 24.915794943766976, - 25.001675528190248, - 25.017017566302876, - 24.95248646104819, - 24.928451393183103, - 24.871227549329557, - 24.94666651274566, - 24.91544764668581, - 24.915270111172248, - 24.929402365914274, - 24.93031922009878, - 24.907656817649162, - 24.973583154043013, - 24.933776308877007, - 24.880921224260618, - 24.913629679991907, - 24.90943540219653, - 24.90526926192898, - 24.951967797792367, - 24.977322905412358, - 24.985235623114676, - 25.05430983003384, - 25.001975379123913, - 24.97759657756898, - 24.91093480113534, - 24.90321924543441, - 24.953850661102635, - 24.910907667495742, - 25.031311585542234, - 24.9488109131642, - 24.87223310092535, - 24.937021288121812, - 25.05058666077329, - 24.943817888364123, - 24.98303663135535, - 24.930635499396246, - 24.914178387812782, - 24.963791549091503, - 24.935020291943147, - 24.91892032131458, - 24.980468394973876, - 24.89525879478127, - 24.91095082898174, - 24.88538591427141, - 24.876111698265472, - 24.95197995826399, - 24.939331458174244, - 24.94006468608711, - 24.979019218607228, - 24.900672926800915, - 24.944386681503456, - 24.938406388150902, - 24.98060104367385, - 24.911499620360594, - 24.938399654481877, - 25.053579590122965, - 25.09529930853018, - 25.110077046915308, - 25.032533819135704, - 25.02567385169432, - 24.921790635941793, - 24.952927137665597, - 24.904069951032927, - 24.938130160865988, - 24.900149359239194, - 24.9476943631566, - 24.97492817959551, - 24.944418333669446, - 24.9952223771895, - 24.98617624616728, - 24.960181470609204, - 24.995776690501124, - 24.9141313420563, - 24.938918946605913, - 24.9283193616587, - 24.95150606402917, - 24.977884965791425, - 24.950210771890667, - 24.91916989421341, - 24.929696629530774, - 24.840438512004837, - 24.87495152600243, - 24.879299057453593, - 24.93599084362214, - 24.90005344283464, - 24.959184340969497, - 25.0299780136725, - 24.930742780822698, - 24.922979900962137, - 24.980825164038894, - 24.990025391997175, - 25.022008471635537, - 24.996804984306316, - 24.964689971051744, - 24.92242254094633, - 24.982569442176658, - 24.968611834637983, - 25.03507425150877, - 25.05797985094199, - 24.981919142786708, - 24.919783969988266, - 24.925613922803443, - 24.92633917664231, - 25.067828800533324, - 25.021028191436827, - 25.08671047530958, - 25.034167608703623, - 24.997760024322695, - 24.94267263919926, - 24.958488742832333, - 24.925557276800955, - 24.92947466662268, - 24.95428277540139, - 24.900562970589547, - 24.970165841578705, - 24.95743113700979, - 24.931164207790193, - 24.923530341514628, - 24.908117776063555, - 24.922870491373388, - 25.012025223960443, - 25.087593481083438, - 24.950343338033292, - 24.9000995926329, - 24.94691960255937, - 24.99296708297843, - 24.898289368390255, - 24.965295783191255, - 24.91326671588385, - 25.002644931253933, - 24.93611429958503, - 24.952348262506057, - 24.926408749961972, - 25.00475603041698, - 24.85734529167614, - 24.87520230513755, - 24.864919296791413, - 24.93452026902667, - 24.963656836856632, - 24.92559930041567, - 24.964061691695278, - 24.89911195382532, - 24.87129371928885, - 24.864101599462927, - 24.99199037671983, - 24.93542724677735, - 24.97343673086234, - 25.036489780916085, - 24.84206622557095, - 24.91353197010973, - 24.963171236494553, - 24.927225067619773, - 24.930499728135384, - 24.921988219079815, - 24.970271118218406, - 24.930542091289187, - 24.983138353161472, - 24.957550228420246, - 24.9376487207445, - 24.90100196735308, - 24.919790415149876, - 24.900521545418936, - 24.975207741452216, - 24.992730371164697, - 24.745730141985902, - 24.862764622170072, - 24.897526076262587, - 24.901623331413397, - 24.91083715234372, - 24.88201867375279, - 24.917531305457672, - 25.093202944159742, - 25.03432172668414, - 24.954031064513813, - 24.89906179813694, - 24.980183893955207, - 24.966238635119332, - 24.952795658610796, - 24.945617676112562, - 25.044313283442577, - 24.987830590764368, - 24.84665478969692, - 24.923029942902417, - 24.996216643372623, - 25.073404031897823, - 25.002522322389133, - 24.912901451547917, - 24.969322889295185, - 24.936364681131085, - 24.895520253652073, - 24.88394978959299, - 25.00453111893237, - 24.993080704065253, - 25.010148985522278, - 24.908151978555857, - 24.968761969216118, - 24.995492647567684, - 24.9262643836005, - 24.983192175528256, - 24.990340893568273, - 24.899456620312883, - 24.813833879394817, - 24.890641197580244, - 24.948646133643813, - 24.93247654685771, - 25.046183925544064, - 24.988534858452176, - 25.07325334469698, - 25.019719995551206, - 24.858596838112213, - 24.9407345479649, - 24.952784561479532, - 24.935410996883903, - 24.904061251630594, - 24.901854336452594, - 24.915643975278364, - 24.88809691105086, - 24.971010414868147, - 24.95408124207197, - 25.01976995746795, - 24.903116665081832, - 24.93798699986776, - 24.937721475988273, - 25.008309437618735, - 24.97243958794089, - 24.977449804212732, - 24.98615063056153, - 25.003656451272455, - 24.93138729571226, - 24.96123117692982, - 24.98211966035959, - 24.97660161886544, - 24.909009143911064, - 24.886569447797452, - 24.99128376871607, - 24.96377746066988, - 24.88832440664392, - 24.89252714947943, - 24.9404127697858, - 24.95901227722024, - 24.929458826201248, - 24.893105556662263, - 24.900965066141058, - 24.97627845168889, - 24.929409039173844, - 24.956940500290212, - 25.024531327360478, - 24.949602253439508, - 24.945704474904037, - 24.924599748003658, - 24.85570642721083, - 24.86671984063539, - 24.871043280918354, - 24.914991201373702, - 24.914661917709758, - 25.05929179193939, - 25.02194520658294, - 24.933737307258895, - 24.963721927127096, - 25.054959897813998, - 25.06626601799492, - 24.96191263115926, - 24.974428293402212, - 24.934090045048006, - 24.998851263286554, - 25.017955775697782, - 24.944502362122172, - 25.027139492030265, - 25.008548220087174, - 24.891752655036896, - 24.88098092763418, - 24.984993786761933, - 24.968396611917655, - 24.967412533846577, - 25.02036848496014, - 25.003167934480174, - 24.97974356842583, - 24.94863704106956, - 24.92211107574519, - 24.94687978884235, - 25.05529133308584, - 25.04957506898444, - 25.032210490753783, - 25.015941530127684, - 25.07781095815966, - 24.93952093836976, - 24.846347399951576, - 24.88027627807182, - 24.87229117201408, - 24.89193674241432, - 24.85575162764908, - 24.94245886676042, - 24.97786212984343, - 24.976794272467966, - 25.0190757378298, - 24.963969356998476, - 24.99107329584683, - 24.904258532600632, - 24.899039129762976, - 24.986743488098135, - 24.942563369121878, - 24.914465778617735, - 25.024473545654587, - 24.917418604618558, - 24.96036889310795, - 24.91128854574363, - 24.941665970243264, - 24.97484801555678, - 24.979315300870432, - 24.93979072675539, - 24.996877975732097, - 24.968634946994776, - 24.94807108161618, - 24.938277879918324, - 24.920302931556797, - 24.969149716724516, - 24.885597990849135, - 24.939364978963155, - 24.99250826857076, - 24.95700201245227, - 25.02298734671485, - 24.993663900453456, - 24.931413071160307, - 24.945170274189856, - 24.840320065715108, - 24.949715227994453, - 24.99869604357589, - 24.941142697503217, - 25.010305352853955, - 24.948722561276206, - 24.94750900291102, - 24.95136344170939, - 24.94865970766596, - 24.96470809441209, - 24.93790071076165, - 24.909968834464255, - 24.880562690713013, - 24.901054766686656, - 24.97781778995239, - 24.937270106819106, - 24.832019337465574, - 24.906543527907754, - 24.96141165986329, - 24.97468023667976, - 24.973663630426174, - 24.970771118525356, - 24.97243634848779, - 25.01692214438938, - 24.9940772773353, - 25.051465362487598, - 25.083840362667807, - 24.94493085389025, - 24.938198911047532, - 24.910423858533903, - 24.91548461930051, - 24.966635529087434, - 24.903609354492993, - 24.943987705540316, - 24.947583197727305, - 24.8761274851457, - 24.996685887329697, - 25.05286306039717, - 25.003707474825237, - 24.989441859968686, - 24.966070968079237, - 25.006848152509207, - 24.962069978826303, - 24.93779208776591, - 24.990177294643413, - 24.946739037277066, - 25.023935064963723, - 25.00868423007394, - 24.9736400292961, - 24.870631751677212, - 24.972216776990564, - 24.978451155841768, - 24.94926815860441, - 24.908393472515485, - 24.966385633557124, - 24.905303843156286, - 24.970428530073434, - 24.979004757220928, - 24.960744798578187, - 24.971193841895953, - 24.905045107908624, - 24.85908460515573, - 24.969546432841568, - 25.011182107279495, - 25.042172630572068, - 25.006347760461413, - 24.988959368844117, - 25.00572279888508, - 24.95248319331217, - 25.01234381103621, - 24.93963194759595, - 25.03542011608625, - 24.86229833095711, - 24.901149976065593, - 24.961679243712688, - 24.961558011262127, - 24.951711050717158, - 24.97179860389493, - 24.944595716115103, - 24.990987664612412, - 24.958456494325695, - 24.985449986038716, - 24.94204267235903, - 24.995214507380105, - 24.936946222173464, - 24.94028861203242, - 24.921468081546628, - 24.911074434343213, - 24.929833892823503, - 24.896143808057566, - 24.910624568835853, - 24.89740523737355, - 24.91548449058432, - 24.895541810798072, - 24.925306104736883, - 24.95093747937603, - 24.915774593974334, - 24.907441020610584, - 24.941983459121307, - 24.90891595977446, - 24.982079130447826, - 25.013827055405784, - 25.034990753351437, - 24.874664354130523, - 24.936629873815896, - 24.948684921825112, - 24.96314748716814, - 24.957640236876383, - 24.98737871275705, - 24.936425980296292, - 24.956676013911114, - 24.90866320204156, - 24.97499827552774, - 24.911661198271332, - 24.886452561604777, - 24.907363499411986, - 24.99840598874643, - 24.956184472702027, - 24.917949551106865, - 24.965948095212, - 24.92552539449534, - 24.915806302434177, - 24.890616975626592, - 24.995791007412627, - 24.952970228735403, - 24.92540050785544, - 24.969889581936567, - 24.997722027902654, - 24.92345599669133, - 24.975304918644504, - 24.930885559573905, - 24.891888880055525, - 24.91236715029502, - 24.924797324192, - 24.87595811128375, - 24.90235905575436, - 24.966269254493447, - 25.018497722688213, - 24.98056823724105, - 24.959199502499136, - 24.87788254650829, - 24.96373077006882, - 24.917048566082386, - 24.79369365326994, - 24.750381265852443, - 24.85033117048453, - 24.872607155269236, - 24.941226899196298, - 24.959482707012675, - 24.951761773915404, - 24.949913727424846, - 24.98693516309679, - 25.000726059828672, - 25.014767807478457, - 24.958201908472745, - 24.98898556418426, - 25.0003005977971, - 24.918565086540053, - 24.88528422052923, - 24.974786784146204, - 24.985144901976263, - 24.938170951087343, - 24.937813086857787, - 25.022827819993125, - 24.99315700512096, - 24.950018332392325, - 24.866319315281753, - 24.93177856657507, - 24.959732820887893, - 24.93258580788903, - 24.895071352462352, - 24.902502124175285, - 24.904497746135917, - 24.857462003098732, - 24.90439056381912, - 24.917259188135052, - 24.98638284816404, - 24.98731400350909, - 24.91454782301423, - 24.91882854202984, - 24.92432073265896, - 25.019467654322185, - 24.93259121455232, - 24.86876790916417, - 24.885382809891993, - 24.864100333614395, - 24.93789126202843, - 24.940308510266, - 24.93388214678699, - 24.97976105472428, - 24.954863527437404, - 24.894348964874876, - 24.9155320569229, - 24.91329144520249, - 24.914118277369532, - 25.003294580661414, - 25.041326177339386, - 24.948295931745832, - 24.944488720598493, - 25.01760631230867, - 25.00268199524121, - 25.02384858139027, - 25.3641796326333, - 25.361455113476886, - 25.405819279970267, - 25.421535185299284, - 25.314425705100266, - 25.349939745466763, - 25.489788871936323, - 25.259249081377103, - 25.223891566386325, - 25.161050152646194, - 25.087236550798583, - 25.22220078967296, - 25.0951596764451, - 25.04807084412622, - 25.05713140874448, - 24.988900620064506, - 25.122882529396314, - 25.176380086725075, - 25.11093070729652, - 25.14460473294015, - 25.32353802192, - 25.35281801874299, - 25.514034012059735, - 25.131312166999315, - 25.291847320456736, - 24.9728263856822, - 24.953433225356417, - 24.964346615575494, - 24.95507566625112, - 24.921480020005077, - 24.81397918042725, - 24.946253195992597, - 24.90272582258286, - 24.92218044890518, - 24.940660005962116, - 24.918338704894722, - 24.963092494457463, - 25.054235542174503, - 25.02309987491421, - 24.95525054848183, - 24.92437204086277, - 24.89653516241158, - 24.949500893511413, - 24.860813523739715, - 24.89591836931443, - 25.00002513764233, - 24.969457705147065, - 24.98083051266205, - 24.938735422814823, - 24.94969013712422, - 24.951208347479422, - 25.039675410923742, - 24.964159472463393, - 25.030250321385587, - 24.98233595901616, - 24.891145990529303, - 25.069831851293507, - 24.962796801670354, - 24.916284497676635, - 24.93586270667099, - 25.01173118630289, - 24.895714178582395, - 24.89243116251444, - 24.814198056124788, - 24.821621436230608, - 24.843859761330133, - 24.85998565877746, - 24.931690025493886, - 24.970215758915028, - 24.98018200939304, - 25.000309938111243, - 24.967755242546968, - 24.927585527579357, - 25.097797881542157, - 24.96964552669339, - 24.965171186440216, - 24.966562186043554, - 24.921314665352366, - 24.87960835246915, - 24.98030626689555, - 24.91897359522195, - 24.841594537080116, - 24.825477046910812, - 24.87551717424382, - 24.857822096250896, - 24.908023796885814, - 24.91946780579306, - 24.899378522896264, - 25.010969369960364, - 24.88198949303796, - 24.985051020919435, - 24.91756782693799, - 24.980042040258283, - 24.898456419893318, - 24.942413520405317, - 24.966639244336392, - 24.921908522957573, - 24.93191440921735, - 24.971755496945136, - 24.93779362238632, - 25.019556665550954, - 24.961868763015346, - 24.972754060918536, - 24.957999586380453, - 24.91223999682191, - 24.889827109302207, - 25.05384525386591, - 24.993750647351792, - 24.959379191331713, - 24.96509168840972, - 24.958875820922145, - 24.92621078145359, - 24.893506972964296, - 24.96199504445546, - 24.92691836220881, - 24.94385050802297, - 24.919110499032147, - 24.96190133025582, - 24.88069480083288, - 24.96103907666879, - 24.966316066643188, - 24.89210125979894, - 24.91783159729903, - 24.95534199085091, - 24.955828887490885, - 24.91500910629771, - 24.870213416287747, - 24.935544893315694, - 24.95812111032152, - 24.980215722954902, - 24.967324112108535, - 25.01762011989142, - 24.883188434724374, - 25.042751340076876, - 25.0080342966687, - 24.91042319989619, - 25.10525053901211, - 24.92805555084213, - 24.92795726368704, - 24.915502492270843, - 25.003953061265353, - 25.04535707507225, - 24.960528421069853, - 25.025718363597406, - 25.018420555030424, - 25.08897662656109, - 24.980464951967818, - 24.963372088389203, - 24.98521098318553, - 24.88830713450136, - 24.89437748572624, - 24.85270460969009, - 24.884660597396607, - 24.938898993816743, - 24.925474994155437, - 24.94362308485472, - 24.96135514893082, - 24.90405053160471, - 25.2424147517686, - 25.226080507543667, - 25.289210905680296, - 25.182459919769652, - 25.362255301561515, - 25.366596172703883, - 25.333235391998322, - 25.160000400730745, - 25.074099978169137, - 26.046310562788275, - 25.02336069048896, - 24.952987674367286, - 24.90342697807977, - 24.910041338452224, - 25.026241266580122, - 24.887335318456948, - 24.914433338536988, - 24.872281213202193, - 25.000887393646494, - 24.99874108064381, - 24.977122510671492, - 24.96931865498901, - 25.00466793527093, - 24.902564579189765, - 24.901075419808556, - 24.876871830796222, - 24.889388512687965, - 24.87547536322193, - 24.92427145750652, - 24.942979374826063, - 24.92583099186972, - 24.96774798190103, - 25.000167394546533, - 25.000500159287125, - 24.98600685065123, - 24.91270221151572, - 24.89502538983885, - 24.96328810699693, - 24.90144148295382, - 24.94337100114817, - 24.967238860786495, - 24.984000720819417, - 24.82792589267372, - 24.866304962432558, - 24.818293433143644, - 24.914553682476495, - 24.960787131956536, - 24.948630174605064, - 24.95290723477944, - 25.005440670778764, - 24.97029285310481, - 24.88787255576375, - 24.985044782818207, - 24.939863326178042, - 24.993476242334275, - 25.04671517675579, - 25.052088420159485, - 25.019451188127206, - 25.01315666394016, - 25.00526030829583, - 24.938834375130575, - 24.940772392865018, - 24.91249937190719, - 25.07773230303343, - 25.0101237375571, - 25.044564734835426, - 25.02460130176604, - 24.85511098025477, - 24.857666011645364, - 24.968030036988466, - 25.063167267814386, - 25.04051122687528, - 25.02871101681343, - 24.98629206945555, - 25.04813858490878, - 24.92565266668288, - 24.89724578317351, - 24.933041988616644, - 25.018969024576283, - 24.830016782035685, - 24.878011733071077, - 24.86336078488337, - 24.963509642942515, - 24.920713292058565, - 24.913156932770228, - 24.942894372202055, - 24.919995776470813, - 25.028721569392214, - 25.008313704399985, - 24.975342149691315, - 24.847675656032933, - 24.865879700871403, - 24.84441638292075, - 25.004513119608806, - 24.96912087993109, - 25.00872537200455, - 24.959100695308713, - 24.976630938652015, - 24.987018714613882, - 25.058082280724257, - 25.078615581540475, - 25.05366013536929, - 24.930897563558844, - 24.98111247746753, - 25.02843151992994, - 24.95786434766877, - 24.95608930578951, - 24.9620336256196, - 24.93320335632979, - 24.90674613492328, - 24.93689497681069, - 25.00285960011138, - 24.95036748188013, - 24.965736003450985, - 24.964820793195692, - 25.057039452915898, - 25.037822984512708, - 25.004540618325926, - 24.94316289232013, - 24.964292022958777, - 24.964400275440536, - 24.944662605171096, - 24.861262350698283, - 24.94401731583318, - 24.867392379626285, - 24.95090817327526, - 25.065254718514815, - 25.052712826500823, - 24.914652066661105, - 24.908414767393012, - 24.903461677580566, - 24.9043427857941, - 24.917892873502918, - 24.90165461901472, - 24.95341420592018, - 24.904893941156082, - 24.888011601170273, - 24.948543897712575, - 24.986208067460375, - 24.899549850090484, - 25.03645831570009, - 24.941775231485437, - 24.903830032158858, - 25.08601650623927, - 24.94070377065729, - 24.942156605195017, - 24.917544338457915, - 24.908189152948204, - 25.011422460797903, - 25.03451002062213, - 24.94446924268513, - 24.964494404799673, - 24.99039010737119, - 24.94922906456393, - 25.012798515893422, - 24.96451101827855, - 25.0425216825596, - 25.01970966115016, - 25.00697425262934, - 25.018146729717238, - 25.012236992313586, - 25.032818610791118, - 25.008370232773494, - 24.928296289165935, - 24.96992323784063, - 24.839346835957457, - 24.952123310156388, - 24.96808976664179, - 24.951565768019, - 25.060701413889017, - 24.966126190333732, - 24.99231887869071, - 24.886034653811926, - 24.871313516211877, - 24.882301428827148, - 24.976546860425433, - 24.879502898959117, - 24.996065920961968, - 24.93828480084148, - 24.895073164896893, - 24.928612324222293, - 24.94833547226926, - 24.991892953449533, - 24.961632032610254, - 24.93289054067226, - 24.935925256995322, - 24.83517532628654, - 24.96468216255243, - 24.862099445192072, - 24.949706753662632, - 25.011943742871345, - 25.01527616016905, - 24.944175601771896, - 24.90113112199817, - 24.885274902547316, - 25.095301048433562, - 25.001121763628085, - 25.015595848187758, - 24.93146428275214, - 25.003889475623346, - 25.071873881780128, - 24.965586297387397, - 24.993017792821192, - 24.93012937902943, - 24.949604305487476, - 24.981724140033553, - 24.972152230699166, - 25.04047703377715, - 24.9886702475778, - 25.01647245331868, - 24.95574321184001, - 24.89615686411353, - 24.875451249446833, - 24.920822492178495, - 24.924996927051723, - 24.973599845231206, - 25.001236228255806, - 24.97177364038056, - 24.961475715565857, - 24.945049854951755, - 24.97543465465249, - 24.940611668985014, - 24.9878736895322, - 24.93628892651601, - 24.860590868947355, - 24.879813063894524, - 24.836834378785078, - 24.935601405799154, - 24.955099641822862, - 24.944127670533923, - 24.887246148170625, - 24.832492943397007, - 24.92788814554042, - 24.926460304088828, - 24.93172308857128, - 24.942906327993647, - 25.00186983593719, - 24.87866572728216, - 24.872043921483105, - 24.919509851762577, - 24.94609511445824, - 24.941074454985543, - 24.982491050207656, - 24.913472808534248, - 24.971039283429214, - 24.99599365239591, - 25.039089909538376, - 24.99889350490164, - 24.947161009734145, - 24.881529159801154, - 24.834512011526677, - 24.910361912358386, - 24.995249420790074, - 25.005027054277576, - 24.92314431847654, - 24.962313448115054, - 24.984622992100302, - 24.92516723784723, - 24.9787386561214, - 24.90271682040268, - 24.821192784323692, - 24.91776219551352, - 24.908884176291323, - 24.94244953198538, - 24.907661450234535, - 24.905530587176862, - 24.965733721317967, - 24.94251675447781, - 24.885243379474304, - 24.92411530219603, - 25.161332147654075, - 24.983695286197527, - 24.96184815667245, - 24.970402204197534, - 25.06138839406018, - 24.868989314986095, - 24.913039363088792, - 24.962716633671704, - 25.000658240887656, - 24.999136818109598, - 24.982481955919056, - 24.94314424767602, - 24.957473409371794, - 24.88363654594972, - 24.945395934747076, - 24.987586424058556, - 24.93253070246101, - 24.917938013151712, - 24.9858967140959, - 24.919756939179663, - 24.939539711959807, - 24.97143578658615, - 25.000286163716112, - 25.032772715535963, - 24.971516941547886, - 24.993134117830248, - 24.97677827082061, - 24.962798392681623, - 24.8303465312032, - 24.95014933952077, - 24.957970253453418, - 24.987049026261495, - 24.969896203804325, - 24.895268970142652, - 24.945023250168184, - 25.023506625033967, - 25.037141715816535, - 24.86761043854469, - 24.975508563758538, - 24.942405895988422, - 25.0187324588151, - 24.909244764381718, - 24.865101229724658, - 24.902461945556063, - 24.92801271473143, - 24.908813330404755, - 25.01717721565933, - 24.99287164501647, - 25.052991429881054, - 25.021225655055503, - 24.948080159995698, - 24.953960199007454, - 24.912724833071188, - 24.931493546979468, - 24.969586933928667, - 24.972104479142725, - 24.90679898856188, - 24.905647905819926, - 24.974035171724644, - 24.911702602535808, - 24.952091964405533, - 24.98880796243366, - 24.859348290675584, - 24.89512490407684, - 24.98863499291509, - 24.946176211346835, - 25.01780638113076, - 25.04282415515654, - 24.93460797606596, - 24.897197668628117, - 24.96301440853312, - 24.91488981708065, - 24.98083878234244, - 25.012627821034222, - 24.987401793674813, - 24.933332058808794, - 25.016724830168357, - 25.03740186860165, - 25.041562098925677, - 24.99026945724271, - 25.02309376325573, - 25.019212493787364, - 24.97398562974996, - 24.926977994209423, - 25.00093592999599, - 24.98182552897324, - 25.023748234232414, - 25.001658951416715, - 24.98388448716482, - 25.006852410184642, - 24.987325109970488, - 25.02885770774172, - 25.07531247983851, - 25.044705792224203, - 24.980431364738777, - 25.045707305046662, - 25.02222117759115, - 24.936586263211524, - 24.93994526219997, - 24.94814402245879, - 24.92876743654336, - 24.948381693188562, - 25.039589782001375, - 24.97149113485589, - 24.911118013804863, - 24.835405616887797, - 24.947991806924012, - 24.92686734394923, - 25.021980093495763, - 25.023376680542658, - 24.96085786153037, - 24.86861551158304, - 24.85252577336986, - 24.937247924401316, - 24.899567524429, - 24.944140458092022, - 24.972383935131482, - 25.04373295785942, - 24.9548397671548, - 24.892548477388303, - 24.87090255958951, - 24.965725523277086, - 24.9811665076816, - 24.97429068053079, - 24.90195092577254, - 24.89515934788865, - 24.87085404082667, - 24.931396241926706, - 24.97519322225719, - 24.939890767479312, - 24.991384289916745, - 24.98165602785313, - 25.023283587772106, - 25.00330244468966, - 24.976742992124734, - 24.86051908474559, - 24.901348118090787, - 24.962665148925346, - 24.937159905035585, - 24.919847929834077, - 24.892925242778688, - 25.05707764339975, - 24.979795099440953, - 24.89656890013668, - 24.924375728423577, - 24.967420667366017, - 24.906579231197345, - 24.92443469446291, - 24.921066938488664, - 24.915057014234087, - 24.98726536634068, - 24.963371897320343, - 25.001710575564964, - 24.951339119828944, - 24.905904672163615, - 24.822990595196714, - 24.904841643229297, - 24.958463852032153, - 24.942236609154012, - 24.983293732598117, - 24.947026152759005, - 24.903223738602925, - 24.885015476426823, - 24.91178471888297, - 24.9666562682274, - 24.987245937258315, - 24.99967268716266, - 24.9890710519571, - 24.94727842270015, - 24.946747745130217, - 24.93741671082072, - 25.003124790765703, - 24.918476559661894, - 24.963036573991022, - 24.945224911637442, - 25.006319170795322, - 24.937247089006767, - 24.904567589177027, - 24.865577747824084, - 24.776490893589337, - 24.85884292396952, - 24.889609980443282, - 24.959051411796928, - 25.00432548305671, - 24.86293813620145, - 24.934142861354886, - 25.02742416013171, - 24.91508292112306, - 24.885409934964407, - 24.94954378584835, - 24.904185155358284, - 25.027546962834474, - 24.97760611271993, - 24.939747778014887, - 24.96625904165029, - 24.937995078474835, - 24.991639982257222, - 24.946516874140034, - 24.96977510050956, - 25.05006919112049, - 25.03852322828918, - 24.921433993942276, - 24.969303106289566, - 24.967975826323517, - 24.912708909373947, - 24.922772501331494, - 24.96617220436537, - 24.97830695771171, - 24.965140386464412, - 24.92365722250651, - 24.888849661000613, - 24.981136073319824, - 24.926255935390273, - 24.98339601734174, - 25.008008872088666, - 24.975278839641014, - 25.052079709556857, - 25.00437656030492, - 25.014355452709996, - 24.997422695572304, - 25.02045451484223, - 25.001670709695617, - 24.989300281407203, - 24.9789375628587, - 24.95987393236669, - 24.985344655146, - 24.936294257879815, - 24.949893236177214, - 24.907864582778334, - 25.00469572509845, - 25.010335840603442, - 25.04769956239403, - 24.886032882671586, - 24.910605524061065, - 24.944960469193866, - 24.96292711047836, - 24.961170383097603, - 24.93001014564551, - 24.890397236906328, - 24.908576288898473, - 24.933301006386735, - 24.99003246781423, - 24.9494176759913, - 24.99266065798644, - 24.916281062057713, - 25.003268481071785, - 24.985360928483733, - 25.017054778591458, - 25.01361260520487, - 24.966995304322513, - 24.984798341843856, - 24.99911516205188, - 24.971384347341857, - 24.90173490814223, - 24.949519493183473, - 24.938182779332127, - 24.950327394479892, - 24.92895975791275, - 24.875362253845694, - 24.93406883970723, - 24.988734279793754, - 24.961552739581542, - 24.902053791824052, - 24.993308575550856, - 25.015561426159053, - 24.99308982724822, - 24.881595492538437, - 24.956092040220213, - 24.946404859096873, - 25.0548139824516, - 25.014151440970878, - 24.97420993621816, - 24.945514678741855, - 24.85089170481126, - 24.918993092787325, - 24.876014337566836, - 24.958187803335782, - 25.01399695977269, - 24.947053853731276, - 24.998236123272683, - 24.94590329621737, - 25.05197075959706, - 25.01920081978895, - 24.871995756755737, - 24.963588953972618, - 24.880336113835014, - 24.923870927472258, - 24.963421463683552, - 24.9304189840667, - 24.9632246418767, - 24.92317020497761, - 24.915693282594283, - 24.958619393580012, - 24.970304290512782, - 24.943781307542103, - 24.980274341414187, - 25.02313393228502, - 25.007917136820815, - 24.965609748918475, - 24.939164930138606, - 24.950168137719537, - 24.99557296907153, - 24.95218040131186, - 24.92313768222259, - 24.964215561094434, - 24.988666222018892, - 24.966110675642717, - 24.91575369291286, - 24.931942540808123, - 24.964726207861503, - 24.917648566805724, - 24.900867185491776, - 24.874501497400104, - 24.825189023116305, - 24.936372524558443, - 24.936741790731748, - 24.972194032972695, - 24.88155807546167, - 24.966375711158165, - 24.91202377748063, - 24.97577192230972, - 24.970530437528886, - 24.892217312694697, - 24.87646296773362, - 24.929685722732195, - 24.956189146340968, - 24.880263876021907, - 24.88644260410905, - 24.922143011684234, - 24.969892612933098, - 24.977824305958833, - 24.855141163838958, - 24.925889877042092, - 24.94527145406066, - 24.969151100915326, - 24.98755489671796, - 24.953616628477967, - 24.883853760379715, - 24.96419021549105, - 24.9226062669233, - 24.969985929586606, - 25.00546143049229, - 24.992971993778838, - 24.95143481448963, - 24.931531638873643, - 24.854849599315248, - 24.84508185219559, - 24.916059003439685, - 24.864044461999804, - 24.9556338000097, - 24.90277565369415, - 24.940543336799294, - 24.99158521372008, - 24.89885811786985, - 24.891747472441324, - 24.943740589455906, - 24.85313837719884, - 24.914989705533422, - 24.90818344342242, - 24.931393664784, - 24.971941203905384, - 24.875308358236367, - 24.880699415202564, - 25.00182625964679, - 24.94491817431826, - 25.00182345593162, - 25.011784595542444, - 25.020013888735456, - 25.08665243373921, - 25.062881159968107, - 24.81675535909291, - 24.892891668312444, - 24.948682526381084, - 25.027762442064642, - 25.06469377673885, - 24.985620558305335, - 24.99895355781664, - 24.97415167902725, - 24.941131289068053, - 24.936253534073956, - 24.919400278589407, - 25.0635187230306, - 25.079559742085195, - 25.037354739173814, - 24.942244942740672, - 24.928619959770792, - 24.933072696741405, - 24.843665681332148, - 24.882968534909885, - 24.94413540660788, - 25.016409529354092, - 24.927852702089783, - 24.97858192375352, - 25.208775157281945, - 25.13911299242926, - 25.247943636389138, - 25.39117791408198, - 25.009342973264722, - 24.918157858925532, - 24.947702811630293, - 24.918273382627486, - 24.912925267003796, - 24.882281377199586, - 24.911069640637045, - 24.882564020384077, - 24.761466137352873, - 24.878757118382595, - 24.845468772522832, - 24.873504040790607, - 24.911209529434757, - 24.883767076778817, - 24.94750875575803, - 24.86449816126414, - 24.969869363966836, - 24.925820940754242, - 24.919806384770673, - 24.899703897182555, - 24.960569117104995, - 24.904602478062948, - 24.942518926891168, - 24.941657062677177, - 24.977079649131408, - 24.935966410482337, - 25.031038704628067, - 24.946372387967557, - 24.99423260408541, - 24.928130342930658, - 24.971279000250192, - 24.97964816694433, - 24.957070529608693, - 24.938937114414585, - 24.92381637173537, - 24.92986704834042, - 24.97018745173839, - 25.016710724370654, - 24.97184981123896, - 24.94729036093278, - 24.92968893886622, - 24.930932567803914, - 24.96107051164841, - 24.95309045811456, - 24.94701039125104, - 24.987835480606492, - 24.956254917708637, - 24.93851362325619, - 24.956363961750885, - 24.937556817574514, - 25.04506633017239, - 25.005056603189125, - 24.961511429665975, - 24.97275231393065, - 25.015087588005844, - 25.035713309491342, - 24.94449371805606, - 24.905611854564032, - 24.935519461479494, - 24.98273833743864, - 25.014224999273615, - 24.892984572362913, - 24.927009774758332, - 24.982320888718107, - 24.92901266938528, - 24.959584658118736, - 25.043660352361016, - 25.03008881739234, - 24.998421050915955, - 24.99858100075672, - 24.993845424101014, - 24.948080186545077, - 25.028259561520102, - 24.966498257334628, - 24.866206463996797, - 24.899648961649277, - 25.022690365250387, - 24.961930204556765, - 25.017037601620665, - 24.970989248234147, - 24.929256770013623, - 24.901044943738018, - 24.92357528449277, - 24.922171055398664, - 24.97568932124336, - 24.919077902982878, - 24.9456579640154, - 24.972303813973458, - 25.047922008803823, - 24.976874889945616, - 24.970213252199425, - 24.972533913858413, - 24.889979326347046, - 24.845427984105925, - 24.96627179248418, - 24.894955388567887, - 24.969996329387552, - 25.00973678907295, - 24.934364368794586, - 24.905516792760366, - 24.94489177626626, - 24.880678820242565, - 24.974260217049753, - 24.886872631548925, - 24.869166794126606, - 24.943658530553463, - 24.938232783152273, - 24.998260235134964, - 25.019454101454194, - 25.031558950145147, - 24.989452332080788, - 24.925048383662325, - 24.88721042817854, - 24.90598248145273, - 25.022293639104554, - 24.95803495277, - 24.881985387720846, - 24.933655243126786, - 24.99419329623828, - 24.958708382870284, - 24.982186843021715, - 24.917023308411657, - 24.93086863204806, - 25.054338945213278, - 25.03871999938258, - 25.002414230783003, - 24.96206575837261, - 24.90603299359438, - 24.92343147542278, - 24.9954757960422, - 24.92059779342693, - 24.86910601290369, - 24.903725289392096, - 24.899799660099173, - 24.97384651760278, - 24.96236246716698, - 25.00205016908275, - 24.99950319007766, - 24.983310311037776, - 25.047027088252264, - 25.069384897828513, - 25.010107398171854, - 24.912133661543592, - 24.870795250121297, - 24.935079384499225, - 24.953287878638, - 24.954670831694152, - 24.988115963968315, - 24.95636272882777, - 24.980495776732628, - 24.837721977291, - 25.043663493233915, - 24.987109146251218, - 25.061752013337145, - 25.009427236461384, - 24.950380506360837, - 24.93387111217327, - 25.013997070038354, - 25.040620808985373, - 25.053464202492663, - 24.907940976030616, - 24.867250789022734, - 24.92910036394544, - 24.98178371723736, - 24.985886104705283, - 25.004331376045705, - 24.90632526127132, - 24.98815440763388, - 24.94026238505119, - 25.06869405741824, - 24.97891248741491, - 24.937657333033286, - 24.93273225193811, - 24.981564679780554, - 24.94298891007143, - 24.895578535594105, - 24.891396452488593, - 24.9665735866905, - 24.9559464134664, - 24.93224174653001, - 24.93323971901293, - 24.847382877903655, - 24.875411372789237, - 24.900350567459967, - 24.92833136570458, - 24.969121214031667, - 24.979571245733727, - 25.02225308459603, - 24.974432681207517, - 24.965814823265312, - 24.86188721111852, - 24.948689024629907, - 24.951846698403838, - 24.842734843401253, - 24.842643608677555, - 24.953446890959313, - 24.91223618108515, - 24.948067164412365, - 25.00104434571319, - 24.962903127109918, - 24.94535756537828, - 24.972025370600768, - 24.96083971588924, - 24.9594817956689, - 24.893515852226734, - 24.980597605882757, - 25.03039988846147, - 24.981334347679066, - 25.047882152740705, - 25.11822026196517, - 25.03120486511225, - 24.971436076753058, - 24.981555995220212, - 25.03790768440686, - 24.99214624525831, - 24.968138067918048, - 24.870456458881826, - 24.931970020877124, - 24.80117187502514, - 24.88788202089227, - 25.010737621691334, - 24.9564866540206, - 24.992956815648498, - 25.03602138647193, - 25.01961817069317, - 24.921011012745343, - 24.923873563970197, - 24.986209562808604, - 24.968937004628778, - 24.984488978055417, - 24.956415248276755, - 24.951375574072983, - 24.99307759226174, - 24.90172475437045, - 25.035312321391984, - 24.93624878760897, - 24.87959887403461, - 24.94723724415971, - 24.986763852773045, - 25.0888811814225, - 24.960889700620015, - 24.90196904928404, - 24.974240900059378, - 24.98881065299968, - 24.972606744300073, - 25.0559048079977, - 25.05333539398314, - 25.01781840551636, - 24.931002835225478, - 24.875331348085695, - 24.968710820520265, - 25.060245633315525, - 24.971461654983127, - 24.925027502370636, - 24.952702462625695, - 24.911342747133226, - 24.940350037208425, - 24.897994333083552, - 24.875180026202255, - 24.916051119243356, - 24.87480396275828, - 25.03525526386889, - 24.99981272977452, - 24.918594717562655, - 24.95382557201514, - 25.057315674386942, - 24.878660585254345, - 24.973604036611558, - 24.959186107950817, - 24.99747248726881, - 24.993274634754655, - 24.91699851360125, - 24.963862585792334, - 24.948142041538787, - 25.002167994488502, - 25.05384017844991, - 24.95426224670002, - 24.985084744109578, - 24.93678402968306, - 24.915178286118792, - 24.915759767971345, - 24.989574724230437, - 24.94729757449199, - 24.923549597804445, - 24.85699336344512, - 24.908770155603477, - 24.980651813975726, - 24.940371531756714, - 24.960236003362006, - 24.972809975412677, - 25.03240089438018, - 24.860685056549734, - 24.964300899703474, - 24.916432850560042, - 24.86180441311993, - 24.983120825137107, - 25.012310530014858, - 25.077969687897376, - 25.055444801652925, - 25.872311717953625, - 25.712377752779933, - 26.225761876661473, - 26.49293538295606, - 26.4147089173995, - 25.601718673759358, - 24.94244103986666, - 24.975555461778505, - 24.935463242468018, - 24.987508869360603, - 25.033419579374563, - 24.925157160263154, - 24.87226114149295, - 24.951043001909788, - 25.014714866798336, - 24.8917861024378, - 25.01264179669287, - 24.981729221972465, - 24.926564967027364, - 24.857197471493848, - 24.925552423469824, - 24.966800984595395, - 24.91619833415275, - 24.982915745531663, - 24.932948323777637, - 24.96564030631641, - 24.95081621150915, - 24.948598335341508, - 24.8926618229712, - 24.87504377398392, - 24.960768157356323, - 24.950464879442983, - 24.986196007486832, - 24.998171914025136, - 24.889454353599938, - 24.990931438278857, - 24.97389915200969, - 24.911278399338915, - 24.846701292206596, - 24.986203254113803, - 24.91714197967283, - 24.90272589701705, - 24.951310059118562, - 24.970968159966546, - 24.934626435853605, - 24.913059202691045, - 24.91869178089989, - 24.948637966437694, - 24.92954547706488, - 24.948179544965768, - 24.889380062436956, - 24.863501163936547, - 24.955468814026055, - 24.92432431195005, - 24.993382734080217, - 24.926680223504498, - 24.89593574642062, - 24.91887263476263, - 24.90571547587133, - 25.001482908973273, - 24.942057954510496, - 25.003155527905864, - 25.019980140882218, - 25.040902224249052, - 24.956333590379643, - 24.84267695239895, - 24.88078083069008, - 24.89979487383414, - 24.89954852896904, - 24.957406100949797, - 24.88427277278017, - 24.962065850070488, - 24.978036207558212, - 25.015296644273786, - 24.923333583702988, - 24.986658630567, - 24.942688843857816, - 24.879974597587267, - 24.906596534486084, - 24.895480644326028, - 25.00424791800645, - 24.878317811259897, - 24.867750818614073, - 24.96600026835874, - 24.947092519906953, - 24.933295286719996, - 24.984451410952964, - 24.897737397772637, - 24.862608955492156, - 24.94385173176068, - 24.85911512486205, - 24.925858906830392, - 24.84699332648379, - 24.902072468430596, - 24.861785361976686, - 25.00627626917563, - 25.034998382872473, - 24.97736906617739, - 25.027467123827837, - 25.07113501858163, - 24.909618757430703, - 24.93115280728727, - 24.94300441346774, - 24.890978536069866, - 24.914093290289664, - 24.839439365099942, - 24.928019653846746, - 24.98461845360241, - 24.825082972183672, - 24.877254736168453, - 24.94333538788002, - 24.9188383010084, - 24.96579555553035, - 24.951712975713846, - 24.85947058186469, - 24.817166693171053, - 24.85094281965454, - 24.947697099667604, - 24.896768091226164, - 24.944008104427034, - 24.864653040205823, - 24.953726349001833, - 25.016412003331382, - 24.965560849549334, - 24.906368610344714, - 24.90232211889668, - 24.97446368786818, - 24.962728496741754, - 24.96037092726908, - 24.864681200238966, - 24.867573376493965, - 24.872793947671312, - 24.80896144035585, - 24.88435326711751, - 24.866410499373604, - 24.9241008185782, - 24.958614920272552, - 24.887158192297374, - 24.90375349010888, - 25.021639262568506, - 24.96055150734342, - 24.950287245860224, - 24.948474201934168, - 25.028094154896948, - 24.958859424381487, - 24.89090347927283, - 24.94568931255404, - 24.87871254686619, - 24.94185832860571, - 25.000332298838998, - 24.90693115643748, - 24.975956171862826, - 24.972274165544885, - 24.92884199158386, - 24.991479617773074, - 25.018319027635307, - 25.078144870374334, - 24.97839858835657, - 24.88431695390899, - 24.794592574274066, - 24.783775768391887, - 24.927915413286875, - 24.99037321619432, - 24.97632805985282, - 24.952540754695104, - 25.02896277041585, - 25.051951649169574, - 24.952119161840635, - 24.948652347443137, - 24.87512909932081, - 24.84306557938148, - 24.927575760425455, - 25.00261466114982, - 25.006395139486497, - 25.051075121565248, - 25.01021949810754, - 24.968934454785597, - 24.929293366038273, - 24.871589811725066, - 24.880936713904994, - 24.888234902305502, - 24.982374373528685, - 25.003056794949096, - 25.00911937246, - 25.04631522305689, - 24.983132190073068, - 24.978271748537964, - 24.980295924883777, - 24.9005873543361, - 24.8237222871805, - 24.92026808460625, - 25.02735852447055, - 24.890458809798087, - 24.965121995913684, - 25.008066575942983, - 24.936721868370704, - 24.96946865318531, - 25.048484806914924, - 24.9203972840046, - 24.91191025156432, - 24.91030932765708, - 24.94936258804831, - 24.986992138679987, - 24.92177926739052, - 24.88645888030268, - 25.002120661578296, - 25.009776411020283, - 24.93586045782164, - 24.933050831650128, - 24.911189031415965, - 24.91670325724519, - 24.943765183431594, - 24.952359446549092, - 24.991265797362367, - 24.92040156287382, - 24.899286270059182, - 25.00800386521591, - 24.960967423960348, - 24.87689559757733, - 24.897974272457063, - 24.920932047495974, - 25.013594590592874, - 24.985143722792067, - 25.030919950851498, - 25.046144318226762, - 24.934306912362246, - 24.973527075850534, - 24.988609040607294, - 24.94738429227325, - 24.967923473931016, - 24.9611194649356, - 24.90121467214965, - 24.936387684911164, - 24.91581935825318, - 25.03129470962481, - 24.991577334848415, - 24.905241605087483, - 24.923416261694562, - 24.925977724365104, - 24.830820948126842, - 24.886667069863087, - 24.993367156450525, - 25.029017499980114, - 24.94238581409848, - 24.938104670261865, - 24.94757782943332, - 24.86149634414125, - 24.94304420229198, - 24.89742427674188, - 24.994715359153844, - 24.93958115556167, - 24.94349909562752, - 24.943923151487226, - 24.940846259701427, - 24.98404570471844, - 24.96051768842838, - 25.00655012761068, - 24.92479355717731, - 24.94513210105205, - 24.919457047465357, - 24.876505181295997, - 24.80785183683031, - 24.85098728295455, - 24.947391475873744, - 25.004126940259905, - 25.005107039601107, - 24.907198328587082, - 24.88786379414037, - 24.926281106569196, - 24.91442754374318, - 24.902779595457282, - 24.866319527523274, - 24.90743656874558, - 24.880757848146878, - 24.99047902494054, - 24.936744631137444, - 24.898640157179486, - 24.97845130105584, - 25.032519809909886, - 24.976829545420365, - 25.011081488420807, - 24.957933988258134, - 24.91421191002822, - 24.96307540499044, - 24.98521710349447, - 24.993279325360056, - 25.01862738137512, - 24.9958834013434, - 24.93243166893926, - 24.94165509200485, - 24.9890113237348, - 24.997477607429342, - 24.922670534273337, - 24.99760752934106, - 24.90125029615892, - 24.91531782039888, - 24.897216602811383, - 24.974694773571116, - 24.952548044925695, - 24.99315829448891, - 24.918341842165994, - 24.97618224393788, - 24.945188466173164, - 25.029661591221373, - 24.904107518175362, - 24.939455893141314, - 25.00723398256081, - 24.907546465372477, - 25.010056421330056, - 24.980952469310438, - 24.953426105944246, - 24.922663814272447, - 24.84488696444233, - 24.922051906727674, - 24.944605157689672, - 24.992195490823587, - 25.068097616636216, - 25.006919810878088, - 24.93650294686453, - 25.009578447446074, - 24.99330963243657, - 24.963058386200935, - 24.92910623597131, - 24.963888825392463, - 24.951028812427687, - 24.919594517954387, - 25.020576842379302, - 24.967294265862385, - 24.896869879109275, - 24.940364887322797, - 25.007339654934203, - 25.060120200077726, - 24.908170821058604, - 24.939623197930167, - 24.9822220319415, - 24.884251588704718, - 24.88561657645343, - 24.88948401221679, - 24.964725477185603, - 25.00100308962305, - 25.033093276162397, - 24.92525060101315, - 24.894035925828703, - 24.953697786145298, - 25.019762496704026, - 24.917917217161225, - 24.95840229186087, - 25.00144880395976, - 24.976048299218604, - 24.973907988163347, - 24.979796257568353, - 24.895903224369135, - 24.927740190202954, - 24.789307795542946, - 24.960185386240187, - 25.020334255035884, - 24.957330530700872, - 24.898531431383365, - 24.919816923893073, - 24.976024764403668, - 24.899986100122046, - 24.865211882346454, - 24.926978398155217, - 24.996554575737804, - 24.933407240061825, - 24.889746811503926, - 24.866585490983873, - 24.944144761287557, - 24.957505742174135, - 24.942404274481966, - 24.92983565475638, - 24.92071050926505, - 24.93925632727963, - 24.902387269185688, - 24.884911671433898, - 24.996798176238663, - 24.987194585727913, - 25.01955244600643, - 24.971395865859503, - 24.959262398775408, - 24.98414320539134, - 24.934313714457808, - 24.910448810499666, - 24.886860777415606, - 24.966165410289427, - 24.952659692236836, - 24.937376630850522, - 24.911176414097103, - 24.95423095956334, - 24.96900312466559, - 25.04543610438924, - 25.022745948578596, - 25.06131772603785, - 24.999647610604015, - 25.03010179692022, - 25.00906168348889, - 24.879178726379834, - 24.862742933602938, - 24.9771704487462, - 24.950885426493727, - 24.931535784546774, - 24.960342637917265, - 24.909470454950323, - 24.974337248988743, - 24.962386304550144, - 24.816994112067494, - 24.902299522258456, - 24.998950045598463, - 24.965113908632215, - 24.962607527951825, - 24.938849176345514, - 24.956377890381898, - 24.88174650898773, - 24.942774451859147, - 24.886802324461655, - 24.912724753070457, - 24.991164724630476, - 25.00872382498369, - 25.025420539830137, - 25.0390793250049, - 24.98461628644401, - 24.953727930788837, - 24.980229322017628, - 24.905622322432112, - 24.95799095002039, - 24.99619652562256, - 24.909561800810067, - 24.88292050094193, - 24.9778562978712, - 24.945218014474783, - 24.91735129804833, - 24.892452018954515, - 24.871036603188223, - 24.94098219897841, - 24.987951695820165, - 24.963438384159627, - 24.967099419376204, - 24.934946501339837, - 24.88000731677196, - 24.906311633472413, - 24.843758470639898, - 24.889086015941984, - 24.8787430048681, - 24.911299669171413, - 24.86292529204739, - 24.86323028844557, - 24.966818641710383, - 24.958451020416284, - 24.979551601800026, - 25.009364678462923, - 24.89747064148469, - 24.97858457212495, - 24.96004712153893, - 24.94106391164422, - 24.877461979114564, - 24.947113993068317, - 24.869594897348534, - 24.832103364338856, - 24.938115452221908, - 25.014995416239156, - 24.947268622762074, - 25.048801313123235, - 25.043469207803412, - 25.006774380184353, - 25.011511786572903, - 24.99488319357426, - 24.958332241779658, - 24.903443320324495, - 24.933847646815515, - 24.962237096924696, - 24.966334556512727, - 25.00730934640945, - 24.990465910591865, - 24.95050334329745, - 24.972416868306496, - 24.981282310099246, - 24.86463157748771, - 24.912424558095562, - 24.92816906664706, - 24.91338474605159, - 24.968255417362084, - 24.871995516356247, - 24.919120951312333, - 24.923843233699003, - 24.880370385235373, - 25.00882643841558, - 24.944732860415662, - 24.982889047551915, - 24.979841942938418, - 24.959632167565736, - 24.937180536956205, - 24.907756684133886, - 25.006835174629714, - 24.973379707906787, - 24.910516590609866, - 24.98514552964341, - 24.946588954751817, - 24.970342085465578, - 25.001795117777853, - 24.900939897829097, - 24.839225618927923, - 24.93406455424566, - 24.971199476783646, - 24.932175812562033, - 25.007534867458496, - 25.008800860747996, - 24.991722262128462, - 24.922622034787892, - 24.98284938540177, - 24.97865800797704, - 24.956750422386442, - 24.817294791124976, - 24.9335281232109, - 24.941028472915814, - 24.90267702028766, - 24.877631116155605, - 24.89180148504402, - 24.90292240898097, - 24.93157636913069, - 24.993241467505833, - 24.925547451151743, - 24.867802954432612, - 24.90153366157921, - 24.936194796286486, - 24.909873422303633, - 25.021202543557372, - 24.940878531612213, - 24.88064435921953, - 24.969643659420854, - 24.849585108551203, - 24.92973656632239, - 24.97017176806617, - 24.881884289029436, - 24.986677065968927, - 24.93360259985747, - 24.953966970950425, - 24.921424119300333, - 24.88686590675485, - 24.934568826665213, - 24.983344238522314, - 24.988952726220447, - 24.944650686320692, - 24.879820527251432, - 24.87108712626387, - 24.91741283199145, - 25.048687715081975, - 24.987114476240073, - 24.918388942061334, - 24.99315028360568, - 24.971014043093607, - 24.94376806160048, - 24.860530118317865, - 24.9634004757332, - 25.009311771217412, - 24.950871321714704, - 24.953327499024795, - 24.979876222393443, - 24.943657226576196, - 24.881370831992, - 24.904851853898265, - 24.889414729063063, - 24.950456243960392, - 24.970303325757968, - 24.878983817420824, - 24.93762596928093, - 24.94541432671099, - 24.968789929542965, - 24.885931879927163, - 24.790572659696174, - 24.979349659071904, - 24.924287877489114, - 24.829010549131283, - 24.960677637636188, - 24.96883529567578, - 25.037355486373364, - 24.998664756067118, - 24.97859531227339, - 25.017984676803053, - 25.026723337165855, - 24.961612086651154, - 24.966727604041733, - 24.999469097385493, - 24.98444874159628, - 25.026114899304517, - 24.93423282371957, - 24.964292353811935, - 24.955368958742906, - 24.835570856879457, - 24.839062242039056, - 24.87764720311852, - 24.945061240566453, - 24.963228640117734, - 25.003297691944592, - 24.94798649548977, - 24.958437536119668, - 24.98226766923348, - 24.858091947981926, - 24.96253912890547, - 24.952415325523184, - 24.9368866560144, - 24.97724647163676, - 24.945436302648286, - 24.987298686586243, - 24.89081344146441, - 24.940528893598717, - 24.921970887346752, - 24.872124137029157, - 24.889902462856867, - 24.84991774958164, - 24.92485546493971, - 25.048576699295516, - 24.99115682196401, - 24.99051444087882, - 25.055607284556757, - 25.025776878607452, - 24.978120757630293, - 24.999806959601287, - 25.026570522948525, - 25.02444555830295, - 24.995682754183004, - 24.91318486536903, - 24.88652086563225, - 24.882429593676182, - 24.903391686433636, - 24.961966590289272, - 24.889656152846655, - 24.94963842424752, - 24.903463497048165, - 24.979792396295874, - 25.038422552566335, - 24.925407811434308, - 24.91785883714317, - 24.877578643601986, - 24.887142247406512, - 24.89395286192022, - 24.98110301918815, - 24.9044040217433, - 24.91370088221453, - 24.90501621502774, - 24.972943460487784, - 25.49681138619245, - 25.625619571794598, - 26.094333299624537, - 26.06847091133368, - 26.532356366615456, - 25.57063196869112, - 25.52003182152369, - 25.728074203077703, - 25.714992856225184, - 26.10903230655418, - 26.259404115081114, - 25.928069875605317, - 25.90924865369109, - 26.04466598443408, - 26.177448411279446, - 26.42443681080045, - 26.21333899626919, - 26.208340526290982, - 26.221050157886616, - 25.566769493536917, - 25.70473614296537, - 25.593274460448672, - 25.296056667823773, - 25.543747297783863, - 24.8740624017396, - 24.859031495899742, - 24.968280578751738, - 24.87852424519646, - 24.91440971524587, - 24.934322949725598, - 24.95707303552736, - 24.970853997115093, - 24.883291458929108, - 24.911617028651463, - 25.00766545639668, - 24.973524985960864, - 25.02360444715542, - 25.033605377364594, - 24.95682448081154, - 24.868229922103332, - 24.92320911686174, - 24.92863656196254, - 24.85302008828689, - 24.80330565431283, - 24.86836078188795, - 24.89755104265275, - 24.943207486506665, - 24.857509916317884, - 24.88098120536788, - 24.841013363693058, - 24.895369640732646, - 24.938910322450816, - 24.963020749520012, - 25.024821971437746, - 24.983521560817806, - 24.962519696531736, - 24.979222821552995, - 24.980709431335995, - 24.990167415954854, - 24.966905429566353, - 24.875639271669932, - 24.950889162384097, - 24.969365769229768, - 24.91671462234065, - 25.003453105372067, - 24.978395452863644, - 24.95479767079612, - 24.9196664377112, - 24.985597753209106, - 24.88020175517344, - 24.839617066307312, - 24.879916269188328, - 24.805193308449105, - 24.925082291570256, - 25.07649874408537, - 24.932363617564196, - 25.01409747586495, - 24.969248458636045, - 24.944366819934793, - 25.00239679746768, - 24.9587557605661, - 24.840685646292165, - 24.940147057340283, - 24.903880540265334, - 24.78490364317241, - 24.873643501644622, - 24.947848970732316, - 24.952344954964655, - 24.906355383696617, - 24.89408699448103, - 25.017116166265865, - 24.95692523381758, - 24.88677721352434, - 24.949184521998127, - 25.051572492936664, - 25.029201428531543, - 24.994922982169577, - 24.97558939184229, - 24.89648635702933, - 24.926418125169903, - 24.923937469206948, - 24.892252991128785, - 24.85404594733084, - 24.91812206632283, - 24.942983006648383, - 24.887876863763925, - 24.95395623039569, - 25.010618933138385, - 24.954859679525306, - 24.953245315847134, - 24.905316836859285, - 24.937099043967013, - 24.993854233728527, - 24.97991826234106, - 24.99830393299897, - 24.85500219017849, - 24.929757201533622, - 24.944966436450102, - 25.03616817693717, - 24.99089723364439, - 24.958090973250357, - 24.906416248717008, - 24.79034500508333, - 24.82309497840523, - 24.958045842908163, - 24.92966143985475, - 24.91501292383181, - 24.940450595056753, - 24.95470869995222, - 25.06125390631194, - 25.018444474307117, - 24.986389784569013, - 24.846146940393062, - 25.038575973975583, - 24.9364477103699, - 24.946223046820723, - 24.888343490386994, - 24.991515329192065, - 24.86463610537252, - 24.900584747250093, - 24.952381267254218, - 24.897746055664417, - 24.962733841022605, - 24.92363009647051, - 24.94680822393807, - 24.906659100860836, - 24.931607168350446, - 24.826428687023302, - 24.88088886643537, - 24.94985056323155, - 25.006785068272862, - 24.92773212029499, - 24.97421406449152, - 24.901753416185436, - 24.922554194445897, - 24.98905174763297, - 25.0244534365984, - 25.00256569975281, - 24.822464511436387, - 24.92078649112202, - 24.916269745961486, - 24.83028792131522, - 24.967069298796595, - 25.002769769506028, - 24.949093861304554, - 24.925556529585734, - 24.907853407007973, - 24.879652917357223, - 25.009041257744556, - 24.962647888364415, - 24.916235954488783, - 24.978459100488244, - 24.898718615007382, - 24.927981676513333, - 24.881368460157347, - 24.9931978480709, - 25.046764788421818, - 24.998072595439083, - 24.918472555295637, - 24.90334857637767, - 24.96981260062485, - 24.956332404843266, - 24.96917485043238, - 24.974334854146583, - 25.031655810837336, - 24.973753694519875, - 25.087699521090432, - 25.001781443322894, - 24.941907887847883, - 24.99502220392854, - 25.038446694251782, - 24.927332923567885, - 24.97739149000873, - 24.877775284745375, - 24.885976314679873, - 24.930128197938885, - 24.96357529526071, - 25.019703845521597, - 24.978797121114816, - 24.98093030233929, - 24.96099415114988, - 24.983444095291063, - 24.92072387366921, - 24.96592589825837, - 24.89840200780887, - 25.032616138115475, - 24.971684605194792, - 24.932082044943417, - 24.88460925763666, - 24.93711054477859, - 24.96269064644612, - 25.02010125067465, - 24.996613819833264, - 24.893141409150406, - 24.903569655650635, - 24.95006614902658, - 24.973983611371875, - 25.020401725779315, - 25.054477873656456, - 24.98342340871293, - 24.97467160081706, - 24.968182158736774, - 25.05057350042408, - 24.941346086696473, - 24.921456491365742, - 24.9852189835089, - 24.991709298956494, - 24.90827545926772, - 24.874407866485576, - 24.826054796469005, - 24.902016566855025, - 24.931854427301516, - 24.935015298727134, - 24.89433828980508, - 24.969098309776225, - 24.928730955213496, - 24.88743463997306, - 24.88544003910709, - 24.92349830617513, - 24.866816373828172, - 24.883520932729, - 24.92050166113678, - 24.891244552614026, - 24.836281229980102, - 24.871879463323545, - 24.916821944651485, - 24.941502839501645, - 24.899599611560557, - 24.86800680377796, - 24.881860491274622 - ] - }, - { - "legendgroup": "Total Site Emissions", - "line": { - "color": "rgb(239, 85, 59)", - "width": 3 - }, - "mode": "lines", - "name": "Total Site Emissions", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 24.881860491274622, - 25.00261067138295, - 24.899757661113952, - 24.948668430463208, - 24.9807078820501, - 24.96050427300994, - 24.970811340956644, - 25.05078321256414, - 24.887065098524957, - 24.898099554173903, - 24.97242848744814, - 24.958219258033928, - 24.92511948156348, - 24.949853778094898, - 24.9682959217563, - 25.031425018511, - 24.977422678838757, - 25.005361368746513, - 24.938967928258002, - 24.981514415429483, - 25.00626732684848, - 24.964279066720252, - 24.939301782838186, - 24.88545723685361, - 24.944020451704795, - 24.981992831298317, - 25.00930300534354, - 24.966600574745254, - 25.00994107027968, - 25.026364824322286, - 24.989146174315287, - 24.97099529936054, - 24.952865845696664, - 24.94869401743731, - 24.842927027914683, - 24.85803847045004, - 24.888424674309142, - 24.931322235065593, - 24.969090881735966, - 24.934826007252518, - 24.930660420118674, - 24.930206277881247, - 24.94295162792654, - 24.852869383226032, - 25.046657862499657, - 24.93217164336361, - 25.003036305107223, - 24.923712097757523, - 24.921505438091632, - 24.92813975610536, - 24.934965353655947, - 24.95985216659582, - 24.93574724685791, - 24.95682822295874, - 24.950120773123686, - 24.89800964280494, - 24.916155456345024, - 24.9037533416938, - 25.052603953194488, - 25.018484740382814, - 24.948150519732117, - 25.04864209844076, - 24.989597571743083, - 24.95594265503872, - 24.887441741347786, - 24.848268914821254, - 24.913590341494164, - 24.876148927144886, - 24.860737804828496, - 24.885069204271787, - 25.224769330319955, - 25.571214746801466, - 24.974376377593995, - 24.96536674162082, - 24.961171445801597, - 24.9843061690396, - 24.934304671918888, - 24.951231084389914, - 24.886887042436896, - 24.93745259759345, - 24.97193501035821, - 25.033424074180196, - 24.945536766141537, - 25.022031965504265, - 24.90493152110141, - 24.935109603625925, - 24.95831838536423, - 24.92489300214486, - 24.934702342025226, - 25.053376246855862, - 24.873501056052497, - 24.992962116538536, - 25.009371026507146, - 24.990395376511692, - 24.855491329885282, - 24.899361506613758, - 24.84848116616584, - 24.907125474052897, - 24.967465930065465, - 24.957960721314222, - 24.99697576779328, - 24.901771619529256, - 24.937168778151335, - 24.889423667496864, - 24.866474808559918, - 24.91281015562678, - 24.983822310119738, - 24.967964141834464, - 24.845048010894743, - 24.89988314766188, - 24.909621377876114, - 24.970787251657008, - 25.01790752108353, - 24.984166331312352, - 25.027559239212117, - 24.958379711281975, - 24.94755070157761, - 24.91543701016215, - 24.866531113302536, - 24.905219307958667, - 24.935358017643658, - 24.995025754107033, - 24.968051176928533, - 24.887994464303894, - 24.975330121736626, - 24.968864421232322, - 24.99002963642981, - 24.985311115756886, - 24.98519477379864, - 25.043795782256588, - 24.90369831772841, - 24.909486414716618, - 24.949769785048588, - 24.918315864507825, - 24.981784754959065, - 24.99358147762383, - 24.976318957238547, - 24.92183827296598, - 24.98541657460226, - 25.006240183057947, - 24.89849985845008, - 25.0339953460137, - 25.05050378264638, - 24.986083512708593, - 25.03943335992121, - 25.001369886800923, - 25.049060899270913, - 24.98154391776265, - 24.926960260170674, - 24.96077478975816, - 24.986606023588028, - 24.937948992062864, - 24.998683458807623, - 25.004037790772944, - 24.89697772408979, - 24.97779910334377, - 24.900512676944942, - 24.9080485616714, - 24.9127368872625, - 25.019035794560246, - 24.953628010490448, - 24.996629784967766, - 24.984428871421617, - 24.92489378799423, - 24.857054826699265, - 24.807803125036948, - 24.829690436693166, - 24.863762349007658, - 24.8799505228232, - 24.80751964141357, - 24.902634710220436, - 24.88795274777391, - 24.898517220586935, - 25.040365844283482, - 24.96759037649498, - 24.919850815401986, - 25.006688331637328, - 24.93251549080864, - 24.95275606147181, - 25.03616615860351, - 25.036814601954706, - 24.92358254533871, - 24.916512428494308, - 24.91033122681872, - 24.958608432041075, - 24.9026407268261, - 24.971507900363335, - 25.00860862006927, - 25.07337716650953, - 25.00672394126083, - 24.962153792227937, - 25.026592892040213, - 24.99740008133349, - 24.909551207233456, - 24.955733272730367, - 24.97397554369428, - 24.97836682720463, - 25.070096361538546, - 24.95473022758525, - 24.947166942608355, - 24.97793940804737, - 24.89889498626229, - 24.98480133325001, - 24.913797583796615, - 24.9265284207436, - 24.864612176280133, - 24.922941218961036, - 24.9876737228534, - 24.919089247393035, - 24.924196142240287, - 24.89587658447291, - 25.002316026012302, - 25.00881095416764, - 24.9802051447711, - 25.1136501937186, - 25.022931154027116, - 24.969748312114596, - 24.919072297212843, - 25.025211406227584, - 24.947454841840884, - 24.967331013658573, - 24.937449011747535, - 24.97937627059109, - 24.93848437132631, - 24.89169594648557, - 24.9117331734344, - 24.910234776134835, - 25.01257504639027, - 24.99614353898677, - 24.917518915477714, - 24.962293127290355, - 24.887004167651007, - 24.835693478896133, - 24.891029470645478, - 24.924437121304496, - 24.95189043313585, - 24.926494194651553, - 24.81219985854301, - 24.967398175323055, - 24.86112347070828, - 24.93380330734645, - 24.989091932094794, - 25.035779436713177, - 25.03676407212022, - 25.00986900181165, - 24.955861457766918, - 24.933312190608845, - 24.951550911580654, - 24.92399924094861, - 24.88709508004453, - 24.96467121353718, - 25.00277683879694, - 24.971175056824812, - 25.03389879360014, - 25.03677648085879, - 25.076129212810123, - 25.002421852384984, - 24.993451004974233, - 25.010396988032085, - 25.022463684252592, - 24.91724096394173, - 24.843178390849324, - 24.908706513283782, - 24.921394433243417, - 24.941906904354926, - 24.941702376449925, - 24.959779052969566, - 25.029122298341548, - 24.883939743262527, - 24.97015133068861, - 24.899018921349864, - 24.958895203341, - 24.87215525935889, - 24.874235020258343, - 24.876129156842033, - 24.894623905686586, - 24.90535120716182, - 24.90257407611969, - 24.962642082946957, - 24.908378811097194, - 24.90570037514679, - 24.99910207218809, - 25.03765231097641, - 24.98757373736835, - 24.972680424572598, - 24.94469203407912, - 24.984789535251423, - 24.977616814631553, - 24.987730923721045, - 24.943497610840094, - 24.909484769518237, - 24.97933934948147, - 24.977810335667897, - 24.937822383214687, - 24.95623752586671, - 24.99041489896281, - 24.964959072099894, - 25.060695389378555, - 25.035088034599585, - 25.04038122533989, - 25.09783134263874, - 25.082566127910916, - 25.131485651781446, - 24.963209377371186, - 24.92174352386882, - 24.982707714325887, - 24.941771515606256, - 24.95729601871485, - 24.97500604545669, - 24.977067232427665, - 25.016557822157466, - 24.97955287460023, - 24.96403987547254, - 24.982577787115467, - 24.9934040051116, - 24.866155100419572, - 24.875895412921505, - 24.879652942497472, - 24.96817919343939, - 24.904414666938486, - 24.92859153156401, - 25.09342626569954, - 24.961695741847514, - 24.933343922407794, - 25.00463088462258, - 25.0117429397055, - 24.980525180309, - 24.958289266700298, - 24.967289876179716, - 24.899792673029886, - 24.86597915683981, - 24.846087033939767, - 24.832394105942587, - 24.840395547595094, - 24.85339521755604, - 24.95520910523202, - 25.005762682540446, - 24.93078122097207, - 24.93192613441919, - 24.965422815429527, - 25.000611402234593, - 24.927985650049152, - 24.851955180158658, - 24.939611235832054, - 24.985600544507296, - 25.02277004199167, - 24.98113599014664, - 24.98204970114709, - 25.0137985573432, - 24.917344619088674, - 24.952564113501612, - 24.93995297619037, - 24.93077637381127, - 24.949915579226037, - 24.978010172333544, - 24.902540399684696, - 24.970954861077516, - 24.898567695463157, - 24.997322058881547, - 24.973674547357206, - 24.920937845678353, - 24.918597210073635, - 24.91532053118864, - 24.906553315539732, - 24.98849053030475, - 24.969608796090306, - 25.022483758427697, - 24.968244587615246, - 24.923511558720563, - 24.94914898817739, - 24.908294514638605, - 24.900307936185367, - 24.978007494547683, - 24.920176374108557, - 24.978278796211825, - 24.97495809742516, - 24.99472013726777, - 24.985371712435736, - 24.935099475476044, - 25.042274094853205, - 24.99699980989561, - 24.992324627517824, - 24.905282641860016, - 24.93001785477339, - 24.981374822557182, - 24.94314976286741, - 24.980741115678413, - 25.049231405753027, - 24.991671192607818, - 24.903491249375207, - 24.92174977813584, - 25.0011322175502, - 24.98935255176685, - 24.98932276080121, - 25.058951149513923, - 24.9702092980906, - 24.922961278609485, - 24.936244264725488, - 24.801425264098427, - 24.88948638665274, - 24.927022645609647, - 24.952885767766638, - 24.964827244154392, - 24.983546236657766, - 24.884513516654394, - 24.917431986119567, - 24.91623717512827, - 24.891372658733374, - 24.87540798248002, - 24.98267158138257, - 24.905287830359498, - 24.95136334757803, - 24.93330121646582, - 24.913820940656663, - 24.922071104443468, - 24.941398618559703, - 24.969855417427, - 24.986387436724094, - 24.975276144679633, - 24.95391076530153, - 24.973115037078443, - 24.908756286456395, - 25.04560812667072, - 24.957546120311115, - 24.967943085138778, - 24.946498595223233, - 24.891142334330837, - 24.91557138997621, - 24.91806180868091, - 24.979479605457357, - 24.952574940899005, - 24.935631959310292, - 24.870105424005416, - 25.03270081668371, - 24.877123447023866, - 24.959536145151272, - 24.90317253305085, - 24.947548099066683, - 24.97719103657304, - 25.00110455045807, - 24.98787300938986, - 24.96407657750624, - 24.866373312580244, - 24.970271408473273, - 24.990766958015378, - 24.977014768318618, - 24.919616966757204, - 24.96640939700864, - 24.927566974304483, - 24.88078001480657, - 24.89794429295906, - 24.8767963682226, - 24.893640415652357, - 24.96578656998959, - 24.96450962792395, - 24.9316060575795, - 24.931890591212003, - 25.028829998430773, - 24.967869718892196, - 24.985165966028724, - 25.017415229640445, - 24.972851144293713, - 24.97774298029874, - 24.896842593522077, - 24.93933595679554, - 24.958672478461004, - 24.96222347235448, - 24.945256393122712, - 24.862236341997836, - 25.01813022573255, - 24.877565288865974, - 24.912319391344354, - 24.935853839330434, - 24.922846180434796, - 24.944321968239016, - 24.867567962014768, - 24.93198275792843, - 24.915024140493607, - 24.954607660115848, - 24.912783558486744, - 24.97741930411909, - 24.899329690630644, - 24.941910495028505, - 24.92142435800187, - 24.894014925017377, - 24.912091080567677, - 24.955565860201528, - 24.933729771261177, - 24.923111639125924, - 24.925956293291755, - 24.928617346177006, - 24.99062277179919, - 24.894364980623372, - 24.910869513845313, - 24.862741182593894, - 24.87131923276577, - 24.85543852344947, - 24.88328633451406, - 24.8187721791123, - 24.950931161416996, - 24.93818064432122, - 24.968330167342735, - 25.040809182525635, - 25.047732104662483, - 25.052096132891016, - 25.090000478297863, - 24.974681005553407, - 24.90548419417873, - 24.88924067690693, - 24.83841707320509, - 24.92298674725503, - 24.93471013798019, - 24.94179338724657, - 24.890247091467323, - 24.91430256026252, - 24.91238786134286, - 24.966789986950893, - 24.949277777413432, - 24.910134189172727, - 24.943641824469122, - 24.946712384049412, - 24.947217988919817, - 24.930190400565813, - 24.912618485268965, - 24.933757159550396, - 24.910551663253806, - 24.937022658724338, - 24.938248913664125, - 25.005791123468487, - 24.92692697073221, - 24.902912754099773, - 24.884357584323965, - 24.920139069638488, - 24.954908710331352, - 24.88182919449993, - 24.929075265071504, - 24.856717477654527, - 24.946736365960746, - 24.94762713708959, - 24.90296367616083, - 24.93915579232562, - 24.979126263189656, - 24.977700909429245, - 24.974150294616592, - 24.912866195251326, - 25.00941823627005, - 24.876463704514215, - 24.862499576718903, - 24.93200252578443, - 24.960831932663368, - 24.901605583911785, - 24.94044913380749, - 25.043144095471284, - 24.99182332510555, - 24.947811942618415, - 24.910851164744045, - 24.82165231973452, - 24.811537197620947, - 24.93459000149725, - 24.88844826528672, - 24.876409108144138, - 24.912289666846362, - 24.97670420183863, - 24.96880920345281, - 24.94981277905779, - 24.93950591646052, - 24.9297868847737, - 24.898579803583413, - 24.89859931871863, - 24.92002338474444, - 24.93348561774574, - 24.897881210080058, - 24.914921267772804, - 24.959326448440777, - 24.953292065752382, - 24.917660014728263, - 24.963625117165854, - 24.96724666043481, - 25.017625458527696, - 24.975994887852323, - 24.97335438088733, - 24.964374745424443, - 24.894509147130826, - 24.937906526348474, - 24.97609209149456, - 24.989662026966375, - 24.96783421055737, - 25.00919243481346, - 24.970369267773457, - 25.03818139701969, - 24.877459368928022, - 24.850086590563528, - 24.866904981173796, - 24.97928985257992, - 24.952516277129842, - 24.965393053201556, - 24.998469838662245, - 24.925711728977333, - 25.051514556850577, - 24.983670015367295, - 25.02095719914232, - 24.997121237588402, - 24.977330449955573, - 25.00698574502541, - 24.98730873731398, - 24.939936627930834, - 24.97120820889767, - 24.933601738948674, - 25.0118497057911, - 24.95445765971231, - 25.030513088841538, - 25.000101873475472, - 24.97823669198261, - 24.95216153170761, - 24.907507226163524, - 24.935077487191208, - 24.96498266505612, - 24.879001985797032, - 24.976085649170404, - 24.9023165604998, - 24.85463216651646, - 24.88092984107994, - 24.953505009647458, - 24.92232190718825, - 24.91401384236968, - 24.96906420205199, - 24.909144640177495, - 24.883519633636844, - 24.920282565481553, - 24.89602827962237, - 24.941371308330325, - 24.915416131799578, - 24.961937286599806, - 24.96093114587385, - 24.934429527534945, - 24.893173890356756, - 24.962458473911223, - 24.89173735715001, - 24.94363065251329, - 24.959826282141364, - 25.02598654220069, - 24.96989072936372, - 24.965915930909667, - 24.971465576111164, - 24.944666397061194, - 25.01663895151981, - 25.009084424706604, - 24.936775865046403, - 25.031527604246378, - 24.931636395445285, - 24.85276090992469, - 24.89237439892917, - 24.836995369846296, - 24.931493374337585, - 24.934567351821848, - 24.8818067487938, - 24.957580125287933, - 24.99075125306172, - 25.181990911626688, - 25.04921212728679, - 24.948106854195323, - 24.878460552940837, - 24.971178140716606, - 24.850757251514924, - 24.82952277824819, - 24.960539702022736, - 24.984913200726304, - 24.942844150692075, - 25.040430252738208, - 24.944064615699254, - 24.94689683940325, - 24.961550681587603, - 24.931541009688377, - 24.938367454451523, - 24.926828410018196, - 24.93928849033717, - 24.92048404662939, - 24.967841579099307, - 24.91964766612987, - 25.029845978784365, - 24.962355120409697, - 24.85178818016598, - 24.83060681081077, - 24.897379721039275, - 25.018571741764404, - 25.002015338214612, - 25.007684763669985, - 24.90343492994691, - 24.907762738484397, - 24.766790059400996, - 24.906907118938257, - 24.900353690610505, - 24.88122101601993, - 24.896579821135816, - 24.958097796213305, - 24.99025147574038, - 24.887548393111928, - 24.92161533511032, - 24.900895273223078, - 24.934494083222532, - 24.8907479914983, - 24.87471127754975, - 24.92432683808967, - 24.96759703577903, - 24.910712864319983, - 24.913855681079077, - 24.99556371356019, - 24.906598925107403, - 24.974703678904643, - 24.981450409247635, - 24.966953024192073, - 24.996106957218906, - 24.97889916858349, - 24.906226300821924, - 25.006010464177145, - 24.9176305272366, - 24.943722126119997, - 24.955926510653242, - 24.93558209971825, - 24.923906976278385, - 24.932229910331124, - 24.92113314524095, - 24.929677750295184, - 24.935735667735972, - 24.96419435964048, - 24.98745194579012, - 24.926551736206196, - 24.960555161835195, - 25.058216831163797, - 24.978409003794482, - 24.93593652177112, - 24.90000631579121, - 24.861975857741, - 24.91669001696073, - 24.95646567192498, - 24.9447111466135, - 24.942215355033607, - 24.922427602246465, - 24.894342440953906, - 24.88627969060652, - 24.940655972325132, - 25.020655280353083, - 24.881044303731514, - 24.836251244094264, - 24.85349277857314, - 24.945636052055804, - 24.956852415554085, - 24.90845446258639, - 24.960762443307956, - 24.966144687175138, - 25.0071973154025, - 25.04837767189883, - 24.948466860002434, - 24.816957120561955, - 24.801203961206507, - 24.889135123111966, - 24.98539487370939, - 24.975007459231104, - 24.836911023447854, - 25.005729220844223, - 25.017775182888172, - 24.970747916141697, - 24.9406570134553, - 24.93738412325908, - 24.922207718632272, - 25.01182950666114, - 24.99655636958169, - 24.982012293408232, - 25.03860389523844, - 25.04073584391442, - 24.975598520187773, - 25.017668883727872, - 24.94768504768602, - 24.978343498396377, - 24.969163963002927, - 24.965300044720237, - 24.96849660927412, - 25.074224656403224, - 24.942640801944165, - 25.011190408870604, - 25.016768707377842, - 24.94910068325059, - 24.880437558701324, - 24.948694684409777, - 24.99688393422209, - 24.95123519738672, - 25.009320250103034, - 24.955128682436367, - 24.906797206988088, - 24.942034892396823, - 24.943486018307354, - 24.9123225731731, - 24.922580249831313, - 24.85480623615265, - 24.881982294269307, - 25.044866069510018, - 24.892412831874097, - 24.935204124800933, - 24.90258381253528, - 24.913498964534238, - 24.980627197816563, - 24.995346799532904, - 24.99671398095382, - 24.919672083532596, - 25.023149697266664, - 24.967447182543246, - 25.00261635684338, - 24.917298994693596, - 24.94807717240311, - 24.919949793267428, - 24.885020364369577, - 24.880883023707558, - 24.969089554714913, - 24.927094674556535, - 24.822536746935533, - 24.941525471386452, - 24.932021334842048, - 24.849243516218415, - 24.824245927102194, - 24.946827801319778, - 24.95091897645463, - 24.96480146716854, - 24.94569695549626, - 25.062078746128165, - 24.970689863982358, - 24.866416432738475, - 25.043596612103457, - 25.08544391897324, - 25.063693137956847, - 24.956712767023625, - 24.897306263503197, - 24.91562734886736, - 25.06625373238279, - 25.04092858885113, - 25.02035512735619, - 25.049338983374284, - 24.92555620062514, - 24.956683501280615, - 24.955316455990015, - 24.86762903486334, - 24.940971119723816, - 24.959977824570785, - 24.96074088197384, - 24.987815477646492, - 24.9648894430932, - 25.01411180481328, - 25.013882306297486, - 24.932622775113202, - 24.99696466022821, - 24.954722573745713, - 24.98718954236032, - 24.91120062895751, - 24.974941452774278, - 24.98228066772561, - 24.892269546397817, - 24.972206014579847, - 24.959838572092693, - 24.92628418011389, - 24.938671473923193, - 24.9647537861623, - 24.965818058984667, - 24.95564035357166, - 24.94582030233831, - 25.024984164809965, - 24.951973743246903, - 24.964071844946993, - 24.943858481464815, - 24.956497890068675, - 24.93977480044702, - 24.874386293053774, - 24.99823414826325, - 25.019349268451208, - 24.909724000107254, - 24.856572271731217, - 24.89781273727351, - 24.88887315789121, - 24.904981272125063, - 24.965320587675173, - 24.98902766311761, - 25.006521922524982, - 24.997483639644862, - 24.92257151040882, - 24.98215963572614, - 24.89031006867405, - 24.94172835449542, - 24.987796442864116, - 25.040247515466547, - 24.983440268037604, - 25.01377027603461, - 24.958588656947207, - 24.95394794050887, - 24.92451731258575, - 24.929494456687877, - 24.954053930867445, - 24.944536003660684, - 24.985510378931295, - 24.924864517603435, - 24.8619030472083, - 24.947559121335733, - 24.914261533844194, - 25.01783734617279, - 24.946272127693266, - 24.9008018982011, - 24.916754135662735, - 24.874981070489056, - 25.003296986348985, - 25.031155634257104, - 24.96346088683967, - 24.91187904111294, - 24.904293248371836, - 24.88266434756001, - 24.86312467041204, - 25.014052307209013, - 24.962726455475742, - 24.948961967828193, - 24.948125935136467, - 24.87936465627319, - 24.98261787868458, - 24.947974036778916, - 24.954945864330128, - 25.01756416209585, - 25.00990022871302, - 24.964850360693823, - 25.002600357902686, - 24.905087242468333, - 24.971756080475963, - 24.97444454993243, - 24.88670910085778, - 24.930048524433033, - 24.912735321622442, - 25.024799953380906, - 24.976958271731604, - 24.89415799271812, - 24.8324038691917, - 24.937233942145753, - 24.916740335134943, - 24.935434280356986, - 24.91970887519248, - 24.905477252046396, - 24.94771309343114, - 25.025061721415625, - 24.98509120126533, - 24.879927099441936, - 24.900321096666012, - 24.986385557519462, - 24.9917068124183, - 24.98619428643164, - 24.975474322667576, - 24.910929926548658, - 24.916427663538403, - 24.840220827686824, - 24.915634331038305, - 24.83182479788214, - 25.035093176829015, - 25.01674356684601, - 24.944199579878827, - 24.935979929613097, - 24.81918380407216, - 24.8692154260176, - 24.997562772069216, - 24.925167504433478, - 24.930848271519906, - 24.94497358645543, - 24.869764789818404, - 24.92531843780609, - 24.956301601172882, - 24.949582412607924, - 24.94778484666991, - 24.955135966601027, - 24.93217380433466, - 24.908589652237424, - 25.014512203750286, - 24.96019500651381, - 24.94186540204981, - 24.965646633086635, - 24.966565306175745, - 24.942142199343525, - 24.983565249273088, - 24.912963468803838, - 24.94726925196312, - 24.952843628188894, - 24.943325125425986, - 24.87842551373828, - 24.962100525964185, - 25.025128488952312, - 24.9615220631352, - 24.961767196725425, - 24.915667760347414, - 24.9515196440938, - 24.929381914365557, - 24.923587545947626, - 24.93964068001874, - 25.02004565238459, - 24.95491289512401, - 24.918039966322716, - 25.001820900546974, - 24.993784780305095, - 25.008867346494974, - 25.04514016386613, - 24.88871881098403 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 0", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 11.345262568849508, - 16.44956011218482, - 15.26211248520174, - 14.979043769023317, - 14.949376971928759, - 14.960975710513326, - 14.994864995761189, - 15.014816550117333, - 14.954330866440056, - 15.012449510936847, - 15.077413571312764, - 14.957799587791893, - 14.98058031211174, - 15.051513417881223, - 15.032396757560479, - 15.045362459451749, - 15.081928768036299, - 14.967084173482665, - 14.955366317392373, - 15.038414117907125, - 15.060795920980093, - 15.050599715498445, - 15.014926081629474, - 15.116368748376548, - 14.992760015780183, - 15.058494276305675, - 14.98053568685065, - 14.954010928237029, - 14.97227857981823, - 14.969097377587737, - 14.969521240052547, - 15.023471855724976, - 15.004455709068973, - 15.019845718544067, - 14.990144939077243, - 14.985479317700475, - 14.935128414892397, - 15.006215683431856, - 14.896982600417523, - 14.927515993211319, - 15.010288338364418, - 14.96870423374894, - 14.96522796463365, - 15.03772071212948, - 15.005183706598258, - 15.032939698667862, - 15.054691285969742, - 15.053198514292896, - 14.972119747622447, - 14.96777286145804, - 15.016697168736902, - 15.094876585559923, - 14.931433343409255, - 14.998263561372868, - 14.992695243795144, - 15.058786641527094, - 15.064507960119375, - 14.96267623818029, - 14.98784347905611, - 15.023113801309208, - 14.970911174537662, - 14.914916849836786, - 14.925143751088946, - 14.976751536051982, - 14.95264824493179, - 14.997107690453097, - 15.014652719388334, - 14.975925041057184, - 14.921227524538898, - 14.946112177425528, - 15.02036856127001, - 15.04327681416604, - 15.008997357473904, - 14.977844487894416, - 15.007996414968579, - 15.045022926433122, - 15.015850692178596, - 15.000613187027671, - 14.967874223392739, - 14.985463104543625, - 14.992172822699324, - 15.018634280180676, - 14.96879187033338, - 14.996592684886785, - 14.978696937568554, - 14.967116977466038, - 15.001089923447983, - 15.014235980984799, - 15.015463407429854, - 15.001669310879363, - 15.049890732085178, - 15.026248108636189, - 15.018450875331935, - 15.010809355129878, - 15.08742155118053, - 15.055417573482769, - 14.986838004698026, - 14.998868560646354, - 15.031210686029732, - 15.014057300992926, - 15.111231339086713, - 15.028776441109768, - 14.981567609013137, - 14.995167863171641, - 14.973021661870426, - 14.959196894401702, - 15.007462308690348, - 15.036331661285766, - 15.007040419741454, - 14.93616978948002, - 15.006321019203238, - 14.991908152532869, - 14.995213142727883, - 14.988448767860698, - 15.00815848257681, - 15.013893203225505, - 14.942833210901593, - 14.944631750622428, - 15.027323087876166, - 14.993149715703916, - 14.935135020021361, - 14.913670679463602, - 14.889943342634503, - 14.972318713334689, - 14.969050576226357, - 14.965255711776305, - 14.98288213472464, - 14.980831496329179, - 14.934477512511428, - 14.99339582148568, - 15.015092866741833, - 14.942701388704181, - 14.977361724171685, - 14.977867619776147, - 14.964807398442037, - 14.918625659819716, - 15.039126958212394, - 14.994792693431917, - 14.996712929660976, - 15.038236461179201, - 15.053486561715545, - 15.045043501636044, - 14.975218688884894, - 15.00686478287148, - 14.971317472855123, - 15.010065653082412, - 14.921202896132229, - 14.894827470157297, - 14.995302427133383, - 14.955205057109756, - 14.992326894700382, - 15.088388412748932, - 15.035538853644319, - 14.961237823717653, - 14.999889825413765, - 15.0374550222036, - 14.988264058709172, - 15.020865282176363, - 15.00971415239303, - 14.953101939948978, - 15.101228659969605, - 15.031561708862176, - 15.044688694221334, - 14.984066538208918, - 15.039044548864336, - 15.009691555095857, - 15.014396838780554, - 14.999893926213979, - 15.060289052330807, - 14.998098722271738, - 15.045858919004115, - 15.009909208412937, - 14.977557137715438, - 14.949832465246208, - 15.001050575453476, - 15.02131040833751, - 15.01036220725552, - 15.094316034464516, - 15.080185708727226, - 15.066494525536163, - 15.05420170706012, - 14.981760593435222, - 14.99245635080382, - 15.011989706118397, - 15.040456795993235, - 15.013026839195458, - 14.964979619477864, - 14.970410170412164, - 14.976582398346661, - 15.033751487326773, - 14.971472135650945, - 14.935838216672199, - 14.942280112648385, - 14.993216960439295, - 15.043989540649902, - 14.986972666121135, - 14.983078868428153, - 14.923878213617934, - 14.972905685574673, - 14.974504857718394, - 14.982729453606856, - 14.988138156680673, - 15.009343445132385, - 15.03553041996813, - 15.015353395467121, - 14.981875629945923, - 14.943855750082683, - 14.96000925036073, - 15.059383858212334, - 14.979639453958503, - 15.030320695948223, - 15.064619368342719, - 15.024942170094342, - 15.009850915031048, - 14.909894875324982, - 14.97317349540632, - 14.939062405427439, - 15.015588687686675, - 14.905571683773442, - 14.864914084251467, - 14.863332873453349, - 14.969898376355713, - 14.994640732258311, - 14.981839647112874, - 15.055851389389034, - 14.948348313174742, - 15.03283315902467, - 15.11746572399681, - 14.998276997003599, - 15.010234077018799, - 15.004920449853676, - 14.970814738761366, - 15.004576043045015, - 15.025145069738494, - 14.976616147159056, - 15.001692838189218, - 15.073800590005192, - 15.011898515612792, - 15.027359269812651, - 15.074843188619312, - 15.021917260704106, - 14.958456723070626, - 14.945879626816216, - 15.033902968257717, - 14.962589690700828, - 14.978710900029602, - 14.975839870635555, - 14.91654554025687, - 15.029790467379268, - 14.985008783835033, - 14.95445498542891, - 14.982077944839878, - 14.970788656539556, - 15.036529159263576, - 15.07106465693603, - 15.020606921795554, - 14.996576226594199, - 15.03814054624219, - 15.034232404447193, - 14.929963434557164, - 14.95918616945847, - 14.965502512811721, - 14.96909024949976, - 14.978276444384376, - 14.991396760890868, - 15.012640315017833, - 15.036287634575238, - 15.02773410168465, - 14.968271018482348, - 14.932372138430603, - 15.045555874867262, - 15.027161246300684, - 15.108967869544768, - 15.015371273674493, - 15.050782799055758, - 14.965840635042968, - 15.02790645694957, - 15.029271544066104, - 14.907737730837507, - 14.967756195018161, - 15.025163515660513, - 14.980816399919183, - 14.948244620726015, - 15.002559448377092, - 14.965674929399286, - 15.02572521947009, - 14.954773667184046, - 15.057172181417359, - 15.117129615162504, - 14.989852355823551, - 15.109227186590973, - 15.045599520398191, - 14.980892108424902, - 15.003985702723613, - 14.957117683542336, - 14.987247356018134, - 15.078690659421797, - 15.076649465453977, - 15.02062977739572, - 15.045403803564653, - 15.040737292839529, - 15.039417639693417, - 15.014207782766059, - 15.050002369765975, - 15.018912644577606, - 15.01548128065221, - 15.018996306069333, - 14.992627016976792, - 15.00580265801968, - 15.0047268426017, - 15.033109999042628, - 15.004455676958761, - 15.023423147918713, - 15.095572029628405, - 14.98539717978075, - 14.985056441208043, - 15.04352260655964, - 15.064362164656474, - 15.051542273701557, - 15.032554680173753, - 15.01117232668955, - 14.978470287904644, - 15.009219201131051, - 15.008544704230328, - 14.994031326051122, - 15.024314083803036, - 14.987434640704087, - 15.031005825429267, - 14.983755293060694, - 14.96116272991613, - 15.01644590299869, - 15.011398213738078, - 15.012385847946943, - 15.021454352708181, - 14.969813531444002, - 14.882175727170232, - 14.951809881319447, - 14.979260966468436, - 14.99812264522187, - 15.001924373551585, - 14.944713505869938, - 14.975083854888174, - 15.018036159743339, - 15.049399162892408, - 14.969852644842108, - 15.029359811262864, - 14.985488309209563, - 14.936622177578796, - 15.01034443083054, - 14.982963266234437, - 14.983473466199976, - 14.932728252672714, - 14.949361338771611, - 15.045812607539636, - 14.904766250714655, - 14.98672852504832, - 14.998037117411185, - 14.945514844196131, - 15.09301381851098, - 15.093347062075262, - 15.008706478265632, - 15.04617917339129, - 14.910402159202413, - 14.975864953022102, - 15.00716328222112, - 15.056316555330847, - 15.007623079577947, - 15.03693111121329, - 15.07014492480753, - 15.08914920450432, - 15.012097715434459, - 15.012983352136017, - 14.995093832222532, - 15.048873420934422, - 14.999387307086458, - 15.001464557182203, - 14.982286912296546, - 15.002782135508678, - 14.902042671335131, - 14.966975571951133, - 14.974942209167775, - 15.02112875764266, - 14.989396325925364, - 14.956949182672838, - 14.991411176311813, - 15.007775249156373, - 15.00200557959046, - 14.992796971129371, - 14.988906898596474, - 14.970701491999568, - 15.038404266468001, - 14.937463937387713, - 15.018160845299581, - 14.982481059913425, - 14.966920356289396, - 14.943696315116267, - 15.035486032832813, - 15.01681307885355, - 15.07924461708538, - 14.998026844261526, - 15.004583919156135, - 14.966276363539675, - 15.048428870761688, - 15.006588418309052, - 15.080401025544798, - 15.10346244304578, - 14.992420827292076, - 15.001259818065881, - 15.008285075702066, - 14.965602369040262, - 14.963711756396341, - 14.964221014093255, - 14.91911735465887, - 14.963532312912573, - 15.04896300987003, - 15.023355387076593, - 15.016155038421903, - 14.974051557963927, - 15.02812634796434, - 14.980402541093147, - 15.04053010513985, - 15.021729700667587, - 15.116273502716526, - 15.007241655655665, - 14.965859231256193, - 14.924516671710965, - 14.975423040770218, - 14.98058498693544, - 15.031908117143882, - 14.997916531350164, - 14.988111876799694, - 15.019822543891408, - 14.959748461058842, - 14.989350910636679, - 15.023175233343364, - 15.061527314782111, - 14.994822254419006, - 15.034551416411334, - 15.070948607605244, - 15.019924396539633, - 14.998952410823621, - 14.989408615512646, - 14.980777049973456, - 14.965133291205028, - 15.031446994978428, - 14.965921185796676, - 14.997519187830465, - 14.988116158987639, - 15.064167956992776, - 15.030265219669062, - 14.998513613977096, - 15.062960482200872, - 15.025146189146312, - 14.96085214039536, - 15.04284320552516, - 15.016384866716768, - 14.968534020223737, - 14.93821044330642, - 15.005344068643883, - 15.046136521575859, - 15.05508251633211, - 15.03759158782223, - 14.944730976368016, - 14.966787072577649, - 14.969187440325678, - 14.964654067503568, - 15.01255765351169, - 15.00028400650454, - 15.011500316358838, - 14.968700844257238, - 15.038349203804612, - 14.995184001790133, - 15.006379599943335, - 15.049783683402401, - 15.00949198036373, - 15.000881027149282, - 14.996307997967211, - 14.958581257097427, - 15.121530877103666, - 15.10567126493732, - 15.08903777269271, - 15.040402495544006, - 15.018467244464224, - 14.954824378400609, - 15.025224829991508, - 15.022365803421268, - 14.999232967589514, - 15.007363450735358, - 14.967220726778457, - 14.932830573420153, - 14.95281793687937, - 15.054119721519616, - 15.101302006939457, - 15.004514906587305, - 15.069736062541256, - 15.015924440529234, - 14.934744042750198, - 14.955779608996938, - 15.002015732997215, - 15.068135643274776, - 15.0349469045605, - 14.989484210256926, - 14.960574859401595, - 15.03537819888716, - 15.03201452951901, - 14.992694169388086, - 14.975659444304464, - 15.04163225136513, - 14.984538591804128, - 14.951827848196698, - 15.010908585570395, - 15.033941164743487, - 15.034408309097074, - 15.075389274964298, - 15.004837181682667, - 15.057899149272178, - 14.99906012794665, - 15.004872709472213, - 15.05445657316956, - 15.052349926183343, - 14.95528698896383, - 15.010749483611287, - 14.915871483939684, - 15.008407408837838, - 14.979901571019724, - 15.00917127383855, - 15.05934288685939, - 15.012241036349359, - 15.060385534638632, - 14.972917360333637, - 14.910637623324323, - 15.008111953658325, - 14.972981912162298, - 15.069742491087332, - 15.0176402543595, - 14.95886150085714, - 14.97413755529154, - 15.02234727108734, - 14.994640870189093, - 14.996398446301704, - 14.940204227307838, - 14.981083728420845, - 15.006346154783909, - 15.00972621730159, - 15.028941324750749, - 15.041080054973593, - 14.955873020629793, - 14.991956274109942, - 15.001790506069282, - 14.987793437252309, - 15.033221511008637, - 15.017204158394602, - 15.03434583527744, - 15.018820872001768, - 14.924639183859895, - 14.9718097937268, - 15.020800032634408, - 15.015020952702132, - 15.003270264583179, - 15.024331932116525, - 15.074868824676136, - 14.968166005603548, - 15.011168998989936, - 15.035062687774056, - 15.029018402621288, - 15.005399839072425, - 15.043862596568244, - 15.010556634988228, - 14.954076526479282, - 15.015116127455329, - 14.961493466013817, - 15.075582749961278, - 14.983106807189968, - 15.008787204244834, - 15.014887175118007, - 15.025355611828923, - 15.033023285005138, - 15.050437561661962, - 15.040272933030138, - 15.009670995651248, - 15.00712378601085, - 14.98301262974629, - 15.04617785302975, - 15.036383626784339, - 14.95439805185784, - 14.978992175505548, - 15.03621300040613, - 14.977007467333179, - 15.008502462573725, - 15.099472614971246, - 15.104395358176207, - 15.072987908197351, - 14.980137381447394, - 14.99025654210617, - 14.97269750408265, - 15.00555166496943, - 14.99931160927163, - 14.998898611142593, - 14.971275183906156, - 15.01630979395933, - 14.976264301214615, - 14.946249096912798, - 14.943000505683559, - 14.96924317597902, - 14.962588019607201, - 14.902889627863273, - 14.986973586638792, - 14.932926681823014, - 14.886810923077563, - 14.958755999409513, - 14.965108184223743, - 14.986793331869443, - 15.05428535050533, - 15.047090218250625, - 14.993829535649356, - 14.978949693978988, - 15.03288760754943, - 14.96604336926223, - 14.985990837178399, - 15.002059256734837, - 15.03669394379741, - 15.057997791882034, - 15.079252297016827, - 15.035030285762701, - 14.975941676469285, - 15.012014477424854, - 14.940052101615466, - 15.032965120451745, - 15.061994586312377, - 14.97373893637356, - 15.037023356704971, - 14.95678270925576, - 14.943248078942423, - 15.002533120371504, - 15.033064570954826, - 15.020346206139198, - 14.884394803189133, - 14.98638935065275, - 15.053927992272149, - 14.935761801857483, - 14.933993481111536, - 14.952429865811773, - 15.000944817982711, - 15.0222422292391, - 15.01718070200321, - 14.962425501882803, - 14.983563551698523, - 15.022353660050818, - 15.04783988385203, - 14.963886787478648, - 14.985621297574937, - 15.021633117110426, - 15.04578338851042, - 14.974931652666182, - 15.04051151054937, - 15.08890248171083, - 14.930060559542305, - 14.978267606150728, - 15.062071477558094, - 15.015516828850172, - 14.977162367163718, - 14.93381128168662, - 14.8797781245057, - 14.955641781132224, - 15.013380658799875, - 15.003009685743296, - 15.014178144247824, - 14.978568748105287, - 15.01442600765409, - 14.971368229896918, - 14.994821155590364, - 14.94214038819421, - 15.08544151456731, - 15.041680775449727, - 14.981670507618798, - 14.980465655957145, - 15.032267315561041, - 14.999108787984806, - 15.023145050761812, - 14.939234716808702, - 14.98527509804283, - 15.003766477145623, - 14.966857471291304, - 15.008593253828256, - 15.013039004802668, - 14.990641870780868, - 14.970871670342786, - 14.95957273577358, - 14.954991054457524, - 15.018591863573928, - 14.939556025751745, - 15.014375236348524, - 14.96370481083482, - 14.97088745674583, - 14.930916021678438, - 15.02931082747657, - 15.018440399621815, - 14.968603099230467, - 15.021446091521595, - 15.079443730918769, - 14.954386129080776, - 15.01286571190633, - 15.038656631323834, - 15.01645706615219, - 14.9835586266153, - 14.954391276149524, - 14.961436894704486, - 15.003267629585196, - 14.986856226756219, - 14.95734656384002, - 14.986382199100145, - 14.962971185513693, - 14.984379055336328, - 14.942171468116314, - 14.969782953239877, - 14.897648166359048, - 14.988318826094547, - 15.012146345519763, - 15.090920640878133, - 15.004768768308342, - 14.993621040858596, - 14.95306160715822, - 14.974843831209382, - 14.95770188981533, - 14.93182036069083, - 15.036884446115364, - 15.112414621564506, - 15.11182086070787, - 15.03022827603878, - 15.004911184739955, - 15.02696070394593, - 14.927582088268444, - 14.988298064188177, - 15.002664421070207, - 15.01283270792433, - 15.05229297642572, - 15.00685373696769, - 15.048013643049345, - 14.944678193783187, - 14.958997397422731, - 14.96519617436006, - 15.014775831190718, - 15.015105995186001, - 15.039132264320477, - 14.981012412552428, - 15.035802957764364, - 15.029755496152143, - 15.029130840116142, - 14.965515934721568, - 14.934552114296457, - 14.960668833924116, - 15.011526448579875, - 14.982963718672478, - 14.942751876493093, - 15.031291452424346, - 15.060405360951133, - 15.127640297376864, - 15.008202190210117, - 15.031033109090036, - 15.024882277268354, - 15.068329127731785, - 15.00628223175426, - 15.016854141149754, - 15.053409655126435, - 15.038756055741825, - 14.994628045794132, - 15.026918997937209, - 15.013406515854722, - 15.024825236361126, - 14.97689613810652, - 15.00168335806688, - 15.086349602687752, - 15.084849603072149, - 14.892306327945512, - 14.937853476162022, - 15.107886930655553, - 15.008307865993258, - 15.055456966111882, - 14.977277463874705, - 14.978050646080511, - 14.944024777854715, - 14.953325254303463, - 14.945660797785042, - 15.038772282193476, - 15.059056611831291, - 14.990734211786114, - 15.110536952187728, - 14.933827265647123, - 14.98078623834133, - 14.995983764416382, - 14.96251088309764, - 15.001276474002491, - 14.984417080752001, - 15.0066770647636, - 15.055685892964535, - 14.994252041445638, - 15.008260075132434, - 14.905718368791712, - 15.01535322566947, - 14.992209989718857, - 14.989051637112768, - 15.001826455883151, - 15.039817170817527, - 15.04955019044195, - 15.087967412393663, - 15.038102835876042, - 15.01693958008408, - 15.006401575780268, - 14.99885028879445, - 15.033605772369254, - 15.083324135107642, - 15.028839526643138, - 14.966014227644473, - 15.056951476926502, - 14.972342412385299, - 14.93806791239519, - 15.053486620121351, - 15.017548502884148, - 15.02852337096725, - 15.006835310878198, - 14.985519324641361, - 14.93021599969019, - 15.061068566770919, - 15.0574427454719, - 15.023567959993267, - 15.053725147738843, - 15.00822973512172, - 14.936676807062645, - 14.9426017857664, - 14.98482155328078, - 14.99918753827278, - 15.024114591056627, - 14.95374567013475, - 14.914938258958875, - 14.934814989412176, - 14.940766407005595, - 14.97429312865456, - 15.042483057721407, - 15.044131581108527, - 15.03970731876281, - 15.084110219642588, - 15.045897716418375, - 14.955681689296144, - 15.000546666767027, - 15.030767753928284, - 14.95421938355282, - 14.958611301162525, - 14.947816837564005, - 14.941215589478958, - 14.975859777672783, - 15.053994327635348, - 15.058242054932627, - 14.932124348819386, - 14.918791885108716, - 14.996467801071455, - 15.056007611917476, - 15.015801759111945, - 15.025220515476931, - 14.992598046844478, - 15.08792848976437, - 15.050513534296348, - 15.011054298830075, - 14.947453891843724, - 14.949602149974403, - 15.004269705213348, - 14.96627513162084, - 15.067778702088479, - 14.994622108287617, - 15.020426220096114, - 15.030639521649585, - 14.956827871917092, - 14.900752254171529, - 14.921432705392359, - 14.980577614546108, - 15.008665707958702, - 15.037665031194752, - 15.059970612425033, - 15.003053601294576, - 14.995731744338395, - 14.970304246352152, - 14.966993461196475, - 15.074922111965064, - 14.96192511556144, - 14.953663244259054, - 15.155504921118386, - 15.051692249775488, - 15.119429865595778, - 15.002027178467353, - 15.101721428777775, - 15.052986387460656, - 15.04592233489608, - 15.005642303170545, - 15.064233054019567, - 15.027293894418202, - 14.96594694546712, - 14.973687511038134, - 15.031133957667159, - 15.00525690618089, - 14.979007139881553, - 15.022478048048919, - 14.99051071639505, - 14.9679512385279, - 15.012285177987701, - 14.984853566617229, - 14.96238615257948, - 14.961376513969768, - 15.02689037014525, - 15.033049909464495, - 14.989244762959366, - 14.960550930329601, - 14.943814422568977, - 14.977782606149601, - 15.004084116046231, - 15.002492737544525, - 14.969642394674777, - 14.999292561993933, - 14.966638852068805, - 15.0208714241427, - 15.023909401379342, - 15.025074906521727, - 15.037674382612867, - 14.995253684542348, - 15.026759613623716, - 14.975172020088324, - 14.996780467857489, - 14.971005674644788, - 14.936694836605833, - 15.041329713820643, - 14.983137708191581, - 15.033317796754515, - 15.036447858868803, - 15.03848942425299, - 14.989831668218299, - 14.926788359566105, - 15.018569761957858, - 14.991271340697068, - 14.993223115711917, - 15.075208457353929, - 15.08260922582938, - 15.025194392406124, - 14.982951437708985, - 14.966676425461138, - 15.015869423672886, - 15.050212810573946, - 15.014429957785588, - 15.02086111353277, - 14.924141708860951, - 15.043251809330405, - 14.89480779254903, - 14.894512700026647, - 15.024774087273338, - 15.023053123761082, - 15.09243814873417, - 15.03510585258712, - 15.025379358890854, - 15.029639707981017, - 15.000591035701799, - 14.986280931141623, - 14.980079226050282, - 14.937752758735378, - 14.997825963898858, - 14.960058342032543, - 15.003607605958756, - 15.009738707600743, - 15.045110693563661, - 14.971668893243296, - 15.054992768760803, - 15.033634466371593, - 15.041417742615332, - 14.946267045093464, - 14.962477403660767, - 14.991835715397183, - 15.063716614291362, - 15.087106459034581, - 15.00448934150371, - 15.009769237530545, - 14.996105237189473, - 15.012725432194346, - 15.029124848150756, - 14.99885147164274, - 15.022516103805568, - 14.993977431984089, - 15.02417036156216, - 15.065539103606211, - 15.01158876726961, - 14.89760247465016, - 14.933128832057857, - 14.965613470805971, - 15.030951368381906, - 14.997580187540102, - 15.021565845301273, - 14.983973466008113, - 15.015209114758159, - 14.968116400862879, - 14.971970621706562, - 15.053529004486192, - 15.07745783335603, - 15.024172440281085, - 15.053519614558969, - 15.01423031907879, - 14.982106644534378, - 15.023191853843453, - 15.094592306122774, - 14.941090792352883, - 14.984979889844386, - 15.005817588571976, - 15.037646742560144, - 14.96267779119025, - 14.954560468522919, - 14.996083627150089, - 15.008892304882334, - 15.000161018440823, - 14.97422780102738, - 14.976923342002605, - 15.020900095018703, - 14.950185276577885, - 15.000955017976425, - 14.980711818029993, - 15.048294559797387, - 15.00903582378383, - 15.0469661169084, - 15.007196135417155, - 15.02125732229182, - 14.941965156039245, - 15.063559832947877, - 15.015763873009181, - 14.977592590571897, - 15.031667971997017, - 15.099771436925502, - 15.036035433437972, - 15.029743404720339, - 14.989904688468933, - 14.94689509101495, - 14.979781760635618, - 15.074619847309467, - 14.9765895422944, - 15.054165618713704, - 14.961317605142133, - 15.057730813300253, - 15.007239294445721, - 15.09831252601734, - 14.95388900379014, - 14.965897302208772, - 15.073679959304773, - 15.108829387354996, - 15.022349680280122, - 14.944018985367277, - 14.93222558564814, - 14.97472660372428, - 15.016079757799895, - 15.059971183909813, - 15.004203998386618, - 14.939697762592628, - 14.964289652660225, - 14.981007629321041, - 15.002867812852276, - 15.02763788323317, - 15.007887739620134, - 14.97529179476676, - 15.03034919748617, - 15.007947346086134, - 15.096372577406555, - 15.024567520335516, - 15.055858130684415, - 14.985132809722339, - 14.988200200792834, - 15.0658858368824, - 15.028769705199027, - 14.992421518774384, - 15.00226017606326, - 15.009684996375862, - 15.051630942473817, - 14.978918237002599, - 14.980518909730645, - 14.956455897570107, - 15.02769592289539, - 15.003232441481932, - 15.016605582509895, - 14.899415740055439, - 14.990181059770624, - 15.034795405687879, - 14.983247251052555, - 15.028517410341955, - 14.988660328355607, - 14.923663619990903, - 14.918274741104229, - 14.93401561946129, - 15.022563610289335, - 15.043354932170983, - 14.944265288174586, - 15.016086703628154, - 15.021074504657074, - 15.004397231130735, - 15.010378653786567, - 15.022816298678558, - 15.08189158514563, - 15.028444259453678, - 14.999953403836153, - 14.951752424058121, - 14.922542280818732, - 14.942670091053342, - 14.983646660055914, - 15.026485678492604, - 14.940602010680829, - 15.024168645794655, - 15.028414119631922, - 15.011053123631397, - 15.051930889577248, - 15.008475338728307, - 14.970227190655141, - 14.955891836808934, - 14.974036286589198, - 14.97704363944331, - 15.009851226165992, - 14.948338523732106, - 14.995885032038402, - 14.869778711750367, - 14.874573938551581, - 14.961478955513241, - 14.959032512702692, - 14.951656390026805, - 14.880622663854398, - 14.918363541979046, - 15.017539710560932, - 14.950073235787178, - 14.923385994379007, - 14.975600558175891, - 14.977524360185141, - 14.995537600736837, - 14.98980732808314, - 14.972004936341389, - 15.029413412388777, - 14.95103532035574, - 14.938522770428056, - 14.91549365193654, - 14.964019293555175, - 14.921656274612694, - 14.91724716175822, - 14.97868090964877, - 15.002936439207993, - 14.97078643106922, - 14.988978954199538, - 15.012036546646623, - 14.947594813093323, - 15.05594390465832, - 15.000932275481249, - 14.972671607059596, - 14.983336689339403, - 15.02684733589731, - 14.996779932221488, - 14.99740803540625, - 15.062055947851784, - 15.035816055315346, - 14.960554560347203, - 15.008835827850994, - 14.934867334605359, - 14.971844200649578, - 14.979550585891836, - 15.109814160155148, - 14.991554216134459, - 14.91764493104305, - 14.96763550169362, - 14.987703434905463, - 14.960987425045017, - 14.959495137329817, - 14.972004122082838, - 15.003870329770887, - 15.005246467956079, - 14.980070145768174, - 14.999609919915452, - 14.98127490977004, - 15.01252098652604, - 15.058818624977702, - 15.027619817746617, - 14.977582690299569, - 14.958976578758747, - 14.955975379353454, - 15.002450563014845, - 14.975853827575843, - 15.010837673410029, - 15.010177833174188, - 14.993558180355608, - 14.98588631695775, - 14.951527822615052, - 14.972327716811762, - 14.991525839417163, - 14.914989941289084, - 14.922226204655075, - 14.963159949117282, - 15.026704251684446, - 15.040962553259785, - 15.02769113124983, - 15.05619924334249, - 15.012379899650549, - 15.079505995284046, - 15.042581276276694, - 14.938876345873725, - 14.934282075955213, - 15.028545050061354, - 15.026855773129263, - 14.990395839354296, - 14.919172307480324, - 14.938168247072857, - 14.920835002718437, - 14.949692023017926, - 15.023807172073955, - 14.982433996405149, - 15.011275450527252, - 15.018163311563862, - 15.028489693092274, - 14.986995763584098, - 14.953475855695135, - 14.985621455001285, - 15.056034260936986, - 15.016106327962273, - 14.987208315770287, - 15.091721152989983, - 15.036520817968325, - 14.97499031917244, - 15.105201977434355, - 14.908616686359423, - 14.976826626194088, - 15.083802419307831, - 14.994879921766634, - 15.007848659272819, - 15.006110116072785, - 14.90279694520503, - 15.034282205663365, - 15.021666286068111, - 15.044958341821093, - 14.989844304592443, - 14.973802640296919, - 14.992269320894804, - 15.009943197645274, - 15.049875142915736, - 14.984483682717707, - 15.013530125738368, - 14.936995937788557, - 14.993709332294198, - 15.022948003093672, - 14.927819379330524, - 14.928134181643372, - 14.913290397528641, - 14.931349152596164, - 14.89741016982711, - 14.973036204318582, - 14.991616224127775, - 15.025818271679205, - 15.089952794716165, - 15.02063471483188, - 15.051006427480216, - 14.986913970284306, - 15.061559516981474, - 15.052303259039252, - 14.91027942283898, - 14.996190888727355, - 15.04690644073317, - 14.951544113477654, - 15.027860425019364, - 14.956811527009526, - 15.0499936089456, - 14.917744620830693, - 15.051447306303773, - 15.02548912114951, - 15.065427295844598, - 14.989210294225208, - 15.051615883652376, - 15.027306784453154, - 15.020055911353714, - 15.010788946497305, - 15.024090951151637, - 14.937930060789599, - 14.993751320277363, - 14.996746595421923, - 14.996920412654879, - 14.920496817246507, - 14.938991760294323, - 14.94968956564135, - 14.952086691429173, - 15.008535273533088, - 14.971370916812301, - 14.984838029736007, - 14.995331178594236, - 14.918293003442887, - 14.96287241490632, - 15.021974978702067, - 15.073580765811403, - 15.047121690851561, - 14.988396624818153, - 15.020104547056293, - 15.005702650568685, - 14.914247920676148, - 14.907075395139909, - 14.861707306626906, - 14.934908590945557, - 15.04765028507603, - 15.02642546376358, - 15.038628217081984, - 15.00058275084477, - 14.99283977526587, - 15.000431023346067, - 15.041516203435467, - 15.055767286439176, - 15.058824547447571, - 14.994144408261134, - 14.909049369707152, - 14.964614742585338, - 14.955358298811104, - 14.897251450514934, - 14.988762254099186, - 15.014556371114894, - 15.017023585932323, - 14.987133226672778, - 15.0245828606455, - 14.974380977922221, - 14.89603264910894, - 15.025012365835531, - 15.016836217263933, - 15.06873769050115, - 14.997297483424829, - 15.009484355946112, - 14.9997594356915, - 14.961006354851314, - 15.029825233368639, - 15.007608849306537, - 15.042358929075705, - 14.956670964017754, - 14.996522709864673, - 14.987090044820055, - 15.005533040927386, - 15.02290213538339, - 14.997889180745556, - 14.984997660084536, - 14.910254699663898, - 14.880648718897604, - 15.017519559477895, - 14.991155733410364, - 15.049111376874116, - 15.07448609133864, - 15.035227812755734, - 15.072802599484262, - 15.021354986190369, - 15.042940762922983, - 15.002421456090353, - 14.964290546933038, - 15.02768820452731, - 14.995229147517477, - 14.994298104204875, - 15.00729191470578, - 14.98136246803001, - 14.916121111813053, - 15.121051919659655, - 15.038662132855928, - 14.941556536555096, - 15.009866651930343, - 15.068014710531218, - 14.978025885943808, - 14.9706832762269, - 14.961808551233327, - 14.973875703706232, - 14.933832896284468, - 14.983102119454504, - 14.981911299856911, - 14.962557323683278, - 14.98016271832569, - 15.03809778944997, - 14.953383797735409, - 14.991307290697621, - 14.961957208336546, - 15.010150012505187, - 14.92494991887635, - 14.967817352305252, - 14.988825803774105, - 15.006257238583904, - 15.0029681878435, - 14.993569698127063, - 15.057277175011887, - 15.028187047526073, - 15.003930701311207, - 15.017405701358609, - 15.013971169492368, - 14.96847698877951, - 14.940547901515906, - 14.97305623972323, - 14.957797217907878, - 14.945492294038733, - 14.992271288391228, - 14.98991941924824, - 14.987592569093456, - 15.031088423233992, - 14.946359120303352, - 14.956562371828332, - 15.023249119736713, - 15.018503729266452, - 15.108053395422194, - 14.973697588874526, - 15.023033916734787, - 14.970393627624277, - 15.005565423533875, - 14.986648385288182, - 14.968921275216157, - 15.057729660173704, - 15.001176558833404, - 14.974851260871926, - 14.947208098369657, - 14.997421263994209, - 15.011386676913611, - 14.938875291844488, - 14.958601807480878, - 14.99305658078545, - 14.951269290470735, - 15.00038669659855, - 14.988157252980473, - 14.97421105514925, - 15.058991347156121, - 15.009081638445013, - 14.963217792304642, - 14.942186592205, - 14.971569932991061, - 15.018635713117444, - 14.960572241193855, - 14.959254461602645, - 15.008275874915086, - 14.998336798955753, - 14.892829122345047, - 14.97545760146025, - 15.066254979117513, - 15.025629994099987, - 14.951510714478149, - 14.933020822825403, - 14.986849789144246, - 15.041011906450606, - 15.065110445920281, - 14.96193671476433, - 15.014857705112089, - 14.97493083121656, - 14.935791357031755, - 14.965793379448618, - 14.996907366601132, - 14.989225535075972, - 14.967366608977017, - 15.086681711016244, - 15.03945699854209, - 14.96654728317716, - 15.024884492977172, - 15.00914709592645, - 14.96381663169903, - 14.929419593829488, - 14.977629338657767, - 14.986343122337805, - 14.945828147412257, - 15.012652540207737, - 15.004129802900346, - 14.939142954166346, - 14.934782330992565, - 14.921213550377034, - 14.959040926912941, - 14.978976532452375, - 15.01313040117808, - 14.991542868999334, - 15.00101828007827, - 14.9966896943413, - 15.036599766345406, - 15.027936713835327, - 15.049994524471792, - 15.019579372075968, - 14.95874207089376, - 15.030654365963345, - 15.005094119937189, - 14.953543392097213, - 14.969047269250487, - 14.96706508953343, - 14.991727440011106, - 15.06262644212787, - 14.986080222792188, - 14.933180591731006, - 14.971715292424772, - 14.989613786584139, - 14.970260974478563, - 14.994630999983931, - 15.042369303394514, - 15.02607235324226, - 15.058137987898734, - 15.03415387756125, - 15.007790718510922, - 14.970265732012102, - 14.975943661515675, - 14.997958537140391, - 14.947155099721233, - 15.075175377494888, - 14.990368595517571, - 14.924520757932127, - 14.93021520136911, - 15.09910051333908, - 15.003093896109311, - 15.036638764480617, - 15.013988383123648, - 14.963713948403765, - 14.980977180537886, - 14.984117812218063, - 14.975837571561065, - 15.088500868885538, - 15.020175213928711, - 14.999774176875402, - 14.961107266113663, - 14.953895283803181, - 14.983911637826168, - 15.000999040943578, - 14.967906673434493, - 14.986916396126327, - 14.95693398161545, - 14.992280675164242, - 14.974953272015876, - 14.989839223182203, - 14.960067674535788, - 15.00107956145041, - 15.063317246162418, - 15.134434905054375, - 15.125480005758247, - 15.079530318336586, - 15.069507378401424, - 14.960023878852379, - 15.018121142115357, - 14.9738224891621, - 14.988529457952303, - 14.951108046819003, - 15.006270090975429, - 15.022542194310272, - 14.992537568949746, - 15.0190815088672, - 15.031564700295085, - 15.013511623805769, - 15.047933851991276, - 14.97463902326321, - 14.978137668066042, - 14.937584118496554, - 15.00471866672448, - 15.005106086233598, - 14.97216276686005, - 14.95635451373213, - 14.967584646662951, - 14.939481705620874, - 14.903801503510222, - 14.916258954799464, - 14.96578882110394, - 14.960179434711206, - 15.04774386334731, - 15.089987525899653, - 14.990618312072296, - 14.988074486061182, - 14.97070866000453, - 15.033627037909092, - 15.068819566661555, - 15.049275831732707, - 14.980901652682656, - 14.977332640845193, - 15.03380748919453, - 15.00031035386937, - 15.059261141185134, - 15.074097695986126, - 15.042558560194246, - 14.979034598727619, - 14.944558148715899, - 14.976714411519442, - 15.098345901463015, - 15.049699164436385, - 15.117373495708925, - 15.078455122533674, - 15.021014839907727, - 14.986234795101117, - 15.017014321798865, - 15.005059973613868, - 14.993691209050269, - 15.009753846357675, - 14.98402609932572, - 15.015992857615442, - 14.990612689909359, - 14.993591036487468, - 15.000308902074911, - 15.006878904458189, - 14.9754398640085, - 15.097587996880204, - 15.134049016218375, - 15.010630638723349, - 14.988534782113826, - 15.044476268810175, - 15.04244132727899, - 14.96693463999547, - 15.028820893188296, - 15.010714193533223, - 15.039908944934187, - 15.036063509823554, - 15.022894996759216, - 14.976853260837137, - 15.044684121286027, - 14.937349817159594, - 14.936770234978388, - 14.958381365931912, - 15.030977696986241, - 15.009039701106039, - 14.94762436125947, - 15.01474126710439, - 14.99984414695214, - 14.983704601377305, - 14.974155122866794, - 15.070494890608732, - 14.986948336881975, - 15.009136938673464, - 15.084144221561395, - 14.898650929944493, - 14.98091838217027, - 15.00324560718588, - 14.962882342357235, - 14.987149638161629, - 14.999626428806577, - 15.013672648935794, - 14.971233439817478, - 15.004869364368709, - 14.943737126962535, - 14.986434945489407, - 14.94256128150882, - 14.972968628950513, - 14.948874161084658, - 15.035256233910863, - 15.034189917783076, - 14.822976446673154, - 14.936027358421896, - 14.959658694447883, - 14.937434739347102, - 14.93559066344361, - 14.924764258708409, - 14.969746304820033, - 15.10715732871919, - 15.065708543854932, - 15.025370018444333, - 14.986616175904995, - 15.041968102239224, - 15.06686703863817, - 15.054632695287905, - 14.985761348508875, - 15.102293932364006, - 15.067202640050201, - 14.932772516933966, - 14.942387774724361, - 15.032153039552455, - 15.090378468542951, - 15.060486684756796, - 14.963002435165537, - 15.010494690609459, - 14.983952992495976, - 14.939327630438818, - 14.920791485917102, - 15.056778023987212, - 15.024124200652283, - 15.01069947071633, - 14.967316743970704, - 15.026696209167534, - 15.040575300658096, - 14.951997357940357, - 15.02657082544387, - 15.002474406983765, - 14.961761380650708, - 14.895117030441707, - 14.945348531430508, - 14.993286221112577, - 14.956373334610333, - 15.064021513161642, - 14.972523512172854, - 14.986010066835442, - 14.953748202557069, - 14.96073425979356, - 14.991149288269053, - 15.019815273944179, - 14.972443559518977, - 14.970590409618348, - 14.976975503370266, - 14.982895472868464, - 14.991873096826804, - 15.043521347146964, - 15.015876160856154, - 15.056036474202545, - 14.960576251055594, - 14.991278020787167, - 14.979842727260527, - 15.072967073886817, - 15.02138570850308, - 14.996964124803092, - 15.007122773195592, - 15.006543613588986, - 14.988227006819839, - 15.011057997751314, - 15.01136440754705, - 15.001223920178067, - 14.949396189196118, - 14.928873816997076, - 15.062427422192505, - 14.999692317021706, - 14.975828136252492, - 14.921269296930447, - 14.997037358299242, - 15.018293819901897, - 14.948377725343262, - 14.95310949193634, - 14.981507885518523, - 15.002058809211388, - 14.935308096168033, - 14.997429003373888, - 15.032015399472014, - 14.972629026303892, - 15.002910902880274, - 15.010194433446369, - 14.941675890895045, - 14.930445780123836, - 14.958436056138584, - 14.933579846651662, - 14.94183594251818, - 15.064441735372798, - 15.033769378874233, - 14.96904492889749, - 14.999475158966943, - 15.054270949611999, - 15.079045475299429, - 15.004338837486799, - 15.036575987492375, - 14.988445033992095, - 15.023011731216682, - 15.043621522332048, - 14.992371062724112, - 15.03565870765977, - 15.04044349980227, - 14.987691735809815, - 14.974398832405207, - 15.043066411123487, - 15.024395883379901, - 15.032343902577317, - 15.081021262719496, - 15.070760129249152, - 15.046122915602947, - 15.023380255448679, - 14.944105520861322, - 14.969337397151914, - 15.085584511060226, - 15.056917215827585, - 15.066366702008144, - 15.045939359210212, - 15.113351886217753, - 14.973657607505183, - 14.92683469221805, - 14.963341609449895, - 14.951240368201077, - 14.947061560499513, - 14.939306066833975, - 15.06938130801872, - 15.040784345156434, - 15.045819319891342, - 15.090306943066407, - 15.008698876299796, - 15.034134368786821, - 14.984760870238128, - 14.931444830347663, - 15.040002891752534, - 14.985388999081264, - 14.935877778743146, - 15.071550815743963, - 14.988366126229675, - 15.027980743096512, - 14.962708097522192, - 14.994819759029722, - 15.041659889511129, - 15.045679051913094, - 14.995847061310075, - 15.03668678013579, - 15.001577427264017, - 14.98646228724953, - 14.96565742204706, - 14.962701692129702, - 14.987629973044129, - 14.919201783959958, - 14.983596692090048, - 15.039243104747062, - 15.012223686441118, - 15.070211277556737, - 15.031533631713138, - 14.993375226313917, - 14.987190368630264, - 14.911863298720625, - 15.01249800936894, - 15.016747431925992, - 14.980313358236254, - 14.998483826885806, - 14.981606460878243, - 14.990071877648969, - 14.955504198352548, - 14.954726563414637, - 14.972117860192697, - 14.959917868871328, - 14.966043622811005, - 14.94001055739628, - 14.963344126758594, - 15.046023683020055, - 14.98792712183702, - 14.918041127960695, - 15.002137705759, - 15.029880131384571, - 15.007948588858932, - 14.995411540896372, - 14.97584851951937, - 14.99197273004146, - 15.049645926901615, - 15.003266031727435, - 15.08324618990097, - 15.087330852253544, - 15.020904873882749, - 14.997710977775837, - 14.964073491595375, - 14.997072481725521, - 15.015609921434104, - 14.963410178075193, - 14.970824017594683, - 14.95876615713652, - 14.944304587870446, - 15.047165626475342, - 15.088254643041571, - 15.050265313344257, - 15.030373258230076, - 15.001748878854565, - 14.99649383785157, - 14.99822791962727, - 14.977840327296688, - 15.02676824320375, - 14.99848587815975, - 15.05807909424419, - 15.076348792092025, - 15.044976241179615, - 14.947743798907348, - 15.026079623057841, - 15.017742118289442, - 14.993947000876664, - 14.961285355347938, - 15.010829686760896, - 14.98183255851858, - 15.075047720729529, - 15.059215690579089, - 15.037626195344268, - 15.000408329713837, - 14.917320744735951, - 14.921145510526244, - 14.993426008197927, - 15.021869679818051, - 15.052611954485954, - 15.029482283214941, - 15.020494680203717, - 15.02683444614036, - 14.966981827082128, - 15.029571584962309, - 14.994972443520021, - 15.111891770658909, - 14.963713902176654, - 14.956334165829833, - 15.003173918281776, - 14.972860224540632, - 15.003779989318659, - 15.027966295336126, - 14.950768112340583, - 15.014741738739882, - 14.987877854174888, - 15.021619743048415, - 14.987551392928163, - 15.05182833652914, - 15.027264228165178, - 15.015707451549932, - 14.985848937807324, - 14.968126373896538, - 14.989327924440255, - 14.956260406370868, - 14.96708523026309, - 14.967386185774973, - 14.961372531327136, - 14.952669625863608, - 14.978163531176822, - 14.967100855906029, - 14.984769873563076, - 14.96223055883075, - 14.998331848701838, - 14.953821076648376, - 15.009859409436954, - 15.056175395682667, - 15.07421443977077, - 14.942257294439536, - 14.996589432889115, - 14.973260530812611, - 15.002330877391461, - 14.963753943759949, - 14.986224808489979, - 14.968525128996474, - 15.044649945095024, - 14.996550440380487, - 15.041312682650178, - 14.981180874789139, - 14.925952868676251, - 14.972165525635855, - 15.045854904959178, - 14.976531863425977, - 14.965759931239731, - 15.010906763564616, - 14.99728003435716, - 14.999949014594328, - 14.9975822735644, - 15.05377523002904, - 15.01671625837184, - 14.973060952909258, - 15.031024602271644, - 15.03668320808086, - 14.97330743959595, - 15.031085784609807, - 15.00132776313288, - 14.96724500826786, - 14.978238174031567, - 14.997610473231319, - 14.936439573960087, - 14.982744317585684, - 15.012293136180476, - 15.018291196303737, - 15.022832820628919, - 15.025592733150189, - 14.931080018370649, - 15.01330389315998, - 14.955567892928796, - 14.877541587515713, - 14.83422672793551, - 14.941401713255646, - 14.947398431787219, - 15.015791935001529, - 15.001752876955914, - 15.009322826160062, - 15.045586921085457, - 15.03459049634949, - 15.039061649108573, - 15.054607617280903, - 15.044317270135338, - 15.018585634223605, - 15.022054267251763, - 14.970896955518173, - 14.945739314658178, - 15.004947792551247, - 15.005100080304167, - 14.964151868170626, - 15.001740897351162, - 15.027208844216355, - 15.00133419802644, - 15.006151407472027, - 14.926196399388838, - 15.00389186173582, - 15.001983572365692, - 14.985310873353997, - 14.942121005389001, - 14.967100820204275, - 14.996787593764273, - 14.945392482545387, - 14.95472828825455, - 14.964355013278572, - 15.014969819548025, - 15.042245075879917, - 14.978057086213445, - 14.979231123627912, - 14.9844599417898, - 15.079005803818545, - 15.010746434169471, - 14.95942243185361, - 14.963943821990334, - 14.980361219286772, - 15.022419913541631, - 15.006133803836546, - 15.010429636237587, - 14.981181304866144, - 14.994136480528084, - 14.946910826491028, - 14.973223386832027, - 14.987452265814685, - 14.972346793567224, - 15.056892172153882, - 15.0726952361919, - 15.001031586048349, - 14.983207294927007, - 15.033844673773643, - 15.039390929601957, - 15.082061438028065, - 14.99918260278502, - 14.967127617698257, - 14.979779527223094, - 14.984790070040562, - 14.986661795768693, - 14.95392591066147, - 14.905767985254549, - 14.906624740852036, - 14.952324632021767, - 14.923177073083398, - 14.939581391486408, - 14.95985868381636, - 14.901288871806418, - 14.88679728300783, - 14.936073723866347, - 14.985332425021497, - 15.018422453460035, - 14.936498696625408, - 14.98505393952109, - 15.032666746151289, - 15.016651720133256, - 15.039559438287196, - 15.035451303459086, - 15.019830608539458, - 15.022459402685794, - 15.01121469995523, - 14.974870601508965, - 15.007757949755904, - 15.011243439829547, - 14.966476450238243, - 14.892192277229059, - 15.012379094675916, - 14.937694676759088, - 14.99816106699654, - 15.035170854607449, - 15.002895866295692, - 15.023890362691477, - 15.086842120560693, - 15.026650458473629, - 15.000554099866301, - 14.998731952800332, - 14.990059111025644, - 15.0272570356127, - 14.96780576996516, - 14.973227024590651, - 15.079067597616513, - 15.043846207918236, - 15.001517362834894, - 14.982093564762645, - 15.000961178797914, - 15.027743864886432, - 15.064831912025314, - 14.989307254311859, - 15.038281123696894, - 15.036962603131178, - 14.94260356801194, - 15.083266848342888, - 14.983484565225048, - 14.98804246590847, - 14.999768019147314, - 15.037647532849267, - 14.915611603742747, - 14.930633746063235, - 14.913939372493644, - 14.896438734821642, - 14.898213729820082, - 14.95749844315649, - 14.997878901910726, - 15.001320904794783, - 15.016596223688616, - 15.057838498162482, - 15.031995171036696, - 14.991721106422988, - 15.119637790940684, - 15.003541650979928, - 14.985325939824195, - 14.998225984949443, - 14.976977192598165, - 14.956815629281856, - 15.023044074789256, - 14.967649170824766, - 14.929415180746457, - 14.875206513929358, - 14.961693508137719, - 14.969152681699885, - 14.968544350555753, - 14.980791783846499, - 14.954586495312487, - 15.052954186915466, - 14.956328891333554, - 14.989759823687995, - 14.970235637646995, - 15.000375702661966, - 14.945611252611457, - 15.010757354999448, - 15.068515404055393, - 14.98876737411633, - 14.960966129876855, - 14.977072301329681, - 14.983095012277438, - 15.05297660832069, - 15.004109874524827, - 15.001682543720749, - 15.02867675380888, - 14.962243854051797, - 14.978622510764746, - 15.11447743245308, - 15.035270868241263, - 15.026565003749196, - 15.006616732589782, - 15.004024114707818, - 15.001606069284549, - 14.974942288008556, - 15.038777669577177, - 14.994668205471537, - 14.993233349123853, - 14.96991950158038, - 14.998151420414096, - 14.945779125595415, - 15.007049171320572, - 15.016644651102656, - 14.926634154454632, - 14.963816719667705, - 14.99385614777151, - 15.014504043732831, - 14.982378441874985, - 14.908296585936034, - 15.005104678615856, - 14.99022210853809, - 15.024607024863188, - 15.005344325832342, - 15.040316507690806, - 14.957763570519791, - 15.105114340597453, - 15.048011096268, - 14.957060330587034, - 15.142271682305177, - 14.974584486134058, - 14.9922632203232, - 14.976592929991945, - 15.083908175647734, - 15.09987693622403, - 15.019340573936637, - 15.061866547431903, - 15.041122548736787, - 15.137659437854735, - 15.043911524993392, - 15.021362174845681, - 15.040131506883274, - 14.986777963681783, - 14.97690331369408, - 14.906803028863338, - 14.961899295013367, - 15.01132139644922, - 14.994686856311858, - 14.97604251771994, - 15.009890377948889, - 14.910709130220928, - 14.991174765198355, - 15.085826374245391, - 15.028279270474256, - 15.046290421669399, - 15.09394786057595, - 15.134497773102781, - 15.074427867884953, - 15.03070610715289, - 14.995576329575021, - 15.030951421480815, - 15.046604443064403, - 14.978311857249219, - 14.966031388584353, - 14.997179680600471, - 15.070776943659284, - 14.924104271850249, - 14.989918174505346, - 14.95999678769125, - 15.076480560948962, - 15.095548362162857, - 15.03949227049392, - 15.025307188200228, - 15.060403895435753, - 14.987810134145462, - 14.989102280146708, - 14.972046264940111, - 14.960591499391237, - 14.964596300029578, - 15.007580904975127, - 14.977552518146343, - 14.9510870342416, - 14.993217653815698, - 15.05821054720221, - 15.027020684334948, - 14.986040727958233, - 14.929415946408886, - 14.961502524922583, - 15.02763775324317, - 14.936486922700531, - 14.990297239385377, - 15.024435062010484, - 15.050187430509359, - 14.897036501770518, - 14.962934442895873, - 14.91262390311434, - 14.981626275256684, - 15.023593152164258, - 15.020734744469625, - 15.001850590521999, - 15.073130400272158, - 15.014166169078843, - 14.956743234591444, - 15.020976180449471, - 15.003586474810017, - 15.059027820314185, - 15.06740909580329, - 15.090638608320994, - 15.066259237740356, - 15.051999627311412, - 15.057463885169163, - 14.987674958235273, - 14.995905331053967, - 14.945041969355955, - 15.115294124781876, - 15.062542105729728, - 15.067018166896162, - 15.068712676893732, - 14.879094997965348, - 14.908618722063451, - 15.031957159215874, - 15.11487520990436, - 15.071665857472896, - 15.047978374025679, - 15.000444759903852, - 15.06477834784365, - 15.001931894113827, - 14.96621226052815, - 15.006846065624503, - 15.065770450486239, - 14.92292593570179, - 14.932029415563902, - 14.906405560056808, - 15.031657746976512, - 14.974381942029446, - 14.968250199387718, - 14.993407872295315, - 14.974436122333486, - 15.028258116058648, - 15.01179588054665, - 15.017805579127783, - 14.911687075048208, - 14.92888417064296, - 14.936594432024952, - 15.048032344799564, - 15.017281506441371, - 15.050967718540234, - 15.013038932429295, - 15.032041787345014, - 14.992387677704901, - 15.068575482582647, - 15.108907362675636, - 15.083687148801548, - 14.941925586206818, - 14.99712804605599, - 15.04921332432326, - 14.959132654037937, - 14.955262703193045, - 15.00031385282208, - 14.98091586956726, - 14.981208828589438, - 14.99018752241385, - 15.049986553944446, - 15.007244585907316, - 15.03278300192956, - 15.033469749785421, - 15.096098925420218, - 15.02949568006968, - 15.023869103317677, - 15.025361403538618, - 15.04589317489025, - 15.048736552116576, - 15.013577001956833, - 14.907039959179624, - 15.006167112194698, - 14.93280780976494, - 14.997964319976951, - 15.090395302220514, - 15.12356983032791, - 14.986264715875196, - 14.954685132841927, - 14.958883292774651, - 14.964095563671597, - 14.99876099907419, - 14.953854980500708, - 14.997490486607246, - 14.996146126931498, - 14.931302867483756, - 14.981745740127328, - 15.020001272138488, - 14.963259437339913, - 15.066224106699304, - 14.957496605734367, - 14.908674657304989, - 15.118995314705995, - 14.982138240012175, - 14.989265802963246, - 14.958380508207178, - 14.977714245817088, - 15.039104944390235, - 15.076829262571858, - 14.994689917702129, - 15.005430772356684, - 15.039259200546834, - 14.998901280817362, - 15.091357860688825, - 15.00054150205466, - 15.074242373618777, - 15.019264345955131, - 15.03554291450792, - 15.043511045980347, - 15.035480102281655, - 15.025652660571879, - 15.043520798321035, - 14.987167524825397, - 14.984216807415427, - 14.86898542515705, - 14.98603680828456, - 15.003821493972966, - 15.00001134970731, - 15.072945070165064, - 14.96927184819188, - 15.010204411468152, - 14.974499110888027, - 14.937464350338706, - 14.990672771869352, - 15.07746757635836, - 14.962174505496199, - 15.072706384061323, - 14.956787629616132, - 14.961365284635955, - 14.978511902201726, - 14.978119907781306, - 15.024460654353, - 15.02197648485133, - 14.970635208208288, - 14.97721244299976, - 14.844683341161623, - 14.99023286542126, - 14.94395066717008, - 15.012530106249176, - 15.0434914338705, - 15.058577505109223, - 14.995550571572167, - 15.00188943910344, - 14.972752417632146, - 15.148444147513754, - 15.052953252483977, - 15.035993712095088, - 15.003967739208132, - 15.073958868070395, - 15.1137092526489, - 15.041551018789509, - 15.082673263645109, - 14.983286872095128, - 14.996050330838651, - 15.032917773079511, - 15.008965079605954, - 15.093844909808949, - 15.008271332156848, - 15.0714924581867, - 14.997335772680316, - 14.954792690053948, - 14.9530125968092, - 15.01916593973114, - 15.003136049118018, - 15.053857781980835, - 15.050379570499732, - 15.011886760145963, - 14.988016810997667, - 15.010218099665236, - 15.022082370559865, - 14.976945092220381, - 15.008781484197346, - 14.985699999267075, - 14.916816360204791, - 14.984359096841578, - 14.900663693813303, - 15.016468663609333, - 15.01063455807594, - 15.014624215794713, - 14.953152741038938, - 14.876672507149497, - 14.979511469112069, - 14.976785282122718, - 14.990438772665122, - 15.000215424988966, - 15.059962083148195, - 14.92938490688378, - 14.90737226524521, - 14.979106576023613, - 15.032767321615745, - 15.008828682224364, - 15.024229712227642, - 14.971871122911812, - 15.005391391601202, - 15.007190938135343, - 15.047810504316246, - 15.016008727709863, - 14.97978739963186, - 14.944606458759615, - 14.963560138798977, - 14.979310378310519, - 15.040002230760061, - 15.025021101884947, - 14.952038068117316, - 15.007593979466845, - 15.041215842089356, - 14.990587696284644, - 15.020127753024365, - 14.971211432995512, - 14.89947028482426, - 15.009524939062308, - 14.971504217924391, - 14.996524158746272, - 14.969845965845394, - 14.97206012013641, - 15.018932139084077, - 14.98801146661996, - 14.96535916138889, - 14.97910875180498, - 15.062361226434172, - 14.999760014806455, - 15.000436536042663, - 14.999612727841068, - 14.933214990751887, - 14.916022225078867, - 14.96599249689786, - 15.01508330991061, - 15.051656905813386, - 15.045447968903234, - 15.03196709103978, - 14.974089594211424, - 15.000419415952358, - 14.947178563018742, - 15.00160141491962, - 15.076870209407558, - 14.97399240436176, - 15.006749015594327, - 15.058734860207315, - 14.986911807610127, - 14.976658759101856, - 15.008399807472545, - 15.045021908713561, - 15.080475157538975, - 15.030770453954277, - 15.036432840631386, - 15.066640913734696, - 15.013379116660312, - 14.920539510322193, - 15.0241478421525, - 15.008862094550228, - 15.012240787696825, - 15.03496293865074, - 14.97077882085598, - 15.03525605898265, - 15.048282438115544, - 15.074984780020868, - 14.937724846751799, - 15.013969159121299, - 14.992789101504505, - 15.053978157482632, - 14.936537740201462, - 14.941430262634084, - 14.998062064158281, - 14.977821683608822, - 14.938035564172097, - 15.037741956920916, - 15.0053027071962, - 15.072353792276951, - 15.063004109963403, - 14.997217927257172, - 15.008075448462014, - 14.94960858463907, - 14.979898415870068, - 15.041331838214939, - 15.027219861626632, - 14.978456913858507, - 14.943875689861557, - 15.002744704030242, - 14.960236799132065, - 15.017845557597838, - 15.026330810507185, - 14.920277019704926, - 14.980091629415956, - 15.060812327006508, - 14.99464395974071, - 15.060736596742622, - 15.098117829774955, - 15.004855141747068, - 14.980318293874953, - 15.046794302796389, - 14.974610079448354, - 15.009134390789995, - 15.022424983030922, - 15.049251105032278, - 15.003426229792858, - 15.046618281267218, - 15.059774793923047, - 15.052521353007226, - 15.023194958618918, - 15.022591879697734, - 15.046400320979465, - 15.024798850869406, - 14.982599352607611, - 15.05979947213959, - 15.025053577363698, - 15.07348992833572, - 15.036399631548587, - 15.017029743144557, - 15.042351920447873, - 15.035702525143257, - 15.096427101455001, - 15.10734978020779, - 15.06774658806864, - 15.007503430504759, - 15.083103586739492, - 15.051320973168858, - 15.02841198451123, - 14.988025728834865, - 15.057534564297, - 15.0029578538501, - 15.003076015696578, - 15.085098983216751, - 14.985444499713472, - 14.949916732040295, - 14.89714755176311, - 14.984282223808396, - 14.938527451624658, - 15.021153084641318, - 15.06987400747398, - 15.005120595965142, - 14.967164497418763, - 14.947489285751402, - 14.9751708325186, - 14.951318928237274, - 14.981621933276797, - 15.011593180629205, - 15.104069803021511, - 15.020670001352928, - 14.94235492044589, - 14.93271544368182, - 15.016583437163318, - 15.032119764563419, - 15.031238063076048, - 14.957058073180853, - 14.963850562271784, - 14.929652830598217, - 14.99403896943028, - 14.989491910993845, - 14.984003872294906, - 15.021338698371043, - 15.032528355770987, - 15.068730007677514, - 15.07065058986052, - 15.041102532167312, - 14.922197651846892, - 14.940410291871931, - 15.027407498986733, - 14.98175865570981, - 14.977406969969286, - 14.939181617667652, - 15.122549783875542, - 15.022559384730926, - 14.946446806270515, - 14.928237816498646, - 15.056236909854594, - 14.986107915172884, - 14.987811824754726, - 15.0015389174233, - 14.987006734372631, - 15.080199811766356, - 14.995464707683741, - 15.016661295023473, - 14.97626438300122, - 14.963469431143139, - 14.858695824312866, - 14.961768225965965, - 15.050443683968018, - 14.979940840501584, - 15.001149993177087, - 14.987184092339094, - 14.939479803965478, - 14.911151493972902, - 14.963179681187004, - 14.980371126019282, - 15.035130015313657, - 15.062172860817077, - 15.061453557670625, - 14.991222591399158, - 15.02093224775824, - 15.014000009310639, - 15.06745492577966, - 14.925383786253745, - 14.974033554565361, - 14.98903578309958, - 15.061825285881596, - 15.000335119411785, - 14.96973023830859, - 14.946925800605937, - 14.882422015482337, - 14.95672395205162, - 14.945233599246952, - 15.004798886536477, - 15.049170522299232, - 14.915895361451387, - 14.970057684633764, - 15.050136182969577, - 14.981185313762994, - 14.977726791041315, - 15.036268747498152, - 14.947810522668586, - 15.055058212346058, - 14.969247099316169, - 14.960947895290518, - 15.020692742679499, - 14.989117199010826, - 15.069784389367666, - 14.99958010511716, - 15.009496963556428, - 15.065494630868185, - 15.056966975649981, - 14.989747116966656, - 15.010195337209137, - 15.024766849730025, - 14.929577974861273, - 14.931444653675829, - 15.039268086840687, - 15.048691151494788, - 15.035048730213907, - 14.968913762984585, - 14.971231019430913, - 14.998282933167657, - 14.927209012371343, - 15.00189381148871, - 15.048297303200004, - 15.00553506815248, - 15.11177044395707, - 15.064024443701372, - 15.078508048522892, - 15.052856619127397, - 15.057760252187627, - 15.053197062510646, - 15.048723500643163, - 15.04849906701388, - 15.021514316206803, - 15.035519088419539, - 15.002132989399009, - 15.02385362787352, - 14.970290816824308, - 15.025402437733765, - 15.027222147878014, - 15.039461270418963, - 14.927824046058552, - 14.939383308168338, - 14.99748411943196, - 14.987211930019487, - 14.993202790392969, - 14.97294016450571, - 14.966318804248859, - 14.964147458149267, - 15.016797903114234, - 15.02122829474835, - 14.94701695487864, - 15.03118970576264, - 14.954646664310781, - 15.034586433235592, - 14.992918398723496, - 14.998917695145932, - 15.010995046353573, - 15.002072390189067, - 15.026749204441405, - 15.024283223463033, - 15.030455847345477, - 14.960426677019438, - 14.96117206495579, - 14.991618656758058, - 15.01203192006049, - 15.004460762875132, - 14.926917612942217, - 14.998650926563343, - 15.040496411869015, - 15.031210257510011, - 14.949444082300094, - 15.023351292773024, - 15.060426458827864, - 15.073453289535918, - 14.987994857340777, - 15.034932712625492, - 14.995534193201937, - 15.101256622415692, - 15.046289352973355, - 15.02427928492419, - 14.990216989439471, - 14.9177400243247, - 14.978916028058956, - 14.908347702664779, - 14.980829622326697, - 15.06411799475701, - 14.97862802479955, - 15.013640435806636, - 14.991806040853833, - 15.094559577556675, - 15.064229570637078, - 14.910283798789257, - 14.986331972846699, - 14.923753134489026, - 14.996817215358906, - 15.00642045772757, - 14.98762711454629, - 15.027671199685068, - 15.013189861989845, - 14.956556237769066, - 14.981057173812506, - 15.038103793531377, - 15.004097973636416, - 15.047100896713609, - 15.045488872107818, - 15.026643690764445, - 15.026705158809706, - 14.981915323608613, - 15.003885260353572, - 15.01028345766966, - 14.980757317922254, - 14.949338792918903, - 15.002147590947098, - 15.030681352257297, - 15.016700816704661, - 14.96317518797781, - 14.989805370038965, - 14.995115006323006, - 14.951571486894997, - 14.991804151515987, - 14.955550988858535, - 14.916177290643205, - 15.023855976076137, - 15.014697673921354, - 15.032741345468278, - 14.95105354072696, - 15.057001916638278, - 15.004543241662372, - 15.044512078178606, - 15.001954038014489, - 14.972612055732492, - 14.970951513993896, - 15.014404388150124, - 14.991233154787556, - 14.931333849910114, - 14.89846687422626, - 14.982046594540869, - 15.018844731416534, - 15.039852830482937, - 14.94186511702768, - 14.977907944160654, - 15.014085790813176, - 15.02599042452802, - 15.006449424684348, - 14.981770586744366, - 14.959451577534741, - 15.011684673018273, - 14.949313975495137, - 15.004321917795197, - 15.034816376783025, - 15.038455717280263, - 15.03659617297548, - 15.021901895816463, - 14.937745504478938, - 14.940105443757867, - 14.986978994798939, - 14.913053875688712, - 15.014466357167, - 14.982070928929726, - 15.002700967578596, - 15.060207888844007, - 14.962375434200755, - 14.955837959568838, - 14.981032283176495, - 14.905841508096156, - 14.973866268737758, - 14.98609798875714, - 14.993723271306502, - 14.985081835844467, - 14.928053561214575, - 14.927657832965926, - 15.050217104960486, - 14.992573189987114, - 15.025540460274396, - 15.047410659707706, - 15.07004513400646, - 15.114065344701924, - 15.091076326755749, - 14.871079306487745, - 14.93807869708825, - 15.00846909838667, - 15.091658825572217, - 15.08540396519996, - 15.007866296890684, - 15.001299221640298, - 15.039023203110112, - 14.9875502501263, - 14.961644258912768, - 14.975485762048232, - 15.062771768985233, - 15.085976248175244, - 15.075735797272827, - 15.010878611603276, - 14.973998054091368, - 14.962630919746367, - 14.926368900317582, - 14.956242240710163, - 14.98849560873997, - 15.045606906345299, - 14.971873272836977, - 14.948991006175223, - 15.02628407743721, - 14.959614058423483, - 14.987567633029808, - 15.007144587631323, - 15.081986968028035, - 15.009540051811454, - 14.985143201505444, - 14.981533280820955, - 14.957192672809537, - 14.965466320542642, - 14.989201982711723, - 14.991363922328219, - 14.867452122791732, - 14.972492050499643, - 14.941844761984846, - 14.950793442449921, - 14.985304626317072, - 14.966019597768957, - 15.018794317553446, - 14.955800235375236, - 15.010182411159812, - 14.98424744918082, - 14.98178572715796, - 14.958914007014227, - 15.03495390823339, - 14.966192735458305, - 14.994642024185673, - 14.972516374074509, - 15.009031506812631, - 14.974090093027863, - 15.072099231328501, - 14.986406145122386, - 15.049330554128654, - 14.961554219803693, - 14.990618086727073, - 15.044707900887706, - 15.03659066783999, - 14.992919100625869, - 15.007068220329073, - 14.988043268507601, - 15.042201594983796, - 15.057792713442115, - 15.024857932400813, - 14.999528556818206, - 14.962181727487756, - 14.981279842108332, - 14.959873558107754, - 15.003987688625854, - 15.003370868258925, - 15.076881565769316, - 15.02504857171916, - 14.981769679401141, - 14.965003189503456, - 14.99806056651683, - 15.064359084426039, - 15.046970147836278, - 14.99216330803567, - 15.01936233915593, - 15.05092573412814, - 15.093887257838805, - 15.000292180542136, - 14.944961129360623, - 14.98586448924147, - 15.004456437610243, - 15.077625613142574, - 14.96371406429827, - 15.010757711760782, - 15.039131663726387, - 14.955692998793467, - 14.994500129530788, - 15.084990833775768, - 15.032192702902737, - 15.05373959282613, - 15.041858038905643, - 15.04707658109315, - 14.991579382523069, - 15.037966335537977, - 15.000897989058176, - 14.916420503433272, - 14.92064170769946, - 15.024155818304267, - 14.978931069194246, - 15.077398825172803, - 15.04153264451245, - 15.007333135713536, - 14.958850185905916, - 14.970268866352924, - 14.94819482451204, - 15.015225004025998, - 14.979500189365279, - 14.968181205534465, - 15.03289382375667, - 15.094284621589756, - 15.047980109476988, - 14.999337980931488, - 15.029216200055062, - 14.920704046756082, - 14.931235752857841, - 15.005134900792454, - 14.949104219131753, - 15.042184624675127, - 15.080502652139252, - 15.006409491583579, - 14.974248657646823, - 15.026109910117272, - 14.970772596533042, - 15.045994283739164, - 15.010561023565863, - 14.962469028951555, - 15.018317918240076, - 15.020795397512337, - 15.039970667516222, - 15.057122976128397, - 15.04194992275212, - 15.011540555420513, - 14.990317807787982, - 14.94721614914358, - 14.978367147542604, - 15.054789169382083, - 14.989597919110981, - 14.92766175831976, - 14.997482720879606, - 15.034142952584363, - 14.993828476937296, - 15.040639971605447, - 14.971653471396383, - 14.987953478538886, - 15.059208842171264, - 15.040820382868414, - 15.03060914551289, - 15.012102378780767, - 14.968386529549663, - 14.999359888793647, - 15.03320135677852, - 14.968368168274102, - 14.9210712445369, - 14.984203639599603, - 14.940868778715364, - 15.020022099405317, - 15.030575339103201, - 15.071869521103006, - 15.059042107203174, - 15.018499225735114, - 15.086374481481675, - 15.108381995716933, - 15.062111495348525, - 14.978158338422173, - 14.932302958019653, - 14.99263911952079, - 14.981053356977734, - 14.959598865332113, - 15.012890295733763, - 14.994761457995851, - 15.031595321460633, - 14.944634580300221, - 15.085713753316961, - 15.045523164156547, - 15.045668152368755, - 15.054998231155354, - 15.003929776112672, - 15.00608198324502, - 15.091394403412082, - 15.063986897364805, - 15.106065125833997, - 14.959516193903845, - 14.918929139818347, - 14.968271770830494, - 15.016413324031378, - 15.054447630433748, - 15.03145708261538, - 14.935345275632322, - 15.04059922620787, - 15.012406268383137, - 15.09804432607991, - 15.039948051445903, - 15.017024813618457, - 14.989910186635308, - 15.053111781720188, - 15.025412779088287, - 14.968705380984918, - 14.929154754094897, - 15.01231999927719, - 15.044917093264077, - 14.998502737410062, - 14.953469250715033, - 14.937039806085144, - 14.948120049734788, - 14.974099652177747, - 14.971255242980039, - 14.991533869649034, - 15.001317083124137, - 15.037561296449667, - 15.01728925785722, - 15.0270658157783, - 14.926902504595432, - 14.965066005457558, - 15.011933689572576, - 14.924571949963019, - 14.892573693129908, - 14.936965690763644, - 14.902677368764639, - 14.923385569278102, - 15.010297966572256, - 15.025539724568592, - 14.986309291837182, - 14.97893818412873, - 14.992517712683771, - 14.980975062522266, - 14.922180559366458, - 15.063022889259466, - 15.087037874708614, - 15.011757054219276, - 15.081681016492519, - 15.097151640862254, - 15.051506912830783, - 15.00795548300908, - 15.059951132356696, - 15.067282813319913, - 15.036669874448718, - 15.034496242414182, - 14.942874470469004, - 14.9930274235398, - 14.888470232219165, - 14.932394234006377, - 15.051650678500103, - 15.019000126819847, - 15.042595559710882, - 15.068482657877556, - 15.073444017831028, - 14.977349859781976, - 14.956376312741886, - 15.01359839901801, - 15.022241876298425, - 15.02255771387642, - 14.999897424578116, - 14.97526544701754, - 15.009073849020183, - 14.943372353555102, - 15.04901861483859, - 14.990999761167439, - 14.934707322737228, - 15.02553497962766, - 15.059622714391033, - 15.117745993217437, - 15.041153718150923, - 14.967693870142421, - 15.01801022791351, - 15.05748992275285, - 15.040916334035916, - 15.079777663857563, - 15.073445917762248, - 15.043172197082582, - 14.979909849135547, - 14.920617137448861, - 15.005184822178848, - 15.090136204922858, - 15.009333716186939, - 14.999681838131885, - 15.01585717751639, - 14.967235704929017, - 14.993926220662832, - 14.982782539092442, - 14.947120653230748, - 14.998187547870987, - 14.95636456276921, - 15.067804425394355, - 15.003358422091242, - 14.952592432841959, - 14.952013077736373, - 15.050380912960089, - 14.927950596499837, - 15.029243508985221, - 15.009378280223764, - 15.052244254951496, - 15.025730463744015, - 15.000139369431732, - 15.029486761313489, - 15.02146814944584, - 15.036683790538651, - 15.09883194199657, - 14.987777763774348, - 15.032602043226001, - 14.977286703713784, - 14.945210502214092, - 14.963196433498371, - 15.011546347677891, - 15.030403891965372, - 15.005484501757241, - 14.951891797413603, - 14.936246197512421, - 15.013450933095696, - 14.988551208929023, - 14.995774118079934, - 15.002347819423987, - 15.077993401995675, - 14.880623628558626, - 14.981975452727065, - 14.944262874062222, - 14.947512393031431, - 15.007675115319579, - 15.042309213259145, - 15.097679729378473, - 15.009205584427905, - 15.11140099684745, - 15.010842698481603, - 14.993666847223672, - 14.975168515095076, - 14.920929503949512, - 14.998957442018032, - 14.978420772694358, - 15.020612549971014, - 14.972244933307831, - 15.028561704600751, - 15.057428149574621, - 14.947835225091142, - 14.892238577080885, - 15.00826742840526, - 15.059904841262513, - 14.942932303604769, - 15.025832072064812, - 15.009654073353087, - 14.969520933960672, - 14.920361066043256, - 15.000045000213975, - 15.02334333399981, - 14.965969471244968, - 14.99758804130731, - 14.944413795047677, - 15.000589640832217, - 14.990551587048031, - 14.99236959109996, - 14.944167627598716, - 14.944497443893376, - 15.01121333923445, - 14.99713353745053, - 15.004080176409854, - 15.00140767442878, - 14.973558521146543, - 15.031964215828081, - 15.026973245929597, - 14.970832898751762, - 14.928839716522786, - 15.04359144905846, - 14.964280197326895, - 14.924233405573215, - 14.998979907449622, - 14.996430225509425, - 14.942679411092751, - 14.942910842227127, - 14.954274454410674, - 14.971065422115506, - 14.994807403953953, - 14.979090325892217, - 14.959000705388892, - 14.910024169647828, - 15.008911599727638, - 14.941235987374235, - 15.010931886274609, - 14.993381016032973, - 14.948227690034747, - 14.966537518779436, - 14.986017357537227, - 15.03866732001424, - 15.012469008649, - 15.082892591749525, - 15.07693759994621, - 15.052969016781407, - 14.998130472865542, - 14.905679835265623, - 14.973072364003261, - 14.95971441271708, - 14.971159247248485, - 15.011956266286868, - 14.940768501733594, - 15.020597231323016, - 15.039331821687012, - 15.056578920704156, - 14.947963728847748, - 15.022173099814857, - 15.016859254576689, - 14.951261536492968, - 14.98204984617799, - 14.99197419908109, - 15.063242698734237, - 14.927039423943524, - 14.960620209223096, - 15.054415394312382, - 15.039980903090608, - 14.98686169708447, - 15.032327825352544, - 14.951300964225146, - 14.92923610294135, - 15.013112096914492, - 14.922739213776527, - 14.984760835692283, - 14.888480315677207, - 14.983408069811798, - 14.914085414306248, - 15.016352205608795, - 15.055338476222268, - 15.008563599463487, - 14.912979568005374, - 14.993853836570759, - 14.970807375637898, - 14.975366796053976, - 15.024890189425017, - 14.988330554480223, - 14.964607039750645, - 14.888434755522194, - 14.97700433001106, - 15.03096128417569, - 14.879650540851834, - 14.974938410588258, - 15.003018915671678, - 14.987856670867284, - 15.012476260271661, - 14.996397363267253, - 14.96540605805112, - 14.9078164970702, - 14.941448692932687, - 15.034901501404589, - 14.9793881530167, - 15.011219299381535, - 14.947124465992191, - 15.013352015929827, - 15.052554485756168, - 15.019152333444625, - 14.951841312362845, - 14.920506131640863, - 15.024637983615746, - 15.000496010888957, - 15.001828984540168, - 14.973663637950738, - 14.943573920157169, - 14.946006097660735, - 14.877941966127164, - 14.913459831111846, - 14.903783384945088, - 14.991761028362475, - 15.031372713857476, - 14.945161214262319, - 14.994096737467535, - 15.078514484086739, - 15.008434193318486, - 15.014922563943667, - 14.986664038075649, - 15.076213031473701, - 15.003500721216655, - 14.95166633076892, - 15.043609764144477, - 14.950316573561356, - 15.002441153861497, - 15.033013221278942, - 14.976359477985731, - 15.02762292191107, - 15.026194340576689, - 14.988612114076783, - 15.025917141428145, - 15.040571140373498, - 15.12378723071273, - 15.019899888435207, - 14.962148260032567, - 14.898052749978332, - 14.885309785137345, - 15.028160965503432, - 15.017532621294501, - 15.009776315279332, - 15.007130953129105, - 15.067779710278304, - 15.086707570845563, - 15.00889832652001, - 14.992814761978385, - 14.94477547233406, - 14.890676900904134, - 14.981165357985354, - 15.055430576449892, - 15.046552424788352, - 15.105435912424266, - 15.064503370873666, - 15.032826033264993, - 14.998133314347331, - 14.95924347367088, - 14.972761016031178, - 14.988952509741942, - 15.071028982187524, - 15.048345052237897, - 15.03025328840525, - 15.065599313106226, - 15.01378656944298, - 15.028117232771692, - 15.062262888564142, - 14.964014927503305, - 14.87569885074856, - 15.008354817724019, - 15.1156978712837, - 15.012072206783333, - 15.024129500042452, - 15.052087227402764, - 14.991149434432693, - 14.982158402609, - 15.07761084261986, - 14.97989841254266, - 14.955517722712468, - 14.960827218218093, - 15.033984225168021, - 15.034977180382995, - 14.973806007375213, - 14.954160593624215, - 15.005988691591881, - 15.046746002777356, - 14.978806368530694, - 14.94961622973942, - 14.933547755055761, - 14.966051284479178, - 14.97918917729995, - 15.000501675542663, - 15.071288238734986, - 14.949653802080809, - 14.96139413292108, - 15.061749173033826, - 15.061313700701502, - 14.972557900888658, - 14.96370211200299, - 14.970225639362166, - 15.032342618940396, - 15.04368878080549, - 15.057488666289675, - 15.090380782288618, - 15.003308664894822, - 15.006789391929923, - 15.012428839579243, - 14.988090270902768, - 15.03128488354018, - 14.998637429000164, - 14.947478976627755, - 14.969548743273545, - 14.985266290843558, - 15.073330364434192, - 15.027771980443857, - 14.970933049626296, - 14.94375271542359, - 14.972279431493549, - 14.926943848442598, - 14.989431227921678, - 15.031146826922356, - 15.079450056448445, - 14.996772291308323, - 14.987351856034147, - 14.957978135424483, - 14.929121498310657, - 14.981128310156958, - 14.96738860081623, - 15.031842890923562, - 15.014173813520165, - 14.981420810809242, - 14.959961725265611, - 14.982102059977283, - 15.024765442967947, - 15.006218715543016, - 15.050827316968771, - 14.97745033919851, - 14.986302648457752, - 14.930312232942144, - 14.945659625789698, - 14.895316800859577, - 14.90218045305529, - 14.994887476095883, - 15.044340630290263, - 15.02562926325821, - 14.925811451772637, - 14.938206403531346, - 14.980392056216177, - 15.009385141080076, - 14.969709467824591, - 14.982736555662493, - 14.986663032921706, - 14.965526542830899, - 15.03692063739262, - 15.014967414770814, - 14.95164448815772, - 15.04889701876171, - 15.07655026312737, - 15.002749620368872, - 15.046963745404605, - 14.964517844096282, - 14.93049587857652, - 14.990208067512109, - 14.99572989831843, - 15.003476217699362, - 15.050267405551498, - 15.003206088270732, - 14.93888579082257, - 14.980755078814159, - 15.001007737239544, - 15.01113869823498, - 14.961930537740818, - 15.07234822096954, - 14.961761980695432, - 14.99324985022314, - 14.93965076848419, - 15.006217363738314, - 14.965878551271217, - 15.035426881764765, - 14.999396414450576, - 15.045960770195784, - 15.010636357627629, - 15.046891328901053, - 14.944718193783114, - 14.98636486659563, - 15.070107045999855, - 14.948436568188253, - 15.023663807155733, - 14.994790733126052, - 14.996072291350183, - 14.988048659778013, - 14.913948727219227, - 14.957947905945312, - 14.999361137679154, - 15.057430595214509, - 15.079691341360325, - 15.074168732801677, - 15.003904803206726, - 15.0351710323992, - 15.010947051855702, - 14.992457835983704, - 14.991721391359143, - 14.995077417374501, - 15.022529240062916, - 14.951383879108882, - 15.08433140444435, - 15.023290485414297, - 14.963414389997007, - 14.964822992596147, - 15.04135312845756, - 15.106707482945001, - 14.97397395529713, - 14.975650857257214, - 15.005706582365233, - 14.93486590827111, - 14.952636503160194, - 14.97082078498991, - 15.009616783891328, - 15.03945458795357, - 15.04526712841627, - 14.994864937253135, - 14.947611141713606, - 15.045367860025639, - 15.103246502088812, - 15.01720661900035, - 15.011928392556495, - 15.026241874032038, - 15.036412312928752, - 15.019666306017417, - 15.01917316504387, - 14.959840585370081, - 14.993438947175404, - 14.875192685399, - 14.995218760053051, - 15.044740574210914, - 14.996359561927648, - 14.993424560546726, - 15.029636018692491, - 15.048687296304797, - 14.980023195310011, - 14.954243529930118, - 14.982593231157177, - 15.007567021338115, - 14.96216411682455, - 14.930907798863236, - 14.931076710881788, - 15.03826939606899, - 15.02616895744718, - 15.01324322314829, - 15.013868662760357, - 15.004965640689722, - 14.996721157682659, - 14.965908271126208, - 14.989653542902316, - 15.048368660776573, - 15.025915519010427, - 15.056964895496629, - 14.995193801615404, - 14.980475631700838, - 15.034490859267365, - 14.979908283758174, - 14.986687494648162, - 14.953949671444462, - 15.02703043273448, - 15.025623320135205, - 15.02278607876863, - 14.981692264437287, - 15.001344710406247, - 14.99109653435332, - 15.065331659033689, - 15.095746263691197, - 15.090324481320577, - 15.027592057145357, - 15.084545359851482, - 15.056851311300482, - 14.94557531775352, - 14.946589737418032, - 15.026692758520896, - 14.979057378248063, - 14.981660194916932, - 14.98960194712423, - 14.941734110443841, - 15.009766826170909, - 15.000526307357038, - 14.915110810274339, - 14.989769341459033, - 15.06299371517187, - 14.990971619857222, - 15.001538855214042, - 14.980633586462774, - 14.994563342037912, - 15.002595750731466, - 15.013192246324355, - 14.97535842268144, - 14.982561596436902, - 15.026506455358344, - 14.985262652756012, - 15.049777717019733, - 15.076192920982018, - 15.031955679532379, - 15.030659019398191, - 15.03402710457101, - 14.962846196949478, - 14.995187339211217, - 15.051895861207136, - 14.966164668537717, - 14.980219693845264, - 15.031965877098829, - 15.028655840180047, - 15.008266300205106, - 14.997343547478863, - 14.96788030409472, - 15.008252301997336, - 15.022451869748236, - 14.990031175552707, - 14.991170500746007, - 15.011734636350491, - 14.971984022794905, - 14.987496549332612, - 14.974320013574413, - 14.96632268556405, - 14.936429710505768, - 14.999379412317758, - 14.973333372236109, - 14.972432841882542, - 15.047252847714175, - 15.018604227372911, - 15.034289579937408, - 15.068419789109367, - 14.962255859187112, - 15.033066302412916, - 15.00324540207245, - 14.981090978484549, - 14.931724097224595, - 15.014807623484664, - 14.96320238762038, - 14.90293700463247, - 14.969904823303935, - 15.075205024981559, - 14.977548549928434, - 15.067502547109882, - 15.072826812430064, - 15.027192777763307, - 15.046753889753852, - 15.023118983863174, - 14.995211650690523, - 14.95119978179885, - 14.987347313274142, - 15.032820071848299, - 15.022640514629119, - 15.05932472311532, - 15.011966052720082, - 14.990097002026078, - 14.989040053773504, - 15.019845179725772, - 14.929865299044204, - 14.96544859625146, - 14.976286514510978, - 14.961181312858729, - 15.017585243713471, - 14.972441837423633, - 14.99912038257301, - 14.978820619122896, - 14.936038216419767, - 15.060423498653874, - 14.994145244831843, - 15.020534035137949, - 14.9940541564974, - 14.963080750540954, - 14.977067443091427, - 14.957111136735207, - 15.043307997728721, - 15.015463839026195, - 14.954122254477301, - 15.027601787037096, - 14.99163866568519, - 15.023494441944196, - 15.048731940307592, - 14.953922108654066, - 14.916815391588171, - 14.975190247477526, - 15.029948390421303, - 14.96007535266995, - 15.048835871589466, - 15.071122741168576, - 15.022433496355951, - 15.004836638963658, - 15.05882633611461, - 15.022970132491443, - 15.032617527112633, - 14.904723574307841, - 14.98984340287508, - 14.98968835390089, - 14.956617707190722, - 14.963250882687682, - 14.931516401925636, - 14.969227951654236, - 14.979426497453414, - 15.04389370479791, - 14.94346837707586, - 14.950476286241152, - 14.995660662204964, - 14.99227611319597, - 14.97726785359358, - 15.05983985928804, - 15.00538878925458, - 14.979471707758295, - 15.063474321289144, - 14.948876830755779, - 14.96646024107449, - 15.037133182036387, - 14.96928123459417, - 15.017727015456776, - 14.984356615231352, - 15.045710474659295, - 14.943782506597307, - 14.936953274564395, - 14.99047989353802, - 14.994767826363898, - 15.020940702247753, - 15.022736846818987, - 14.936678421728363, - 14.952899551120451, - 14.958200439114433, - 15.075535024553226, - 15.011176268361998, - 14.976264535319826, - 15.059469809667364, - 14.997922999898998, - 14.961643057616328, - 14.941231896727993, - 15.008546279758036, - 15.032693395359974, - 15.001573361554325, - 14.998238073450961, - 15.053975845516872, - 15.002344604937694, - 14.95068418988893, - 14.997693497683052, - 14.972721819930705, - 15.018071751584237, - 15.011560072696353, - 14.919200986997906, - 14.989918604150773, - 14.975218121970379, - 15.03396052636417, - 14.926774808217651, - 14.89622116365766, - 15.061871873450801, - 15.035228269939134, - 14.910175557653718, - 15.004679865627976, - 15.006159688292325, - 15.089417990673155, - 15.067197422175202, - 15.061485951214713, - 15.06626760974958, - 15.069843479080617, - 15.041562997913388, - 15.04730137215751, - 15.035883431532787, - 15.02274147625848, - 15.043472582204151, - 15.005611985396174, - 15.047150373217226, - 15.003549583662586, - 14.893832840971294, - 14.883210256604023, - 14.938626911935772, - 14.99483033370253, - 15.005686813025326, - 15.02766184016266, - 14.996011406870677, - 14.974827352472007, - 15.010481583112862, - 14.905849427972202, - 15.016058733156921, - 15.048183236686453, - 15.025824467118422, - 14.994963054319465, - 14.995567929809736, - 15.047060475947609, - 14.943105258289552, - 14.99187641010699, - 14.998885209707684, - 14.962921210347655, - 14.97861497804529, - 14.939323839881794, - 15.020853617073415, - 15.097698933038588, - 15.012961884922323, - 15.02658122129604, - 15.076539978203561, - 15.095998151035626, - 15.036801263927922, - 15.016577279812266, - 15.041669268313724, - 15.026818624990772, - 14.996151435461806, - 14.961255978355624, - 14.948875034117528, - 14.962161237246871, - 14.945780849063304, - 15.030224540108266, - 14.93288047513399, - 14.999989147766781, - 14.944585375954444, - 15.029334219752707, - 15.107570400143834, - 14.992093526401566, - 14.970637985066007, - 14.964595626915981, - 15.008227180919445, - 14.970101891755585, - 15.016572229620232, - 15.010410552542226, - 14.989257721759758, - 14.985449988177624, - 15.039651575073224, - 14.972235776918936, - 14.955711781565798, - 14.915859576831888, - 14.883040255362062, - 14.931204393108718, - 14.944852613045368, - 14.929091073554835, - 14.928959767897465, - 14.93054143143125, - 14.925855556258394, - 14.94761240687792, - 14.909054131227414, - 14.863932886930385, - 14.930786789262903, - 14.923297079658676, - 14.897569898980741, - 14.879591256419301, - 14.82734094369283, - 14.915176303697823, - 14.969457360858112, - 14.902166354010307, - 14.961082027199732, - 14.979091193024923, - 14.966044899151429, - 14.97034333462823, - 14.944394515276477, - 15.012552118545397, - 14.913643687355496, - 14.958345777276607, - 14.965654235040383, - 15.013002836861592, - 14.966921685057743, - 14.926162945058215, - 14.939766400293225, - 15.056851976681155, - 15.028605432654508, - 15.078762310473659, - 15.075915047110245, - 15.027122671154276, - 14.933711226778925, - 14.99401596556738, - 14.980623719331597, - 14.936486965345335, - 14.898451697098057, - 14.930006766496971, - 14.93020468339796, - 14.973104921777294, - 14.942996414438397, - 14.908720426111993, - 14.902616134927996, - 14.952394076735976, - 14.973169400997271, - 14.975063569822321, - 15.063884367089726, - 15.054800554587969, - 15.021984493945157, - 15.037498121292693, - 15.027294732914681, - 15.003452995560004, - 14.996630789933649, - 14.933247509407026, - 15.010484036754479, - 14.994397838041213, - 14.953364017157325, - 15.014883237175729, - 14.988321323465051, - 15.000155880533393, - 14.955666978707885, - 15.026631983318374, - 14.942633823752848, - 14.875893250303434, - 14.92084121727945, - 14.91194096939112, - 14.994798969856596, - 15.110792751261519, - 14.959790876806265, - 15.04912477676733, - 14.983117009130218, - 15.008131052520243, - 15.053532911889503, - 15.054103772163666, - 14.92517053617442, - 14.993350784664743, - 14.986858216941904, - 14.872207786984042, - 14.973078159860135, - 15.037176916120112, - 14.990464633181505, - 14.966045525952751, - 14.948659645751508, - 15.043857614100851, - 14.941409621335339, - 14.931221742924553, - 15.00254463382621, - 15.095656738309971, - 15.051035083549996, - 15.027176113057536, - 14.991652189481426, - 14.938104484947543, - 14.988813018752293, - 14.973669183943588, - 14.954411539490266, - 14.924550954334215, - 14.965503493243387, - 15.021308809065166, - 14.967187491336244, - 14.99886079723263, - 15.025556989052196, - 14.993975385719478, - 15.028378587720884, - 14.986750588238127, - 14.979684947788579, - 15.006297367515831, - 15.017203664855085, - 15.017866176108827, - 14.9092933642039, - 14.989146680687957, - 15.01385003148227, - 15.085947829049061, - 15.029626486345599, - 14.996742583700025, - 14.949032259724406, - 14.855971363264452, - 14.886695270253071, - 15.010900104517148, - 14.971838732301716, - 14.96286240887812, - 14.966215950713412, - 14.975799396208588, - 15.067544300389988, - 15.02634807154414, - 15.00149104055648, - 14.933617249914327, - 15.110446375469014, - 15.004494749653622, - 14.999909508061593, - 14.949622067543643, - 15.057109243613466, - 14.931606716964206, - 14.961192237479793, - 15.030669647608862, - 14.995508588186542, - 15.038423824382837, - 15.005080504884804, - 15.037336625168908, - 14.993020092728036, - 15.016724432505866, - 14.908336254956644, - 14.979297741484876, - 15.003857256160634, - 15.026429856636899, - 14.938324826975904, - 15.006906803126807, - 14.940787568078008, - 14.97793455340222, - 15.063303790472395, - 15.067750065692262, - 15.046816273724328, - 14.911641941917024, - 14.95817401982846, - 14.948832348015607, - 14.908423177685183, - 15.039653750495699, - 15.043536478122721, - 14.97593870770725, - 14.96151810942877, - 14.934267460760843, - 14.930670468890302, - 15.048425401311281, - 14.998133414521039, - 14.95657384821016, - 15.013553717212641, - 14.97632966128538, - 14.988587524741037, - 14.922783276994105, - 15.00912495797798, - 15.065123447196392, - 15.050568977941774, - 14.97328966747738, - 14.976785830246943, - 15.006474170611959, - 15.026645242746348, - 14.992370349637396, - 15.01789608220918, - 15.10079925197904, - 15.049928906129203, - 15.123672310541583, - 15.059668460624433, - 15.026025173284156, - 15.05040280790088, - 15.064948068317698, - 14.971804526637182, - 15.017771682385776, - 14.946090513631725, - 14.965924028509015, - 14.938658621859204, - 14.961822754138765, - 15.030422332285145, - 14.984716431727648, - 14.995144442779077, - 14.986462023049608, - 15.01397704822996, - 14.970777163411416, - 15.011836563364753, - 14.957376558760009, - 15.081740937575173, - 15.01498070839771, - 15.02427533740088, - 14.971724246607213, - 15.016309780640904, - 14.994983192159294, - 15.063397469516225, - 15.047509582120147, - 14.91951223439576, - 14.97801896461843, - 15.037086273140531, - 15.014043362742754, - 15.053391831302461, - 15.065322577469406, - 15.032122718127704, - 15.015180593890971, - 15.027425899255258, - 15.076702384073489, - 14.995661788518968, - 14.973873356728706, - 15.031603968694533, - 15.037609685398264, - 14.99022701065986, - 14.971131895147733, - 14.899744445733862, - 14.981278983871764, - 14.994744098472838, - 15.00461445057097, - 14.96336969851436, - 15.018928128493428, - 14.978797657382852, - 14.936794676786251, - 14.95218789074343, - 14.95857510743011, - 14.921915360907464, - 14.932805382663952, - 14.957474771759031, - 15.00059090648569, - 14.907965372842364, - 14.976629576911245, - 15.001303309465014, - 15.021400410195673, - 14.983402788440154, - 14.924465426612167, - 14.918947065688016 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 0", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 14.918947065688016, - 15.026968067170376, - 14.927192481793549, - 15.008585686873861, - 15.027137167640829, - 15.015769679941261, - 14.986052582548583, - 15.043831337487433, - 14.958791258433651, - 14.96216082566016, - 15.007512757617445, - 14.993065418593574, - 14.980787830438333, - 15.028206291967017, - 15.0425841978482, - 15.071313474863194, - 15.011878573945939, - 15.002158344959476, - 14.996517122376606, - 15.052804320628619, - 15.076781275929386, - 15.032884514738905, - 14.99053073969321, - 14.9661089206329, - 15.004962007499435, - 15.04748003488587, - 15.032123552388143, - 15.02232655509855, - 15.042666421263544, - 15.095843633502477, - 15.025175268058886, - 15.013754193626637, - 14.989550001718678, - 14.990389154581502, - 14.875179874305168, - 14.953250967991801, - 14.946739896258054, - 14.970357931467198, - 15.011610776528938, - 14.95034838373556, - 14.977344075544275, - 14.974904713464655, - 15.04599142977533, - 14.99651611209209, - 15.095378633035251, - 15.027761384586004, - 15.05335327666431, - 14.965829339884028, - 14.977798291876166, - 14.976722731522853, - 14.98445618483818, - 14.995192891449804, - 14.999653841277915, - 15.014081823858865, - 15.017864690265354, - 14.938320389841511, - 14.940534726819662, - 14.945355612234165, - 15.082981508745346, - 15.038617305353325, - 14.979427641705527, - 15.062980072299768, - 15.009030866995012, - 15.008139907260004, - 14.929066054155122, - 14.907421332860586, - 14.968413423486734, - 14.94576192309167, - 14.921687482507888, - 14.938752185152282, - 15.033965848019742, - 15.031322997529067, - 15.041365426284104, - 15.013851984706616, - 15.006947114242779, - 15.055106572336774, - 15.001950766473831, - 15.004923149225354, - 14.938680415037565, - 14.9740548265972, - 15.015132437140704, - 15.058052151561608, - 14.95177387794541, - 15.030598056853227, - 14.94060232556872, - 15.016932895701807, - 15.039258493919442, - 15.004584230587065, - 15.004105119950978, - 15.092411412007602, - 14.958953459449988, - 15.036232104815353, - 15.053161072854722, - 15.066501725335495, - 14.910996922106087, - 14.95510047488302, - 14.933996626997091, - 15.011095338060485, - 15.056738700603601, - 15.041176269069643, - 15.034226525112917, - 14.995037781710018, - 15.004310495045369, - 14.930522023696904, - 14.927392111256632, - 14.965330302363439, - 15.052461317941926, - 14.995179219092616, - 14.912777881759077, - 14.95669445929741, - 14.96442870685401, - 15.026630428310481, - 15.045558726986458, - 15.01543032021382, - 15.039003122463562, - 14.97912455712699, - 15.001677769905758, - 14.963869690619369, - 14.92298371349725, - 14.943312350447712, - 14.979024846489853, - 14.996247113477342, - 15.038550058849768, - 14.959335005218023, - 15.006302509624852, - 15.008659454860783, - 15.010061528504869, - 15.034134918316472, - 15.0221405828902, - 15.072006581549488, - 14.923696774254314, - 14.922188934127504, - 14.989711681855292, - 14.940668285497932, - 15.024263772548956, - 15.016024602262714, - 14.998222063691749, - 14.973239532118809, - 15.056955277053593, - 15.075739883970101, - 14.940720869453449, - 15.074848186831737, - 15.088752471442124, - 15.003371095765987, - 15.050060385862043, - 15.015958618348062, - 15.084319788719544, - 15.000798175986404, - 14.965607944604773, - 15.00382449541384, - 15.030678614577972, - 14.971976959056725, - 15.031226017834285, - 15.059008890102707, - 14.967526762808328, - 15.036987737770707, - 14.942077838971253, - 14.950229256904446, - 14.960307190506903, - 15.07220799976868, - 14.98115230871483, - 15.04370962549509, - 15.00761505609195, - 14.998129043131332, - 14.944641950372725, - 14.918176467061315, - 14.897744277398893, - 14.945960493120756, - 14.943894214801354, - 14.90118957887255, - 14.964568084917994, - 14.959428628388808, - 14.977781919199867, - 15.042253362060666, - 15.009055260631147, - 14.974684700044204, - 15.06788238754852, - 14.996307609708364, - 15.013612121707624, - 15.093338682142747, - 15.108874507922877, - 14.969760756449745, - 14.963515846058257, - 14.943613559729203, - 14.98077631646816, - 14.933221067151562, - 15.030821128716626, - 15.073975459450855, - 15.155285816654184, - 15.065329187900614, - 15.015758053356771, - 15.04065927845168, - 15.01857226723169, - 14.970776039537611, - 14.99824899379435, - 15.039983941655805, - 15.020056786195152, - 15.113741747985284, - 15.019904963608187, - 15.029240220069132, - 15.022469300727709, - 14.905294853387973, - 15.021833251169793, - 14.972460000494193, - 14.998183741121805, - 14.93993819454681, - 14.980397346678334, - 15.03657132324399, - 14.962512272425396, - 14.981915562017448, - 14.96516130748748, - 15.052779290646656, - 15.047359837328084, - 14.993807321675305, - 15.121864813115923, - 15.070591450835286, - 15.025387124315184, - 14.981099975938227, - 15.057112928824175, - 14.969246357185986, - 14.991573006002483, - 14.997431372412617, - 15.029106506071908, - 14.995934141694411, - 14.949537417898593, - 14.973136294432905, - 14.957441678222398, - 15.044052888940389, - 15.00975880979175, - 14.964139778795243, - 15.025742920444424, - 14.952083423659337, - 14.894992776000665, - 14.987692687058548, - 15.014994897763875, - 15.049484336776782, - 15.014752686644643, - 14.907626596941585, - 15.01972483267973, - 14.898420617596326, - 14.96694713841224, - 15.022621115423878, - 15.03329414330091, - 15.061502275197853, - 15.033616354849418, - 14.995102518981222, - 14.983106255586819, - 15.006638997054395, - 14.95263284931216, - 14.941191444069382, - 14.990640946822971, - 15.003192205148887, - 15.019849670987568, - 15.053867343907749, - 15.052568737530825, - 15.111711499278632, - 15.048771693146973, - 15.008723637027611, - 15.066723070438679, - 15.02938953116572, - 14.953616954665167, - 14.890553332669514, - 14.928426751249475, - 14.983436571048253, - 14.998488089364146, - 14.960936037398831, - 14.994882011626741, - 15.039106528512393, - 14.938788637234001, - 15.075291616173224, - 14.993240808490825, - 15.022503049914466, - 14.967061677200379, - 14.95337281760304, - 14.941050133094132, - 14.961892849682469, - 14.942418526331203, - 14.95189339602486, - 15.042745779946271, - 14.996652889191003, - 14.98494153043804, - 15.049071057574537, - 15.076047936038249, - 15.048132607300479, - 15.017190833186971, - 14.997975244027623, - 15.027625042552842, - 15.03555464324942, - 15.031882071841194, - 14.999374765383926, - 14.96591243870348, - 15.059855311309482, - 14.995455097112615, - 14.975000313053819, - 15.006727124193006, - 15.044540820360286, - 15.022018492293856, - 15.090177707703832, - 15.085330570411278, - 15.08016208369475, - 15.116598150600883, - 15.104773714428468, - 15.158113615924147, - 14.993318370628772, - 15.014724742533515, - 15.021951303558636, - 14.986614077470062, - 14.992967530946132, - 15.036859784248106, - 15.032458321184539, - 15.06755723030664, - 15.015699233762286, - 15.021990306618896, - 15.033563950022947, - 15.036738634483621, - 14.920018324148131, - 14.947546973243817, - 14.959515332108266, - 15.031275893093287, - 14.978739423942969, - 14.979743730835473, - 15.10635423512605, - 15.015589134029609, - 14.960370136381982, - 15.02975643776175, - 15.047148363604187, - 15.037261944775093, - 15.029369072810498, - 15.033353595542517, - 14.948589386736593, - 14.958076524393007, - 14.96467190810386, - 14.972843198673601, - 14.951920773485998, - 14.919641390875938, - 15.007886177275118, - 15.079080242799751, - 14.972116578360714, - 14.98689832259204, - 15.051800562854247, - 15.085681991342703, - 14.97955312955105, - 14.933290736729358, - 14.993014192192817, - 15.019734693914609, - 15.071411037525056, - 15.033545786121918, - 15.036041714635102, - 15.021460550879524, - 14.955798973553126, - 14.99232005539908, - 14.959268935033164, - 14.989908579835609, - 14.953782977608052, - 14.98979970005867, - 14.9493325753026, - 15.02448684895998, - 14.964471357659129, - 15.060163104466463, - 15.024257447087047, - 15.000791597243815, - 14.997221177446757, - 14.989660936992669, - 14.982150119676264, - 15.030324812212609, - 14.98567964974445, - 15.038046044966784, - 15.01705907579529, - 14.95827305987546, - 14.991150891678611, - 14.973098678244899, - 14.999787681112995, - 15.047374382010414, - 14.956995902816777, - 14.983715768746515, - 15.014098129825719, - 14.99072289276565, - 15.015213910148644, - 14.991637155615754, - 15.074486246918031, - 15.011472764515869, - 15.020407071901474, - 14.976001729079192, - 15.026669757166854, - 15.025064058120394, - 15.001341236570727, - 15.015422719507697, - 15.050322184513883, - 14.978694304105424, - 14.917426654913292, - 14.982442215860889, - 15.034987568011875, - 15.002104602810013, - 15.016832124665795, - 15.083982608392072, - 15.003097036292026, - 14.93666775848615, - 14.97561234380213, - 14.90176417866376, - 14.944787581462988, - 14.981815909424823, - 14.98116275531577, - 15.014162897785244, - 15.024978455239223, - 14.938737163538075, - 14.949836432567242, - 14.956481821749355, - 14.975503778948843, - 14.934215292770466, - 15.090273896319175, - 14.986038977899609, - 14.965884259946435, - 14.965014587311531, - 14.958977064056043, - 14.977766162338852, - 14.948381902888292, - 14.994871023876753, - 15.016443404009252, - 15.021084167784094, - 15.0101340500176, - 15.05777883664421, - 14.943782518292045, - 15.058505745924787, - 14.988046699451957, - 15.024396796607705, - 15.007985019995019, - 14.936930127982988, - 14.992718872926547, - 14.98149646761146, - 15.01785802919653, - 14.977870747651801, - 14.974316030624797, - 14.912959364412725, - 15.069877621895158, - 14.912648096305073, - 15.004238603918363, - 14.978964845446127, - 15.016551543736808, - 15.030707469009327, - 15.038361648490573, - 15.044645128242779, - 15.046846078853276, - 14.953886863560033, - 15.032425494557891, - 15.035546713845456, - 15.001910089804745, - 14.982643534282225, - 15.033805343099399, - 15.018002026891702, - 14.972500761588249, - 14.979546698439096, - 14.954698881039754, - 14.960503530154519, - 15.025378090474554, - 14.99124405166983, - 14.969238042316338, - 15.004470767124836, - 15.07273707472608, - 15.010698856097006, - 15.053874072857033, - 15.075082401307483, - 15.005638198090194, - 15.003884226770298, - 14.953232027996437, - 15.022840087692973, - 15.040249898871995, - 15.018339474786963, - 15.012099808824148, - 14.913020389709027, - 15.068670438818248, - 14.957909597071385, - 14.977920819372365, - 15.008177617975525, - 14.988736398979613, - 15.004572251693354, - 14.921305106601995, - 14.958460701975595, - 14.969186479609718, - 14.994376055718941, - 15.004310014930406, - 15.034734134776263, - 14.966267667776913, - 15.02195965877304, - 15.036223832908888, - 14.985252975243377, - 14.992081892642416, - 15.019537295472837, - 14.97912677171048, - 14.994278974429443, - 14.972547765519769, - 14.973338844454094, - 15.03716308802303, - 14.930677931451378, - 14.937047194964718, - 14.888309397293453, - 14.945811126629904, - 14.93413213531271, - 14.94083300170213, - 14.891494706370473, - 15.007818511555627, - 14.99077087464061, - 15.048787704761136, - 15.08029866816059, - 15.104659342950786, - 15.062923526301143, - 15.111044114045445, - 15.01288768225867, - 14.94756775096326, - 14.955970537640036, - 14.912262250748542, - 14.979103587848401, - 14.965707131891827, - 14.989711537271848, - 14.904784127077976, - 14.96142911808514, - 14.978064349053023, - 14.998279028884358, - 14.998619512934768, - 14.963494523586103, - 15.026247974264683, - 15.016107318084783, - 15.001526355760594, - 14.975436438504929, - 14.960378398457799, - 14.981821091124772, - 14.944325978891856, - 14.996039093271204, - 14.938881820725415, - 15.032676573800291, - 14.949558393000173, - 14.968901024979965, - 14.963131759229753, - 15.00482079219567, - 15.039804453849646, - 14.979411995736847, - 14.983621515902755, - 14.928082569934363, - 15.001803783208205, - 15.031946151587853, - 14.968784210999603, - 14.978668985770149, - 15.022266080623055, - 15.038968905508193, - 15.005182282507407, - 14.95019978007993, - 15.056769182272793, - 14.925064118681025, - 14.922539704369322, - 14.970678147134164, - 15.016764035143435, - 14.945275638310036, - 14.982259373160856, - 15.107514668552676, - 15.055870408532671, - 14.98601731495116, - 14.981658505922114, - 14.895682485188722, - 14.896407749903197, - 14.989946285089255, - 14.971067770301547, - 14.962319058963864, - 14.978564467656476, - 15.02693905541132, - 15.050502131108075, - 14.985303858171534, - 14.97898658167422, - 14.962563392134443, - 14.94046654074534, - 14.938079239489074, - 14.94111106460188, - 15.001357458389144, - 14.941156561970528, - 14.945067419102173, - 14.988894646726404, - 15.013268098015649, - 14.979446326343423, - 14.997179950746332, - 15.011671730911715, - 15.049843855179473, - 15.014323724931538, - 15.018138231586162, - 14.99350006519646, - 14.94867106039259, - 15.015785252996212, - 15.040548370774307, - 15.046353185597038, - 15.028130537833704, - 15.042334240578853, - 15.04335314814923, - 15.094943754096565, - 14.916542256193688, - 14.926189866660728, - 14.934458312313412, - 15.031322329221732, - 15.01831154861333, - 15.02620527862398, - 15.067584239392797, - 15.029163335533465, - 15.122709189088964, - 15.033204941780244, - 15.068899254475552, - 14.995607582378591, - 15.008003476616244, - 15.026336800869576, - 15.033486335660074, - 14.985055421212548, - 15.006991669068213, - 14.989962533339895, - 15.063888502356656, - 15.017404952777142, - 15.085588069528585, - 15.01863753137501, - 15.021162390186186, - 14.992115330188017, - 14.961692541539357, - 14.997675656059034, - 15.02735804014378, - 14.930994980867379, - 15.008238439078147, - 14.956538660920899, - 14.947091178751737, - 14.941888756295446, - 14.980242615696582, - 14.969204462829403, - 14.954931877340853, - 15.000843434812284, - 14.953243093561701, - 14.941265203923315, - 15.018023708168865, - 14.959320193420796, - 14.998971417417591, - 14.983435985298543, - 14.991954892007543, - 14.972924021758764, - 14.994733695931494, - 14.924465160565061, - 14.992303725491398, - 14.92879728849443, - 14.97813242973815, - 15.011717448494045, - 15.076603733473545, - 15.036267284813642, - 15.042884734246691, - 15.010094442843705, - 14.997950878770421, - 15.073257362580533, - 15.08844041534107, - 15.010524116563788, - 15.054244619244002, - 14.952715968737818, - 14.883707930737536, - 14.91817703043922, - 14.879071592871425, - 14.984757151184802, - 14.994931236430896, - 14.936190121307105, - 14.958679601810676, - 15.023867910461634, - 14.96377464908783, - 14.9673048529821, - 14.976134678311347, - 14.957818257033786, - 15.04795807145369, - 14.919582377542419, - 14.925264777991332, - 15.003940384768608, - 15.055828662979971, - 14.980706527312703, - 15.061470465404666, - 14.931928078324736, - 14.97907674745489, - 15.01610867344913, - 14.979563934240744, - 14.980526245322578, - 15.00480812237471, - 15.025554816459426, - 15.003021332523918, - 15.016612110432957, - 14.976534217056312, - 15.058263264855645, - 14.998491556983026, - 14.9561025403249, - 14.889579856228131, - 14.944169126085205, - 15.052015766669225, - 15.033331731289785, - 15.032785888409697, - 14.98512663580151, - 14.979754822469785, - 14.870887307161961, - 14.969519148198728, - 14.965864590629863, - 14.957509879322833, - 14.984267284350812, - 15.019268550735797, - 15.061192417598406, - 14.991914308839352, - 14.964025980834192, - 14.97218865698878, - 15.024528226718408, - 14.962954565116727, - 14.93776886080971, - 14.990242009995217, - 15.023004058370837, - 14.956628746707848, - 14.960867888030199, - 15.005786049188588, - 14.935807397146306, - 14.978525688034255, - 15.015568633177912, - 15.02986165403214, - 15.043621771540671, - 14.997594014389144, - 14.97872062441827, - 15.033516760672645, - 14.994098600461925, - 15.032327943131698, - 15.027050851173238, - 14.989667322726396, - 15.012990775326672, - 15.048365943246276, - 14.974604028573197, - 14.968795282237695, - 15.014600845602923, - 15.0193197664625, - 15.057160909722189, - 14.973835667868617, - 14.994380056340777, - 15.090584273385726, - 15.03238821915612, - 14.940934737809748, - 14.966130462443624, - 14.904433966286545, - 14.937797246609499, - 14.992654840609697, - 15.013522774771202, - 15.016304412978208, - 14.998985376878549, - 14.95282504764297, - 14.976734124812284, - 14.983407629752572, - 15.037544882925065, - 14.902602662489654, - 14.861391912807154, - 14.8670060609251, - 14.978378796578767, - 15.034514573065294, - 14.958737480515945, - 15.020400064877974, - 15.021637522730265, - 15.057082970165, - 15.07780292881546, - 14.989402378504044, - 14.877285975906235, - 14.916246924439259, - 14.931970280305556, - 15.017544792269064, - 15.019246998465785, - 14.891861306451181, - 15.058129235123944, - 15.064490121264624, - 14.994596145322216, - 14.945401963123926, - 14.979057594191747, - 14.97956605854231, - 15.04553816877346, - 15.04664672645638, - 15.02133212757054, - 15.043074864458122, - 15.07027184872636, - 15.02789871765634, - 15.055386031277534, - 14.979880351894233, - 15.002960023663958, - 15.008543809188728, - 15.002155594551141, - 14.982276628090839, - 15.090511824553143, - 14.987929467939303, - 15.035563660656479, - 15.02912528971248, - 14.990998824551125, - 14.92009798746259, - 15.00788075822241, - 15.043922231413116, - 15.019390688809418, - 15.062775757317388, - 14.978259370024858, - 14.97975703664518, - 14.988348019209287, - 14.987081272190956, - 14.965813825154711, - 14.984123638642778, - 14.938431321555568, - 14.988007585782764, - 15.129537679733078, - 15.001137630748609, - 15.01561053055507, - 14.999074721167974, - 14.983320618356881, - 15.040852404221393, - 15.032530975789417, - 15.017816092538236, - 14.988309214402332, - 15.06914904717969, - 15.0018161874128, - 15.043354262631642, - 14.991729662444369, - 15.014693983289243, - 14.947431903824187, - 14.953466002096144, - 14.912078301742623, - 14.987624960086713, - 14.96692557360154, - 14.879377142465, - 14.967139692109715, - 14.964199973188611, - 14.873868131580785, - 14.873544298607376, - 15.012588524933214, - 15.00878132150623, - 14.981992082460101, - 14.978629182014238, - 15.10166766728346, - 15.02625590603044, - 14.888773985294893, - 15.092354605756094, - 15.093135291844678, - 15.083240477026365, - 15.006724984917772, - 14.990900146115164, - 14.948108643761522, - 15.062439901981202, - 15.053181032778808, - 15.034969646631561, - 15.055680949256688, - 14.939229896395908, - 14.950855580188504, - 15.00819852318152, - 14.906254566589254, - 14.964309743310638, - 15.00154591218471, - 14.980639356755622, - 15.04204931282232, - 15.000982853583139, - 15.048151097719773, - 15.036961714963942, - 14.953560004675163, - 15.007961384241078, - 15.005100958018772, - 15.05564201015517, - 14.989888571433145, - 14.993344020625784, - 15.007456150353859, - 14.942706613945742, - 15.027197040979278, - 14.992556276994266, - 14.95581578858821, - 14.983964772078295, - 15.001572711180343, - 15.01737411638524, - 15.00588480652553, - 14.999467553182686, - 15.03945236996049, - 15.037052575025541, - 15.015767986263086, - 14.993612350781493, - 14.99969044769016, - 14.966020342263294, - 14.92666689007978, - 15.044141660887986, - 15.064470008893913, - 14.99372232315415, - 14.931149119296288, - 14.973427773242573, - 14.952720998239592, - 14.992753999123032, - 15.010097850088464, - 15.031859878216192, - 15.027342949642808, - 15.003176040892148, - 14.993011876356308, - 15.028431499105723, - 14.968984019733782, - 14.99952329508249, - 15.046489825481405, - 15.047172892246264, - 14.992379681943408, - 15.042381031685764, - 14.998107311655366, - 15.006469041306673, - 14.981724918832318, - 14.996184426456214, - 14.99336150032763, - 14.993773591214403, - 15.014486267044205, - 14.997422850490652, - 14.93255208044485, - 14.986010175947047, - 14.962313027846642, - 15.063059196032134, - 15.017932925536288, - 14.93809153615278, - 14.988988804095447, - 14.915560355301405, - 15.051658442155055, - 15.074287503214862, - 14.986004752055626, - 14.988818622865434, - 14.934161972845253, - 14.925719239281968, - 14.946679094721457, - 15.06676420887742, - 14.973881122411612, - 14.96609202886315, - 14.9921900568548, - 14.967438660322406, - 15.022063455650194, - 14.954736648792439, - 14.994425641039701, - 15.02486253023985, - 15.045678376670594, - 14.985021642465739, - 15.039339163927124, - 15.003521058685687, - 15.012314258554392, - 14.999039572141582, - 14.956833188903284, - 14.965122804122414, - 14.966989534805109, - 15.063607852241255, - 15.05187806236915, - 14.98632453573918, - 14.948777224089508, - 14.985070149990259, - 14.952334266077509, - 14.964746158006974, - 14.934974910106467, - 14.964629137502827, - 14.991552886041502, - 15.05824364022842, - 15.042870791087674, - 14.973860809961296, - 14.98724953570751, - 15.033297692684684, - 15.046716205395775, - 14.993721502530127, - 15.016831688087237, - 14.977059235596617, - 14.965402906887746, - 14.888756234775268, - 14.956802884906764, - 14.89833870083347, - 15.080294966062308, - 15.071211395532478, - 14.993477773878553, - 14.991541901100517, - 14.886392747658459, - 14.954418515510605, - 15.055455005696379, - 14.994894504220271, - 14.985951613488623, - 14.982941455077258, - 14.98699428054124, - 15.013621348180013, - 15.006594805933306, - 15.015891262718513, - 15.000013504776167, - 15.044637452321354, - 14.985646149197457, - 14.972795043911187, - 15.046152211397818, - 15.026679356446769, - 15.001828324968173, - 15.03846687880021, - 15.007085356613693, - 14.974785299804436, - 15.017753194981891, - 14.974601797498943, - 14.964338466501456, - 15.016072637847564, - 15.034297001916238, - 14.985153736129565, - 15.00720424982333, - 15.040002088843895, - 14.98616803478127, - 14.997951118478982, - 14.964973527672164, - 15.017398963028262, - 15.005395746629288, - 15.002324591582848, - 15.01275662537894, - 15.080457760209036, - 14.99796374605245, - 14.94048427244716, - 15.005983398231141, - 15.006085362977753, - 15.041868296518684, - 15.071539281243053, - 14.959643203123875 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 1", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 5.259574172833863, - 9.438125167031476, - 9.870059746074222, - 9.957439734075589, - 9.949446136221091, - 9.984291475730075, - 9.963392610682043, - 9.965195613875391, - 9.959674126444053, - 9.943011012061824, - 9.98046625075204, - 9.968312074773076, - 9.954078095741233, - 9.971238398240683, - 9.902246529047787, - 9.905191397716658, - 9.977985105127887, - 9.978227781377173, - 9.965111914531088, - 9.929865825375815, - 9.931162581959427, - 9.948319133578092, - 9.948061481186373, - 9.97261957100872, - 9.941633106435, - 9.940713701227985, - 9.966591188219082, - 9.99898974655466, - 9.943827942571465, - 9.957984253124396, - 9.942678568291498, - 9.963173280095816, - 9.940000468201598, - 9.962751542978024, - 9.967717096801344, - 9.973857469689335, - 9.903362615737844, - 9.907083704992742, - 9.932352576081025, - 9.95409551658381, - 9.959491611709975, - 9.957695681304589, - 9.974405238983069, - 9.968994428359487, - 9.998394217825151, - 9.971153602240683, - 9.94395633982443, - 9.932118479200302, - 9.91536183336461, - 9.953012994095733, - 9.935346050081233, - 9.933720959011328, - 9.95275866471177, - 9.967016911102407, - 9.914987503213554, - 9.9428201513321, - 9.99398097216529, - 9.942146669668205, - 9.907538829179822, - 9.88494908364394, - 9.905028790632363, - 9.933188717506594, - 9.948227113928025, - 9.964518948129964, - 9.923384676705199, - 9.936987082014415, - 9.918842305274334, - 9.931295407458165, - 9.940097796719101, - 9.929796378463468, - 9.939540350872914, - 9.96026176568876, - 9.966712926073034, - 9.971537328063874, - 9.985573733830515, - 9.981107971851142, - 9.962814972298666, - 9.94243910194699, - 9.94865476577822, - 9.982061970323969, - 9.932414787617224, - 9.911090999779917, - 9.92220270148507, - 9.94426152069187, - 9.960276899551864, - 9.956063290688023, - 9.931525220932956, - 9.931123791861772, - 9.94923424000958, - 9.93274211769205, - 9.940775190406509, - 9.956877494086129, - 9.904950388851505, - 9.93504430532199, - 9.930829967900337, - 9.92556693402041, - 9.985600644772012, - 9.966615909078339, - 9.980635889588982, - 9.945393318962216, - 9.959125039597804, - 9.988100026562197, - 9.969342971022373, - 9.923169203712849, - 9.908402939594152, - 9.919969780763484, - 9.93154594618106, - 9.941613188272509, - 9.926055224055167, - 9.921064652092387, - 9.919476205882125, - 9.940789478742385, - 9.982945564745881, - 9.966812053587372, - 9.957055883515586, - 9.984453443370477, - 9.966192912732295, - 9.938660178099257, - 9.949414523780819, - 9.929246579512732, - 9.918740183636514, - 9.918050786309621, - 9.881873321474668, - 9.864589414684584, - 9.945536542433638, - 9.938210074180105, - 10.015458960035009, - 9.968046434694273, - 9.935631804066801, - 9.944459762979195, - 9.930015773831979, - 9.92107171029024, - 9.92296121511714, - 9.931089998660433, - 9.992084390059746, - 9.936019035095123, - 9.941443852284578, - 9.956418225931117, - 10.002562176102117, - 9.972059547803012, - 9.972488989745115, - 9.944540292626382, - 9.947352947741855, - 9.947795751772647, - 9.935946402632057, - 9.915332685712478, - 9.946144464963727, - 9.961959773271984, - 9.925875427353336, - 9.948030084919205, - 9.954005576352943, - 9.931020884374531, - 9.977998710751537, - 9.944953569239468, - 9.91153070741634, - 9.971013461954731, - 9.951476313197613, - 9.96765979273551, - 9.94331625314439, - 9.946291616951477, - 9.970154369053834, - 9.978852947001485, - 9.959305128287625, - 9.958465476393588, - 9.98297398057908, - 9.96019394369073, - 9.935001477652285, - 9.917672575055603, - 9.89981281000178, - 9.922983170323686, - 9.972100222915342, - 9.963590684044087, - 9.974832443268474, - 9.951923612751916, - 9.95928007637092, - 9.94111062162055, - 9.936857904276607, - 9.982275066263005, - 9.954464225308735, - 9.926923245304652, - 9.89253909176667, - 9.891574820153291, - 9.944411067874602, - 9.943688330315059, - 10.003691744843058, - 9.991135513831773, - 9.969124965327387, - 9.964480773502977, - 9.951066274837801, - 9.927051935792838, - 9.947067826936172, - 9.955442490112468, - 9.905337670522197, - 9.891041081085291, - 9.940259228353161, - 9.93473173730409, - 9.962012141798832, - 9.988685313046782, - 9.90257830046431, - 9.896369516979027, - 9.953696447329827, - 9.971187802781646, - 9.96013730947074, - 9.943830317122687, - 9.949904819470548, - 9.917110169442243, - 9.893997996743146, - 9.921651805975591, - 9.922964780661795, - 9.961892564789244, - 9.93065577115314, - 9.928979860889655, - 9.96314369612051, - 9.946475590353907, - 9.94707079966038, - 9.99326748457674, - 9.986046520127342, - 9.948385270585135, - 9.953188991511766, - 9.939572709416835, - 9.945741785606801, - 9.919109974618214, - 9.932522143982492, - 9.983491886453109, - 9.963540146595534, - 9.906073191945397, - 9.903677878438831, - 9.909942923863627, - 9.929603583151888, - 9.946883284216451, - 9.94480444447792, - 9.958296186915712, - 9.981369726565697, - 9.943267696788629, - 9.970891670206424, - 9.936094055802672, - 9.919106418901295, - 9.95743227854209, - 9.916136563610044, - 9.954669568929564, - 9.931879464302034, - 9.950398982001337, - 9.918095752703097, - 9.926858608133891, - 9.95870542773457, - 9.97768786687826, - 9.927943052393722, - 9.931080125159696, - 9.98685819735727, - 9.99221479513895, - 9.988952261339426, - 9.918525205723693, - 9.953982317654814, - 9.969790429326576, - 9.976705204007716, - 9.979883109742897, - 9.940158072440358, - 9.965320369312218, - 9.950895338822098, - 9.92427484658913, - 9.934174755583156, - 9.96020216886432, - 9.987303701576693, - 9.937353728782648, - 9.950735583413225, - 9.94263209495624, - 9.939817095601672, - 9.902184638954171, - 9.95527703058532, - 9.97779551768793, - 9.979741321137707, - 9.967561142737372, - 9.925918381679544, - 9.964049808595076, - 9.94943528756807, - 9.948317844504405, - 9.95192934710046, - 9.94232186653158, - 9.944915459437324, - 9.916275423018703, - 9.917983151319335, - 9.933372401281959, - 9.95756713101679, - 9.964445186186452, - 9.96033913932457, - 9.939626108692186, - 9.908608317803534, - 9.94669253772985, - 9.9408706587307, - 9.95280489947106, - 9.938872528441813, - 9.948409504135958, - 9.946672512507785, - 9.930117175016282, - 9.968663910734943, - 9.987401290085408, - 9.956511610930603, - 9.978514663570351, - 9.969495563938285, - 9.945704777468011, - 9.95189499608617, - 9.945569290296682, - 9.97465563795921, - 9.958756045626671, - 9.967439565595132, - 9.973946287553224, - 9.95100422326551, - 9.964611082794551, - 9.939275263567609, - 9.972108557611415, - 9.90191903324094, - 9.945095815121554, - 9.90589038226598, - 9.923165097854518, - 9.910539637390592, - 9.901594110938213, - 9.894265967746378, - 9.878583384918809, - 9.977046303187457, - 9.980358689032515, - 9.980819247891448, - 9.989512492210693, - 9.992014041877592, - 9.954032537980964, - 9.970995125283467, - 9.94442338171162, - 9.969211902149935, - 10.015665088579809, - 9.959123750058644, - 9.95860866946147, - 9.947131862058226, - 9.965108375633775, - 10.028511353672503, - 9.97397050969994, - 9.949602974747776, - 9.9624552309655, - 9.94924156072583, - 9.935089742925552, - 9.93114866073612, - 9.930658284015514, - 9.916512546182146, - 9.958353282171018, - 9.967252063924187, - 9.959264520518367, - 9.922784535935333, - 9.924031881197811, - 9.893487715062356, - 9.954574118263361, - 9.950897297111387, - 9.93431056291999, - 9.938474421508287, - 9.930883946075282, - 9.938209678889772, - 9.937972746743698, - 9.937014949231086, - 9.916701647317002, - 10.008758364260538, - 9.995976714835873, - 9.973464305524049, - 9.96691064097849, - 9.965197638141582, - 9.941820635755857, - 9.981988633821405, - 9.974814677429432, - 9.977852059845155, - 9.967438625233564, - 9.975539977827212, - 9.980132493961564, - 9.94695078974804, - 9.971509670912797, - 9.964322145829401, - 9.970820275587704, - 9.95478015800037, - 9.936857114250172, - 9.945066984169229, - 9.904322243535388, - 9.926634299530066, - 9.958042948795653, - 9.969046652891775, - 9.971813098948985, - 9.986108119132568, - 9.982652928759345, - 9.996108228530865, - 9.966959928732374, - 9.96867292954506, - 9.974447679229925, - 9.98187144813746, - 9.94439864030533, - 9.94077362811268, - 9.976165079815443, - 9.947343644688408, - 9.942799617087902, - 9.91571923925287, - 9.956295099058622, - 9.927534712091845, - 9.948539245685636, - 9.960592370456972, - 9.941277143528684, - 9.9413045250211, - 9.933313078843513, - 9.978049169140926, - 9.958246027736328, - 9.983028545465476, - 10.003165505345205, - 9.944152504727104, - 9.917975294654662, - 9.928026690945307, - 9.940295281590593, - 9.973658839795672, - 9.928558697721952, - 9.965587828768019, - 9.911945738686446, - 9.939312998100414, - 9.95322028126581, - 9.912370110966206, - 9.969403242373115, - 9.970006667825256, - 9.994081633641418, - 9.960650422354508, - 9.933461148770904, - 9.93891108874666, - 9.948601629205136, - 9.954896583206828, - 9.93875278213253, - 9.943156253849716, - 9.953254202063624, - 9.98043755803794, - 9.950792128659248, - 9.984140120074203, - 9.96715074073822, - 9.931856157994313, - 9.947674385102536, - 9.961927246296506, - 9.981767939753789, - 9.96284884942834, - 9.9740273802047, - 9.953674448427522, - 9.907278945854495, - 9.920635512547276, - 9.929357719737316, - 9.958857893374322, - 9.955010589611184, - 9.95392544452878, - 9.945336773024286, - 9.959192894033317, - 9.964867807730892, - 9.940387857257344, - 9.984584728351757, - 9.97690901860133, - 10.014705880113256, - 9.987595291850015, - 9.95328669927584, - 9.942323798052659, - 9.982618120348635, - 10.007339911049772, - 9.971096619441543, - 9.947500336201392, - 9.921191736081145, - 9.900767055077308, - 9.942885472226498, - 9.945911866038305, - 9.937809353461336, - 9.97298107199767, - 9.97063857078205, - 9.953905556015716, - 9.903826343633108, - 9.951477078499183, - 9.973238369827927, - 9.956324062514117, - 9.969479566249536, - 9.966464679905917, - 9.956261381626723, - 9.94153642023346, - 9.93707685692762, - 9.902868407379144, - 9.906965660844426, - 9.900249343641155, - 9.948222559519206, - 9.946723713811766, - 9.929542662912663, - 9.954867516198041, - 9.973562086246083, - 9.999467756767471, - 9.95828740147208, - 9.991692823262756, - 10.004999481894432, - 9.968877173513393, - 9.94379012292092, - 9.956792931708456, - 9.962590747616401, - 9.953178752455264, - 9.936693494801746, - 9.953014327908466, - 9.967793730103315, - 9.996020280495685, - 9.980874057270773, - 10.013854172287143, - 9.95870285804209, - 9.929886004573273, - 9.944507377381841, - 9.941732021236502, - 9.949645988202668, - 9.957503198630615, - 9.893055544861436, - 9.950809226979985, - 9.9145555714058, - 9.93946789314559, - 9.964546845603833, - 9.977806515816614, - 9.968229385843047, - 9.936333317925877, - 9.955014442494797, - 9.965334123306857, - 9.956135635845891, - 9.977964820206372, - 9.953409845502689, - 9.968407989064533, - 9.995785364648262, - 9.963396904925244, - 9.981446153148061, - 9.945360146803404, - 9.943585296249456, - 9.894657721313388, - 9.903374328107999, - 9.959924121078451, - 9.96198521598053, - 9.97719782460591, - 9.979714368503984, - 9.94691289780156, - 9.949972120837938, - 9.968630404959134, - 9.9513139377951, - 9.941969171111133, - 9.946791302558802, - 9.936228343644103, - 10.001019140654163, - 9.962312748331549, - 9.930592885882959, - 9.931734608177894, - 9.984326039909766, - 9.956627545956291, - 9.935755527025442, - 9.922233312960293, - 9.912983892525645, - 9.92725981559128, - 9.970039914907503, - 9.95603943332903, - 9.935258964103943, - 9.964537931823312, - 9.944547535043487, - 9.973965502468808, - 9.982133480033172, - 9.9480207754338, - 9.94252522481253, - 9.945235476719631, - 9.929224203333536, - 9.894856425850943, - 9.875964918993189, - 9.924037477438931, - 9.967421138328103, - 9.947712014768692, - 9.965590751620116, - 9.96947928863952, - 9.953332399424635, - 9.943346564799139, - 9.95883448132935, - 9.955562121291086, - 9.944136607063466, - 9.939788144464563, - 9.93941929555951, - 9.958829870166642, - 9.950944067826365, - 9.944562999761821, - 9.933619187240494, - 9.937055141567763, - 9.927035459137114, - 9.960556696193878, - 9.9451998897277, - 9.941168665268199, - 9.92922125049237, - 9.945927280717004, - 9.937959431606107, - 9.925700364015638, - 9.970905901668173, - 9.97343924452404, - 9.984947066230632, - 9.960346166391188, - 9.951068514728492, - 9.922741648977162, - 9.941525194801867, - 9.943191804473827, - 9.980590541698758, - 9.959375347656756, - 9.936027385518923, - 9.942688069134357, - 9.939291650062435, - 9.977459994369712, - 9.971768398015943, - 9.948175462292161, - 9.936853397648573, - 9.965511543268438, - 9.959860776612103, - 9.940702451839835, - 9.954105659283192, - 9.923469718764775, - 9.942653240923793, - 9.913517621774947, - 9.920362702802446, - 9.945935381739927, - 9.927547378437893, - 9.963627797612473, - 9.995177725698033, - 9.962871678978212, - 9.936681521650101, - 9.968057122139301, - 9.959292842741643, - 9.954885112849844, - 9.977625920440165, - 10.00018558478846, - 9.923250458445917, - 9.94117575720545, - 9.95779816324098, - 9.929678365473404, - 9.96329541996995, - 10.001980368874468, - 9.987347586874264, - 9.983086803870462, - 9.976879436656185, - 9.975496699478283, - 9.927165306646213, - 9.9697341514623, - 9.927090958193597, - 9.92361673612327, - 9.954902138164721, - 9.97500350180054, - 9.935978756909421, - 9.94342688116044, - 9.916210900777255, - 9.891791462163974, - 9.882440303073249, - 9.874974234027157, - 9.9259162183772, - 9.943032234433218, - 9.964475992690138, - 9.93568812096831, - 9.921289585874666, - 9.901351761447483, - 9.915149057912707, - 9.9375065528053, - 9.939780038900869, - 9.913251800313835, - 9.931683484812869, - 9.939775282394933, - 9.930300369531393, - 9.91475189017936, - 9.916135577415858, - 9.952192457226367, - 9.935994580633524, - 9.929326238492285, - 9.93288460944038, - 9.971499858627512, - 9.940620664550167, - 9.92213057731403, - 9.916875150903333, - 9.91242643721059, - 9.950861020140671, - 9.896320579640292, - 9.928676944503698, - 9.95015116853954, - 9.990912444653041, - 10.00468262439297, - 10.003175854954677, - 9.975480112942535, - 9.994769205705794, - 9.956465592607893, - 9.925737598100417, - 9.952683746477433, - 9.954741488579963, - 9.949650953838692, - 9.976734980565306, - 9.988030083394891, - 9.946747643391772, - 9.94342750825233, - 9.965850729546958, - 9.933474160133608, - 9.974293089261113, - 9.961761932019343, - 9.971189455650311, - 9.9849210512589, - 9.940728751344636, - 9.953764773388869, - 9.946442705717672, - 9.935160259046807, - 9.950034988692595, - 9.919681457808913, - 9.95827984237322, - 9.950068532263943, - 9.934301883402583, - 9.91000440442228, - 9.926815847231735, - 9.930645481343387, - 9.897914839560645, - 9.896879488304103, - 9.902711181022006, - 9.921550359507833, - 9.94755366113173, - 9.931412729971303, - 9.948326137916563, - 9.912647916750172, - 9.966387474667057, - 9.953127204414558, - 9.922364110288258, - 9.922599919083138, - 9.950982937468746, - 9.94745608184758, - 9.911661489364484, - 9.932853246402193, - 9.963377426274738, - 9.959989957813157, - 9.959248595778986, - 9.91580523751695, - 9.94974675256958, - 9.963974618204075, - 9.986793729055183, - 9.925120383791649, - 9.999176372523127, - 9.93469857433067, - 9.953006265553931, - 9.936976297094382, - 9.945875976426066, - 9.928537619811769, - 9.94262755843141, - 9.950836908696806, - 9.922566447559356, - 9.928585714364658, - 9.938510562498223, - 9.948086050054014, - 9.937179739692008, - 9.965015757725048, - 9.962988919703664, - 9.938709754993479, - 9.937485966214494, - 9.958264631035433, - 9.91143364343466, - 9.932054598403187, - 9.922029900544665, - 9.92346491337007, - 9.930920466622709, - 9.93748838243721, - 9.902389538705535, - 9.941544358360495, - 9.949086264097968, - 9.98549490941673, - 9.95398034287383, - 9.929846086057985, - 9.94946952339093, - 9.975907050964889, - 9.996716241685428, - 10.000638608383767, - 9.967670860745796, - 10.004910508197145, - 9.99326498215114, - 9.981516450316182, - 9.964924781401319, - 9.950997838826444, - 9.950115378451223, - 9.926968142901918, - 9.90626629418012, - 9.966785083876054, - 9.931284465627026, - 9.951673242048335, - 9.972463285688162, - 9.983382134379557, - 9.97988213782672, - 9.988407863584346, - 10.001004065329747, - 9.964433999548369, - 9.93746031250317, - 9.975384798685772, - 10.01442072628255, - 9.989755973756225, - 9.948799990048133, - 9.942131424013875, - 9.98462685508836, - 9.951178026302632, - 9.943095133635632, - 9.930593601223991, - 9.964457712790423, - 9.95299038186779, - 9.945102739801587, - 9.961200194765132, - 9.958976575226236, - 9.957506540167754, - 9.97539444194119, - 9.973469371354895, - 9.925214734547092, - 9.927987852113114, - 9.933683915198456, - 9.950800552535021, - 9.935060697797875, - 9.960959592374971, - 9.932553617727718, - 9.923811698606881, - 9.933544070759455, - 9.934268802778455, - 9.932134233280207, - 9.937185977740524, - 9.969660229925273, - 9.944571733615746, - 9.938678550449733, - 9.972148096056294, - 9.929678144199196, - 9.945701546163917, - 9.945242123870061, - 9.92090847733891, - 9.91803743079492, - 9.92554485869389, - 9.9154173669399, - 9.900725463411456, - 9.928225956823958, - 9.943189723644966, - 9.947910019632339, - 9.921692093675565, - 9.908873775493312, - 9.924146588007561, - 9.927326919293288, - 9.908792517658338, - 9.905279334142696, - 9.952467465803547, - 9.94690738045019, - 9.949976509233135, - 9.957282030752985, - 9.932242181036521, - 9.962524719816567, - 9.964855482920315, - 9.950740355458473, - 9.984105513911905, - 9.945912484205618, - 9.978188035091254, - 9.923767351917526, - 9.936938104720216, - 9.956237705354194, - 9.947342258468554, - 9.971175203212791, - 9.963441592770504, - 9.973227760052602, - 9.959892914094835, - 9.97651991383475, - 9.992947205805539, - 9.93034262201017, - 9.948580188983488, - 9.942086270006369, - 9.926829051217744, - 9.950479472449011, - 9.92730733877987, - 9.945958462763254, - 9.950002771983488, - 9.984173100233013, - 10.00590918509343, - 10.004254993617069, - 9.9735032898073, - 9.972008190629756, - 9.970325001006271, - 9.922170289158547, - 9.963590275178378, - 9.965602739562295, - 9.95057455736868, - 9.957528934853327, - 9.94827900014516, - 9.960087614518052, - 9.951897200068167, - 9.953710228591529, - 9.926966012771867, - 9.906877409440888, - 9.927424038327421, - 9.930921221029072, - 9.949553821346422, - 9.914753627740208, - 9.91542701606459, - 9.918030270296178, - 9.927243459049341, - 9.967056529375132, - 9.976052819243057, - 9.980990946324305, - 9.980654166856914, - 9.967084023578025, - 9.944491264078213, - 9.968037396043515, - 9.969172414923213, - 9.968085570383218, - 9.948979252610402, - 9.986537439519655, - 9.98518266802446, - 9.951596023742272, - 9.95364310271612, - 9.952185245274059, - 9.950820310898306, - 9.980836464213414, - 9.960926271253037, - 9.934791026585781, - 9.94660952728311, - 9.949864321314529, - 9.95959374973952, - 9.9531621214909, - 9.941188291298808, - 9.942208263847549, - 9.932091458382041, - 9.962023265379853, - 9.92067547275569, - 9.947832853259898, - 9.93772802197965, - 9.93054477400505, - 9.942277034837664, - 9.951850290258307, - 9.942047223522602, - 9.96342726272635, - 9.91626160803237, - 9.956348957465746, - 9.966831369807982, - 9.969491697598805, - 9.93427568125367, - 9.939898619549519, - 9.949070004725446, - 9.950098163764006, - 9.955045421950038, - 9.982373487180649, - 9.970383693136885, - 9.922180440840084, - 9.984022507947543, - 9.937891990898281, - 9.977794499241874, - 9.94628627325409, - 9.963606760351292, - 9.965057545073995, - 9.944714516017987, - 9.962368004325658, - 9.938769210585379, - 9.936564535412554, - 9.971886147508792, - 9.944749925109068, - 9.958780123347907, - 9.949450387061775, - 9.93219356357217, - 9.942520324780194, - 9.947571329987733, - 9.940720721981505, - 9.93357946317352, - 9.971557107259668, - 9.934878307640439, - 9.95195388742924, - 9.941448827682594, - 9.963920812359795, - 9.948872106691052, - 9.970866366906186, - 9.958200491383277, - 9.96213299780196, - 9.94848663842233, - 9.963702360020637, - 9.937890934402562, - 9.957695723831486, - 9.912603874974561, - 9.917013806992786, - 9.921307665160402, - 9.889519902151873, - 9.886441311760137, - 9.964324875446781, - 9.948212062093724, - 9.944228099623004, - 9.953194609825768, - 9.924743988643893, - 9.8942330436212, - 9.934637188861949, - 9.96714281816738, - 9.95392405420229, - 9.95423085106609, - 9.96122669219769, - 9.929641849715713, - 9.93532282546877, - 9.961712724327885, - 9.966565561974736, - 9.989633314593378, - 9.955632028446544, - 9.95019521600679, - 9.97659888359186, - 9.957753659522908, - 9.930564922486635, - 9.930460164593939, - 9.940462089777109, - 9.940202382825094, - 9.924627265578279, - 9.971976492394992, - 9.953449047692574, - 9.933100651509367, - 9.92434790586792, - 9.957804520811665, - 9.967245633101957, - 9.996728624421184, - 9.998443827189902, - 9.93530520721302, - 9.954669403734542, - 9.934985873542246, - 9.960053677312228, - 9.921961320874333, - 9.970013330667147, - 9.982742611208533, - 9.949538072441197, - 9.94347408242354, - 9.928665712779038, - 9.97892383903751, - 9.968997303264077, - 9.94232233235138, - 9.913217461890621, - 9.932401919528324, - 9.899665237096366, - 9.928049480295321, - 9.915546936941647, - 9.96187808456049, - 9.928220994453183, - 9.947219880912009, - 9.917476321834616, - 9.967226941861945, - 9.951666257266515, - 9.992573359753104, - 9.992905724609965, - 9.976013509994008, - 9.979781746768545, - 9.976669832129312, - 10.009367730079104, - 9.97120812726952, - 9.968090559554444, - 9.941154155684096, - 9.935880061971556, - 9.898531254543013, - 9.96048118252598, - 9.963480420422572, - 9.932486422360649, - 9.929000213630218, - 9.953900148542674, - 9.935226569593462, - 9.970483547840969, - 9.932582308135437, - 9.947459864316265, - 9.936807698784815, - 9.951121072157692, - 9.940522802517114, - 9.966730344118881, - 9.976115799905243, - 9.987925664179835, - 9.967195478306914, - 9.95479703279056, - 9.926577779384951, - 9.955991923180227, - 9.973274201656064, - 9.951084747540582, - 9.927090755290338, - 9.973148453087516, - 9.926546636601575, - 9.957655922699562, - 9.923830801510404, - 9.940732350106053, - 9.938378892295258, - 9.917355860147973, - 9.937868237645693, - 9.962048683471286, - 9.912404745055644, - 9.960457547048286, - 9.930102905234255, - 9.944661196443654, - 9.949350676624555, - 9.955459567216309, - 9.939750627924042, - 9.926782360302616, - 9.895560953889186, - 9.942804622273206, - 9.949963387868598, - 9.889829776082047, - 9.933143325968462, - 9.938093240006319, - 9.940736457449113, - 9.911926350133196, - 9.871678164474481, - 9.871518081286215, - 9.891390401005324, - 9.941701721756411, - 9.938786182948528, - 9.952302479506876, - 9.969838178329354, - 9.952844055225247, - 9.949663736429489, - 9.961109028656587, - 9.926764691139754, - 9.921641177292122, - 9.949617656068437, - 9.931492910325005, - 9.925772715171172, - 9.929254578186189, - 9.971641481746769, - 9.975811077384664, - 9.949830575272367, - 9.941082375360503, - 9.967536965607174, - 9.964813460634737, - 9.928391205714522, - 9.931032380296005, - 9.95837323734213, - 9.996417333249536, - 9.928894851299798, - 9.913067762364614, - 9.967601747122675, - 9.970953908567672, - 9.963408421203516, - 10.00135976129382, - 9.944805862425145, - 9.922128390737093, - 9.958650234518984, - 9.966036639238663, - 9.935408349156798, - 9.919280848517264, - 9.89715366092726, - 9.923502529391206, - 9.95543541715306, - 9.930564626251275, - 9.923452377549552, - 9.92152670065455, - 9.961324863813722, - 9.944883943636738, - 9.940283378351367, - 9.933510394597686, - 9.935561244895506, - 9.971986396448951, - 9.943852880002652, - 9.906478809165575, - 9.917018232205294, - 9.944552795257227, - 9.95496438048105, - 9.917986758813383, - 9.925617089770958, - 9.925284218890836, - 9.980852981021853, - 9.973339132912033, - 9.981733207301435, - 9.93419081994127, - 9.940558960158612, - 9.986016553386005, - 9.997509204852825, - 9.989114574193875, - 9.974441411743806, - 9.967010592695454, - 9.976152619903027, - 9.954681825712402, - 9.9576255785564, - 9.925408710802882, - 9.966750447036322, - 9.958625277621351, - 9.942387301327164, - 9.96217529159599, - 9.928833297774734, - 9.950136864761962, - 9.929317313866953, - 9.95097150987452, - 9.952433749216, - 9.963440707545832, - 9.991095548398482, - 9.975211939411208, - 9.947930750672846, - 9.967470780928675, - 9.958773208033008, - 9.944041232810465, - 9.946379610665701, - 9.960979194502945, - 9.951075129160932, - 9.93079643917597, - 9.956460457065365, - 9.960104744000166, - 9.951580775829516, - 9.940532880995871, - 9.913954793371804, - 9.924679900565764, - 9.911626696793022, - 9.915551214114936, - 9.961703972257343, - 9.919851584853793, - 9.937934213728546, - 9.974991533585742, - 9.971072181774156, - 9.931142222215655, - 9.961645962458533, - 9.957097472074942, - 9.946188195758134, - 9.916898528747339, - 9.898877977182709, - 9.931472382071231, - 9.940755327135259, - 9.974977981408317, - 9.944195728752772, - 9.976571006566136, - 9.961183946880137, - 9.96253351970303, - 9.937425200944402, - 9.938861173275187, - 9.96567467221444, - 9.968488844299324, - 9.917282512171715, - 9.951958325004206, - 9.969074310852541, - 9.966370856423119, - 9.9584508574393, - 9.91992283356287, - 9.938381287747122, - 9.973698817284161, - 9.983507191317841, - 9.980524600375986, - 9.945293493135347, - 9.965840431894268, - 9.916920905459286, - 9.919544944570713, - 9.931869140802444, - 9.922469699306692, - 10.000793111919695, - 9.930987254373825, - 9.970323718039428, - 9.952603933616889, - 9.956572244778869, - 9.96165902197365, - 9.93645923880864, - 9.927503542089577, - 9.953150139435778, - 9.950605140953364, - 9.962138590595087, - 9.91517944967287, - 9.97047720676325, - 9.960254076048157, - 9.947697188855846, - 9.990948485051547, - 9.976529649086755, - 9.958977733887586, - 9.972324031551828, - 9.96706507403594, - 9.955091773686092, - 9.943263413799276, - 9.99584798228057, - 9.940026669683922, - 9.901960869087413, - 9.923660611229813, - 9.965322405262489, - 9.96683693926583, - 9.928964446956064, - 9.95905445412689, - 9.94866022991227, - 9.959339662025565, - 10.017127328773384, - 9.992170387332326, - 9.969202801301769, - 9.934716990786917, - 9.962668411601275, - 9.951718512823048, - 9.945621548272449, - 9.925482328088194, - 9.927052334774121, - 9.931179676903229, - 9.950312332435436, - 9.966944618420259, - 9.966639041783955, - 9.95275091584954, - 9.951291607314259, - 9.947447435485778, - 9.926536817469389, - 9.939013219406194, - 9.925040735141383, - 9.935190951001886, - 9.948484188878593, - 9.952385257715571, - 9.924566465305178, - 9.924431467316507, - 9.913309593989407, - 9.966038581550224, - 9.982397168383, - 9.933304018023989, - 9.8914808210807, - 9.952409300371519, - 9.953511020189792, - 9.961637576792452, - 9.921252304842277, - 9.930063187405215, - 9.947619598000223, - 9.948851919904456, - 9.964983615744766, - 9.954051094082683, - 9.959461790395967, - 9.93498971475213, - 9.978089020780073, - 9.921854691905118, - 9.964952135168366, - 9.989865442559609, - 9.933626496623708, - 9.955376125932071, - 9.976019827200455, - 9.948011734555214, - 9.97314499630165, - 9.921861803336874, - 9.939395861475447, - 9.97173523287947, - 9.929770200833909, - 9.938256808750209, - 9.973579572855225, - 9.976248332291531, - 9.942623885435932, - 9.925475121359705, - 9.917895941699548, - 9.933539075462367, - 9.954033262103456, - 9.935018515388624, - 9.947845436003849, - 9.912656502119447, - 9.977435027576373, - 9.946957439738382, - 9.946283242618978, - 9.981333737732792, - 9.958764789962466, - 9.97984897537746, - 9.953451664433432, - 9.965416587119739, - 9.91765963836771, - 9.941198690563498, - 10.003723000327367, - 9.977577279228397, - 9.96633100231408, - 9.938462039228364, - 9.963616452416021, - 9.995718945600245, - 9.949955295136515, - 9.939955800980327, - 9.96544133249701, - 9.942466499973168, - 9.949729559240952, - 9.973309740592235, - 10.030021988208798, - 9.994311846225635, - 9.963114304238962, - 9.915127978735432, - 9.90780895885981, - 9.939293579568774, - 9.927415071807665, - 9.94841923447489, - 9.951732398225563, - 9.951373040477037, - 9.972990657456412, - 9.972754265022541, - 9.947286983172944, - 9.941265752390871, - 9.94061377292419, - 9.9510937048454, - 9.920696279243112, - 9.916743449707157, - 9.949782271212444, - 9.904717503597977, - 9.94607738655512, - 9.946980386037247, - 9.925821680515336, - 9.92200581150294, - 9.91774650858575, - 9.954922862903205, - 9.948407092967962, - 9.925895332902744, - 9.926133278028239, - 9.94672489340566, - 9.94936303624558, - 9.941344867951898, - 9.935272404273196, - 9.92355347417069, - 9.940634157208065, - 9.936915621989955, - 9.921524049590806, - 9.909436220196781, - 9.96748701211363, - 9.970113857928702, - 9.915404596394342, - 9.951874831893887, - 9.91878559343838, - 9.92189306022676, - 9.961931371086393, - 9.945273836401656, - 9.950085436423642, - 9.930776843096544, - 9.930731138605973, - 9.92787148693201, - 9.947772137536454, - 9.967007955184034, - 9.955221076336736, - 9.924630593508672, - 9.931498862602858, - 9.954268781258053, - 9.968374261335512, - 9.945107159880516, - 9.941337219685838, - 9.925694202559647, - 9.958839020906554, - 10.004514454855448, - 9.969555173634566, - 9.956171742132963, - 9.954320706442298, - 9.981537273791776, - 9.970177218627972, - 9.90009209286918, - 9.960427954861999, - 9.91678177501009, - 9.949942648118162, - 9.943176717817549, - 9.97451442091914, - 9.975593454045784, - 9.953307639826747, - 9.96919919156187, - 9.919504669966585, - 9.96401821763528, - 9.941398062513137, - 9.941350593976232, - 9.934323682384203, - 9.93547417637447, - 9.965460168936806, - 9.997987271633573, - 9.964263594498556, - 9.93821827271824, - 9.941630848838617, - 9.913863619588799, - 9.956819958696268, - 9.916532316751479, - 9.919034087961666, - 9.932743424244137, - 9.921774831697597, - 9.900503837993442, - 9.954438475738156, - 9.97557388166788, - 9.963013553781744, - 9.935827144008057, - 9.925861452955424, - 9.934971627456695, - 9.965014626481409, - 9.977480840988745, - 9.932615141106508, - 9.950237935481743, - 9.985882473268317, - 9.940095116081253, - 9.934063567280464, - 9.991829967750252, - 9.988513307431575, - 9.944465266508885, - 9.958177789635686, - 9.990472245661923, - 9.960405469799746, - 9.932412569639952, - 9.912394746768992, - 9.965406723871666, - 9.94608690812232, - 9.985614497802965, - 9.93107019673212, - 9.935550549330179, - 9.954222712828981, - 9.957670298208294, - 9.96447399171493, - 9.937734826319431, - 9.932409603754804, - 9.919105249425677, - 9.96507576184484, - 9.989080852467547, - 9.902491936576395, - 9.908872021107133, - 9.912485478435798, - 9.916012146782316, - 9.91035352674862, - 9.961726719075036, - 9.960355096663788, - 9.963254130565353, - 9.915929377638058, - 9.910956711915144, - 9.94769608608482, - 9.947740632529614, - 9.941914387567135, - 9.91982161561239, - 9.935008287450414, - 9.957336797808436, - 9.934953602017845, - 9.959163269872418, - 9.996171842135107, - 9.967821501562664, - 9.96980585905806, - 9.940669069123237, - 9.927275583918735, - 9.955892123962242, - 9.963752567774508, - 9.956136208047347, - 9.958442317646627, - 9.947712342993222, - 10.006806086752704, - 9.951486147434213, - 9.940723992254814, - 9.946397866874733, - 9.916647116272598, - 9.950464439409016, - 9.982814368553615, - 9.950902479725086, - 9.943082749753513, - 9.891967526088337, - 9.875083580852557, - 9.91117665210634, - 9.924278648157747, - 9.92221641446229, - 9.968068320437823, - 9.938332417230667, - 9.972158012652615, - 9.9921028224809, - 9.943738945185464, - 9.952106006339214, - 9.963453116135025, - 9.990761820491647, - 9.951431945824805, - 9.937320093031465, - 9.990262343960548, - 9.960864403475806, - 9.984597041157059, - 9.953003500799118, - 9.956166473292898, - 9.961766757089414, - 9.934805995550242, - 9.930247461870827, - 9.949600702913683, - 9.949041312420189, - 9.941424272181173, - 9.952385985285234, - 9.951880764719702, - 9.976140868322299, - 9.954611545872194, - 9.946669846803434, - 9.94784283850985, - 9.939492318793093, - 9.960781278539871, - 9.990735243162145, - 9.946787397304691, - 9.972778879557826, - 9.978048005030619, - 9.962815380481281, - 9.962111982867825, - 9.900956806383963, - 9.971150022492209, - 9.963040102654132, - 9.9702020225182, - 9.939874008123432, - 9.911440477622186, - 9.939990487772848, - 9.9401244687504, - 9.934905414900955, - 10.010116504034364, - 9.956398354088083, - 9.953188904973985, - 9.947529152573606, - 9.983788318369088, - 9.945089900101136, - 9.948761952982128, - 9.968301480768611, - 9.975813110323637, - 9.983882154955863, - 9.93936058259246, - 9.940749371260646, - 9.981055774087546, - 9.949624765122865, - 9.969482899070309, - 9.971329027000444, - 9.969336979600657, - 9.955712486169949, - 9.97674518441497, - 9.95643784409814, - 9.941474421033469, - 9.920497303187087, - 9.93578345757241, - 9.944528929043711, - 9.916536871263828, - 9.954172983963264, - 9.966818447100431, - 9.937573171302725, - 9.923221439439716, - 9.901238871605365, - 9.947430627364888, - 9.91443722708024, - 9.953544464865065, - 9.939712699309942, - 9.91156481051907, - 9.902443333749193, - 9.950525755699442, - 9.931354728394785, - 9.936474890002959, - 9.902552522350625, - 9.962735986319748, - 9.900050789761474, - 9.929453265746842, - 9.949555489124833, - 9.960071909130955, - 9.919995474516547, - 9.938432070159163, - 9.9065379308595, - 9.90354257204043, - 9.954617135750594, - 9.977974939156201, - 9.94932042459089, - 9.89926780687318, - 9.887589117911546, - 9.889946476596133, - 9.921495486111098, - 9.948478909895378, - 9.964299792188875, - 9.952345559354688, - 9.943415295626457, - 9.93261358793946, - 9.959925629308675, - 9.96434272526254, - 9.943350089973755, - 9.922361790273236, - 9.95659846928261, - 9.959308651471709, - 9.978268988792763, - 10.013813101457709, - 9.951213775255095, - 9.95844068584426, - 9.946821786199362, - 9.951647384334278, - 9.939951507541355, - 9.958540453381623, - 9.922753695312748, - 9.926737263748176, - 9.937867381814701, - 9.964188592066295, - 9.97524648890011, - 9.957254415044378, - 9.947785000637639, - 9.98604561544055, - 9.96861318282921, - 9.928661046069482, - 9.912445622231946, - 9.938215791715985, - 9.899371596481162, - 9.898162963322891, - 9.959856327603687, - 9.942019351078573, - 9.920627950714165, - 9.913882272762953, - 9.980642168178056, - 9.964063603820168, - 9.983025563354872, - 9.942035637632337, - 9.94989901638238, - 9.958828198685724, - 9.95241168863511, - 9.956192623213255, - 9.963158303675886, - 9.947753094945158, - 9.96895650341297, - 9.99944951480595, - 9.940835234585151, - 9.942065760048584, - 9.954917346909587, - 9.974267025660144, - 9.956621350084387, - 9.98786648658451, - 9.937695239662172, - 9.91871684895311, - 9.945292666149735, - 9.955359912531234, - 9.976103212247377, - 9.982162412382422, - 9.963532709599017, - 9.957513193024141, - 9.934763173309536, - 9.897862578318653, - 9.949585259695848, - 9.932969287535352, - 9.962967437364926, - 9.933470842012245, - 9.924878833082326, - 9.9327485024099, - 9.896223814224053, - 9.927489067721181, - 9.938205081215816, - 9.963733483265408, - 9.942540414026237, - 9.946708979080594, - 9.957878748727746, - 9.935342363731918, - 9.95105387943781, - 9.980485679409641, - 9.979027857365937, - 9.99711283768347, - 9.94316028889242, - 9.950173179178508, - 9.97075525281254, - 9.975377698687375, - 9.959612954714943, - 9.957695630800377, - 9.928856346523565, - 9.964085143648177, - 9.91249627039143, - 9.971257852548984, - 9.94337541148656, - 9.940718457318342, - 9.981081100857985, - 9.939996064725925, - 9.919457180622535, - 9.974219642477502, - 9.994100943005812, - 9.959511496916324, - 9.992515927888466, - 9.976973227135614, - 9.942793572023763, - 9.914405314557287, - 9.914030536315785, - 9.936274060511554, - 9.91260722477977, - 9.981411354722038, - 9.972825975191576, - 9.994850056566593, - 9.988175827708707, - 9.964692378361406, - 9.964246768160155, - 10.000688948201999, - 9.987220542695491, - 9.957573793672463, - 9.937852305909837, - 9.94564501105591, - 9.975839532069873, - 9.974334253365734, - 9.952131299398058, - 9.991480784370497, - 9.968104720284904, - 9.904060919227083, - 9.906582095228973, - 9.941927375638448, - 9.944000728537754, - 9.935068631269262, - 9.939347222240645, - 9.932407805231023, - 9.933620652822885, - 9.925256785620883, - 9.978005554883866, - 9.977542391690434, - 9.969706822025612, - 9.992657853156853, - 9.965843788745639, - 9.970002170917473, - 9.964459071941906, - 9.965863330864577, - 9.919512707733524, - 9.916934668621922, - 9.921050803813005, - 9.944875181914806, - 9.916445560815106, - 9.8730775587417, - 9.937077784686995, - 9.930974952576625, - 9.928768794763394, - 9.955270480698681, - 9.95693892706001, - 9.919497662362504, - 9.967594299415312, - 9.946740596345602, - 9.957174370040612, - 9.97858799987459, - 9.952922729910625, - 9.929052478388883, - 9.93238815001144, - 9.94858044822144, - 9.946846211213543, - 9.933188126045652, - 9.933636248957336, - 9.943943665445316, - 9.960191195596309, - 9.967057519730758, - 9.96160879436665, - 9.972620457871264, - 9.957601239427097, - 9.981519743680385, - 9.966396206889176, - 9.95576828687311, - 9.953265163823696, - 9.944778326011152, - 9.952776069158114, - 9.962130268740317, - 9.938037844846392, - 9.95797990555959, - 9.928456766994483, - 9.937217218625515, - 9.981948611649896, - 9.960829339266962, - 10.01182152596815, - 9.967116100397961, - 9.957437125262052, - 9.99585924335684, - 9.993933144251322, - 9.992590234219392, - 9.977982841890322, - 9.94392521165325, - 9.940552133316732, - 9.937710639928063, - 9.931794106932337, - 9.949342984982088, - 9.913978209504881, - 9.904405822148753, - 9.93153152847872, - 9.966731647820827, - 9.978252089529803, - 9.994922599005987, - 9.980463618446327, - 9.967276217487765, - 9.990811245607865, - 9.968219172586627, - 9.996509510414262, - 9.924025980007501, - 9.940487933271696, - 9.946350366938528, - 9.91841213757499, - 9.951025607653328, - 9.940199176417801, - 9.97316368794563, - 9.988817040590785, - 9.931822897275257, - 9.949520260854355, - 9.964608417355597, - 9.95344216148098, - 9.959068601738608, - 9.964322089224671, - 10.010354314657635, - 9.963842059199033, - 9.959951760469222, - 9.963409051439664, - 9.948253159117316, - 9.965855970719534, - 9.932335437981914, - 9.928663788116486, - 9.922887952769864, - 9.946137153932721, - 9.960709037552325, - 9.955321157727749, - 9.947108117167549, - 9.95555594679623, - 9.923471284637706, - 9.895380809343903, - 9.919789066641838, - 9.923118603233918, - 9.970785512182117, - 9.987724363172672, - 9.937939094629483, - 9.97612042464364, - 9.989312427461444, - 9.989560676086116, - 9.976865477246472, - 9.9684646886404, - 9.97888835274472, - 9.985501366230043, - 9.982772226073902, - 9.94465950407593, - 9.92352834542734, - 9.898584428780456, - 9.94481581023576, - 9.958505325430911, - 9.988697786721497, - 9.947931061398497, - 9.943832308558802, - 9.993827603774522, - 9.976245925872531, - 9.970578640150805, - 9.963830242990303, - 9.954491279430869, - 9.943386170850964, - 9.909681994008286, - 9.924581160482486, - 9.935619143739304, - 9.942948060446673, - 9.940505968383249, - 9.9398834016867, - 9.943539338572764, - 9.930019051598578, - 9.954111959257185, - 9.942872184934464, - 9.947142573560061, - 9.983836623470003, - 9.931004720411257, - 9.945210461779833, - 9.943651610419469, - 9.955094883126087, - 9.972219721010871, - 9.957651659723116, - 9.960776313580668, - 9.93240705969099, - 9.940040440926781, - 9.975424391012501, - 9.960816609776678, - 9.993886293116434, - 10.001153904267072, - 9.96790085129982, - 9.912026068816088, - 9.91211276166107, - 9.93368559287756, - 9.930480323482191, - 9.960499692928524, - 9.93519797377613, - 9.952551083787252, - 9.97965260927605, - 9.952189619867136, - 9.955041331647383, - 9.928245360138181, - 9.915857287839847, - 9.89303470206219, - 9.942015777383586, - 9.936253970363564, - 9.952339554946182, - 9.938864979664922, - 9.961038819821795, - 9.950148557095382, - 9.944219134034697, - 9.929557796441026, - 9.924643871787666, - 9.934128976263452, - 9.927186850960682, - 9.939518537323664, - 9.919614738168676, - 9.953976118312973, - 10.000206526384476, - 9.957735416612131, - 9.933606769348946, - 9.946802528137642, - 9.95042687690884, - 9.96148067315359, - 9.916152065754227, - 9.916154537916933, - 9.908929457228886, - 9.925208723482017, - 9.92543496419477, - 9.957729830056763, - 9.942438947755342, - 9.90432680633939, - 9.9523446667473, - 9.9616644107201, - 9.960160190197556, - 9.913884638337409, - 9.970399929960656, - 9.978246330545337, - 9.94766813102188, - 9.939544905871053, - 9.969838991594957, - 9.980044821672097, - 9.974019082916719, - 9.936072189506623, - 9.99561897577677, - 9.99182280709452, - 9.943866924920298, - 9.940122915892916, - 9.927886704839247, - 9.9577492485222, - 9.947274934535033, - 9.95295034707335, - 9.935401303971013, - 9.907710152371646, - 9.912069520553345, - 9.94966227556457, - 9.95290417485648, - 9.971413028616016, - 9.945068927629176, - 9.936490736800788, - 9.939597418401927, - 9.93986079086916, - 9.940461850503642, - 9.92184478038285, - 9.90934547731056, - 9.921438987901661, - 9.883739114327625, - 9.915471348486799, - 9.934174706429452, - 9.923452510549401, - 9.998579749858136, - 9.96072704690932, - 9.947438138383848, - 9.94230867009087, - 9.925839179387802, - 9.94177148380231, - 9.946402408507533, - 9.968630941147484, - 9.947264345697484, - 9.961281425671483, - 9.983761638535025, - 9.963291065639256, - 9.941787143362205, - 9.944284889718695, - 9.9073448450894, - 9.91768894801553, - 9.948463956431613, - 9.940297840032772, - 9.943859315055375, - 9.94956755001671, - 9.962496481101287, - 9.930429099108837, - 9.926570030777937, - 9.940961431009326, - 9.951713597733072, - 9.933023106083976, - 9.95023543725489, - 9.873900763657408, - 9.903564638351483, - 9.902169421391074, - 9.899861290136304, - 9.920609316867587, - 9.952143959275034, - 9.941310742020262, - 9.912067528295399, - 9.931159859588398, - 9.964640853431002, - 9.915243942134495, - 9.96161168572697, - 9.978562623847452, - 9.956588665819588, - 9.943832226421572, - 9.955003569766834, - 9.921786903198191, - 9.933874101316682, - 9.96503114582377, - 9.924019381908641, - 9.905489151354667, - 9.915442838599033, - 9.939202131765985, - 9.96739342161381, - 9.996449416440582, - 9.954696448615525, - 9.925640088062437, - 9.906476051385935, - 9.92224385789871, - 9.893007753774556, - 9.92269134472378, - 9.920957540025816, - 9.925611497228829, - 9.979313149827155, - 9.95664185805218, - 9.948728958326308, - 9.923464482592989, - 9.974843498898426, - 9.974852218151536, - 9.991969197688691, - 9.945373355884984, - 9.948542422517365, - 9.986565002950618, - 9.979312236445306, - 9.928242031768166, - 9.936094687523672, - 9.974083653453624, - 9.98010257483965, - 9.961797416451205, - 9.900258683631144, - 9.925182701408966, - 9.945646031510051, - 9.902487215620972, - 9.933811123583158, - 9.968894854120245, - 9.963585785704424, - 9.942471439948761, - 9.935760071510272, - 9.935864421156369, - 9.97816009060147, - 9.966103875713463, - 9.979845246616021, - 9.968336201094111, - 9.944337472754201, - 9.92279272318729, - 9.957262192106294, - 9.951324424397184, - 9.91217935633366, - 9.950270532981454, - 9.913823666106103, - 9.88866941455101, - 9.939479446330061, - 9.938676021946565, - 9.944792027583778, - 9.958015183044898, - 9.925660601704406, - 9.995291197231442, - 9.947332189290996, - 9.979666337596317, - 9.952845167281861, - 9.931656165405869, - 9.898123840281, - 9.933141148841244, - 9.970948279340494, - 9.994683195615456, - 9.954698610108881, - 9.966580057230264, - 9.957758888490519, - 9.971071517197787, - 9.929322832571572, - 9.949996142770113, - 9.911204598537461, - 9.93936782141283, - 9.95847977911053, - 9.932814187582519, - 9.958474955819941, - 9.954851706214326, - 9.924604712169044, - 9.918564684955742, - 9.923217374878282, - 9.93225015673727, - 9.950617158899115, - 9.949190997451767, - 9.963749909841725, - 9.934915675237466, - 9.95398990534822, - 9.949671415540532, - 9.96546710534431, - 9.954014877631327, - 9.9614858430794, - 9.941324843758053, - 9.932630664422726, - 9.961916830351711, - 9.930440214699837, - 9.96789900178343, - 9.955608698091714, - 9.961979786276192, - 9.977303612200611, - 9.925424864204583, - 9.937636999479421, - 9.9600232004007, - 9.953362869309156, - 9.962978856706936, - 9.953471064708076, - 9.935694043363842, - 9.938909562278898, - 9.920044885617619, - 9.94548013884822, - 9.941187847133218, - 9.963851816165505, - 9.977298006293639, - 9.951317188706355, - 9.936553426974426, - 9.942009913543522, - 9.945079476302258, - 9.901529170819577, - 9.917474172032156, - 9.945901580826751, - 9.92276130238324, - 9.927577597367522, - 9.93078813784358, - 9.96758056713478, - 9.951464770981934, - 9.93550213575486, - 9.926012840743477, - 9.930005929350008, - 9.931237234364312, - 9.912324965163524, - 9.912690881773011, - 9.95174249047804, - 9.999403182845255, - 9.999794192792377, - 10.008485013238095, - 9.956193174869146, - 9.976756247424557, - 9.974675817118069, - 9.937395589495418, - 9.912861657851755, - 9.955464322920838, - 9.963231046606701, - 9.924515164031641, - 9.912284425510943, - 9.92440683269753, - 9.903192718480952, - 9.937630240177572, - 9.944011466788782, - 9.944264039835176, - 9.914754445044304, - 9.911973139661848, - 9.904825565856111, - 9.928797013296728, - 9.910879063192352, - 9.916690552531396, - 9.96542685667972, - 9.974743957628121, - 9.974530328085333, - 9.941956847344324, - 9.973479474952176, - 9.999966122692996, - 9.983286265106834, - 9.933522864916268, - 9.935650353753761, - 9.964954560253288, - 9.953073761762791, - 9.94280379877601, - 9.933813290310056, - 9.930889390903198, - 9.903370519536685, - 9.905669530029304, - 9.93292740721981, - 9.937193979792276, - 9.927895430135438, - 9.951056644257438, - 9.932310270506607, - 9.956126684025964, - 9.931129321172305, - 9.964068602368737, - 9.936276851368023, - 9.934448422020091, - 9.979306080952497, - 9.961449811838493, - 9.953191950386852, - 9.961157036628748, - 9.947796423126668, - 9.951159416895301, - 9.94486706181105, - 9.967457402551236, - 9.962438178251551, - 9.947581631827374, - 9.977546567939266, - 9.95588862487231, - 9.976015982289422, - 9.949047289581914, - 9.93607287777259, - 9.948292057910024, - 9.968845369402386, - 9.98073264278775, - 9.985847309551698, - 9.983360237065131, - 9.92372077256905, - 9.93103352264536, - 9.92619592299214, - 9.953198574090043, - 9.907090846333897, - 9.945982317507177, - 9.95695522482656, - 9.931851895966004, - 9.946331350029121, - 9.94490673338251, - 9.94948649990674, - 9.945559654137329, - 10.000463453333566, - 9.996517823853335, - 9.957536570563532, - 9.935988580984723, - 9.936995530228446, - 9.907821950895796, - 9.956480774809242, - 9.95183937348972, - 9.957757653464318, - 9.946061762879419, - 9.944589151307, - 9.994631036908979, - 9.989506798141612, - 9.969708218864842, - 9.969972986567745, - 9.988971977352028, - 9.98398443141154, - 9.979218195606677, - 9.998731693630834, - 10.000826602596465, - 9.96171977279752, - 9.952287486762529, - 9.925537306333842, - 9.946707454396844, - 9.952873046166934, - 9.943122895972815, - 9.932953001521426, - 9.931351043410269, - 9.96094052749568, - 10.008327304443029, - 9.980671515008247, - 9.917801488781514, - 9.918398848068527, - 9.91566372332396, - 9.931085603214262, - 9.954222391518657, - 9.93785020363848, - 9.934584569861345, - 9.952943853298308, - 9.9748594162943, - 9.929142996172915, - 9.928387350785908, - 9.953729634551083, - 9.944578384805917, - 9.940247222122501, - 9.919131874428729, - 9.947799638514011, - 9.955923719312933, - 9.908747814224585, - 9.956708733686517, - 9.966798157585249, - 9.966206795321886, - 9.936290412750571, - 9.970234209000788, - 9.984278625751069, - 9.995155374853871, - 9.967021191533277, - 9.958565530645116, - 9.952890802231769, - 9.959163830250736, - 9.930474907131114, - 9.972317516407667, - 9.957680758050273, - 9.949779324983002, - 9.95906363244299, - 9.951130906824357, - 9.950327783746568, - 9.921440655204599, - 9.963969516223893, - 9.968279308940822, - 10.000445315195027, - 9.971431338121421, - 9.974635683736892, - 9.97675689003193, - 10.00716595021924, - 9.964849434452457, - 9.94112876434054, - 9.985706430425202, - 9.970361410800406, - 9.966086501871828, - 9.964268272668821, - 9.951554418311693, - 9.987756343723953, - 9.99685434214185, - 9.98211446722256, - 9.911535542923897, - 9.933849165873173, - 9.891628656957797, - 9.899079284067072, - 9.917328393462917, - 9.923359536900643, - 9.981497171225348, - 9.933707880260938, - 9.950100422020565, - 9.970215564487955, - 9.967432299096533, - 9.939655547758925, - 9.962255332463974, - 9.958712813995563, - 9.990491985124917, - 9.974449297131168, - 9.91814877802199, - 9.937176647413457, - 9.968452309000844, - 9.956698655059826, - 9.948625030199729, - 9.899241682894727, - 9.912522484915172, - 9.94685690091981, - 9.948168511144107, - 9.97960213609267, - 9.92749654354401, - 9.929930607552949, - 9.958164629131229, - 9.92403527859789, - 9.910344529176081, - 9.946842506934304, - 9.953553974648823, - 9.948806366954042, - 9.963187151093214, - 9.9466321239682, - 9.98039891542095, - 9.94497999513198, - 9.958407439159695, - 9.94136417405958, - 9.922438652637634, - 9.901656552447353, - 9.921860877933707, - 9.919742063250371, - 9.950856657756074, - 9.959886880234597, - 9.97345890456819, - 9.934831755286519, - 9.953352284092626, - 9.963666576764634, - 9.979092205334856, - 9.950588927248935, - 9.943774508742564, - 9.895453967052948, - 9.936170684971772, - 9.919132742189824, - 9.94446508374692, - 9.92950345473921, - 9.934093407131687, - 9.95582043624751, - 9.948376676428351, - 9.949675021966112, - 9.941284315906158, - 9.94269090300468, - 9.941907752788994, - 9.949280820398384, - 9.964671656237895, - 9.940403275738964, - 9.913327792842496, - 9.93224577276118, - 9.958261337980012, - 9.941601685622436, - 9.96564789182801, - 9.988802714260569, - 9.99127940522213, - 9.982884777191778, - 9.967373610102284, - 9.93692270104154, - 9.870951872727701, - 9.931051534047867, - 9.955247190030015, - 9.980005952392629, - 9.971106250359226, - 9.954719468648209, - 9.943407150010946, - 9.934579541562586, - 9.958610903097034, - 9.931505387407169, - 9.921722499499435, - 9.908237256451214, - 9.93737995836693, - 9.945925373239106, - 9.937815484389143, - 9.93347046704045, - 9.946801582233892, - 9.95450528785785, - 9.919884218085416, - 9.945006550391048, - 9.932157437350968, - 9.937922577114628, - 9.940667111486578, - 9.900670073031893, - 9.924461305579978, - 9.952967089907228, - 9.947046866190933, - 9.947633323761096, - 9.94900133507427, - 9.953688849206365, - 9.950514864879278, - 9.969054653464596, - 9.957053993419438, - 9.936457982930976, - 9.943794519827458, - 9.910716214651, - 9.95853829809925, - 9.911188997557385, - 9.927161853888585, - 9.932845131569538, - 9.962880952857951, - 9.963035979113606, - 9.955264255002552, - 9.952297557996985, - 9.940746487593609, - 9.956701277198862, - 9.910137357085915, - 9.949419276021311, - 9.909807020881008, - 9.92600149736827, - 9.949108158903192, - 9.974808238564671, - 9.934933265153587, - 9.924490149286672, - 9.909767191185535, - 9.975224186918425, - 9.962156935795667, - 9.929885591792893, - 9.961539404637241, - 9.949616794483918, - 9.964754301332468, - 9.972707024180258, - 9.923670967090576, - 9.904399881397781, - 9.950191031122607, - 9.97077776623266, - 9.979435258738413, - 9.98756893782027, - 9.9806376376041, - 9.958221545092101, - 9.950862232738528, - 9.94588475054544, - 9.963116248432117, - 9.951595131109398, - 9.92825509571373, - 9.944884617516093, - 9.928342074703373, - 9.961772215958367, - 9.971290467694404, - 9.951465803403742, - 9.934246406807697, - 9.962477151926475, - 9.93907127097066, - 9.915033274660885, - 9.927822665908584, - 9.951532251606125, - 9.957069784388139, - 9.944706325381587, - 9.92975283431889, - 9.916879374753165, - 9.916220105736729, - 9.940279737632293, - 9.971704391552441, - 9.990202838003299, - 9.938150688642535, - 9.929905829015937, - 9.97010654890114, - 9.977627074678603, - 9.989040745918452, - 9.967074498623791, - 10.000501883557996, - 9.972812172807899, - 9.949186778880556, - 9.944378641601814, - 9.941136457856398, - 9.95677195160954, - 9.950258305896694, - 9.96525931986813, - 9.966854744020262, - 9.96450048973677, - 9.95162258482723, - 9.932430606286722, - 9.96796269963072, - 9.976959204155563, - 9.972927934234018, - 9.962603718307168, - 9.97090020442229, - 9.908174278700296, - 9.951919533365103, - 9.890609458161789, - 9.925809582693258, - 9.945305677491984, - 9.954490798784624, - 9.986046635142415, - 9.961201281764568, - 9.938258065124685, - 9.963709583115616, - 9.988339892324571, - 10.000827008854444, - 9.953502673068678, - 9.95573726556523, - 9.901451014164278, - 9.905036487618457, - 9.962077091882716, - 9.948248596191725, - 9.962518524815225, - 9.960790754502279, - 9.939663154837906, - 9.934169765801876, - 9.950193556942413, - 9.938187115907692, - 9.94914208611377, - 9.949046743118181, - 9.943052617454741, - 9.944892852591686, - 9.931308785616867, - 9.941201210228456, - 9.937357272496424, - 9.985701311263346, - 9.955886895184408, - 9.9700455915457, - 9.949127672082144, - 9.95455358009459, - 9.932651854829139, - 9.935640459957424, - 9.938321432898697, - 9.960937826218856, - 9.935257649938613, - 9.955401249325774, - 9.94244095986479, - 9.953743625111034, - 9.934527859524211, - 9.957235714710027, - 9.950122093866165, - 9.996137911924933, - 9.911183757511424, - 9.92047131602446, - 9.936622869708183, - 9.919528021065366, - 9.928050279861454, - 9.907065554574325, - 9.967907189636604, - 9.98504928054149, - 9.975074736827722, - 9.942435241020474, - 9.964294770883846, - 9.943073417263333, - 9.908020168064134, - 9.962295768652428, - 9.98214373942103, - 9.959842060419911, - 9.963743934637447, - 9.973863982453922, - 9.948605037695966, - 9.986285142208118, - 9.95211592194466, - 9.937499826345585, - 9.927617494286476, - 9.956055831300992, - 9.925815497371975, - 9.923416701510082, - 9.935669864986043, - 9.993092773408149, - 9.989003019425661, - 9.956189128537863, - 9.944493884913724, - 9.936911969594984, - 9.934837350868438, - 9.918651947218146, - 9.894068878107, - 9.902118971917897, - 9.944376381196328, - 9.95425252526045, - 9.95515496075748, - 9.947042774750063, - 9.96408517672112, - 9.97728797716213, - 9.933897607360066, - 9.907683143923094, - 9.913275038350198, - 9.956374632689696, - 9.972488750488417, - 10.00835901340376, - 9.978799882724369, - 9.945566298970792, - 9.94887787946401, - 9.921855592889557, - 9.946936769022875, - 9.96027813695313, - 9.984574560252303, - 9.981556252639196, - 9.93168687697562, - 9.959107769080427, - 9.943208976593493, - 9.983130934512674, - 9.991327847655665, - 9.926904117524682, - 9.929615806216919, - 9.930091656250505, - 9.954743459521925, - 9.917618641569698, - 9.982853140152166, - 9.999046923018929, - 9.981502205853031, - 9.959711568888665, - 9.969743771488533, - 9.940309265599785, - 9.940352116603545, - 9.935847404187104, - 9.944566076444909, - 9.962694262654601, - 9.948473647184972, - 9.94057678076404, - 9.93043849584482, - 9.938359616159886, - 9.949825566726464, - 9.934161268480805, - 9.926039608303695, - 9.937573765954026, - 9.979293287364685, - 9.983113692725428, - 10.008238291975065, - 9.958208836613032, - 9.971222215892727, - 9.947476349761907, - 9.975715180458872, - 9.967967592704632, - 9.957069981139803, - 9.924078432657469, - 9.944428830749207, - 9.916503103272499, - 9.968804173065879, - 10.002400721112659, - 9.961470952223802, - 9.961634397746934, - 9.968682047836195, - 9.992442529760236, - 10.018137083445524, - 10.002617558851295, - 9.964922914133446, - 9.958049137402451, - 9.974831938588848, - 9.94092849999638, - 9.941308231122793, - 9.988347428227685, - 9.946564122574069, - 9.9382954744194, - 9.924498995037617, - 9.948444640903475, - 9.935417913143887, - 9.94823786792474, - 9.93034248207153, - 9.952609709523957, - 9.969957282777834, - 9.955134967331187, - 9.9196365377123, - 9.89360063519766, - 9.921159327594719, - 9.950870665894936, - 9.953557360035909, - 9.967862087997522, - 9.94993065129397, - 9.955297689302384, - 9.93315168048656, - 9.940077064728369, - 9.96766663490206, - 9.977358181009086, - 9.949878965015678, - 9.968425828931727, - 9.984595687466047, - 9.954097255363537, - 9.957411182040385, - 9.954971249151871, - 9.961711957966479, - 9.97725698112592, - 9.956582979345987, - 9.92705371211335, - 9.957001005955984, - 9.942791869520411, - 9.935553442191631, - 9.909980342987762, - 9.959137044825216, - 9.977562219767506, - 9.932200496981405, - 9.939683333905686, - 9.93317344470058, - 9.9776450601772, - 9.981273446056372, - 9.93890459010877, - 9.957249606529993, - 9.946282877365963, - 9.985289511401874, - 9.971423083389606, - 9.973798889303685, - 9.962067970147338, - 9.957984869761598, - 9.949409858938058, - 9.95257850493505, - 9.942137170769156, - 9.969611201538498, - 9.966077079910729, - 9.90906303397579, - 9.91895050854157, - 9.9090117324731, - 9.912516548482307, - 9.922044116810394, - 9.939452687504417, - 9.930504534734707, - 9.909373794519887, - 9.907480535818259, - 9.931259844131114, - 9.968576399514397, - 9.919605256962205, - 9.905511453739724, - 9.91528133458207, - 9.964955991553412, - 9.948930026111793, - 9.98797572988279, - 9.940096417143366, - 9.951047881516564, - 9.937971475475894, - 9.913276046811278, - 9.947981932881438, - 9.931185663247481, - 9.943160676387304, - 9.981105472033613, - 9.971846041733599, - 9.924402182844974, - 9.952505542472776, - 9.973292291428162, - 9.965664011791407, - 9.970645053709266, - 9.954516276498575, - 9.914838641514148, - 9.909629743057183, - 9.91710409483631, - 9.904976408437722, - 9.929080008640748, - 9.95099058631109, - 9.941167442842701, - 9.920704724764425, - 9.937842369220697, - 9.931377324876072, - 9.936482683669096, - 9.935909512872488, - 9.962708306279412, - 9.947296869102683, - 9.941123436795666, - 9.92208545466528, - 9.937670393477498, - 9.986859368060918, - 9.947254797021792, - 9.953041582236636, - 9.951609154686302, - 9.952344984331148, - 9.976282995657227, - 9.964373935834736, - 9.949968754728998, - 9.972587089037285, - 9.971804833212357, - 9.945676052605162, - 9.954812971224197, - 9.940213427994417, - 9.936103616492423, - 9.979289811538889, - 9.977754261414649, - 9.997654336176343, - 9.93512847591714, - 9.953581038941753, - 9.974609275161189, - 9.943914516541177, - 10.000746954045368, - 9.99358349390995, - 9.961618941900989, - 9.931366331137395, - 9.954621905679426, - 9.970441776995036, - 9.917296781014564, - 9.926726294199721, - 9.95563979786791, - 9.970802623008796, - 9.955979429252807, - 9.90595548003027, - 9.90209418245815, - 9.911069138523812, - 9.931144133547917, - 9.945803659868035, - 9.927356005236685, - 9.90861780711408, - 9.962559610124849, - 9.936740101806532, - 9.95573259419426, - 9.916815056656944, - 9.921867657925322, - 9.891200098055858, - 9.89401401456114, - 9.906265067882954, - 9.903624010537985, - 9.922710598340686, - 9.925904903117686, - 9.917747479009861, - 9.928714438204583, - 9.908697925888905, - 9.959686952807026, - 9.941573491573424, - 9.93802065761271, - 9.940789890168329, - 9.925615208871607, - 9.938409742604641, - 9.947876902705495, - 9.969140688602668, - 9.968048142318777, - 9.961876317454472, - 9.958939473299568, - 9.95996624284517, - 9.944902049956756, - 9.966576123126965, - 9.980660913523119, - 9.934940266056623, - 9.920479861768703, - 9.946018013788718, - 9.916748151406296, - 9.94182377983282, - 9.927985856754592, - 9.958918010928537, - 9.94699187883815, - 9.947761804114574, - 9.967507211378466, - 9.94965272569558, - 10.001196953540656, - 9.949102769488704, - 9.943639522992118, - 9.910953914837178, - 9.931206345989477, - 9.956743943855047, - 9.991360772247429, - 9.939496251057683, - 9.980707245746352, - 9.958086455352845, - 9.969348121630304, - 9.95338997477472, - 9.964161853877703, - 9.941826051652535, - 9.944201537513925, - 9.96065072520341, - 9.949654972238024, - 9.978281899828396, - 9.936599386131041, - 9.929270508064644, - 9.91310487558911, - 9.94318922499172, - 9.973319670591815, - 9.965084528587948, - 9.958669518585248, - 9.997896114489604, - 9.944681458089825, - 9.956722961851076, - 9.946768843007865, - 9.956500804022008, - 9.990293225982125, - 9.965600268276454, - 9.949785960563524, - 9.979007253949815, - 9.99853454694612, - 9.982999135362517, - 9.939638776447863, - 9.929456603721698, - 9.921923634300086, - 9.942194757832102, - 9.953306418139846, - 9.973976230886626, - 9.960464317217363, - 9.939577713617597, - 9.977476758480934, - 9.939409990216788, - 9.953637387214068, - 9.928894780468628, - 9.970875271267937, - 9.943317713803351, - 9.969275279590963, - 9.914192231248082, - 9.961136891691725, - 9.945851169436134, - 9.927811704712425, - 9.929234136933697, - 9.927954877211008, - 9.931268135113541, - 9.918781866148986, - 9.909906223709521, - 9.928265933310588, - 9.87631160798306, - 9.906697765175053, - 9.925340612313388, - 9.917437385639936, - 9.95828956761874, - 9.962331125325795, - 9.989609027393024, - 9.977911776660275, - 9.934730575874344, - 9.939994279034963, - 9.927615333910126, - 9.96750446972247, - 9.968437033659018, - 9.954323629401086, - 9.93617252224718, - 9.960050343653917, - 9.964879905932987, - 9.941546871416268, - 9.945369837015276, - 9.942915153509176, - 9.995130103042014, - 9.997899616514164, - 9.97180508527011, - 9.949963379591841, - 9.937646464044716, - 9.924071586629132, - 9.962274439263682, - 9.952229625152826, - 9.948034768366789, - 9.919521649792493, - 9.958930881383809, - 9.953824418197463, - 9.931787128063778, - 9.930180647979745, - 9.940461082874489, - 9.964811085302664, - 9.96065260677059, - 9.961002902111579, - 9.94799590282333, - 9.933975323121421, - 9.938492292101644, - 9.942440264978437, - 9.972234521660267, - 9.99507196636204, - 9.975225668234552, - 9.961601270831919, - 9.948900455271994, - 9.89308739699078, - 9.957949739916954, - 9.94158598209467, - 10.01608386096839, - 9.954429005306032, - 9.946450730248165, - 9.927789128928254, - 9.922602666626272, - 9.97663391162057, - 9.947399076658666, - 9.94842478212677, - 9.948321649204384, - 9.960828593114947, - 9.965370393205982, - 9.931438474271536, - 9.972874293430324, - 9.970979985638996, - 9.947555181426006, - 9.927856116668057, - 9.970649731338332, - 9.938964435969005, - 9.92063251941483, - 9.942822065302801, - 9.928452898060366, - 9.917576130983145, - 9.926873154609186, - 9.962241698393694, - 9.954253587413309, - 9.911029320202323, - 9.93373900911995, - 9.979770468297898, - 9.910343071818511, - 9.927291323054451, - 9.926250915282218, - 9.957076122724539, - 9.977587344382632, - 9.97825416260959, - 9.984691788146362, - 9.9571434233503, - 9.938749007487013, - 9.934984706523089, - 9.983623019172349, - 9.939913008831262, - 9.918162893438234, - 9.950069915547648, - 10.016481200195669, - 10.009558812320508, - 10.024681595134263, - 9.990746379140933, - 9.937363402541326, - 9.9590482735411, - 9.993087186472039, - 9.968322003205468, - 9.978506733146633, - 9.971335292860276, - 9.917574716623292, - 9.943362013752857, - 9.969577293459789, - 9.966201136248184, - 10.021068621102918, - 9.979697952281466, - 9.963480593743979, - 9.921604862863516, - 9.97062487108695, - 9.955476370809592, - 9.933641825503868, - 9.92758198841282, - 9.938942597337324, - 9.912701642805978, - 9.955487786885891, - 9.959086943191231, - 9.937486527200754, - 9.950361255937613, - 9.967538728594372, - 9.946174152862142, - 9.943661152963367, - 9.967497251228309, - 9.972611163790594, - 9.946695128330354, - 9.961931264178997, - 9.956517823698638, - 9.976110127055444, - 9.984003743241557, - 9.958352400815345, - 9.986293706553393, - 9.945249026441532, - 9.944891551297381, - 9.92170226453205, - 9.927141138382014, - 9.971135188205063, - 9.919735982469094, - 9.934275179141622, - 9.956230672145868, - 9.931320730246828, - 9.931690410264158, - 9.976127144140136, - 9.979889476220892, - 9.974646208433779, - 9.951092986089929, - 9.954714210636835, - 9.963525998341419, - 9.970109428392668, - 9.962127938796188, - 9.925345664238751, - 9.936845285109307, - 9.944107042204209, - 9.946423816545595, - 9.91521179399111, - 9.928059372971507, - 9.917863571372369, - 9.918439399989069, - 9.967450838474534, - 9.996454307683276, - 9.966002284720695, - 10.001812494278768, - 10.006934761426852, - 9.950709988754507, - 9.944360527626337, - 9.949807827727053, - 9.945228232317312, - 9.967544171010642, - 9.916859144169516, - 9.934375824478844, - 9.926673892092948, - 9.965484203949849, - 9.955008236453338, - 9.96648448292567, - 9.952482700883577, - 9.959497325969277, - 9.9699677839047, - 9.952563334472975, - 9.978028376552546, - 9.916893682526617, - 9.918065096047206, - 9.905101566031517, - 9.972523958091058, - 9.967200880880029, - 9.951820322827691, - 9.96446188528207, - 9.97046215598869, - 9.954407492384506, - 9.98006142799111, - 9.98232544697641, - 9.972169976497819, - 9.9142920200885, - 9.975445709817528, - 9.970001316755713, - 9.980289958518902, - 9.969972416864275, - 9.9387586873039, - 9.969094667270523, - 9.953364792587232, - 9.924436286844115, - 9.87391697643617, - 9.904705074014709, - 9.964020267172303, - 9.95494291180749, - 9.963218309160185, - 9.958947164759852, - 9.975991429799942, - 9.977321935172014, - 9.980022564412065, - 9.94277557350453, - 9.954810025535823, - 9.948853798833028, - 9.986809724628054, - 9.972075148619377, - 9.957044033066692, - 9.936836405450594, - 9.925507423255851, - 9.943457650595585, - 9.950228862907782, - 9.985327704224353, - 9.988534528729959, - 9.96505066548419, - 9.960264624461116, - 9.95622874424155, - 9.948494195372481, - 9.930546330090541, - 9.949554818121873, - 9.953331341992453, - 9.982115831076978, - 9.996764239596354, - 9.915895832453392, - 9.958967222450777, - 9.946925906080093, - 9.940445500587153, - 9.91786157568381, - 9.942611805055341, - 9.952861782345936, - 9.978492491443836, - 9.952330151668942, - 9.974537934457121, - 9.991947024760854, - 9.97014836046392, - 9.964417326489217, - 9.97757254432219, - 9.934738073110928, - 9.969089219073552, - 9.930379357048064, - 9.953476994288721, - 9.946557214298416, - 9.983088324575814, - 9.982450847805609, - 9.933299207471526, - 9.947708056385872, - 9.952335115983193, - 9.919698118334102, - 9.962815588959032, - 9.929588945861495, - 9.92026293615634, - 9.943042540936007, - 9.987933207467645, - 9.958203117514103, - 9.936997117133327, - 9.90770846668682, - 9.940080461117061, - 9.928389281720554, - 9.94544983466293, - 9.943504271046576, - 9.941468618747471, - 9.938704385871198, - 9.95871772356963, - 9.97536985485524, - 9.964485530752142, - 9.925829589281125, - 9.9287130610943, - 9.924546688308093, - 9.903506445244938, - 9.941005219272213, - 9.951278387316371, - 9.907130609390977, - 9.91158487404636, - 9.907111616816342, - 9.946433589635529, - 9.95212358560042, - 9.946436433547493, - 9.933372852550805, - 9.930739634846189, - 9.936375911085522, - 9.941098071138107, - 9.958513010806582, - 9.918664398618796, - 9.94769994767044, - 9.989924063566834, - 9.979659906650204, - 9.9688054667139, - 9.931506450313352, - 9.976712281314256, - 9.938811381792805, - 9.955786011233293, - 9.918114224042723, - 9.902647981589643, - 9.949486250539021, - 9.951004609577748, - 9.951015323835685, - 9.95365716942672, - 9.94543243133184, - 9.902316325580193, - 9.940316472208341, - 9.930981630141115, - 9.953319295258686, - 9.955315612446594, - 9.894064523813572, - 9.909350196100855, - 9.909494126721857, - 9.912795598263015, - 9.917379938209463, - 9.932788805045499, - 9.91752857421363, - 9.940374333072006, - 9.963857517575216, - 9.94640851610471, - 9.95452729798187, - 9.981815987255818, - 9.949825704252437, - 9.962232485852798, - 9.95854194272891, - 9.891017562288228, - 9.923999456336794, - 9.926787850010575, - 9.931019474228687, - 9.970893436005667, - 9.962627114428516, - 9.932339790215725, - 9.927242206415075, - 9.941996978035055, - 9.909656752641345, - 9.943124778481767, - 9.952117314024935, - 9.935364681916557, - 9.961810163858521, - 9.951881123423249, - 9.955358703164832, - 9.939237148503908, - 9.902079548409564, - 9.928395973304834, - 9.939417174744214, - 9.967319077560058, - 9.930571678451747, - 9.948333249951755, - 9.946079824968196, - 9.940229877507077, - 9.96556247634493, - 9.97774788726181, - 9.954357639661604, - 9.958498699921364, - 9.922168693876422, - 9.896539824295735, - 9.898465983254543, - 9.899754447783444, - 9.97284059489982, - 9.966551744573488, - 9.945409801565999, - 9.961183060137545, - 9.965244078324009, - 9.943220835320627, - 9.955837585464751, - 9.930353626986747, - 9.952388678477346, - 9.9464104024401, - 9.947184084699927, - 9.959842714698144, - 9.94563920914098, - 9.945716127233874, - 9.936108421520606, - 9.93116005169094, - 9.912346338054189, - 9.908175697873814, - 9.89928239256356, - 9.911345391341161, - 9.954711742711199, - 9.978866084054749, - 9.980715909950664, - 9.969345620630088, - 9.95015451576627, - 9.918033036319633, - 9.936572426832795, - 9.948023436431944, - 9.91191326688223, - 9.91166065318685, - 9.878386603014754, - 9.94099249587123, - 9.955979348540222, - 9.945572433938013, - 9.987310250576309, - 9.970873964295064, - 9.94049887146194, - 9.95639252885185, - 9.949482109438987, - 9.91537836288029, - 9.952014958296992, - 9.947973260015308, - 9.932298286678465, - 9.996131969986413, - 9.963030408242929, - 9.957054089290947, - 9.98343460191071, - 9.977641276360204, - 9.95065197276601, - 9.964576006131644, - 9.951857771006429, - 9.919977558627378, - 9.970747760793014, - 9.937892137138101, - 9.946254692182082, - 9.899653723258847, - 9.904337696688671, - 9.934272160454071, - 9.95070640813381, - 9.981251971652476, - 9.941454941986574, - 9.973431284561823, - 9.955763535938145, - 9.930998247467423, - 9.96673768392061, - 9.976180201028052, - 9.959294021370482, - 9.936638590390833, - 9.962482035935434, - 9.953735695521896, - 9.966838941637619, - 9.93055306740962, - 9.957964345190616, - 9.963805354404556, - 9.934308555461186, - 9.97966354627097, - 9.953698292871554, - 9.903877099684243, - 9.897235841941407, - 9.962220329528169, - 9.949567443531668, - 9.945613522790154, - 9.950752814227716, - 9.98959969400884, - 9.932374845830592, - 9.961915892135021, - 9.93003567592565, - 9.962872468230284, - 9.925407342041504, - 9.962078284818277, - 9.983961426221615, - 9.958744199724144, - 9.959280261750493, - 9.954298972885363, - 9.95572281064191, - 9.947343217978801, - 9.958829452594298, - 9.989144814523211, - 9.930845555506297, - 9.912535035970734, - 9.948806829899258, - 9.952503999777859, - 9.959786309969642, - 9.979477776342897, - 9.981386876814446, - 9.949657390609023, - 9.945889050353019, - 9.905042402663106, - 9.933070127632691, - 9.88358297186078, - 9.920773535823873, - 9.91523130531598, - 9.953558387547922, - 9.921777216366628, - 9.946995669021765, - 9.929554282294129, - 9.955969546782514, - 9.974079925051491, - 9.964117743016201, - 9.99341614416185, - 9.983716031451703, - 9.972867337478334, - 9.989487205176038, - 9.989803107660695, - 9.968359975823619, - 9.992677313072667, - 9.99354587811669, - 9.96090001319069, - 9.988003586495255, - 9.986338909194362, - 9.96073999653252, - 9.925259308371519, - 9.939488315463489, - 9.922067970175739, - 9.957565834327195, - 9.968477409832802, - 9.986669493654478, - 9.957731412724145, - 9.918945427715418, - 9.930221473742098, - 9.934552108545535, - 9.98277026232032, - 9.959389324392248, - 9.953091026545682, - 9.937126936560954, - 9.959109897184224, - 9.98639261417432, - 9.986161736184386, - 9.957353814594063, - 9.934615154494434, - 9.930938237223106, - 9.96410400078236, - 9.945244020010517, - 9.934764895609078, - 9.988406275275889, - 9.93275107807641, - 9.9325981436578, - 9.974407415046874, - 9.98236258058087, - 9.970600550217233, - 9.93738484461217, - 9.968811408017961, - 9.928499572364773, - 9.968210638845505, - 9.936245437934952, - 9.944003780448089, - 9.933455489112266, - 9.97554189472665, - 9.965986526476643, - 9.953412717132723, - 9.934196865761475, - 9.963972340672951, - 9.976515449576267, - 9.949385680433608, - 9.932980073293235, - 9.91866322722688, - 9.955108693294273, - 9.961548501669482, - 9.987826147746127, - 9.930385663760015, - 9.946424784115097, - 9.908329926119658, - 9.916515994615215, - 9.900710598160874, - 9.946473899304376, - 9.97520692992772, - 9.939635986289854, - 9.954241682145929, - 9.960623092524484, - 9.936062638999056, - 9.93430124302755, - 9.914115110143948, - 9.964966626187136, - 9.975593680824968, - 9.960970968773227, - 9.905106870836638, - 9.890180905200584, - 9.927337468098871, - 9.919962904812035, - 9.910968352416337, - 9.94438516699804, - 9.98898755439969, - 9.971243123237274, - 9.958839012640691, - 9.935508780102083, - 9.905875365218566, - 9.931336784726957, - 9.929161051333676, - 9.915966991996024, - 9.915744868575326, - 9.94253516959697, - 9.936478998059481, - 9.89525812853158, - 9.948429515462088, - 9.961279066717484, - 9.962587550509802, - 9.976202064244099, - 9.97878676707457, - 9.949652346123974, - 9.954405430699635, - 9.923761315851504, - 9.932911105971144, - 9.939134977554948, - 9.927036372101629, - 9.914590552081892, - 9.929484149659816, - 9.952886249157094, - 9.97790659031227, - 9.980104445355552, - 9.926999684887399, - 9.970993244717274, - 9.97205555345866, - 9.945556437068737, - 9.952210372188409, - 9.933603408626315, - 9.916153196184904, - 9.950477690225304, - 9.971828048245662, - 9.94987558962984, - 9.970740690793036, - 9.96773634450648, - 9.964570422817834, - 9.961859997193105, - 9.901883301793156, - 9.912530180799424, - 9.935956330426592, - 9.974142288774994, - 9.961068672737783, - 9.95821558988274, - 9.961814548343986, - 9.879150758256266, - 9.929582205534793, - 9.911443901780213, - 9.930163156633554, - 9.964658269272132, - 10.023461172227679, - 9.975642822810403, - 9.962886404022882, - 9.952660606911628, - 9.923068911390647, - 9.94620221744662, - 9.942776125482634, - 9.962803610809171, - 9.944300664415422, - 9.943397132272349, - 9.902700807096666, - 9.94589042077237, - 9.916562174294738, - 9.909084997843227, - 9.89510847147565, - 9.903156299093503, - 9.932729896981074, - 9.965499826071929, - 9.97340720860692, - 9.975928918630196, - 9.923211864989344, - 9.908023293977054, - 9.9188150841398, - 9.869438457065485, - 9.922763330377935, - 9.942313294362332, - 9.911920256853657, - 9.88959191981128, - 9.890797446563028, - 9.91956579399621, - 9.939846793043372, - 9.945262021862616, - 9.940944889353556, - 9.93521478229758, - 9.945518269712034, - 9.956801719466482, - 9.959972933159671, - 9.945737881889968, - 9.932306369583653, - 9.906392509728157, - 9.929166359706384, - 9.968210628917971, - 9.939790391257597, - 9.969720072833642, - 9.981298766013351, - 9.970642395373346, - 9.979581602421048, - 9.96475789681905, - 9.971764209711086, - 9.963120591089135, - 9.952243538525645, - 9.94650033354137, - 9.929417025076397, - 9.943694041883607, - 9.947984623294131, - 9.978499857871784, - 9.960406341271371, - 9.98337681453299, - 9.961437130373472, - 9.934766278443506, - 9.946975961844103, - 9.951882552136084, - 9.952203433192862, - 9.950670173648613, - 9.899553678932614, - 9.920000568739324, - 9.945022614576105, - 9.944332168815604, - 9.948402939761705, - 9.950587615583817, - 9.962355012413965, - 9.985787786441017, - 9.996551417024781, - 9.960113093864777, - 9.950645547398679, - 9.96352717690099, - 9.957915868880594, - 9.956394336132563, - 9.957543742606317, - 9.954950289066625, - 9.946847643521382, - 9.953063177470263, - 9.947017789175032, - 9.922410227339752, - 9.958874306768132, - 9.941251086362344, - 9.972100459892083, - 9.958698995869028, - 9.93767811957942, - 9.969288765772509, - 9.917785395824234, - 9.924023049287163, - 9.955687875485598, - 9.92413289527381, - 9.912571216817135, - 9.94368472033582, - 9.951340119014924, - 9.946059313096937, - 9.914380233467922, - 9.960285083118382, - 9.933694457326732, - 9.952149871677275, - 9.949347762707925, - 9.982079074075886, - 9.917326668191459, - 9.905872999374248, - 9.943918683090518, - 9.932605568710056, - 9.961362684269332, - 9.935489742357632, - 9.901172651461236, - 9.906169338131708, - 9.900708277795422, - 9.9632763252479, - 9.933038586029783, - 9.912603054435266, - 9.96895005051215, - 9.949245984626117, - 9.908256496291132, - 9.977641612703025, - 9.949912632190452, - 9.944088933127192, - 9.988576412158414, - 9.968012023972694, - 9.921913839501705, - 9.943142105523068, - 9.918187575143419, - 9.959212392877017, - 9.973152690528748, - 9.975938207878077, - 9.942124406741508, - 9.933680473938313, - 9.973091043194609, - 9.982125003984153, - 9.919298221589871, - 9.954854195975162, - 9.976618375857438, - 9.94929796016038, - 9.955089425573833, - 9.925900376876571, - 9.941312621638502, - 9.930686642103069, - 9.907158356215213, - 9.916692909132358, - 9.932384492376155, - 9.958743253061613, - 9.959782830422919, - 9.947707365130157, - 9.970196204740612, - 9.934829403178792, - 9.959157071709514, - 9.894351496038514, - 9.917477785621102, - 9.88905960754998, - 9.918834991477565, - 9.955997772008214, - 9.962675607383456, - 9.947937495700211, - 9.931467333891916, - 9.917109361058678, - 9.951717067053472, - 9.956879858085237, - 9.920049088737766, - 9.919426231884223, - 9.963585665852705, - 9.961707265337804, - 9.982642317100366, - 9.928620838323397, - 9.91714198059471, - 9.95181937508032, - 9.941738015908163, - 9.955851985435034, - 9.939020291182747, - 9.950230906863922, - 9.957541827092408, - 9.975635851781933, - 9.951975088619092, - 9.983610183647663, - 9.971786086120618, - 9.952242520009724, - 9.94648039574855, - 9.90423208883673, - 9.911062188895981, - 9.982283417317294, - 9.94986837283855, - 9.940238210638636, - 9.947708183174857, - 9.948652483491728, - 9.923085677639067, - 9.909202926681502, - 9.911287484811577, - 9.910593909699845, - 9.904001847866294, - 9.950877766256927, - 9.97819493704169, - 9.963933219582778, - 9.979067306353194, - 9.929778727571826, - 9.94131949370237, - 9.983229679789023, - 9.984901254634803, - 9.99762693331218, - 9.999531318721198, - 9.951928887013406, - 9.93764583151472, - 9.920268356429311, - 9.957610837370334, - 9.931742050181004, - 9.956775677712667, - 9.94964927648074, - 9.958878121093722, - 9.950458176543167, - 9.930852152422501, - 9.933314285032742, - 9.947220852077166, - 9.912983016686006, - 9.878915066487068, - 9.923850970164636, - 9.964530789567918, - 9.893993469201074, - 9.924443160454773, - 9.919566226850115, - 9.933291885414562, - 9.958492794056346, - 9.942043876902376, - 9.911858808823313, - 9.861252676621469, - 9.8239794725381, - 9.860304377064509, - 9.885653391068068, - 9.893309209980412, - 9.911104949644429, - 9.882242381959234, - 9.843265627943081, - 9.831078446309482, - 9.84612987819225, - 9.864491027527333, - 9.879372728272937, - 9.859309610195234, - 9.839792531367438, - 9.859704233512897, - 9.857565328787476, - 9.884725600096035, - 9.894921108626304, - 9.912276003718118, - 9.92209312791802, - 9.923750002418439, - 9.903719067111371, - 9.914636980623268, - 9.955728460206343, - 9.964880557840965, - 9.956063937969263, - 9.968668714685217, - 9.944070198665768, - 10.003932312057348, - 9.957128513870892, - 9.97185062835824, - 9.950813479715524, - 9.944919553306354, - 9.944842136681762, - 9.957690330254351, - 9.929701809657264, - 9.934518695324405, - 9.929193151294363, - 9.948012842630943, - 9.916533122941557, - 9.90485395721477, - 9.938354015390981, - 9.967346359254789, - 9.970102564729372, - 9.914513501879487, - 9.97226077925589, - 9.938397228765064, - 9.942975563996669, - 9.965740921453543, - 9.987957179697691, - 9.960937604348018, - 9.928721006229837, - 9.94053520258658, - 9.9417247002603, - 9.953414698421316, - 9.98671442039485, - 9.970274639632704, - 9.942391762262908, - 9.940405125629619, - 9.974967931188555, - 9.963350605183324, - 9.988569868196336, - 9.990074129398595, - 9.954641790262723, - 9.963999459003315, - 9.95896576989073, - 9.937567931420594, - 9.963723816003878, - 9.959075051908878, - 9.893252339057987, - 9.93028332171366, - 9.965705992823851, - 9.972572740757931, - 9.964972699097618, - 9.986131449505828, - 9.936235767414551, - 9.948863885578175, - 9.904651988402433, - 9.915515110117745, - 9.946796272675542, - 9.917022323323431, - 9.912695856188368, - 9.900565341784487, - 9.910672054612204, - 9.96188032178315, - 9.940309857743866, - 9.945427348729522, - 9.973258552165015, - 10.015515612482242, - 9.955555470599787, - 9.946639888171916, - 9.955915754626693, - 9.978166344981547, - 9.967746869112041, - 9.983937202360867, - 9.958381872081791, - 9.93760510641761, - 9.95026828526336, - 9.937841451638521, - 9.929494992996624, - 9.952618573079441, - 9.921674197583219, - 9.920689372427681, - 9.95509543316306, - 9.985061944086189, - 9.960884293805826, - 9.92486672812625, - 9.91856624862116, - 9.957414096178434, - 9.987556866212696, - 9.962714597485975, - 9.980437756890142, - 9.945708825974586, - 9.940610520845665, - 9.931116404967831, - 9.95022034788811, - 9.96127074729879, - 9.961348389550334, - 9.9573839889926, - 9.93437364181888, - 9.93639970815216, - 9.947145738391017, - 9.957822707553035, - 9.95215051495369, - 9.97423464434334, - 9.978909303743631, - 9.99370960592195, - 9.992096402762979, - 9.984898744012533, - 9.912529690478733, - 9.928129598506567, - 9.931952960716279, - 9.94631353875913, - 9.938721422843352, - 9.9344060855786, - 9.933029388408311, - 9.939392509770299, - 9.921711619645354, - 9.902237467477875, - 9.924310016639765, - 9.918549591585705, - 9.909471598769162, - 9.913639008132801, - 9.91488273584458, - 9.918092432066658, - 9.901591124950494, - 9.945993307070914, - 9.980355211635963, - 9.989407293319086, - 9.967307261364715, - 9.960965848107428, - 9.944619641043678, - 9.925747957160574, - 9.956703370906137, - 9.955749426028483, - 9.910822569519363, - 9.962612471293559, - 9.96743739794588, - 9.921864743630039, - 9.927415548300894, - 9.959233291383306, - 9.973155153597302, - 9.964038420156962, - 9.97358594624713, - 9.948982448466921, - 9.960615856433275, - 9.964514473843376, - 9.959662106278621, - 9.964905383275601, - 9.922388953722002, - 9.939394151772296, - 9.958585183163244, - 9.984072890092921, - 9.981641341225428, - 9.947503617497308, - 9.945182887818255, - 9.926562746130728, - 9.963338430012891, - 9.929687162096918, - 9.976804500794987, - 9.956438771937401, - 9.930856558858297, - 9.923824788390672, - 9.96402721054885, - 9.942112982698461, - 9.915882714563729, - 9.944619396027658, - 9.973498625934086, - 9.955528396930703, - 9.959619807622955, - 9.93168477111365, - 9.92005228617086, - 9.991469576079682, - 10.001752541121947, - 9.989281513236454, - 9.99408068938717, - 9.985785859560213, - 9.974532128100272, - 9.969467047061102, - 9.949946710257795, - 9.954089334893615, - 9.941025449048858, - 9.950875200540303, - 9.956703896797082, - 9.907806707542537, - 9.91288501102945, - 9.920800764137686, - 9.967707454286826, - 9.956703781158426, - 9.949104237713119, - 9.973629174754645, - 9.925550691032203, - 9.912979875886048, - 9.95994024862912, - 9.967009894476853, - 9.98915529618705, - 9.951300690585224, - 9.959491006926092, - 9.940756259481518, - 9.973871116350589, - 9.945684298177506, - 9.947583134637036, - 9.953615014814366, - 9.954099613558228, - 9.918048448607859, - 9.903275971337841, - 9.926310350735143, - 9.92073758298326, - 9.937110328828677, - 9.930400848156163, - 9.930968591290721, - 9.950170181282797, - 9.949933297830645, - 9.95063996318681, - 9.933252148363657, - 9.96492319874502, - 9.944901012920708, - 9.950715550065048, - 9.963026889377748, - 9.890653646128337, - 9.928315857137736, - 9.8952498864123, - 9.915518635186471, - 9.920102429305972, - 9.916196823120403, - 9.943541377165793, - 9.962913425586608 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 1", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 9.962913425586608, - 9.975642604212574, - 9.972565179320402, - 9.940082743589347, - 9.953570714409272, - 9.944734593068677, - 9.984758758408061, - 10.00695187507671, - 9.928273840091304, - 9.935938728513745, - 9.964915729830697, - 9.965153839440354, - 9.944331651125148, - 9.921647486127881, - 9.925711723908103, - 9.960111543647807, - 9.965544104892818, - 10.003203023787036, - 9.942450805881395, - 9.928710094800865, - 9.929486050919092, - 9.931394551981349, - 9.948771043144978, - 9.91934831622071, - 9.939058444205362, - 9.934512796412447, - 9.977179452955399, - 9.944274019646704, - 9.967274649016135, - 9.93052119081981, - 9.9639709062564, - 9.957241105733903, - 9.963315843977988, - 9.958304862855808, - 9.967747153609517, - 9.90478750245824, - 9.941684778051089, - 9.960964303598393, - 9.957480105207027, - 9.984477623516957, - 9.953316344574398, - 9.955301564416594, - 9.896960198151211, - 9.856353271133942, - 9.951279229464406, - 9.904410258777604, - 9.949683028442912, - 9.957882757873493, - 9.943707146215466, - 9.951417024582506, - 9.950509168817765, - 9.964659275146015, - 9.936093405579996, - 9.942746399099878, - 9.932256082858334, - 9.959689252963429, - 9.975620729525364, - 9.958397729459636, - 9.969622444449142, - 9.979867435029488, - 9.96872287802659, - 9.985662026140991, - 9.98056670474807, - 9.947802747778713, - 9.958375687192662, - 9.940847581960666, - 9.94517691800743, - 9.930387004053216, - 9.939050322320607, - 9.946317019119503, - 9.940811644701842, - 9.936133066686466, - 9.93301095130989, - 9.951514756914206, - 9.95422433155882, - 9.929199596702823, - 9.932353905445057, - 9.94630793516456, - 9.94820662739933, - 9.963397770996249, - 9.956802573217507, - 9.975371922618589, - 9.993762888196127, - 9.991433908651038, - 9.964329195532692, - 9.918176707924117, - 9.919059891444787, - 9.920308771557794, - 9.930597222074248, - 9.96096483484826, - 9.91454759660251, - 9.956730011723185, - 9.956209953652422, - 9.923893651176197, - 9.944494407779196, - 9.94426103173074, - 9.914484539168747, - 9.896030135992412, - 9.910727229461866, - 9.916784452244581, - 9.962749242680363, - 9.90673383781924, - 9.932858283105967, - 9.958901643799958, - 9.939082697303286, - 9.94747985326334, - 9.931360992177812, - 9.972784922741848, - 9.932270129135668, - 9.943188688364469, - 9.945192671022102, - 9.944156823346525, - 9.972348794097071, - 9.968736011098533, - 9.988556116748555, - 9.979255154154984, - 9.945872931671854, - 9.95156731954278, - 9.943547399805288, - 9.961906957510957, - 9.956333171153805, - 9.99877864062969, - 9.929501118078763, - 9.928659459085871, - 9.969027612111773, - 9.960204966371538, - 9.979968107924941, - 9.951176197440416, - 9.96305419090844, - 9.9717892007071, - 9.980001543474096, - 9.987297480589113, - 9.960058103193294, - 9.977647579009895, - 9.957520982410108, - 9.977556875361117, - 9.9780968935468, - 9.948598740847173, - 9.928461297548667, - 9.930500299087848, - 9.957778988996631, - 9.959147159181963, - 9.961751311204258, - 9.982712416942606, - 9.989372974059169, - 9.98541126845286, - 9.964741110551369, - 9.980745741776248, - 9.961352315565899, - 9.956950294344324, - 9.955927409010055, - 9.965972033006139, - 9.967457440973337, - 9.945028900670238, - 9.929450961281463, - 9.940811365573062, - 9.95843483797369, - 9.957819304766952, - 9.952429696755598, - 9.946827794791567, - 9.972475701775616, - 9.952920159472676, - 9.976813815329667, - 9.926764744862895, - 9.91241287632654, - 9.889626657975635, - 9.931946159294274, - 9.917801855886902, - 9.936056308021847, - 9.906330062541018, - 9.938066625302442, - 9.9285241193851, - 9.920735301387069, - 9.998112482222815, - 9.958535115863832, - 9.94516611535778, - 9.938805944088806, - 9.936207881100277, - 9.939143939764184, - 9.942827476460764, - 9.927940094031829, - 9.953821788888966, - 9.95299658243605, - 9.966717667089519, - 9.977832115572914, - 9.96941965967454, - 9.940686771646707, - 9.934633160618416, - 9.918091349855345, - 9.941394753360214, - 9.946395738871164, - 9.985933613588534, - 9.9788278141018, - 9.938775167695846, - 9.957484278936017, - 9.933991602038475, - 9.958310041009481, - 9.956354613553264, - 9.934825263977064, - 9.917926722539224, - 9.955470107319659, - 9.993600132874317, - 9.962968082080216, - 9.941337583302424, - 9.928344679621796, - 9.92467398173332, - 9.9425438722827, - 9.951102399609411, - 9.95657697496764, - 9.942280580222839, - 9.930715276985431, - 9.949536735365644, - 9.961451116839555, - 9.986397823095796, - 9.991785380602677, - 9.95233970319183, - 9.944361187799412, - 9.937972321274614, - 9.968098477403409, - 9.978208484654898, - 9.97575800765609, - 9.940017639334918, - 9.95026976451918, - 9.942550229631898, - 9.942158528586976, - 9.938596879001496, - 9.952793097912437, - 9.968522157449883, - 9.986384729195022, - 9.953379136682473, - 9.936550206845931, - 9.934920743991668, - 9.940700702895466, - 9.903336783586928, - 9.909442223540621, - 9.90240609635907, - 9.911741508006909, - 9.904573261601426, - 9.947673342643323, - 9.962702853111955, - 9.96685616893421, - 9.966470816670919, - 10.002485293412265, - 9.975261796922366, - 9.976252646962234, - 9.960758938785697, - 9.950205935022025, - 9.944911914526257, - 9.971366391636453, - 9.94590363597515, - 9.974030266714207, - 9.999584633648055, - 9.951325385837245, - 9.980031449692392, - 9.984207743327966, - 9.964417713531493, - 9.953650159238009, - 9.98472736794662, - 9.943673917593406, - 9.993074153086871, - 9.963624009276563, - 9.952625058179812, - 9.980279762034305, - 9.937957862195164, - 9.94341881499078, - 9.980766339051094, - 9.964897041342823, - 9.990015769829153, - 9.945151106028526, - 9.894859714515382, - 9.905778112859037, - 9.936392153426535, - 9.905093582158512, - 9.920862202655304, - 9.935079023747903, - 9.932731056004116, - 9.962932680830619, - 9.950680680094832, - 9.919896303000684, - 9.91172592190619, - 9.92075884470875, - 9.950031014613554, - 9.96160437493816, - 9.939441130067873, - 9.955489591385627, - 9.946716790051498, - 9.957164492698583, - 9.942062171382133, - 9.95584885187985, - 9.944122845456167, - 9.943572330814757, - 9.919484038171987, - 9.98235523855528, - 9.96282207016087, - 9.949510401673704, - 9.945874078602525, - 9.94294057980604, - 9.970517681674723, - 9.949757464188307, - 9.960219141645139, - 9.98123319203786, - 9.977792413482447, - 9.9733720358573, - 9.969891006742412, - 9.907018781335305, - 9.960756410767251, - 9.955157438136196, - 9.96432848776872, - 9.938146261208585, - 9.944608911243128, - 9.949000591850826, - 9.963853640837943, - 9.942049568853644, - 9.94901383709252, - 9.956665370627977, - 9.946136776271441, - 9.928348439677688, - 9.920137610389208, - 9.936903300346101, - 9.925675242995517, - 9.948847800728538, - 9.987072030573492, - 9.946106607817907, - 9.972973786025813, - 9.974874446860829, - 9.96459457610131, - 9.94326323553391, - 9.9289201938898, - 9.9339362806372, - 9.951203286293293, - 9.907902632446802, - 9.88141512583591, - 9.859550907268986, - 9.888474774109094, - 9.933753826680102, - 9.9473229279569, - 9.926682439740695, - 9.958664642611355, - 9.94502781182715, - 9.913622252575278, - 9.91492941089189, - 9.948432520498102, - 9.9186644434293, - 9.946597043639239, - 9.965865850592687, - 9.951359004466612, - 9.94759020402472, - 9.94600798651199, - 9.992338006463674, - 9.961545645535546, - 9.960244058102532, - 9.980684041157208, - 9.940867793975661, - 9.996132601617987, - 9.988210472274874, - 9.953207824382098, - 9.946468012117538, - 9.934096337804029, - 9.937158954415084, - 9.94941710027016, - 9.920146248434538, - 9.921376032626876, - 9.92565959419597, - 9.924403195863466, - 9.958165718092143, - 9.983929146345858, - 9.984437713460915, - 9.951185511819954, - 9.965238498845103, - 9.957998096498779, - 9.935195836393705, - 9.900520255072372, - 9.930633112537267, - 9.96318047129178, - 9.99456302746531, - 9.960859967599438, - 10.003997244502118, - 9.970157802287094, - 9.943462319860291, - 9.967787847935172, - 9.98552704537974, - 9.971917555616352, - 9.929280912780824, - 9.903348097606536, - 9.956310764436788, - 9.941808526296683, - 9.965318396170716, - 9.998909221239145, - 10.012976888502395, - 9.986064594461915, - 9.93930756227495, - 9.966144649538327, - 9.987247948956835, - 9.972490636135415, - 9.97496854112185, - 9.967112261798576, - 9.986293520123333, - 9.960631920923358, - 9.899661085434667, - 9.944698805189754, - 9.945206736184826, - 9.971723012450866, - 9.95066434636915, - 9.958567781418543, - 9.945776353116317, - 9.967595553552323, - 9.959755353378915, - 9.915868879784533, - 9.941192689709556, - 9.892397685063395, - 9.919248852459887, - 9.985479087631598, - 9.968286629154292, - 9.954843876600618, - 9.944304942104617, - 9.993016715671411, - 9.974984393550246, - 9.969944032714842, - 9.954191976895538, - 9.943776715283931, - 9.915336200434234, - 9.96497376816435, - 9.987102380745936, - 9.969499420859156, - 9.943546288531074, - 9.938513575228214, - 9.954212206347847, - 9.922852517049664, - 9.936565341069448, - 9.961621576260825, - 9.974704193247202, - 9.961315928685497, - 9.957146059592692, - 9.962823194788553, - 9.964475350718793, - 9.955297541232909, - 9.92420768760472, - 9.930996555329875, - 9.946483567563712, - 9.962742901967497, - 9.94322788114708, - 9.917230498652964, - 9.912486449020212, - 9.937845913915384, - 9.955220244169924, - 9.975104678513874, - 9.936973432474979, - 9.932604053909241, - 9.909564947412779, - 9.908279253218323, - 9.918397594519963, - 9.922097487182846, - 9.93313688549784, - 9.940408479515034, - 9.97326557625412, - 9.962368015263165, - 9.927419824087165, - 9.956092923704691, - 9.957170862795188, - 9.931291893171691, - 9.942332828332962, - 9.96721294620352, - 9.973858753528441, - 9.94361056552564, - 9.916495869102565, - 9.91842257958901, - 9.943883997567518, - 9.933156584298565, - 9.94921595228881, - 9.949459786914302, - 9.91965569179459, - 9.934398571971988, - 9.927676221354911, - 9.93410978145518, - 9.939749716545661, - 9.946262855412773, - 9.973522055952834, - 9.94583766088389, - 9.960231604396904, - 9.908473543556337, - 9.942685169342827, - 9.933062022853731, - 9.919950836255465, - 9.885200525092984, - 9.908761949774, - 9.92000918792526, - 9.93602856472869, - 9.9546029995507, - 9.92883266469648, - 9.953408527771987, - 9.955278501722914, - 9.953459683776158, - 9.963687049171995, - 9.973822318880597, - 9.97443178530044, - 9.925508106135867, - 9.921306388136761, - 9.942453332811931, - 9.927277472741826, - 9.943112649861371, - 9.94740976968061, - 9.919542462581601, - 9.960510514365042, - 9.943072761711697, - 9.989172606589873, - 9.978956364252419, - 9.961793323294735, - 9.957916443215469, - 9.933270139266893, - 9.926154822456548, - 9.943883159406631, - 9.96900300608836, - 9.95208184997472, - 9.985462964389349, - 9.952873442177378, - 9.934323512289838, - 9.968510958066535, - 9.950658264478664, - 9.946639665586623, - 9.917393850204439, - 9.930605065964627, - 9.945691633159225, - 9.954753962060886, - 9.952240086811166, - 9.951936068425626, - 9.966225684361952, - 9.940983565453134, - 9.99936709293871, - 9.973114549668196, - 9.977368577732038, - 9.934011729119806, - 9.921225825094213, - 9.915318277442818, - 9.915104256481706, - 9.902417198763084, - 9.94545374916875, - 9.928634907720165, - 9.944932582752541, - 9.915680985501739, - 9.934179465161229, - 9.96048680655547, - 9.956860182566603, - 9.938732003921052, - 9.968968012109187, - 9.962666415171396, - 9.95264905399726, - 9.951399585833189, - 9.93995987234958, - 9.961324378650266, - 9.94406789751993, - 9.956329945601748, - 9.958189760646633, - 9.935629426918606, - 9.935952916572877, - 9.961794627667254, - 9.929192658821929, - 9.925969834545798, - 9.91512944771775, - 9.944643716407992, - 9.91738049498517, - 9.914090049180272, - 9.933725199189885, - 9.94976514642731, - 9.918307072344735, - 9.964508920886257, - 9.9605193347863, - 9.967223492639258, - 9.958113262838072, - 9.960520079229559, - 9.978912320142559, - 9.932128159356592, - 9.956724648109528, - 9.969853848670633, - 9.970431801714374, - 9.940023967736733, - 9.938213688384842, - 9.966445166419522, - 9.955574929523097, - 9.967781603348225, - 9.961671162920783, - 9.955216149301167, - 9.970874680227983, - 9.945838086738236, - 9.922121273352262, - 9.935543720720254, - 9.943308841369337, - 9.939703672723667, - 9.966858194234607, - 9.927016119624225, - 9.943237642923126, - 9.960917112734334, - 9.923896723902802, - 9.932446668860386, - 9.947967523358189, - 9.934204728516512, - 9.939187774577576, - 9.930885599269446, - 9.89654839344387, - 9.928805367761615, - 9.95046507358705, - 9.952057944666768, - 10.00151365520981, - 9.969326973339331, - 9.980648944155837, - 9.953822401653905, - 9.954881206718284, - 9.96421653982946, - 9.943639205608779, - 9.947961203434444, - 9.93705270693517, - 9.944925019312953, - 9.981464342100464, - 9.957074301796425, - 9.96004620151959, - 9.945814684624166, - 9.937401831132174, - 9.937624624912338, - 9.948007004929654, - 9.967847210092257, - 9.9457778995789, - 9.907540987764724, - 9.939041084784492, - 9.973262393950877, - 9.953117444358845, - 9.959081965028828, - 9.968220767239705, - 9.955901546615792, - 9.942254429713529, - 9.902258857312688, - 9.936708086201575, - 9.942399890912736, - 9.931980146501035, - 9.969982394592263, - 9.988007124115084, - 9.93969583160345, - 9.968708729791697, - 9.970154748419825, - 9.96294006865558, - 9.965498222775139, - 9.948108833647321, - 9.949382808727144, - 9.93362344455008, - 9.923031196662974, - 9.961371133267457, - 9.946715518290773, - 9.943381588939278, - 9.920644009365533, - 9.926251748482615, - 9.977282985002375, - 9.978920426707466, - 9.969052979187156, - 9.97419736848995, - 9.957923776974871, - 9.946736223152781, - 9.93963611539095, - 9.945616627486697, - 9.998900523477257, - 9.966883342600086, - 9.92583546322383, - 9.951334104305559, - 9.971972175883977, - 9.920642295907053, - 9.923220069262916, - 9.931174873972505, - 9.904258000256858, - 9.95659931725413, - 9.929084537746332, - 9.96213762337937, - 9.978959787333542, - 10.01213653737452, - 9.967820091948361, - 9.945442008138471, - 9.951977075447633, - 9.957841209128944, - 9.922020287643484, - 9.913733673877742, - 9.917462714105472, - 9.95122946866635, - 9.943113449073556, - 9.971582713928722, - 9.96386356342667, - 9.895685639841078, - 9.941026954582638, - 9.95321059495407, - 9.966555975095181, - 9.968683606924827, - 9.974898875260287, - 9.918308294145403, - 9.928007916014613, - 9.895902752239037, - 9.937387970739527, - 9.934489099980642, - 9.923711136697094, - 9.912312536785004, - 9.938829245477509, - 9.929059058141975, - 9.895634084272578, - 9.957589354276129, - 9.928706616234296, - 9.909965856504122, - 9.927793426381577, - 9.936942416740038, - 9.934084828094454, - 9.944592977408192, - 9.954084117612135, - 9.95298779304888, - 9.989777664371603, - 9.970791527961097, - 9.996177990870388, - 9.965881776069722, - 9.937091370159932, - 9.952485185678233, - 9.981305154194347, - 9.927505676403655, - 9.972493703504497, - 9.923531926774675, - 9.9113941829883, - 9.928875659480005, - 9.945914776991854, - 9.910916200951712, - 9.88386396708485, - 9.946529116667755, - 9.960882468057488, - 9.92113482213305, - 9.944874593177978, - 9.930291036067931, - 9.95271606833758, - 9.966175105494417, - 9.967632557778071, - 9.946020784638364, - 9.99500178396137, - 9.933875853347585, - 9.957541891454456, - 9.978892770351228, - 9.963810831315282, - 9.931188371842296, - 9.925910942055399, - 9.923442225367914, - 9.941517393310935, - 9.909545565794236, - 9.957248342572559, - 9.983110397428018, - 9.97844164124186, - 9.97485933128711, - 9.986486717648043, - 9.967257255477035, - 9.92233784248879, - 9.949716982070445, - 9.940362378429985, - 9.944507164444872, - 9.950114345237502, - 9.97057474308337, - 9.95906448149839, - 9.93967114465572, - 9.884957036767249, - 9.95716484280641, - 9.967850081440327, - 9.955760460765319, - 9.945049716996675, - 9.947599985720279, - 9.953285061623546, - 9.976151770819481, - 9.995255050331373, - 9.958326529067332, - 9.94264166008996, - 9.96629133788768, - 9.949909643125311, - 9.960680165837694, - 9.99552903078032, - 9.97046399518806, - 9.947699802531432, - 9.96228285245034, - 9.967804695791786, - 9.975383474732421, - 9.960620153814197, - 9.963144450169098, - 9.986219981183282, - 9.983712831850081, - 9.954711334004863, - 9.975626748214124, - 9.987643417665364, - 9.958101858699465, - 9.960339571238736, - 9.940813926187367, - 9.952961702808974, - 9.931844508577301, - 9.946544492785646, - 9.97686931241151, - 9.92704017034291, - 9.953686873187536, - 9.956404746116398, - 9.94650874801839, - 9.938456611188535, - 9.916374914597084, - 9.89397470848654, - 9.91532838977694, - 9.891275201125488, - 9.91959359424586, - 9.903509091367306, - 9.930178346177357, - 9.93977479359517, - 9.962815823743489, - 9.978897888415585, - 9.931362869130265, - 9.954000650086973, - 9.965630995130445, - 9.959262094211738, - 9.925569332249225, - 9.933383189113865, - 9.972517889443242, - 9.931554362273433, - 9.968804721964935, - 9.981464594628198, - 9.960169100954998, - 9.943159604470532, - 9.974385779276737, - 9.967821361653437, - 9.975375384637632, - 9.950701628494818, - 9.934239276386565, - 9.942137654948402, - 9.98280938470844, - 9.967067773482023, - 9.960411078844704, - 9.944433957951917, - 9.97764244744358, - 9.951242006347362, - 9.992308627128564, - 9.98045266093048, - 9.94998778210585, - 9.90640611738803, - 9.967518705105837, - 10.00381383040159, - 9.987747556072321, - 9.985385480724627, - 9.993658034117596, - 9.986326304229234, - 10.00582792109211, - 9.947117932808496, - 9.961374468274089, - 9.976661376413178, - 9.958431912386075, - 9.98010152521822, - 9.945766164824171, - 9.963906589510062, - 9.965960707093506, - 9.976920591333544, - 9.979062770438038, - 9.989003275987129, - 9.949621615726938, - 9.931547532205148, - 9.921312057524366, - 9.981597432148494, - 9.974824517371754, - 9.949562932452075, - 9.94500897360057, - 9.967282295098428, - 9.97046839152568, - 9.9547067018449, - 9.963181074981959, - 9.948443942599429, - 9.949755547046129, - 9.946352749155622, - 9.985531794849473, - 9.914921168221364, - 9.948303858683907, - 9.950246130683322, - 9.956807442378517, - 9.973754458183725, - 9.947719402973995, - 9.954092487375267, - 9.954879259557293, - 9.916001676953101, - 9.925423152434927, - 9.924384964030939, - 9.93615215965162, - 9.912227273002031, - 9.955222737586709, - 9.95716778490142, - 9.979178972882176, - 9.994307598752712, - 9.929559634052511, - 9.953728136620416, - 9.92132604894027, - 9.942205059412931, - 9.941306617382711, - 9.99307462322028, - 9.991060586094198, - 9.971389244348845, - 9.960481345291841, - 9.947478899202197, - 9.942792393753429, - 9.933310030231663, - 9.960692430539813, - 9.95076241244628, - 9.971024111887091, - 9.927441667112783, - 9.929350966763451, - 9.961548945388685, - 9.951948505997551, - 9.954778150140658, - 9.928339202156979, - 9.962710362048318, - 9.92776533156729, - 9.959420715187651, - 9.951638544193932, - 9.956868131042242, - 9.977456134784042, - 9.923060418247507, - 9.970131275526583, - 9.956945108278044, - 9.916445575690586, - 9.947288098331594, - 9.98884533306413, - 9.982869938965043, - 9.955935878281664, - 9.911925995950783, - 9.960554423034386, - 9.993237387986477, - 9.960520223290425, - 9.992701631856, - 9.964221852042424, - 9.979828718228086, - 9.963261193975564, - 9.901566183782645, - 9.95944182192157, - 9.975404977790845, - 9.929875911954495, - 9.964925720310617, - 9.945745786817335, - 9.96119210113965, - 9.925080209362456, - 9.907833456978942, - 9.883626645102192, - 9.952163792155494, - 9.964406069057434, - 9.970688122350012, - 9.984733965086013, - 9.940848114543568, - 9.956160207389637, - 9.966818081187203, - 9.942220410177656, - 9.906066289480641, - 9.913071560958501, - 9.953087864834776, - 9.944990607022527, - 9.992472783901515, - 9.95864263458034, - 9.933870690952041, - 9.951024756650657, - 9.951464592911556, - 9.958831446131539, - 9.933486097048668, - 9.954798210766707, - 9.945532171313534, - 9.950721806000276, - 9.944438028512582, - 9.932791056413704, - 9.914796910506995, - 9.942107766372837, - 9.930273000213207, - 9.944896658031285, - 9.962032131378171, - 9.882770509277165, - 9.911697089626076, - 9.949706795239578, - 9.933691149889412, - 9.947771341893747, - 9.910498514279674, - 9.946527655137201, - 9.935794608326235, - 9.96835999235247, - 9.933515650067042, - 9.940037077081637, - 9.927179754286428, - 9.959479949562054, - 9.967356899539089, - 9.965812054291197, - 9.938361671304897, - 9.982930785461665, - 9.93677099034133, - 9.909028123509747, - 9.893271777608716, - 9.954896276140856, - 9.985126400108419, - 9.975354028353928, - 9.963816078246442, - 9.95069423267525, - 9.93412068106554, - 9.92398616773627, - 9.921262954364776, - 9.926884054639801, - 9.939587892175552, - 9.95694914907156, - 9.977555693875559, - 9.995837502315835, - 9.987699417327342, - 9.966999049976287, - 9.973600882623076, - 9.929075607860156 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 2", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.14627265523349112, - 0.09249825063118461, - 0.05864638094297092, - 0.29939728890762946, - 0.21984407544230936, - 0.3815425425336365, - 0.26476914307147803, - 0.2972736444877533, - 0.3197654954898758, - 0.36675083245741247, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.18222284147805604, - 0.09146714114865447, - 0.13750274901415122, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.06885296393026999, - 0.8526659535856848, - 0.31532002776348655, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.1884001842285637, - 0.29544687481761756, - 0.48875172337385187, - 0.4106995692076558, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.011646499474023766, - 0.16166528592369075, - 0.21537499880135694, - 0.11051465870664842, - 0.29325460593707986, - 0.257339504075334, - 0.3080347504065253, - 0.11825655999624235, - 0.0908277661568195, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.0524786366803062, - 0.12973008483739817, - 0.1312086196845979, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.42071214012958413, - 0.48698265068922736, - 0.5083508047316404, - 0.4882811588271051, - 0.3874660692988012, - 0.4521545197499185, - 0.634453336665064, - 0.3901278594237819, - 0.34113783525571956, - 0.31130304878486226, - 0.20669372830284927, - 0.31062850812352916, - 0.26084769855470447, - 0.21103812386349868, - 0.24715692122072525, - 0.10000355669152555, - 0.2022906545452066, - 0.34002009996336235, - 0.20526745090784462, - 0.1597940275138265, - 0.36557555976648254, - 0.4011910521603971, - 0.5474228490122541, - 0.1468407050288577, - 0.3541439756364462, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.057839265628922214, - 0.3252271458267658, - 0.21024820394826874, - 0.32969440084172796, - 0.223844532936726, - 0.35561655921255186, - 0.2803559091230649, - 0.25940434126811773, - 0.12950010078547672, - 0.07003863535601987, - 1.059165966438313, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.16681348386893693, - 0.04601269427644372, - 0.0207445091432104, - 0.07011940332457094, - 0.2037120977283152, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.12363543754802661, - 0.28039689738658324, - 0.2684297954819648, - 0.329231869811411, - 0.4382296665826228, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.003147187408442312, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.07626680036074457, - 0.8221520338022736, - 0.7324403870278046, - 1.2787302368505704, - 1.5933305810168692, - 1.6198624370138168, - 0.6980561577266191, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.18298110550911148, - 0.10056890069661495, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.5660828152171675, - 0.727863913326424, - 1.266614913969334, - 1.3241779793501485, - 1.777172500968637, - 0.7654749785812428, - 0.7052873569007863, - 0.9058052251998259, - 0.8733464751495077, - 1.300934368336553, - 1.468526080260115, - 1.18793729806842, - 1.1991858885684528, - 1.2493881676438447, - 1.3747786033478315, - 1.667557301624477, - 1.4939552084824506, - 1.521295349085257, - 1.4483085254013175, - 0.7125865325827673, - 0.9076486803287592, - 0.7199164295308215, - 0.39487234688083206, - 0.6539523962139939, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 2", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.24999183759836885, - 0.6037586825859343, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.2923807993150283, - 0.13057316999913074, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 3", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 3", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 4", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 4", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 5", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 5", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 6", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 6", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 7", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 7", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 8", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 8", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 9", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 9", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 10", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 10", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 11", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 11", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 12", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 12", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 13", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 13", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 14", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 14", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 15", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 15", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 16", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 16", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 17", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 17", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 18", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 18", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 19", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 19", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source traces", - "showlegend": true, - "type": "scatter", - "x": [ - null - ], - "y": [ - null - ] - } - ], - "layout": { - "annotations": [ - { - "showarrow": false, - "text": "\tBurn in: 4000", - "x": 4000, - "xanchor": "left", - "xref": "x", - "y": 1, - "yanchor": "top", - "yref": "y domain" - }, - { - "align": "left", - "bgcolor": "#ffffff", - "bordercolor": "#000000", - "borderpad": 10, - "borderwidth": 2, - "font": { - "color": "#000000", - "size": 12 - }, - "opacity": 0.8, - "showarrow": false, - "text": "Total Site Emissions are
the sum of all estimated
emission rates at a given
iteration number.", - "x": 1.05, - "xanchor": "left", - "xref": "paper", - "y": 1.05, - "yanchor": "top", - "yref": "paper" - } - ], - "autosize": true, - "shapes": [ - { - "line": { - "color": "black", - "dash": "dash", - "width": 3 - }, - "type": "line", - "x0": 4000, - "x1": 4000, - "xref": "x", - "y0": 0, - "y1": 1, - "yref": "y domain" - } - ], - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Estimated Values of Sources With Respect to MCMC Iterations" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0, - 4999 - ], - "title": { - "standoff": 20, - "text": "MCMC Iteration Number" - }, - "type": "linear" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - -1.4706977669919477, - 28.006201321015848 - ], - "title": { - "standoff": 20, - "text": "Estimated Emission
Values (kg/hr)" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQeYXkXZv5/t6YWE3ksg9N5Biog0PxTk089OERUrRVGp0kEFVERRQAU7INKbFOkQeksg9E4SEtKz/f+/n3dnmT05bz+72c3+5rq4gH3PmTNzz5w5z/zmmWdqOjs7O01JBERABERABERABERABERABERABERABEQglUCNxBP1DBEQAREQAREQAREQAREQAREQAREQARHIT0DiiXqHCIiACIiACIiACIiACIiACIiACIiACBQgIPFE3UMEREAEREAEREAEREAEREAEREAEREAEJJ6oD4iACIiACIiACIiACIiACIiACIiACIhAZQTkeVIZN90lAiIgAiIgAiIgAiIgAiIgAiIgAiIwSAhIPBkkDa1qioAIiIAIiIAIiIAIiIAIiIAIiIAIVEZA4kll3HSXCIiACIiACIiACIiACIiACIiACIjAICEg8WSQNLSqKQIiIAIiIAIiIAIiIAIiIAIiIAIiUBkBiSeVcdNdIiACIiACIiACIiACIiACIiACIiACg4SAxJNB0tCqpgiIgAiIgAiIgAiIgAiIgAiIgAiIQGUEJJ5Uxk13iYAIiIAIiIAIiIAIiIAIiIAIiIAIDBICEk8GSUOrmiIgAiIgAiIgAiIgAiIgAiIgAiIgApURkHhSGTfdJQIiIAIiIAIiIAIiIAIiIAIiIAIiMEgISDwZJA2taoqACIiACIiACIiACIiACIiACIiACFRGQOJJZdx0lwiIgAiIgAiIgAiIgAiIgAiIgAiIwCAhIPFkkDS0qikCIiACIiACIiACIiACIiACIiACIlAZAYknlXHTXSIgAiIgAiIgAiIgAiIgAiIgAiIgAoOEgMSTQdLQqqYIiIAIiIAIiIAIiIAIiIAIiIAIiEBlBCSeVMZNd4mACIiACIiACIiACIiACIiACIiACAwSAhJPBklDq5oiIAIiIAIiIAIiIAIiIAIiIAIiIAKVEZB4Uhk33SUCIiACIiACIiACIiACIiACIiACIjBICEg8GSQNrWqKgAiIgAiIgAiIgAiIgAiIgAiIgAhURkDiSWXcdJcIiIAIiIAIiIAIiIAIiIAIiIAIiMAgISDxZJA0tKopAiIgAiIgAiIgAiIgAiIgAiIgAiJQGQGJJ5Vx010iIAIiIAIiIAIiIAIiIAIiIAIiIAKDhIDEk0HS0KqmCIiACIiACIiACIiACIiACIiACIhAZQQknlTGTXeJgAiIgAiIgAiIgAiIgAiIgAiIgAgMEgISTwZJQ6uaIiACIiACIiACIiACIiACIiACIiAClRGQeFIZN90lAosReOqpp+y0006zNddc0374wx/a2LFjRSmFwIwZM+z666+3u+66y0444QRbe+21BwSnuXPn2u23325XXHGFHXnkkbbVVlsNiHL3dSEXLFhgt956q1199dX29ttvW1NTk2244Yb25S9/2dZff32rqanp6yLpeQOIAH3nt7/9re244472zW9+04YMGVJy6dva2uyJJ56wv/3tb7b66qvbd77znZLv1YUiIAIiMNAJzJo1y8466yx75ZVX7Pjjj7dNNtlkoFdJ5ReBfkdA4km/axIVKI0AH4Sjjz7a3njjjYoAnXnmmb0+2f3FL37hogCpL55XEYgleNNLL71kF154oT3zzDPW0dFho0aNsnPOOaeoePLII4/Yj370o7wl32+//ey73/1u6u9M4HlmMhW6J3ktfe/3v/+93XPPPbZo0SK1b4E+NH36dDvjjDNsn332sY9+9KOGUParX/3KHnzwQaurq7MTTzzRdthhh4K98M0337S///3v9tBDD9kHH3zg962zzjq2xx572E477eT/z+T4kEMOKWtivQS7/oB8dDyeJSuwzTbbuPD51ltv2Q9+8AObM2dOah2POOII+9SnPtX9G+/Pqaeeag8//HCP61dddVX7+c9/bkOHDu3+vdTxgYxaW1vtqquu8n/oM6Ry3vFCDcS4VaiO4d7hw4fbCiusYFtvvbXttddetvLKKw/IdlehSyOAkP7444/b/fffbwjrJPoA37R11123tEy6rqLP8o178cUXe9wX3rM0AbGzs9PeeecdF/T5Nr3++uvW3t7u4+NKK61km222me25557+fWUspYx77723TZs2za677jp7+umnbfLkyf4tJtFnv/e97/n95aSbbrrJzj333MVuKWQDIXI+++yzdttttxnf9/fff7+bH6Ln9ttvb7vvvruNHj3a/vznP/u3ZI011ihYrHxjS3xTIZ7l1Lk/XxvbS1mNgf25viqbCCwJAhJPlgR1PbNiAhgAF198sd14441FDWQM6vvuu88nbxgmve0pMGXKFJ8cyvMk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cdhctDciCW1CPyYxFuKtyjeZOpTTHrH3Tr73NMkzS/un0Lcwbatr1jZboXZNPp/3DXGN8YBywB9bloUtvkNJAbDQ2Mx3EZsp7TsYeLPwAR94M26Fbzp2FkIN3qrltHUxO0a/i0BvE5B40tuElb8IiIAIiIAIiIAI9DGBUgLG9nGR9DgREAEREAERGNAEJJ4M6OZT4UVABERABERABERgcQIST9QrREAEREAERCBbAhJPsuWp3ERABERABERABERgiROQeLLEm0AFEAEREAERWMoISDxZyhpU1REBERABERABERABiSfqAyIgAiIgAiKQLQGJJ9nyVG4iIAIiIAIiIAIisEQJJE9oO/bYYz0gpAIzLtFm0cNFQAREQAQGOAGJJwO8AVV8ERABERABERABEYBAsVNHCp2CIoIiIAIiIAIiIAKFCUg8UQ8RAREQAREQAREQAREQAREQAREQAREQgQIEJJ6oe4iACIiACIiACIiACIiACIiACIiACIiAxBP1AREQAREQAREQAREQAREQAREQAREQARGojIA8TyrjprtEQAREQAREQAREQAREQAREQAREQAQGCQGJJ4OkoVVNERABERABERABERABERABERABERCByghIPKmMm+4SAREQAREQAREQAREQAREQAREQAREYJAQkngyShlY1RUAEREAEREAEREAEREAEREAEREAEKiMg8aQybrpLBERABERABERABERABERABERABERgkBCQeDJIGlrVFAEREAEREAEREAEREAEREAEREAERqIyAxJPKuOkuERABERABERABERABERABERABERCBQUJA4skgaWhVUwREQAREQAREQAREQAREQAREQAREoDICEk8q46a7REAEREAEREAEREAEREAEREAEREAEBgkBiSeDpKFVTREQAREQAREQAREQAREQAREQAREQgcoISDypjJvuEgEREAEREAEREAEREAEREAEREAERGCQEJJ4MkoZWNUVABERABERABERABERABERABERABCojIPGkMm66SwREQAREQAREQAREQAREQAREQAREYJAQkHgySBpa1RQBERABERABERABERABERABERABEaiMgMSTyrjpLhEQAREQAREQAREQAREQAREQAREQgUFCQOLJIGloVVMEREAEREAEREAEREAEREAEREAERKAyAhJPKuOmu0RABERABERABERABERABERABERABAYJAYkng6ShVU0REAEREAEREAEREAEREAEREAEREIHKCEg8qYyb7hIBERABERABERABERABERABERABERgkBCSeDJKGVjVFQAREQAREQAREQAREQAREQAREQAQqIyDxpDJuuksEREAEREAEREAEREAEREAEREAERGCQEJB4MkgaWtUUAREQAREQAREQAREQAREQAREQARGojIDEk8q46S4REAEREAEREAEREAEREAEREAEREIFBQkDiySBpaFVTBERABERABERABERABERABERABESgMgISTyrjprtEQAREQAREQAREQAREQAREQAREQAQGCQGJJ4OkoVVNERABERABERABERABERABERABERCByghIPKmMm+4SAREQAREQAREQAREQAREQAREQAREYJAQkngyShlY1RUAEREAEREAEREAEREAEREAEREAEKiMg8aQybrpLBERABERABERABERABERABERABERgkBCQeDJIGlrVFAEREAEREAEREAEREAEREAEREAERqIyAxJPKuOkuERABERABERABERABERABERABERCBQUJA4skgaWhVUwREQAREQAREQAREQAREQAREQAREoDICEk8q46a7REAEREAEREAEREAEREAEREAElkICW2655VJYK1WpWgKZiyfz58+32267zT72sY/Z8OHDqy2f7hcBERABERABERABERABERABERCBPiMg8aTPUA+oB2UqnnR0dNikSZPssssus9NOO83Gjh07oGCosCIgAiIgAiIgAiIgAiIgAiIgAoObQBBPHn300cENQrXvQaAs8eSDDz6wiy++2O666y5rbm7Oi3LVVVe1n//85xJP1NlEQAREQAREQAREQAREQAREQAQGFAGJJwOqufqssCWLJ+3t7Xb++efbzTff7IUbN26cDR06tEdBuWbatGm20korSTzpsybUg0RABERABERABERABERABERABLIiIPEkK5JLVz4liyezZs2yo48+2tZcc03/97Bhw1JJvPLKK/bLX/7STjzxRHmeLF19RbURAREQAREQAREQAREQAREQgaWegMSTpb6JK6pgyeIJgWBPPvlk22effWy33XbL+zAFjK2oHXSTCIiACIiACIiACIiACIiACIhAPyAg8aQfNEI/LELJ4gllv+WWW+z999+3z33uc3mr0tLSYlOnTrUJEyZYY2NjP6yyiiQCIiACIiACIiACIiACIiACIiAC6QQknqhnpBEoSzxpa2uzf/zjH7bddtvZ2muvnUr03Xff9XgnP/7xj7VtR31OBERABERABERABERABERABERgQBGQeDKgmqvPCluyeMJ2nH/9619G7BM8S9Zbbz2rra3tUdAFCxbYI4884vFQdNpO77Xhxz72Mc/8tttu672HDJKc58yZ4/21vr5+kNQ4+2p2dnba7NmzbcyYMdlnPohyxGuvtbXVhg8fPohqnX1V+VY1NDTI87FKtJyuN3r0aKupqakyp8F7O0H06Y+jRo0avBAyqPmiRYuM70zykIIMsh5UWcjeqb65Ze9Uz3Ag5SDxZCC1Vt+VtWTxBCMAQaSUCbuOKu7dBpR4kh1fGRPVs5QxUT1DcpB4kg1HiSfZcJR4Uj1HiSfVMyQHiSfZcJS9Uz1H2TvVMxxIOUg8GUit1XdlLVk8oUj33nuv3XPPPXbQQQf5UcXJxLYexJX//ve/dtZZZ2nbTi+1o8ST7MDKmKiepYyJ6hlKPMmGIblIPMmGpcST6jlKPKmeocSTbBiSi+yd6lnK3qme4UDKQeLJQGqtvitrWeIJxtRzzz1nO+ywQ94S4r7/+9//3r761a+6y69S9gQknmTHVMZE9SxlTFTPUOJJNgwlnmTHUeJJ9SwlnlTPUOJJNgwlnmTDUfZONhwHSi4STwZKS/VtOcsST/q2aHpaPgIST7LrGxJPqmcpY6J6hhJPsmEo8SQ7jhJPqmcp8aR6hhJPsmEo8SQbjrJ3suE4UHKReDJQWqpvy1mRePLmm2/aH//4Rw8Ou3DhQltllVWMCf2+++5rI0eO7NsaDMKnSTzJrtElnlTPUsZE9QwlnmTDUOJJdhwlnlTPUuJJ9QwlnmTDEI/xBx54wDO77777CnqQZ/PEpTMX2TtLZ7vmq1Ul4slNN91kxx9/fGqWl1xyiW222WYVQST207nnnmtXXXWVnXbaabb33nv3yOfVV1+1H/3oR/bCCy/472PHjrWJEyf6NZTnsMMOK/vZTzzxhB166KGZ1IW8Lr74Yi9bqQdMwPLxxx+3o446yoYMGVIRt964qSzxhEHj5ptvtl//+tfW3Ny8WHmIKM8RxaGz9UaBlae5UEUqJXiveBUmIPGk+h4iY6J6hhJPsmEo8SQ7jhJPqmcp8aR6hhJPsmG4NIsnhAs4+eSTbcUVV7QjjzzST1vrrSR7p7fI9s98KxFP7rrrLltjjTVcIEC0WGmllXzyP2XKFK9kPvGEby7XbLfddnlhBIHkS1/6Ug/xJAgr++yzj+eP6HDDDTe4UJEmnjz44IMurJQiYqQ9EyGkUF3SKjBoxZOnnnrKxRESE/iPfOQjttpqq/mRxe+//77deeeddvfdd9tJJ51k66yzTv98E5aCUkk8ya4RJZ5Uz1LGRPUMJZ5kw1DiSXYcJZ5Uz1LiSfUMJZ5kw7AU8eQXv/iFXX/99akPbGpqsjXXXNM9zHffffd+dRT8khJPeO5xxx1nH/3oR+1Tn/pUD25MZv/617/atddeaxymwe+f//znF1s9z/q6bHqLcgkEKhFPwr18Q2PxpJjnBPFC2cmR9CiJWyOfeBKeFXuXXH311bbbbrstJpCQx+9+9zv7wQ9+ULF4Mth7SMmeJ+Go4nfffdd++MMf2nLLLZfKjpN2Hn30Ufvud79rdXV1g51vr9Rf4kl2WCWeVM9S4kn1DCWeZMNQ4kl2HCWeVM8yS/Gk84OZ1jFnltWOHG01Y8dXX7gBlMNAOKq4c9YM62xrdaq1tE9973k/VNJ0pYgn5IuNf8IJJ9jMmTPtnHPOsbXXXtv4xk+fPt3+/Oc/2y233GLbbLONzwOGDx9eSVEG9D3B3hkxYoRPQJmgHnHEET3Ek5aWFt9egbhyzDHHGMITJ5DW1NT04Jb1dQMabD8tfG+IJ4gkv/3tb73GYRtP/Levf/3rfqotwkvYaheuK+Z5wpae7bffvntrTHKrz/rrr9+9tWfddde1M88808sRb/fJtx0IbxfyxlEiiIVBtMGBgjKffvrpduCBB/o/eINxMi/eL1zHM0g8k/8P24GoL4fMJLlwLdeE+vD/gUnyb8nn4+lDCtucQl3xCAoplB3GIT/+m2dQJtoI7njnJPmULJ7wEDxKyBD4+RIVuOCCC9xFSfFPemc0kHiSHVeJJ9WzlHhSPUNywJBqbW0dlAZpNgRzueio4mxoSjypnmNW4knro/dZ+8vPe4Hq1tnAGjbP79Zdfan7Xw4DQTxpvuEf1rlgvsOrGbOMWXOz1U/cxOrWyW8v9yXpUsUTWJ966qm+fSCIJ6GceFCcd955duutt9r3v/9923PPPfuyCv3iWcHeueeee2zatGnGv/fff/8e4gmLyHBi0rjRRht5uYlDgeD0ta99zT7+8Y/737K+rl8AWsoKkbV4wtaVs88+2wWEyZMn22WXXWY/+clPbMGCBf73sB2HbTf8hgCBIEJiXo24yUQ+uW2H32MxgP8PokQsuCAS/OlPf7KpU6d6/8QbBoFh880397n9T3/6U3+3Y5EhjqUS5xuaOsR44Xlbb721Cx6IJ3ioffOb3+wWiEKdqDthJ/Cy4ZnEYMKjjfHm8MMPdy5swWP7EYLKk08+6WW94oorXMRFrLzwwgu7mSDmBMGDPOEWRKHgYcMWph133LFHvSgPCbGI51D28Ez+jqADU57FM0mhjCWLJ7NmzbKf/exnrqIShCZfeuutt7whqEih65ay96tPqyPxJDvcEk+qZynxpHqG5CDxJBuOEk+y4SjxpHqOWYknLfffbh1vveYFqltjgjVsvXP1hRtAOQwE8WTRFZcuRrR+461cQOkPKQvxhHowUTnjjDNsv/32cw/zwZawd5gAEzPi05/+tB177LH2iU98ols8CeIT4yfeJmERmcM1mCQzJjAhxjMfkSqr6wajF1Bf9L2sxZNYDECUQGiIvRuSokjwxkCMKCaeBB6x2JGWd1yG4BGCuBdSMqhtUnyJPU+4JxZFgkcJeZCoXwhum3ZdHPiWct1xxx0ufATxJpSVLUYIF5tuumm3l0oQVfAWCYJJEKTIY4UVVnA94u23384bpDb2zIm9gIKQkhSOqBPXlSye8AAUqc985jOG+0taQpVG5XnxxRd9UNDL3DuvtsST7LhKPKmepcST6hlKPMmGIbn0tnjSuWCedc6cYZ3NC61m5GirXW6l7Arfj3KSeFJ9Y2Qmntx5g3XMeC8nnqy6ljVst2v1hRtAOfR78WThAlt0/d8XF0/W38zqN9qiX5DOQjzhW89khhXgsFUljpMS/vbSSy95PAXsK7b4sA2I9Nhjj/kq+uqrr24777yzT5I23HBDO/jgg/30zuDRwmItnht4sh9wwAF2yCGHWH19fd55B2IGsUWWXXZZ+/a3v+0xRp599ln797//bcsss4znf9FFF/lq9/LLL28nnniib0ciUSdW4jkMg/IQ16VQmjFjhh+aQV0p09FHH91DPGEBmZV78iceSohzwXPOP/98mzRpks+lSFlet/LKK/eLfra0FWJJiSdh0o5AiaBAKiSe8L2ORY0gCgSPkthbJU08SfNkCW2Zb6vQa6+9ZqNHj/atRUG8KFU8QRwJZQx1411JPqsa8SQIMOHEoKQoFHsBMTbEniexeHLNNde4x1gcs6Zk8YTKsdeRAYbBAteYkDo6OgyIbNchqCxK02c/+9ml7R3qN/UJ4slNvzjHakaNsbpVCg/2/abg/bAgEk+qbxSJJ9UzJAd5nmTDsbfFk7bnHre2Zx/PTWTXmmgNW+6QTcH7WS4ST6pvkKzEk+abr7LOubO9QLUrrWaNO+5RfeEGUA79XTzpnDndmm+/bjGi9etuZPWbbtMvSJcrnrCCyyQ/iAxz58518eHSSy+1tdZay7fxE8+AhN2PtwcQV6kAACAASURBVDkiRYiFgADChI1rEE/4vrGwesoppxgTfSYnb7zxhv+NvDihhGC1e+21l6233nq2wQYb+Jzj8ssv9/t32mmnVI5sdyAf8kWoYbLJ9lfmJOTLoRasVnOCCWXAG4Qy4f3BAi/2C3UidgnbJhBz8iVEGYLAbrzxxr7NgTomxROEI0SRXXbZZTHPHISm22+/3Z/T2NiY6XWFwin0iw44QAuRtXgSe1/EXhLgiQWOcB2eTRzvG07sybdtJ2zZYfsL21DiALIhZkcQSGLxhOeGY5XxAkFQQHRI27YTCyyMyTfeeKNxug+iTbniCVt12EZD2dgW84UvfMHf9y9+8Yu+ZRCRMcRBwcOEMSB4s6Rt20nzPKFuPIdAzfEWndAVk1t10sSTZCDecMpQWeIJRimKKwMog8/QoUN94EGJDUcXM0AN1kBSfTU2BPHkusP/z2rHL2+Nu+3bV49e6p4z7/VXrH7y42YtzVY7aqw17rLXUlfH3q5QReJJ8yKzpv5zZntvMyolf4knpVAqfk1viyct995mHe+8kRNPVl3TGrbbrXihBuAVEk+qb7SsxJNF1/7VjDET8WT5la3xI7mYCYMl9XfxpOOtV63l/tzqcJxqhg23pn0/0y+aqVzx5OGHH04tN6d34N0RxzQMniZMgIJ4EravkAkTH1Ztg9gwYcIEFw5ibxI8TxBA2BIU4oSwCs11n/vc5xY7zSYuHMIO8w684sNWovB8ArvGz2IOw6EWP//5z7tDC7AAzByGOU2+hJ3DCjTXbLvttj7pSxNPqAeT4LRtTcFLJw7SmdV1W221Vb/oZ0tbISoVT5LxR8K2G96DtICxycCuxPwIwVIRTvDYIoAp8+9kUFiYB88T8o/FEN7XEDQ1BEUN24WS/08+8TYa/j94baS1azKwLeIK9hflo76Ik4gaPAfPDd5ttgdx37Bhw+z+++/37W8hH0SUp59+2q+Jt/2EcpFPvoCxeL/wTLbohP9mW92VV17p5UkLGBtitYS6cQ1iEB5i8fXx1p3QjmWJJzwAAx+1CSAMWCGxf4+CMngWO45paXu5+ro+sXhSM3S4Ne3XPz7Ofc0hi+fNm/KM1T/dZSQ0NtqQ/b+QRbaV5UGk/rQI/fn+nvaUtjazPO6tlRWq+F2ViCetj9xrHR+8b/XrbZzznKqpKf6gpfyKXhFPor7TOW+O1YwYtVRSbH3wLmuf/q7Vjh5r7WPGWW2NWf2oMVYzfKQLzJmlRQts0XUfuuezZaeg4NreZlaX7m5eUpmWwPscylVUPKm2biUBqPCiflK2zMSTKJ5G7bjlrHH3/SoEU8Zt/z82g/WTExP7u3jS/uJz1vr4g4vDrauzIft91qyxqQzw0aUZ9+NSPG1ddDjpRJvy7LN26r6729prrWmNe37KJ2dM3PC8ICEQICKQyhVP8ARJxktBdEBUiIPUpokTaSCDUMIpoEnxJP4b9+Jhct111/UQT0ppHDxkmJThVc8EMZ94gjcB3gIcX5ysY+x5wjOzvE6eJ6W0YvnXVCqelP8k3TGQCJQtnoTK4b72zjvv2JtvvmmjRo1y1z6JJn3T9LF4whOHHHSIcUxe8103Wk3jEN/K07hz8SjobVOe6g5m1vH+NPe8sIaex+t1zptrHdPfsbrV1nZDqvWhu6x+/c2spqHRbOiwXIVbWxe7r+2FZwyXVSY13fuzuY5JcomTe1xha0YvY9bRYa1PPGg1o8d6niG1PvGQT5bq1uyKwdPWam0vP5+7prXFjDJ6+br+u6U59/uEDbuNwvmTn7S6Zx7tzrN2xVWtYeOtrGbI0MKeEbGgkTLB6Zj2jpe7dswy1tnebp0L5/skruPt1z0iPxH4OXrSo/KTusrW/vrL1rjNzj7pC+WnnTpmTrfGbXftLnf7ay9Z3eprm7W1WdvLU7pZ1664itWtvs6HHbG11Y+3tM5Of4aXafxy1jb1udyksq6uO2ZDj/LEXbmtzTrnzbaaMePMFi209nfeyDFvafG/29jxfiTfqNZFVrvsCtb2zKMuiHTXLcqr9bH7rWGTra3l7luMPkdq3OljBneYdc6fY3VrrvfhHS0t1jF7pudbMDUvss6WZo9BkS+Rf+1yK+Y4BGM29oBJ9OPWSffkAjO2tJg1dvUl9kjPnGE1yyx+VGjHm696HIy6tROnK2AAd5qz786nK8/211/ydqgZNsJaZr1vbXX1NmzUaH+f216aYg1bLe6qzLaRzkULrWGL/NtF2iY/4e8p20s653xgDVtsb4tuvMKadt/P3yNS5/y53h/rJmyY64vDRnj52l+aYnVrT8xhXLggN/nvqj/9uKam1oz3o1CiX774rNWvPsEMXWxI11jBe8P9TMriduh+qRcfS+LHOHvKH03q6Ect99yae88TqZSV347p7xrX+TsXjxuJvBgL21953ngfQ+LI2MZtd7Ea+lPwpGpttfY3Xra6lVe35juud3HF2ZK68m+b/KTVrzHBx9C2556w+gkbdI2NDe7VwvtAoh3h5UEnW1utc9EC7+e0HWMp8S8WS1zT2pr/XYjqSF3wnqH98Wiwjvbud2P2jBk2asxoq6Hv0oZdwi7bR3jPnENLs9VvsnWuP82e1d232l+abHUrr2GdrS09yhFfw/vYMeNdq99g88Wq4N+jccuZlSIcR/2I94lvVfMtV1vj1jtZx5wPrP3Vqbn8a+sW89jwbwyCIu3XvMja333L6lZcxVqffNjf/c7587wNeA8pezvjN+8TWzG63gGE4LoVV7XalVe3zg/et7ZXp1rDZrnTcFLFk2Jed9Sns9M6Zs2w2hVW8T6z6N9//pDR0GE25OMHLvbN5TrvVxM29HL6cbnWaTXLLOt5eJ0YT9roRwtzfZZ/Fi2wjvnzcryjPtr64J0+NoS/U++2qc9aw5Y7pr4n3i+GDe8hFvKt6+R4ZeoRJewC+o1f3/XM1qceWXwLXNc42TxntnU0NOY8A9LGjShvRGL4hW+B9yXamP6bIgZRPt79jnfetJoRI61m2Mge43131gsX5L5FXXVpe/5pF/9JbNmhL5HgHf6b//fTkSZu4scY1zBGpAgpbc8+ZnUrrZY7grqrzzMuccpS4/a7+7vOQlnr4w9Y/XobWft7b/t3KcRTYRzH7qMvtz56v/dPruVbG3t4BvGkbs4Hqd8wyosQ8ZOvHWrPv/2unTiyxdYcN8ZG/z63JantmcfswdfftjMuuNCWG7eMnX3KT2z5lVe15y69wE647T5fPE16ntBvjj/qezakod5mDx/j21w2XmG8HXnGOcaYCnPSwzdfb2f//g925jcOs5WfvNeGH316zrPju9+x/fbayw743OcXH+u6/lKteLLwD+fb0M8fkWMf+mTcp2bOsF9e/hffVlQoIf7gMfD9I79nm221tdeVheUwFuDtwkp+d8yTlOsW3HSlXfD0yz2v+/73/RSQQvnFMU9aH/6vj+e8u94nJt3jdiH2GltNQ2p/4Rmri2zqxerW0mItd99kjXvsb823Xm2N2+zi3x7GOlLH6y9b7XIrdH/fPah1TY1vLVxaksSTpaUls61HxeJJtsVQbuUQSIonGHkdH8y09qnPdmeDQcwEqKZpqLkx0dBg7W++ZrXLLp+bAL/xigegY4LbiTHHJGnoMKtbdsXcRBWRAzHihWdyx+81NlndKmvkjkvkY1BbZw0bbu4GSusj91n9Bpv5xx+DEqOL/BlAuydnC+blnldfb4077JF77qwZbtxiyDFhq11hZTd8a8eOc0PP/zZuOa+bMQHFMBk91p9Zv/o61vLgnVinVr/+pla7zLKGmOID+3Ir5rwaJvL38dY2+SkXQ8iLyTsTOerCte0Y/Avm9cCPkcIHnQkMk6DaEbkJORNmDM5ceSe7kVg7ehk3ctmD3v7eW15HjB433hCX6htcOMHQoX4d777pZWbSw8SC4JNwRkxpf+1l65w9M1eWIUOtbrmV3LgkPwxAr/e6G+YM+ilPuRHLxMsntGPGueEO84aNtuy+r+XBu5xdzaixVjNkiAsUCFLdz+naesDkru2VF6weUWTIUK8n/zi/F6f4BALO1Kft6UdccOn4YEbOgEMMefkFq104L2cY+oS7zg11ys4kqvXZR50jkxva0OuNWMGcbMMtvM1a/nuz1Y5b1hp3/rgLMJ0d7b7Pv+O9t72/UC8XWWD8/jQ/fYL95LRj62MPeB+AjwtKU5+12uXhN8LFHgxuF09ogxnTrGHrnVzgWXTNn70N3RCg3UIfaxzioiF50L51K65m9Rtv6RNbjHwmxuHECwQv+GAken022donbI3b72ZtL042hC4Xzpgorr2+dcybYx3vvWWN2+1mLZPucVGlfq31rO3dN13jatpoC2uZdLfzqZuwQU5sW27F3Lv21CSf6JLI09mNGedGtottNea8YFK/3ibW/ubL3l984oDxPnyk1a2xjnUuXGjtL09xIZO+0TmXstfk3vFXXsgZR+3tuf7a1fc758z2PHxi39bmYwn9E468rzXDR1jNkGHWuXCBjxtM2DgZBI6UrX6tid7+lIexqf3VF/z6hm13cQaMQy0P3OHjCEa1P2v8Cv4ukid1gzX9mb7lk/2WZr/Hxco8CSGZiQT90N/7jg5vk5rhw61u+ZWt5ZH7uscXq63N9XsX62p8sgRvRAt45EsImcGrB4GWdwA2PnYOHWaNW+1src886uOf50vfWnl1q1t2BR+3XJyqq/eJb9tTk3IT1qHDcvVqaXZe9D3KXlNb5+1Gf3OhuKHB3xPuZWxqefhuH+98LKXfvT/NJ/61q6xu7S+/kBtv1l7fhd3mO67ztqR/0L98/Bw7zjpmvW8dw0ZY7fw5uUkoYt12u7lo3nLff3wSGMRPn0x2dFjHtLdzx7K2tXn/R2ClL9WttpbVLruiM2Tc4p2kz7HVAUY+xr8/3d9d/24sv7K1Pf+Ut33H7FlWv1purHSxGDmA7xmCbnub93WEZd5Hxr7WB+7MfZ/ytFXTRz+RE1ReezE3/s563yedPkZ3jUe+gNDamhsrZr3vogpHA7c+/WhuctWV4MsYhWjq72PX947/ZittTV2dv9PNtfU2ZNECH0soW9tzT7qgzXjVsNEWuQUCF2Wn+ze67aXncosgI0b5GEJ9F4unQXsxTjPxRFxbY4ILP4h7fJtdBOs6Mtf71IuT/XvLZJvxvHb4COtYMM+FP1+EIHbaGutaywO3d407G+bsif9/Igh/p9+2vfic8X7Ur7NBt/hO3/Cxacwy1vrQf/2ZjR/Zq1scRTykb8KyZvio3DdqhZVzMYMam6xxq538e9Dy0F0uSrto64LcNt6/cv1leO494FnLjPcxADGRbwWiNOMY/dz7zgqr+DhC2V1MoJ/OnpV7vxuarG6lVb2/MO7Ur7O+j2XYBB3vvuVtGb5d1NH7xaKFXme+DbxDCCDeJnNm+30+SWScfO+t7n7BN8m/2W+/3nO44NsY7JXxy/m7RFl9vPTv+AIvE98rxqDwfvm7ibDb1pIby6P2hRcLSIwt/J2xGC+Y3Ds1zetH3/XyvPaizb/5X1Y3YpS1T37CBT+3Kdbf1G2txj3+x9/RhdPfszN+9web2lbj4ska9Z027Fsn+Lgw79Tv2Qe1jfaTlpE2e958O3WXLW2VN6faK+9Nt1MXjbBPjx9qn1hnVRv6v4da60qr2yknn2ztk5+0I8fX25DmBTZ/sx3s+CdfsQ3mzbBvfXp/X/AbdvCR3pb3nvID++W8Bjtx6AJ/5pADv2Kzh42yYy+4yPZsarP9d94h115PPOj9prOtLfdNX25FWzhnjv308Rds3LxZdsSOW1jDFjvagnfesLNuu9eWGzPavrHlBt3C2fVT37AbHnjIzjn2aBs1c5rzm//Ln1jDNrt0i4N19FcEdUTv+npbePmv7bWVJ9icjbe15pv/Ze0jRtnQTbayeR/Msj/c9B/bcmSjbdE6xzb5zo+s7r5b7Zy7HrbW9Ta2H2+wmi3zP5+1mqYmmzftPTvpl7+2ITVmR42r9W/Dz555zVpWXtOOXabGxu66p39HZz/2oP20dnlrWjjXvr/FRB+Tz1s0zBa2tNgJ++xmY7beyceOmbddY6dccZ0NGzfefnTgftbIe7bsCt6v5v3sx7nxfME8F3Jb77/dmj75BV/M5F0dcdSptvCvv7WWu26yYYd/3zoXLfJ+3frs4973+F6ySIOd5/beamu5UOKpaYgNPegQz3fuKd/xcX7I/p+3hX//nbW/8KzVb7SlL9J0zJ9rTR8/wNpffdHaX3/RbR++eW1PPGjtb75q2KYjT/tt3m9qf/lB4kl/aYn+VY7MxROiY3OkMZG2dVRx7zR2Ujzpnaf0Yq5NQ9yw9IlFMoUVbYwWpSVOgAmxG5AFJo59WsiuiU0mz0RsSPFWyCRvMmGizMR0aU9M/FkhVhpQBLrFnQFV6ioL2yUiVpnL0nl7NCmvtoIIJIgmPtkvltLaJMOyFHq8iwyI3hl+B3zRYNYMFyT6U0J0aJ/6XNEiLeo0O29eYw/xJL7phbZaO31ug42oNTt+RLOtWGf2eluNnTK30T45tM32G5IT7hZ2mv18XqPhd3HkiBYXDT7oMDt5bpNtWN9hXx3+oRDJ9U+01ubEky7Bhr+F6xFP9unKN60C4VnL13Z25xvqMT76G/feuKjObm2ut5NHNtuY2lxubZ2d1txpNpz9nmWkfOW7s7nWLlvUZMcPb7a16/9/pdna1FZrp81tsC8Na7XdmnJ/8+sWNNjxI1vLu27IMHtp3qLF8iuj6H1yqYuZnE7XtbDk3nqRbT/mn/f2STmqeYjEk2roLb33LiaeEL/gnnvu8RpzlFhNVywC9uNz9BfucfkSEa6JJM1WHgQUiSe903EGvHjSO1iUqwiIgAiIgAiIgAgsMQJsU8aLxr3v+lHqmP6etb36gnWEbWx5yjato8bOnttoszqsh5DR2pkTOC5d2GgzO8y+MrTV9mpq8znCvE6z0+Y0WqvV2DeHt1ib1dj9zbX2fHuttXTW2NeHt9hKtZ32dkeNnTm30daq77Qjh7fY8C7xgnnH1Yvq7W+LGu07w1psp8ZcvpPbau2suQ22dWOHHT6s1RrzaBvvtOfEm2VrO+37I1psZK3ZtHazU+Y22diuv42qNWvpNPvdggab1FJrPxzZauvXd1h7p9klC+rt7pZ6F4MmNrBPsbSUTzyZ39Fpv5rf6Lt1vzO81Zqtxn4zv96FpG97vXMVyfq60krdf66SeNJ/2kIlKY/AYuJJCNBENnE06rCnMF8E7vixq666atnBmMor9uC+Op94wn5Z3MA7WPHBtbm21l1Nkwl3YLaU4PaIK2+x5Nt/cPV8aUou3yzS0GFWiytqlziHC3bn7A8+dJ8Pz2CPMNd0tOdisvD/XacO8Hd3ew2qdlyuhgbfzoDXhLsNRy7V3Zc1NFpH01Cr7exwt+VcPp251TJiNOCq35XcBZLnEleDLTBNTe7+28Mjo7Ext42HrTeJlXjfGsFebbZOjMi5L3uqb8htM8ItmW0KtB+M2aYQJe7HhdrbK6He+3YBfktpa1bWYMBK4GIrYWxP4Nldbufdj2PVr2svfI9CJNzhcZXG9Z1rO7u2vJTaNbye8A5tWeqNzqze93+HozvTbvVAobT5+++5IduDJfwpd+LZdWsRa6Um5+687PLW/uLkHvfVEsNh3hzrbFlk1kz8mK5tHLi2E6elM7cdJHbt7+4/3f3rwyy7yzj9ne6tON2/wp/+kkxx/y+HWde1bK8jHgZbUdjaVtKKK1ve6P9sc+jaMpR8tO/V5+0J4wlb1tjiwFYI6kLfYSuLb5FYkHtuiJmU6OsVVMtvYVsdW6EWPnKf1VIO4m2wPTBPmXuMJWTAVhfc3plcUPa6Ot+iwHYLysy+cRLvFHEMiP/U3b5jxvkWoI7Z7/uWI48RRepod1fweJzw7UaMd2xLI4bLmGXc1TpsG/O6sI1ipdWsfdrbi/XfYnzIj/ZiG0OlybfAWI0NXXOCtbIlLfEOLdb+cGYrXj4PpK5+SzwItgKynScw8S1KbI14f7q75eNG39na3L1KTt+q8d9zMZIKpq6tT3xP2CLW/Y7ne29q63LblKK8fXwu8J2jjHXLr5TbbhUl346YMgaHS8JWCvo93z62H3YnvOBqa728vnWlpibXfl1jVPgGs02Lenksowq+xf4d432Lth/1qERdXW5bZ1f8ju6yM5ayNaXLAxH3e49vEKeGRt+657F5eEbX+MhY73F6YjZDhuW2wBKPq0CKx4tO3hNitTD2z59Tkrebe06meL84h66jnxfry9FYzfYg3yJayvetsdHjTNFGfFNb2MYUvhFxPxk7PvfsEM8nX1sU4xLbPSV+FzpmzrB2tgDXmI9Xbte98bK105YtLXbRG7Ps1p6mR49SjGlqsNXbF9lBQ1tt3bqO7sVVLnq6tdYuXNBoczvM9m7CA6XNLprfYGNrzfbfcVubNOlh++O8XPwP0kjr6BZnfj+/wW5t+TCw9p4j623V8cvYJa98+M5vMaTGjhyywIaOX87HYOJ1kBB0Tp/3YUDeVUYMtUM6Z9l5C4d4WUijmhrtO6M77Q8zmu2tji7FhlOA1hpnmy07xv76zIt250Kzk7Ze39ZYYXlrufvm3Bi82tq5raZpNmYRz5j5HWZXLGqw/zTXWYN12r7jh9sn11nFhvCOsTX9kXv9/V7suuVH2QFbbWKNc4ix9IbHqGM7TPK6fUbW2f6rL2fDumKYsTXGt7umJLZT+pbdVdc0TotL/SYS62XBfK83WyZ9Wy/fogLvSu2qa+a2RBODp2vronvc8r4vXOBbZdn+ky9JPCk4/OnHfkxgMfGEAGe33nqrF3nPPffsDnbE/3OszxVXXOHns3OMD0cNxYmgkXfccYcfXRwLL1nWH4V63rx5RsBaEkedcRRZ8JDJ8ln9Na9YPOHj7kHLMLxSTmppvu0aF0p8EsAebmJeIJ50BcVinzL7eNmvPmSvT/s+aIJNsScYoxWDuHGHjzoKDCr2Xjds8xHfx8hkEfdUYm/w8cXoJfgf23GIleB7j7v2STbturcbIMQDIHAVk9q0gJcEfuTehs22tdanH7Gm3fbL7bnv7PgwAGzUMB6QjrgEBFx95jHfP82+5tpxy+eCFxJs9qH/WsO2H8kZW13bgnw/ctMQm19bb0OHDbf6+rpcoDuC8xFYsyvgrp/gMXK0T8Q9TkLTkNxe64ZGD87HnlgMQN+b38U4BHHld9+/vdGWuXghXfubw4TODUCM967gkCHgnu9/XrTQ48gQ2BUjm33r7MNlryiGA4ZZ3ZoTPChgCKaKMc3fCT7p+/Hnz8sZs12JIK2UnTYg8JfvwQ+pvd1aCDI2JhfvgI8scTzYu4oRT/sSdJSYN9STwKjde/U7O23OrFk2/M2XPAaHCzlzZ/v+XY9zw3GN7IPv7LS216a68BBilbTcdaPvkSdOAzEY6EPUmRgQDetv5pMI2HrMhhVX8W0wHvugrt77rAdhbWjMBQTsCtjJRI/yOVfa84Z/uDHgRshLU6zpY5/0d8UnIVOf9UlIw1Y7e53j5PEU6LOTn/AyxrwIFkjesIdZ97MXzPPJN/3e23Ct9XLvJ3vv333LY5zUEXeopjYX64P59XtveQDd2p32tLa5c6zupeescde9fZLgv097x1on3W0N2+7q/a9HcFIMFwKeDh/hcQ3oD20vTfagx9QfwwWDmdgGvLPEUOmREAUIHL3uRr7fHYOOfcrEo2if9m6ODbGNCDrZFWSWSSPjjscjQMgaMSrX7pR1xnvW+vDdVr/JVi5E+KQUUZCYRE9O8mCHPMNjBxD7iP7ZFW/J38/amlygzBGjfSyirzff9u9cQNPxy/t7Xb/+Jj4uhf7nD46CcPpRxS2LrIGyMXYQ9O7+2z3WCxMG6ls7clQutsZzj3v5vc+vvk4ueOrM6R6DAf4EMw7jqk+WW5p9/MOYbiXI47IreByV7oC4KR8NnyQTsPOxB3wcyIl0ucRv4TQg8qQtETQZO7tPCSIWDOUn1sQLz3i8CsZ79qN7zBbi3dAP3p/m8Q24jkTcIMagpj0/6TE0Wh65199hjGgm3x6LxoPsDLWGTbby8ZNn8k7w3n+wcJGNHj3av63EkGAc8Bg8M2f4O+lxoRDNGhpybU08oKcf8Wc37bpPd2BMDxI7YpTHzOB94H3lPUTkZ5zvTojVIbAwwVZfft7vadrzU7m+N29uLiZHbZ017bKX1yEE+vUJ4NtveEDY7sCnCxc4G57dsP6mPq4QXLth4y1dQEQwD8E/PW7So/d57BTiwXj7EmB18+08UCIxqjx+0tuvWdNu+3aPH6zmt7821fsEDMIx1sRDIt4PMQRap71jw7bfbbEgyzyTmCswo5+54NDZ2WOcabnjeo8p0B0UPepfiBcusAwZ6t/A2mWWs46Z03y8YHyFSf0a61rblCdzcZPWWi8X7JV+x1h033+scac9cidUEeyaWDWvvWhNe/yPtb8y1cs1ZI/9re2V5z8MCvzB+7kYUGuul4srMnyk2xfN/7nWnxkCuvt3+YP3nXOIVcOWEbdBEG2Ju0PcrzmzXfSk79SMHGM1DQ0+RtawFbC9wxqIL7JgvjU/fLd1brOLDcXmdIGuMzf+jBnnfQBhk9hGLpjVN/iY6vGUCKpNIN3nn/bTuOrXnNAd0JvxnUmyix0ICqPGWu3yK/oYQ/6Ml3yDPV4KolEI9EpA6Hde93HV+2/zotx7y/cpOlmLODoeU4dxnGD7Tzzo7zXfH57Nu9yw6dbWMWum1a28mpfb46/MnG4Nm25rfBuxFehXvAd844iV07TzXt3BXmlHj3+EcNnZ6WNY7sjkTo9J0Xz7tb5NAhvE7YPGIda04eY9jghOGbKskyDcD97lthgxWEb84OzuILrzzz7WmDQzvrDAMPyYM7z/dycmzl3jY8t9t7vQOPTQo2zBxT+zho239nGDcjfffJUNPeRIaJ1U+AAAIABJREFUf8bCf17ipxLx7Zl/7vH+bWzcZW8fv6gX7eCxuBhvur45c39wsMdhYizwOE9Dh1v9xI0XC04cyrXwsgu8L/Ct4hvqwXaj4L3ehl2B6em7tFHdehtb8/X/8LhNHqB77YnW9spUm//eO1bz94vcJht+7Nm5hSk/UOG/Pi4TH23eSd+yoV84wsueFkC19f47rG6diTbv7GN93Klfd2Mfe4cfeUpuvCOo76gx3VgZhxZe/HNr3POTbr+FQN3hgvYpT9mim6/y2HCL/n25v+/EOBl5zh98LArJD5e49d85Aeeh/3pMk2GH/yA3pr002dvKP6k3/NNa7rzBhn31GBeKGS/4b49HxyEIs2fZsG/8yPvevFO+6+Whvslyk8fCv/zGRv/2an9Gy723+lhOMOOBEFhW23bSRgj9rayYJ++9954999xzxrnR+VJvxDzB6+Whhx7y48WmTJni57HHiWjWG2ywge2///5+dNrSfupPLJ7wsezx4Uo2TCmnFTBQd52g4LfHRxQmjsrDYAuRtn2Aj0+MSekUfjwqgkXaEbx5OlHIMzkIF3xdKTMCSxnPIb+0o/t6sKhijHBR5YOZH65Cl5pX2okf5RwbWezI42J9ouv0IIx7D1RXJBU6qthXOAjCGRkBPU7QKFaWYg8v4ffukzu4NnkyEt4UXR4R+bLy00/Gjis4QU7eG1Y1Fzv9J99pLohXLS3W2tFhw5saF+/H5bS/v8MVHpGb5FMsnwqO0sV4C54qJTSfe7MwMUZ4KeX9dvGkocEaoxOS0k4EK/jsCupVtC7V9PW4PCl9weNLtDR/KBx0FQYBIhZr4jIyKfXTP5InkHS1edGjitMqHGL8lHiiWjFmi43FnAwz54PuE8J61Cc67SdvvhW0Qfubr+SOU09+G7se4qe14BlI8hN73uw+8ax90SKb39LiJxLmL1OB4+UrKG/3N7mrz1B+xMvuE5+6y91zcpar34fjBoJMD4GyQGMR5DgI58XatJLfix5VXMr7mnJNOJ2pkjKVfQ+n9RCQORydnm9s7fpG+Ml0G235oRdoXb0LIMXGTvfwaWjItXd7W+70HU6Nq6lJtXcK1iNx0lzo48FrzwUHxONKErEvuhazEO16nBJY7ESqSp6XUZ7B3hn+3KMuwHefTJcokwv84ZS1QuVNiMaFLsUbJD4tJ++1XXVFUKnjpLY8CeEKsS7txDO/JSqbn6yDiEQiXmHKqUR5n8MYFMbQStpuCd5TrXiC08Hxxx9vl1xyiZ+YNBDSq6++6keRv/DCC0XLHdeP47u5b/fdd7evfvWrmVT197//vTts9BW7UPdidShLPGHQQLgoJE50dHT4GejDhw+3WrwhqkhMJm688Ub74x//6HmWknjuV77yFdtnn316Gs+l3DxArukhnqwxofvUjwFS/H5VzDTxpF8VcAAUppB4MgCK32+K6OJJa6uPnUqVE0gVTyrPbtDeWZF4MmhppVc89ahiMSqbQFHxpOwcB+cNsneqb3fZO9UzHEg5VCqeXH311e5ogKDQ1wJANXwZay+//HI76KCDDCFh0qRJBYUQrj/33HN9zo3AgZhC3NNKxROeyT+77rprNdVY7N64PYplzHHixepdlniS74EIJnPn5vbajRw5smrRhHymTZtmZ511litfNMhWW21lEyZMsJVWWslFkTDBYPsO23j4KEydOtUeffRRu//++/2sddS++OzzYsAGyu8ST7JrKRkT1bOUMVE9Q3KQeJINR4kn2XCUeFI9R4kn1TMkB4kn1XPcYYcd7IEHHvCM7rvvPuP/lconIHunfGYD+Y5KxBO+nRdeeKEdccQRA048SZa9WNtlLZ4gvpD23nvvYo8u+fdy65SpeJI8bQfvkw033NBXSjlZ5957c0dO7bTTTnbMMcdUtXr6yiuv2E9/+lPbY489XM0qdxsOggoCyt/+9jcvy9prdwXvKxl1/75Q4kl27SPxpHqWMiaqZyjxJBuG5CLxJBuWEk+q5yjxpHqGEk+yYSjxJBuOsney4ThQcilXPOG7ycI9QiWxQc8880y77bbbfPH/yiuvNEJb8Lc11ljDPSzC9pjTTjttMcEAIeGyyy6zr33ta45r4cKF3VuA+P9DDz3UuI/EM4k1yjNIJ5xwgm+5ueqqq1K33sTl3H777XvkE0TWZJkQFXgm6etf/7p7l5QqnsTPC/eGv2266aY2fvx4wxHjjDPO6M5/lVVW6a7vO++8U1Idk2XEgybZHjwgyT3U4+mnn3avG9qpkPdMWZ4nf/rTn+zaa691aBxj3NTUZJdeeqn9/e9/91gjCCfXX3+9bb755nbIIYdUFMSVAv/mN7+xgw8+uGqvETxScD/69Kc/bcsumwt4uDSkHuLJmutaw1Y7LQ3VWiJ1kHhSPXYZE9UzlHiSDUOJJ9lxlHhSPUuJJ9UzlHiSDUOJJ9lwlL2TDceBkku54gn1SvM8efLJJ12gCMIEgkXwTuGec845xw4//HAXVcKYR9gKYm9wHfNqtgElt8hwLV4abA0Kz+BgFw5vQaSZPHly6jaav/zlL7bjjjv68xBpHn/8cTvqqKNcDIm9ZkI78feLLrrIY4uyFSlcg3NDsW078b0rrLBC9/VxH7j44ot78KFOSWGmWB2/+MUvppaR58Ss07gjcBFbZeLEiV4+NINMxBMqcfbZZ9tee+3lQgnp9ddftx/84Ae25pprurLDVhr+9tvf/tZVHbbwlJMYlG644QbfogPgLNL06dN97xINsbScyCPxJIuekctD4kn1LGVMVM9Q4kk2DCWeZMdR4kn1LCWeVM9Q4kk2DCWeZMNR9k42HAdKLlmJJyHoadiWsv7663d7PwQWyaCysViAYEGK46fEW1zy/T1tC0pS3OH/g3gTCyPhmXFbBW+ZcePGudhRingSe52EvLg3MPjSl77U7XUT1ylNPElyZG6frGOyjLF4QlmC10koyy9+8Qu7++67u7dZZbptZ9asWb49h20wY8fmIsvjcYJLEW42IRJu2nWlviS47BCQdujQoYvdsmDBAnv77bdtrbXWKjumCnly+kK1AWxLrUdvXyfxJDvCEk+qZyljonqGEk+yYSjxJDuOEk+qZynxpHqGEk+yYSjxJBuOsney4ThQculN8eSaa67xLTmFQlME4WHfffft9jBJExCqEU/iILGx0JAUT3gGDgls3UHoIaZLqeJJmjdL6AMIJjhOxJ45+TxPioknaWVMiidJ7kkxKVPxhICweJ584xvf8O007777rnudEE8EFSccC/nMM8+428ypp57qrj1ZJPawn3zyyfbUU095EFnclwZz6imerGcNW+04mHFUVXeJJ1Xh85tlTFTPUOJJNgwlnmTHUeJJ9SwlnlTPUOJJNgwlnmTDUfZONhwHSi7Viidp4gJ1Z9sOOzYOO+wwdz5gwk4KjghJQYOtOGxLIRRFvL2k2HaefEIAIgOJrSl4ahBE+vOf//xiW45CO8UCQyxGlCKeBA8SyoooEk7UQSMglgl/Q0DhoBf+n5QUT8J2mvhUn3BdqCOxSvJtz4n/nuRO7Fa27YTyxWzy9dOSY54wYBDfBO8PYpug3Lz44ovudbLJJrlzxIGLwFJfX2/HHXdc2YFe8xUS4eaHP/yhn+iDa1FWW3oGysubLGcP8WSt9axhS4knlbalxJNKyX14n4yJ6hlKPMmGocST7DhKPKmepcST6hlKPMmGocSTbDjK3smG40DJpRLxJA4+ymT//PPP9+CxTO5PP/10rzqeG4gHYQvJgQce6DFHghcKeRDzhNglxEkJW3pCQFTy22677Xz3BwIIE/74bzyDeTiiC6fWJoO/lhIwNt5GFOpEANqQKPNGG21kP/nJT1wMwosGTYDnJbcgpT3vvffes5tvvtnrEOo/ZcoU92whtmoIGEvexHsh70J1POmkkwwHjmQZv/nNb9qvf/1rIxgscWBISe44hIS/8WzCjyTrEPfZksWT8AEjs+uuu84bmAd8/OMf9xN3/v3vf3uUX7btbLPNNh7pt9xTcgq9TASifemll+w73/lO3tglBJtlaxEeMWFr0UB5Qcspp8STcmgVvlbiSfUsZUxUz1DiSTYMJZ5kx1HiSfUsJZ5Uz1DiSTYMJZ5kw1H2TjYcB0oulYgnA6VuKmflBMoSTyp/TPV3MmA99thjhir1qU99yoYNG9YjU7b24PbDPwgoEk+qZz4YcpB4Un0ry5ionqHEk2wYSjzJjqPEk+pZSjypnqHEk2wYSjzJhqPsnWw4DpRcJJ4MlJbq23IOCPEkbNvBFahYWnXVVf2s68Ejnky0hi13KIZFv+chIPGk+q4hY6J6hhJPsmEo8SQ7jhJPqmcp8aR6hhJPsmFILrJ3qmcpe6d6hgMpB4knA6m1+q6smYgnb775pu9bInGUMfuUsk6cSc2+qPHjx3cHp42fwYA2Y8YMW2655QaXeLL2RGvYQuJJpf1NxkSl5D68T8ZE9QwlnmTDUOJJdhwlnlTPUuJJ9QwlnmTDUOJJNhxl72TDcaDkIvFkoLRU35azZPFk4cKFHnDl2WeftaamJtt5553tgAMOsLfeessjBhNvhBTOfl5nnXUyrQleJ/yz33775c138uTJdsEFF3hgnEHjeSLxpKp+JvGkKnx+s4yJ6hlKPMmGocST7DhKPKmepcST6hlKPMmGocSTbDjK3smG40DJReLJQGmpvi1nyeIJA8avfvUrd/v73ve+ZyNGjDCi73Ik8ZNPPumn4Wy77bZ27bXXGiLGscceaw0NDZnVpqWlxV5//XUrJMoQ94TjhgioOnz48Mye3d8y6hEwdu31rWGL7ftbEQdMeSSeVN9UMiaqZyjxJBuGEk+y4yjxpHqWEk+qZyjxJBuGEk+y4Sh7JxuOAyUXiScDpaX6tpwliycIEwRiPfjgg2211VbzUnJk0o9//GM/YuiQQw7xU3CW5Ik3S/LZfdlsEk+yoy3xpHqWMiaqZyjxJBuGEk+y4yjxpHqWEk+qZyjxJBuGEk+y4Sh7JxuOAyWXvhZPXn31Vbvmmmv82N9ST6xlLj5p0iQ/sljpQwK9yaVk8YQjiBFPjjnmGN8S09bWZuedd54LKGeddZYRqJXEuc0EbOW85Ky3zuDp8vzzz9uCBQsW6x8cl3z77bcb8VcG1Wk766xvDZvL86TSAUPiSaXkPrxPxkT1DCWeZMNQ4kl2HCWeVM9S4kn1DCWeZMNQ4kk2HGXvZMNxoOTS1+LJQOBy9dVX22677WZjxozJrLiIRvyz6667ZpZnb2ZUsniCcHHOOed4nJONNtrIHnzwQY8twrHBweuEgt5yyy1266232imnnJLp1pmHHnrIzjzzTMMDplAadKftrLOBNWy+XW/2kaU6b4kn1TevjInqGUo8yYahxJPsOEo8qZ6lxJPqGUo8yYahxJNsOMreyYbjQMlF4knPlsIuuPDCC+2II47IVDy56aab/EF77733gOgaJYsn1AbBBAGFeCLTp0+3NdZYw2OeLLvsstbR0WF33XWX/fKXvzTOkz/66KOtrq4uEwgIJieffLI9/fTTttNOO/m2obXXXttqa2u78x+8nicST6rpZBJPqqGXu1fGRPUMJZ5kw1DiSXYcJZ5Uz1LiSfUMJZ5kw1DiSTYcZe9kw3Gg5FKpeIIYwGEq6667ri/8EwuU/2dnxpVXXunVP+GEE+ySSy6xq666yv/NnJprVlppJTvqqKM8rij/v+mmm/pJs3h7PPDAA37yLNt6SNzDTo/dd9/dt+3w3eYertt+++3dyQGPjkMPPdSOO+44mzJlSvfzNttss+5mYBcJ13zpS1/yuT7/XnHFFf1vpK9//et20EEHdecd6sVvPJ8DXXgW4gd1j8uY9CYJbLiXe0iUOTwn3n4Eg3PPPdfLHJ5JneMUyh7+Rr3hc8YZZziXrbfe2usR7ocR/8+zuTbwiutIG0ycONFOP/10r3tyS1RZ4gkFe+mll+zOO++0oUOH+rHEnK7DSTzs0Zo5c6aXHVeeT37ykzZs2LBM3g+2DCHG0HG+8IUveGyVtDQoY55M2MAaNpPnSaUdTeJJpeQ+vE/GRPUMyYGg2IjAS3Ow62xIFc4FsZ1g5Y2NjX3xuKX2GRJPqm9aiSfVMyQHDGi+M9idSpUTkL1TObtwp+yd6hkOpBwqEU/iWBv894033uhiyOWXX+4HrDBpv+KKK+yOO+7oFlYIOcEEPb4eoSOkiy++2MWW++67zwUBvD8233zzbrEi3P+Xv/zFdtxxRxdVECkef/xxfzbzdgQNhBy+7WkxUuLree5FF11k/4+984CPq7j2/5G06t2WuzHGYGPA1JgHocQPyMPU0AkJIYUekz8kYEwLxARe6AEChBAgeQ+IA8kjQAjNDr2b6gQw2BiMjZtsyZbV+//zndWIq/WutsxI1spn8iGydu+dO/ObuXPP/eqcM0cddZR5p7feJnwe6984V/zwhz+UDz74YJM22n4EPVf4t83vQvsokZ4nQS2jeafwbLDtHDlypAEthx12mACGON7qEnku9QJHop1LfwFCACTgSjRPm6ThyeaY9LxQkMeESXzwwQfHbALeLxjOvHwEvVI2R5v78po9EsYqPHGSWo0JJ/nMyWpMuGuo8MSPhtSi8MSPlgpP3HVUeOKuocITPxriEc5foym8gPG7luQVUHsnec3S+YxU4EnQs4K+Ww8QgAleEPbF3sKCWLBl9erV3S/xFircfffd3QDG5hyxkADPkOCLPs9wgMaZZ55pPF+iXS84NtHgBF4rgAQcJayXiL0G9VuvE1sPHjSAGQuJYuVFsd4ibDhj4U40eGLrpd+/+93vur1bgu3mO6tr8N9BeBJMxAtwqampkdLS0m6vE1sffdxhhx26oQ7H9gs8oUE0HoJGw3yVTz/91GxDTL2hUChqtX117Xh9YDFlItx5553y+eefm0lGLhj+i/zrJwMxZ84cs6UzSXc55uSTT044qzJt6QlPdpLs3faK10T9PoYCCk/cp4YaE+4aUoN6nvjRUeGJHx0VnrjrqPDEXUNqUM8Tdx0VnrhrSA1q7/jRMV1qSRWeRAMBkS/28eCJ3W0HCPDEE08YcACMsKE5hx9+eA/Pk0h4wrqJtwufW3AKhIm1C00kPKG9pOggxAUoQp4TShCexNoZKLKNdrxtGA7pPniXjed5YuHNRRddJKtWrTLVRHqn2GMIHQqG2AThSdBDhegVyyeigZFI0JIwPFm2bJlpoN2SmH/j1VFbW2t+xirAAADHiy++aHbgSXa3nXjXQJjKykqT9yRaYUI8+OCDKV3b5UaGsjGxvvWtb0lubq48/vjj8uGHHxowAvGzsIeXI1yKgDzsWsSx6MRAXnzxxQm76ys8cRmtnucqPHHXUo0Jdw0VnvjRkFoUnvjRUuGJu44KT9w1VHjiR0OFJ350VHvHj47pUksq8IR3UcJsLOxgdxruP94TgyEl8eAJYTsAA5tHhLwn1A0MoeDJcsopp5iQHBueAvCg4GgABMDLjD/Q8/nYsWNNXYnAk2B4TRCYRP6bfCGnn3668aahXiJForXRgqAgmMCzJh48CQKdWGE7FhBFerkE4Qntpl2fffaZDBkyxOzqY0GODX+yO/5Qjw21StjzBMEuvPBCI/4NN9zQnU0Xg5R4K5K2xiup7ngDnAEiAElSLaleO9XrWU+S448/XkpKSkw1aAUUwW3puuuuMy5AFKAS2ztzQ7FjEYW+0meS20yfPj2hZgThSWjSFAnt+h8JnacHbaqAwhP3WaHGhLuG1KCeJ350VHjiR0eFJ+46Kjxx15Aa1PPEXUeFJ+4aUoPaO350TJdaUoEn9C1WUlSSlu69994m/wiFJK5AEN4FCYFh4xW8RHhPnDBhgjz99NPmWMJbzjnnHHn22WdNrhSOAcbY/BycH0w6Gy1hbOT1bIJXPg8mXaUe8oHYRK12rGwb7rjjDsMCyJ9CsaE7sdoYTEwbTGhr68VbxCZ1jUzOGpkMlnNoX7BOG9ITrI/3ZNsue7y9toU9HB+ZYHfWrFkm1An9yHmCPUmyWhteZCHQJjlPMOB///vfmzbgNREMO8Gr44EHHhCSsiBsZEJYGkFymuLiYpNROFnPE67JNeyEKCoqSvj+wkjBK4UMualeO+GLBQ5csWKFcWsKDiRfv/TSS2YnIibX1KlTzcOf39EIsIJGFJLtXnnllUL72VEokWSRCk9SGano5yg8cddSjQl3DalB4YkfHRWe+NFR4Ym7jgpP3DWkBoUn7joqPHHXkBrU3vGjY7rUkio8SZf+pXs7eTawO1BwRx9+h1HEyrfio89JJYwlnOeTTz7pzrkRrQG44QAvLr300pTgCbv5QJqOPfbYmLvqxOo4CXFuv/12Q+xSATc+BLV1vP322wacQLDYVhnIgkcP/4Y0WnrFQnzLLbeYBDt4+owZMyZuMxSexJUo4QMUniQsVcwD1Zhw11DhiR8NqUXhiR8tFZ6466jwxF1DhSd+NFR44kdHtXf86JgutSg8GdgjFRmCFA2m9EUPkoIn5DRZt26d8TyJVfjr6eLFi2XixIlJbxVJp3E94jp77LFH0v11uXbSF4tzAttFkTwWFyC8d4BCwJNp06bJeeed1+PsW2+91bhiBUN87AF27+vgCW+++ab59fEzvyMd4ydJ++RdfTd/i6mPuZaVlZU0qNtiBEqwo+gYK5FzglVs8YdhlJH3ifmoJXUFeGFlt7VYW9qnXvOWdabe0+7jzT3NfNS10U1Lm2tvMO+i6KZQ/LO/+c1vyvz5882B5Cbcay/daCC+atGP0LUxVeV6nmc98P3U1je1KDzpG1191WrzlhBaQyEsCscFtmruy5IUPEmkIfzVj4UZ74hEQlCCdQI/iP0ixgsBSMC60047pZ3hwV/sACFkKN5uu+1MF/FEIf7qiCOOiApP/vGPf3SH+AQ1wf0ospB7hgI8ydhuR8mc8rVEhkaPiaJAQ0ODSdyrL6ypTw9eELjvkwmzS/1qg/dMEm3xomW90gZvT/u2ZzxMuZ+zs7P79kKDvPa6ujrzDFcIlfpA89LPfIwMcU69xi3zTGxDnjM8q7WkpsA3vvEN495OIf8e26dqSV4BtXeS1yzWGenwjFZ44m+8B1NN3uGJj9AZDA4yB7M108svv2y8UIAx6QBSWFgfeugh8wJ01FFHdRue6MJWSwcddFBSnifRJluPsJ3td5bQLnsOpjnZr33RsB13udWN1V1DatCcJ3501LAdPzpq2I67jhq2464hNWjOE3cdNWzHXUNqUHvHj47pUovCk3QZqf5tZ1LwhAcYniFz584VcpvEKj53vIkGUvDewKNjILrCElJDfhO8ZoLtszlPSCx7wQUXdHs6YFyRI4a4rZRynig8cbpjFJ44yWdOVmPCXUOFJ340pBaFJ360VHjirqPCE3cNFZ740ZBa1N5x11LtHXcN06kGhSfpNFr919aE4QlGANsB2bii3proE54ErwNIIXcIW0C99tprZt9s9qwmCetAiIX94IMPTEJdPE4iwY7dbYfdddh1x4Y02S2g8/PzzVbQibjs9/Q82UVCu0ztvxkzyK6kxoT7gKox4a6hwhM/Gio88aejwhN3LRWeuGuo8MSPhgpP/Oio9o4fHdOlFoUn6TJS/dvOhOEJhhQJT9n6h5/Dhw+P2lIAwp133tnnO96QsOnTTz8VcoWQT2RzgxT6vWDBAvn2t78d0yPmmWeekbvuustsVUxOFwoJci+++GI566yzZPr06QmNfg94MnkXCe2s8CQh4aIcpPAkVeW+Ok+NCXcNFZ740VDhiT8dFZ64a6nwxF1DhSd+NFR44kdHtXf86JgutaQKT3A22HPPPYVog74oS5culccee8y8OybyR/e+aEOsOnFwYLOTe++9t8/635/9iXathOFJbW2tecknY/cxxxwTs901NTXGQ+WMM86Q0tLSfulfEKR88cUXBtz017Xp4DvvvCP/93//J4cffniPxKMkIwWonHrqqQY64WUCOGHxRcvm5ma58cYbDWzh90QT7Co88TetFJ64a6nGhLuGCk/8aKjwxJ+OCk/ctVR44q6hwhM/Gio88aOj2jt+dEyXWlKFJ8H+kZaB4gpSfNXTH9r3NTzqjz70do2E4QkLxh/+8AdDuE4++eSYdRJaAyQABPgKpQGOAEW23nrruHlOuD7Qgvay+0df7xTw1ltvyZVXXmlASLRy/vnnm9AiW9jB4P777zfJcNnCGBB1wgknJEUOe8KTXSW0s+62k+qNpPAkVeW+Ok+NCXcNFZ740VDhiT8dFZ64a6nwxF1DhSd+NFR44kdHtXf86JgutfiAJ75Agq96+kP7dGprKnokDE+sUfq///u/cvzxx8cM26mqqjLeFLNmzZLy8vJU2rTJOevXrzd1zpw5s9c6WdRwY7rvvvtk5513NgBnxowZg24LVYUnXqaVqUThibuWaky4a6jwxI+GCk/86ajwxF1LhSfuGio88aOh2jt+dFR7x4+O6VJLKvAkGLbCH9h/97vfme4SFcEW4YS0vP7663L22WfLKaecIr/+9a9l5cqVMnr0aPOT/JeEvJBjlBQP11xzjcybN6+7nksuuUReeOEFczx/oMepwV7TXueAAw7orpd3djYqOe6447qPt+uqvXbwmHPOOUfuuOMO0xbazEYxzz33nHEUIMqCz+3x9IF3Uto0dOhQczyRFsATfudcCn0YP368EG7EsaSs4NhRo0bJaaedJt///vfNVur8DDocDNR5khQ8oRPLly83W/EyASI9S/D6QODPP//c7CDjE5786le/Mi5P8+fPNy+8JSUlRuADDzzQeHBQ7I42e++9t/y///f/unOiMBHsMQN1IJJpVw94ssOuEpqinifJ6Bc8VuFJqsp9dZ4aE+4aKjzxo6HCE386Kjxx11LhibuGCk/8aKjwxI+Oau/40TFdakkFnrBBCFDisMMOM++t1gtj8uTJJu8lm4qMHDnfnWXKAAAgAElEQVSy+xigAkDl9NNPN8cTngN0If0FUITC+27Qm4NjnnzySQND2P321VdfNVEhPLdtXbbeXXfd1UAae20+t8UeH3kM3//+9783jhDAGXsuYIT6OZ6oCf4NxMFR4be//W2PPq9du9a07/nnn5f33nvPQBKgEMdSrr/+ejnzzDNl4cKF5nsLgtJhbiQFT9iGF3pEWE5vxfduO3ieQM0AN5EFD5PLLrvMEC4Sx0K0GBjCYVjkSF7L5N9rr73SYTwSaqPCk4RkSugghScJydTrQWpMuGuo8MSPhgpP/Omo8MRdS4Un7hoqPPGjocITPzqqveNHx3SpxSc8sTADrxNbrDcK4IF3V+CELcASvFY4pjd4ApygWI8NgMuXX35p4IatNwhAIuFJtGNoRzKfU2cQ7gT/jS1BXUceeaTgCIHXiS3AlFWrVvVofzrMjYThCcBk9uzZ8u9//1v2228/mTp16iZJWVtbW2Xu3LnGpce35wnwpLq6Wo444gg5+OCDpbi42NA2aBgAhaSsJG4NwhMG4JFHHpHFixcb+JKVlZUOYxK3jT3hyW4SmrJH3HP0gOgKKDxxnxlqTLhrqPDEj4YKT/zpqPDEXUuFJ+4aKjzxo6HCEz86qr3jR8d0qcU3PIkGSSxcsPDEhrZcdNFFPcBCLM+TSHiCVwpAggiRgQJPCN+ZNm2a8aSJ3CEo6F2TLvMiYXhivT+Io/re974XMxFrX+U8YTeaH/zgB2ZL4mBZtmyZIXNAk08++cT8JF7sG9/4hjkMbxnCjK666qqEd7MZ6IPXA57suJuEdlJ4kuqYKTxJVbmvzlNjwl1DhSd+NFR44k9HhSfuWio8cddQ4YkfDbGd7V+8cfGPtKX9XGXw16L2zuAf42APfcITwnYI59l9992NlwiQhP8I1QlClSBMSDRs54YbbpALL7zQ5BX505/+JPvuu6/pRrTQm6DnCdePFZ5j24QtYOvvrc5Ynie2DzbfSzA8ifoGtecJXiVssws5smAi2i3UF7vt9JYwNghrSKDDYBNahGcM5fHHHzfeJz49YTb30qHwxN8IKDxx11KNCXcNFZ740VDhiT8dFZ64a6nwxF1DhSd+NFR44kdHtXf86JgutaQCT2zyVmABITdAS3KDRCaM5ftgclib0PXjjz82+UGCxYa3UI9NGEu9NqQnVsJYks5SLxuosJmKbRNhOTY3S6xj8BbBOWH69OmmKdgEw4YNk3/84x/dnz3zzDOmTv4DDNkEtzY3ik2MS/4WSjBhLO3ifZaksxT6yHlBEDRQ50nCnid04NNPPzUJYRnUWCEwhPeQFRhBGCwfpbGx0SSWOfHEE2WHHXbortLurvOvf/1L8Exh+99IeMKk4PPBC092l9BOu/uQeYusQ+GJ+7CrMeGuocITPxoqPPGno8ITdy0VnrhrqPDEj4YKT/zoqPaOHx3TpZZU4Em69E3bmboCScETLgOowLsEN6Nohay5t99+u6Fhvnbb4Tp4j7BNMjlPdtppJ6mpqZGnn35aPvvsM9l+++1NlmLIG94ngBboV0tLi/FC4Sd0j4Q5g6H08DzZaXcJ7ajwJNVxVXiSqnJfnafGhLuGCk/8aKjwxJ+OCk/ctVR44q6hwhM/Gio88aOj2jt+dEyXWhSepMtI9W87E4YnGFLEU+FyE6/43m3HGsTsO41Xiy1slfzjH//YJLAlgy/JbInlAuwQ7wVgwf2HHC0nnXRSvGanzfcKT/wNlcITdy3VmHDXUOGJHw0VnvjTUeGJu5YKT9w1VHjiR0OFJ350VHvHj47pUovCk3QZqf5tZ8LwhAWDZDDEQMUrfQFPuCYeLx988IHMnz9fcnJyDCCZMGGCSV6LdwlxYqNGjTI78bBFMXtgDx8+3ORqoU2DpfSEJ3tIaMfoXkCDpb992Q+FJ+7qqjHhrqHCEz8aKjzxp6PCE3ctFZ64a6jwxI+GCk/86Kj2jh8d06UWhSfpMlL9286E4QnNImRnwYIF8p3vfEdCodAmLWVRwfuD7YN9h+0kKwughd13yLsybty4ZE8f0McrPPE3PApP3LVUY8JdQ4UnfjRUeOJPR4Un7loqPHHXUOGJHw0VnvjRUe0dPzqmSy0KT9JlpPq3nUnBE5LBktPE7mQTral9kTAWr5LFixfLxIkTjcdJrNLbrjz9K2vfXq0HPJmyh4R2UM+TVBVXeJKqcl+dp8aEu4YKT/xoqPDEn44KT9y1VHjirqHCEz8aKjzxo6PaO350TJdaFJ6ky0j1bzuTgiexmoaXR3Nzs+Tn5/dJ64EiJH694IILZMSIETGv8dprr5mksoTp+ExW2yedcqi0Jzz5moR22NWhti37VIUn7uOvxoS7hgpP/Gio8MSfjgpP3LVUeOKuocITPxoqPPGjo9o7fnRMl1oUnqTLSPVvO+PCk7a2NiExK//1Bk9efPFF+fvf/y6HHnqo2e+ZvCO+CvBk5syZ8v3vf1+mTZsWtVpCikgaW1BQMKi2JY7WWQtPgslzfWm9pdWj8MR9xNWYcNdQ4YkfDRWe+NNR4Ym7lgpP3DVUeOJHQ2pRe8ddS7V33DVMpxosPHnzzTfl888/N/dQtMJmJUOHDnXuWlVVlcnhSf7OaGXVqlWycuVK8xU7zTY2NhpnAVJp8L6+bNkyGT16dEq7y3J+rD7iHEGO0WR3rXVpU11dnaAHOUt7YxDOoqdQQVR4AqzAy4OGs1PNIYcc0mu4jL3uihUrZPbs2YLBcNNNN3nz/rDtIWTnqquukmHDhnV3lYUMcHPLLbcIIUN9law2BW377BQLT879w30ypiBf9hha1mfXGuwVqzHhPsJqTLhrqPDEj4YKT/zpqPDEXUuFJ+4aKjzxo6HCEz86qr3jR8d0qSUIT9auXdsd/bB8+XIDS4qKiqSpqcn8V1YW+12M92kKx8cqHEOuTuBHNHgSCRMAKXy2zTbbRM1DCrjg/Tn4zpyI7tTL+3YQBiXS/kTqHizHxIQnl112mcyYMUOmTJli+grdeuqpp2T16tXdfWcnm8MPP7xHuM77779vdrrxGTrD4F9yySWy8847G+p37rnnmkSwTIxHHnlE7r33XkPDaOu6detMiM+WELYDPBmSmyP7DnennYNlQifbD4UnySq26fFqTLhrqPDEj4YKT/zpqPDEXUuFJ+4aKjzxo6HCEz86qr3jR8dEaml9+xVp/+yTRA71ekz21H0la8JkU2cQnjQ0NEhJSYnZ+TUIT/idd4lY8MR6dABEeoMnXK83z5NoUAOgYz1PIkXgeEosL5ZYokW7jleBB0FlMeHJjTfeaEJlghCCRePVV18V+x1bBbNNcLAw8Hw/a9YsbwCDiYlXCcCEbYo//PBDOemkkww0eeKJJwyl+/nPf27omz1uoLn4+JwrQc+TolBIDhj1lSeOz+tsCXUpPHEfZTUm3DVUeOJHQ4Un/nRUeOKupcITdw0VnvjRUOGJHx3V3vGjYyK1NPz+emn5598TOdTrMQVnXig53zyqBzx55513uq8RCU/sF8GwFxvmQjhNMBSG91VydwJf+GM/Jehp0hs84bulS5eacJ1oEAbvF0J62GEWqGLDewA+vB/Tvs8++8w4Q1RUVMQMh4mEJ9gCOCjYkB0LZfBOoT3UNWbMGCH6hD4F+xNsE1pwLg4RtBEdaRvH0C54A+/5pN/g2Egt7HG03/aJ4/gcPYFE1M97ndXIjpUNhYINUL9rSQqecDE6c8MNN8iFF14YNb6rr3e8YeECmMyZM8dMDrxRLr74YsELJtFdeVxF29znB+FJTmamTB8TO4nu5m7rQL++whP3EVJjwl1DhSd+NFR44k9HhSfuWio8cddQ4YkfDRWe+NFR7R0/OiZSSzrBk8jcHrwrV1dXG2hBAaBYz5Ng+A3eLLzw29CbRHOeROYgseCGa9m6gp4nfB8ZdgSAiZanJZhXhfqC17IAh8/J81JaWmryrFgIxE8LcGy/bZuAHGwuAyQBdnB9/r1mzRoTWsT3Vgv+HQxhigZhLBD54osvDDCxQKWmpsaEM5HGAyaRm5trwE9wDBKZf70dkzQ8iQdH4n3v2mD7ICU0hwH9yU9+0k3gCCki18qll17qzevFR3t91xGEJ9R95FbREwv5vu5grE/hifuoqjHhriE18CBobW015F1L6grgfZidnZ1Qnq5Ur9Le2SlZEV6XqdY1UM9TeOI+MgpP3DW0Nh/Pmb7a0dFPKwd+LWrvuI+R2jvuGiZaw0AK2wm2mTlgw3asvYbdYZObEpFhjwEQABjsi3ukfQdMAD7gicFLPsCFz3oLteG5Yr1ZOM4ey3kWXGRlZRkQQeF72geMCBbrfRIZQcJ5tGXIkCHmcGAE8IHPKMF6I7WI7E+wTUE4QvsoQZ3s9Wwbg1pE6mI1oG94nwQ1DI4FTMKClMh+JjoPox03oOAJAwQUgULFK7xoUHAbsgWB2OXHZ7LaeO3YHN9HwpNDx46UUBRD3sXAt+c2tLVLc0eHlOdk9+hqfVu7FIbCk7+/SltnZ9R+rmtuMW3J77oZe2tPZB3JGBN1bW1CmJQtkXVF6h2rvb21b2Nrm+nLqsYmGVuQL5F18n2ndEppds/x6OgUWdvULCPyw4tbtBJsD/VSensBpA2j8vM2qSqyX9aYKCwtlewYL5Tx5mIqWiUzzn09RxdvrJNxRQWS28uuZPHakAg8iaVjS0eH4IUWWVo7OiU7s2doJcfUtLZuMocSGYNEjgneH/zbrk3M3ZLsr+6feHM0nl6xvk8Gnqxvad1kbYvUZnl9o5TmZHe3vUNEXl2zTr4+fGjU9Yg1k3HKycrsdT7Euyds/1Y0NJrE4K4lmbHjWsnAk8i+1La2SXGcse6tPy7nJ9vPaO1gPW1qb5eCGM+43tb6DS2tUpaTbeaAdIUc8xcxCs/NvKzMuOAt0bmRzJxgXudmZpnrB0tlU7OU5+Rssk7EmnfB5yC2QV1rmwzN/coOS6ZNkcfGGjuMbgtPIp/DyV4vlrbJ1EsdzNGi7JCsa2qWobm5UddZ2uYylrHWdeq1WsWyQ6JpGbR3WKdaOzskOyPTzHXy5zW1d2wyPxLV9/O6esnMyJCR+XkJPQefXVkpO5WXmOOTLasbm8w9NCwvbO/4nodW92h6BOEJ13V55ifbb46P9UyPVhc6paJvou3imY51EWut3xz6JNr2RI+zOU+Cx0eDJ7zcR76kWwgRC55wDmEv1rMjUXhi22KBCCEqQJne4EkiUMbWGwlPIrVKFZ5YoMP51kuEz2i3DSfCm8VClGCbI/O3BMegN3hC222IVCxYlOhcCB43oOAJJIldc55++ulU+mLO2dJ226HPk0uLhVfhSSXhLM4rG5qko7PTvICzcG5V+JXhjYHAQ5+XbwzDBgzECOjA97yIYzzxgGpsb5eDRg03dfOyQd1vrauW/6gYIqHMTPlwfY3sUVHe4yGyrL5BcrOy5PPaevna0PIehgUPpIa2NvOwjgVheEB0SKfUtLTKsroG2aa4UN5Zt16mjRpmrsOinCkZsqaxSd6r3iC7DymTsYX5wktsYShkXnZWNjTK8Pxc01cMR4yF96s2yNZFBbJtSZGpZ+G6KunMCklTR6dMLCmS/FCWfLRho9FteNeDGSNk/tpqYySOLMiTKWWlUt3SIm+trZZ9R1SYl6rq5hb59/oaKQiFpLm9XQqzQwa0UCclaATZhx/18uB5t2qD7Dqk1PT1jbXVpj404oUJDdAJkEKhf/y3Y1mJjC8Kx+0Bj+gX4zShuFBGF+SbOngB+LS2zhgYjCPt3X9khWDTv1+9wfQHHSpyc4xewcI8eaOy2lwbvWg/9SzZWCe8HJTn5pjfmQvN7R1SWVsrq1rbTX28rNN25iS6LK2tN3PuGyPDuXk2tLSY8xnPPSuGyBd19fJlQ6PsUFpi6uRd/4u6BnNd5ifjz3WAE0F4ZdtrX7SY7yPy8uSdqvUGQKERGtMG+p+dyYwRWV7f0D3+1IGBkZeVZQw/CuNnjTJ+X1BdIxV5OaZPQWOK+4wXkbxQljy/stJoFX5hzjLzlTZgXHB9O1bUhzHd1tEpuVmZ5j5jPpTkhKSlpVVyOzukKZTdPX+5P5inJTnZpr6X16yTITk55txti4tkY2urLKmtNy8W+42o6B5C6qTPizfWmnWAeUgfuS6f0Y9RBXlmnjOfgG5LNtbL1Ipy8+JHod3MqeCL+4ur15oXBuYYYA193163vvseZ54srWswbWbuMdcwkAGbr1VWyX8MG2LmG+dx7/LSxjrEeR+s32i0Z90I7iDGsYx/NDiEvqHMjB5rGAZFR1ZIcrr6gQ7MkU9qao0mowvyzMvOe1XrpbatTQ4ePUJaOzvlg/U1srGl1bTloFEjzDxkvXtlzTrT5kmlxeYl8V/VNfJFfYNZdzmWeUr93AdtJJKrbzSfM87ovlVhgSyprTPt5/yq5hbhRYM1KzjP7OBxL6xqaDJjgva8ZHC/sI5bQ5jxa+3o2MRoDb7w0ibmPHOUOb5wQ625hzB0V9Q3mvWS/vE784LrsYYxT3YqK5HXVlXK5CFlZl5HK8wN1izaNH9dtdGUOcF8+6y2Tg4cNdzowPyinyXZ2bJww0azNvKsigZuGc9K2lpTa+YU9x3riB1/znlzbbW5JuOOloyDnRtc77lVlWadGJ6fJ/VtYYizXXF4Haa/rEfcs0A99GHt4xm2+9Byc1+tbmgyawTPmP1HVJh2sh6ub2419wzrJv2lf9S/oKpGGtrbZEJxkek/YG1UQb65NyeXFMn6hgap4K+POdny0up1pu2s0x9sCD8v2rvuf55bzA/uO/r4X2NGbALnPt1YJ6ML8+XjDbVSnsuaEJLKxmbZoay4W0/GhDWavq1vaTFrEX1Ce9rF/cjcYX7ybGR+U1g/mLtD83Kkqa1dXq2sMusW68xntfXm2ci4sr5RB3OF+5t5sM/woeHrNbcY3bYtLjQ/6Qf3Dn3m+cs6xrOJceBYdDBrbkeHfLh+o6xrbpbtS4rNPRUsQXjy1JerzfXLutZB5ob9wwlrEXVynS/rG80aw3Oc5wjjjb2Cvsxv1nsLkrhveA6zNlAvdXLvfrBho5lL2CtjCwtM27mXeCYw1+gXv/P5PsMrNgEorO9vrVtv5g06AikYYzv3sUsYG+5L2wfOsesC9wH3w8SSYmnr7DDjzfW4X+nbrkPKzLOcPrNuM59erVwn2xQVmjH7WpddZl9uF1VVy3DWo/pG+d/FS2ViabGsbmiUrw+vMFpw7/zqazsb6VmHrN3xf0u/NOtFhmTIXsOGmDFHP9Z54Ntjy1aY5wDHUGZO2d705/HlK6U4O1v+c+Qwcxzt5zlGH37x3oeyx9ByOWv7CWaNWFC9QY4fP9asH/Y5PXfFGvnutuNMf7EbRuTnyZPLVxmbb+vCAtm+rFi4JxgjbIaZO29vxnthzUZ5s7JafjhxvHy4YaNUNTfLLuVl8npllfDHxsjC/UIfDhs7Sl5avVb+hU07tFzmrlgtR289xtgSzP+W9g5jF1fX1smL1TVm7cEGRG9bGNN/V9f0eB7z3F7V2CgHjBxuxpbfuR/P3H5C93nWjkFb7iuei08sXyWHd3mW8/3zqyvNWnfImJHG7sPWWtfUYu43W5jf2CG3f/Spufe/vc1Wm/QXrbj/7f3HAdTP/KR9zO3/WbzUaI+2jNcDS76QUyduY+4ftODZdPOHi8y4nr/TJPP8Y71hXpp1pqxEHlu20qw13xw9wtjVjF9ta6vsNiS9dwgl58bPfvYzOeWUU4TcnxTygbIb7J/+9KfuUBh+P/DAA2Xy5Mly8skny+WXX26O59j99ttPHnjgAZk6darZBOU3v/mNydPB+YAEjo0sjz32mKmL42zhGmwhTP14lrDj7e23327awHcU6qLel19+WW6++ea4HnzBOqM9+4P1RmpBG4L9iWxTsN3kSAm2h2O//e1vyx133GF0CmoR2X6u+4tf/EJOO+00U2Xwmuh7//3396jbtpPcLNG0jdbP3j6LCU+uu+46Ofvss427UbDgHfLb3/7W7MQT+R3HLVy40HT46quvTil0ht16/vnPf5qJkMx+0iSFef7552XevHled/pJVtD+OD7S88RekwcZixoPgmQLD73GtnZzGgZpsgVjgMXevqCyELMAU/ichZUHOAYUn3O89X7gAYBhTcEgph0Y0cHCiwwwwJ7HA8TWH6+twCGMJwxj2mELBk/kdex3nIOWFNrD+dEKx1EvxmCsghGBBuiK4YRRzV97+KsPbwa8uNEWXpStJpF1WQAU/JyHHAYoL5e9FeYFx1A37cBYx1hNptAHHurxSnBcI4/FK4W+MpYY4NRnx6Z7DmdlSnEoZAwDromXDS+KtqAfRiLnMi70iTGMdl0L2WK1mWsDp4L122Mxihkn5qstGN/oiBcWhiPjaedltGswPhjCFF5Arf8HL2LMQ/rBixh1cg8APPIyMwzIiywcyzUxXHoda2BOVpZ5qU21cC36HqUZParE2A5qx3jxWW/3AhVgdFE/awSFuY/OwXnMOLMWcJ9w79Fv7jOM6PBLUPjFl5dXdLN/+eaezenslBVNzdIcrwNdvdmupCj8shyxNlA/7aR+W/ibfXJ3TuxRYP7B67jvmb8YqQAMXmDtvWbnha0lOGeYe4x1RW7Y2AXccN9QF2stzwHWSf6dyppur0kdQAE7bwuzs6S+td38zliguR3LYG8j50ekEvSXOqifepjf/B6r9HavASbQhnkSrS28ULHmJXtfRK5PwXWG+W4hWbx7DS2YT7Zt0dYrPqMPdqzsM8hCCbuG23UoeE3uDUAk8DHe/cccRmvqQxdefiiRcy1en4LfR7ZpXGGBNHe0y5rGcN3BAkxhHHgWsEayLjJuwfvfeqsBDe0a2lt7gB6sRRaUc34iz7jg/WTrt33hJZ97M3gfAI5jrcE838YXF5oXUI7b2NJmXiRtv4I2CxoAeAAcFMaEczneXhNtuFYsmyCaHrHuOZ5Z6PPsqjVxnyFACbTjhTlawYZgHeZ+ZM4GNbLHc2+gQbSx23vYUHljbVV31axP9r4AWAFSgiVZWw+9rW2IXcuzJThmzPOtCwslKzOjGwb2tu7Euw8AEOgAcONawB8K9sfOQ0plVH6+/HPlmu413QJmjglD3lwJZWTK53jOZ4fXMOpEY/4ICWhYWlff/azjPOYPa32wYCOyDnKOXVvtNfhjR7Awz4A82DmMFWDHPssBzfzhw/aB9SdSH+YTIAzAZov9w4D9necqXlnR3kf4Q8BuQ8rliDRNOUB4ThCG0Gf7GS/9vJwHoQHfB4+PBB6JwpNIgMA1SV0BMAGo9AZPLJggXyltASbMnTtXjjoqnBg3WKLBE67FLrz//d//bRgAhX4mA08+/vhj42ljQQ+bvpCzFFgCU7DAB+AUCU8i2x8EJITsxIInf/vb30xuFgutnnvuub6FJxdccIFxdUmluHh/8FdDshp/4xvfSPrSfbHTT9KN6IcTYsGTfri0XkIVUAVUAVVAFVAFVAFVII0UuPDoI+WTd8M7hnzrd/fKyJ13TaPWa1MHowJ37fO1tOuWfYlfsGCBafsvf/nL7pfx4He77rqrPPTQQ91eIgCJK664Qs466yw58cQT5aCDDjLnH3zwwSZVxciRI+WYY44xTguR9VqRcA5gp5hzzjlH7PVfeeUVAwaC154+fbpxYgBW4OFi20I9eHZwbmT7+M4CoGeeeSbquOApQ/ne975nft51113y7rvvmp+URx99VO68807hfNpw5ZVXmv5yPX4HcNx3331GFwpt32OPPcwOvQ8//LA5juPxRgF62OtYja3HDufaPvJvYIy95o9//GM5+uijTf3Uhc733HOPAUXR+pzqBIzpebI54AneI8Q++U4KRp0kEBws2xcrPEl1uut5qoAqoAokrwB/SScMMJ6XV7Bm/jqHN0ssr7XkW6FnqAKqgCqQmgKzjvmWfPzO2+ZkhSeJacgaHs+TK7Ga9KhoCqQjPNGRVAVQICY8wZXmu9/9riFaJGNJpAA/iKliG+Frr7026bAd4vafeuop2XPPPc22RT4KWzO99dZbcuihh4rPTLs+2pZqHUF4gmsvrokmrr+tTTDyKYQDELeJi6V1jcUlEBdZYs75iZshrpm4RZK/YVh+rokNt3HAuA/idktOirFFBSavQkVXHhByX6AndRCSgPspbqvE2OLlzrnEmfLg4fq48OHCSXwqLnvEx9tcB7Q9GP+OKzrxreRAoD5cFIkbpl3kUyC+FPd26rZx/xyLCy4ugtSL2yNuhRTyDeBOGUx+iisisbBF5CHIzw2Hk0iGcbkkrICYUVya6RcaoevE0iLTX3IHEANt8w/QV1woiYulbcTEEodMmVJeYvpBnXacqIOXsKqmFuNiSbw6ISjkrsDVk5hz4qCJ2bcJNnGNpX9jCvOlvrVNPq6hDeEQKNxQdyorNTHRaI0bJvUT0sOLG3XTBzQhDpzzGAPio/mJjrhXEiqwfWmxyWuCDvSHz20s6wGjhpt5RbwsYRNog5toQVamNDS3yDZlpeZz6ie/BPHyuKAzZ4jbZg4wtjYfD+NDHCyuuriR8h3jgn6MNbkiuB5jSt+sSyvx8BxLP3H5xT2YWGTqYByYzzbPC7HP4XozzBxnHOkjuXjWNDUZbegndbxbtd7UacOn9qwoN5/TJtrJ2NIfYnaZh7g3kwOH75g7aBFMxojmxKSTL4drUpdZdHHX7Yqdx6WXdnOvDskJSUdHpwwvzDduzBwXmQSZ/qEJbuq44tJ/m++BsUZ75gdu/PzbvvBzX9NO8nYwd5lrzG/c4plzjDf9434iFIZCH4nVx42dMWG+MIeY78xPQp4YI75rJeQlQ0xsPn0jhIR22bmFhtRN4d+4thMvThuZd7ST0D3mLRrSN8aU+c18oU5c/XFhJ2+BDdMhTp5cAnzPcawx9I31ZJchpd36cT3Cb1hXyCcyuazYuFM/v6rSXJO5aXMcRd2fFHIAACAASURBVK7L9J+xJZcOfZ9aMcToHp7j1tWeZLjZZhwpO5QWmzrpH/mhwjmYmky8/5TyUhPqYsMkOZ57jLbb5L6cy/rKmvrSmnUm1I48DxxHH2z4CfOP+whN+YwxRhv0YM1hvrJuc99zrA2PJJcIOYdsAlPqIDiJsScR7uKaOlnX0CDblpWaeUiOAdYfNOZatjBPWW/JefVBdY1Zcw4YPdxcj3uMe5vv36va0B1GQSw88whtTK6YjnaTS4E10+aRseEMNmcXfaMvrAXcw8yRz+rqzb+ZJ7i+ox9zlnw59J25Rw4b5hftIt6eeYY2XJfxZm0yubCqN3Sd02LyJhGuxRjZ5L+8RFk9CStgDWL8CG/YpbzU5ECxIX6s2dwXPF9G5+dJkXTKly1tZi2mHnL6oDPPTdrBekI+BvIeMadsvgt0tvc2485xFO4inqM8z7jPuSfQxYYJUidt4N5mrbaFebznsCHmfmdNoj2sS8yXRTW15j4I56aqMGE96IperLv2HuQeJswHXclvxbOCNq5pau7OyYPNwHONMSaU6F/rN5g8YeRICYZ4cX9SD+sHIQe2PtY47hfuIdrBtdc3NpnxHMozMSfbrCWEGdB3dOT+IN8CoQ6VTU1mjpJfiXxZhDyQr4Q5ZJOqM28W1dSFQ4qpq2ss+dzU19lp7Ab0sM8bxsYWnm2sUawrXMPmn2DdYc22L9zc73xGaCl9ZN3hd85DJ3Kd2LAl5hX3vQ2xYU5yp6E/9wiFPpNzhPlAKAXzgHnJOs1YM6/Qi/w9XJs+MhbMh3O/dYT86635pp4r/vI3+daB/2nuUfTh2jaEgjWX+cC9hBa0+5Tttjb63fXJErPeEvLxnyOHywurKmWrogKjwU922M7kTGG9o0+skzx/dy4vNTl6sDu55zgGm468GKdPIt9Jrbn/vjVutMnxgX5oT5vIC4XNw73FuvnsyjWmTTxX+Zx6n/xylVln6PNfPl9u9OB8cvjwXOY5HE7wG84PRn+wdXneMSfJu8b5hG5S1zFbjzU6EjJ60OjhcuMHn5i15+vDhsrra6tk57ISGZcdkn9UVpl7DPuBwhrKdZ76cpWp84XVa42NwLqzQ1mJyXHCOsF3tM3m1l9Z32j0JBSSNZ71inwj2IvYdS+urpTDtxrdnQeIuc6YsX4zd8kTw++EBm1XXGz6wdwg1wl5vLiHfzhxm+7r0VaegX/+bJn81+gRJoSK++nHk7eTPyz63Kz/tO/hL7409y/9Iy8S1/j+duONjWfLgqoNps88944eN8aEWaP32IIC+bhmo6l7UkmxTB8z0mjNeo72Dy/90twHF+08OfJxq7+rAmmhQNIJY+P1yjV0Btjxl7/8xbjhlJW5JRVi62Jcl04//fSo+Vni9WWgfh+EJzzYMd6ilWDCL5e+YCwFk5xRV6o7GvCQ5GHa2y4vtq2R1wgm0orsD8dikGBURGb+50HCAznymhgb5R1txg0OQIhhgoEQ3LEGowhAFdx1IbI+rs3LpE2WRtusIcODp7eM43ZnBs7BwOI6GLnxMqrb8wAz25YUJrTTkNUsXt3RxjfyHAwsXrgxDqJt3YeWGAfxMtHbMcZ4wPjghQTt0C24SQzX53/RkoYmMretoR3cIYrPqNMCCrvzCm3BsLUJmKPVT8LPYJK43tqQyL3CvVqSmSFZJBuOs1VxqjuRBNsRbZeZyD4wvhi73De8+HNf2HsIQMp9YOFecD7EGw+X3Sci645W12ur18qkkkKpKOiZdJJzbY4NO494+cAATmS3EHTn5S/azma2XczdstzsTXYy4nvWEl4aki2xdjyL1neb8yEyATTXjHZ85DwI3ufVGzZIeWmpgTg2X1Nk24PrF9/Z3yN15tokNuRzgG20+zjYFvPC0yFSmhtOvG1LcCcbgEvkRlKR7UlU61jPysjdTvgdjXkJ4B6w16d/Jt9KW/glmfnEeOeyZWVTo9lZgLUaWAEgC9abyPoQ2Y/edq7ipdMmKmcdC+d1au/Ob2DnAoDLJmYFpPDSTYmWlDuWjrbtXIeXWgv/SHTKOFNXZP84Fr0AwBT+cBHcpY12cQ8F2xFMGBtvTG1um2DCd3vPRj6LbX4MXkgtZA/WzxoIREInXv5Y/3hORSa0JU8R/bHrowV5AHgKzxTq7+15GKkD0BSYA0wB+HHv0M5gAmfWZQCaXb+wkQBHtr/077U1VbLfyArZb5995PXXXzftwf19n332Mf+mj6+tWSfHjR/bQ9qX1qyV3YeU90hKzf1l/2AWPJjr2udoOPlvOOFqZOG7Bz9bJj/Ybnyvw8hLP7A63nGRlbBGk0sOEBHcKIHjaCO2LDYLayq2VuRuOsF+2LoBv0Atm3TX2jt1Obnm+Rhcy4Lz68HPl5vktMGdEYHCwSStsUR44stVcvjYUebrWJsq8Ac0oDEJ5G3/WBOBRKwBJHEGnDEfou2aSL92Hxp+xwL0ArWj9b+3Ntj2xzoPne0f7oJ9pe1ALpcd2eKtA/q9KtCXCkSFJ2yZuXjxYpk4cWKPrYATaYjLubb+JUuWmBioE044wcRrBbcjTqQNPGiffPJJk3iW5DjbbLNNIqelzTFBeMJfQIARWlJTIJmtilO7wuA/Kxo8Gfy99t/DRLYq9n/VwVdjMlsVD77e++tRMlsV+7vq4KqJHQSZj3ar4sHVu/7rTTLwpP9a1bdXSmbr5N5aYqEpsCQaPOnbXqRee2/bNKdeq/uZau+4a6g1qALprkBUeDIQOsUWRuzYQ9JaAAqhPMAcjJCioqLuUCIeqmT7xePl008/NQlo2LFn0qRJJovv8OHhLXYHU1F44m80FZ64a6nGhLuG1KDwxI+OCk/86KjwxF1HhSfuGlLDlghP/Cj3VS3pBk98999XfWrv+FJS61EF0leBAQtP7MsEHiT/8z//Y/56k0jB5f2HP/yhHHbYYUl7rCRS/0A4JghPCB0gr4aW1BRQeJKabsGz1Jhw11DhiR8NqUXhiR8tFZ6466jwxF1DhSd+NFR44kdHtXf86Ki1qALprMCAhidWWP7q8Oabb8pjjz0mH330kWCQBEtubq5MnjxZjjzySNlrr70kLy8cSztYSw94UlwoU7oSVg3W/vZlvxSeuKurxoS7hgpP/Gio8MSfjgpP3LVUeOKuocITPxoqPPGjo9o7fnTUWlSBdFYgLeBJUGAWrrq6Omnr2hGCRJ+E8QyWnXQSmUxBeELyKRI9aUlNAYUnqekWeU/W1NQ4J3h2b0l616BhO37GTz1P/Oio8MRdR4Un7hoqPPGjocITPzoqPPGjo9aiCqSzAmkHT9JZbF9tV3jiS0kRhSfuWqox4a4hNSg88aOjwhM/Oio8cddR4Ym7hgpP/GhILWrvuGup9o67hlqDKpDuCniHJ62trZKdnZ3uugzo9gfhybbFhd37zA/oRg/Qxqkx4T4waky4a6jwxI+G1KLwxI+WCk/cdVR44q6hwhM/Gio88aOj2jt+dNRaVIF0VsA7PHnuuedkjz32UBf+PpwVCk/8iavwxF1LNSbcNVR44kdDhSf+dFR44q6lwhN3DRWe+NFQ4YkfHdXe8aOj1qIKpLMCm8ATXMc//PBDszVcMqWjo0MWLVokL7zwgpxxxhlme2EtfaOAwhN/uio8cddSjQl3DRWe+NFQ4Yk/HRWeuGup8MRdQ4UnfjRUeOJHR7V3/OiotagC6axAVHhyzTXXyCuvvJJyvwAnl1xyyaDdKjhlYTydGIQn25UUyQ6lxZ5q3vKqUXjiPuZqTLhrqPDEj4YKT/zpqPDEXUuFJ+4aKjzxo6HCEz86qr3jR0etRRVIZwWihu0ATm699VY54IADZMqUKd05TD777DOZM2eOTJw4UQ455BApLS3t0Xd23GAr4WnTpsnOO++s8KSPZobCE3/CKjxx11KNCXcNFZ740VDhiT8dFZ64a6nwxF1DhSd+NFR44kdHtXf86Ki1qALprEBUeAIEmTdvnhx33HHdWwCTCPbGG2+U7bbbznyemZkZtd+cV1xcLHvvvXc66zKg2x6EJxNLimSyep6kPF4KT1KWrvtENSbcNVR44kdDhSf+dFR44q6lwhN3DRWe+NFQ4YkfHdXe8aOj1qIKpLMCMRPGkvMkNze3G56sX79eCOe54IILZMSIETH7vGTJEnnooYfk/PPPl7y8vD7X5ssvv5Snn37aXAdvmLFjx/b5NTf3BRSe+BsBhSfuWqox4a6hwhM/Gio88aejwhN3LRWeuGuo8MSPhgpP/Oio9o4fHbUWVSCdFUh4tx0Mqeuuu05++tOf9gpPnn/+ebn//vvlpptukvLyci/aNDY2yh133GES2QJ09t9/fzn22GNlxYoV8vOf/1yqqqrMdYYOHSpXX3218Y4ZzCUITyaVFMn26nmS8nArPElZuu4T1Zhw11DhiR8NFZ7401HhibuWCk/cNVR44kdDhSd+dFR7x4+OWosqkM4KJAxPMAJuueUWyc/PlzPPPFNCodAm/V69erXMnj1bCgoK5KqrrpLCwkIv2rBY3XbbbcKLLvCmqKjI7AbENRYsWCAXX3yx7LXXXvL3v/9dFi5cKBdddFF3nhYvDRhglSg88TcgCk/ctVRjwl1DhSd+NFR44k9HhSfuWio8cddQ4YkfDffZZx95/fXXTWWvvvqq8LuW5BVQeyd5zfQMVWCwKZAwPKHjn376qfH0GDNmjJxyyimy9dZbGz0AGSzKDz74oBDeM2PGDDnmmGO8aVVfX2/yrfzoRz+ScePGmXrff/99ufTSS03+lVNPPdWEF+GBwnGzZs3y5vXirRMeKwrCE7xO8D7RkpoCCk9S0y14lhoT7hoqPPGjocITfzoqPHHXUuGJu4YKT/xoqPDEj45q7/jRUWtRBdJZgaTgCR394IMPTO6TysrKqP3mxf6cc87x5nXCRQAyQJGZM2caKNLW1iY333yzASjXXnutbLXVVqYta9asMeFCbJPsK2RoIA6uwhN/o6LwxF1LNSbcNVR44kdDhSf+dFR44q6lwhN3DRWe+NFQ4YkfHdXe8aOj1qIKpLMCScMTOtvQ0CBz586Vxx9/XEjYStlmm23kO9/5juy7775RQ3pcRMKz5frrrzd5Ttg6+Y033jC5TfBusV4n1P/MM8+Ydv3yl7/0Cm9c2t4X5yo88aeqwhN3LdWYcNdQ4YkfDRWe+NNR4Ym7lgpP3DVUeOJHQ4UnfnRUe8ePjlqLKpDOCqQETzZHhwEmABTyqKxdu1bGjx9vcp4MGzZMOjo65IUXXpDf/OY3Jo6THYGysrI2RzP75ZoWntz+f3+TirxcGZqb0y/XHYwXUXjiPqpqTLhrqPDEj4YKT/zpqPDEXUuFJ+4aKjzxo6HCEz86qr3jR8d0rYX3ziuuuMI0/5VXXpGPPvrI/GGfDUu0bDkKJA1PABWLFy+W5557TlatWmVARU5Ojjz66KOy6667yg477NC9vbFvGdkGmd18SFrLtsRMVnbieeyxx6S6utpcrqysTI4++miTtHawFgtP5s2bN1i72G/9UnjiLrUaE+4aKjzxo6HCE386Kjxx11LhibuGCk/8aKjwxI+Oau/40TEdayHRMrvJkjaC91BACp/96U9/GnDwhPfiyZMny/bbb5+OUg/4NicFT0jcypbB9qWdXCN2S2JCa/gOz5DTTz/de+jOgFeyHxuo8MSf2ApP3LVUY8JdQ4UnfjRUeOJPR4Un7loqPHHXUOGJHw0VnvjRUe0dPzomUsuapmbZ0NKSyKFejxmZnyel2dmb1AksmTBhgpx88snd3919990DzvPkk08+kXPPPddEYyg88To1uitLCp6wm869995rvDsImyH3CblHbHLWRYsWmW2DzzrrLJk+fbr3Fm9Or5dEOlNbWytPP/20oAMeOXl5eZucBmSaM2eO2VaZxLfkbeFGjHZsrGsqPElkNBI7RuFJYjr1dpQaE+4aKjzxo6HCE386Kjxx11LhibuGCk/8aKjwxI+Oau/40TGRWh5Y8oW8vGZdIod6PeZ7224t+4+o2KROPEy+973vmXAd8ntGK8GwngceeMC839nzyMfJxic/+9nP5K677uquh3NWrFghS5cuNVVy/Mcffyz77bef+Z13auvtAhj59re/LQsWLOjxuW1L8Hs+ow1Tp041MIXokBtuuMF8xju8rZ/PH3rooW7QEq0P1IWXjT2Hvlx++eXmshz/8MMPGwcKuIB9R/U6KAOssoThCWAAMLLjjjvKGWecIXb7YLsDDv1iVxygwahRo4yoyQCBeLoMdK8XgAlbOd93332y7bbbRu1/S0uL/PrXv5aamhpzA+Xm5prdgthmGW3x2kmkKDxJRKXEjlF4kphOvR2lxoS7htTA+tDa2prwOuDnqoOvFp4V2dnZJpxUS+oKKDxJXTt7psITdw2pgT868ZzBVV5LagooPElNt8iz1N7xo2MitQw0eGJBATlPIoGD/c56pliIAVAAtAAYKLwbk24CgHLKKacYYAKQweHAhv9w7uzZs+X222835wBgOI8wnN/+9rfm/ZFCHfvvv38PTxg+D3qeVFRUmO/ZUMXCnOD199hjjx710IbPPvvMXA9YQrv5bN26dfLkk0+aY6uqqrrbxPXoA3lfYrUnkbFOt2MShieAEbYoBo6MGDFik+2D6ThbBTOoGK42nMeXIJvb6yWRfmAo0W/gSDR49OKLLxp6iLcOuwZRUvHWSQaetHd2SlZGRiLN3yKPUXjiPuxqTLhrSA0KT/zoqPDEj44KT9x1VHjiriE1KDzxo6PaO+46qr3jrmGiNcxbuUb+VV2T6OHejvuvMSNkl/LSmPVZeACQsB4YfPaTn/zEQA8bKgN0ePnll81734033hgVnkSCFQ7iPAtNgo0Ien7Yz4NeKfazyLCdeGE8Fuzw/v6LX/xCTjvttE3Cfaz3TLA99P3AAw/sBixbUtLchOEJBuktt9xi8pnEgifAgV/96ley3XbbGY+K4uJiL5N5c3u9JNOJW2+9VSorKzeBJzz8maAYpEFtIIBXXnmlYGRx0yXifZIoPFnb1CzL6xtlj6FlUbvQ3NEhuZmZ5ruNrW3SKZ1R4/yS6X/w2NaOTsnOzJC2zk5p6+iUvKzwtZIptKswlBUTADW1dwhsyPYjWDfg6JOaWinNyZYxBV/9xaqurU2KQqFwvzduNMmFQ12/81l1c4sUZ2dLZoYkDZ5WNjTJ6II84dodnWL6Twlq3djeLvmDaDcoX8YEmlU1t8jwvNxkpkjcY1s6OiSna57HPTjigPUtreZc5mBfFwtPMvLypLNTYl6TOR/tXuLzDzfUyNeGlse93/u6L8H6G9rbJTsjs/te8HltxjaUkWnuVVuC8ITvmVfx7rcNLa1SEMoy92wq61TkPR6tj9z3jCvX6eti116X6/QXPEEX7jGfkJ9xJFZ+SD/tRMdziilYnB1+rtjSF/Ak+CxxGd9kz92c1+1saenhecIzGs3HF7lvDODyfEhWw748PmjXxLqOtXdaJENWNTbJtsWJeTv7bPfHNbUyuTT8blDT2urV5kymnQ1t7cZ2jPdsiKzTl70Tr63vVW+Q3YdEt93jnZvq9+uaW6QihTWTtaG1o6Pbrk71+ul2noUZhPHg4RGZZySYYDYZeBIttwraBL1CetMqUXgSCYFmzJixCQCy14nVJr63YT5B75l0G8tk25swPKFivD/YAvi4444z3hVMBhu2s3z5ckOs+HnSSSfJqaee6m3Xnc3t9ZKMqLHgCfFsF154oQnpueyyy7pDmliIgVJvvfWWiUUbM2ZM3MsF4ckba6u7X/IzMzKMAcp/wIrVjU2CYTCusMCAkYJQSJra22VjS6vwUkgZlpdrDMzKxibzGVAhNytsyFY2NZt/U1coI6P7QcN1gmVja6tkSEYYlHR0Sn4oy1y3gzcF/mrU3mF+8lLMi0wihTp4qC3eWGcO54WGlyQMbergWoWhkNS1thk4U5aTbdqMEV6SE070tKaxSXgpoozKz5P6tjYJZWYaOML5JdnZ0trWJhxB6FRze/hFyxYMs9EF+aZPQBgLU4AxHMd12zs6TV/5r7a1zZyKhhgyJdkhA2Ga29uFhxJbSje2tQsvk8CeUQV5ktsFUaqamoUrozf9RGHqiFYYP87jWMYCnRhrrleWmyMNbW2mL8FC2+wLJrolUmhDVmaGeeHLzsyUUCajLEbDmpZWM755WVlSlB0yfxlMNkzPnt/GXOmCVgA/xhJ9GEd0XtfUbOYQLybMNfQpyQlJWU6OWN1i9Yexw0ArzwGGJe+BhW6MLW3iHqAOqmGEov7kexFznDnWzC0x9wf6b3Je4Pj2tjZZ39winzc0GeA3nDnb2mbmPAW97JyYUFzU3WXax3l2rtt5G9RkfUuLLNlYb+YM94ipszP8ssfcR2PmH/20xdwvGZlmfFk/aLs9N959zDhRLEQEPjFXKBit3BPMLe5ZrsFP+kb9nMP9znqFQWbvLe5ZoABzg7roC3VxHp8xPw30bG+XZhHJzw51zx2O5b6kbtaM8UWFZi3kBYJ67RpFPfQXwMG1uJdYIxlLA1iyssz1gHzUxz3Md+jPegk4zc0EwnRKuwBQO7s1YG5TmAf0mfmEBrSJf3OPUZizdq3hM/4L69hp2st1+X5UAAhHzv9VDY3mnLGFBdLUtebY9TiRe9+0g/FPcK1ItM5ox7GWsJbSr5wuwM7YsIZxHwTvWvqA3swLxnFkQZ60GIDO+t1uxjE8dh1S3xa+b1gXedEeW5Af1jhDpKMjPC5mDe/sNOsy82yrwnyzvtn7jc+5D6ifNYTv0JOXBdZd5gdtZOyZHyQZtMCcc1g8O4CHXckHg+uB6ZdZG8Lrg12ewsd0rR1d39nj6Ney+gbz7IqETdxz1tM0aAvwb9rJPcPaHwaO4fXJrEldNgP3t5mbmZnGJgjqzrN0SW29GSPaMCI/z9yrtMU8JzIyJC+UJazltN3Wz3qyoqHR3KeMA+3j+txbnINWjAn3FeexTnB9dGdecC9yfmkoK9zerrGhPtYwxhrN+R2bgeN5JofH9qvnOc8K5gkaMbe4x7YqKjDX4dlZkZcjtS1t5tnMmkid1E2baAfn0OdECuejJWsuc4I5i+7Mo8hi13Sux3y16yo/0Zo1jcJcK+wCc3zHekOxQNZCYjRl7Jir6EafWSeYW/y7oalZ5q+vMc9E5ux/VAzp7leHdMqnG+uEdYo+8Izh6mjL/EFb2mTvGdqB1vZ3xt581tkpw/PyzHiwDo0rKpBX1qwz84958WVDo7HHWEPR/WtDh/SQ5cv6BtO+qqYWGVOYL9sGnnVL6+pl8cZas87vPWyoGWOOQ6ehuV/90aW5o10+WF8j/DEL7ZirzDXWF+YbvzOuaIBdSt9Yk3srnMvzYXl9gwwJZcnE8jDY4FpvVlbL2MLw+mLWi8Ddw71DYf40tIefVTuUlRhQj962cF/ZZ4AdC8ayIjdX+B1bgGcPmh80eoSZk9x/2KasW9Rn5zfPIOYv9TEPuL+Y20NyckxfGV9+LqtrMFqg8/vVG8xYowf3S7CsbGg0a23YMu1ZsA0YF8aEgn0N9OHZQ/msts6s5Ywpz1LaZeZzKCTHbB3/fSeRe66/jom2g42FCuwAa8NrbD4U4Ak70xKJECtsJ5bniQ2dCfYt6MnSWwhjPHhiw3YIt6FOQoEoNh8L4USROV2C7Y+lt83dYvOz9Ne4bI7rJAVP+IveddddZ/KdEGdFclQSnrKF8Ny5c83nuCsBUYYNG+atP5vT6yXZTsSCJ2gEPJk2bZqcd955ParlnGeffdZoy1bPwdJb4p3z/3iftCXGIpLthh6vCqgCqoAqoAqoAqqAKjBIFGhtbZFnVvd/As5BIp92w7MCd+3zNc819m11kfAiMlQnuHUxHu02rwkgIjKXCIlXbd6Uv/zlL6bhNgFrJPzgOu+++66MGzfOJIvlXRJQAwTh3fuoo47q0fF48CSYU4VQmyAYiezj+++/b3JNkfOENttkubZN9BMIQ3uol01liKYY7PmpkoInjA6ZdNkt5tFHH5Xm5vBf0ih4pBx00EEmmSy78fgum8vrJdl+xIInb7/9tlxyySVyxBFHRIUn//jHP0xOGbIixysWqJz7h/viHarfqwKqgCqgCqgCqoAqoAps4QrgVfLm2qotXAXt/kBQAC+kO76+x0BoSsJtmDdvngnzP+ecc8xuN5TgzjvWo4OddCg2QSv/Du6CA/wghC6YMDby+GB+k8hksna3nWhJa6kn2A42I3nvvfdMwlhbjwU7tp3Ux247tr3B3XaCu+pEaxO7At12223m/Eg9EhY2DQ9MGp7YPuLSy+CvWrVKhg8fboCJdU3tCx02l9dLsn2JBU8WLlwoF110kQFMyXieRLt+JDzBXRC3vGDBRe/L+kbjhm9zSOAqi0slseCEROCCFxnfjwsmrnu4IptwlPYO44qO+x+/47KIm99WXS550dqHOzXuqrj60TZc9Agz4VqRoRO4neKOiDs6Lqc7lpUYt0fcaYMFl0ATU9nluso1aA9ujbQXV0/qDoYd4KrNNXGH5RrD8nON2yLupLbUNzRIdUenjCooMC6QuCDSN9rf2h4OGbAx+ROKC42rZ7SQhVajG6E6hOlEz0nBmOAuTD0UjqvtCm+INc8Iw+EhE1msK23k5zgiUS8unVsXFXS7gXKcdfeOdIWPrIM+Ur91P7ffW3drxgD3aq7DmBB6BkhNJmwnqGtkvgPCx5jPuCkzfsydSAXoJ3MTV33caW1ISDQdOZawtHC7EwtZilYPLtbU1eNnpxiXWkKb+InrLHoQhsTPhI7vOo/8CMy1sUWF3f1lrhK+Qv+pC5dY6rWFMIVwiF1TtwY2dA9XZhMWk5kpOCTj8ksYms3/wvjhbkttI/JzpTzG7jQ2bCZ4XdoULXcH7uSsIYSoUS/zMJ7m6EkYBONJ2+gz88rkYerqq3HD73IRZ17i/suaxHFoYN3WCakIdbQbmM9/zGghrwAAIABJREFUFNzyR+bnGS1syIfVj3FibmxXUtStHxrHC3FhbnKP0D4bMhArKIy22bBGwgCY24Q4BI9nLKqam007CRWzuTPoG58zv9GSn/GCz3BFpw7WGfqLmzia2jAPe74JKwlHjnz1syvEjA/qamulqKhIMrtCB6wrejDcJHx+oJ6uMJQen3ddINjuaPlNaDc6xMoJw7igAS7l3GuMtS3BPFKsb9Z9nrHhvifUkfnEWhqZl4TnA/rEy8iFpuW5Od05uFinwmGMGSanj/mZmWnmvb3325mfTU3mr3Dhz7mPw+sC/2c+61o/Iv9tDulaQ/ju89p6E/qC+z9haNHWxVjPke753hX6x70WrWAj2JC74Pc8EyrycmWb4kLTJkIBuL7VjPAz5ib3Dc975h16EboSDhsWEw5iwzEZR9pgQwsYJ56FzHeeLVyPNQFbYOuiQukwecqypCivZ+iMtRUIAeGarGM8g7vnRVu7WSNMyEVWlgl3sWFLHMO/Wa8Im6H9rC2EFxAaQQnei/G05VjsGFvCIRfh8AfzvOro6M69xrFf1NWbazJf+S9WXq5gmE68NpgQqFCWCWljXtt8cDwDqL+uvkFaQpmyvqXN2IXvVq2Xr1WU97TLOsO5SDY0t5pwDsYKWy6Vgo1ZnBMOg2LNw6Za2dhkntu2oA3tZcyxvbhfaRvjwuf8R2hMsBCCimaE/VDotw3l5CdzMFqU7qqGJnl+VaXsVF7SneuE+4m5iH0YqyzZWNdt98Wyd7h3WKOYgxNLintcH3sW25nCXF9QvUGO3Gq0DOlqP+EzHDOptNjozXrG7/T97XXVcsS40aa/i2vq7OrR3VRsVZ6x9j3gpTXrjM1OaJCdfNwfQ7uuZU9saA2HvIZD37FZs8y9GusBg3aEIO0WyKFo+8Jza/7aajNuew4bIotqas29MLEkHF68prG5K/z1K4UJLTp4zIhUppWeowpsdgUShickM1y8eLFMnDgx5haQ5PUguSuhO9Yw89nDzeX1kkwf4uU82W233cyORdawtzv04BqVbM4T63my7/ChURPjkZgLAzrVZJnJ9DvasQCF7CTyTGyOxG2afd51lMMGPjmQ+sLjzL116VOD7rbjZ6y29N12MOB5WeJF26X0V8JYlzYO9HN9JozdHM9Hqy+giDwa/V1sn9Nltx3yT2xvXoCj/wGlv/WLvJ7aO+4joPaOu4ZagyqQ7gokDE9I2hpMEBut4ywqhPTgidJbrg5X0frb6yWZ9sbbbQd3Klyi7K46GPrEufGXqWjbG0e7dqTnyTdGVBgqrSV5BdSYSF6zyDPUmHDXkBoUnvjRcUuHJ35UFLMzXGlpaZ/8IcRXGwd6PT7hyUDva1+2L13gSV9q4KNutXfcVVR7x11DrUEVSHcFvMOTP//5z0JclM+tihMVmbiunXbaKaZnTKL1uBwXC55QJzFnxJihzaRJk8xlFi1aJMSksVc38WiJlEh48p8jh23iipxIPXpM9K2KVZfkFFBjIjm9Yh2t8MSPjgpP/Oio8MRdR4Un7hpSg8ITPzoqPHHXUe0ddw21BlUg3RWICU/wkACEzJ8/3+QzwAgguy6ZeW3ISWTn8U7BcAUM9Dc8wRvlvvvuM9mALZjo78HhwTR79mxZs2aNXH/99ZtsO4w26MLiCzBBV7x52A6S3603Srx2R8KTA0cNN3HCWpJXQI2J5DWLPEONCXcNqUHhiR8dFZ740VHhibuOCk/cNVR44kfDffbZR15//XVTGX/g5HctySug9k7ymukZqsBgUyCu5wk5TAjF+dvf/iYdHdGTjAVFKS8vN7vK7L777t60AsqQJ2T58uVx6zzhhBPMjj99kXOlt4s/8sgj3Xtl2+NmzJhhtnIOlrq6Orn//vvliSeeMB4yfE+bk0m2GQlP/mv0iE0Sv8YVSg8wCig8cZ8Iaky4a6jwxI+G1KLwxI+WCk/cdVR44q6hwhM/Gio88aOj2jt+dNRaVIF0ViAuPKFzLBYvvPCC2YqI7XQBJP1ZkoEn48ePN4lXB3Pyykh4Mn3MiM2WFLY/50FfXEvhibuqaky4a6jwxI+GCk/86ajwxF1LhSfuGio88aOhwhM/Oqq940dHrUUVSGcFEoInFqA89dRTsu+++5okcv1ZgCc///nP5cc//rFMmTIl6qXZrSYzM1N22WWX/mzaZrlWJDw5dOzIqNvZbpbGpdlFFZ64D5gaE+4aKjzxo6HCE386Kjxx11LhibuGCk/8aKjwxI+Oau/40VFrUQXSWYGE4UkinWS70ldeecXstENIiq9CvXfffbcJx4kFbsh5wjFce7vttvN16QFZTyQ8OXKrUQOynenQKIUn7qOkxoS7hgpP/Gio8MSfjgpP3LVUeOKuocITPxoqPPGjo9o7fnTUWlSBdFbAKzxBCHJ5rF69Wk499dR+zzvy/PPPy0svvWRyrviENwNtgBWe+BsRhSfuWqox4a6hwhM/Gio88aejwhN3LRWeuGuo8MSPhgpP/Oio9o4fHbUWVSCdFUgKnmBM3XPPPSb/CTvFxCqbI+8ICxqeJ2+88YbcdNNN/Z6XpT8nQRCeZIrI4ep5krL8Ck9Slq77RDUm3DVUeOJHQ4Un/nRUeOKupcITdw0VnvjRUOGJHx3V3vGjo9aiCqSzAgnDEwsn/vrXv/baX7YxPvbYY43nCVvw+ijsnsBuP+z8E6ssWrRIFi5caHKesF1wotv++mhff9cRhCehjAwh54mW1BRQeJKabsGz1Jhw11DhiR8NFZ7401HhibuWCk/cNVR44kdDhSd+dFR7x4+OWosqkM4KJAxPABeEw7AAA0dIznrLLbfI0UcfLZMmTTIaEK6DV8rxxx/vDZxQb6K77QwfPlx++ctfyrbbbpvOYxK37UF4kpuZKQePGRH3HD0gugIKT9xnhhoT7hoqPPGjocITfzoqPHHXUuGJu4YKT/xoqPDEj45q7/jRUWtRBdJZgYThCQDj+uuvl5kzZ8rQoUNNn9l9h2SuJ510UrcGc+bMkTFjxsi0adO86cK1ue5uu+0mU6dO3aRevF3GjRsnFRUVXqGNtw54rigIT/KzsuSbo4d7vsKWU53CE/exVmPCXUOFJ340VHjiT0eFJ+5aKjxx11DhiR8NqUXtHXct1d5x11BrUAXSXYGE4QmeJzfeeKPMmDFDRowIezpUVlbKbbfdJuedd54BFxSStj755JNeQ2eigZt0F96l/UF4UhjKkgNHKTxJVU81JlJV7qvz1Jhw11DhiR8NFZ7401HhibuWCk/cNVR44kdDhSd+dFR7x4+OWosqkM4KJAxPMAII02loaJADDzzQeJfg7fHHP/7R0OyzzjrL/LzmmmtMbhKfSVs7OjqEvCfkMSFcKFZJ9Lh0HjDaHoQnJdkhmTZyWLp3abO1X+GJu/RqTLhrqPDEj4YKT/zpqPDEXUuFJ+4aKjzxo6HCEz86qr3jR0etRRVIZwUShid0cunSpXLZZZcZjxO7o05ra6tcfvnlsmTJkm4dCNmZNWtWv28XXFVVZbxjuHZ5eXk6j0uvbQ/Ck7KcbNl/RNjrR0vyCig8SV6zyDPUmHDXUOGJHw0VnvjTUeGJu5YKT9w1VHjiR0OFJ350VHvHj45aiyqQzgokBU/oKCE0r732mowePdrkIMnIyJAVK1bIDTfcYADK3nvvLWeffXZ3XpRkxGlpaZEPP/xQmpqakjnNHAvEmTt3rqxcudKr10vSDemHE4LwZEhujuw7PJyDRkvyCig8SV4zhSfumkWrgfWPdWww7xTWN8r1rBUvxezs7H6H9/3Rt/68hsITd7UVnrhrqPDEj4YKT/zoqPDEj45aiyqQzgokDU/idZYXgMWLF8vEiROTNl45l7CfV155Jd5lYn6/1VZbbVHwZFheruw9bEjKem3pJyo8cZ8Baky4a0gNCk/86KjwxI+OCk/cdVR44q6hwhM/Gio88aOj2jt+dNRaVIF0VsA7PFm2bJncfPPNcsUVV6QUOsMOPuzYs9dee/Wa3ySa6IQVrVu3bouCJyPyc+U/KhSepHoTKjxJVbmvzlNjwl1DhSd+NKQWhSd+tFR44q6jwhN3DRWe+NFQ4YkfHdXe8aOj1qIKpLMCScETErK+99578uyzz8rChQuj9ruurk6Ki4tTBhjkU/nggw9MUtpky5aY82RUfp5MrRi8+V2SnQPJHq/wJFnFNj1ejQl3DRWe+NFQ4Yk/HRWeuGup8MRdQ4UnfjRUeOJHR7V3/OiotagC6axAwvCEBeOxxx6TO++8U4AovRWX0Bmu09zcLHl5eemsa5+2PZjzZGxBvuw+tKxPrzeYK1d44j66aky4a6jwxI+GCk/86ajwxF1LhSfuGio88aOhwhM/Oqq940dHrUUVSGcFEoYnbD988cUXm62KSQg7adKkqP1+88035ZFHHpFrr702pbCdVMWsqakxuVIACzk5OalWkxbnBeHJuMIC2XVIaVq0eyA2UuGJ+6ioMeGuocITPxoqPPGno8ITdy0VnrhrqPDEj4b77LOPvP7666ayV199VfhdS/IKqL2TvGZ6hiow2BRIGJ5gSF144YVyyCGHyHHHHRdTB3bjYbvgmTNn9is8oUFPPPGErF69Wk499VSzC9BgLUF4Mr6oQHYuV3iS6lgrPElVua/OU2PCXUOFJ340VHjiT0eFJ+5aKjxx11DhiR8NFZ740VHtHT86ai2qQDorkDA8wQi45ZZbZPz48b3Ck74SA0PunnvukRdeeMGE9cQqtI9tk8vKBm8oSxCeTCgulJ3KSvpK9kFfr8IT9yFWY8JdQ4UnfjRUeOJPR4Un7loqPHHXUOGJHw0VnvjRUe0dPzpqLapAOiuQMDyhk2vXrpUHHnhATj/9dJMUNlrpC88TFqu7775b/vrXv/aqdVZWlhx77LHG8yQUCqXzuPTa9iA8mVhSJJNLo4/FoBXAY8cUnriLqcaEu4YKT/xoqPDEn44KT9y1VHjirqHCEz8aKjzxo6PaO3501FpUgXRWICl4QkeXLFkir732mhx22GGbbCVMItlnnnnG7MZD6E55uZ9dYMi3cskll5gYTeBIZmam8YI5+uiju3OvEK6DV8rxxx8/qMEJY2DhyZV/elDIeTK2MD+d5+BmbbvCE3f51Zhw11DhiR8NFZ7401HhibuWCk/cNVR44kdDhSd+dFR7x4+OWosqkM4KJAVPPv/8c7nmmmuEn70Vl912otWLN8v1119v8qgMHTrUHPLUU08JSWJPOumk7lPmzJkjY8aMkWnTpqXzmMRtu4Un8+bNi3usHtC7AgpP3GeIGhPuGio88aOhwhN/Oio8cddS4Ym7hgpP/Gio8MSPjmrv+NFRa1EF0lmBhOFJS0uLASfsaAPA2GWXXTbJK9La2irz58+X3Nxcuemmm7x6nuDJMmPGDBkxYoTRu7KyUm677TY577zzpKKiwnz2/PPPy5NPPimzZ8+WwsLCdB6XXtuu8MTf0Co8cddSjQl3DRWe+NFQ4Yk/HRWeuGup8MRdQ4UnfjRUeOJHR7V3/OiotagC6axAwvAE748LLrhAdtttNwMxYuUUIXwGcHLppZd6gyc2WS3bJB944IHGu2TcuHHyxz/+UXj5Peuss8xP4A4hPj7BzUAcXIUn/kZF4Ym7lmpMuGuo8MSPhgpP/Omo8MRdS4Un7hoqPPGjocITPzqqveNHR61FFUhnBRKGJ01NTXLVVVfJ4Ycf3uv+8HioLF68WCZOnCg5OTlJa0Mozp133imnnXaaDBs2rPv8pUuXymWXXWY8TuyOOni6XH755SYPiy2E7MyaNSulayfd2M10gsITf8IrPHHXUo0Jdw0VnvjRUOGJPx0VnrhrqfDEXUOFJ340VHjiR0e1d/zoqLWoAumsQMLwhE6+8cYbsnDhQvnhD38oGRkZUfvtCk+sh8s3v/lNOfHEE3t4uPAdyWpHjx5tPGBow4oVK8zWxACUvffeW84+++zuvCjpPDC9tV3hib+RVXjirqUaE+4aKjzxo6HCE386Kjxx11LhibuGCk/8aEgtau+4a6n2jruGWoMqkO4KJAVPWDTIK4Lnx4QJE6L2fdmyZXLzzTfLFVdckVLYjoUny5cvN3lVzjzzTOPFwg47WsIKKDzxNxPUmHDXUo0Jdw0VnvjRUOGJPx0VnrhrqfDEXUOFJ340VHjiR0e1d/zoqLWoAumsQMLwhHAacoqQ06S+vl6Kioqi9ruurk6Ki4tTzjti4cnkyZMNPHn66aelqqrKeLvsu+++kpeXl856e2m7whMvMppKFJ64a6nGhLuGCk/8aKjwxJ+OCk/ctVR44q6hwhM/Gqq940dHtXf86Ki1qALprEDC8MQmbQVmxCsuWxUDT66++mo5//zzTWJYFipCcx5++GGz089hhx0mRx55ZPcOO/HaMhi/V3jib1QVnrhrqcaEu4YKT/xoqPDEn44KT9y1VHjirqHCEz8aKjzxo6PaO3501FpUgXRWIGF4QiffeustE7ZzyimnRPUA6ejokNdff10ef/xxufbaa1MK2+lNTHbSefbZZ+XBBx+U7bffXr773e9ukSE9Ck/83XIKT9y1VGPCXUOFJ340VHjiT0eFJ+5aKjxx11DhiR8NFZ740VHtHT86ai2qQDorkBQ8wZhasGCBsKNNrEJ4z9133y1nnHGGlJaW9ok2bW1t8u6775qtipubmw3M+frXv77FhPQoPPE3rRSeuGupxoS7hgpP/Gio8MSfjgpP3LVUeOKuocITPxoqPPGjo9o7fnTUWlSBdFYgKXgy0DrKIsYWxuRiWbdunXzrW9+SI444YtCH9Cg88TcTFZ64a6nGhLuGCk/8aKjwxJ+OCk/ctVR44q6hwhM/Gio88aOj2jt+dNRaVIF0VsA7PCG564033iizZs3yHrYTFJotkdm2+L777hN25qGwIw/bFXPtwsLCdB6XXtuu8MTf0Co8cddSjQl3DRWe+NFQ4Yk/HRWeuGup8MRdQ4UnfjRUeOJHR7V3/OiotagC6azAJvCEheHll182fdp///0lIyPD/BtY8eGHH0pTU1PM/ra2tpqcJF9++aUBKOXl5d61aWhokLlz58qcOXOE5LKUrKwsOeSQQ+SEE04wSWYHe1F44m+EFZ64a6nGhLuGCk/8aKjwxJ+OCk/ctVR44q6hwhM/Gio88aOj2jt+dNRaVIF0VmATeGK3CqZTN910UzcAAZpcddVVMn/+/Lj9ddlth22Q582bJwCCoPcI7Xr00UflscceM1slU/j+qKOOkqOPPrpPQE3cjm6mAxSe+BNe4Ym7lmpMuGuo8MSPhgpP/Omo8MRdS4Un7hoqPPGj4T777GM2dKC8+uqrwu9akldA7Z3kNdMzVIHBpsAm8ISHPZ4dlIMPPth4ddjy1FNPyV//+lfZc889ZdKkSVJQUNBDD5LFPvfccyb/SBC8JCMakGT27Nly7rnnyrbbbiuVlZVmd50nn3xSaBsFjxZ22qF9kW1I5lrpeqzCE38jp/DEXUs1Jtw1VHjiR0OFJ/50VHjirqXCE3cNFZ740VDhiR8d1d7xo6PWogqkswJJ5TxZs2aNfPTRR3LAAQfE7LNrzhPr+cK2xIAb6rMFj5bTTjtN9tprLwmFQumsu1PbFZ44ydfjZIUn7lqqMeGuocITPxoqPPGno8ITdy0VnrhrqPDEj4YKT/zoqPaOHx21FlUgnRVICp6waLA1cF5eXsw+d3R0mLAaQmpI4JpssfAkmAR2ypQp8qMf/Uh23HHHlOpMtg0D/XiFJ/5GSOGJu5ZqTLhrqPDEj4YKT/zpqPDEXUuFJ+4aKjzxo6HCEz86qr3jR0etRRVIZwUShiexcpEEO79s2TL55JNPjGdKqp4hFp6sWLHC7Jxz6qmnyrhx47oT16az2L7arvDEl5IiCk/ctVRjwl1DhSd+NFR44k9HhSfuWio8cddQ4YkfDRWe+NFR7R0/OmotqkA6K5AwPAFqsIPOzJkze03O+sgjj0hjY6N85zvfSQl4cB2uceSRR5pksHa3n3QW2XfbFZ74U1ThibuWaky4a6jwxI+GCk/86ajwxF1LhSfuGio88aOhwhM/Oqq940dHrUUVSGcFvMIT8pTce++9ZkvjG264QcrKypLWBnhyzTXXyAUXXCAjRoxI+vwt4QSFJ/5GWeGJu5ZqTLhrqPDEj4YKT/zpqPDEXUuFJ+4apis82djaJiXZAyc3n8ITP3NR7R0/OmotqkA6KxATnrS0tJhdd/72t7+JzT+SaEd32203s2NOcKvhRM/V4+IroPAkvkaJHqHwJFGlYh+nxoS7hgpP/Gio8MSfjgpP3LVUeOKuYbrAky/qGqS5o8N0uKalVVo6OmTf4UP9COChFoUnHkQUEbV3/OiotagC6axAXM8TEsC+8MIL8pvf/Eaamppk+PDhPbYvjuz8mDFjZMaMGTJ69Oh01mVAt13hib/hUXjirqUaE+4aKjzxo6HCE386Kjxx19IXPNnQ0iprGptMg8pyc2REXq5749KoBmxPnjP5+fkDttXzVq6RpvYwPLHlgFHDpGiA7Ayp8MTP1FF7x4+OWosqkM4KxIUntnMkgv3d734nV1xxRa85T9JZjHRpu8ITfyOl8MRdSzUm3DVUeOJHQ4Un/nRUeOKupS94smhjnXxSU2satFVhvuw2JPmQaPfebL4a0gGe/GP5KumMkGjHshLZtrhw8wkXcWW1d9yHQu0ddw21BlUg3RVIGJ7Q0ffff18mTpyo4TibedQVnvgbADUm3LVUY8JdQ4UnfjRUeOJPR4Un7lr6gif/Xl8jS+saTIPGFOTLHkMVnriPjr8aWjs65ekVqzepcFJJkWxfWuzvQo41qb3jKKCG7bgLqDWoAoNAgaTgSaz+NjQ0yEcffWS+3nHHHaWgoGAQSDNwu6DwxN/YqDHhrqXCE3cNFZ740bA/4Elje7u0dXRKTlam5GZm+mv4AKtJ4Yn7gPiCJ2+vWy+rusJ2RubnyZ4V5e6NS6MaBrrnSV1bmzy/au0miuJ1gvfJQClq77iPhNo77hpqDapAuiuQMDxh++HHHntMqqurTZ9Hjhwphx56qNTV1cnll18uS5YsMZ9vu+22ctVVV8mwYcPSXZs+aT9GwJw5c+Tvf/+7tLW1yTHHHCMnn3yy5OXlJXw9hScJSxX3QDUm4koU9wA1JuJKlNABJOlubW1Vz76E1Ip9UH19vWRnZ0tOTo5jTdFPD4ZQTCwpkskD6C/LPjus8MRdTV/w5NXKKqlubjENGp6XK3sNG+LeuDSqYaDDk6rmFnmtsmoTRQdaiJXaO+6TXu0ddw21BlUg3RVIGJ7Q0XvuuUfeeecdmTVrlowfP14wDG6++Wb55z//Kd/97nflgAMOkL/85S+SkZEhP/3pT3tNLJvuwqXSfl6Ofv3rX0tNTY3MnDlTcnNz5dprrzV6XXzxxQm/NCk8SUX96OcsqaqWjxqat1ij1IeSakz4UFFE4YmbjqsbmyQ3K0tyWlv6FJ58XFMrizfWmcYCTgAog7EoPHEfVV/w5LlVlVLf1m4aVJGbI18fQLu4uKsUv4aBDk9WNDTKu1UbNulIQVaWHDR6ePwO9tMRCk/chVZ7x11DrUEVSHcFEoYneJ5cf/31cuKJJ8oOO+xg+r1o0SIDUvbdd1/52c9+JqFQSNasWSO33HKLXHTRRVJWtmXF5cabDC+++KKBTVdffbVMmTKlW0PAyVlnnSXTp0+PV4X5XuFJQjIldNDiddXycWMYngzJzRlQWwsm1IEBcFAqxgSJ9Zra26W5vUOKs0OSlZExAHqyeZug8CR1/WtaW+Wl1etMBaGMDNmhuFCK83LNvCrLyU694ihnfrhho3xWW2++GWgJIX12VOGJu5q+4MnTX66W1s5wOtLpY0ZIziAOF4um+kCHJ4RUkdCX51lhKEvWt7SabhDUd+Do4ZKfleU+mTzUkCg8YT2dv7ZaSrKzZVherkwYQElvPcjgVEUq9o7TBfVkVUAVGHAKJAxP1q9fLzfeeKPxmCgvLzfbxt19993y5JNPGqgyadIk07mqqipzHFCF47SEFeDhTzgTBineJsXF4SRiQKkrr7zSePHMnj07Ie+TaPCEDfKW1zfI6oYm88IwdQuLiU51nn2yrloWdcGTkuyQTBup4WbJapmKMTF3xRpp7ugwxuVBo0dIXtbmzx1B3DpG7uYCOQpPkp15PY9/c221VDaFQagtjOc3Pf7lt6G9Xd5Zt17YOpYypbxEtikaOLtpuCnY8+zBAE+4p8kXMrYgX8YU5vf7S6wPeAIyYScXW47capTPYU6LugY6PIkU8ZkVa6SlI7xt8X+OHGb+QDAQSqLw5JONtfLrDxaZJuNZN3PK9gOh+QOiDanYOwOi4doIVUAV8KZAwvCEOPLrrrtOfvCDH5i8JosXLzahJuwdHwzRefPNN+XPf/6zAQUWEHhrbRpXtGLFCrnwwguNdpdddll3jhMWYjx13nrrLbnhhhtkzJgxcXsZDZ4sr2+U96vDbqO8MOw/smJQJzOMK1KcA9o7O4XEj0vX18iy5laj1djC/AGVGd+1j/11frLGBNq/sHqtNLS1Gy+BQ8eO7K+mxrwOLvHPr6o0W00WhLJk3+EV/Q50+hOeEKOPp9Vg8vchlIaQmmChf9PHjJTsTD89XVBdI8vqw7ueUHYdUirjCgdugnRe4AA9eN8ABZMBg4MBnuANQI4ayuiCPPna0P79g44PeNLU3iHzVq4xfeA5dfCYESmvl6y5rG/pVtINngxUfROFJ4RA8oyubW2VUfn5csQWCOxijWGy9k4qc4E/LL27br0QDtYhnXLi+K1SqUbPUQVUgT5SIGF4wvVJckrSWEJOXn/9dcnMzJRrrrlGttlmG9M8ksYSkjJhwgQDVkjapyWsANoAT6ZNmybnnXdeD1luvfVWefbZZw2csiFR9oC33357EwkvueQS8xna21JfUCQbi0vDBlZLs5RvqJJntbV2AAAgAElEQVSMLjdfHYNNFWjOyZUNZUNE2tslq7PTaJXX1CCFjV+9GKluiSsAXC0sTO4v8J2SIe2hLAm1tSV+oT46siG/QGpKwi9WzIOy2hrJ6PrLYR9dcpNqSSDNf8kkj061ba05uVKXXygldRslq33z659qP4LnAb6qyiuEvtmS39ggZRvX+6je1IFm9YXF0pGVJZnt7aZu1tuBWurzC2VjSTh8tqCxXko3bpqXIVbbeWHtj7nYl9p1ZGZKU26+NOTlS1Fjg7m3+7N0dHQYr1OXHQjbs0KyvmyItGdmSlZ7u1RUb7qrS7w+1TFnMzIk1N4mBWn4jAMsU/oqCXQ8/QbL9+yMSa69rAESRpSuuqZi7yTT18ZOkdfaRbBIKjJFxm1+x9xkmp/wsVOnTk34WD1QFRhICiQFTzAEeMl/+OGHjTFw2mmnyU477WRCT/7whz/I+++/b4x/4Mn555+f9MvUQBLGd1uAIP+/vfOAlqLI/vA1gSgKgiIiuIKisKCiYo4rSUUXXWVVxCwY/yaCYM4RxLCSVBBdMWMCERATRlQwo2BGxYQKogim//nKU7M983pmet70m/f6za/P4aBMdXXV11XddX99615Ej3322SdUPJk4caITQzIfJl4oCbbHCyrBsk3+3s7Wab2pLfnqK/t05gv2Z4kNv7h5VXV9BOmt16ix1W3QwH75/ntb+v1fWaR0FE6ALzHM+6SLpWu33sTW36qjzXt8qv288K/4GaU8eL7CslQL25Xq1LGm7Te3z2dVFGhL2e84r1Vn9fq2Tpu2tsa6Ta3Rhi3tlXFjbPlPf3kexHWs2qChrdaokX330YdxVVll9azZbH1rsH5zV//iBV/Yos/mR74W227JrsezUkflCDCf8T4hHpyOyhMo9bOx8i2tuWfefvvthgc0R+/eva1587+eCzoKI1Bb1juF9bpqSgc/AFfNFVSrCFQNgYLEk6ppQnnUOmfOHBdEt1OnTgV5noTRUcDY+MZMVDfW+K5Y+2oqhRtr7aNWsUel3LZTm3n6VMWL//wrM4mOyhGoDdt2Ktfz+M6KY9tOfK1Jbk3atlP8vWOLPR7jHM8995zbcq+jcAJa7xTOTGeIQG0jEIt4wleBZcuWWb169Wobn9j642OedOjQwfr165f6usziaujQoc5rp5iYJ7E1tMwqknhS/A3XYqJ4htQg8SQejl48kYt/cTwlnhTHj7MlnhTPkBoknhTPUeJJ8QypQeudeDiqFhFIMoG84gnu+MQ24U+2A/GENLzERNlrr71shx12ULDYDFg+2w5bnAim6+NDsNA/99xznfDE31H2mMvzJL4pJ/GkeJZaTBTPUOJJPAypReJJPCwlnhTPUeJJ8QwlnsTDUOJJPBy13omHo2oRgSQTCBVPSEuMd8SSJUvc3sg999wzUqAuvCtIt+u9KZSqOH1oTJkyxUaNGuVSFfvUznPnznXBdY877jjr1q1bpLEk8SQSpkiFJJ5EwpSzkBYTxTOUeBIPQ4kn8XGUeFI8S4knxTOUeBIPQ4kn8XDUeicejqpFBJJMIKt4QjrdE0880WXW4cBjYvLkyfbll1+m+tukSRPr3r172nYdtp+MGDHCCQQST9KHBl9E4cLDF8GErU5DhgxxweT4/6jZSiSexDflJJ4Uz1KLieIZSjyJh6HEk/g4SjwpnqXEk+IZSjyJh6HEk3g4ar0TD0fVIgJJJpBVPMGo79+/f5oAwkODQFP+t5122qlCJP6FCxe63wcOHCjxJGRk4M1D1PNJkyY5b57999/fevbsGWm7jq9O4kl8U07iSfEstZgonqHEk3gYSjyJj6PEk+JZSjwpnqHEk3gYSjyJh6PWO/FwVC0ikGQCBYkndBRxhMCmAwYMsMaNG1foO1t+woSXJEOqaW2XeBLfHZF4UjxLLSaKZyjxJB6GEk/i4yjxpHiWEk+KZyjxJB6GEk/i4aj1TjwcVYsIJJlAweJJPnEk3+9JhlVT2i7xJL47IfGkeJZaTBTPUOJJPAwlnsTHUeJJ8SwlnhTPUOJJPAwlnsTDUeudeDiqFhFIMgGJJwm8e148SWDT1WQREAEREAEREAEREAEREIEyJjBt2rQy7r26nmQCEk8SePckniTwpqnJIiACIiACIiACIiACIiACJvFEgyCpBLKKJ1deeaUdf/zx1qBBg7S+LVq0yIYPH+4y8WT+RsE5c+bYHXfcYZdccokCxlbhqCDoLO6Dhx9+eBVepfZXfcopp9gJJ5xgbdu2rf2draIesvXpyCOPtAkTJlTRFcqj2unTp9vMmTNt8ODB5dHhKuolGc06duxonTt3rqIrlEe1BxxwgI0ZMyb0PV8eBIrv5dy5c+3aa691ayYdlSeg9U7l2QXP1HqneI5kzTz00EPtwQcfLL4y1SACIpBIAlnFk379+tn8+fMr1akWLVrY0KFDJZ5Uil60k7SYiMYpXyktJvIRyv+7xJP8jKKUkHgShVL+MhJP8jOKUkLiSRRKuctIPCmeITVovRMPR613iuco8aR4hqpBBJJOQOJJQu+gFhPx3DgtJornKPGkeIbUIPEkHo4ST+LhKPGkeI4ST4pnKPEkHobUovVO8SwlnhTPUDWIQNIJZBVPBg0aZL169bKddtrJVl555Uj9/OOPP2zGjBk2fvx4YwG71lprRTpPhQonIPGkcGZhZ2gxUTxHiSfFM5R4Eg9DapF4Eg9LiSfFc5R4UjxDiSfxMJR4Eg9HiSfxcFQtIpBkAgUHjM3X2YULF9qQIUNs4MCBEk/ywSrid4knRcALnCrxpHiOEk+KZyjxJB6GEk/i4yjxpHiWEk+KZyjxJB6GEk/i4SjxJB6OqkUEkkwgVDxZvny5zZs3z1q3bm116tQpqH/FnFvQhVRYBERABERABERABERABERABERABERABEpAIFQ8KcF1dQkREAEREAEREAEREAEREAEREAEREAERSAQBiSeJuE1qpAiIgAiIgAiIgAiIgAiIgAiIgAiIQHURkHhSXeR1XREQAREQAREQAREQAREQAREQAREQgUQQkHiSiNukRoqACIiACIiACIiACIiACIiACIiACFQXAYkn1UVe1xUBERABERABERABERABERABERABEUgEAYknibhNaqQIiIAIiIAIiIAIiIAIiIAIiIAIiEB1EZB4Ul3kdV0REAEREAEREAEREAEREAEREAEREIFEEJB4kojbpEaKgAiIgAiIgAiIgAiIgAiIgAiIgAhUFwGJJ9VFXtcVAREQAREQAREQAREQAREQAREQARFIBAGJJ4m4TWqkCIiACIiACIiACIiACIiACIiACIhAdRGQeFJd5Ct53V9++cXGjx9vDz/8sP3222+2//7726GHHmqrrrpqJWusfac98MADNnz48FTHVlllFbvsssusQ4cOqX/74Ycf7Oabb7annnrK6tSpY0ceeaTtvffetvLKK6cBiVouyRT/+OMPmzdvnt1yyy120EEH2dZbbx3anbfffttGjBjhyrZq1cpOPvlka9euXYWycZdLClvm46xZs+y+++6z4447zjbaaKPQpn/77bd29tln24cffpj6feedd7bBgwe7scjx559/2gsvvGCjRo2yL7/80rbYYgs77bTTrFmzZml1Ri2XBIaMw+nTp9utt95qX3/9tetr7969rVOnTrbiiitWal5Gnb9RyyWB45IlS+z222+3SZMmuXfE5ptvbieccIK1bNmyQvN5n1x88cU2c+bM1G8bb7yxXX755dawYcPUv5XjnGZM3HTTTW5M8l5gHPbp08fq169fqTkYda5GLZeEsUgbGTv/+c9/7P3337fGjRvbEUccYd26daswpyn70ksv2YUXXmi//vprqntnnHGG7bXXXqn/j7oGilouKRyD7Zw/f74NGjTITj/9dOvYsaOejZW8iVOmTLF77rnHhgwZYmuttVZaLXo2VhKqThOBMiAg8SRBN3n58uV2zTXX2KJFi6x///5Wt25du+KKK2yFFVZwL9LVV189Qb2pmqZiaN5444223nrrpS7QtGlT22effVKGKfwuuOAC22CDDZyRu3jxYvf/GBl9+/ZNCShRy1VNT0pT608//WRvvfWWPf300zZt2jRnNGUuxmjJG2+8YZdcconj9Y9//MNefPFFGzp0qA0YMMC23377VGPjLlcaCsVf5bvvvrN33nnHiZoffPCBXXXVVaHiCYYR4spHH32UZoRhTATFFu4FIgJ8GZcPPvigW+RxDzBu/RG1XPE9rPoaYPfkk0+6ubps2TLH6fPPP3eGf48ePdxzjiPqvIy7XNUTKP4KLPivvPJKa9CggW2zzTY2Z84cmzhxohPXM8cOV3vmmWecgLz22munLs55/PFHOc5pnosI8BtuuKGtu+66NnXqVGfY77fffnb88cfbSiutVPAcjDpXo5YrfrRUfQ0IJgh5u+66q5vTd955py1cuNDOP/9822677dIa8OOPPzqRZY011kgJK/w3zPmbI+oaKGq5qicQ/xUYm6z7eAdnvq/jfuZFrS/+XlZ9jYzNc845x1ZbbTW3lskUT/RsrPp7oCuIQFIJSDxJ0J3DwB02bJhbBLdv3961fO7cuU44wajFACvnA8P07rvvdp4TrVu3DkVBGRZwfJXlhYmwwvHss886gxe2GKtRy9UW3hhZZ555pp133nkVxBMWtYhLGFgY83yF/f333+3aa691IsCll17qjLW4yyWRLQuu6667Lqt4whdDBIJevXpV8HLy/UUAHDhwoHXp0sV5XiAasGDmHsCZ3/BQiVouCRwRnxBP4OK9b7755hs799xzXd/5MogRG3Vexl0uCQxp4yuvvGJ4nuy2224psQkji+caBmy/fv1Shj+G0V133eXGWDbhvVznNBybN2+eej9gjGOofvLJJ2mGVtQ5GHe5JIxHmPFexavOz+lPP/3UPb922GEHO/XUU9O6gYdPvXr1bMcdd8zavahroKjlksAx2Ebe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FO9nsm35I+oaKGq5JMzpsDZm+9gR9zMvan1J5RgmnujZmNS7qXaLQOkISDwpHetYroT7ISnriAmAIUEqP1w3STFZzgeLpdGjRxtfnFiAYnAiAmDYZwoBcCLwH+XxOGFxxmKuS5cuqUWxZxm1XFLZZ2ZCoB94QGQGK4UpcXXYq076Z4x/Fra4uQaPuMslhWvYnurMPdSzZ892YidjCjGP8YbQFzQOfH8RYljEIbiw9YxAd/DGtTh4RC1X0zkSVwMPHPqTeayyyip22WWXuRgGhc7LqPM3armazBGPE+JIINCFHYhu/E4sEzzG8LwjdWfdunVdJg+EgubNm1c4tdzmNP2dOnWq8/LEsIdPu3bt7IgjjnDbIzK3KUSdg3GXq8ljkbYF38l4KjLudt999wrPPL7qIz7xhw9CPOMOOuggt23Pe5wE+xp1DRS1XE3nGNa+XJ6iUZ9lcZdLIscw8UTPxiTeSbVZBEpLQOJJaXnraiIgAiIgAiIgAiIgAiIgAiIgAiIgAgkjIPEkYTdMzRUBERABERABERABERABERABERABESgtAYknpeWtq4mACIiACIiACIiACIiACIiACIiACCSMgMSThN0wNVcEREAEREAEREAEREAEREAEREAERKC0BCSelJa3riYCIiACIiACIiACIiACIiACIiACIpAwAhJPEnbD1FwREAEREAEREAEREAEREAEREAEREIHSEpB4UlreupoIiIAIiIAIiIAIiIAIiIAIiIAIiEDCCEg8SdgNU3NFQAREQAREQAREQAREQAREQAREQARKS0DiSWl562oiIAIiIAIiIAIiIAIiIAIiIAIiIAIJIyDxJGE3TM0VAREQAREQAREQAREQAREQAREQAREoLQGJJ6XlrauJgAiIgAiIgAiIgAiIgAiIgAiIgAgkjIDEk4TdMDVXBERABERABERABERABERABERABESgtAQknpSWt64mAiIgAiIgAiIgAiIgAiIgAiIgAiKQMAISTxJ2w9RcERABERABERABERABERABERABERCB0hKQeFJa3rqaCIiACIiACIiACIiACIiACIiACIhAwghIPEnYDVNzRUAEREAEREAEREAEREAEREAEREAESktA4klpeetqIiACIiACIiACIiACIiACIiACIiACCSMg8SRhN0zNFQEREAEREAEREAEREAEREAEREAERKC0BiSel5a2riYAIiIAIiIAIiIAIiIAIiIAIiIAIJIyAxJOE3TA1VwREQAREQAREQAREQAREQAREQAREoLQEJJ6UlreuJgIiIAIiIAIiIAIiIAIiIAIiIAIikDACEk8SdsPUXBEQAREQAREQAREQAREQAREQAREQgdISkHhSWt66mgiIgAiIgAiIgAiIgAiIgAiIgAiIQMIISDxJ2A1Tc0VABERABESgphBYuHChXXjhha45559/vjVu3LimNC2R7fj2229t4sSJNmvWLMd1rbXWSmQ/1GgREAEREAERqI0EJJ7UxruqPomACIhAFRD47rvvbObMmfbggw/aBx984K5wxhln2F577RXpanfddZfdcsstqbJrrrmmXXXVVbbRRhulnf/zzz/b448/btOmTbOPPvrIli1bZquvvrq1adPGDjzwQGvfvr098MADtueee9oqq6xir7zyik2ZMsX9zdGzZ0/r06ePrbDCCnnb9eyzz9rFF19sf/zxR6rs5Zdfbh07dkw7l99nz57tDNu33nrLfvjhB1tppZVsgw02sL333ts6depkb775ptWrV8+23HLLrNel3cOHD6/wezYWeTtQzQVqinjy/fffW79+/Wz+/PkpIvvvv7/17dvXVl555QqUGL8DBw60xYsXp/0Wdu9Lhfi5556z6dOnG3+vv/76NnToUIknpYKv64iACIiACIhABAISTyJAUhEREAEREIH/EQganptuuqldeuml1qBBg5yI+KJ+9tln24cffuiEEP4bgSIocPz555/2wgsv2LXXXmv169e3ww47zLbddltX/rfffrPPP//c/vvf/9ozzzxj6623njMuvacDws6AAQPs008/tSZNmtgVV1xhLVq0yNmmX375xQknCEIrrriinXrqqU6Q4b+DxxdffOGuRb979Ohh3bt3t3XWWccVQURB5Bk/frz99NNPdskll9h2222X97o333yzPfTQQ078OfPMM22XXXZJuy51PfXUU+5aNeGoae0JY4LA9cknn9h1111nb7/9tuN5wgknuHsWJqQx3hDcEEyOPfbY0HtfavZeBOK6Ek9KTV/XEwEREAEREIHcBCSeaISIgAiIgAgURAADb9CgQfbVV1/Z0qVL7dxzz7Wdd945Zx2TJ0+2G264wX799VcnamQahvhdEfkAABBtSURBVBiyjzzyiPPKQFShfgSUzINyiA533HGHE0i81wpCCEbw66+/7kSMY445xg4++OCcbXrttdfsvPPOc54tXCvMCwbBhDK///6720aBWBR2vP/++3bOOefYQQcdZHg85Dsw2gcPHhzKgnPnzJnjRKLjjjsuX1Ul+b2mtSdXpxctWuS2ECGg1K1b192X7bffPvQUxvIFF1xgp5xySgUPqJKAzbgI84lx9vXXX0s8qY4boGuKgAiIgAiIQA4CEk80PERABERABAoigME5ZMgQ5/2BkNGhQwdngOIhEnb8+OOPduWVV1rLli2NrTth4gnGOWICdeTzGsELZdSoUc5TICieXHPNNbbuuuvaPffc49qGGIIXSthBHXi4sF2GLT8cmeIJ7aZfbNNhe1K3bt1ycnr66acNNvvtt19enrnEEy8ENWrUyHnDVPdR09qTjwft5V5++eWXNm/ePOedhEfQxhtvXOHUmiaeeG+oBQsWSDzJd6P1uwiIgAiIgAiUmIDEkxID1+VEQAREIOkEvHjSu3dv5+3BlpzLLrvMiShhB3FFnnjiCevcubPzCMgUT5YvX+7qoVzUeCVz5851Xizt2rVzl8ToRDxhm8ttt91mb7zxRs54LJyPANOrVy/X9jDxBG8Z6sTopn0NGzbMeevweJkxY4YTdfId2cQTRJ377rvPxo4d62KpVLd4UtPak49rcCzsu+++Tkh78cUXncjGFi2/3crXI/EkClGVEQEREAEREAERgIDEE40DERABERCBggh48YQAnRj69957r9u2g+dInTp10upCGMELYJ999nFxS8K2qiBkELwzasyQsMZ68YRtM9SXS/Rg689NN93kRJxNNtnEXTtTPKEteJ2wtQcR47TTTosUgDYqyDDxhD7ceOONNnXq1LQAtpnBZAnSeuuttzqhhnbi0XP00Ue7WCs+tgeCFtt+qItYMARGRQAioC3bQjbccEMXr4XtT8RsoR68fqiDLU947ORrD9f97LPPXPBePIeoPzM7DG3F28hfAy8QBK4DDjjAVltttRQu2osHEH2ivZQjLgxxXxhTbF/q2rVrpHsQHAuwY1sZ26/YusN2sKCHVKZ4khnQ1weQzQxIy3j2whbsiJtz5513uuDJ9O/RRx91Ih7Bj/FYInAt/WUr0ciRI51HzNprr239+/dPCzAc9DzBu+vdd991Ih9xdxDxTjrpJCcYZsZw4T6w5Q3REFGR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i3WBwIEXCry9cBHWt0zWMEE04jqwRSzBmwIDm3S+nTt3tr59+zqhK1t7wjK9ZKbqDbYV475Zs2ZOjKB+zyusvQgSCCUY/3hX+CNszPjfooyFzHsDhxtuuMF5MQVjntDnqVOn2qhRowyPE8ScPn36GGIIwiHl+TfvRRMcf76NEydONP4ED7xn+IM3SPCcYJpursfYx5OJ7UUc3GPiAbHFyscQ8vV6wYgxjuiDsMJ4RHiBdzCAb2ZbEAx1iIAIiIAIiIAIRCMg8SQaJ5USAREQAREQAREQAREQAREQAREQAREoUwIST8r0xqvbIiACIiACIiACIiACIiACIiACIiAC0QhIPInGSaVEQAREQAREQAREQAREQAREQAREQATKlIDEkzK98eq2CIiACIiACIiACIiACIiACIiACIhANAIST6JxUikREAEREAEREAEREAEREAEREAEREIEyJSDxpExvvLotAiIgAiIgAiIgAiIgAiIgAiIgAiIQjYDEk2icVEoEREAEREAEREAEREAEREAEREAERKBMCUg8KdMbr26LgAiIgAiIgAiIgAiIgAiIgAiIgAhEIyDxJBonlRIBERABERABERABERABERABERABEShTAhJPyvTGq9siIAIiIAIiIAIiIAIiIAIiIAIiIALRCEg8icZJpURABERABERABERABERABERABERABMqUgMSTMr3x6rYIiIAIiIAIiIAIiIAIiIAIiIAIiEA0AhJPonFSKREQAREQAREQAREQAREQAREQAREQgTIl8P+5C9zz9OlU4gAAAABJRU5ErkJggg==", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Total Site Emissions", - "line": { - "color": "rgb(247, 170, 157)", - "width": 3 - }, - "mode": "lines", - "name": "Total Site Emissions", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 16.60483674168337, - 25.887685279216296, - 25.132172231275963, - 24.936483503098906, - 24.89882310814985, - 24.9452671862434, - 24.958257606443233, - 24.980012163992726, - 24.91400499288411, - 24.95546052299867, - 25.057879822064805, - 24.92611166256497, - 24.93465840785297, - 25.022751816121904, - 24.934643286608264, - 24.95055385716841, - 25.059913873164184, - 24.94531195485984, - 24.92047823192346, - 24.96827994328294, - 24.991958502939518, - 24.99891884907654, - 24.962987562815847, - 25.088988319385265, - 24.934393122215184, - 24.999207977533658, - 24.947126875069735, - 24.95300067479169, - 25.06237917762319, - 25.019579881343315, - 24.970846189287016, - 25.286042424728425, - 25.16430025271288, - 25.36413980405573, - 25.222631178950067, - 25.25661043187756, - 25.158256526120116, - 25.28005022088201, - 24.829335176498546, - 24.88161150979513, - 24.969779950074393, - 24.92639991505353, - 24.93963320361672, - 25.006715140488964, - 25.00357792442341, - 25.004093300908544, - 24.99864762579417, - 24.9853169934932, - 24.887481580987057, - 24.920785855553774, - 24.952043218818133, - 25.02859754457125, - 24.884192008121026, - 24.965280472475275, - 24.9076827470087, - 25.001606792859192, - 25.058488932284664, - 24.904822907848494, - 24.89538230823593, - 24.908062884953146, - 24.875939965170026, - 24.84810556734338, - 24.873370865016973, - 24.941270484181945, - 24.87603292163699, - 24.93409477246751, - 24.93349502466267, - 24.90722044851535, - 24.861325321258, - 24.875908555888998, - 24.95990891214292, - 25.003538579854798, - 24.97571028354694, - 24.94938181595829, - 24.993570148799094, - 25.026130898284265, - 24.978665664477262, - 24.943052288974663, - 24.91652898917096, - 24.967525074867595, - 24.92458761031655, - 24.929725279960593, - 24.89099457181845, - 24.940854205578653, - 24.938973837120418, - 24.923180268154063, - 24.93261514438094, - 24.945359772846572, - 24.964697647439436, - 24.934411428571412, - 24.990665922491687, - 24.983125602722318, - 24.92340126418344, - 24.945853660451867, - 25.018251519080867, - 24.98098450750318, - 24.972438649470035, - 24.965484469724693, - 25.011846575618712, - 24.959450619955142, - 25.070356378684515, - 25.016876467671963, - 24.95091058003551, - 24.91833706688449, - 24.88142460146458, - 24.879166675165187, - 24.93900825487141, - 24.977944849558277, - 24.93309564379662, - 24.85723444157241, - 24.92579722508536, - 24.932697631275254, - 24.978158707473764, - 24.95526082144807, - 24.965214366092397, - 24.998346646595984, - 24.909026123633886, - 24.883291928721682, - 24.976737611656986, - 24.92239629521665, - 24.853875203657875, - 24.83172146577322, - 24.77181666410917, - 24.836908128019274, - 24.914587118659995, - 24.90346578595641, - 24.99834109475965, - 24.948877931023453, - 24.87010931657823, - 24.937855584464877, - 24.945108640573814, - 24.86377309899442, - 24.900322939288824, - 24.90895761843658, - 24.956891788501785, - 24.85464469491484, - 24.98057081049697, - 24.951210919363035, - 24.999275105763093, - 25.010296008982213, - 25.02597555146066, - 24.989583794262426, - 24.92257163662675, - 24.954660534644127, - 24.907263875487182, - 24.925398338794892, - 24.867347361095955, - 24.85678724342928, - 24.92117785448672, - 24.90323514202896, - 24.946332471053324, - 25.019409297123463, - 25.013537564395854, - 24.90619139295712, - 24.911420532830107, - 25.008468484158332, - 24.939740371906787, - 24.988525074911873, - 24.95303040553742, - 24.899393556900456, - 25.071383029023437, - 25.010414655863663, - 25.00399382250896, - 24.942532014602506, - 25.022018529443415, - 24.96988549878659, - 24.94939831643284, - 24.917566501269583, - 24.960101862332586, - 24.921081892595424, - 25.017959141919455, - 24.973499892457024, - 24.952389580983912, - 24.901756077998122, - 24.960330651824396, - 24.96242102995806, - 24.947220111532125, - 25.07659110072752, - 25.03464993403596, - 24.993417770840814, - 24.946740798826788, - 24.873335413588514, - 24.936867418678425, - 24.955678036433454, - 25.044148540836293, - 25.004162353027233, - 24.93410458480525, - 24.934890943915143, - 24.927648673184464, - 24.96080342311961, - 24.91853996258712, - 24.891280706784666, - 24.847617783170584, - 24.884258041524586, - 24.984248769003063, - 24.921704403425224, - 24.945091010226985, - 24.912563526664716, - 24.875483986038983, - 24.870874374697422, - 24.936425900936683, - 24.95932595946232, - 24.969480754603126, - 24.979360737090815, - 24.96525821493767, - 24.898985799388164, - 24.83785374682583, - 24.88166105633632, - 24.98234863887413, - 24.941532018747747, - 24.96097646710136, - 24.993599229232373, - 24.988085866214853, - 24.956326505384958, - 24.85696567498536, - 24.966440979983062, - 24.92510892555478, - 24.963973958271808, - 24.858760675285207, - 24.804486793668303, - 24.80907465906015, - 24.889008350973928, - 24.927162876240804, - 24.965331533565983, - 25.019391535984568, - 24.85442150512014, - 24.936511037463504, - 25.027408647860437, - 24.927880580155488, - 24.957117361235248, - 24.949724894331595, - 24.92911092567708, - 24.985945769610712, - 24.968412766527123, - 24.94750781736548, - 24.93778689399189, - 24.992907008906485, - 24.96933079415488, - 24.943495833422695, - 25.029512757548876, - 24.95379672500614, - 24.908855705071964, - 24.863975379519314, - 24.960761576391608, - 24.921295118435395, - 24.95639876690786, - 24.903782923029276, - 24.847625665416565, - 25.016648664736536, - 24.977223578973984, - 24.943407246768338, - 24.90060315056357, - 24.92477097419437, - 25.006319588590152, - 25.047769860943745, - 25.00049003153845, - 24.936734299034555, - 25.003460915554406, - 24.98512774326929, - 24.854238281146294, - 24.893360925041627, - 24.92570468167604, - 24.956393951076453, - 24.915630173167024, - 24.942132344304092, - 24.95527240997407, - 24.97610473017691, - 24.929918740638822, - 24.92354804906767, - 24.91016765611853, - 25.02529719600497, - 24.994722389038056, - 25.034886251224314, - 24.979421082269567, - 25.00021808662383, - 24.914158479547375, - 24.97983580405003, - 24.971593410597684, - 24.85265319027483, - 24.884031618036865, - 24.94314666697985, - 24.914188801201142, - 24.905811751742803, - 24.967004634563544, - 24.92601406872386, - 24.965351328162278, - 24.86338198498758, - 25.00386471914721, - 25.058000273893207, - 24.942657255294613, - 25.048099715032784, - 24.99400902453415, - 24.927564620932685, - 24.934102877739896, - 24.92578159427728, - 24.974648646103542, - 25.0352022703524, - 25.055164129024327, - 24.990125341334007, - 24.991108581032663, - 24.992632288925698, - 24.9849869299901, - 24.988863420725266, - 25.00875841539265, - 24.98635221017274, - 24.989427568205436, - 24.970000529334843, - 24.957238099771345, - 24.94507792158729, - 24.976835400213115, - 24.935029032283566, - 24.949551492080317, - 24.929313530184693, - 25.018737127482922, - 24.89593681717134, - 24.886650552146257, - 24.93778857430602, - 24.942945549575285, - 25.028588576889014, - 25.012913369206267, - 24.991991574581, - 24.967982780115335, - 25.00123324300864, - 24.962577242211292, - 24.965026451334587, - 24.968737465514657, - 24.956646542854024, - 25.046670914009077, - 24.94287904311934, - 24.9197713993776, - 24.963577765056918, - 24.97650658937185, - 25.040897201619444, - 24.99542486240812, - 24.91941650619178, - 24.84463095813573, - 24.90105144204528, - 24.914350709393986, - 24.92927130595799, - 24.9325826575671, - 24.861226052052082, - 24.933437137059194, - 24.985288223667524, - 25.008663683410774, - 24.89263718077744, - 24.953391692460677, - 24.87897602427192, - 24.891196295842157, - 24.961241727941925, - 24.917273829154425, - 24.921947887708264, - 24.863612198747994, - 24.887571017661383, - 24.983785354283334, - 24.841781199945743, - 24.903430172365322, - 25.006795481671723, - 24.941491559032002, - 25.06647812403503, - 25.06025770305375, - 24.973904116407212, - 24.987999809147148, - 24.892390793023818, - 24.950679630451532, - 24.985015342066276, - 25.02375518056441, - 24.983163057405157, - 25.017063605174855, - 25.01709571455557, - 25.06065887541712, - 24.97641986126386, - 24.98380362772372, - 24.9498739902229, - 24.985730535184594, - 24.94445429125569, - 24.905786800717593, - 24.908921211826613, - 24.960825084304332, - 24.871089324226908, - 24.938788670900117, - 24.961050328300345, - 25.003781686402007, - 24.985504554456227, - 24.923909111405212, - 24.960084105856872, - 24.9822229283863, - 24.98387702772792, - 24.937195611434703, - 24.929680526709156, - 24.94686657181501, - 24.98574791115641, - 24.880263554475615, - 24.93388008455245, - 24.938776158972047, - 24.89445506838124, - 24.8922355608019, - 24.996078403289786, - 24.958090222382232, - 25.02054914210648, - 24.93133992310504, - 24.98263308829706, - 24.924522391276003, - 25.031457416227163, - 25.00975392365426, - 25.024553530271902, - 25.02143773770044, - 24.92044751823738, - 24.941555099656476, - 24.981943915497737, - 24.894161066762216, - 24.929299585164358, - 24.876166752779703, - 24.858430352759285, - 24.916752594178384, - 24.961333120836237, - 24.99275862944971, - 24.98616170624716, - 24.968133191605347, - 24.98877677031885, - 24.91386368986405, - 24.979441193886508, - 24.97033132987272, - 25.071170085923356, - 24.945994437788194, - 24.90901548510591, - 24.877770873774587, - 24.955860598808158, - 24.93137711559469, - 25.016048237218087, - 24.965067272088383, - 24.919968034794007, - 24.967496928993945, - 24.921675707355348, - 24.971118850390468, - 24.986024082771706, - 25.03555469498681, - 24.948496702846526, - 24.94183036226583, - 24.99158412015252, - 24.949282116276947, - 24.95781030419794, - 24.94441920512383, - 24.934702494502236, - 24.910470064229315, - 24.990639889011746, - 24.930788993527567, - 24.937907045087808, - 24.972700887339396, - 25.041076975594105, - 25.044971099782316, - 24.98610890582711, - 25.01624718147671, - 24.96746998719897, - 24.943470260743993, - 25.050183116574935, - 24.98748148615831, - 24.91603435642513, - 24.859402179387565, - 24.90611112372119, - 24.989021993802357, - 25.000994382370415, - 24.975400941283567, - 24.917712048365686, - 24.9374256433597, - 24.923092996341396, - 24.868480411136677, - 24.964034732010873, - 24.97352237633247, - 24.967824378872955, - 24.938180410506774, - 25.00481388371053, - 24.951445383416853, - 24.947916020176795, - 24.98686054033002, - 24.912360387742872, - 24.907846687993707, - 24.896557341608364, - 24.90680381661663, - 25.06825459091543, - 25.03521392784998, - 25.04390528889075, - 25.01396458179009, - 25.017935001231695, - 24.91311177987269, - 25.016917653254264, - 25.0273652853157, - 24.968110141102905, - 24.951153573656278, - 24.924013658486913, - 24.895421321036554, - 24.905996689334636, - 24.990813216321364, - 25.054316334847925, - 24.97230863669062, - 25.06575634303694, - 25.179021339278062, - 25.040065356186, - 25.05198521605318, - 24.931901737570488, - 25.01264302065662, - 24.976678925797003, - 24.939130198459594, - 24.918078058032208, - 24.9284337437486, - 24.982823756498995, - 24.907249740793887, - 24.915127337450052, - 25.006179096968964, - 25.03119807155101, - 25.77272318762543, - 25.262561931259757, - 24.98895560723828, - 24.99974243240393, - 25.03152491081019, - 24.98280200188904, - 25.011308994774865, - 24.967468117011183, - 25.000658074120473, - 25.017853478094803, - 25.033796079331402, - 24.900647135767233, - 24.954334779860744, - 24.810529205253072, - 24.911781736945837, - 24.939825692098175, - 24.97115648981908, - 25.0365407114653, - 24.991955404853343, - 25.007298432440194, - 24.922889481171573, - 24.879268028283455, - 24.959425891453424, - 24.91495108327343, - 25.016533793646133, - 24.953868598003602, - 24.959880641511305, - 24.93645030362309, - 24.9529401569703, - 24.926375478366985, - 24.98072448621147, - 24.89683177326413, - 24.916839255446288, - 24.9285794677442, - 24.922710109827236, - 24.956201140342028, - 25.011119969881094, - 24.911912453958823, - 24.927215238213883, - 24.966328437892592, - 24.932340972295798, - 25.007187013477445, - 24.999337638427775, - 24.98236661071124, - 24.961346096814296, - 24.869874660579526, - 24.90103399706034, - 24.91565645848535, - 24.89098587169532, - 24.92730774202211, - 24.991753070444627, - 25.022580839444828, - 24.933756757223662, - 24.980648287629457, - 24.98839508719869, - 24.972364967420425, - 24.964234320401772, - 24.99942471785933, - 24.954693242051697, - 24.893864670943845, - 24.95453542301484, - 24.92032333618046, - 25.02652681778764, - 24.92766980695179, - 24.942406391485328, - 24.95194231668577, - 24.952391070966037, - 24.993579981199016, - 24.995637451389662, - 24.98144159829834, - 24.938892246143617, - 24.953051066727852, - 24.920972061352394, - 24.971878217045386, - 25.00728952845251, - 24.92783729638188, - 24.963939241736178, - 24.99655916679732, - 24.92807598206167, - 24.93124411155089, - 25.040997809773113, - 25.047587162650032, - 25.053578449896108, - 24.939512729104152, - 24.926283927625093, - 24.91538557321701, - 24.944843315031864, - 24.97677160364134, - 24.970667009158536, - 24.919450646198317, - 24.953163191607903, - 24.941775844483054, - 24.9061098735249, - 24.883702957523393, - 24.92334883526221, - 24.886057738371974, - 24.845542868787064, - 24.90049120841374, - 24.853289384625462, - 24.83274630481749, - 24.886303377847405, - 24.928735981836216, - 24.981971057567478, - 25.017157029483542, - 24.983771739900725, - 24.961886657788657, - 24.93824253672063, - 24.987772720399274, - 24.943669289702395, - 24.98617642196686, - 24.925309715180752, - 24.97786970100286, - 25.015795955123014, - 25.00893066249023, - 24.998325705732654, - 24.977922045343753, - 24.99936206429912, - 24.923138905485928, - 25.009844557107932, - 25.037491285790658, - 24.900904243019774, - 25.00675750816727, - 24.883873667449357, - 24.866864815065693, - 24.957435258536226, - 25.008068072755364, - 24.95632496304862, - 24.827821684349573, - 24.902600251430005, - 24.945719454436123, - 24.818202104930734, - 24.808967715138692, - 24.878346084188973, - 24.94397705241593, - 24.986718221929237, - 24.95286882297152, - 24.88371508775747, - 24.884915313146006, - 24.937502717963525, - 24.98534643665733, - 24.903666826379517, - 24.898873097888774, - 24.953316601923294, - 24.985558670905355, - 24.905232022197573, - 24.955263400728732, - 25.00503805912669, - 24.882253016768672, - 24.914262186784253, - 24.99139771605038, - 24.948401438290553, - 24.94866222579123, - 24.874431946236786, - 24.80190870181973, - 24.87251693203556, - 24.925807096010466, - 24.953870705883965, - 24.910498723888118, - 24.907245692608985, - 24.96457717619363, - 24.96228067454996, - 24.999503779983336, - 24.945316243148888, - 25.060921627509845, - 25.03644998115552, - 24.938136100226693, - 24.906203254057562, - 24.984951062038476, - 24.95385027656477, - 24.972796004600504, - 24.91596969737401, - 24.973305181437723, - 24.950514120537395, - 24.910284979543633, - 24.974443983375213, - 24.946513164936277, - 24.96493496004198, - 24.93263360236213, - 24.93076219142389, - 24.939912105716424, - 24.959320614918564, - 24.893320799140614, - 24.960817942066196, - 24.898865069881627, - 24.920922445438425, - 24.85059747948735, - 24.987590669849787, - 24.968508931885758, - 24.90290498263305, - 24.931450495943874, - 25.006259578150505, - 24.885031610424164, - 24.910780551466974, - 24.935536119627937, - 24.9191682471742, - 24.905108986123132, - 24.901944937281254, - 24.89284962467579, - 24.95159376750176, - 24.89950414350639, - 24.923734038507078, - 24.939509403514705, - 24.88533529580195, - 24.906978974419467, - 24.893154405585058, - 24.917239035087455, - 24.80930965572353, - 24.921172072496738, - 24.9755237717945, - 25.05091059869129, - 24.964017364087326, - 24.90942627837555, - 24.9028083597278, - 24.938818449413457, - 24.944495618870512, - 24.85694074448248, - 25.03606081863849, - 25.047113195895175, - 25.0648271262618, - 24.967204573133163, - 24.95078716116602, - 24.9554983237577, - 24.870209646699855, - 24.939134972884982, - 24.925230868629562, - 24.94141842228899, - 24.99080353892394, - 24.954939787021704, - 24.98519338274135, - 24.909693951508235, - 24.921986317126397, - 24.903905929353538, - 24.952261797405214, - 24.973370626221435, - 24.950565907755138, - 24.913067010955615, - 24.95783285830903, - 24.953220409522213, - 24.96005130673885, - 24.90300431715878, - 24.836941653001993, - 24.902213192284613, - 24.960612712677843, - 24.96845862808921, - 24.896732219366925, - 24.961137538482333, - 25.00987488434206, - 25.103547348341753, - 25.004918431895547, - 25.031671717473802, - 24.992553138014152, - 25.07323963592893, - 24.9995472139054, - 24.998370591465935, - 25.018334436527752, - 24.989753894568267, - 24.944743424245353, - 24.95388714083913, - 24.919672810034843, - 24.99161032023718, - 24.90818060373355, - 24.953356600115214, - 25.058812888375915, - 25.068231737451704, - 24.872188465772233, - 24.926261339746368, - 25.1088909959853, - 24.97274186554163, - 24.992917278615053, - 24.952662262560477, - 24.992471372363063, - 24.93378075161094, - 24.902125244351595, - 24.887792221798918, - 25.023399137281835, - 25.010234638133923, - 24.933829345421746, - 25.04113055341172, - 24.898284978437545, - 24.933776620209123, - 24.94108650421797, - 24.92371107786277, - 24.960253049228726, - 24.941923620919756, - 24.98207150670479, - 25.029155264319428, - 24.91946677599273, - 24.936247927245546, - 24.839402283990168, - 24.966153778204493, - 24.92727068751673, - 24.95001122948774, - 24.934380073610868, - 24.963628869424408, - 24.983094261201405, - 25.022236215172118, - 24.970237069156248, - 24.954125557824604, - 24.97606180570554, - 24.943422022410196, - 24.972284322818986, - 25.055472231163936, - 24.958517670842333, - 24.91171577380839, - 25.002193600796563, - 24.893250889724207, - 24.85610534319011, - 24.97903147881524, - 24.93296586982405, - 24.929248834378704, - 24.935061267702157, - 24.92870904828633, - 24.87812601932253, - 24.982760660446484, - 24.96631652096521, - 24.947714548000828, - 24.98105206703213, - 24.917022252780058, - 24.84195614120534, - 24.895069251569947, - 24.93172893373097, - 24.949164047505917, - 24.981396621809612, - 24.885987851171272, - 24.87746297877544, - 24.89967047233249, - 24.89150676246407, - 24.958398642566465, - 24.988395541927026, - 25.02231961619978, - 24.963474670680334, - 25.021048324362802, - 25.00213542177257, - 24.903023947764698, - 24.971721869979817, - 24.99420934669879, - 24.92744714360542, - 24.91850421525736, - 24.924336751398755, - 24.934162795284497, - 24.906202399682954, - 25.002574516618836, - 25.000328324938998, - 24.85895340003713, - 24.86927135755773, - 24.923775139851326, - 25.00196607468073, - 24.965804531095433, - 25.009393615709946, - 24.998507231937907, - 25.09218348338144, - 25.024016824103647, - 24.983062489459833, - 24.917778892849995, - 24.87177243913295, - 24.967859980391726, - 24.931877871183133, - 25.018353259457157, - 24.952151043140944, - 24.968705220241276, - 24.990727136167635, - 24.90872507198526, - 24.854462482763058, - 24.848398718164226, - 24.887455023986995, - 24.93608974628612, - 24.968586252223822, - 25.009524433771453, - 24.917807229034786, - 24.911158760402984, - 24.888334516648328, - 24.894236920245817, - 25.041978641340194, - 24.937977934804497, - 24.93465419058336, - 25.1361590879753, - 25.018776273353513, - 25.063921129673993, - 24.970064574510868, - 25.070893843700986, - 25.021071957843873, - 24.994901587506483, - 24.992179742690197, - 25.049415722044028, - 24.978889918160476, - 24.919590048183238, - 24.925872756312195, - 24.981954268565467, - 24.986093370394304, - 24.93993341113459, - 24.957269074634702, - 24.93712024367816, - 24.91781555984243, - 24.97187892772722, - 24.93801568810813, - 24.903574443878288, - 24.903584777817315, - 24.958981828527293, - 24.99507317484435, - 24.909920235715056, - 24.9083837835895, - 24.88154244454863, - 24.908327380154653, - 24.946361150883895, - 24.95434302780283, - 24.91168961819738, - 24.96271982472028, - 24.882900460101176, - 24.977220381608447, - 24.990740771187326, - 24.994566604120532, - 24.971950063866537, - 24.935152304091865, - 24.97582961834916, - 24.92527018385233, - 24.951825889807527, - 24.95337916182544, - 24.90707852974272, - 24.963510154660725, - 24.967160216139124, - 24.971209787652796, - 25.01424235811068, - 24.984775697507082, - 24.95343842856959, - 24.8918459046401, - 24.963284277975845, - 24.953639345022726, - 24.931992326297298, - 25.01177299276648, - 25.05449537333817, - 24.969944317515193, - 24.94173156105689, - 24.91612681252291, - 24.948062987245056, - 24.99273313535414, - 24.96200128777332, - 24.961581835514274, - 24.857721172034474, - 25.014808916590074, - 24.82968610018947, - 24.846466587455886, - 24.96622291495593, - 24.986973936120876, - 25.041310255425223, - 25.00597221949331, - 24.983579850274133, - 24.991772705782978, - 24.949077674124126, - 24.949983291162262, - 24.917970160452846, - 24.895448482566863, - 24.91042983887342, - 24.87707214902533, - 24.924915271119158, - 24.899258609752614, - 24.9315520053238, - 24.935993768690075, - 25.00320483085453, - 24.9778625659946, - 24.994612352441102, - 24.871011033737357, - 24.85671044728197, - 24.926472904259132, - 25.03085943245874, - 25.04103051323687, - 24.9587201925698, - 24.970995929728232, - 24.925747086905186, - 24.948048257663118, - 24.99083757247864, - 24.965417033617477, - 25.01214941839895, - 24.949609460430633, - 24.97436557756895, - 25.04213798719807, - 24.969342426792515, - 24.828167397136795, - 24.863588996651796, - 24.90607556058308, - 24.971153751206998, - 24.922207453118382, - 24.993542337696265, - 24.93742251370069, - 24.948309766267528, - 24.8924643067308, - 24.929775142518228, - 25.020774637588147, - 25.074186457777216, - 25.022616267470987, - 24.98882482177199, - 24.968899722813333, - 24.917092518076622, - 24.98324553115568, - 25.01655362699711, - 24.91110412302003, - 24.96772250105292, - 24.955355661013172, - 24.981120824983684, - 24.89134350396929, - 24.933484307560427, - 24.965080930414167, - 24.95121463723371, - 24.913378480331446, - 24.906629720555706, - 24.87658857909897, - 24.948949575314025, - 24.865732213519532, - 24.962833102536916, - 24.908932812483176, - 24.995514440709396, - 24.926512145618446, - 25.014193058770346, - 24.95886239268367, - 25.013830682044926, - 24.93487088064921, - 25.039573342941885, - 24.995545619777726, - 24.95426242270121, - 25.041035702076123, - 25.07097956419502, - 25.004125992992414, - 24.970897560404435, - 24.92578475044049, - 24.84542634555796, - 24.9402629431616, - 25.03810026773204, - 24.90907596465505, - 24.98316583234392, - 24.915217753684807, - 24.992957382893714, - 24.97772284228669, - 25.030894834152775, - 24.901348868106403, - 24.902705000993585, - 25.024801031462466, - 25.04935218987211, - 24.989080024399, - 24.92013478527252, - 24.920151249827974, - 24.941922082031194, - 24.970876790590456, - 24.986548963294766, - 24.960195921566843, - 24.91297196424869, - 24.915374400200808, - 24.908098384611378, - 24.97601626593979, - 24.954184519834747, - 24.965543662319696, - 24.899122596277163, - 24.971081547592224, - 24.946326238381392, - 25.013728437554526, - 24.96243575798121, - 25.0179068141557, - 24.897537554777983, - 24.948657747841118, - 24.995988742116655, - 24.97343090164268, - 24.94177219539894, - 24.95771974327957, - 24.949435624299902, - 24.97841330277643, - 24.874479190891783, - 24.92332353200385, - 24.906419285438705, - 24.917525698977435, - 24.936375767450393, - 24.954698822516214, - 24.84015219750455, - 25.090507594132383, - 25.20192044497998, - 25.343517055712624, - 25.330607380554934, - 24.930362050112016, - 24.86244980293943, - 24.870577220611104, - 24.903853797790646, - 24.97540766551458, - 24.99301866860047, - 24.90537431683117, - 24.942851394767906, - 24.942715681949196, - 24.954014887199172, - 24.941871564111572, - 24.94858901384973, - 25.01114616333182, - 25.000085741200447, - 24.975764481220818, - 24.901582999330486, - 24.863624656179233, - 24.910207056660518, - 24.94846012069065, - 24.954876884207124, - 24.871634390976833, - 24.982541883136783, - 25.024831452881457, - 24.939947974931194, - 24.964998651941862, - 24.97607708585098, - 24.941181099222813, - 24.91930025801245, - 24.975396047883017, - 24.921849501868458, - 24.931979616903085, - 24.90698875825109, - 24.961921671277064, - 24.805187060907166, - 24.793854787068845, - 24.858632616440502, - 24.8825350420939, - 24.907091807179867, - 24.81118729010567, - 24.8418159195286, - 24.93906641121548, - 24.911398099600902, - 24.868269938015743, - 24.91588393652726, - 24.911034754782825, - 24.93109884563234, - 24.961793724532093, - 24.91585781634404, - 24.935892221554354, - 24.868053552561033, - 24.88307556568528, - 24.870458032417588, - 24.88200605236856, - 24.847273364383653, - 24.842531380649056, - 24.95953389067062, - 24.976275572120024, - 24.952519638370653, - 24.92316977414081, - 24.952595506805235, - 24.933611366479326, - 25.053453109511146, - 24.990046849675124, - 24.9471130188034, - 24.950347282034855, - 25.002999955800338, - 24.95146175793389, - 24.955033613962648, - 24.987464658654666, - 25.00256650235167, - 24.919179837968557, - 24.95122312917816, - 24.897042626201348, - 24.90067749842431, - 24.929687450653798, - 25.0391314740221, - 24.94252572600898, - 24.87007868025905, - 24.93107620923945, - 24.978798983303946, - 24.936199364456225, - 24.907425888002663, - 24.939474903011515, - 24.962643537803896, - 24.949287700766543, - 24.926449756433875, - 24.960589114418397, - 24.93235003893097, - 24.94331742570201, - 25.015279082043065, - 24.98772456174678, - 24.929163466129083, - 24.89950945975462, - 24.869930172725258, - 24.92713046358061, - 24.887480524368865, - 24.926388887524965, - 24.97188180543153, - 24.9134097652094, - 24.923820530686296, - 24.926519356200792, - 24.943399898585916, - 24.92266806163282, - 24.87663590374762, - 24.879323676730017, - 24.909348144875416, - 24.943602780431785, - 24.939840530442495, - 24.95916351332106, - 24.996954570477747, - 24.987357881058866, - 25.02370172403682, - 25.019152282842832, - 24.900060292753864, - 24.896815595658243, - 24.965970251005757, - 24.96571694640445, - 24.956070511568736, - 24.887661151779646, - 24.855450759244572, - 24.872793327722643, - 24.918766333870465, - 24.990178028497073, - 24.940884853844448, - 24.931198284090122, - 24.956544599310984, - 25.002188510376435, - 24.97050295490194, - 24.93400045607112, - 24.930914948136632, - 25.021874692831254, - 24.93302723342156, - 24.906753260341, - 25.023590293792427, - 24.95899051727502, - 24.975783431092133, - 25.03618923180818, - 24.87894040439885, - 24.929430559810974, - 25.0403746640867, - 24.956538943740284, - 24.94430789808146, - 24.93361365816236, - 24.855947084640807, - 24.98488734661673, - 24.9838048766632, - 24.960137791493963, - 24.960321511355694, - 24.934056716345076, - 24.93996650975065, - 25.00089168269682, - 25.02640479200249, - 24.943461416605295, - 24.9858541572902, - 24.904061011824496, - 24.94880110598029, - 24.966211416892946, - 24.923667361611095, - 24.868160851327296, - 24.815251266616052, - 24.855009763825976, - 24.8627325750896, - 24.939873143584414, - 24.92058067108384, - 24.984872725806095, - 25.038613024628436, - 24.979974376857445, - 25.0681337562536, - 24.97908435761663, - 25.030762318283244, - 24.98702024982617, - 24.872947834440254, - 24.947909401550405, - 24.99252798900562, - 24.877026441565846, - 24.954912759793487, - 24.887991203912755, - 25.000305941381036, - 24.884689239250953, - 25.018086348087728, - 24.97824003699905, - 25.016718903158857, - 24.936657729710987, - 24.978152701121765, - 24.966320003859348, - 24.945096646495095, - 24.945979897499193, - 24.97257514003023, - 24.89031531850517, - 24.91831778558254, - 24.92117806273843, - 24.910230006644284, - 24.88653539879673, - 24.921388928677324, - 24.88299358366534, - 24.84356751250987, - 24.960944573904605, - 24.92488193700209, - 24.94647560652846, - 24.91658348343651, - 24.8483561908481, - 24.910492012906545, - 24.970826898606525, - 25.03856438155617, - 25.001172784934244, - 24.94785841521412, - 24.955094261808423, - 24.983791671348758, - 24.836102612581264, - 24.872027530308273, - 24.851572749186516, - 24.868535087569263, - 25.0030264110081, - 25.002445290964033, - 24.986639951637198, - 24.97372774714642, - 24.914701578602745, - 24.939826884821514, - 25.024897935788964, - 25.147202773196774, - 25.21245635499914, - 25.078238639823006, - 25.17855230793576, - 25.1645781320966, - 25.188868170577333, - 24.93340395221073, - 25.013129095718373, - 24.96858963321835, - 24.95204210132095, - 24.934978662676627, - 24.93723936276495, - 24.951816005498593, - 24.842990088847323, - 24.97129560845451, - 24.998169954996726, - 25.027502480463617, - 24.977146458802288, - 24.962936020379544, - 24.96517602281124, - 24.878665993219023, - 24.971023923932137, - 25.011331849633905, - 25.019936208304102, - 24.92300196633183, - 24.934984749093037, - 24.950706497236077, - 25.00125198652763, - 24.972857430519905, - 24.93784498172588, - 24.950438992581546, - 24.852721199637067, - 24.830378278138554, - 24.990829300070132, - 25.02117772161916, - 25.04342322309975, - 25.037600395577602, - 24.950355791491166, - 24.980611558344073, - 24.960648565759143, - 24.970355834730647, - 24.950840690565244, - 24.916022945158602, - 24.979061245004345, - 24.96821980497389, - 24.967052369227417, - 24.954578897878726, - 24.922628220420883, - 24.856734884737243, - 25.072145624505055, - 24.95935841209904, - 24.858299986262253, - 24.959648923142787, - 24.972732214129195, - 24.924103272498925, - 24.917663662264147, - 24.887630231748663, - 24.895881515209172, - 24.85157940487022, - 24.93802498235771, - 24.930318392824873, - 24.888452656586022, - 24.90629599635393, - 24.98482268285563, - 24.90274683398099, - 24.932652158649518, - 24.897229612609742, - 24.933703486675878, - 24.865584076084417, - 24.904732974295207, - 24.910349853364913, - 24.915693458780687, - 24.97045519995713, - 24.963683556055763, - 24.97268177140623, - 24.98006187941996, - 24.922716294749588, - 24.93929876158537, - 24.975902540578762, - 24.913750825181168, - 24.890633337939548, - 24.903833082819773, - 24.888528356513852, - 24.87336378097074, - 24.940043425927684, - 24.956927374432276, - 24.942813645430192, - 24.955719016742663, - 24.87785798290621, - 24.910831153086384, - 24.991623381072223, - 24.96361088914697, - 25.04939061510803, - 24.899391791434173, - 24.98187293764134, - 24.974908082479725, - 24.97512059716844, - 24.942820127421143, - 24.923241981658457, - 25.03926693396548, - 24.971353777461374, - 24.874943353741106, - 24.907636053231656, - 24.9142030390043, - 24.961329325031773, - 24.882052009662036, - 24.933116228400017, - 24.968650034831235, - 24.90457693029748, - 24.96958588816042, - 24.907661922947057, - 24.938229272784532, - 25.00038940966926, - 24.950432232421242, - 24.897541474688843, - 24.877660768579467, - 24.937030101927867, - 25.016622984751017, - 24.924835835692413, - 24.897472734320885, - 24.949906723753703, - 24.91220041854455, - 24.849649081041314, - 24.891989918211728, - 24.98528906707918, - 24.958373418344124, - 24.873285546175744, - 24.833524660818846, - 24.941288264882402, - 25.016585788118487, - 25.028123999702025, - 24.897763858772386, - 24.940719158067512, - 24.909902458673255, - 24.900805983513166, - 24.943274220437363, - 24.929522507707638, - 24.939463470557715, - 24.953249082245335, - 25.026776827097496, - 24.973520565822554, - 24.958377250927413, - 25.013397800408747, - 24.953612362435337, - 24.921994421334716, - 24.919891839491413, - 24.938034808457513, - 24.918755691977758, - 24.85822289418125, - 24.978059264079405, - 24.950216711022666, - 24.924757451969313, - 24.865852527724684, - 24.856764099707213, - 24.91326363974192, - 24.93664683066067, - 24.97760439289301, - 24.929277695318767, - 24.933427883833076, - 24.915794943766976, - 25.001675528190248, - 25.017017566302876, - 24.95248646104819, - 24.928451393183103, - 24.871227549329557, - 24.94666651274566, - 24.91544764668581, - 24.915270111172248, - 24.929402365914274, - 24.93031922009878, - 24.907656817649162, - 24.973583154043013, - 24.933776308877007, - 24.880921224260618, - 24.913629679991907, - 24.90943540219653, - 24.90526926192898, - 24.951967797792367, - 24.977322905412358, - 24.985235623114676, - 25.05430983003384, - 25.001975379123913, - 24.97759657756898, - 24.91093480113534, - 24.90321924543441, - 24.953850661102635, - 24.910907667495742, - 25.031311585542234, - 24.9488109131642, - 24.87223310092535, - 24.937021288121812, - 25.05058666077329, - 24.943817888364123, - 24.98303663135535, - 24.930635499396246, - 24.914178387812782, - 24.963791549091503, - 24.935020291943147, - 24.91892032131458, - 24.980468394973876, - 24.89525879478127, - 24.91095082898174, - 24.88538591427141, - 24.876111698265472, - 24.95197995826399, - 24.939331458174244, - 24.94006468608711, - 24.979019218607228, - 24.900672926800915, - 24.944386681503456, - 24.938406388150902, - 24.98060104367385, - 24.911499620360594, - 24.938399654481877, - 25.053579590122965, - 25.09529930853018, - 25.110077046915308, - 25.032533819135704, - 25.02567385169432, - 24.921790635941793, - 24.952927137665597, - 24.904069951032927, - 24.938130160865988, - 24.900149359239194, - 24.9476943631566, - 24.97492817959551, - 24.944418333669446, - 24.9952223771895, - 24.98617624616728, - 24.960181470609204, - 24.995776690501124, - 24.9141313420563, - 24.938918946605913, - 24.9283193616587, - 24.95150606402917, - 24.977884965791425, - 24.950210771890667, - 24.91916989421341, - 24.929696629530774, - 24.840438512004837, - 24.87495152600243, - 24.879299057453593, - 24.93599084362214, - 24.90005344283464, - 24.959184340969497, - 25.0299780136725, - 24.930742780822698, - 24.922979900962137, - 24.980825164038894, - 24.990025391997175, - 25.022008471635537, - 24.996804984306316, - 24.964689971051744, - 24.92242254094633, - 24.982569442176658, - 24.968611834637983, - 25.03507425150877, - 25.05797985094199, - 24.981919142786708, - 24.919783969988266, - 24.925613922803443, - 24.92633917664231, - 25.067828800533324, - 25.021028191436827, - 25.08671047530958, - 25.034167608703623, - 24.997760024322695, - 24.94267263919926, - 24.958488742832333, - 24.925557276800955, - 24.92947466662268, - 24.95428277540139, - 24.900562970589547, - 24.970165841578705, - 24.95743113700979, - 24.931164207790193, - 24.923530341514628, - 24.908117776063555, - 24.922870491373388, - 25.012025223960443, - 25.087593481083438, - 24.950343338033292, - 24.9000995926329, - 24.94691960255937, - 24.99296708297843, - 24.898289368390255, - 24.965295783191255, - 24.91326671588385, - 25.002644931253933, - 24.93611429958503, - 24.952348262506057, - 24.926408749961972, - 25.00475603041698, - 24.85734529167614, - 24.87520230513755, - 24.864919296791413, - 24.93452026902667, - 24.963656836856632, - 24.92559930041567, - 24.964061691695278, - 24.89911195382532, - 24.87129371928885, - 24.864101599462927, - 24.99199037671983, - 24.93542724677735, - 24.97343673086234, - 25.036489780916085, - 24.84206622557095, - 24.91353197010973, - 24.963171236494553, - 24.927225067619773, - 24.930499728135384, - 24.921988219079815, - 24.970271118218406, - 24.930542091289187, - 24.983138353161472, - 24.957550228420246, - 24.9376487207445, - 24.90100196735308, - 24.919790415149876, - 24.900521545418936, - 24.975207741452216, - 24.992730371164697, - 24.745730141985902, - 24.862764622170072, - 24.897526076262587, - 24.901623331413397, - 24.91083715234372, - 24.88201867375279, - 24.917531305457672, - 25.093202944159742, - 25.03432172668414, - 24.954031064513813, - 24.89906179813694, - 24.980183893955207, - 24.966238635119332, - 24.952795658610796, - 24.945617676112562, - 25.044313283442577, - 24.987830590764368, - 24.84665478969692, - 24.923029942902417, - 24.996216643372623, - 25.073404031897823, - 25.002522322389133, - 24.912901451547917, - 24.969322889295185, - 24.936364681131085, - 24.895520253652073, - 24.88394978959299, - 25.00453111893237, - 24.993080704065253, - 25.010148985522278, - 24.908151978555857, - 24.968761969216118, - 24.995492647567684, - 24.9262643836005, - 24.983192175528256, - 24.990340893568273, - 24.899456620312883, - 24.813833879394817, - 24.890641197580244, - 24.948646133643813, - 24.93247654685771, - 25.046183925544064, - 24.988534858452176, - 25.07325334469698, - 25.019719995551206, - 24.858596838112213, - 24.9407345479649, - 24.952784561479532, - 24.935410996883903, - 24.904061251630594, - 24.901854336452594, - 24.915643975278364, - 24.88809691105086, - 24.971010414868147, - 24.95408124207197, - 25.01976995746795, - 24.903116665081832, - 24.93798699986776, - 24.937721475988273, - 25.008309437618735, - 24.97243958794089, - 24.977449804212732, - 24.98615063056153, - 25.003656451272455, - 24.93138729571226, - 24.96123117692982, - 24.98211966035959, - 24.97660161886544, - 24.909009143911064, - 24.886569447797452, - 24.99128376871607, - 24.96377746066988, - 24.88832440664392, - 24.89252714947943, - 24.9404127697858, - 24.95901227722024, - 24.929458826201248, - 24.893105556662263, - 24.900965066141058, - 24.97627845168889, - 24.929409039173844, - 24.956940500290212, - 25.024531327360478, - 24.949602253439508, - 24.945704474904037, - 24.924599748003658, - 24.85570642721083, - 24.86671984063539, - 24.871043280918354, - 24.914991201373702, - 24.914661917709758, - 25.05929179193939, - 25.02194520658294, - 24.933737307258895, - 24.963721927127096, - 25.054959897813998, - 25.06626601799492, - 24.96191263115926, - 24.974428293402212, - 24.934090045048006, - 24.998851263286554, - 25.017955775697782, - 24.944502362122172, - 25.027139492030265, - 25.008548220087174, - 24.891752655036896, - 24.88098092763418, - 24.984993786761933, - 24.968396611917655, - 24.967412533846577, - 25.02036848496014, - 25.003167934480174, - 24.97974356842583, - 24.94863704106956, - 24.92211107574519, - 24.94687978884235, - 25.05529133308584, - 25.04957506898444, - 25.032210490753783, - 25.015941530127684, - 25.07781095815966, - 24.93952093836976, - 24.846347399951576, - 24.88027627807182, - 24.87229117201408, - 24.89193674241432, - 24.85575162764908, - 24.94245886676042, - 24.97786212984343, - 24.976794272467966, - 25.0190757378298, - 24.963969356998476, - 24.99107329584683, - 24.904258532600632, - 24.899039129762976, - 24.986743488098135, - 24.942563369121878, - 24.914465778617735, - 25.024473545654587, - 24.917418604618558, - 24.96036889310795, - 24.91128854574363, - 24.941665970243264, - 24.97484801555678, - 24.979315300870432, - 24.93979072675539, - 24.996877975732097, - 24.968634946994776, - 24.94807108161618, - 24.938277879918324, - 24.920302931556797, - 24.969149716724516, - 24.885597990849135, - 24.939364978963155, - 24.99250826857076, - 24.95700201245227, - 25.02298734671485, - 24.993663900453456, - 24.931413071160307, - 24.945170274189856, - 24.840320065715108, - 24.949715227994453, - 24.99869604357589, - 24.941142697503217, - 25.010305352853955, - 24.948722561276206, - 24.94750900291102, - 24.95136344170939, - 24.94865970766596, - 24.96470809441209, - 24.93790071076165, - 24.909968834464255, - 24.880562690713013, - 24.901054766686656, - 24.97781778995239, - 24.937270106819106, - 24.832019337465574, - 24.906543527907754, - 24.96141165986329, - 24.97468023667976, - 24.973663630426174, - 24.970771118525356, - 24.97243634848779, - 25.01692214438938, - 24.9940772773353, - 25.051465362487598, - 25.083840362667807, - 24.94493085389025, - 24.938198911047532, - 24.910423858533903, - 24.91548461930051, - 24.966635529087434, - 24.903609354492993, - 24.943987705540316, - 24.947583197727305, - 24.8761274851457, - 24.996685887329697, - 25.05286306039717, - 25.003707474825237, - 24.989441859968686, - 24.966070968079237, - 25.006848152509207, - 24.962069978826303, - 24.93779208776591, - 24.990177294643413, - 24.946739037277066, - 25.023935064963723, - 25.00868423007394, - 24.9736400292961, - 24.870631751677212, - 24.972216776990564, - 24.978451155841768, - 24.94926815860441, - 24.908393472515485, - 24.966385633557124, - 24.905303843156286, - 24.970428530073434, - 24.979004757220928, - 24.960744798578187, - 24.971193841895953, - 24.905045107908624, - 24.85908460515573, - 24.969546432841568, - 25.011182107279495, - 25.042172630572068, - 25.006347760461413, - 24.988959368844117, - 25.00572279888508, - 24.95248319331217, - 25.01234381103621, - 24.93963194759595, - 25.03542011608625, - 24.86229833095711, - 24.901149976065593, - 24.961679243712688, - 24.961558011262127, - 24.951711050717158, - 24.97179860389493, - 24.944595716115103, - 24.990987664612412, - 24.958456494325695, - 24.985449986038716, - 24.94204267235903, - 24.995214507380105, - 24.936946222173464, - 24.94028861203242, - 24.921468081546628, - 24.911074434343213, - 24.929833892823503, - 24.896143808057566, - 24.910624568835853, - 24.89740523737355, - 24.91548449058432, - 24.895541810798072, - 24.925306104736883, - 24.95093747937603, - 24.915774593974334, - 24.907441020610584, - 24.941983459121307, - 24.90891595977446, - 24.982079130447826, - 25.013827055405784, - 25.034990753351437, - 24.874664354130523, - 24.936629873815896, - 24.948684921825112, - 24.96314748716814, - 24.957640236876383, - 24.98737871275705, - 24.936425980296292, - 24.956676013911114, - 24.90866320204156, - 24.97499827552774, - 24.911661198271332, - 24.886452561604777, - 24.907363499411986, - 24.99840598874643, - 24.956184472702027, - 24.917949551106865, - 24.965948095212, - 24.92552539449534, - 24.915806302434177, - 24.890616975626592, - 24.995791007412627, - 24.952970228735403, - 24.92540050785544, - 24.969889581936567, - 24.997722027902654, - 24.92345599669133, - 24.975304918644504, - 24.930885559573905, - 24.891888880055525, - 24.91236715029502, - 24.924797324192, - 24.87595811128375, - 24.90235905575436, - 24.966269254493447, - 25.018497722688213, - 24.98056823724105, - 24.959199502499136, - 24.87788254650829, - 24.96373077006882, - 24.917048566082386, - 24.79369365326994, - 24.750381265852443, - 24.85033117048453, - 24.872607155269236, - 24.941226899196298, - 24.959482707012675, - 24.951761773915404, - 24.949913727424846, - 24.98693516309679, - 25.000726059828672, - 25.014767807478457, - 24.958201908472745, - 24.98898556418426, - 25.0003005977971, - 24.918565086540053, - 24.88528422052923, - 24.974786784146204, - 24.985144901976263, - 24.938170951087343, - 24.937813086857787, - 25.022827819993125, - 24.99315700512096, - 24.950018332392325, - 24.866319315281753, - 24.93177856657507, - 24.959732820887893, - 24.93258580788903, - 24.895071352462352, - 24.902502124175285, - 24.904497746135917, - 24.857462003098732, - 24.90439056381912, - 24.917259188135052, - 24.98638284816404, - 24.98731400350909, - 24.91454782301423, - 24.91882854202984, - 24.92432073265896, - 25.019467654322185, - 24.93259121455232, - 24.86876790916417, - 24.885382809891993, - 24.864100333614395, - 24.93789126202843, - 24.940308510266, - 24.93388214678699, - 24.97976105472428, - 24.954863527437404, - 24.894348964874876, - 24.9155320569229, - 24.91329144520249, - 24.914118277369532, - 25.003294580661414, - 25.041326177339386, - 24.948295931745832, - 24.944488720598493, - 25.01760631230867, - 25.00268199524121, - 25.02384858139027, - 25.3641796326333, - 25.361455113476886, - 25.405819279970267, - 25.421535185299284, - 25.314425705100266, - 25.349939745466763, - 25.489788871936323, - 25.259249081377103, - 25.223891566386325, - 25.161050152646194, - 25.087236550798583, - 25.22220078967296, - 25.0951596764451, - 25.04807084412622, - 25.05713140874448, - 24.988900620064506, - 25.122882529396314, - 25.176380086725075, - 25.11093070729652, - 25.14460473294015, - 25.32353802192, - 25.35281801874299, - 25.514034012059735, - 25.131312166999315, - 25.291847320456736, - 24.9728263856822, - 24.953433225356417, - 24.964346615575494, - 24.95507566625112, - 24.921480020005077, - 24.81397918042725, - 24.946253195992597, - 24.90272582258286, - 24.92218044890518, - 24.940660005962116, - 24.918338704894722, - 24.963092494457463, - 25.054235542174503, - 25.02309987491421, - 24.95525054848183, - 24.92437204086277, - 24.89653516241158, - 24.949500893511413, - 24.860813523739715, - 24.89591836931443, - 25.00002513764233, - 24.969457705147065, - 24.98083051266205, - 24.938735422814823, - 24.94969013712422, - 24.951208347479422, - 25.039675410923742, - 24.964159472463393, - 25.030250321385587, - 24.98233595901616, - 24.891145990529303, - 25.069831851293507, - 24.962796801670354, - 24.916284497676635, - 24.93586270667099, - 25.01173118630289, - 24.895714178582395, - 24.89243116251444, - 24.814198056124788, - 24.821621436230608, - 24.843859761330133, - 24.85998565877746, - 24.931690025493886, - 24.970215758915028, - 24.98018200939304, - 25.000309938111243, - 24.967755242546968, - 24.927585527579357, - 25.097797881542157, - 24.96964552669339, - 24.965171186440216, - 24.966562186043554, - 24.921314665352366, - 24.87960835246915, - 24.98030626689555, - 24.91897359522195, - 24.841594537080116, - 24.825477046910812, - 24.87551717424382, - 24.857822096250896, - 24.908023796885814, - 24.91946780579306, - 24.899378522896264, - 25.010969369960364, - 24.88198949303796, - 24.985051020919435, - 24.91756782693799, - 24.980042040258283, - 24.898456419893318, - 24.942413520405317, - 24.966639244336392, - 24.921908522957573, - 24.93191440921735, - 24.971755496945136, - 24.93779362238632, - 25.019556665550954, - 24.961868763015346, - 24.972754060918536, - 24.957999586380453, - 24.91223999682191, - 24.889827109302207, - 25.05384525386591, - 24.993750647351792, - 24.959379191331713, - 24.96509168840972, - 24.958875820922145, - 24.92621078145359, - 24.893506972964296, - 24.96199504445546, - 24.92691836220881, - 24.94385050802297, - 24.919110499032147, - 24.96190133025582, - 24.88069480083288, - 24.96103907666879, - 24.966316066643188, - 24.89210125979894, - 24.91783159729903, - 24.95534199085091, - 24.955828887490885, - 24.91500910629771, - 24.870213416287747, - 24.935544893315694, - 24.95812111032152, - 24.980215722954902, - 24.967324112108535, - 25.01762011989142, - 24.883188434724374, - 25.042751340076876, - 25.0080342966687, - 24.91042319989619, - 25.10525053901211, - 24.92805555084213, - 24.92795726368704, - 24.915502492270843, - 25.003953061265353, - 25.04535707507225, - 24.960528421069853, - 25.025718363597406, - 25.018420555030424, - 25.08897662656109, - 24.980464951967818, - 24.963372088389203, - 24.98521098318553, - 24.88830713450136, - 24.89437748572624, - 24.85270460969009, - 24.884660597396607, - 24.938898993816743, - 24.925474994155437, - 24.94362308485472, - 24.96135514893082, - 24.90405053160471, - 25.2424147517686, - 25.226080507543667, - 25.289210905680296, - 25.182459919769652, - 25.362255301561515, - 25.366596172703883, - 25.333235391998322, - 25.160000400730745, - 25.074099978169137, - 26.046310562788275, - 25.02336069048896, - 24.952987674367286, - 24.90342697807977, - 24.910041338452224, - 25.026241266580122, - 24.887335318456948, - 24.914433338536988, - 24.872281213202193, - 25.000887393646494, - 24.99874108064381, - 24.977122510671492, - 24.96931865498901, - 25.00466793527093, - 24.902564579189765, - 24.901075419808556, - 24.876871830796222, - 24.889388512687965, - 24.87547536322193, - 24.92427145750652, - 24.942979374826063, - 24.92583099186972, - 24.96774798190103, - 25.000167394546533, - 25.000500159287125, - 24.98600685065123, - 24.91270221151572, - 24.89502538983885, - 24.96328810699693, - 24.90144148295382, - 24.94337100114817, - 24.967238860786495, - 24.984000720819417, - 24.82792589267372, - 24.866304962432558, - 24.818293433143644, - 24.914553682476495, - 24.960787131956536, - 24.948630174605064, - 24.95290723477944, - 25.005440670778764, - 24.97029285310481, - 24.88787255576375, - 24.985044782818207, - 24.939863326178042, - 24.993476242334275, - 25.04671517675579, - 25.052088420159485, - 25.019451188127206, - 25.01315666394016, - 25.00526030829583, - 24.938834375130575, - 24.940772392865018, - 24.91249937190719, - 25.07773230303343, - 25.0101237375571, - 25.044564734835426, - 25.02460130176604, - 24.85511098025477, - 24.857666011645364, - 24.968030036988466, - 25.063167267814386, - 25.04051122687528, - 25.02871101681343, - 24.98629206945555, - 25.04813858490878, - 24.92565266668288, - 24.89724578317351, - 24.933041988616644, - 25.018969024576283, - 24.830016782035685, - 24.878011733071077, - 24.86336078488337, - 24.963509642942515, - 24.920713292058565, - 24.913156932770228, - 24.942894372202055, - 24.919995776470813, - 25.028721569392214, - 25.008313704399985, - 24.975342149691315, - 24.847675656032933, - 24.865879700871403, - 24.84441638292075, - 25.004513119608806, - 24.96912087993109, - 25.00872537200455, - 24.959100695308713, - 24.976630938652015, - 24.987018714613882, - 25.058082280724257, - 25.078615581540475, - 25.05366013536929, - 24.930897563558844, - 24.98111247746753, - 25.02843151992994, - 24.95786434766877, - 24.95608930578951, - 24.9620336256196, - 24.93320335632979, - 24.90674613492328, - 24.93689497681069, - 25.00285960011138, - 24.95036748188013, - 24.965736003450985, - 24.964820793195692, - 25.057039452915898, - 25.037822984512708, - 25.004540618325926, - 24.94316289232013, - 24.964292022958777, - 24.964400275440536, - 24.944662605171096, - 24.861262350698283, - 24.94401731583318, - 24.867392379626285, - 24.95090817327526, - 25.065254718514815, - 25.052712826500823, - 24.914652066661105, - 24.908414767393012, - 24.903461677580566, - 24.9043427857941, - 24.917892873502918, - 24.90165461901472, - 24.95341420592018, - 24.904893941156082, - 24.888011601170273, - 24.948543897712575, - 24.986208067460375, - 24.899549850090484, - 25.03645831570009, - 24.941775231485437, - 24.903830032158858, - 25.08601650623927, - 24.94070377065729, - 24.942156605195017, - 24.917544338457915, - 24.908189152948204, - 25.011422460797903, - 25.03451002062213, - 24.94446924268513, - 24.964494404799673, - 24.99039010737119, - 24.94922906456393, - 25.012798515893422, - 24.96451101827855, - 25.0425216825596, - 25.01970966115016, - 25.00697425262934, - 25.018146729717238, - 25.012236992313586, - 25.032818610791118, - 25.008370232773494, - 24.928296289165935, - 24.96992323784063, - 24.839346835957457, - 24.952123310156388, - 24.96808976664179, - 24.951565768019, - 25.060701413889017, - 24.966126190333732, - 24.99231887869071, - 24.886034653811926, - 24.871313516211877, - 24.882301428827148, - 24.976546860425433, - 24.879502898959117, - 24.996065920961968, - 24.93828480084148, - 24.895073164896893, - 24.928612324222293, - 24.94833547226926, - 24.991892953449533, - 24.961632032610254, - 24.93289054067226, - 24.935925256995322, - 24.83517532628654, - 24.96468216255243, - 24.862099445192072, - 24.949706753662632, - 25.011943742871345, - 25.01527616016905, - 24.944175601771896, - 24.90113112199817, - 24.885274902547316, - 25.095301048433562, - 25.001121763628085, - 25.015595848187758, - 24.93146428275214, - 25.003889475623346, - 25.071873881780128, - 24.965586297387397, - 24.993017792821192, - 24.93012937902943, - 24.949604305487476, - 24.981724140033553, - 24.972152230699166, - 25.04047703377715, - 24.9886702475778, - 25.01647245331868, - 24.95574321184001, - 24.89615686411353, - 24.875451249446833, - 24.920822492178495, - 24.924996927051723, - 24.973599845231206, - 25.001236228255806, - 24.97177364038056, - 24.961475715565857, - 24.945049854951755, - 24.97543465465249, - 24.940611668985014, - 24.9878736895322, - 24.93628892651601, - 24.860590868947355, - 24.879813063894524, - 24.836834378785078, - 24.935601405799154, - 24.955099641822862, - 24.944127670533923, - 24.887246148170625, - 24.832492943397007, - 24.92788814554042, - 24.926460304088828, - 24.93172308857128, - 24.942906327993647, - 25.00186983593719, - 24.87866572728216, - 24.872043921483105, - 24.919509851762577, - 24.94609511445824, - 24.941074454985543, - 24.982491050207656, - 24.913472808534248, - 24.971039283429214, - 24.99599365239591, - 25.039089909538376, - 24.99889350490164, - 24.947161009734145, - 24.881529159801154, - 24.834512011526677, - 24.910361912358386, - 24.995249420790074, - 25.005027054277576, - 24.92314431847654, - 24.962313448115054, - 24.984622992100302, - 24.92516723784723, - 24.9787386561214, - 24.90271682040268, - 24.821192784323692, - 24.91776219551352, - 24.908884176291323, - 24.94244953198538, - 24.907661450234535, - 24.905530587176862, - 24.965733721317967, - 24.94251675447781, - 24.885243379474304, - 24.92411530219603, - 25.161332147654075, - 24.983695286197527, - 24.96184815667245, - 24.970402204197534, - 25.06138839406018, - 24.868989314986095, - 24.913039363088792, - 24.962716633671704, - 25.000658240887656, - 24.999136818109598, - 24.982481955919056, - 24.94314424767602, - 24.957473409371794, - 24.88363654594972, - 24.945395934747076, - 24.987586424058556, - 24.93253070246101, - 24.917938013151712, - 24.9858967140959, - 24.919756939179663, - 24.939539711959807, - 24.97143578658615, - 25.000286163716112, - 25.032772715535963, - 24.971516941547886, - 24.993134117830248, - 24.97677827082061, - 24.962798392681623, - 24.8303465312032, - 24.95014933952077, - 24.957970253453418, - 24.987049026261495, - 24.969896203804325, - 24.895268970142652, - 24.945023250168184, - 25.023506625033967, - 25.037141715816535, - 24.86761043854469, - 24.975508563758538, - 24.942405895988422, - 25.0187324588151, - 24.909244764381718, - 24.865101229724658, - 24.902461945556063, - 24.92801271473143, - 24.908813330404755, - 25.01717721565933, - 24.99287164501647, - 25.052991429881054, - 25.021225655055503, - 24.948080159995698, - 24.953960199007454, - 24.912724833071188, - 24.931493546979468, - 24.969586933928667, - 24.972104479142725, - 24.90679898856188, - 24.905647905819926, - 24.974035171724644, - 24.911702602535808, - 24.952091964405533, - 24.98880796243366, - 24.859348290675584, - 24.89512490407684, - 24.98863499291509, - 24.946176211346835, - 25.01780638113076, - 25.04282415515654, - 24.93460797606596, - 24.897197668628117, - 24.96301440853312, - 24.91488981708065, - 24.98083878234244, - 25.012627821034222, - 24.987401793674813, - 24.933332058808794, - 25.016724830168357, - 25.03740186860165, - 25.041562098925677, - 24.99026945724271, - 25.02309376325573, - 25.019212493787364, - 24.97398562974996, - 24.926977994209423, - 25.00093592999599, - 24.98182552897324, - 25.023748234232414, - 25.001658951416715, - 24.98388448716482, - 25.006852410184642, - 24.987325109970488, - 25.02885770774172, - 25.07531247983851, - 25.044705792224203, - 24.980431364738777, - 25.045707305046662, - 25.02222117759115, - 24.936586263211524, - 24.93994526219997, - 24.94814402245879, - 24.92876743654336, - 24.948381693188562, - 25.039589782001375, - 24.97149113485589, - 24.911118013804863, - 24.835405616887797, - 24.947991806924012, - 24.92686734394923, - 25.021980093495763, - 25.023376680542658, - 24.96085786153037, - 24.86861551158304, - 24.85252577336986, - 24.937247924401316, - 24.899567524429, - 24.944140458092022, - 24.972383935131482, - 25.04373295785942, - 24.9548397671548, - 24.892548477388303, - 24.87090255958951, - 24.965725523277086, - 24.9811665076816, - 24.97429068053079, - 24.90195092577254, - 24.89515934788865, - 24.87085404082667, - 24.931396241926706, - 24.97519322225719, - 24.939890767479312, - 24.991384289916745, - 24.98165602785313, - 25.023283587772106, - 25.00330244468966, - 24.976742992124734, - 24.86051908474559, - 24.901348118090787, - 24.962665148925346, - 24.937159905035585, - 24.919847929834077, - 24.892925242778688, - 25.05707764339975, - 24.979795099440953, - 24.89656890013668, - 24.924375728423577, - 24.967420667366017, - 24.906579231197345, - 24.92443469446291, - 24.921066938488664, - 24.915057014234087, - 24.98726536634068, - 24.963371897320343, - 25.001710575564964, - 24.951339119828944, - 24.905904672163615, - 24.822990595196714, - 24.904841643229297, - 24.958463852032153, - 24.942236609154012, - 24.983293732598117, - 24.947026152759005, - 24.903223738602925, - 24.885015476426823, - 24.91178471888297, - 24.9666562682274, - 24.987245937258315, - 24.99967268716266, - 24.9890710519571, - 24.94727842270015, - 24.946747745130217, - 24.93741671082072, - 25.003124790765703, - 24.918476559661894, - 24.963036573991022, - 24.945224911637442, - 25.006319170795322, - 24.937247089006767, - 24.904567589177027, - 24.865577747824084, - 24.776490893589337, - 24.85884292396952, - 24.889609980443282, - 24.959051411796928, - 25.00432548305671, - 24.86293813620145, - 24.934142861354886, - 25.02742416013171, - 24.91508292112306, - 24.885409934964407, - 24.94954378584835, - 24.904185155358284, - 25.027546962834474, - 24.97760611271993, - 24.939747778014887, - 24.96625904165029, - 24.937995078474835, - 24.991639982257222, - 24.946516874140034, - 24.96977510050956, - 25.05006919112049, - 25.03852322828918, - 24.921433993942276, - 24.969303106289566, - 24.967975826323517, - 24.912708909373947, - 24.922772501331494, - 24.96617220436537, - 24.97830695771171, - 24.965140386464412, - 24.92365722250651, - 24.888849661000613, - 24.981136073319824, - 24.926255935390273, - 24.98339601734174, - 25.008008872088666, - 24.975278839641014, - 25.052079709556857, - 25.00437656030492, - 25.014355452709996, - 24.997422695572304, - 25.02045451484223, - 25.001670709695617, - 24.989300281407203, - 24.9789375628587, - 24.95987393236669, - 24.985344655146, - 24.936294257879815, - 24.949893236177214, - 24.907864582778334, - 25.00469572509845, - 25.010335840603442, - 25.04769956239403, - 24.886032882671586, - 24.910605524061065, - 24.944960469193866, - 24.96292711047836, - 24.961170383097603, - 24.93001014564551, - 24.890397236906328, - 24.908576288898473, - 24.933301006386735, - 24.99003246781423, - 24.9494176759913, - 24.99266065798644, - 24.916281062057713, - 25.003268481071785, - 24.985360928483733, - 25.017054778591458, - 25.01361260520487, - 24.966995304322513, - 24.984798341843856, - 24.99911516205188, - 24.971384347341857, - 24.90173490814223, - 24.949519493183473, - 24.938182779332127, - 24.950327394479892, - 24.92895975791275, - 24.875362253845694, - 24.93406883970723, - 24.988734279793754, - 24.961552739581542, - 24.902053791824052, - 24.993308575550856, - 25.015561426159053, - 24.99308982724822, - 24.881595492538437, - 24.956092040220213, - 24.946404859096873, - 25.0548139824516, - 25.014151440970878, - 24.97420993621816, - 24.945514678741855, - 24.85089170481126, - 24.918993092787325, - 24.876014337566836, - 24.958187803335782, - 25.01399695977269, - 24.947053853731276, - 24.998236123272683, - 24.94590329621737, - 25.05197075959706, - 25.01920081978895, - 24.871995756755737, - 24.963588953972618, - 24.880336113835014, - 24.923870927472258, - 24.963421463683552, - 24.9304189840667, - 24.9632246418767, - 24.92317020497761, - 24.915693282594283, - 24.958619393580012, - 24.970304290512782, - 24.943781307542103, - 24.980274341414187, - 25.02313393228502, - 25.007917136820815, - 24.965609748918475, - 24.939164930138606, - 24.950168137719537, - 24.99557296907153, - 24.95218040131186, - 24.92313768222259, - 24.964215561094434, - 24.988666222018892, - 24.966110675642717, - 24.91575369291286, - 24.931942540808123, - 24.964726207861503, - 24.917648566805724, - 24.900867185491776, - 24.874501497400104, - 24.825189023116305, - 24.936372524558443, - 24.936741790731748, - 24.972194032972695, - 24.88155807546167, - 24.966375711158165, - 24.91202377748063, - 24.97577192230972, - 24.970530437528886, - 24.892217312694697, - 24.87646296773362, - 24.929685722732195, - 24.956189146340968, - 24.880263876021907, - 24.88644260410905, - 24.922143011684234, - 24.969892612933098, - 24.977824305958833, - 24.855141163838958, - 24.925889877042092, - 24.94527145406066, - 24.969151100915326, - 24.98755489671796, - 24.953616628477967, - 24.883853760379715, - 24.96419021549105, - 24.9226062669233, - 24.969985929586606, - 25.00546143049229, - 24.992971993778838, - 24.95143481448963, - 24.931531638873643, - 24.854849599315248, - 24.84508185219559, - 24.916059003439685, - 24.864044461999804, - 24.9556338000097, - 24.90277565369415, - 24.940543336799294, - 24.99158521372008, - 24.89885811786985, - 24.891747472441324, - 24.943740589455906, - 24.85313837719884, - 24.914989705533422, - 24.90818344342242, - 24.931393664784, - 24.971941203905384, - 24.875308358236367, - 24.880699415202564, - 25.00182625964679, - 24.94491817431826, - 25.00182345593162, - 25.011784595542444, - 25.020013888735456, - 25.08665243373921, - 25.062881159968107, - 24.81675535909291, - 24.892891668312444, - 24.948682526381084, - 25.027762442064642, - 25.06469377673885, - 24.985620558305335, - 24.99895355781664, - 24.97415167902725, - 24.941131289068053, - 24.936253534073956, - 24.919400278589407, - 25.0635187230306, - 25.079559742085195, - 25.037354739173814, - 24.942244942740672, - 24.928619959770792, - 24.933072696741405, - 24.843665681332148, - 24.882968534909885, - 24.94413540660788, - 25.016409529354092, - 24.927852702089783, - 24.97858192375352, - 25.208775157281945, - 25.13911299242926, - 25.247943636389138, - 25.39117791408198, - 25.009342973264722, - 24.918157858925532, - 24.947702811630293, - 24.918273382627486, - 24.912925267003796, - 24.882281377199586, - 24.911069640637045, - 24.882564020384077, - 24.761466137352873, - 24.878757118382595, - 24.845468772522832, - 24.873504040790607, - 24.911209529434757, - 24.883767076778817, - 24.94750875575803, - 24.86449816126414, - 24.969869363966836, - 24.925820940754242, - 24.919806384770673, - 24.899703897182555, - 24.960569117104995, - 24.904602478062948, - 24.942518926891168, - 24.941657062677177, - 24.977079649131408, - 24.935966410482337, - 25.031038704628067, - 24.946372387967557, - 24.99423260408541, - 24.928130342930658, - 24.971279000250192, - 24.97964816694433, - 24.957070529608693, - 24.938937114414585, - 24.92381637173537, - 24.92986704834042, - 24.97018745173839, - 25.016710724370654, - 24.97184981123896, - 24.94729036093278, - 24.92968893886622, - 24.930932567803914, - 24.96107051164841, - 24.95309045811456, - 24.94701039125104, - 24.987835480606492, - 24.956254917708637, - 24.93851362325619, - 24.956363961750885, - 24.937556817574514, - 25.04506633017239, - 25.005056603189125, - 24.961511429665975, - 24.97275231393065, - 25.015087588005844, - 25.035713309491342, - 24.94449371805606, - 24.905611854564032, - 24.935519461479494, - 24.98273833743864, - 25.014224999273615, - 24.892984572362913, - 24.927009774758332, - 24.982320888718107, - 24.92901266938528, - 24.959584658118736, - 25.043660352361016, - 25.03008881739234, - 24.998421050915955, - 24.99858100075672, - 24.993845424101014, - 24.948080186545077, - 25.028259561520102, - 24.966498257334628, - 24.866206463996797, - 24.899648961649277, - 25.022690365250387, - 24.961930204556765, - 25.017037601620665, - 24.970989248234147, - 24.929256770013623, - 24.901044943738018, - 24.92357528449277, - 24.922171055398664, - 24.97568932124336, - 24.919077902982878, - 24.9456579640154, - 24.972303813973458, - 25.047922008803823, - 24.976874889945616, - 24.970213252199425, - 24.972533913858413, - 24.889979326347046, - 24.845427984105925, - 24.96627179248418, - 24.894955388567887, - 24.969996329387552, - 25.00973678907295, - 24.934364368794586, - 24.905516792760366, - 24.94489177626626, - 24.880678820242565, - 24.974260217049753, - 24.886872631548925, - 24.869166794126606, - 24.943658530553463, - 24.938232783152273, - 24.998260235134964, - 25.019454101454194, - 25.031558950145147, - 24.989452332080788, - 24.925048383662325, - 24.88721042817854, - 24.90598248145273, - 25.022293639104554, - 24.95803495277, - 24.881985387720846, - 24.933655243126786, - 24.99419329623828, - 24.958708382870284, - 24.982186843021715, - 24.917023308411657, - 24.93086863204806, - 25.054338945213278, - 25.03871999938258, - 25.002414230783003, - 24.96206575837261, - 24.90603299359438, - 24.92343147542278, - 24.9954757960422, - 24.92059779342693, - 24.86910601290369, - 24.903725289392096, - 24.899799660099173, - 24.97384651760278, - 24.96236246716698, - 25.00205016908275, - 24.99950319007766, - 24.983310311037776, - 25.047027088252264, - 25.069384897828513, - 25.010107398171854, - 24.912133661543592, - 24.870795250121297, - 24.935079384499225, - 24.953287878638, - 24.954670831694152, - 24.988115963968315, - 24.95636272882777, - 24.980495776732628, - 24.837721977291, - 25.043663493233915, - 24.987109146251218, - 25.061752013337145, - 25.009427236461384, - 24.950380506360837, - 24.93387111217327, - 25.013997070038354, - 25.040620808985373, - 25.053464202492663, - 24.907940976030616, - 24.867250789022734, - 24.92910036394544, - 24.98178371723736, - 24.985886104705283, - 25.004331376045705, - 24.90632526127132, - 24.98815440763388, - 24.94026238505119, - 25.06869405741824, - 24.97891248741491, - 24.937657333033286, - 24.93273225193811, - 24.981564679780554, - 24.94298891007143, - 24.895578535594105, - 24.891396452488593, - 24.9665735866905, - 24.9559464134664, - 24.93224174653001, - 24.93323971901293, - 24.847382877903655, - 24.875411372789237, - 24.900350567459967, - 24.92833136570458, - 24.969121214031667, - 24.979571245733727, - 25.02225308459603, - 24.974432681207517, - 24.965814823265312, - 24.86188721111852, - 24.948689024629907, - 24.951846698403838, - 24.842734843401253, - 24.842643608677555, - 24.953446890959313, - 24.91223618108515, - 24.948067164412365, - 25.00104434571319, - 24.962903127109918, - 24.94535756537828, - 24.972025370600768, - 24.96083971588924, - 24.9594817956689, - 24.893515852226734, - 24.980597605882757, - 25.03039988846147, - 24.981334347679066, - 25.047882152740705, - 25.11822026196517, - 25.03120486511225, - 24.971436076753058, - 24.981555995220212, - 25.03790768440686, - 24.99214624525831, - 24.968138067918048, - 24.870456458881826, - 24.931970020877124, - 24.80117187502514, - 24.88788202089227, - 25.010737621691334, - 24.9564866540206, - 24.992956815648498, - 25.03602138647193, - 25.01961817069317, - 24.921011012745343, - 24.923873563970197, - 24.986209562808604, - 24.968937004628778, - 24.984488978055417, - 24.956415248276755, - 24.951375574072983, - 24.99307759226174, - 24.90172475437045, - 25.035312321391984, - 24.93624878760897, - 24.87959887403461, - 24.94723724415971, - 24.986763852773045, - 25.0888811814225, - 24.960889700620015, - 24.90196904928404, - 24.974240900059378, - 24.98881065299968, - 24.972606744300073, - 25.0559048079977, - 25.05333539398314, - 25.01781840551636, - 24.931002835225478, - 24.875331348085695, - 24.968710820520265, - 25.060245633315525, - 24.971461654983127, - 24.925027502370636, - 24.952702462625695, - 24.911342747133226, - 24.940350037208425, - 24.897994333083552, - 24.875180026202255, - 24.916051119243356, - 24.87480396275828, - 25.03525526386889, - 24.99981272977452, - 24.918594717562655, - 24.95382557201514, - 25.057315674386942, - 24.878660585254345, - 24.973604036611558, - 24.959186107950817, - 24.99747248726881, - 24.993274634754655, - 24.91699851360125, - 24.963862585792334, - 24.948142041538787, - 25.002167994488502, - 25.05384017844991, - 24.95426224670002, - 24.985084744109578, - 24.93678402968306, - 24.915178286118792, - 24.915759767971345, - 24.989574724230437, - 24.94729757449199, - 24.923549597804445, - 24.85699336344512, - 24.908770155603477, - 24.980651813975726, - 24.940371531756714, - 24.960236003362006, - 24.972809975412677, - 25.03240089438018, - 24.860685056549734, - 24.964300899703474, - 24.916432850560042, - 24.86180441311993, - 24.983120825137107, - 25.012310530014858, - 25.077969687897376, - 25.055444801652925, - 25.872311717953625, - 25.712377752779933, - 26.225761876661473, - 26.49293538295606, - 26.4147089173995, - 25.601718673759358, - 24.94244103986666, - 24.975555461778505, - 24.935463242468018, - 24.987508869360603, - 25.033419579374563, - 24.925157160263154, - 24.87226114149295, - 24.951043001909788, - 25.014714866798336, - 24.8917861024378, - 25.01264179669287, - 24.981729221972465, - 24.926564967027364, - 24.857197471493848, - 24.925552423469824, - 24.966800984595395, - 24.91619833415275, - 24.982915745531663, - 24.932948323777637, - 24.96564030631641, - 24.95081621150915, - 24.948598335341508, - 24.8926618229712, - 24.87504377398392, - 24.960768157356323, - 24.950464879442983, - 24.986196007486832, - 24.998171914025136, - 24.889454353599938, - 24.990931438278857, - 24.97389915200969, - 24.911278399338915, - 24.846701292206596, - 24.986203254113803, - 24.91714197967283, - 24.90272589701705, - 24.951310059118562, - 24.970968159966546, - 24.934626435853605, - 24.913059202691045, - 24.91869178089989, - 24.948637966437694, - 24.92954547706488, - 24.948179544965768, - 24.889380062436956, - 24.863501163936547, - 24.955468814026055, - 24.92432431195005, - 24.993382734080217, - 24.926680223504498, - 24.89593574642062, - 24.91887263476263, - 24.90571547587133, - 25.001482908973273, - 24.942057954510496, - 25.003155527905864, - 25.019980140882218, - 25.040902224249052, - 24.956333590379643, - 24.84267695239895, - 24.88078083069008, - 24.89979487383414, - 24.89954852896904, - 24.957406100949797, - 24.88427277278017, - 24.962065850070488, - 24.978036207558212, - 25.015296644273786, - 24.923333583702988, - 24.986658630567, - 24.942688843857816, - 24.879974597587267, - 24.906596534486084, - 24.895480644326028, - 25.00424791800645, - 24.878317811259897, - 24.867750818614073, - 24.96600026835874, - 24.947092519906953, - 24.933295286719996, - 24.984451410952964, - 24.897737397772637, - 24.862608955492156, - 24.94385173176068, - 24.85911512486205, - 24.925858906830392, - 24.84699332648379, - 24.902072468430596, - 24.861785361976686, - 25.00627626917563, - 25.034998382872473, - 24.97736906617739, - 25.027467123827837, - 25.07113501858163, - 24.909618757430703, - 24.93115280728727, - 24.94300441346774, - 24.890978536069866, - 24.914093290289664, - 24.839439365099942, - 24.928019653846746, - 24.98461845360241, - 24.825082972183672, - 24.877254736168453, - 24.94333538788002, - 24.9188383010084, - 24.96579555553035, - 24.951712975713846, - 24.85947058186469, - 24.817166693171053, - 24.85094281965454, - 24.947697099667604, - 24.896768091226164, - 24.944008104427034, - 24.864653040205823, - 24.953726349001833, - 25.016412003331382, - 24.965560849549334, - 24.906368610344714, - 24.90232211889668, - 24.97446368786818, - 24.962728496741754, - 24.96037092726908, - 24.864681200238966, - 24.867573376493965, - 24.872793947671312, - 24.80896144035585, - 24.88435326711751, - 24.866410499373604, - 24.9241008185782, - 24.958614920272552, - 24.887158192297374, - 24.90375349010888, - 25.021639262568506, - 24.96055150734342, - 24.950287245860224, - 24.948474201934168, - 25.028094154896948, - 24.958859424381487, - 24.89090347927283, - 24.94568931255404, - 24.87871254686619, - 24.94185832860571, - 25.000332298838998, - 24.90693115643748, - 24.975956171862826, - 24.972274165544885, - 24.92884199158386, - 24.991479617773074, - 25.018319027635307, - 25.078144870374334, - 24.97839858835657, - 24.88431695390899, - 24.794592574274066, - 24.783775768391887, - 24.927915413286875, - 24.99037321619432, - 24.97632805985282, - 24.952540754695104, - 25.02896277041585, - 25.051951649169574, - 24.952119161840635, - 24.948652347443137, - 24.87512909932081, - 24.84306557938148, - 24.927575760425455, - 25.00261466114982, - 25.006395139486497, - 25.051075121565248, - 25.01021949810754, - 24.968934454785597, - 24.929293366038273, - 24.871589811725066, - 24.880936713904994, - 24.888234902305502, - 24.982374373528685, - 25.003056794949096, - 25.00911937246, - 25.04631522305689, - 24.983132190073068, - 24.978271748537964, - 24.980295924883777, - 24.9005873543361, - 24.8237222871805, - 24.92026808460625, - 25.02735852447055, - 24.890458809798087, - 24.965121995913684, - 25.008066575942983, - 24.936721868370704, - 24.96946865318531, - 25.048484806914924, - 24.9203972840046, - 24.91191025156432, - 24.91030932765708, - 24.94936258804831, - 24.986992138679987, - 24.92177926739052, - 24.88645888030268, - 25.002120661578296, - 25.009776411020283, - 24.93586045782164, - 24.933050831650128, - 24.911189031415965, - 24.91670325724519, - 24.943765183431594, - 24.952359446549092, - 24.991265797362367, - 24.92040156287382, - 24.899286270059182, - 25.00800386521591, - 24.960967423960348, - 24.87689559757733, - 24.897974272457063, - 24.920932047495974, - 25.013594590592874, - 24.985143722792067, - 25.030919950851498, - 25.046144318226762, - 24.934306912362246, - 24.973527075850534, - 24.988609040607294, - 24.94738429227325, - 24.967923473931016, - 24.9611194649356, - 24.90121467214965, - 24.936387684911164, - 24.91581935825318, - 25.03129470962481, - 24.991577334848415, - 24.905241605087483, - 24.923416261694562, - 24.925977724365104, - 24.830820948126842, - 24.886667069863087, - 24.993367156450525, - 25.029017499980114, - 24.94238581409848, - 24.938104670261865, - 24.94757782943332, - 24.86149634414125, - 24.94304420229198, - 24.89742427674188, - 24.994715359153844, - 24.93958115556167, - 24.94349909562752, - 24.943923151487226, - 24.940846259701427, - 24.98404570471844, - 24.96051768842838, - 25.00655012761068, - 24.92479355717731, - 24.94513210105205, - 24.919457047465357, - 24.876505181295997, - 24.80785183683031, - 24.85098728295455, - 24.947391475873744, - 25.004126940259905, - 25.005107039601107, - 24.907198328587082, - 24.88786379414037, - 24.926281106569196, - 24.91442754374318, - 24.902779595457282, - 24.866319527523274, - 24.90743656874558, - 24.880757848146878, - 24.99047902494054, - 24.936744631137444, - 24.898640157179486, - 24.97845130105584, - 25.032519809909886, - 24.976829545420365, - 25.011081488420807, - 24.957933988258134, - 24.91421191002822, - 24.96307540499044, - 24.98521710349447, - 24.993279325360056, - 25.01862738137512, - 24.9958834013434, - 24.93243166893926, - 24.94165509200485, - 24.9890113237348, - 24.997477607429342, - 24.922670534273337, - 24.99760752934106, - 24.90125029615892, - 24.91531782039888, - 24.897216602811383, - 24.974694773571116, - 24.952548044925695, - 24.99315829448891, - 24.918341842165994, - 24.97618224393788, - 24.945188466173164, - 25.029661591221373, - 24.904107518175362, - 24.939455893141314, - 25.00723398256081, - 24.907546465372477, - 25.010056421330056, - 24.980952469310438, - 24.953426105944246, - 24.922663814272447, - 24.84488696444233, - 24.922051906727674, - 24.944605157689672, - 24.992195490823587, - 25.068097616636216, - 25.006919810878088, - 24.93650294686453, - 25.009578447446074, - 24.99330963243657, - 24.963058386200935, - 24.92910623597131, - 24.963888825392463, - 24.951028812427687, - 24.919594517954387, - 25.020576842379302, - 24.967294265862385, - 24.896869879109275, - 24.940364887322797, - 25.007339654934203, - 25.060120200077726, - 24.908170821058604, - 24.939623197930167, - 24.9822220319415, - 24.884251588704718, - 24.88561657645343, - 24.88948401221679, - 24.964725477185603, - 25.00100308962305, - 25.033093276162397, - 24.92525060101315, - 24.894035925828703, - 24.953697786145298, - 25.019762496704026, - 24.917917217161225, - 24.95840229186087, - 25.00144880395976, - 24.976048299218604, - 24.973907988163347, - 24.979796257568353, - 24.895903224369135, - 24.927740190202954, - 24.789307795542946, - 24.960185386240187, - 25.020334255035884, - 24.957330530700872, - 24.898531431383365, - 24.919816923893073, - 24.976024764403668, - 24.899986100122046, - 24.865211882346454, - 24.926978398155217, - 24.996554575737804, - 24.933407240061825, - 24.889746811503926, - 24.866585490983873, - 24.944144761287557, - 24.957505742174135, - 24.942404274481966, - 24.92983565475638, - 24.92071050926505, - 24.93925632727963, - 24.902387269185688, - 24.884911671433898, - 24.996798176238663, - 24.987194585727913, - 25.01955244600643, - 24.971395865859503, - 24.959262398775408, - 24.98414320539134, - 24.934313714457808, - 24.910448810499666, - 24.886860777415606, - 24.966165410289427, - 24.952659692236836, - 24.937376630850522, - 24.911176414097103, - 24.95423095956334, - 24.96900312466559, - 25.04543610438924, - 25.022745948578596, - 25.06131772603785, - 24.999647610604015, - 25.03010179692022, - 25.00906168348889, - 24.879178726379834, - 24.862742933602938, - 24.9771704487462, - 24.950885426493727, - 24.931535784546774, - 24.960342637917265, - 24.909470454950323, - 24.974337248988743, - 24.962386304550144, - 24.816994112067494, - 24.902299522258456, - 24.998950045598463, - 24.965113908632215, - 24.962607527951825, - 24.938849176345514, - 24.956377890381898, - 24.88174650898773, - 24.942774451859147, - 24.886802324461655, - 24.912724753070457, - 24.991164724630476, - 25.00872382498369, - 25.025420539830137, - 25.0390793250049, - 24.98461628644401, - 24.953727930788837, - 24.980229322017628, - 24.905622322432112, - 24.95799095002039, - 24.99619652562256, - 24.909561800810067, - 24.88292050094193, - 24.9778562978712, - 24.945218014474783, - 24.91735129804833, - 24.892452018954515, - 24.871036603188223, - 24.94098219897841, - 24.987951695820165, - 24.963438384159627, - 24.967099419376204, - 24.934946501339837, - 24.88000731677196, - 24.906311633472413, - 24.843758470639898, - 24.889086015941984, - 24.8787430048681, - 24.911299669171413, - 24.86292529204739, - 24.86323028844557, - 24.966818641710383, - 24.958451020416284, - 24.979551601800026, - 25.009364678462923, - 24.89747064148469, - 24.97858457212495, - 24.96004712153893, - 24.94106391164422, - 24.877461979114564, - 24.947113993068317, - 24.869594897348534, - 24.832103364338856, - 24.938115452221908, - 25.014995416239156, - 24.947268622762074, - 25.048801313123235, - 25.043469207803412, - 25.006774380184353, - 25.011511786572903, - 24.99488319357426, - 24.958332241779658, - 24.903443320324495, - 24.933847646815515, - 24.962237096924696, - 24.966334556512727, - 25.00730934640945, - 24.990465910591865, - 24.95050334329745, - 24.972416868306496, - 24.981282310099246, - 24.86463157748771, - 24.912424558095562, - 24.92816906664706, - 24.91338474605159, - 24.968255417362084, - 24.871995516356247, - 24.919120951312333, - 24.923843233699003, - 24.880370385235373, - 25.00882643841558, - 24.944732860415662, - 24.982889047551915, - 24.979841942938418, - 24.959632167565736, - 24.937180536956205, - 24.907756684133886, - 25.006835174629714, - 24.973379707906787, - 24.910516590609866, - 24.98514552964341, - 24.946588954751817, - 24.970342085465578, - 25.001795117777853, - 24.900939897829097, - 24.839225618927923, - 24.93406455424566, - 24.971199476783646, - 24.932175812562033, - 25.007534867458496, - 25.008800860747996, - 24.991722262128462, - 24.922622034787892, - 24.98284938540177, - 24.97865800797704, - 24.956750422386442, - 24.817294791124976, - 24.9335281232109, - 24.941028472915814, - 24.90267702028766, - 24.877631116155605, - 24.89180148504402, - 24.90292240898097, - 24.93157636913069, - 24.993241467505833, - 24.925547451151743, - 24.867802954432612, - 24.90153366157921, - 24.936194796286486, - 24.909873422303633, - 25.021202543557372, - 24.940878531612213, - 24.88064435921953, - 24.969643659420854, - 24.849585108551203, - 24.92973656632239, - 24.97017176806617, - 24.881884289029436, - 24.986677065968927, - 24.93360259985747, - 24.953966970950425, - 24.921424119300333, - 24.88686590675485, - 24.934568826665213, - 24.983344238522314, - 24.988952726220447, - 24.944650686320692, - 24.879820527251432, - 24.87108712626387, - 24.91741283199145, - 25.048687715081975, - 24.987114476240073, - 24.918388942061334, - 24.99315028360568, - 24.971014043093607, - 24.94376806160048, - 24.860530118317865, - 24.9634004757332, - 25.009311771217412, - 24.950871321714704, - 24.953327499024795, - 24.979876222393443, - 24.943657226576196, - 24.881370831992, - 24.904851853898265, - 24.889414729063063, - 24.950456243960392, - 24.970303325757968, - 24.878983817420824, - 24.93762596928093, - 24.94541432671099, - 24.968789929542965, - 24.885931879927163, - 24.790572659696174, - 24.979349659071904, - 24.924287877489114, - 24.829010549131283, - 24.960677637636188, - 24.96883529567578, - 25.037355486373364, - 24.998664756067118, - 24.97859531227339, - 25.017984676803053, - 25.026723337165855, - 24.961612086651154, - 24.966727604041733, - 24.999469097385493, - 24.98444874159628, - 25.026114899304517, - 24.93423282371957, - 24.964292353811935, - 24.955368958742906, - 24.835570856879457, - 24.839062242039056, - 24.87764720311852, - 24.945061240566453, - 24.963228640117734, - 25.003297691944592, - 24.94798649548977, - 24.958437536119668, - 24.98226766923348, - 24.858091947981926, - 24.96253912890547, - 24.952415325523184, - 24.9368866560144, - 24.97724647163676, - 24.945436302648286, - 24.987298686586243, - 24.89081344146441, - 24.940528893598717, - 24.921970887346752, - 24.872124137029157, - 24.889902462856867, - 24.84991774958164, - 24.92485546493971, - 25.048576699295516, - 24.99115682196401, - 24.99051444087882, - 25.055607284556757, - 25.025776878607452, - 24.978120757630293, - 24.999806959601287, - 25.026570522948525, - 25.02444555830295, - 24.995682754183004, - 24.91318486536903, - 24.88652086563225, - 24.882429593676182, - 24.903391686433636, - 24.961966590289272, - 24.889656152846655, - 24.94963842424752, - 24.903463497048165, - 24.979792396295874, - 25.038422552566335, - 24.925407811434308, - 24.91785883714317, - 24.877578643601986, - 24.887142247406512, - 24.89395286192022, - 24.98110301918815, - 24.9044040217433, - 24.91370088221453, - 24.90501621502774, - 24.972943460487784, - 25.49681138619245, - 25.625619571794598, - 26.094333299624537, - 26.06847091133368, - 26.532356366615456, - 25.57063196869112, - 25.52003182152369, - 25.728074203077703, - 25.714992856225184, - 26.10903230655418, - 26.259404115081114, - 25.928069875605317, - 25.90924865369109, - 26.04466598443408, - 26.177448411279446, - 26.42443681080045, - 26.21333899626919, - 26.208340526290982, - 26.221050157886616, - 25.566769493536917, - 25.70473614296537, - 25.593274460448672, - 25.296056667823773, - 25.543747297783863, - 24.8740624017396, - 24.859031495899742, - 24.968280578751738, - 24.87852424519646, - 24.91440971524587, - 24.934322949725598, - 24.95707303552736, - 24.970853997115093, - 24.883291458929108, - 24.911617028651463, - 25.00766545639668, - 24.973524985960864, - 25.02360444715542, - 25.033605377364594, - 24.95682448081154, - 24.868229922103332, - 24.92320911686174, - 24.92863656196254, - 24.85302008828689, - 24.80330565431283, - 24.86836078188795, - 24.89755104265275, - 24.943207486506665, - 24.857509916317884, - 24.88098120536788, - 24.841013363693058, - 24.895369640732646, - 24.938910322450816, - 24.963020749520012, - 25.024821971437746, - 24.983521560817806, - 24.962519696531736, - 24.979222821552995, - 24.980709431335995, - 24.990167415954854, - 24.966905429566353, - 24.875639271669932, - 24.950889162384097, - 24.969365769229768, - 24.91671462234065, - 25.003453105372067, - 24.978395452863644, - 24.95479767079612, - 24.9196664377112, - 24.985597753209106, - 24.88020175517344, - 24.839617066307312, - 24.879916269188328, - 24.805193308449105, - 24.925082291570256, - 25.07649874408537, - 24.932363617564196, - 25.01409747586495, - 24.969248458636045, - 24.944366819934793, - 25.00239679746768, - 24.9587557605661, - 24.840685646292165, - 24.940147057340283, - 24.903880540265334, - 24.78490364317241, - 24.873643501644622, - 24.947848970732316, - 24.952344954964655, - 24.906355383696617, - 24.89408699448103, - 25.017116166265865, - 24.95692523381758, - 24.88677721352434, - 24.949184521998127, - 25.051572492936664, - 25.029201428531543, - 24.994922982169577, - 24.97558939184229, - 24.89648635702933, - 24.926418125169903, - 24.923937469206948, - 24.892252991128785, - 24.85404594733084, - 24.91812206632283, - 24.942983006648383, - 24.887876863763925, - 24.95395623039569, - 25.010618933138385, - 24.954859679525306, - 24.953245315847134, - 24.905316836859285, - 24.937099043967013, - 24.993854233728527, - 24.97991826234106, - 24.99830393299897, - 24.85500219017849, - 24.929757201533622, - 24.944966436450102, - 25.03616817693717, - 24.99089723364439, - 24.958090973250357, - 24.906416248717008, - 24.79034500508333, - 24.82309497840523, - 24.958045842908163, - 24.92966143985475, - 24.91501292383181, - 24.940450595056753, - 24.95470869995222, - 25.06125390631194, - 25.018444474307117, - 24.986389784569013, - 24.846146940393062, - 25.038575973975583, - 24.9364477103699, - 24.946223046820723, - 24.888343490386994, - 24.991515329192065, - 24.86463610537252, - 24.900584747250093, - 24.952381267254218, - 24.897746055664417, - 24.962733841022605, - 24.92363009647051, - 24.94680822393807, - 24.906659100860836, - 24.931607168350446, - 24.826428687023302, - 24.88088886643537, - 24.94985056323155, - 25.006785068272862, - 24.92773212029499, - 24.97421406449152, - 24.901753416185436, - 24.922554194445897, - 24.98905174763297, - 25.0244534365984, - 25.00256569975281, - 24.822464511436387, - 24.92078649112202, - 24.916269745961486, - 24.83028792131522, - 24.967069298796595, - 25.002769769506028, - 24.949093861304554, - 24.925556529585734, - 24.907853407007973, - 24.879652917357223, - 25.009041257744556, - 24.962647888364415, - 24.916235954488783, - 24.978459100488244, - 24.898718615007382, - 24.927981676513333, - 24.881368460157347, - 24.9931978480709, - 25.046764788421818, - 24.998072595439083, - 24.918472555295637, - 24.90334857637767, - 24.96981260062485, - 24.956332404843266, - 24.96917485043238, - 24.974334854146583, - 25.031655810837336, - 24.973753694519875, - 25.087699521090432, - 25.001781443322894, - 24.941907887847883, - 24.99502220392854, - 25.038446694251782, - 24.927332923567885, - 24.97739149000873, - 24.877775284745375, - 24.885976314679873, - 24.930128197938885, - 24.96357529526071, - 25.019703845521597, - 24.978797121114816, - 24.98093030233929, - 24.96099415114988, - 24.983444095291063, - 24.92072387366921, - 24.96592589825837, - 24.89840200780887, - 25.032616138115475, - 24.971684605194792, - 24.932082044943417, - 24.88460925763666, - 24.93711054477859, - 24.96269064644612, - 25.02010125067465, - 24.996613819833264, - 24.893141409150406, - 24.903569655650635, - 24.95006614902658, - 24.973983611371875, - 25.020401725779315, - 25.054477873656456, - 24.98342340871293, - 24.97467160081706, - 24.968182158736774, - 25.05057350042408, - 24.941346086696473, - 24.921456491365742, - 24.9852189835089, - 24.991709298956494, - 24.90827545926772, - 24.874407866485576, - 24.826054796469005, - 24.902016566855025, - 24.931854427301516, - 24.935015298727134, - 24.89433828980508, - 24.969098309776225, - 24.928730955213496, - 24.88743463997306, - 24.88544003910709, - 24.92349830617513, - 24.866816373828172, - 24.883520932729, - 24.92050166113678, - 24.891244552614026, - 24.836281229980102, - 24.871879463323545, - 24.916821944651485, - 24.941502839501645, - 24.899599611560557, - 24.86800680377796, - 24.881860491274622 - ] - }, - { - "legendgroup": "Total Site Emissions", - "line": { - "color": "rgb(239, 85, 59)", - "width": 3 - }, - "mode": "lines", - "name": "Total Site Emissions", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 24.881860491274622, - 25.00261067138295, - 24.899757661113952, - 24.948668430463208, - 24.9807078820501, - 24.96050427300994, - 24.970811340956644, - 25.05078321256414, - 24.887065098524957, - 24.898099554173903, - 24.97242848744814, - 24.958219258033928, - 24.92511948156348, - 24.949853778094898, - 24.9682959217563, - 25.031425018511, - 24.977422678838757, - 25.005361368746513, - 24.938967928258002, - 24.981514415429483, - 25.00626732684848, - 24.964279066720252, - 24.939301782838186, - 24.88545723685361, - 24.944020451704795, - 24.981992831298317, - 25.00930300534354, - 24.966600574745254, - 25.00994107027968, - 25.026364824322286, - 24.989146174315287, - 24.97099529936054, - 24.952865845696664, - 24.94869401743731, - 24.842927027914683, - 24.85803847045004, - 24.888424674309142, - 24.931322235065593, - 24.969090881735966, - 24.934826007252518, - 24.930660420118674, - 24.930206277881247, - 24.94295162792654, - 24.852869383226032, - 25.046657862499657, - 24.93217164336361, - 25.003036305107223, - 24.923712097757523, - 24.921505438091632, - 24.92813975610536, - 24.934965353655947, - 24.95985216659582, - 24.93574724685791, - 24.95682822295874, - 24.950120773123686, - 24.89800964280494, - 24.916155456345024, - 24.9037533416938, - 25.052603953194488, - 25.018484740382814, - 24.948150519732117, - 25.04864209844076, - 24.989597571743083, - 24.95594265503872, - 24.887441741347786, - 24.848268914821254, - 24.913590341494164, - 24.876148927144886, - 24.860737804828496, - 24.885069204271787, - 25.224769330319955, - 25.571214746801466, - 24.974376377593995, - 24.96536674162082, - 24.961171445801597, - 24.9843061690396, - 24.934304671918888, - 24.951231084389914, - 24.886887042436896, - 24.93745259759345, - 24.97193501035821, - 25.033424074180196, - 24.945536766141537, - 25.022031965504265, - 24.90493152110141, - 24.935109603625925, - 24.95831838536423, - 24.92489300214486, - 24.934702342025226, - 25.053376246855862, - 24.873501056052497, - 24.992962116538536, - 25.009371026507146, - 24.990395376511692, - 24.855491329885282, - 24.899361506613758, - 24.84848116616584, - 24.907125474052897, - 24.967465930065465, - 24.957960721314222, - 24.99697576779328, - 24.901771619529256, - 24.937168778151335, - 24.889423667496864, - 24.866474808559918, - 24.91281015562678, - 24.983822310119738, - 24.967964141834464, - 24.845048010894743, - 24.89988314766188, - 24.909621377876114, - 24.970787251657008, - 25.01790752108353, - 24.984166331312352, - 25.027559239212117, - 24.958379711281975, - 24.94755070157761, - 24.91543701016215, - 24.866531113302536, - 24.905219307958667, - 24.935358017643658, - 24.995025754107033, - 24.968051176928533, - 24.887994464303894, - 24.975330121736626, - 24.968864421232322, - 24.99002963642981, - 24.985311115756886, - 24.98519477379864, - 25.043795782256588, - 24.90369831772841, - 24.909486414716618, - 24.949769785048588, - 24.918315864507825, - 24.981784754959065, - 24.99358147762383, - 24.976318957238547, - 24.92183827296598, - 24.98541657460226, - 25.006240183057947, - 24.89849985845008, - 25.0339953460137, - 25.05050378264638, - 24.986083512708593, - 25.03943335992121, - 25.001369886800923, - 25.049060899270913, - 24.98154391776265, - 24.926960260170674, - 24.96077478975816, - 24.986606023588028, - 24.937948992062864, - 24.998683458807623, - 25.004037790772944, - 24.89697772408979, - 24.97779910334377, - 24.900512676944942, - 24.9080485616714, - 24.9127368872625, - 25.019035794560246, - 24.953628010490448, - 24.996629784967766, - 24.984428871421617, - 24.92489378799423, - 24.857054826699265, - 24.807803125036948, - 24.829690436693166, - 24.863762349007658, - 24.8799505228232, - 24.80751964141357, - 24.902634710220436, - 24.88795274777391, - 24.898517220586935, - 25.040365844283482, - 24.96759037649498, - 24.919850815401986, - 25.006688331637328, - 24.93251549080864, - 24.95275606147181, - 25.03616615860351, - 25.036814601954706, - 24.92358254533871, - 24.916512428494308, - 24.91033122681872, - 24.958608432041075, - 24.9026407268261, - 24.971507900363335, - 25.00860862006927, - 25.07337716650953, - 25.00672394126083, - 24.962153792227937, - 25.026592892040213, - 24.99740008133349, - 24.909551207233456, - 24.955733272730367, - 24.97397554369428, - 24.97836682720463, - 25.070096361538546, - 24.95473022758525, - 24.947166942608355, - 24.97793940804737, - 24.89889498626229, - 24.98480133325001, - 24.913797583796615, - 24.9265284207436, - 24.864612176280133, - 24.922941218961036, - 24.9876737228534, - 24.919089247393035, - 24.924196142240287, - 24.89587658447291, - 25.002316026012302, - 25.00881095416764, - 24.9802051447711, - 25.1136501937186, - 25.022931154027116, - 24.969748312114596, - 24.919072297212843, - 25.025211406227584, - 24.947454841840884, - 24.967331013658573, - 24.937449011747535, - 24.97937627059109, - 24.93848437132631, - 24.89169594648557, - 24.9117331734344, - 24.910234776134835, - 25.01257504639027, - 24.99614353898677, - 24.917518915477714, - 24.962293127290355, - 24.887004167651007, - 24.835693478896133, - 24.891029470645478, - 24.924437121304496, - 24.95189043313585, - 24.926494194651553, - 24.81219985854301, - 24.967398175323055, - 24.86112347070828, - 24.93380330734645, - 24.989091932094794, - 25.035779436713177, - 25.03676407212022, - 25.00986900181165, - 24.955861457766918, - 24.933312190608845, - 24.951550911580654, - 24.92399924094861, - 24.88709508004453, - 24.96467121353718, - 25.00277683879694, - 24.971175056824812, - 25.03389879360014, - 25.03677648085879, - 25.076129212810123, - 25.002421852384984, - 24.993451004974233, - 25.010396988032085, - 25.022463684252592, - 24.91724096394173, - 24.843178390849324, - 24.908706513283782, - 24.921394433243417, - 24.941906904354926, - 24.941702376449925, - 24.959779052969566, - 25.029122298341548, - 24.883939743262527, - 24.97015133068861, - 24.899018921349864, - 24.958895203341, - 24.87215525935889, - 24.874235020258343, - 24.876129156842033, - 24.894623905686586, - 24.90535120716182, - 24.90257407611969, - 24.962642082946957, - 24.908378811097194, - 24.90570037514679, - 24.99910207218809, - 25.03765231097641, - 24.98757373736835, - 24.972680424572598, - 24.94469203407912, - 24.984789535251423, - 24.977616814631553, - 24.987730923721045, - 24.943497610840094, - 24.909484769518237, - 24.97933934948147, - 24.977810335667897, - 24.937822383214687, - 24.95623752586671, - 24.99041489896281, - 24.964959072099894, - 25.060695389378555, - 25.035088034599585, - 25.04038122533989, - 25.09783134263874, - 25.082566127910916, - 25.131485651781446, - 24.963209377371186, - 24.92174352386882, - 24.982707714325887, - 24.941771515606256, - 24.95729601871485, - 24.97500604545669, - 24.977067232427665, - 25.016557822157466, - 24.97955287460023, - 24.96403987547254, - 24.982577787115467, - 24.9934040051116, - 24.866155100419572, - 24.875895412921505, - 24.879652942497472, - 24.96817919343939, - 24.904414666938486, - 24.92859153156401, - 25.09342626569954, - 24.961695741847514, - 24.933343922407794, - 25.00463088462258, - 25.0117429397055, - 24.980525180309, - 24.958289266700298, - 24.967289876179716, - 24.899792673029886, - 24.86597915683981, - 24.846087033939767, - 24.832394105942587, - 24.840395547595094, - 24.85339521755604, - 24.95520910523202, - 25.005762682540446, - 24.93078122097207, - 24.93192613441919, - 24.965422815429527, - 25.000611402234593, - 24.927985650049152, - 24.851955180158658, - 24.939611235832054, - 24.985600544507296, - 25.02277004199167, - 24.98113599014664, - 24.98204970114709, - 25.0137985573432, - 24.917344619088674, - 24.952564113501612, - 24.93995297619037, - 24.93077637381127, - 24.949915579226037, - 24.978010172333544, - 24.902540399684696, - 24.970954861077516, - 24.898567695463157, - 24.997322058881547, - 24.973674547357206, - 24.920937845678353, - 24.918597210073635, - 24.91532053118864, - 24.906553315539732, - 24.98849053030475, - 24.969608796090306, - 25.022483758427697, - 24.968244587615246, - 24.923511558720563, - 24.94914898817739, - 24.908294514638605, - 24.900307936185367, - 24.978007494547683, - 24.920176374108557, - 24.978278796211825, - 24.97495809742516, - 24.99472013726777, - 24.985371712435736, - 24.935099475476044, - 25.042274094853205, - 24.99699980989561, - 24.992324627517824, - 24.905282641860016, - 24.93001785477339, - 24.981374822557182, - 24.94314976286741, - 24.980741115678413, - 25.049231405753027, - 24.991671192607818, - 24.903491249375207, - 24.92174977813584, - 25.0011322175502, - 24.98935255176685, - 24.98932276080121, - 25.058951149513923, - 24.9702092980906, - 24.922961278609485, - 24.936244264725488, - 24.801425264098427, - 24.88948638665274, - 24.927022645609647, - 24.952885767766638, - 24.964827244154392, - 24.983546236657766, - 24.884513516654394, - 24.917431986119567, - 24.91623717512827, - 24.891372658733374, - 24.87540798248002, - 24.98267158138257, - 24.905287830359498, - 24.95136334757803, - 24.93330121646582, - 24.913820940656663, - 24.922071104443468, - 24.941398618559703, - 24.969855417427, - 24.986387436724094, - 24.975276144679633, - 24.95391076530153, - 24.973115037078443, - 24.908756286456395, - 25.04560812667072, - 24.957546120311115, - 24.967943085138778, - 24.946498595223233, - 24.891142334330837, - 24.91557138997621, - 24.91806180868091, - 24.979479605457357, - 24.952574940899005, - 24.935631959310292, - 24.870105424005416, - 25.03270081668371, - 24.877123447023866, - 24.959536145151272, - 24.90317253305085, - 24.947548099066683, - 24.97719103657304, - 25.00110455045807, - 24.98787300938986, - 24.96407657750624, - 24.866373312580244, - 24.970271408473273, - 24.990766958015378, - 24.977014768318618, - 24.919616966757204, - 24.96640939700864, - 24.927566974304483, - 24.88078001480657, - 24.89794429295906, - 24.8767963682226, - 24.893640415652357, - 24.96578656998959, - 24.96450962792395, - 24.9316060575795, - 24.931890591212003, - 25.028829998430773, - 24.967869718892196, - 24.985165966028724, - 25.017415229640445, - 24.972851144293713, - 24.97774298029874, - 24.896842593522077, - 24.93933595679554, - 24.958672478461004, - 24.96222347235448, - 24.945256393122712, - 24.862236341997836, - 25.01813022573255, - 24.877565288865974, - 24.912319391344354, - 24.935853839330434, - 24.922846180434796, - 24.944321968239016, - 24.867567962014768, - 24.93198275792843, - 24.915024140493607, - 24.954607660115848, - 24.912783558486744, - 24.97741930411909, - 24.899329690630644, - 24.941910495028505, - 24.92142435800187, - 24.894014925017377, - 24.912091080567677, - 24.955565860201528, - 24.933729771261177, - 24.923111639125924, - 24.925956293291755, - 24.928617346177006, - 24.99062277179919, - 24.894364980623372, - 24.910869513845313, - 24.862741182593894, - 24.87131923276577, - 24.85543852344947, - 24.88328633451406, - 24.8187721791123, - 24.950931161416996, - 24.93818064432122, - 24.968330167342735, - 25.040809182525635, - 25.047732104662483, - 25.052096132891016, - 25.090000478297863, - 24.974681005553407, - 24.90548419417873, - 24.88924067690693, - 24.83841707320509, - 24.92298674725503, - 24.93471013798019, - 24.94179338724657, - 24.890247091467323, - 24.91430256026252, - 24.91238786134286, - 24.966789986950893, - 24.949277777413432, - 24.910134189172727, - 24.943641824469122, - 24.946712384049412, - 24.947217988919817, - 24.930190400565813, - 24.912618485268965, - 24.933757159550396, - 24.910551663253806, - 24.937022658724338, - 24.938248913664125, - 25.005791123468487, - 24.92692697073221, - 24.902912754099773, - 24.884357584323965, - 24.920139069638488, - 24.954908710331352, - 24.88182919449993, - 24.929075265071504, - 24.856717477654527, - 24.946736365960746, - 24.94762713708959, - 24.90296367616083, - 24.93915579232562, - 24.979126263189656, - 24.977700909429245, - 24.974150294616592, - 24.912866195251326, - 25.00941823627005, - 24.876463704514215, - 24.862499576718903, - 24.93200252578443, - 24.960831932663368, - 24.901605583911785, - 24.94044913380749, - 25.043144095471284, - 24.99182332510555, - 24.947811942618415, - 24.910851164744045, - 24.82165231973452, - 24.811537197620947, - 24.93459000149725, - 24.88844826528672, - 24.876409108144138, - 24.912289666846362, - 24.97670420183863, - 24.96880920345281, - 24.94981277905779, - 24.93950591646052, - 24.9297868847737, - 24.898579803583413, - 24.89859931871863, - 24.92002338474444, - 24.93348561774574, - 24.897881210080058, - 24.914921267772804, - 24.959326448440777, - 24.953292065752382, - 24.917660014728263, - 24.963625117165854, - 24.96724666043481, - 25.017625458527696, - 24.975994887852323, - 24.97335438088733, - 24.964374745424443, - 24.894509147130826, - 24.937906526348474, - 24.97609209149456, - 24.989662026966375, - 24.96783421055737, - 25.00919243481346, - 24.970369267773457, - 25.03818139701969, - 24.877459368928022, - 24.850086590563528, - 24.866904981173796, - 24.97928985257992, - 24.952516277129842, - 24.965393053201556, - 24.998469838662245, - 24.925711728977333, - 25.051514556850577, - 24.983670015367295, - 25.02095719914232, - 24.997121237588402, - 24.977330449955573, - 25.00698574502541, - 24.98730873731398, - 24.939936627930834, - 24.97120820889767, - 24.933601738948674, - 25.0118497057911, - 24.95445765971231, - 25.030513088841538, - 25.000101873475472, - 24.97823669198261, - 24.95216153170761, - 24.907507226163524, - 24.935077487191208, - 24.96498266505612, - 24.879001985797032, - 24.976085649170404, - 24.9023165604998, - 24.85463216651646, - 24.88092984107994, - 24.953505009647458, - 24.92232190718825, - 24.91401384236968, - 24.96906420205199, - 24.909144640177495, - 24.883519633636844, - 24.920282565481553, - 24.89602827962237, - 24.941371308330325, - 24.915416131799578, - 24.961937286599806, - 24.96093114587385, - 24.934429527534945, - 24.893173890356756, - 24.962458473911223, - 24.89173735715001, - 24.94363065251329, - 24.959826282141364, - 25.02598654220069, - 24.96989072936372, - 24.965915930909667, - 24.971465576111164, - 24.944666397061194, - 25.01663895151981, - 25.009084424706604, - 24.936775865046403, - 25.031527604246378, - 24.931636395445285, - 24.85276090992469, - 24.89237439892917, - 24.836995369846296, - 24.931493374337585, - 24.934567351821848, - 24.8818067487938, - 24.957580125287933, - 24.99075125306172, - 25.181990911626688, - 25.04921212728679, - 24.948106854195323, - 24.878460552940837, - 24.971178140716606, - 24.850757251514924, - 24.82952277824819, - 24.960539702022736, - 24.984913200726304, - 24.942844150692075, - 25.040430252738208, - 24.944064615699254, - 24.94689683940325, - 24.961550681587603, - 24.931541009688377, - 24.938367454451523, - 24.926828410018196, - 24.93928849033717, - 24.92048404662939, - 24.967841579099307, - 24.91964766612987, - 25.029845978784365, - 24.962355120409697, - 24.85178818016598, - 24.83060681081077, - 24.897379721039275, - 25.018571741764404, - 25.002015338214612, - 25.007684763669985, - 24.90343492994691, - 24.907762738484397, - 24.766790059400996, - 24.906907118938257, - 24.900353690610505, - 24.88122101601993, - 24.896579821135816, - 24.958097796213305, - 24.99025147574038, - 24.887548393111928, - 24.92161533511032, - 24.900895273223078, - 24.934494083222532, - 24.8907479914983, - 24.87471127754975, - 24.92432683808967, - 24.96759703577903, - 24.910712864319983, - 24.913855681079077, - 24.99556371356019, - 24.906598925107403, - 24.974703678904643, - 24.981450409247635, - 24.966953024192073, - 24.996106957218906, - 24.97889916858349, - 24.906226300821924, - 25.006010464177145, - 24.9176305272366, - 24.943722126119997, - 24.955926510653242, - 24.93558209971825, - 24.923906976278385, - 24.932229910331124, - 24.92113314524095, - 24.929677750295184, - 24.935735667735972, - 24.96419435964048, - 24.98745194579012, - 24.926551736206196, - 24.960555161835195, - 25.058216831163797, - 24.978409003794482, - 24.93593652177112, - 24.90000631579121, - 24.861975857741, - 24.91669001696073, - 24.95646567192498, - 24.9447111466135, - 24.942215355033607, - 24.922427602246465, - 24.894342440953906, - 24.88627969060652, - 24.940655972325132, - 25.020655280353083, - 24.881044303731514, - 24.836251244094264, - 24.85349277857314, - 24.945636052055804, - 24.956852415554085, - 24.90845446258639, - 24.960762443307956, - 24.966144687175138, - 25.0071973154025, - 25.04837767189883, - 24.948466860002434, - 24.816957120561955, - 24.801203961206507, - 24.889135123111966, - 24.98539487370939, - 24.975007459231104, - 24.836911023447854, - 25.005729220844223, - 25.017775182888172, - 24.970747916141697, - 24.9406570134553, - 24.93738412325908, - 24.922207718632272, - 25.01182950666114, - 24.99655636958169, - 24.982012293408232, - 25.03860389523844, - 25.04073584391442, - 24.975598520187773, - 25.017668883727872, - 24.94768504768602, - 24.978343498396377, - 24.969163963002927, - 24.965300044720237, - 24.96849660927412, - 25.074224656403224, - 24.942640801944165, - 25.011190408870604, - 25.016768707377842, - 24.94910068325059, - 24.880437558701324, - 24.948694684409777, - 24.99688393422209, - 24.95123519738672, - 25.009320250103034, - 24.955128682436367, - 24.906797206988088, - 24.942034892396823, - 24.943486018307354, - 24.9123225731731, - 24.922580249831313, - 24.85480623615265, - 24.881982294269307, - 25.044866069510018, - 24.892412831874097, - 24.935204124800933, - 24.90258381253528, - 24.913498964534238, - 24.980627197816563, - 24.995346799532904, - 24.99671398095382, - 24.919672083532596, - 25.023149697266664, - 24.967447182543246, - 25.00261635684338, - 24.917298994693596, - 24.94807717240311, - 24.919949793267428, - 24.885020364369577, - 24.880883023707558, - 24.969089554714913, - 24.927094674556535, - 24.822536746935533, - 24.941525471386452, - 24.932021334842048, - 24.849243516218415, - 24.824245927102194, - 24.946827801319778, - 24.95091897645463, - 24.96480146716854, - 24.94569695549626, - 25.062078746128165, - 24.970689863982358, - 24.866416432738475, - 25.043596612103457, - 25.08544391897324, - 25.063693137956847, - 24.956712767023625, - 24.897306263503197, - 24.91562734886736, - 25.06625373238279, - 25.04092858885113, - 25.02035512735619, - 25.049338983374284, - 24.92555620062514, - 24.956683501280615, - 24.955316455990015, - 24.86762903486334, - 24.940971119723816, - 24.959977824570785, - 24.96074088197384, - 24.987815477646492, - 24.9648894430932, - 25.01411180481328, - 25.013882306297486, - 24.932622775113202, - 24.99696466022821, - 24.954722573745713, - 24.98718954236032, - 24.91120062895751, - 24.974941452774278, - 24.98228066772561, - 24.892269546397817, - 24.972206014579847, - 24.959838572092693, - 24.92628418011389, - 24.938671473923193, - 24.9647537861623, - 24.965818058984667, - 24.95564035357166, - 24.94582030233831, - 25.024984164809965, - 24.951973743246903, - 24.964071844946993, - 24.943858481464815, - 24.956497890068675, - 24.93977480044702, - 24.874386293053774, - 24.99823414826325, - 25.019349268451208, - 24.909724000107254, - 24.856572271731217, - 24.89781273727351, - 24.88887315789121, - 24.904981272125063, - 24.965320587675173, - 24.98902766311761, - 25.006521922524982, - 24.997483639644862, - 24.92257151040882, - 24.98215963572614, - 24.89031006867405, - 24.94172835449542, - 24.987796442864116, - 25.040247515466547, - 24.983440268037604, - 25.01377027603461, - 24.958588656947207, - 24.95394794050887, - 24.92451731258575, - 24.929494456687877, - 24.954053930867445, - 24.944536003660684, - 24.985510378931295, - 24.924864517603435, - 24.8619030472083, - 24.947559121335733, - 24.914261533844194, - 25.01783734617279, - 24.946272127693266, - 24.9008018982011, - 24.916754135662735, - 24.874981070489056, - 25.003296986348985, - 25.031155634257104, - 24.96346088683967, - 24.91187904111294, - 24.904293248371836, - 24.88266434756001, - 24.86312467041204, - 25.014052307209013, - 24.962726455475742, - 24.948961967828193, - 24.948125935136467, - 24.87936465627319, - 24.98261787868458, - 24.947974036778916, - 24.954945864330128, - 25.01756416209585, - 25.00990022871302, - 24.964850360693823, - 25.002600357902686, - 24.905087242468333, - 24.971756080475963, - 24.97444454993243, - 24.88670910085778, - 24.930048524433033, - 24.912735321622442, - 25.024799953380906, - 24.976958271731604, - 24.89415799271812, - 24.8324038691917, - 24.937233942145753, - 24.916740335134943, - 24.935434280356986, - 24.91970887519248, - 24.905477252046396, - 24.94771309343114, - 25.025061721415625, - 24.98509120126533, - 24.879927099441936, - 24.900321096666012, - 24.986385557519462, - 24.9917068124183, - 24.98619428643164, - 24.975474322667576, - 24.910929926548658, - 24.916427663538403, - 24.840220827686824, - 24.915634331038305, - 24.83182479788214, - 25.035093176829015, - 25.01674356684601, - 24.944199579878827, - 24.935979929613097, - 24.81918380407216, - 24.8692154260176, - 24.997562772069216, - 24.925167504433478, - 24.930848271519906, - 24.94497358645543, - 24.869764789818404, - 24.92531843780609, - 24.956301601172882, - 24.949582412607924, - 24.94778484666991, - 24.955135966601027, - 24.93217380433466, - 24.908589652237424, - 25.014512203750286, - 24.96019500651381, - 24.94186540204981, - 24.965646633086635, - 24.966565306175745, - 24.942142199343525, - 24.983565249273088, - 24.912963468803838, - 24.94726925196312, - 24.952843628188894, - 24.943325125425986, - 24.87842551373828, - 24.962100525964185, - 25.025128488952312, - 24.9615220631352, - 24.961767196725425, - 24.915667760347414, - 24.9515196440938, - 24.929381914365557, - 24.923587545947626, - 24.93964068001874, - 25.02004565238459, - 24.95491289512401, - 24.918039966322716, - 25.001820900546974, - 24.993784780305095, - 25.008867346494974, - 25.04514016386613, - 24.88871881098403 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 0", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 11.345262568849508, - 16.44956011218482, - 15.26211248520174, - 14.979043769023317, - 14.949376971928759, - 14.960975710513326, - 14.994864995761189, - 15.014816550117333, - 14.954330866440056, - 15.012449510936847, - 15.077413571312764, - 14.957799587791893, - 14.98058031211174, - 15.051513417881223, - 15.032396757560479, - 15.045362459451749, - 15.081928768036299, - 14.967084173482665, - 14.955366317392373, - 15.038414117907125, - 15.060795920980093, - 15.050599715498445, - 15.014926081629474, - 15.116368748376548, - 14.992760015780183, - 15.058494276305675, - 14.98053568685065, - 14.954010928237029, - 14.97227857981823, - 14.969097377587737, - 14.969521240052547, - 15.023471855724976, - 15.004455709068973, - 15.019845718544067, - 14.990144939077243, - 14.985479317700475, - 14.935128414892397, - 15.006215683431856, - 14.896982600417523, - 14.927515993211319, - 15.010288338364418, - 14.96870423374894, - 14.96522796463365, - 15.03772071212948, - 15.005183706598258, - 15.032939698667862, - 15.054691285969742, - 15.053198514292896, - 14.972119747622447, - 14.96777286145804, - 15.016697168736902, - 15.094876585559923, - 14.931433343409255, - 14.998263561372868, - 14.992695243795144, - 15.058786641527094, - 15.064507960119375, - 14.96267623818029, - 14.98784347905611, - 15.023113801309208, - 14.970911174537662, - 14.914916849836786, - 14.925143751088946, - 14.976751536051982, - 14.95264824493179, - 14.997107690453097, - 15.014652719388334, - 14.975925041057184, - 14.921227524538898, - 14.946112177425528, - 15.02036856127001, - 15.04327681416604, - 15.008997357473904, - 14.977844487894416, - 15.007996414968579, - 15.045022926433122, - 15.015850692178596, - 15.000613187027671, - 14.967874223392739, - 14.985463104543625, - 14.992172822699324, - 15.018634280180676, - 14.96879187033338, - 14.996592684886785, - 14.978696937568554, - 14.967116977466038, - 15.001089923447983, - 15.014235980984799, - 15.015463407429854, - 15.001669310879363, - 15.049890732085178, - 15.026248108636189, - 15.018450875331935, - 15.010809355129878, - 15.08742155118053, - 15.055417573482769, - 14.986838004698026, - 14.998868560646354, - 15.031210686029732, - 15.014057300992926, - 15.111231339086713, - 15.028776441109768, - 14.981567609013137, - 14.995167863171641, - 14.973021661870426, - 14.959196894401702, - 15.007462308690348, - 15.036331661285766, - 15.007040419741454, - 14.93616978948002, - 15.006321019203238, - 14.991908152532869, - 14.995213142727883, - 14.988448767860698, - 15.00815848257681, - 15.013893203225505, - 14.942833210901593, - 14.944631750622428, - 15.027323087876166, - 14.993149715703916, - 14.935135020021361, - 14.913670679463602, - 14.889943342634503, - 14.972318713334689, - 14.969050576226357, - 14.965255711776305, - 14.98288213472464, - 14.980831496329179, - 14.934477512511428, - 14.99339582148568, - 15.015092866741833, - 14.942701388704181, - 14.977361724171685, - 14.977867619776147, - 14.964807398442037, - 14.918625659819716, - 15.039126958212394, - 14.994792693431917, - 14.996712929660976, - 15.038236461179201, - 15.053486561715545, - 15.045043501636044, - 14.975218688884894, - 15.00686478287148, - 14.971317472855123, - 15.010065653082412, - 14.921202896132229, - 14.894827470157297, - 14.995302427133383, - 14.955205057109756, - 14.992326894700382, - 15.088388412748932, - 15.035538853644319, - 14.961237823717653, - 14.999889825413765, - 15.0374550222036, - 14.988264058709172, - 15.020865282176363, - 15.00971415239303, - 14.953101939948978, - 15.101228659969605, - 15.031561708862176, - 15.044688694221334, - 14.984066538208918, - 15.039044548864336, - 15.009691555095857, - 15.014396838780554, - 14.999893926213979, - 15.060289052330807, - 14.998098722271738, - 15.045858919004115, - 15.009909208412937, - 14.977557137715438, - 14.949832465246208, - 15.001050575453476, - 15.02131040833751, - 15.01036220725552, - 15.094316034464516, - 15.080185708727226, - 15.066494525536163, - 15.05420170706012, - 14.981760593435222, - 14.99245635080382, - 15.011989706118397, - 15.040456795993235, - 15.013026839195458, - 14.964979619477864, - 14.970410170412164, - 14.976582398346661, - 15.033751487326773, - 14.971472135650945, - 14.935838216672199, - 14.942280112648385, - 14.993216960439295, - 15.043989540649902, - 14.986972666121135, - 14.983078868428153, - 14.923878213617934, - 14.972905685574673, - 14.974504857718394, - 14.982729453606856, - 14.988138156680673, - 15.009343445132385, - 15.03553041996813, - 15.015353395467121, - 14.981875629945923, - 14.943855750082683, - 14.96000925036073, - 15.059383858212334, - 14.979639453958503, - 15.030320695948223, - 15.064619368342719, - 15.024942170094342, - 15.009850915031048, - 14.909894875324982, - 14.97317349540632, - 14.939062405427439, - 15.015588687686675, - 14.905571683773442, - 14.864914084251467, - 14.863332873453349, - 14.969898376355713, - 14.994640732258311, - 14.981839647112874, - 15.055851389389034, - 14.948348313174742, - 15.03283315902467, - 15.11746572399681, - 14.998276997003599, - 15.010234077018799, - 15.004920449853676, - 14.970814738761366, - 15.004576043045015, - 15.025145069738494, - 14.976616147159056, - 15.001692838189218, - 15.073800590005192, - 15.011898515612792, - 15.027359269812651, - 15.074843188619312, - 15.021917260704106, - 14.958456723070626, - 14.945879626816216, - 15.033902968257717, - 14.962589690700828, - 14.978710900029602, - 14.975839870635555, - 14.91654554025687, - 15.029790467379268, - 14.985008783835033, - 14.95445498542891, - 14.982077944839878, - 14.970788656539556, - 15.036529159263576, - 15.07106465693603, - 15.020606921795554, - 14.996576226594199, - 15.03814054624219, - 15.034232404447193, - 14.929963434557164, - 14.95918616945847, - 14.965502512811721, - 14.96909024949976, - 14.978276444384376, - 14.991396760890868, - 15.012640315017833, - 15.036287634575238, - 15.02773410168465, - 14.968271018482348, - 14.932372138430603, - 15.045555874867262, - 15.027161246300684, - 15.108967869544768, - 15.015371273674493, - 15.050782799055758, - 14.965840635042968, - 15.02790645694957, - 15.029271544066104, - 14.907737730837507, - 14.967756195018161, - 15.025163515660513, - 14.980816399919183, - 14.948244620726015, - 15.002559448377092, - 14.965674929399286, - 15.02572521947009, - 14.954773667184046, - 15.057172181417359, - 15.117129615162504, - 14.989852355823551, - 15.109227186590973, - 15.045599520398191, - 14.980892108424902, - 15.003985702723613, - 14.957117683542336, - 14.987247356018134, - 15.078690659421797, - 15.076649465453977, - 15.02062977739572, - 15.045403803564653, - 15.040737292839529, - 15.039417639693417, - 15.014207782766059, - 15.050002369765975, - 15.018912644577606, - 15.01548128065221, - 15.018996306069333, - 14.992627016976792, - 15.00580265801968, - 15.0047268426017, - 15.033109999042628, - 15.004455676958761, - 15.023423147918713, - 15.095572029628405, - 14.98539717978075, - 14.985056441208043, - 15.04352260655964, - 15.064362164656474, - 15.051542273701557, - 15.032554680173753, - 15.01117232668955, - 14.978470287904644, - 15.009219201131051, - 15.008544704230328, - 14.994031326051122, - 15.024314083803036, - 14.987434640704087, - 15.031005825429267, - 14.983755293060694, - 14.96116272991613, - 15.01644590299869, - 15.011398213738078, - 15.012385847946943, - 15.021454352708181, - 14.969813531444002, - 14.882175727170232, - 14.951809881319447, - 14.979260966468436, - 14.99812264522187, - 15.001924373551585, - 14.944713505869938, - 14.975083854888174, - 15.018036159743339, - 15.049399162892408, - 14.969852644842108, - 15.029359811262864, - 14.985488309209563, - 14.936622177578796, - 15.01034443083054, - 14.982963266234437, - 14.983473466199976, - 14.932728252672714, - 14.949361338771611, - 15.045812607539636, - 14.904766250714655, - 14.98672852504832, - 14.998037117411185, - 14.945514844196131, - 15.09301381851098, - 15.093347062075262, - 15.008706478265632, - 15.04617917339129, - 14.910402159202413, - 14.975864953022102, - 15.00716328222112, - 15.056316555330847, - 15.007623079577947, - 15.03693111121329, - 15.07014492480753, - 15.08914920450432, - 15.012097715434459, - 15.012983352136017, - 14.995093832222532, - 15.048873420934422, - 14.999387307086458, - 15.001464557182203, - 14.982286912296546, - 15.002782135508678, - 14.902042671335131, - 14.966975571951133, - 14.974942209167775, - 15.02112875764266, - 14.989396325925364, - 14.956949182672838, - 14.991411176311813, - 15.007775249156373, - 15.00200557959046, - 14.992796971129371, - 14.988906898596474, - 14.970701491999568, - 15.038404266468001, - 14.937463937387713, - 15.018160845299581, - 14.982481059913425, - 14.966920356289396, - 14.943696315116267, - 15.035486032832813, - 15.01681307885355, - 15.07924461708538, - 14.998026844261526, - 15.004583919156135, - 14.966276363539675, - 15.048428870761688, - 15.006588418309052, - 15.080401025544798, - 15.10346244304578, - 14.992420827292076, - 15.001259818065881, - 15.008285075702066, - 14.965602369040262, - 14.963711756396341, - 14.964221014093255, - 14.91911735465887, - 14.963532312912573, - 15.04896300987003, - 15.023355387076593, - 15.016155038421903, - 14.974051557963927, - 15.02812634796434, - 14.980402541093147, - 15.04053010513985, - 15.021729700667587, - 15.116273502716526, - 15.007241655655665, - 14.965859231256193, - 14.924516671710965, - 14.975423040770218, - 14.98058498693544, - 15.031908117143882, - 14.997916531350164, - 14.988111876799694, - 15.019822543891408, - 14.959748461058842, - 14.989350910636679, - 15.023175233343364, - 15.061527314782111, - 14.994822254419006, - 15.034551416411334, - 15.070948607605244, - 15.019924396539633, - 14.998952410823621, - 14.989408615512646, - 14.980777049973456, - 14.965133291205028, - 15.031446994978428, - 14.965921185796676, - 14.997519187830465, - 14.988116158987639, - 15.064167956992776, - 15.030265219669062, - 14.998513613977096, - 15.062960482200872, - 15.025146189146312, - 14.96085214039536, - 15.04284320552516, - 15.016384866716768, - 14.968534020223737, - 14.93821044330642, - 15.005344068643883, - 15.046136521575859, - 15.05508251633211, - 15.03759158782223, - 14.944730976368016, - 14.966787072577649, - 14.969187440325678, - 14.964654067503568, - 15.01255765351169, - 15.00028400650454, - 15.011500316358838, - 14.968700844257238, - 15.038349203804612, - 14.995184001790133, - 15.006379599943335, - 15.049783683402401, - 15.00949198036373, - 15.000881027149282, - 14.996307997967211, - 14.958581257097427, - 15.121530877103666, - 15.10567126493732, - 15.08903777269271, - 15.040402495544006, - 15.018467244464224, - 14.954824378400609, - 15.025224829991508, - 15.022365803421268, - 14.999232967589514, - 15.007363450735358, - 14.967220726778457, - 14.932830573420153, - 14.95281793687937, - 15.054119721519616, - 15.101302006939457, - 15.004514906587305, - 15.069736062541256, - 15.015924440529234, - 14.934744042750198, - 14.955779608996938, - 15.002015732997215, - 15.068135643274776, - 15.0349469045605, - 14.989484210256926, - 14.960574859401595, - 15.03537819888716, - 15.03201452951901, - 14.992694169388086, - 14.975659444304464, - 15.04163225136513, - 14.984538591804128, - 14.951827848196698, - 15.010908585570395, - 15.033941164743487, - 15.034408309097074, - 15.075389274964298, - 15.004837181682667, - 15.057899149272178, - 14.99906012794665, - 15.004872709472213, - 15.05445657316956, - 15.052349926183343, - 14.95528698896383, - 15.010749483611287, - 14.915871483939684, - 15.008407408837838, - 14.979901571019724, - 15.00917127383855, - 15.05934288685939, - 15.012241036349359, - 15.060385534638632, - 14.972917360333637, - 14.910637623324323, - 15.008111953658325, - 14.972981912162298, - 15.069742491087332, - 15.0176402543595, - 14.95886150085714, - 14.97413755529154, - 15.02234727108734, - 14.994640870189093, - 14.996398446301704, - 14.940204227307838, - 14.981083728420845, - 15.006346154783909, - 15.00972621730159, - 15.028941324750749, - 15.041080054973593, - 14.955873020629793, - 14.991956274109942, - 15.001790506069282, - 14.987793437252309, - 15.033221511008637, - 15.017204158394602, - 15.03434583527744, - 15.018820872001768, - 14.924639183859895, - 14.9718097937268, - 15.020800032634408, - 15.015020952702132, - 15.003270264583179, - 15.024331932116525, - 15.074868824676136, - 14.968166005603548, - 15.011168998989936, - 15.035062687774056, - 15.029018402621288, - 15.005399839072425, - 15.043862596568244, - 15.010556634988228, - 14.954076526479282, - 15.015116127455329, - 14.961493466013817, - 15.075582749961278, - 14.983106807189968, - 15.008787204244834, - 15.014887175118007, - 15.025355611828923, - 15.033023285005138, - 15.050437561661962, - 15.040272933030138, - 15.009670995651248, - 15.00712378601085, - 14.98301262974629, - 15.04617785302975, - 15.036383626784339, - 14.95439805185784, - 14.978992175505548, - 15.03621300040613, - 14.977007467333179, - 15.008502462573725, - 15.099472614971246, - 15.104395358176207, - 15.072987908197351, - 14.980137381447394, - 14.99025654210617, - 14.97269750408265, - 15.00555166496943, - 14.99931160927163, - 14.998898611142593, - 14.971275183906156, - 15.01630979395933, - 14.976264301214615, - 14.946249096912798, - 14.943000505683559, - 14.96924317597902, - 14.962588019607201, - 14.902889627863273, - 14.986973586638792, - 14.932926681823014, - 14.886810923077563, - 14.958755999409513, - 14.965108184223743, - 14.986793331869443, - 15.05428535050533, - 15.047090218250625, - 14.993829535649356, - 14.978949693978988, - 15.03288760754943, - 14.96604336926223, - 14.985990837178399, - 15.002059256734837, - 15.03669394379741, - 15.057997791882034, - 15.079252297016827, - 15.035030285762701, - 14.975941676469285, - 15.012014477424854, - 14.940052101615466, - 15.032965120451745, - 15.061994586312377, - 14.97373893637356, - 15.037023356704971, - 14.95678270925576, - 14.943248078942423, - 15.002533120371504, - 15.033064570954826, - 15.020346206139198, - 14.884394803189133, - 14.98638935065275, - 15.053927992272149, - 14.935761801857483, - 14.933993481111536, - 14.952429865811773, - 15.000944817982711, - 15.0222422292391, - 15.01718070200321, - 14.962425501882803, - 14.983563551698523, - 15.022353660050818, - 15.04783988385203, - 14.963886787478648, - 14.985621297574937, - 15.021633117110426, - 15.04578338851042, - 14.974931652666182, - 15.04051151054937, - 15.08890248171083, - 14.930060559542305, - 14.978267606150728, - 15.062071477558094, - 15.015516828850172, - 14.977162367163718, - 14.93381128168662, - 14.8797781245057, - 14.955641781132224, - 15.013380658799875, - 15.003009685743296, - 15.014178144247824, - 14.978568748105287, - 15.01442600765409, - 14.971368229896918, - 14.994821155590364, - 14.94214038819421, - 15.08544151456731, - 15.041680775449727, - 14.981670507618798, - 14.980465655957145, - 15.032267315561041, - 14.999108787984806, - 15.023145050761812, - 14.939234716808702, - 14.98527509804283, - 15.003766477145623, - 14.966857471291304, - 15.008593253828256, - 15.013039004802668, - 14.990641870780868, - 14.970871670342786, - 14.95957273577358, - 14.954991054457524, - 15.018591863573928, - 14.939556025751745, - 15.014375236348524, - 14.96370481083482, - 14.97088745674583, - 14.930916021678438, - 15.02931082747657, - 15.018440399621815, - 14.968603099230467, - 15.021446091521595, - 15.079443730918769, - 14.954386129080776, - 15.01286571190633, - 15.038656631323834, - 15.01645706615219, - 14.9835586266153, - 14.954391276149524, - 14.961436894704486, - 15.003267629585196, - 14.986856226756219, - 14.95734656384002, - 14.986382199100145, - 14.962971185513693, - 14.984379055336328, - 14.942171468116314, - 14.969782953239877, - 14.897648166359048, - 14.988318826094547, - 15.012146345519763, - 15.090920640878133, - 15.004768768308342, - 14.993621040858596, - 14.95306160715822, - 14.974843831209382, - 14.95770188981533, - 14.93182036069083, - 15.036884446115364, - 15.112414621564506, - 15.11182086070787, - 15.03022827603878, - 15.004911184739955, - 15.02696070394593, - 14.927582088268444, - 14.988298064188177, - 15.002664421070207, - 15.01283270792433, - 15.05229297642572, - 15.00685373696769, - 15.048013643049345, - 14.944678193783187, - 14.958997397422731, - 14.96519617436006, - 15.014775831190718, - 15.015105995186001, - 15.039132264320477, - 14.981012412552428, - 15.035802957764364, - 15.029755496152143, - 15.029130840116142, - 14.965515934721568, - 14.934552114296457, - 14.960668833924116, - 15.011526448579875, - 14.982963718672478, - 14.942751876493093, - 15.031291452424346, - 15.060405360951133, - 15.127640297376864, - 15.008202190210117, - 15.031033109090036, - 15.024882277268354, - 15.068329127731785, - 15.00628223175426, - 15.016854141149754, - 15.053409655126435, - 15.038756055741825, - 14.994628045794132, - 15.026918997937209, - 15.013406515854722, - 15.024825236361126, - 14.97689613810652, - 15.00168335806688, - 15.086349602687752, - 15.084849603072149, - 14.892306327945512, - 14.937853476162022, - 15.107886930655553, - 15.008307865993258, - 15.055456966111882, - 14.977277463874705, - 14.978050646080511, - 14.944024777854715, - 14.953325254303463, - 14.945660797785042, - 15.038772282193476, - 15.059056611831291, - 14.990734211786114, - 15.110536952187728, - 14.933827265647123, - 14.98078623834133, - 14.995983764416382, - 14.96251088309764, - 15.001276474002491, - 14.984417080752001, - 15.0066770647636, - 15.055685892964535, - 14.994252041445638, - 15.008260075132434, - 14.905718368791712, - 15.01535322566947, - 14.992209989718857, - 14.989051637112768, - 15.001826455883151, - 15.039817170817527, - 15.04955019044195, - 15.087967412393663, - 15.038102835876042, - 15.01693958008408, - 15.006401575780268, - 14.99885028879445, - 15.033605772369254, - 15.083324135107642, - 15.028839526643138, - 14.966014227644473, - 15.056951476926502, - 14.972342412385299, - 14.93806791239519, - 15.053486620121351, - 15.017548502884148, - 15.02852337096725, - 15.006835310878198, - 14.985519324641361, - 14.93021599969019, - 15.061068566770919, - 15.0574427454719, - 15.023567959993267, - 15.053725147738843, - 15.00822973512172, - 14.936676807062645, - 14.9426017857664, - 14.98482155328078, - 14.99918753827278, - 15.024114591056627, - 14.95374567013475, - 14.914938258958875, - 14.934814989412176, - 14.940766407005595, - 14.97429312865456, - 15.042483057721407, - 15.044131581108527, - 15.03970731876281, - 15.084110219642588, - 15.045897716418375, - 14.955681689296144, - 15.000546666767027, - 15.030767753928284, - 14.95421938355282, - 14.958611301162525, - 14.947816837564005, - 14.941215589478958, - 14.975859777672783, - 15.053994327635348, - 15.058242054932627, - 14.932124348819386, - 14.918791885108716, - 14.996467801071455, - 15.056007611917476, - 15.015801759111945, - 15.025220515476931, - 14.992598046844478, - 15.08792848976437, - 15.050513534296348, - 15.011054298830075, - 14.947453891843724, - 14.949602149974403, - 15.004269705213348, - 14.96627513162084, - 15.067778702088479, - 14.994622108287617, - 15.020426220096114, - 15.030639521649585, - 14.956827871917092, - 14.900752254171529, - 14.921432705392359, - 14.980577614546108, - 15.008665707958702, - 15.037665031194752, - 15.059970612425033, - 15.003053601294576, - 14.995731744338395, - 14.970304246352152, - 14.966993461196475, - 15.074922111965064, - 14.96192511556144, - 14.953663244259054, - 15.155504921118386, - 15.051692249775488, - 15.119429865595778, - 15.002027178467353, - 15.101721428777775, - 15.052986387460656, - 15.04592233489608, - 15.005642303170545, - 15.064233054019567, - 15.027293894418202, - 14.96594694546712, - 14.973687511038134, - 15.031133957667159, - 15.00525690618089, - 14.979007139881553, - 15.022478048048919, - 14.99051071639505, - 14.9679512385279, - 15.012285177987701, - 14.984853566617229, - 14.96238615257948, - 14.961376513969768, - 15.02689037014525, - 15.033049909464495, - 14.989244762959366, - 14.960550930329601, - 14.943814422568977, - 14.977782606149601, - 15.004084116046231, - 15.002492737544525, - 14.969642394674777, - 14.999292561993933, - 14.966638852068805, - 15.0208714241427, - 15.023909401379342, - 15.025074906521727, - 15.037674382612867, - 14.995253684542348, - 15.026759613623716, - 14.975172020088324, - 14.996780467857489, - 14.971005674644788, - 14.936694836605833, - 15.041329713820643, - 14.983137708191581, - 15.033317796754515, - 15.036447858868803, - 15.03848942425299, - 14.989831668218299, - 14.926788359566105, - 15.018569761957858, - 14.991271340697068, - 14.993223115711917, - 15.075208457353929, - 15.08260922582938, - 15.025194392406124, - 14.982951437708985, - 14.966676425461138, - 15.015869423672886, - 15.050212810573946, - 15.014429957785588, - 15.02086111353277, - 14.924141708860951, - 15.043251809330405, - 14.89480779254903, - 14.894512700026647, - 15.024774087273338, - 15.023053123761082, - 15.09243814873417, - 15.03510585258712, - 15.025379358890854, - 15.029639707981017, - 15.000591035701799, - 14.986280931141623, - 14.980079226050282, - 14.937752758735378, - 14.997825963898858, - 14.960058342032543, - 15.003607605958756, - 15.009738707600743, - 15.045110693563661, - 14.971668893243296, - 15.054992768760803, - 15.033634466371593, - 15.041417742615332, - 14.946267045093464, - 14.962477403660767, - 14.991835715397183, - 15.063716614291362, - 15.087106459034581, - 15.00448934150371, - 15.009769237530545, - 14.996105237189473, - 15.012725432194346, - 15.029124848150756, - 14.99885147164274, - 15.022516103805568, - 14.993977431984089, - 15.02417036156216, - 15.065539103606211, - 15.01158876726961, - 14.89760247465016, - 14.933128832057857, - 14.965613470805971, - 15.030951368381906, - 14.997580187540102, - 15.021565845301273, - 14.983973466008113, - 15.015209114758159, - 14.968116400862879, - 14.971970621706562, - 15.053529004486192, - 15.07745783335603, - 15.024172440281085, - 15.053519614558969, - 15.01423031907879, - 14.982106644534378, - 15.023191853843453, - 15.094592306122774, - 14.941090792352883, - 14.984979889844386, - 15.005817588571976, - 15.037646742560144, - 14.96267779119025, - 14.954560468522919, - 14.996083627150089, - 15.008892304882334, - 15.000161018440823, - 14.97422780102738, - 14.976923342002605, - 15.020900095018703, - 14.950185276577885, - 15.000955017976425, - 14.980711818029993, - 15.048294559797387, - 15.00903582378383, - 15.0469661169084, - 15.007196135417155, - 15.02125732229182, - 14.941965156039245, - 15.063559832947877, - 15.015763873009181, - 14.977592590571897, - 15.031667971997017, - 15.099771436925502, - 15.036035433437972, - 15.029743404720339, - 14.989904688468933, - 14.94689509101495, - 14.979781760635618, - 15.074619847309467, - 14.9765895422944, - 15.054165618713704, - 14.961317605142133, - 15.057730813300253, - 15.007239294445721, - 15.09831252601734, - 14.95388900379014, - 14.965897302208772, - 15.073679959304773, - 15.108829387354996, - 15.022349680280122, - 14.944018985367277, - 14.93222558564814, - 14.97472660372428, - 15.016079757799895, - 15.059971183909813, - 15.004203998386618, - 14.939697762592628, - 14.964289652660225, - 14.981007629321041, - 15.002867812852276, - 15.02763788323317, - 15.007887739620134, - 14.97529179476676, - 15.03034919748617, - 15.007947346086134, - 15.096372577406555, - 15.024567520335516, - 15.055858130684415, - 14.985132809722339, - 14.988200200792834, - 15.0658858368824, - 15.028769705199027, - 14.992421518774384, - 15.00226017606326, - 15.009684996375862, - 15.051630942473817, - 14.978918237002599, - 14.980518909730645, - 14.956455897570107, - 15.02769592289539, - 15.003232441481932, - 15.016605582509895, - 14.899415740055439, - 14.990181059770624, - 15.034795405687879, - 14.983247251052555, - 15.028517410341955, - 14.988660328355607, - 14.923663619990903, - 14.918274741104229, - 14.93401561946129, - 15.022563610289335, - 15.043354932170983, - 14.944265288174586, - 15.016086703628154, - 15.021074504657074, - 15.004397231130735, - 15.010378653786567, - 15.022816298678558, - 15.08189158514563, - 15.028444259453678, - 14.999953403836153, - 14.951752424058121, - 14.922542280818732, - 14.942670091053342, - 14.983646660055914, - 15.026485678492604, - 14.940602010680829, - 15.024168645794655, - 15.028414119631922, - 15.011053123631397, - 15.051930889577248, - 15.008475338728307, - 14.970227190655141, - 14.955891836808934, - 14.974036286589198, - 14.97704363944331, - 15.009851226165992, - 14.948338523732106, - 14.995885032038402, - 14.869778711750367, - 14.874573938551581, - 14.961478955513241, - 14.959032512702692, - 14.951656390026805, - 14.880622663854398, - 14.918363541979046, - 15.017539710560932, - 14.950073235787178, - 14.923385994379007, - 14.975600558175891, - 14.977524360185141, - 14.995537600736837, - 14.98980732808314, - 14.972004936341389, - 15.029413412388777, - 14.95103532035574, - 14.938522770428056, - 14.91549365193654, - 14.964019293555175, - 14.921656274612694, - 14.91724716175822, - 14.97868090964877, - 15.002936439207993, - 14.97078643106922, - 14.988978954199538, - 15.012036546646623, - 14.947594813093323, - 15.05594390465832, - 15.000932275481249, - 14.972671607059596, - 14.983336689339403, - 15.02684733589731, - 14.996779932221488, - 14.99740803540625, - 15.062055947851784, - 15.035816055315346, - 14.960554560347203, - 15.008835827850994, - 14.934867334605359, - 14.971844200649578, - 14.979550585891836, - 15.109814160155148, - 14.991554216134459, - 14.91764493104305, - 14.96763550169362, - 14.987703434905463, - 14.960987425045017, - 14.959495137329817, - 14.972004122082838, - 15.003870329770887, - 15.005246467956079, - 14.980070145768174, - 14.999609919915452, - 14.98127490977004, - 15.01252098652604, - 15.058818624977702, - 15.027619817746617, - 14.977582690299569, - 14.958976578758747, - 14.955975379353454, - 15.002450563014845, - 14.975853827575843, - 15.010837673410029, - 15.010177833174188, - 14.993558180355608, - 14.98588631695775, - 14.951527822615052, - 14.972327716811762, - 14.991525839417163, - 14.914989941289084, - 14.922226204655075, - 14.963159949117282, - 15.026704251684446, - 15.040962553259785, - 15.02769113124983, - 15.05619924334249, - 15.012379899650549, - 15.079505995284046, - 15.042581276276694, - 14.938876345873725, - 14.934282075955213, - 15.028545050061354, - 15.026855773129263, - 14.990395839354296, - 14.919172307480324, - 14.938168247072857, - 14.920835002718437, - 14.949692023017926, - 15.023807172073955, - 14.982433996405149, - 15.011275450527252, - 15.018163311563862, - 15.028489693092274, - 14.986995763584098, - 14.953475855695135, - 14.985621455001285, - 15.056034260936986, - 15.016106327962273, - 14.987208315770287, - 15.091721152989983, - 15.036520817968325, - 14.97499031917244, - 15.105201977434355, - 14.908616686359423, - 14.976826626194088, - 15.083802419307831, - 14.994879921766634, - 15.007848659272819, - 15.006110116072785, - 14.90279694520503, - 15.034282205663365, - 15.021666286068111, - 15.044958341821093, - 14.989844304592443, - 14.973802640296919, - 14.992269320894804, - 15.009943197645274, - 15.049875142915736, - 14.984483682717707, - 15.013530125738368, - 14.936995937788557, - 14.993709332294198, - 15.022948003093672, - 14.927819379330524, - 14.928134181643372, - 14.913290397528641, - 14.931349152596164, - 14.89741016982711, - 14.973036204318582, - 14.991616224127775, - 15.025818271679205, - 15.089952794716165, - 15.02063471483188, - 15.051006427480216, - 14.986913970284306, - 15.061559516981474, - 15.052303259039252, - 14.91027942283898, - 14.996190888727355, - 15.04690644073317, - 14.951544113477654, - 15.027860425019364, - 14.956811527009526, - 15.0499936089456, - 14.917744620830693, - 15.051447306303773, - 15.02548912114951, - 15.065427295844598, - 14.989210294225208, - 15.051615883652376, - 15.027306784453154, - 15.020055911353714, - 15.010788946497305, - 15.024090951151637, - 14.937930060789599, - 14.993751320277363, - 14.996746595421923, - 14.996920412654879, - 14.920496817246507, - 14.938991760294323, - 14.94968956564135, - 14.952086691429173, - 15.008535273533088, - 14.971370916812301, - 14.984838029736007, - 14.995331178594236, - 14.918293003442887, - 14.96287241490632, - 15.021974978702067, - 15.073580765811403, - 15.047121690851561, - 14.988396624818153, - 15.020104547056293, - 15.005702650568685, - 14.914247920676148, - 14.907075395139909, - 14.861707306626906, - 14.934908590945557, - 15.04765028507603, - 15.02642546376358, - 15.038628217081984, - 15.00058275084477, - 14.99283977526587, - 15.000431023346067, - 15.041516203435467, - 15.055767286439176, - 15.058824547447571, - 14.994144408261134, - 14.909049369707152, - 14.964614742585338, - 14.955358298811104, - 14.897251450514934, - 14.988762254099186, - 15.014556371114894, - 15.017023585932323, - 14.987133226672778, - 15.0245828606455, - 14.974380977922221, - 14.89603264910894, - 15.025012365835531, - 15.016836217263933, - 15.06873769050115, - 14.997297483424829, - 15.009484355946112, - 14.9997594356915, - 14.961006354851314, - 15.029825233368639, - 15.007608849306537, - 15.042358929075705, - 14.956670964017754, - 14.996522709864673, - 14.987090044820055, - 15.005533040927386, - 15.02290213538339, - 14.997889180745556, - 14.984997660084536, - 14.910254699663898, - 14.880648718897604, - 15.017519559477895, - 14.991155733410364, - 15.049111376874116, - 15.07448609133864, - 15.035227812755734, - 15.072802599484262, - 15.021354986190369, - 15.042940762922983, - 15.002421456090353, - 14.964290546933038, - 15.02768820452731, - 14.995229147517477, - 14.994298104204875, - 15.00729191470578, - 14.98136246803001, - 14.916121111813053, - 15.121051919659655, - 15.038662132855928, - 14.941556536555096, - 15.009866651930343, - 15.068014710531218, - 14.978025885943808, - 14.9706832762269, - 14.961808551233327, - 14.973875703706232, - 14.933832896284468, - 14.983102119454504, - 14.981911299856911, - 14.962557323683278, - 14.98016271832569, - 15.03809778944997, - 14.953383797735409, - 14.991307290697621, - 14.961957208336546, - 15.010150012505187, - 14.92494991887635, - 14.967817352305252, - 14.988825803774105, - 15.006257238583904, - 15.0029681878435, - 14.993569698127063, - 15.057277175011887, - 15.028187047526073, - 15.003930701311207, - 15.017405701358609, - 15.013971169492368, - 14.96847698877951, - 14.940547901515906, - 14.97305623972323, - 14.957797217907878, - 14.945492294038733, - 14.992271288391228, - 14.98991941924824, - 14.987592569093456, - 15.031088423233992, - 14.946359120303352, - 14.956562371828332, - 15.023249119736713, - 15.018503729266452, - 15.108053395422194, - 14.973697588874526, - 15.023033916734787, - 14.970393627624277, - 15.005565423533875, - 14.986648385288182, - 14.968921275216157, - 15.057729660173704, - 15.001176558833404, - 14.974851260871926, - 14.947208098369657, - 14.997421263994209, - 15.011386676913611, - 14.938875291844488, - 14.958601807480878, - 14.99305658078545, - 14.951269290470735, - 15.00038669659855, - 14.988157252980473, - 14.97421105514925, - 15.058991347156121, - 15.009081638445013, - 14.963217792304642, - 14.942186592205, - 14.971569932991061, - 15.018635713117444, - 14.960572241193855, - 14.959254461602645, - 15.008275874915086, - 14.998336798955753, - 14.892829122345047, - 14.97545760146025, - 15.066254979117513, - 15.025629994099987, - 14.951510714478149, - 14.933020822825403, - 14.986849789144246, - 15.041011906450606, - 15.065110445920281, - 14.96193671476433, - 15.014857705112089, - 14.97493083121656, - 14.935791357031755, - 14.965793379448618, - 14.996907366601132, - 14.989225535075972, - 14.967366608977017, - 15.086681711016244, - 15.03945699854209, - 14.96654728317716, - 15.024884492977172, - 15.00914709592645, - 14.96381663169903, - 14.929419593829488, - 14.977629338657767, - 14.986343122337805, - 14.945828147412257, - 15.012652540207737, - 15.004129802900346, - 14.939142954166346, - 14.934782330992565, - 14.921213550377034, - 14.959040926912941, - 14.978976532452375, - 15.01313040117808, - 14.991542868999334, - 15.00101828007827, - 14.9966896943413, - 15.036599766345406, - 15.027936713835327, - 15.049994524471792, - 15.019579372075968, - 14.95874207089376, - 15.030654365963345, - 15.005094119937189, - 14.953543392097213, - 14.969047269250487, - 14.96706508953343, - 14.991727440011106, - 15.06262644212787, - 14.986080222792188, - 14.933180591731006, - 14.971715292424772, - 14.989613786584139, - 14.970260974478563, - 14.994630999983931, - 15.042369303394514, - 15.02607235324226, - 15.058137987898734, - 15.03415387756125, - 15.007790718510922, - 14.970265732012102, - 14.975943661515675, - 14.997958537140391, - 14.947155099721233, - 15.075175377494888, - 14.990368595517571, - 14.924520757932127, - 14.93021520136911, - 15.09910051333908, - 15.003093896109311, - 15.036638764480617, - 15.013988383123648, - 14.963713948403765, - 14.980977180537886, - 14.984117812218063, - 14.975837571561065, - 15.088500868885538, - 15.020175213928711, - 14.999774176875402, - 14.961107266113663, - 14.953895283803181, - 14.983911637826168, - 15.000999040943578, - 14.967906673434493, - 14.986916396126327, - 14.95693398161545, - 14.992280675164242, - 14.974953272015876, - 14.989839223182203, - 14.960067674535788, - 15.00107956145041, - 15.063317246162418, - 15.134434905054375, - 15.125480005758247, - 15.079530318336586, - 15.069507378401424, - 14.960023878852379, - 15.018121142115357, - 14.9738224891621, - 14.988529457952303, - 14.951108046819003, - 15.006270090975429, - 15.022542194310272, - 14.992537568949746, - 15.0190815088672, - 15.031564700295085, - 15.013511623805769, - 15.047933851991276, - 14.97463902326321, - 14.978137668066042, - 14.937584118496554, - 15.00471866672448, - 15.005106086233598, - 14.97216276686005, - 14.95635451373213, - 14.967584646662951, - 14.939481705620874, - 14.903801503510222, - 14.916258954799464, - 14.96578882110394, - 14.960179434711206, - 15.04774386334731, - 15.089987525899653, - 14.990618312072296, - 14.988074486061182, - 14.97070866000453, - 15.033627037909092, - 15.068819566661555, - 15.049275831732707, - 14.980901652682656, - 14.977332640845193, - 15.03380748919453, - 15.00031035386937, - 15.059261141185134, - 15.074097695986126, - 15.042558560194246, - 14.979034598727619, - 14.944558148715899, - 14.976714411519442, - 15.098345901463015, - 15.049699164436385, - 15.117373495708925, - 15.078455122533674, - 15.021014839907727, - 14.986234795101117, - 15.017014321798865, - 15.005059973613868, - 14.993691209050269, - 15.009753846357675, - 14.98402609932572, - 15.015992857615442, - 14.990612689909359, - 14.993591036487468, - 15.000308902074911, - 15.006878904458189, - 14.9754398640085, - 15.097587996880204, - 15.134049016218375, - 15.010630638723349, - 14.988534782113826, - 15.044476268810175, - 15.04244132727899, - 14.96693463999547, - 15.028820893188296, - 15.010714193533223, - 15.039908944934187, - 15.036063509823554, - 15.022894996759216, - 14.976853260837137, - 15.044684121286027, - 14.937349817159594, - 14.936770234978388, - 14.958381365931912, - 15.030977696986241, - 15.009039701106039, - 14.94762436125947, - 15.01474126710439, - 14.99984414695214, - 14.983704601377305, - 14.974155122866794, - 15.070494890608732, - 14.986948336881975, - 15.009136938673464, - 15.084144221561395, - 14.898650929944493, - 14.98091838217027, - 15.00324560718588, - 14.962882342357235, - 14.987149638161629, - 14.999626428806577, - 15.013672648935794, - 14.971233439817478, - 15.004869364368709, - 14.943737126962535, - 14.986434945489407, - 14.94256128150882, - 14.972968628950513, - 14.948874161084658, - 15.035256233910863, - 15.034189917783076, - 14.822976446673154, - 14.936027358421896, - 14.959658694447883, - 14.937434739347102, - 14.93559066344361, - 14.924764258708409, - 14.969746304820033, - 15.10715732871919, - 15.065708543854932, - 15.025370018444333, - 14.986616175904995, - 15.041968102239224, - 15.06686703863817, - 15.054632695287905, - 14.985761348508875, - 15.102293932364006, - 15.067202640050201, - 14.932772516933966, - 14.942387774724361, - 15.032153039552455, - 15.090378468542951, - 15.060486684756796, - 14.963002435165537, - 15.010494690609459, - 14.983952992495976, - 14.939327630438818, - 14.920791485917102, - 15.056778023987212, - 15.024124200652283, - 15.01069947071633, - 14.967316743970704, - 15.026696209167534, - 15.040575300658096, - 14.951997357940357, - 15.02657082544387, - 15.002474406983765, - 14.961761380650708, - 14.895117030441707, - 14.945348531430508, - 14.993286221112577, - 14.956373334610333, - 15.064021513161642, - 14.972523512172854, - 14.986010066835442, - 14.953748202557069, - 14.96073425979356, - 14.991149288269053, - 15.019815273944179, - 14.972443559518977, - 14.970590409618348, - 14.976975503370266, - 14.982895472868464, - 14.991873096826804, - 15.043521347146964, - 15.015876160856154, - 15.056036474202545, - 14.960576251055594, - 14.991278020787167, - 14.979842727260527, - 15.072967073886817, - 15.02138570850308, - 14.996964124803092, - 15.007122773195592, - 15.006543613588986, - 14.988227006819839, - 15.011057997751314, - 15.01136440754705, - 15.001223920178067, - 14.949396189196118, - 14.928873816997076, - 15.062427422192505, - 14.999692317021706, - 14.975828136252492, - 14.921269296930447, - 14.997037358299242, - 15.018293819901897, - 14.948377725343262, - 14.95310949193634, - 14.981507885518523, - 15.002058809211388, - 14.935308096168033, - 14.997429003373888, - 15.032015399472014, - 14.972629026303892, - 15.002910902880274, - 15.010194433446369, - 14.941675890895045, - 14.930445780123836, - 14.958436056138584, - 14.933579846651662, - 14.94183594251818, - 15.064441735372798, - 15.033769378874233, - 14.96904492889749, - 14.999475158966943, - 15.054270949611999, - 15.079045475299429, - 15.004338837486799, - 15.036575987492375, - 14.988445033992095, - 15.023011731216682, - 15.043621522332048, - 14.992371062724112, - 15.03565870765977, - 15.04044349980227, - 14.987691735809815, - 14.974398832405207, - 15.043066411123487, - 15.024395883379901, - 15.032343902577317, - 15.081021262719496, - 15.070760129249152, - 15.046122915602947, - 15.023380255448679, - 14.944105520861322, - 14.969337397151914, - 15.085584511060226, - 15.056917215827585, - 15.066366702008144, - 15.045939359210212, - 15.113351886217753, - 14.973657607505183, - 14.92683469221805, - 14.963341609449895, - 14.951240368201077, - 14.947061560499513, - 14.939306066833975, - 15.06938130801872, - 15.040784345156434, - 15.045819319891342, - 15.090306943066407, - 15.008698876299796, - 15.034134368786821, - 14.984760870238128, - 14.931444830347663, - 15.040002891752534, - 14.985388999081264, - 14.935877778743146, - 15.071550815743963, - 14.988366126229675, - 15.027980743096512, - 14.962708097522192, - 14.994819759029722, - 15.041659889511129, - 15.045679051913094, - 14.995847061310075, - 15.03668678013579, - 15.001577427264017, - 14.98646228724953, - 14.96565742204706, - 14.962701692129702, - 14.987629973044129, - 14.919201783959958, - 14.983596692090048, - 15.039243104747062, - 15.012223686441118, - 15.070211277556737, - 15.031533631713138, - 14.993375226313917, - 14.987190368630264, - 14.911863298720625, - 15.01249800936894, - 15.016747431925992, - 14.980313358236254, - 14.998483826885806, - 14.981606460878243, - 14.990071877648969, - 14.955504198352548, - 14.954726563414637, - 14.972117860192697, - 14.959917868871328, - 14.966043622811005, - 14.94001055739628, - 14.963344126758594, - 15.046023683020055, - 14.98792712183702, - 14.918041127960695, - 15.002137705759, - 15.029880131384571, - 15.007948588858932, - 14.995411540896372, - 14.97584851951937, - 14.99197273004146, - 15.049645926901615, - 15.003266031727435, - 15.08324618990097, - 15.087330852253544, - 15.020904873882749, - 14.997710977775837, - 14.964073491595375, - 14.997072481725521, - 15.015609921434104, - 14.963410178075193, - 14.970824017594683, - 14.95876615713652, - 14.944304587870446, - 15.047165626475342, - 15.088254643041571, - 15.050265313344257, - 15.030373258230076, - 15.001748878854565, - 14.99649383785157, - 14.99822791962727, - 14.977840327296688, - 15.02676824320375, - 14.99848587815975, - 15.05807909424419, - 15.076348792092025, - 15.044976241179615, - 14.947743798907348, - 15.026079623057841, - 15.017742118289442, - 14.993947000876664, - 14.961285355347938, - 15.010829686760896, - 14.98183255851858, - 15.075047720729529, - 15.059215690579089, - 15.037626195344268, - 15.000408329713837, - 14.917320744735951, - 14.921145510526244, - 14.993426008197927, - 15.021869679818051, - 15.052611954485954, - 15.029482283214941, - 15.020494680203717, - 15.02683444614036, - 14.966981827082128, - 15.029571584962309, - 14.994972443520021, - 15.111891770658909, - 14.963713902176654, - 14.956334165829833, - 15.003173918281776, - 14.972860224540632, - 15.003779989318659, - 15.027966295336126, - 14.950768112340583, - 15.014741738739882, - 14.987877854174888, - 15.021619743048415, - 14.987551392928163, - 15.05182833652914, - 15.027264228165178, - 15.015707451549932, - 14.985848937807324, - 14.968126373896538, - 14.989327924440255, - 14.956260406370868, - 14.96708523026309, - 14.967386185774973, - 14.961372531327136, - 14.952669625863608, - 14.978163531176822, - 14.967100855906029, - 14.984769873563076, - 14.96223055883075, - 14.998331848701838, - 14.953821076648376, - 15.009859409436954, - 15.056175395682667, - 15.07421443977077, - 14.942257294439536, - 14.996589432889115, - 14.973260530812611, - 15.002330877391461, - 14.963753943759949, - 14.986224808489979, - 14.968525128996474, - 15.044649945095024, - 14.996550440380487, - 15.041312682650178, - 14.981180874789139, - 14.925952868676251, - 14.972165525635855, - 15.045854904959178, - 14.976531863425977, - 14.965759931239731, - 15.010906763564616, - 14.99728003435716, - 14.999949014594328, - 14.9975822735644, - 15.05377523002904, - 15.01671625837184, - 14.973060952909258, - 15.031024602271644, - 15.03668320808086, - 14.97330743959595, - 15.031085784609807, - 15.00132776313288, - 14.96724500826786, - 14.978238174031567, - 14.997610473231319, - 14.936439573960087, - 14.982744317585684, - 15.012293136180476, - 15.018291196303737, - 15.022832820628919, - 15.025592733150189, - 14.931080018370649, - 15.01330389315998, - 14.955567892928796, - 14.877541587515713, - 14.83422672793551, - 14.941401713255646, - 14.947398431787219, - 15.015791935001529, - 15.001752876955914, - 15.009322826160062, - 15.045586921085457, - 15.03459049634949, - 15.039061649108573, - 15.054607617280903, - 15.044317270135338, - 15.018585634223605, - 15.022054267251763, - 14.970896955518173, - 14.945739314658178, - 15.004947792551247, - 15.005100080304167, - 14.964151868170626, - 15.001740897351162, - 15.027208844216355, - 15.00133419802644, - 15.006151407472027, - 14.926196399388838, - 15.00389186173582, - 15.001983572365692, - 14.985310873353997, - 14.942121005389001, - 14.967100820204275, - 14.996787593764273, - 14.945392482545387, - 14.95472828825455, - 14.964355013278572, - 15.014969819548025, - 15.042245075879917, - 14.978057086213445, - 14.979231123627912, - 14.9844599417898, - 15.079005803818545, - 15.010746434169471, - 14.95942243185361, - 14.963943821990334, - 14.980361219286772, - 15.022419913541631, - 15.006133803836546, - 15.010429636237587, - 14.981181304866144, - 14.994136480528084, - 14.946910826491028, - 14.973223386832027, - 14.987452265814685, - 14.972346793567224, - 15.056892172153882, - 15.0726952361919, - 15.001031586048349, - 14.983207294927007, - 15.033844673773643, - 15.039390929601957, - 15.082061438028065, - 14.99918260278502, - 14.967127617698257, - 14.979779527223094, - 14.984790070040562, - 14.986661795768693, - 14.95392591066147, - 14.905767985254549, - 14.906624740852036, - 14.952324632021767, - 14.923177073083398, - 14.939581391486408, - 14.95985868381636, - 14.901288871806418, - 14.88679728300783, - 14.936073723866347, - 14.985332425021497, - 15.018422453460035, - 14.936498696625408, - 14.98505393952109, - 15.032666746151289, - 15.016651720133256, - 15.039559438287196, - 15.035451303459086, - 15.019830608539458, - 15.022459402685794, - 15.01121469995523, - 14.974870601508965, - 15.007757949755904, - 15.011243439829547, - 14.966476450238243, - 14.892192277229059, - 15.012379094675916, - 14.937694676759088, - 14.99816106699654, - 15.035170854607449, - 15.002895866295692, - 15.023890362691477, - 15.086842120560693, - 15.026650458473629, - 15.000554099866301, - 14.998731952800332, - 14.990059111025644, - 15.0272570356127, - 14.96780576996516, - 14.973227024590651, - 15.079067597616513, - 15.043846207918236, - 15.001517362834894, - 14.982093564762645, - 15.000961178797914, - 15.027743864886432, - 15.064831912025314, - 14.989307254311859, - 15.038281123696894, - 15.036962603131178, - 14.94260356801194, - 15.083266848342888, - 14.983484565225048, - 14.98804246590847, - 14.999768019147314, - 15.037647532849267, - 14.915611603742747, - 14.930633746063235, - 14.913939372493644, - 14.896438734821642, - 14.898213729820082, - 14.95749844315649, - 14.997878901910726, - 15.001320904794783, - 15.016596223688616, - 15.057838498162482, - 15.031995171036696, - 14.991721106422988, - 15.119637790940684, - 15.003541650979928, - 14.985325939824195, - 14.998225984949443, - 14.976977192598165, - 14.956815629281856, - 15.023044074789256, - 14.967649170824766, - 14.929415180746457, - 14.875206513929358, - 14.961693508137719, - 14.969152681699885, - 14.968544350555753, - 14.980791783846499, - 14.954586495312487, - 15.052954186915466, - 14.956328891333554, - 14.989759823687995, - 14.970235637646995, - 15.000375702661966, - 14.945611252611457, - 15.010757354999448, - 15.068515404055393, - 14.98876737411633, - 14.960966129876855, - 14.977072301329681, - 14.983095012277438, - 15.05297660832069, - 15.004109874524827, - 15.001682543720749, - 15.02867675380888, - 14.962243854051797, - 14.978622510764746, - 15.11447743245308, - 15.035270868241263, - 15.026565003749196, - 15.006616732589782, - 15.004024114707818, - 15.001606069284549, - 14.974942288008556, - 15.038777669577177, - 14.994668205471537, - 14.993233349123853, - 14.96991950158038, - 14.998151420414096, - 14.945779125595415, - 15.007049171320572, - 15.016644651102656, - 14.926634154454632, - 14.963816719667705, - 14.99385614777151, - 15.014504043732831, - 14.982378441874985, - 14.908296585936034, - 15.005104678615856, - 14.99022210853809, - 15.024607024863188, - 15.005344325832342, - 15.040316507690806, - 14.957763570519791, - 15.105114340597453, - 15.048011096268, - 14.957060330587034, - 15.142271682305177, - 14.974584486134058, - 14.9922632203232, - 14.976592929991945, - 15.083908175647734, - 15.09987693622403, - 15.019340573936637, - 15.061866547431903, - 15.041122548736787, - 15.137659437854735, - 15.043911524993392, - 15.021362174845681, - 15.040131506883274, - 14.986777963681783, - 14.97690331369408, - 14.906803028863338, - 14.961899295013367, - 15.01132139644922, - 14.994686856311858, - 14.97604251771994, - 15.009890377948889, - 14.910709130220928, - 14.991174765198355, - 15.085826374245391, - 15.028279270474256, - 15.046290421669399, - 15.09394786057595, - 15.134497773102781, - 15.074427867884953, - 15.03070610715289, - 14.995576329575021, - 15.030951421480815, - 15.046604443064403, - 14.978311857249219, - 14.966031388584353, - 14.997179680600471, - 15.070776943659284, - 14.924104271850249, - 14.989918174505346, - 14.95999678769125, - 15.076480560948962, - 15.095548362162857, - 15.03949227049392, - 15.025307188200228, - 15.060403895435753, - 14.987810134145462, - 14.989102280146708, - 14.972046264940111, - 14.960591499391237, - 14.964596300029578, - 15.007580904975127, - 14.977552518146343, - 14.9510870342416, - 14.993217653815698, - 15.05821054720221, - 15.027020684334948, - 14.986040727958233, - 14.929415946408886, - 14.961502524922583, - 15.02763775324317, - 14.936486922700531, - 14.990297239385377, - 15.024435062010484, - 15.050187430509359, - 14.897036501770518, - 14.962934442895873, - 14.91262390311434, - 14.981626275256684, - 15.023593152164258, - 15.020734744469625, - 15.001850590521999, - 15.073130400272158, - 15.014166169078843, - 14.956743234591444, - 15.020976180449471, - 15.003586474810017, - 15.059027820314185, - 15.06740909580329, - 15.090638608320994, - 15.066259237740356, - 15.051999627311412, - 15.057463885169163, - 14.987674958235273, - 14.995905331053967, - 14.945041969355955, - 15.115294124781876, - 15.062542105729728, - 15.067018166896162, - 15.068712676893732, - 14.879094997965348, - 14.908618722063451, - 15.031957159215874, - 15.11487520990436, - 15.071665857472896, - 15.047978374025679, - 15.000444759903852, - 15.06477834784365, - 15.001931894113827, - 14.96621226052815, - 15.006846065624503, - 15.065770450486239, - 14.92292593570179, - 14.932029415563902, - 14.906405560056808, - 15.031657746976512, - 14.974381942029446, - 14.968250199387718, - 14.993407872295315, - 14.974436122333486, - 15.028258116058648, - 15.01179588054665, - 15.017805579127783, - 14.911687075048208, - 14.92888417064296, - 14.936594432024952, - 15.048032344799564, - 15.017281506441371, - 15.050967718540234, - 15.013038932429295, - 15.032041787345014, - 14.992387677704901, - 15.068575482582647, - 15.108907362675636, - 15.083687148801548, - 14.941925586206818, - 14.99712804605599, - 15.04921332432326, - 14.959132654037937, - 14.955262703193045, - 15.00031385282208, - 14.98091586956726, - 14.981208828589438, - 14.99018752241385, - 15.049986553944446, - 15.007244585907316, - 15.03278300192956, - 15.033469749785421, - 15.096098925420218, - 15.02949568006968, - 15.023869103317677, - 15.025361403538618, - 15.04589317489025, - 15.048736552116576, - 15.013577001956833, - 14.907039959179624, - 15.006167112194698, - 14.93280780976494, - 14.997964319976951, - 15.090395302220514, - 15.12356983032791, - 14.986264715875196, - 14.954685132841927, - 14.958883292774651, - 14.964095563671597, - 14.99876099907419, - 14.953854980500708, - 14.997490486607246, - 14.996146126931498, - 14.931302867483756, - 14.981745740127328, - 15.020001272138488, - 14.963259437339913, - 15.066224106699304, - 14.957496605734367, - 14.908674657304989, - 15.118995314705995, - 14.982138240012175, - 14.989265802963246, - 14.958380508207178, - 14.977714245817088, - 15.039104944390235, - 15.076829262571858, - 14.994689917702129, - 15.005430772356684, - 15.039259200546834, - 14.998901280817362, - 15.091357860688825, - 15.00054150205466, - 15.074242373618777, - 15.019264345955131, - 15.03554291450792, - 15.043511045980347, - 15.035480102281655, - 15.025652660571879, - 15.043520798321035, - 14.987167524825397, - 14.984216807415427, - 14.86898542515705, - 14.98603680828456, - 15.003821493972966, - 15.00001134970731, - 15.072945070165064, - 14.96927184819188, - 15.010204411468152, - 14.974499110888027, - 14.937464350338706, - 14.990672771869352, - 15.07746757635836, - 14.962174505496199, - 15.072706384061323, - 14.956787629616132, - 14.961365284635955, - 14.978511902201726, - 14.978119907781306, - 15.024460654353, - 15.02197648485133, - 14.970635208208288, - 14.97721244299976, - 14.844683341161623, - 14.99023286542126, - 14.94395066717008, - 15.012530106249176, - 15.0434914338705, - 15.058577505109223, - 14.995550571572167, - 15.00188943910344, - 14.972752417632146, - 15.148444147513754, - 15.052953252483977, - 15.035993712095088, - 15.003967739208132, - 15.073958868070395, - 15.1137092526489, - 15.041551018789509, - 15.082673263645109, - 14.983286872095128, - 14.996050330838651, - 15.032917773079511, - 15.008965079605954, - 15.093844909808949, - 15.008271332156848, - 15.0714924581867, - 14.997335772680316, - 14.954792690053948, - 14.9530125968092, - 15.01916593973114, - 15.003136049118018, - 15.053857781980835, - 15.050379570499732, - 15.011886760145963, - 14.988016810997667, - 15.010218099665236, - 15.022082370559865, - 14.976945092220381, - 15.008781484197346, - 14.985699999267075, - 14.916816360204791, - 14.984359096841578, - 14.900663693813303, - 15.016468663609333, - 15.01063455807594, - 15.014624215794713, - 14.953152741038938, - 14.876672507149497, - 14.979511469112069, - 14.976785282122718, - 14.990438772665122, - 15.000215424988966, - 15.059962083148195, - 14.92938490688378, - 14.90737226524521, - 14.979106576023613, - 15.032767321615745, - 15.008828682224364, - 15.024229712227642, - 14.971871122911812, - 15.005391391601202, - 15.007190938135343, - 15.047810504316246, - 15.016008727709863, - 14.97978739963186, - 14.944606458759615, - 14.963560138798977, - 14.979310378310519, - 15.040002230760061, - 15.025021101884947, - 14.952038068117316, - 15.007593979466845, - 15.041215842089356, - 14.990587696284644, - 15.020127753024365, - 14.971211432995512, - 14.89947028482426, - 15.009524939062308, - 14.971504217924391, - 14.996524158746272, - 14.969845965845394, - 14.97206012013641, - 15.018932139084077, - 14.98801146661996, - 14.96535916138889, - 14.97910875180498, - 15.062361226434172, - 14.999760014806455, - 15.000436536042663, - 14.999612727841068, - 14.933214990751887, - 14.916022225078867, - 14.96599249689786, - 15.01508330991061, - 15.051656905813386, - 15.045447968903234, - 15.03196709103978, - 14.974089594211424, - 15.000419415952358, - 14.947178563018742, - 15.00160141491962, - 15.076870209407558, - 14.97399240436176, - 15.006749015594327, - 15.058734860207315, - 14.986911807610127, - 14.976658759101856, - 15.008399807472545, - 15.045021908713561, - 15.080475157538975, - 15.030770453954277, - 15.036432840631386, - 15.066640913734696, - 15.013379116660312, - 14.920539510322193, - 15.0241478421525, - 15.008862094550228, - 15.012240787696825, - 15.03496293865074, - 14.97077882085598, - 15.03525605898265, - 15.048282438115544, - 15.074984780020868, - 14.937724846751799, - 15.013969159121299, - 14.992789101504505, - 15.053978157482632, - 14.936537740201462, - 14.941430262634084, - 14.998062064158281, - 14.977821683608822, - 14.938035564172097, - 15.037741956920916, - 15.0053027071962, - 15.072353792276951, - 15.063004109963403, - 14.997217927257172, - 15.008075448462014, - 14.94960858463907, - 14.979898415870068, - 15.041331838214939, - 15.027219861626632, - 14.978456913858507, - 14.943875689861557, - 15.002744704030242, - 14.960236799132065, - 15.017845557597838, - 15.026330810507185, - 14.920277019704926, - 14.980091629415956, - 15.060812327006508, - 14.99464395974071, - 15.060736596742622, - 15.098117829774955, - 15.004855141747068, - 14.980318293874953, - 15.046794302796389, - 14.974610079448354, - 15.009134390789995, - 15.022424983030922, - 15.049251105032278, - 15.003426229792858, - 15.046618281267218, - 15.059774793923047, - 15.052521353007226, - 15.023194958618918, - 15.022591879697734, - 15.046400320979465, - 15.024798850869406, - 14.982599352607611, - 15.05979947213959, - 15.025053577363698, - 15.07348992833572, - 15.036399631548587, - 15.017029743144557, - 15.042351920447873, - 15.035702525143257, - 15.096427101455001, - 15.10734978020779, - 15.06774658806864, - 15.007503430504759, - 15.083103586739492, - 15.051320973168858, - 15.02841198451123, - 14.988025728834865, - 15.057534564297, - 15.0029578538501, - 15.003076015696578, - 15.085098983216751, - 14.985444499713472, - 14.949916732040295, - 14.89714755176311, - 14.984282223808396, - 14.938527451624658, - 15.021153084641318, - 15.06987400747398, - 15.005120595965142, - 14.967164497418763, - 14.947489285751402, - 14.9751708325186, - 14.951318928237274, - 14.981621933276797, - 15.011593180629205, - 15.104069803021511, - 15.020670001352928, - 14.94235492044589, - 14.93271544368182, - 15.016583437163318, - 15.032119764563419, - 15.031238063076048, - 14.957058073180853, - 14.963850562271784, - 14.929652830598217, - 14.99403896943028, - 14.989491910993845, - 14.984003872294906, - 15.021338698371043, - 15.032528355770987, - 15.068730007677514, - 15.07065058986052, - 15.041102532167312, - 14.922197651846892, - 14.940410291871931, - 15.027407498986733, - 14.98175865570981, - 14.977406969969286, - 14.939181617667652, - 15.122549783875542, - 15.022559384730926, - 14.946446806270515, - 14.928237816498646, - 15.056236909854594, - 14.986107915172884, - 14.987811824754726, - 15.0015389174233, - 14.987006734372631, - 15.080199811766356, - 14.995464707683741, - 15.016661295023473, - 14.97626438300122, - 14.963469431143139, - 14.858695824312866, - 14.961768225965965, - 15.050443683968018, - 14.979940840501584, - 15.001149993177087, - 14.987184092339094, - 14.939479803965478, - 14.911151493972902, - 14.963179681187004, - 14.980371126019282, - 15.035130015313657, - 15.062172860817077, - 15.061453557670625, - 14.991222591399158, - 15.02093224775824, - 15.014000009310639, - 15.06745492577966, - 14.925383786253745, - 14.974033554565361, - 14.98903578309958, - 15.061825285881596, - 15.000335119411785, - 14.96973023830859, - 14.946925800605937, - 14.882422015482337, - 14.95672395205162, - 14.945233599246952, - 15.004798886536477, - 15.049170522299232, - 14.915895361451387, - 14.970057684633764, - 15.050136182969577, - 14.981185313762994, - 14.977726791041315, - 15.036268747498152, - 14.947810522668586, - 15.055058212346058, - 14.969247099316169, - 14.960947895290518, - 15.020692742679499, - 14.989117199010826, - 15.069784389367666, - 14.99958010511716, - 15.009496963556428, - 15.065494630868185, - 15.056966975649981, - 14.989747116966656, - 15.010195337209137, - 15.024766849730025, - 14.929577974861273, - 14.931444653675829, - 15.039268086840687, - 15.048691151494788, - 15.035048730213907, - 14.968913762984585, - 14.971231019430913, - 14.998282933167657, - 14.927209012371343, - 15.00189381148871, - 15.048297303200004, - 15.00553506815248, - 15.11177044395707, - 15.064024443701372, - 15.078508048522892, - 15.052856619127397, - 15.057760252187627, - 15.053197062510646, - 15.048723500643163, - 15.04849906701388, - 15.021514316206803, - 15.035519088419539, - 15.002132989399009, - 15.02385362787352, - 14.970290816824308, - 15.025402437733765, - 15.027222147878014, - 15.039461270418963, - 14.927824046058552, - 14.939383308168338, - 14.99748411943196, - 14.987211930019487, - 14.993202790392969, - 14.97294016450571, - 14.966318804248859, - 14.964147458149267, - 15.016797903114234, - 15.02122829474835, - 14.94701695487864, - 15.03118970576264, - 14.954646664310781, - 15.034586433235592, - 14.992918398723496, - 14.998917695145932, - 15.010995046353573, - 15.002072390189067, - 15.026749204441405, - 15.024283223463033, - 15.030455847345477, - 14.960426677019438, - 14.96117206495579, - 14.991618656758058, - 15.01203192006049, - 15.004460762875132, - 14.926917612942217, - 14.998650926563343, - 15.040496411869015, - 15.031210257510011, - 14.949444082300094, - 15.023351292773024, - 15.060426458827864, - 15.073453289535918, - 14.987994857340777, - 15.034932712625492, - 14.995534193201937, - 15.101256622415692, - 15.046289352973355, - 15.02427928492419, - 14.990216989439471, - 14.9177400243247, - 14.978916028058956, - 14.908347702664779, - 14.980829622326697, - 15.06411799475701, - 14.97862802479955, - 15.013640435806636, - 14.991806040853833, - 15.094559577556675, - 15.064229570637078, - 14.910283798789257, - 14.986331972846699, - 14.923753134489026, - 14.996817215358906, - 15.00642045772757, - 14.98762711454629, - 15.027671199685068, - 15.013189861989845, - 14.956556237769066, - 14.981057173812506, - 15.038103793531377, - 15.004097973636416, - 15.047100896713609, - 15.045488872107818, - 15.026643690764445, - 15.026705158809706, - 14.981915323608613, - 15.003885260353572, - 15.01028345766966, - 14.980757317922254, - 14.949338792918903, - 15.002147590947098, - 15.030681352257297, - 15.016700816704661, - 14.96317518797781, - 14.989805370038965, - 14.995115006323006, - 14.951571486894997, - 14.991804151515987, - 14.955550988858535, - 14.916177290643205, - 15.023855976076137, - 15.014697673921354, - 15.032741345468278, - 14.95105354072696, - 15.057001916638278, - 15.004543241662372, - 15.044512078178606, - 15.001954038014489, - 14.972612055732492, - 14.970951513993896, - 15.014404388150124, - 14.991233154787556, - 14.931333849910114, - 14.89846687422626, - 14.982046594540869, - 15.018844731416534, - 15.039852830482937, - 14.94186511702768, - 14.977907944160654, - 15.014085790813176, - 15.02599042452802, - 15.006449424684348, - 14.981770586744366, - 14.959451577534741, - 15.011684673018273, - 14.949313975495137, - 15.004321917795197, - 15.034816376783025, - 15.038455717280263, - 15.03659617297548, - 15.021901895816463, - 14.937745504478938, - 14.940105443757867, - 14.986978994798939, - 14.913053875688712, - 15.014466357167, - 14.982070928929726, - 15.002700967578596, - 15.060207888844007, - 14.962375434200755, - 14.955837959568838, - 14.981032283176495, - 14.905841508096156, - 14.973866268737758, - 14.98609798875714, - 14.993723271306502, - 14.985081835844467, - 14.928053561214575, - 14.927657832965926, - 15.050217104960486, - 14.992573189987114, - 15.025540460274396, - 15.047410659707706, - 15.07004513400646, - 15.114065344701924, - 15.091076326755749, - 14.871079306487745, - 14.93807869708825, - 15.00846909838667, - 15.091658825572217, - 15.08540396519996, - 15.007866296890684, - 15.001299221640298, - 15.039023203110112, - 14.9875502501263, - 14.961644258912768, - 14.975485762048232, - 15.062771768985233, - 15.085976248175244, - 15.075735797272827, - 15.010878611603276, - 14.973998054091368, - 14.962630919746367, - 14.926368900317582, - 14.956242240710163, - 14.98849560873997, - 15.045606906345299, - 14.971873272836977, - 14.948991006175223, - 15.02628407743721, - 14.959614058423483, - 14.987567633029808, - 15.007144587631323, - 15.081986968028035, - 15.009540051811454, - 14.985143201505444, - 14.981533280820955, - 14.957192672809537, - 14.965466320542642, - 14.989201982711723, - 14.991363922328219, - 14.867452122791732, - 14.972492050499643, - 14.941844761984846, - 14.950793442449921, - 14.985304626317072, - 14.966019597768957, - 15.018794317553446, - 14.955800235375236, - 15.010182411159812, - 14.98424744918082, - 14.98178572715796, - 14.958914007014227, - 15.03495390823339, - 14.966192735458305, - 14.994642024185673, - 14.972516374074509, - 15.009031506812631, - 14.974090093027863, - 15.072099231328501, - 14.986406145122386, - 15.049330554128654, - 14.961554219803693, - 14.990618086727073, - 15.044707900887706, - 15.03659066783999, - 14.992919100625869, - 15.007068220329073, - 14.988043268507601, - 15.042201594983796, - 15.057792713442115, - 15.024857932400813, - 14.999528556818206, - 14.962181727487756, - 14.981279842108332, - 14.959873558107754, - 15.003987688625854, - 15.003370868258925, - 15.076881565769316, - 15.02504857171916, - 14.981769679401141, - 14.965003189503456, - 14.99806056651683, - 15.064359084426039, - 15.046970147836278, - 14.99216330803567, - 15.01936233915593, - 15.05092573412814, - 15.093887257838805, - 15.000292180542136, - 14.944961129360623, - 14.98586448924147, - 15.004456437610243, - 15.077625613142574, - 14.96371406429827, - 15.010757711760782, - 15.039131663726387, - 14.955692998793467, - 14.994500129530788, - 15.084990833775768, - 15.032192702902737, - 15.05373959282613, - 15.041858038905643, - 15.04707658109315, - 14.991579382523069, - 15.037966335537977, - 15.000897989058176, - 14.916420503433272, - 14.92064170769946, - 15.024155818304267, - 14.978931069194246, - 15.077398825172803, - 15.04153264451245, - 15.007333135713536, - 14.958850185905916, - 14.970268866352924, - 14.94819482451204, - 15.015225004025998, - 14.979500189365279, - 14.968181205534465, - 15.03289382375667, - 15.094284621589756, - 15.047980109476988, - 14.999337980931488, - 15.029216200055062, - 14.920704046756082, - 14.931235752857841, - 15.005134900792454, - 14.949104219131753, - 15.042184624675127, - 15.080502652139252, - 15.006409491583579, - 14.974248657646823, - 15.026109910117272, - 14.970772596533042, - 15.045994283739164, - 15.010561023565863, - 14.962469028951555, - 15.018317918240076, - 15.020795397512337, - 15.039970667516222, - 15.057122976128397, - 15.04194992275212, - 15.011540555420513, - 14.990317807787982, - 14.94721614914358, - 14.978367147542604, - 15.054789169382083, - 14.989597919110981, - 14.92766175831976, - 14.997482720879606, - 15.034142952584363, - 14.993828476937296, - 15.040639971605447, - 14.971653471396383, - 14.987953478538886, - 15.059208842171264, - 15.040820382868414, - 15.03060914551289, - 15.012102378780767, - 14.968386529549663, - 14.999359888793647, - 15.03320135677852, - 14.968368168274102, - 14.9210712445369, - 14.984203639599603, - 14.940868778715364, - 15.020022099405317, - 15.030575339103201, - 15.071869521103006, - 15.059042107203174, - 15.018499225735114, - 15.086374481481675, - 15.108381995716933, - 15.062111495348525, - 14.978158338422173, - 14.932302958019653, - 14.99263911952079, - 14.981053356977734, - 14.959598865332113, - 15.012890295733763, - 14.994761457995851, - 15.031595321460633, - 14.944634580300221, - 15.085713753316961, - 15.045523164156547, - 15.045668152368755, - 15.054998231155354, - 15.003929776112672, - 15.00608198324502, - 15.091394403412082, - 15.063986897364805, - 15.106065125833997, - 14.959516193903845, - 14.918929139818347, - 14.968271770830494, - 15.016413324031378, - 15.054447630433748, - 15.03145708261538, - 14.935345275632322, - 15.04059922620787, - 15.012406268383137, - 15.09804432607991, - 15.039948051445903, - 15.017024813618457, - 14.989910186635308, - 15.053111781720188, - 15.025412779088287, - 14.968705380984918, - 14.929154754094897, - 15.01231999927719, - 15.044917093264077, - 14.998502737410062, - 14.953469250715033, - 14.937039806085144, - 14.948120049734788, - 14.974099652177747, - 14.971255242980039, - 14.991533869649034, - 15.001317083124137, - 15.037561296449667, - 15.01728925785722, - 15.0270658157783, - 14.926902504595432, - 14.965066005457558, - 15.011933689572576, - 14.924571949963019, - 14.892573693129908, - 14.936965690763644, - 14.902677368764639, - 14.923385569278102, - 15.010297966572256, - 15.025539724568592, - 14.986309291837182, - 14.97893818412873, - 14.992517712683771, - 14.980975062522266, - 14.922180559366458, - 15.063022889259466, - 15.087037874708614, - 15.011757054219276, - 15.081681016492519, - 15.097151640862254, - 15.051506912830783, - 15.00795548300908, - 15.059951132356696, - 15.067282813319913, - 15.036669874448718, - 15.034496242414182, - 14.942874470469004, - 14.9930274235398, - 14.888470232219165, - 14.932394234006377, - 15.051650678500103, - 15.019000126819847, - 15.042595559710882, - 15.068482657877556, - 15.073444017831028, - 14.977349859781976, - 14.956376312741886, - 15.01359839901801, - 15.022241876298425, - 15.02255771387642, - 14.999897424578116, - 14.97526544701754, - 15.009073849020183, - 14.943372353555102, - 15.04901861483859, - 14.990999761167439, - 14.934707322737228, - 15.02553497962766, - 15.059622714391033, - 15.117745993217437, - 15.041153718150923, - 14.967693870142421, - 15.01801022791351, - 15.05748992275285, - 15.040916334035916, - 15.079777663857563, - 15.073445917762248, - 15.043172197082582, - 14.979909849135547, - 14.920617137448861, - 15.005184822178848, - 15.090136204922858, - 15.009333716186939, - 14.999681838131885, - 15.01585717751639, - 14.967235704929017, - 14.993926220662832, - 14.982782539092442, - 14.947120653230748, - 14.998187547870987, - 14.95636456276921, - 15.067804425394355, - 15.003358422091242, - 14.952592432841959, - 14.952013077736373, - 15.050380912960089, - 14.927950596499837, - 15.029243508985221, - 15.009378280223764, - 15.052244254951496, - 15.025730463744015, - 15.000139369431732, - 15.029486761313489, - 15.02146814944584, - 15.036683790538651, - 15.09883194199657, - 14.987777763774348, - 15.032602043226001, - 14.977286703713784, - 14.945210502214092, - 14.963196433498371, - 15.011546347677891, - 15.030403891965372, - 15.005484501757241, - 14.951891797413603, - 14.936246197512421, - 15.013450933095696, - 14.988551208929023, - 14.995774118079934, - 15.002347819423987, - 15.077993401995675, - 14.880623628558626, - 14.981975452727065, - 14.944262874062222, - 14.947512393031431, - 15.007675115319579, - 15.042309213259145, - 15.097679729378473, - 15.009205584427905, - 15.11140099684745, - 15.010842698481603, - 14.993666847223672, - 14.975168515095076, - 14.920929503949512, - 14.998957442018032, - 14.978420772694358, - 15.020612549971014, - 14.972244933307831, - 15.028561704600751, - 15.057428149574621, - 14.947835225091142, - 14.892238577080885, - 15.00826742840526, - 15.059904841262513, - 14.942932303604769, - 15.025832072064812, - 15.009654073353087, - 14.969520933960672, - 14.920361066043256, - 15.000045000213975, - 15.02334333399981, - 14.965969471244968, - 14.99758804130731, - 14.944413795047677, - 15.000589640832217, - 14.990551587048031, - 14.99236959109996, - 14.944167627598716, - 14.944497443893376, - 15.01121333923445, - 14.99713353745053, - 15.004080176409854, - 15.00140767442878, - 14.973558521146543, - 15.031964215828081, - 15.026973245929597, - 14.970832898751762, - 14.928839716522786, - 15.04359144905846, - 14.964280197326895, - 14.924233405573215, - 14.998979907449622, - 14.996430225509425, - 14.942679411092751, - 14.942910842227127, - 14.954274454410674, - 14.971065422115506, - 14.994807403953953, - 14.979090325892217, - 14.959000705388892, - 14.910024169647828, - 15.008911599727638, - 14.941235987374235, - 15.010931886274609, - 14.993381016032973, - 14.948227690034747, - 14.966537518779436, - 14.986017357537227, - 15.03866732001424, - 15.012469008649, - 15.082892591749525, - 15.07693759994621, - 15.052969016781407, - 14.998130472865542, - 14.905679835265623, - 14.973072364003261, - 14.95971441271708, - 14.971159247248485, - 15.011956266286868, - 14.940768501733594, - 15.020597231323016, - 15.039331821687012, - 15.056578920704156, - 14.947963728847748, - 15.022173099814857, - 15.016859254576689, - 14.951261536492968, - 14.98204984617799, - 14.99197419908109, - 15.063242698734237, - 14.927039423943524, - 14.960620209223096, - 15.054415394312382, - 15.039980903090608, - 14.98686169708447, - 15.032327825352544, - 14.951300964225146, - 14.92923610294135, - 15.013112096914492, - 14.922739213776527, - 14.984760835692283, - 14.888480315677207, - 14.983408069811798, - 14.914085414306248, - 15.016352205608795, - 15.055338476222268, - 15.008563599463487, - 14.912979568005374, - 14.993853836570759, - 14.970807375637898, - 14.975366796053976, - 15.024890189425017, - 14.988330554480223, - 14.964607039750645, - 14.888434755522194, - 14.97700433001106, - 15.03096128417569, - 14.879650540851834, - 14.974938410588258, - 15.003018915671678, - 14.987856670867284, - 15.012476260271661, - 14.996397363267253, - 14.96540605805112, - 14.9078164970702, - 14.941448692932687, - 15.034901501404589, - 14.9793881530167, - 15.011219299381535, - 14.947124465992191, - 15.013352015929827, - 15.052554485756168, - 15.019152333444625, - 14.951841312362845, - 14.920506131640863, - 15.024637983615746, - 15.000496010888957, - 15.001828984540168, - 14.973663637950738, - 14.943573920157169, - 14.946006097660735, - 14.877941966127164, - 14.913459831111846, - 14.903783384945088, - 14.991761028362475, - 15.031372713857476, - 14.945161214262319, - 14.994096737467535, - 15.078514484086739, - 15.008434193318486, - 15.014922563943667, - 14.986664038075649, - 15.076213031473701, - 15.003500721216655, - 14.95166633076892, - 15.043609764144477, - 14.950316573561356, - 15.002441153861497, - 15.033013221278942, - 14.976359477985731, - 15.02762292191107, - 15.026194340576689, - 14.988612114076783, - 15.025917141428145, - 15.040571140373498, - 15.12378723071273, - 15.019899888435207, - 14.962148260032567, - 14.898052749978332, - 14.885309785137345, - 15.028160965503432, - 15.017532621294501, - 15.009776315279332, - 15.007130953129105, - 15.067779710278304, - 15.086707570845563, - 15.00889832652001, - 14.992814761978385, - 14.94477547233406, - 14.890676900904134, - 14.981165357985354, - 15.055430576449892, - 15.046552424788352, - 15.105435912424266, - 15.064503370873666, - 15.032826033264993, - 14.998133314347331, - 14.95924347367088, - 14.972761016031178, - 14.988952509741942, - 15.071028982187524, - 15.048345052237897, - 15.03025328840525, - 15.065599313106226, - 15.01378656944298, - 15.028117232771692, - 15.062262888564142, - 14.964014927503305, - 14.87569885074856, - 15.008354817724019, - 15.1156978712837, - 15.012072206783333, - 15.024129500042452, - 15.052087227402764, - 14.991149434432693, - 14.982158402609, - 15.07761084261986, - 14.97989841254266, - 14.955517722712468, - 14.960827218218093, - 15.033984225168021, - 15.034977180382995, - 14.973806007375213, - 14.954160593624215, - 15.005988691591881, - 15.046746002777356, - 14.978806368530694, - 14.94961622973942, - 14.933547755055761, - 14.966051284479178, - 14.97918917729995, - 15.000501675542663, - 15.071288238734986, - 14.949653802080809, - 14.96139413292108, - 15.061749173033826, - 15.061313700701502, - 14.972557900888658, - 14.96370211200299, - 14.970225639362166, - 15.032342618940396, - 15.04368878080549, - 15.057488666289675, - 15.090380782288618, - 15.003308664894822, - 15.006789391929923, - 15.012428839579243, - 14.988090270902768, - 15.03128488354018, - 14.998637429000164, - 14.947478976627755, - 14.969548743273545, - 14.985266290843558, - 15.073330364434192, - 15.027771980443857, - 14.970933049626296, - 14.94375271542359, - 14.972279431493549, - 14.926943848442598, - 14.989431227921678, - 15.031146826922356, - 15.079450056448445, - 14.996772291308323, - 14.987351856034147, - 14.957978135424483, - 14.929121498310657, - 14.981128310156958, - 14.96738860081623, - 15.031842890923562, - 15.014173813520165, - 14.981420810809242, - 14.959961725265611, - 14.982102059977283, - 15.024765442967947, - 15.006218715543016, - 15.050827316968771, - 14.97745033919851, - 14.986302648457752, - 14.930312232942144, - 14.945659625789698, - 14.895316800859577, - 14.90218045305529, - 14.994887476095883, - 15.044340630290263, - 15.02562926325821, - 14.925811451772637, - 14.938206403531346, - 14.980392056216177, - 15.009385141080076, - 14.969709467824591, - 14.982736555662493, - 14.986663032921706, - 14.965526542830899, - 15.03692063739262, - 15.014967414770814, - 14.95164448815772, - 15.04889701876171, - 15.07655026312737, - 15.002749620368872, - 15.046963745404605, - 14.964517844096282, - 14.93049587857652, - 14.990208067512109, - 14.99572989831843, - 15.003476217699362, - 15.050267405551498, - 15.003206088270732, - 14.93888579082257, - 14.980755078814159, - 15.001007737239544, - 15.01113869823498, - 14.961930537740818, - 15.07234822096954, - 14.961761980695432, - 14.99324985022314, - 14.93965076848419, - 15.006217363738314, - 14.965878551271217, - 15.035426881764765, - 14.999396414450576, - 15.045960770195784, - 15.010636357627629, - 15.046891328901053, - 14.944718193783114, - 14.98636486659563, - 15.070107045999855, - 14.948436568188253, - 15.023663807155733, - 14.994790733126052, - 14.996072291350183, - 14.988048659778013, - 14.913948727219227, - 14.957947905945312, - 14.999361137679154, - 15.057430595214509, - 15.079691341360325, - 15.074168732801677, - 15.003904803206726, - 15.0351710323992, - 15.010947051855702, - 14.992457835983704, - 14.991721391359143, - 14.995077417374501, - 15.022529240062916, - 14.951383879108882, - 15.08433140444435, - 15.023290485414297, - 14.963414389997007, - 14.964822992596147, - 15.04135312845756, - 15.106707482945001, - 14.97397395529713, - 14.975650857257214, - 15.005706582365233, - 14.93486590827111, - 14.952636503160194, - 14.97082078498991, - 15.009616783891328, - 15.03945458795357, - 15.04526712841627, - 14.994864937253135, - 14.947611141713606, - 15.045367860025639, - 15.103246502088812, - 15.01720661900035, - 15.011928392556495, - 15.026241874032038, - 15.036412312928752, - 15.019666306017417, - 15.01917316504387, - 14.959840585370081, - 14.993438947175404, - 14.875192685399, - 14.995218760053051, - 15.044740574210914, - 14.996359561927648, - 14.993424560546726, - 15.029636018692491, - 15.048687296304797, - 14.980023195310011, - 14.954243529930118, - 14.982593231157177, - 15.007567021338115, - 14.96216411682455, - 14.930907798863236, - 14.931076710881788, - 15.03826939606899, - 15.02616895744718, - 15.01324322314829, - 15.013868662760357, - 15.004965640689722, - 14.996721157682659, - 14.965908271126208, - 14.989653542902316, - 15.048368660776573, - 15.025915519010427, - 15.056964895496629, - 14.995193801615404, - 14.980475631700838, - 15.034490859267365, - 14.979908283758174, - 14.986687494648162, - 14.953949671444462, - 15.02703043273448, - 15.025623320135205, - 15.02278607876863, - 14.981692264437287, - 15.001344710406247, - 14.99109653435332, - 15.065331659033689, - 15.095746263691197, - 15.090324481320577, - 15.027592057145357, - 15.084545359851482, - 15.056851311300482, - 14.94557531775352, - 14.946589737418032, - 15.026692758520896, - 14.979057378248063, - 14.981660194916932, - 14.98960194712423, - 14.941734110443841, - 15.009766826170909, - 15.000526307357038, - 14.915110810274339, - 14.989769341459033, - 15.06299371517187, - 14.990971619857222, - 15.001538855214042, - 14.980633586462774, - 14.994563342037912, - 15.002595750731466, - 15.013192246324355, - 14.97535842268144, - 14.982561596436902, - 15.026506455358344, - 14.985262652756012, - 15.049777717019733, - 15.076192920982018, - 15.031955679532379, - 15.030659019398191, - 15.03402710457101, - 14.962846196949478, - 14.995187339211217, - 15.051895861207136, - 14.966164668537717, - 14.980219693845264, - 15.031965877098829, - 15.028655840180047, - 15.008266300205106, - 14.997343547478863, - 14.96788030409472, - 15.008252301997336, - 15.022451869748236, - 14.990031175552707, - 14.991170500746007, - 15.011734636350491, - 14.971984022794905, - 14.987496549332612, - 14.974320013574413, - 14.96632268556405, - 14.936429710505768, - 14.999379412317758, - 14.973333372236109, - 14.972432841882542, - 15.047252847714175, - 15.018604227372911, - 15.034289579937408, - 15.068419789109367, - 14.962255859187112, - 15.033066302412916, - 15.00324540207245, - 14.981090978484549, - 14.931724097224595, - 15.014807623484664, - 14.96320238762038, - 14.90293700463247, - 14.969904823303935, - 15.075205024981559, - 14.977548549928434, - 15.067502547109882, - 15.072826812430064, - 15.027192777763307, - 15.046753889753852, - 15.023118983863174, - 14.995211650690523, - 14.95119978179885, - 14.987347313274142, - 15.032820071848299, - 15.022640514629119, - 15.05932472311532, - 15.011966052720082, - 14.990097002026078, - 14.989040053773504, - 15.019845179725772, - 14.929865299044204, - 14.96544859625146, - 14.976286514510978, - 14.961181312858729, - 15.017585243713471, - 14.972441837423633, - 14.99912038257301, - 14.978820619122896, - 14.936038216419767, - 15.060423498653874, - 14.994145244831843, - 15.020534035137949, - 14.9940541564974, - 14.963080750540954, - 14.977067443091427, - 14.957111136735207, - 15.043307997728721, - 15.015463839026195, - 14.954122254477301, - 15.027601787037096, - 14.99163866568519, - 15.023494441944196, - 15.048731940307592, - 14.953922108654066, - 14.916815391588171, - 14.975190247477526, - 15.029948390421303, - 14.96007535266995, - 15.048835871589466, - 15.071122741168576, - 15.022433496355951, - 15.004836638963658, - 15.05882633611461, - 15.022970132491443, - 15.032617527112633, - 14.904723574307841, - 14.98984340287508, - 14.98968835390089, - 14.956617707190722, - 14.963250882687682, - 14.931516401925636, - 14.969227951654236, - 14.979426497453414, - 15.04389370479791, - 14.94346837707586, - 14.950476286241152, - 14.995660662204964, - 14.99227611319597, - 14.97726785359358, - 15.05983985928804, - 15.00538878925458, - 14.979471707758295, - 15.063474321289144, - 14.948876830755779, - 14.96646024107449, - 15.037133182036387, - 14.96928123459417, - 15.017727015456776, - 14.984356615231352, - 15.045710474659295, - 14.943782506597307, - 14.936953274564395, - 14.99047989353802, - 14.994767826363898, - 15.020940702247753, - 15.022736846818987, - 14.936678421728363, - 14.952899551120451, - 14.958200439114433, - 15.075535024553226, - 15.011176268361998, - 14.976264535319826, - 15.059469809667364, - 14.997922999898998, - 14.961643057616328, - 14.941231896727993, - 15.008546279758036, - 15.032693395359974, - 15.001573361554325, - 14.998238073450961, - 15.053975845516872, - 15.002344604937694, - 14.95068418988893, - 14.997693497683052, - 14.972721819930705, - 15.018071751584237, - 15.011560072696353, - 14.919200986997906, - 14.989918604150773, - 14.975218121970379, - 15.03396052636417, - 14.926774808217651, - 14.89622116365766, - 15.061871873450801, - 15.035228269939134, - 14.910175557653718, - 15.004679865627976, - 15.006159688292325, - 15.089417990673155, - 15.067197422175202, - 15.061485951214713, - 15.06626760974958, - 15.069843479080617, - 15.041562997913388, - 15.04730137215751, - 15.035883431532787, - 15.02274147625848, - 15.043472582204151, - 15.005611985396174, - 15.047150373217226, - 15.003549583662586, - 14.893832840971294, - 14.883210256604023, - 14.938626911935772, - 14.99483033370253, - 15.005686813025326, - 15.02766184016266, - 14.996011406870677, - 14.974827352472007, - 15.010481583112862, - 14.905849427972202, - 15.016058733156921, - 15.048183236686453, - 15.025824467118422, - 14.994963054319465, - 14.995567929809736, - 15.047060475947609, - 14.943105258289552, - 14.99187641010699, - 14.998885209707684, - 14.962921210347655, - 14.97861497804529, - 14.939323839881794, - 15.020853617073415, - 15.097698933038588, - 15.012961884922323, - 15.02658122129604, - 15.076539978203561, - 15.095998151035626, - 15.036801263927922, - 15.016577279812266, - 15.041669268313724, - 15.026818624990772, - 14.996151435461806, - 14.961255978355624, - 14.948875034117528, - 14.962161237246871, - 14.945780849063304, - 15.030224540108266, - 14.93288047513399, - 14.999989147766781, - 14.944585375954444, - 15.029334219752707, - 15.107570400143834, - 14.992093526401566, - 14.970637985066007, - 14.964595626915981, - 15.008227180919445, - 14.970101891755585, - 15.016572229620232, - 15.010410552542226, - 14.989257721759758, - 14.985449988177624, - 15.039651575073224, - 14.972235776918936, - 14.955711781565798, - 14.915859576831888, - 14.883040255362062, - 14.931204393108718, - 14.944852613045368, - 14.929091073554835, - 14.928959767897465, - 14.93054143143125, - 14.925855556258394, - 14.94761240687792, - 14.909054131227414, - 14.863932886930385, - 14.930786789262903, - 14.923297079658676, - 14.897569898980741, - 14.879591256419301, - 14.82734094369283, - 14.915176303697823, - 14.969457360858112, - 14.902166354010307, - 14.961082027199732, - 14.979091193024923, - 14.966044899151429, - 14.97034333462823, - 14.944394515276477, - 15.012552118545397, - 14.913643687355496, - 14.958345777276607, - 14.965654235040383, - 15.013002836861592, - 14.966921685057743, - 14.926162945058215, - 14.939766400293225, - 15.056851976681155, - 15.028605432654508, - 15.078762310473659, - 15.075915047110245, - 15.027122671154276, - 14.933711226778925, - 14.99401596556738, - 14.980623719331597, - 14.936486965345335, - 14.898451697098057, - 14.930006766496971, - 14.93020468339796, - 14.973104921777294, - 14.942996414438397, - 14.908720426111993, - 14.902616134927996, - 14.952394076735976, - 14.973169400997271, - 14.975063569822321, - 15.063884367089726, - 15.054800554587969, - 15.021984493945157, - 15.037498121292693, - 15.027294732914681, - 15.003452995560004, - 14.996630789933649, - 14.933247509407026, - 15.010484036754479, - 14.994397838041213, - 14.953364017157325, - 15.014883237175729, - 14.988321323465051, - 15.000155880533393, - 14.955666978707885, - 15.026631983318374, - 14.942633823752848, - 14.875893250303434, - 14.92084121727945, - 14.91194096939112, - 14.994798969856596, - 15.110792751261519, - 14.959790876806265, - 15.04912477676733, - 14.983117009130218, - 15.008131052520243, - 15.053532911889503, - 15.054103772163666, - 14.92517053617442, - 14.993350784664743, - 14.986858216941904, - 14.872207786984042, - 14.973078159860135, - 15.037176916120112, - 14.990464633181505, - 14.966045525952751, - 14.948659645751508, - 15.043857614100851, - 14.941409621335339, - 14.931221742924553, - 15.00254463382621, - 15.095656738309971, - 15.051035083549996, - 15.027176113057536, - 14.991652189481426, - 14.938104484947543, - 14.988813018752293, - 14.973669183943588, - 14.954411539490266, - 14.924550954334215, - 14.965503493243387, - 15.021308809065166, - 14.967187491336244, - 14.99886079723263, - 15.025556989052196, - 14.993975385719478, - 15.028378587720884, - 14.986750588238127, - 14.979684947788579, - 15.006297367515831, - 15.017203664855085, - 15.017866176108827, - 14.9092933642039, - 14.989146680687957, - 15.01385003148227, - 15.085947829049061, - 15.029626486345599, - 14.996742583700025, - 14.949032259724406, - 14.855971363264452, - 14.886695270253071, - 15.010900104517148, - 14.971838732301716, - 14.96286240887812, - 14.966215950713412, - 14.975799396208588, - 15.067544300389988, - 15.02634807154414, - 15.00149104055648, - 14.933617249914327, - 15.110446375469014, - 15.004494749653622, - 14.999909508061593, - 14.949622067543643, - 15.057109243613466, - 14.931606716964206, - 14.961192237479793, - 15.030669647608862, - 14.995508588186542, - 15.038423824382837, - 15.005080504884804, - 15.037336625168908, - 14.993020092728036, - 15.016724432505866, - 14.908336254956644, - 14.979297741484876, - 15.003857256160634, - 15.026429856636899, - 14.938324826975904, - 15.006906803126807, - 14.940787568078008, - 14.97793455340222, - 15.063303790472395, - 15.067750065692262, - 15.046816273724328, - 14.911641941917024, - 14.95817401982846, - 14.948832348015607, - 14.908423177685183, - 15.039653750495699, - 15.043536478122721, - 14.97593870770725, - 14.96151810942877, - 14.934267460760843, - 14.930670468890302, - 15.048425401311281, - 14.998133414521039, - 14.95657384821016, - 15.013553717212641, - 14.97632966128538, - 14.988587524741037, - 14.922783276994105, - 15.00912495797798, - 15.065123447196392, - 15.050568977941774, - 14.97328966747738, - 14.976785830246943, - 15.006474170611959, - 15.026645242746348, - 14.992370349637396, - 15.01789608220918, - 15.10079925197904, - 15.049928906129203, - 15.123672310541583, - 15.059668460624433, - 15.026025173284156, - 15.05040280790088, - 15.064948068317698, - 14.971804526637182, - 15.017771682385776, - 14.946090513631725, - 14.965924028509015, - 14.938658621859204, - 14.961822754138765, - 15.030422332285145, - 14.984716431727648, - 14.995144442779077, - 14.986462023049608, - 15.01397704822996, - 14.970777163411416, - 15.011836563364753, - 14.957376558760009, - 15.081740937575173, - 15.01498070839771, - 15.02427533740088, - 14.971724246607213, - 15.016309780640904, - 14.994983192159294, - 15.063397469516225, - 15.047509582120147, - 14.91951223439576, - 14.97801896461843, - 15.037086273140531, - 15.014043362742754, - 15.053391831302461, - 15.065322577469406, - 15.032122718127704, - 15.015180593890971, - 15.027425899255258, - 15.076702384073489, - 14.995661788518968, - 14.973873356728706, - 15.031603968694533, - 15.037609685398264, - 14.99022701065986, - 14.971131895147733, - 14.899744445733862, - 14.981278983871764, - 14.994744098472838, - 15.00461445057097, - 14.96336969851436, - 15.018928128493428, - 14.978797657382852, - 14.936794676786251, - 14.95218789074343, - 14.95857510743011, - 14.921915360907464, - 14.932805382663952, - 14.957474771759031, - 15.00059090648569, - 14.907965372842364, - 14.976629576911245, - 15.001303309465014, - 15.021400410195673, - 14.983402788440154, - 14.924465426612167, - 14.918947065688016 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 0", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 14.918947065688016, - 15.026968067170376, - 14.927192481793549, - 15.008585686873861, - 15.027137167640829, - 15.015769679941261, - 14.986052582548583, - 15.043831337487433, - 14.958791258433651, - 14.96216082566016, - 15.007512757617445, - 14.993065418593574, - 14.980787830438333, - 15.028206291967017, - 15.0425841978482, - 15.071313474863194, - 15.011878573945939, - 15.002158344959476, - 14.996517122376606, - 15.052804320628619, - 15.076781275929386, - 15.032884514738905, - 14.99053073969321, - 14.9661089206329, - 15.004962007499435, - 15.04748003488587, - 15.032123552388143, - 15.02232655509855, - 15.042666421263544, - 15.095843633502477, - 15.025175268058886, - 15.013754193626637, - 14.989550001718678, - 14.990389154581502, - 14.875179874305168, - 14.953250967991801, - 14.946739896258054, - 14.970357931467198, - 15.011610776528938, - 14.95034838373556, - 14.977344075544275, - 14.974904713464655, - 15.04599142977533, - 14.99651611209209, - 15.095378633035251, - 15.027761384586004, - 15.05335327666431, - 14.965829339884028, - 14.977798291876166, - 14.976722731522853, - 14.98445618483818, - 14.995192891449804, - 14.999653841277915, - 15.014081823858865, - 15.017864690265354, - 14.938320389841511, - 14.940534726819662, - 14.945355612234165, - 15.082981508745346, - 15.038617305353325, - 14.979427641705527, - 15.062980072299768, - 15.009030866995012, - 15.008139907260004, - 14.929066054155122, - 14.907421332860586, - 14.968413423486734, - 14.94576192309167, - 14.921687482507888, - 14.938752185152282, - 15.033965848019742, - 15.031322997529067, - 15.041365426284104, - 15.013851984706616, - 15.006947114242779, - 15.055106572336774, - 15.001950766473831, - 15.004923149225354, - 14.938680415037565, - 14.9740548265972, - 15.015132437140704, - 15.058052151561608, - 14.95177387794541, - 15.030598056853227, - 14.94060232556872, - 15.016932895701807, - 15.039258493919442, - 15.004584230587065, - 15.004105119950978, - 15.092411412007602, - 14.958953459449988, - 15.036232104815353, - 15.053161072854722, - 15.066501725335495, - 14.910996922106087, - 14.95510047488302, - 14.933996626997091, - 15.011095338060485, - 15.056738700603601, - 15.041176269069643, - 15.034226525112917, - 14.995037781710018, - 15.004310495045369, - 14.930522023696904, - 14.927392111256632, - 14.965330302363439, - 15.052461317941926, - 14.995179219092616, - 14.912777881759077, - 14.95669445929741, - 14.96442870685401, - 15.026630428310481, - 15.045558726986458, - 15.01543032021382, - 15.039003122463562, - 14.97912455712699, - 15.001677769905758, - 14.963869690619369, - 14.92298371349725, - 14.943312350447712, - 14.979024846489853, - 14.996247113477342, - 15.038550058849768, - 14.959335005218023, - 15.006302509624852, - 15.008659454860783, - 15.010061528504869, - 15.034134918316472, - 15.0221405828902, - 15.072006581549488, - 14.923696774254314, - 14.922188934127504, - 14.989711681855292, - 14.940668285497932, - 15.024263772548956, - 15.016024602262714, - 14.998222063691749, - 14.973239532118809, - 15.056955277053593, - 15.075739883970101, - 14.940720869453449, - 15.074848186831737, - 15.088752471442124, - 15.003371095765987, - 15.050060385862043, - 15.015958618348062, - 15.084319788719544, - 15.000798175986404, - 14.965607944604773, - 15.00382449541384, - 15.030678614577972, - 14.971976959056725, - 15.031226017834285, - 15.059008890102707, - 14.967526762808328, - 15.036987737770707, - 14.942077838971253, - 14.950229256904446, - 14.960307190506903, - 15.07220799976868, - 14.98115230871483, - 15.04370962549509, - 15.00761505609195, - 14.998129043131332, - 14.944641950372725, - 14.918176467061315, - 14.897744277398893, - 14.945960493120756, - 14.943894214801354, - 14.90118957887255, - 14.964568084917994, - 14.959428628388808, - 14.977781919199867, - 15.042253362060666, - 15.009055260631147, - 14.974684700044204, - 15.06788238754852, - 14.996307609708364, - 15.013612121707624, - 15.093338682142747, - 15.108874507922877, - 14.969760756449745, - 14.963515846058257, - 14.943613559729203, - 14.98077631646816, - 14.933221067151562, - 15.030821128716626, - 15.073975459450855, - 15.155285816654184, - 15.065329187900614, - 15.015758053356771, - 15.04065927845168, - 15.01857226723169, - 14.970776039537611, - 14.99824899379435, - 15.039983941655805, - 15.020056786195152, - 15.113741747985284, - 15.019904963608187, - 15.029240220069132, - 15.022469300727709, - 14.905294853387973, - 15.021833251169793, - 14.972460000494193, - 14.998183741121805, - 14.93993819454681, - 14.980397346678334, - 15.03657132324399, - 14.962512272425396, - 14.981915562017448, - 14.96516130748748, - 15.052779290646656, - 15.047359837328084, - 14.993807321675305, - 15.121864813115923, - 15.070591450835286, - 15.025387124315184, - 14.981099975938227, - 15.057112928824175, - 14.969246357185986, - 14.991573006002483, - 14.997431372412617, - 15.029106506071908, - 14.995934141694411, - 14.949537417898593, - 14.973136294432905, - 14.957441678222398, - 15.044052888940389, - 15.00975880979175, - 14.964139778795243, - 15.025742920444424, - 14.952083423659337, - 14.894992776000665, - 14.987692687058548, - 15.014994897763875, - 15.049484336776782, - 15.014752686644643, - 14.907626596941585, - 15.01972483267973, - 14.898420617596326, - 14.96694713841224, - 15.022621115423878, - 15.03329414330091, - 15.061502275197853, - 15.033616354849418, - 14.995102518981222, - 14.983106255586819, - 15.006638997054395, - 14.95263284931216, - 14.941191444069382, - 14.990640946822971, - 15.003192205148887, - 15.019849670987568, - 15.053867343907749, - 15.052568737530825, - 15.111711499278632, - 15.048771693146973, - 15.008723637027611, - 15.066723070438679, - 15.02938953116572, - 14.953616954665167, - 14.890553332669514, - 14.928426751249475, - 14.983436571048253, - 14.998488089364146, - 14.960936037398831, - 14.994882011626741, - 15.039106528512393, - 14.938788637234001, - 15.075291616173224, - 14.993240808490825, - 15.022503049914466, - 14.967061677200379, - 14.95337281760304, - 14.941050133094132, - 14.961892849682469, - 14.942418526331203, - 14.95189339602486, - 15.042745779946271, - 14.996652889191003, - 14.98494153043804, - 15.049071057574537, - 15.076047936038249, - 15.048132607300479, - 15.017190833186971, - 14.997975244027623, - 15.027625042552842, - 15.03555464324942, - 15.031882071841194, - 14.999374765383926, - 14.96591243870348, - 15.059855311309482, - 14.995455097112615, - 14.975000313053819, - 15.006727124193006, - 15.044540820360286, - 15.022018492293856, - 15.090177707703832, - 15.085330570411278, - 15.08016208369475, - 15.116598150600883, - 15.104773714428468, - 15.158113615924147, - 14.993318370628772, - 15.014724742533515, - 15.021951303558636, - 14.986614077470062, - 14.992967530946132, - 15.036859784248106, - 15.032458321184539, - 15.06755723030664, - 15.015699233762286, - 15.021990306618896, - 15.033563950022947, - 15.036738634483621, - 14.920018324148131, - 14.947546973243817, - 14.959515332108266, - 15.031275893093287, - 14.978739423942969, - 14.979743730835473, - 15.10635423512605, - 15.015589134029609, - 14.960370136381982, - 15.02975643776175, - 15.047148363604187, - 15.037261944775093, - 15.029369072810498, - 15.033353595542517, - 14.948589386736593, - 14.958076524393007, - 14.96467190810386, - 14.972843198673601, - 14.951920773485998, - 14.919641390875938, - 15.007886177275118, - 15.079080242799751, - 14.972116578360714, - 14.98689832259204, - 15.051800562854247, - 15.085681991342703, - 14.97955312955105, - 14.933290736729358, - 14.993014192192817, - 15.019734693914609, - 15.071411037525056, - 15.033545786121918, - 15.036041714635102, - 15.021460550879524, - 14.955798973553126, - 14.99232005539908, - 14.959268935033164, - 14.989908579835609, - 14.953782977608052, - 14.98979970005867, - 14.9493325753026, - 15.02448684895998, - 14.964471357659129, - 15.060163104466463, - 15.024257447087047, - 15.000791597243815, - 14.997221177446757, - 14.989660936992669, - 14.982150119676264, - 15.030324812212609, - 14.98567964974445, - 15.038046044966784, - 15.01705907579529, - 14.95827305987546, - 14.991150891678611, - 14.973098678244899, - 14.999787681112995, - 15.047374382010414, - 14.956995902816777, - 14.983715768746515, - 15.014098129825719, - 14.99072289276565, - 15.015213910148644, - 14.991637155615754, - 15.074486246918031, - 15.011472764515869, - 15.020407071901474, - 14.976001729079192, - 15.026669757166854, - 15.025064058120394, - 15.001341236570727, - 15.015422719507697, - 15.050322184513883, - 14.978694304105424, - 14.917426654913292, - 14.982442215860889, - 15.034987568011875, - 15.002104602810013, - 15.016832124665795, - 15.083982608392072, - 15.003097036292026, - 14.93666775848615, - 14.97561234380213, - 14.90176417866376, - 14.944787581462988, - 14.981815909424823, - 14.98116275531577, - 15.014162897785244, - 15.024978455239223, - 14.938737163538075, - 14.949836432567242, - 14.956481821749355, - 14.975503778948843, - 14.934215292770466, - 15.090273896319175, - 14.986038977899609, - 14.965884259946435, - 14.965014587311531, - 14.958977064056043, - 14.977766162338852, - 14.948381902888292, - 14.994871023876753, - 15.016443404009252, - 15.021084167784094, - 15.0101340500176, - 15.05777883664421, - 14.943782518292045, - 15.058505745924787, - 14.988046699451957, - 15.024396796607705, - 15.007985019995019, - 14.936930127982988, - 14.992718872926547, - 14.98149646761146, - 15.01785802919653, - 14.977870747651801, - 14.974316030624797, - 14.912959364412725, - 15.069877621895158, - 14.912648096305073, - 15.004238603918363, - 14.978964845446127, - 15.016551543736808, - 15.030707469009327, - 15.038361648490573, - 15.044645128242779, - 15.046846078853276, - 14.953886863560033, - 15.032425494557891, - 15.035546713845456, - 15.001910089804745, - 14.982643534282225, - 15.033805343099399, - 15.018002026891702, - 14.972500761588249, - 14.979546698439096, - 14.954698881039754, - 14.960503530154519, - 15.025378090474554, - 14.99124405166983, - 14.969238042316338, - 15.004470767124836, - 15.07273707472608, - 15.010698856097006, - 15.053874072857033, - 15.075082401307483, - 15.005638198090194, - 15.003884226770298, - 14.953232027996437, - 15.022840087692973, - 15.040249898871995, - 15.018339474786963, - 15.012099808824148, - 14.913020389709027, - 15.068670438818248, - 14.957909597071385, - 14.977920819372365, - 15.008177617975525, - 14.988736398979613, - 15.004572251693354, - 14.921305106601995, - 14.958460701975595, - 14.969186479609718, - 14.994376055718941, - 15.004310014930406, - 15.034734134776263, - 14.966267667776913, - 15.02195965877304, - 15.036223832908888, - 14.985252975243377, - 14.992081892642416, - 15.019537295472837, - 14.97912677171048, - 14.994278974429443, - 14.972547765519769, - 14.973338844454094, - 15.03716308802303, - 14.930677931451378, - 14.937047194964718, - 14.888309397293453, - 14.945811126629904, - 14.93413213531271, - 14.94083300170213, - 14.891494706370473, - 15.007818511555627, - 14.99077087464061, - 15.048787704761136, - 15.08029866816059, - 15.104659342950786, - 15.062923526301143, - 15.111044114045445, - 15.01288768225867, - 14.94756775096326, - 14.955970537640036, - 14.912262250748542, - 14.979103587848401, - 14.965707131891827, - 14.989711537271848, - 14.904784127077976, - 14.96142911808514, - 14.978064349053023, - 14.998279028884358, - 14.998619512934768, - 14.963494523586103, - 15.026247974264683, - 15.016107318084783, - 15.001526355760594, - 14.975436438504929, - 14.960378398457799, - 14.981821091124772, - 14.944325978891856, - 14.996039093271204, - 14.938881820725415, - 15.032676573800291, - 14.949558393000173, - 14.968901024979965, - 14.963131759229753, - 15.00482079219567, - 15.039804453849646, - 14.979411995736847, - 14.983621515902755, - 14.928082569934363, - 15.001803783208205, - 15.031946151587853, - 14.968784210999603, - 14.978668985770149, - 15.022266080623055, - 15.038968905508193, - 15.005182282507407, - 14.95019978007993, - 15.056769182272793, - 14.925064118681025, - 14.922539704369322, - 14.970678147134164, - 15.016764035143435, - 14.945275638310036, - 14.982259373160856, - 15.107514668552676, - 15.055870408532671, - 14.98601731495116, - 14.981658505922114, - 14.895682485188722, - 14.896407749903197, - 14.989946285089255, - 14.971067770301547, - 14.962319058963864, - 14.978564467656476, - 15.02693905541132, - 15.050502131108075, - 14.985303858171534, - 14.97898658167422, - 14.962563392134443, - 14.94046654074534, - 14.938079239489074, - 14.94111106460188, - 15.001357458389144, - 14.941156561970528, - 14.945067419102173, - 14.988894646726404, - 15.013268098015649, - 14.979446326343423, - 14.997179950746332, - 15.011671730911715, - 15.049843855179473, - 15.014323724931538, - 15.018138231586162, - 14.99350006519646, - 14.94867106039259, - 15.015785252996212, - 15.040548370774307, - 15.046353185597038, - 15.028130537833704, - 15.042334240578853, - 15.04335314814923, - 15.094943754096565, - 14.916542256193688, - 14.926189866660728, - 14.934458312313412, - 15.031322329221732, - 15.01831154861333, - 15.02620527862398, - 15.067584239392797, - 15.029163335533465, - 15.122709189088964, - 15.033204941780244, - 15.068899254475552, - 14.995607582378591, - 15.008003476616244, - 15.026336800869576, - 15.033486335660074, - 14.985055421212548, - 15.006991669068213, - 14.989962533339895, - 15.063888502356656, - 15.017404952777142, - 15.085588069528585, - 15.01863753137501, - 15.021162390186186, - 14.992115330188017, - 14.961692541539357, - 14.997675656059034, - 15.02735804014378, - 14.930994980867379, - 15.008238439078147, - 14.956538660920899, - 14.947091178751737, - 14.941888756295446, - 14.980242615696582, - 14.969204462829403, - 14.954931877340853, - 15.000843434812284, - 14.953243093561701, - 14.941265203923315, - 15.018023708168865, - 14.959320193420796, - 14.998971417417591, - 14.983435985298543, - 14.991954892007543, - 14.972924021758764, - 14.994733695931494, - 14.924465160565061, - 14.992303725491398, - 14.92879728849443, - 14.97813242973815, - 15.011717448494045, - 15.076603733473545, - 15.036267284813642, - 15.042884734246691, - 15.010094442843705, - 14.997950878770421, - 15.073257362580533, - 15.08844041534107, - 15.010524116563788, - 15.054244619244002, - 14.952715968737818, - 14.883707930737536, - 14.91817703043922, - 14.879071592871425, - 14.984757151184802, - 14.994931236430896, - 14.936190121307105, - 14.958679601810676, - 15.023867910461634, - 14.96377464908783, - 14.9673048529821, - 14.976134678311347, - 14.957818257033786, - 15.04795807145369, - 14.919582377542419, - 14.925264777991332, - 15.003940384768608, - 15.055828662979971, - 14.980706527312703, - 15.061470465404666, - 14.931928078324736, - 14.97907674745489, - 15.01610867344913, - 14.979563934240744, - 14.980526245322578, - 15.00480812237471, - 15.025554816459426, - 15.003021332523918, - 15.016612110432957, - 14.976534217056312, - 15.058263264855645, - 14.998491556983026, - 14.9561025403249, - 14.889579856228131, - 14.944169126085205, - 15.052015766669225, - 15.033331731289785, - 15.032785888409697, - 14.98512663580151, - 14.979754822469785, - 14.870887307161961, - 14.969519148198728, - 14.965864590629863, - 14.957509879322833, - 14.984267284350812, - 15.019268550735797, - 15.061192417598406, - 14.991914308839352, - 14.964025980834192, - 14.97218865698878, - 15.024528226718408, - 14.962954565116727, - 14.93776886080971, - 14.990242009995217, - 15.023004058370837, - 14.956628746707848, - 14.960867888030199, - 15.005786049188588, - 14.935807397146306, - 14.978525688034255, - 15.015568633177912, - 15.02986165403214, - 15.043621771540671, - 14.997594014389144, - 14.97872062441827, - 15.033516760672645, - 14.994098600461925, - 15.032327943131698, - 15.027050851173238, - 14.989667322726396, - 15.012990775326672, - 15.048365943246276, - 14.974604028573197, - 14.968795282237695, - 15.014600845602923, - 15.0193197664625, - 15.057160909722189, - 14.973835667868617, - 14.994380056340777, - 15.090584273385726, - 15.03238821915612, - 14.940934737809748, - 14.966130462443624, - 14.904433966286545, - 14.937797246609499, - 14.992654840609697, - 15.013522774771202, - 15.016304412978208, - 14.998985376878549, - 14.95282504764297, - 14.976734124812284, - 14.983407629752572, - 15.037544882925065, - 14.902602662489654, - 14.861391912807154, - 14.8670060609251, - 14.978378796578767, - 15.034514573065294, - 14.958737480515945, - 15.020400064877974, - 15.021637522730265, - 15.057082970165, - 15.07780292881546, - 14.989402378504044, - 14.877285975906235, - 14.916246924439259, - 14.931970280305556, - 15.017544792269064, - 15.019246998465785, - 14.891861306451181, - 15.058129235123944, - 15.064490121264624, - 14.994596145322216, - 14.945401963123926, - 14.979057594191747, - 14.97956605854231, - 15.04553816877346, - 15.04664672645638, - 15.02133212757054, - 15.043074864458122, - 15.07027184872636, - 15.02789871765634, - 15.055386031277534, - 14.979880351894233, - 15.002960023663958, - 15.008543809188728, - 15.002155594551141, - 14.982276628090839, - 15.090511824553143, - 14.987929467939303, - 15.035563660656479, - 15.02912528971248, - 14.990998824551125, - 14.92009798746259, - 15.00788075822241, - 15.043922231413116, - 15.019390688809418, - 15.062775757317388, - 14.978259370024858, - 14.97975703664518, - 14.988348019209287, - 14.987081272190956, - 14.965813825154711, - 14.984123638642778, - 14.938431321555568, - 14.988007585782764, - 15.129537679733078, - 15.001137630748609, - 15.01561053055507, - 14.999074721167974, - 14.983320618356881, - 15.040852404221393, - 15.032530975789417, - 15.017816092538236, - 14.988309214402332, - 15.06914904717969, - 15.0018161874128, - 15.043354262631642, - 14.991729662444369, - 15.014693983289243, - 14.947431903824187, - 14.953466002096144, - 14.912078301742623, - 14.987624960086713, - 14.96692557360154, - 14.879377142465, - 14.967139692109715, - 14.964199973188611, - 14.873868131580785, - 14.873544298607376, - 15.012588524933214, - 15.00878132150623, - 14.981992082460101, - 14.978629182014238, - 15.10166766728346, - 15.02625590603044, - 14.888773985294893, - 15.092354605756094, - 15.093135291844678, - 15.083240477026365, - 15.006724984917772, - 14.990900146115164, - 14.948108643761522, - 15.062439901981202, - 15.053181032778808, - 15.034969646631561, - 15.055680949256688, - 14.939229896395908, - 14.950855580188504, - 15.00819852318152, - 14.906254566589254, - 14.964309743310638, - 15.00154591218471, - 14.980639356755622, - 15.04204931282232, - 15.000982853583139, - 15.048151097719773, - 15.036961714963942, - 14.953560004675163, - 15.007961384241078, - 15.005100958018772, - 15.05564201015517, - 14.989888571433145, - 14.993344020625784, - 15.007456150353859, - 14.942706613945742, - 15.027197040979278, - 14.992556276994266, - 14.95581578858821, - 14.983964772078295, - 15.001572711180343, - 15.01737411638524, - 15.00588480652553, - 14.999467553182686, - 15.03945236996049, - 15.037052575025541, - 15.015767986263086, - 14.993612350781493, - 14.99969044769016, - 14.966020342263294, - 14.92666689007978, - 15.044141660887986, - 15.064470008893913, - 14.99372232315415, - 14.931149119296288, - 14.973427773242573, - 14.952720998239592, - 14.992753999123032, - 15.010097850088464, - 15.031859878216192, - 15.027342949642808, - 15.003176040892148, - 14.993011876356308, - 15.028431499105723, - 14.968984019733782, - 14.99952329508249, - 15.046489825481405, - 15.047172892246264, - 14.992379681943408, - 15.042381031685764, - 14.998107311655366, - 15.006469041306673, - 14.981724918832318, - 14.996184426456214, - 14.99336150032763, - 14.993773591214403, - 15.014486267044205, - 14.997422850490652, - 14.93255208044485, - 14.986010175947047, - 14.962313027846642, - 15.063059196032134, - 15.017932925536288, - 14.93809153615278, - 14.988988804095447, - 14.915560355301405, - 15.051658442155055, - 15.074287503214862, - 14.986004752055626, - 14.988818622865434, - 14.934161972845253, - 14.925719239281968, - 14.946679094721457, - 15.06676420887742, - 14.973881122411612, - 14.96609202886315, - 14.9921900568548, - 14.967438660322406, - 15.022063455650194, - 14.954736648792439, - 14.994425641039701, - 15.02486253023985, - 15.045678376670594, - 14.985021642465739, - 15.039339163927124, - 15.003521058685687, - 15.012314258554392, - 14.999039572141582, - 14.956833188903284, - 14.965122804122414, - 14.966989534805109, - 15.063607852241255, - 15.05187806236915, - 14.98632453573918, - 14.948777224089508, - 14.985070149990259, - 14.952334266077509, - 14.964746158006974, - 14.934974910106467, - 14.964629137502827, - 14.991552886041502, - 15.05824364022842, - 15.042870791087674, - 14.973860809961296, - 14.98724953570751, - 15.033297692684684, - 15.046716205395775, - 14.993721502530127, - 15.016831688087237, - 14.977059235596617, - 14.965402906887746, - 14.888756234775268, - 14.956802884906764, - 14.89833870083347, - 15.080294966062308, - 15.071211395532478, - 14.993477773878553, - 14.991541901100517, - 14.886392747658459, - 14.954418515510605, - 15.055455005696379, - 14.994894504220271, - 14.985951613488623, - 14.982941455077258, - 14.98699428054124, - 15.013621348180013, - 15.006594805933306, - 15.015891262718513, - 15.000013504776167, - 15.044637452321354, - 14.985646149197457, - 14.972795043911187, - 15.046152211397818, - 15.026679356446769, - 15.001828324968173, - 15.03846687880021, - 15.007085356613693, - 14.974785299804436, - 15.017753194981891, - 14.974601797498943, - 14.964338466501456, - 15.016072637847564, - 15.034297001916238, - 14.985153736129565, - 15.00720424982333, - 15.040002088843895, - 14.98616803478127, - 14.997951118478982, - 14.964973527672164, - 15.017398963028262, - 15.005395746629288, - 15.002324591582848, - 15.01275662537894, - 15.080457760209036, - 14.99796374605245, - 14.94048427244716, - 15.005983398231141, - 15.006085362977753, - 15.041868296518684, - 15.071539281243053, - 14.959643203123875 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 1", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 5.259574172833863, - 9.438125167031476, - 9.870059746074222, - 9.957439734075589, - 9.949446136221091, - 9.984291475730075, - 9.963392610682043, - 9.965195613875391, - 9.959674126444053, - 9.943011012061824, - 9.98046625075204, - 9.968312074773076, - 9.954078095741233, - 9.971238398240683, - 9.902246529047787, - 9.905191397716658, - 9.977985105127887, - 9.978227781377173, - 9.965111914531088, - 9.929865825375815, - 9.931162581959427, - 9.948319133578092, - 9.948061481186373, - 9.97261957100872, - 9.941633106435, - 9.940713701227985, - 9.966591188219082, - 9.99898974655466, - 9.943827942571465, - 9.957984253124396, - 9.942678568291498, - 9.963173280095816, - 9.940000468201598, - 9.962751542978024, - 9.967717096801344, - 9.973857469689335, - 9.903362615737844, - 9.907083704992742, - 9.932352576081025, - 9.95409551658381, - 9.959491611709975, - 9.957695681304589, - 9.974405238983069, - 9.968994428359487, - 9.998394217825151, - 9.971153602240683, - 9.94395633982443, - 9.932118479200302, - 9.91536183336461, - 9.953012994095733, - 9.935346050081233, - 9.933720959011328, - 9.95275866471177, - 9.967016911102407, - 9.914987503213554, - 9.9428201513321, - 9.99398097216529, - 9.942146669668205, - 9.907538829179822, - 9.88494908364394, - 9.905028790632363, - 9.933188717506594, - 9.948227113928025, - 9.964518948129964, - 9.923384676705199, - 9.936987082014415, - 9.918842305274334, - 9.931295407458165, - 9.940097796719101, - 9.929796378463468, - 9.939540350872914, - 9.96026176568876, - 9.966712926073034, - 9.971537328063874, - 9.985573733830515, - 9.981107971851142, - 9.962814972298666, - 9.94243910194699, - 9.94865476577822, - 9.982061970323969, - 9.932414787617224, - 9.911090999779917, - 9.92220270148507, - 9.94426152069187, - 9.960276899551864, - 9.956063290688023, - 9.931525220932956, - 9.931123791861772, - 9.94923424000958, - 9.93274211769205, - 9.940775190406509, - 9.956877494086129, - 9.904950388851505, - 9.93504430532199, - 9.930829967900337, - 9.92556693402041, - 9.985600644772012, - 9.966615909078339, - 9.980635889588982, - 9.945393318962216, - 9.959125039597804, - 9.988100026562197, - 9.969342971022373, - 9.923169203712849, - 9.908402939594152, - 9.919969780763484, - 9.93154594618106, - 9.941613188272509, - 9.926055224055167, - 9.921064652092387, - 9.919476205882125, - 9.940789478742385, - 9.982945564745881, - 9.966812053587372, - 9.957055883515586, - 9.984453443370477, - 9.966192912732295, - 9.938660178099257, - 9.949414523780819, - 9.929246579512732, - 9.918740183636514, - 9.918050786309621, - 9.881873321474668, - 9.864589414684584, - 9.945536542433638, - 9.938210074180105, - 10.015458960035009, - 9.968046434694273, - 9.935631804066801, - 9.944459762979195, - 9.930015773831979, - 9.92107171029024, - 9.92296121511714, - 9.931089998660433, - 9.992084390059746, - 9.936019035095123, - 9.941443852284578, - 9.956418225931117, - 10.002562176102117, - 9.972059547803012, - 9.972488989745115, - 9.944540292626382, - 9.947352947741855, - 9.947795751772647, - 9.935946402632057, - 9.915332685712478, - 9.946144464963727, - 9.961959773271984, - 9.925875427353336, - 9.948030084919205, - 9.954005576352943, - 9.931020884374531, - 9.977998710751537, - 9.944953569239468, - 9.91153070741634, - 9.971013461954731, - 9.951476313197613, - 9.96765979273551, - 9.94331625314439, - 9.946291616951477, - 9.970154369053834, - 9.978852947001485, - 9.959305128287625, - 9.958465476393588, - 9.98297398057908, - 9.96019394369073, - 9.935001477652285, - 9.917672575055603, - 9.89981281000178, - 9.922983170323686, - 9.972100222915342, - 9.963590684044087, - 9.974832443268474, - 9.951923612751916, - 9.95928007637092, - 9.94111062162055, - 9.936857904276607, - 9.982275066263005, - 9.954464225308735, - 9.926923245304652, - 9.89253909176667, - 9.891574820153291, - 9.944411067874602, - 9.943688330315059, - 10.003691744843058, - 9.991135513831773, - 9.969124965327387, - 9.964480773502977, - 9.951066274837801, - 9.927051935792838, - 9.947067826936172, - 9.955442490112468, - 9.905337670522197, - 9.891041081085291, - 9.940259228353161, - 9.93473173730409, - 9.962012141798832, - 9.988685313046782, - 9.90257830046431, - 9.896369516979027, - 9.953696447329827, - 9.971187802781646, - 9.96013730947074, - 9.943830317122687, - 9.949904819470548, - 9.917110169442243, - 9.893997996743146, - 9.921651805975591, - 9.922964780661795, - 9.961892564789244, - 9.93065577115314, - 9.928979860889655, - 9.96314369612051, - 9.946475590353907, - 9.94707079966038, - 9.99326748457674, - 9.986046520127342, - 9.948385270585135, - 9.953188991511766, - 9.939572709416835, - 9.945741785606801, - 9.919109974618214, - 9.932522143982492, - 9.983491886453109, - 9.963540146595534, - 9.906073191945397, - 9.903677878438831, - 9.909942923863627, - 9.929603583151888, - 9.946883284216451, - 9.94480444447792, - 9.958296186915712, - 9.981369726565697, - 9.943267696788629, - 9.970891670206424, - 9.936094055802672, - 9.919106418901295, - 9.95743227854209, - 9.916136563610044, - 9.954669568929564, - 9.931879464302034, - 9.950398982001337, - 9.918095752703097, - 9.926858608133891, - 9.95870542773457, - 9.97768786687826, - 9.927943052393722, - 9.931080125159696, - 9.98685819735727, - 9.99221479513895, - 9.988952261339426, - 9.918525205723693, - 9.953982317654814, - 9.969790429326576, - 9.976705204007716, - 9.979883109742897, - 9.940158072440358, - 9.965320369312218, - 9.950895338822098, - 9.92427484658913, - 9.934174755583156, - 9.96020216886432, - 9.987303701576693, - 9.937353728782648, - 9.950735583413225, - 9.94263209495624, - 9.939817095601672, - 9.902184638954171, - 9.95527703058532, - 9.97779551768793, - 9.979741321137707, - 9.967561142737372, - 9.925918381679544, - 9.964049808595076, - 9.94943528756807, - 9.948317844504405, - 9.95192934710046, - 9.94232186653158, - 9.944915459437324, - 9.916275423018703, - 9.917983151319335, - 9.933372401281959, - 9.95756713101679, - 9.964445186186452, - 9.96033913932457, - 9.939626108692186, - 9.908608317803534, - 9.94669253772985, - 9.9408706587307, - 9.95280489947106, - 9.938872528441813, - 9.948409504135958, - 9.946672512507785, - 9.930117175016282, - 9.968663910734943, - 9.987401290085408, - 9.956511610930603, - 9.978514663570351, - 9.969495563938285, - 9.945704777468011, - 9.95189499608617, - 9.945569290296682, - 9.97465563795921, - 9.958756045626671, - 9.967439565595132, - 9.973946287553224, - 9.95100422326551, - 9.964611082794551, - 9.939275263567609, - 9.972108557611415, - 9.90191903324094, - 9.945095815121554, - 9.90589038226598, - 9.923165097854518, - 9.910539637390592, - 9.901594110938213, - 9.894265967746378, - 9.878583384918809, - 9.977046303187457, - 9.980358689032515, - 9.980819247891448, - 9.989512492210693, - 9.992014041877592, - 9.954032537980964, - 9.970995125283467, - 9.94442338171162, - 9.969211902149935, - 10.015665088579809, - 9.959123750058644, - 9.95860866946147, - 9.947131862058226, - 9.965108375633775, - 10.028511353672503, - 9.97397050969994, - 9.949602974747776, - 9.9624552309655, - 9.94924156072583, - 9.935089742925552, - 9.93114866073612, - 9.930658284015514, - 9.916512546182146, - 9.958353282171018, - 9.967252063924187, - 9.959264520518367, - 9.922784535935333, - 9.924031881197811, - 9.893487715062356, - 9.954574118263361, - 9.950897297111387, - 9.93431056291999, - 9.938474421508287, - 9.930883946075282, - 9.938209678889772, - 9.937972746743698, - 9.937014949231086, - 9.916701647317002, - 10.008758364260538, - 9.995976714835873, - 9.973464305524049, - 9.96691064097849, - 9.965197638141582, - 9.941820635755857, - 9.981988633821405, - 9.974814677429432, - 9.977852059845155, - 9.967438625233564, - 9.975539977827212, - 9.980132493961564, - 9.94695078974804, - 9.971509670912797, - 9.964322145829401, - 9.970820275587704, - 9.95478015800037, - 9.936857114250172, - 9.945066984169229, - 9.904322243535388, - 9.926634299530066, - 9.958042948795653, - 9.969046652891775, - 9.971813098948985, - 9.986108119132568, - 9.982652928759345, - 9.996108228530865, - 9.966959928732374, - 9.96867292954506, - 9.974447679229925, - 9.98187144813746, - 9.94439864030533, - 9.94077362811268, - 9.976165079815443, - 9.947343644688408, - 9.942799617087902, - 9.91571923925287, - 9.956295099058622, - 9.927534712091845, - 9.948539245685636, - 9.960592370456972, - 9.941277143528684, - 9.9413045250211, - 9.933313078843513, - 9.978049169140926, - 9.958246027736328, - 9.983028545465476, - 10.003165505345205, - 9.944152504727104, - 9.917975294654662, - 9.928026690945307, - 9.940295281590593, - 9.973658839795672, - 9.928558697721952, - 9.965587828768019, - 9.911945738686446, - 9.939312998100414, - 9.95322028126581, - 9.912370110966206, - 9.969403242373115, - 9.970006667825256, - 9.994081633641418, - 9.960650422354508, - 9.933461148770904, - 9.93891108874666, - 9.948601629205136, - 9.954896583206828, - 9.93875278213253, - 9.943156253849716, - 9.953254202063624, - 9.98043755803794, - 9.950792128659248, - 9.984140120074203, - 9.96715074073822, - 9.931856157994313, - 9.947674385102536, - 9.961927246296506, - 9.981767939753789, - 9.96284884942834, - 9.9740273802047, - 9.953674448427522, - 9.907278945854495, - 9.920635512547276, - 9.929357719737316, - 9.958857893374322, - 9.955010589611184, - 9.95392544452878, - 9.945336773024286, - 9.959192894033317, - 9.964867807730892, - 9.940387857257344, - 9.984584728351757, - 9.97690901860133, - 10.014705880113256, - 9.987595291850015, - 9.95328669927584, - 9.942323798052659, - 9.982618120348635, - 10.007339911049772, - 9.971096619441543, - 9.947500336201392, - 9.921191736081145, - 9.900767055077308, - 9.942885472226498, - 9.945911866038305, - 9.937809353461336, - 9.97298107199767, - 9.97063857078205, - 9.953905556015716, - 9.903826343633108, - 9.951477078499183, - 9.973238369827927, - 9.956324062514117, - 9.969479566249536, - 9.966464679905917, - 9.956261381626723, - 9.94153642023346, - 9.93707685692762, - 9.902868407379144, - 9.906965660844426, - 9.900249343641155, - 9.948222559519206, - 9.946723713811766, - 9.929542662912663, - 9.954867516198041, - 9.973562086246083, - 9.999467756767471, - 9.95828740147208, - 9.991692823262756, - 10.004999481894432, - 9.968877173513393, - 9.94379012292092, - 9.956792931708456, - 9.962590747616401, - 9.953178752455264, - 9.936693494801746, - 9.953014327908466, - 9.967793730103315, - 9.996020280495685, - 9.980874057270773, - 10.013854172287143, - 9.95870285804209, - 9.929886004573273, - 9.944507377381841, - 9.941732021236502, - 9.949645988202668, - 9.957503198630615, - 9.893055544861436, - 9.950809226979985, - 9.9145555714058, - 9.93946789314559, - 9.964546845603833, - 9.977806515816614, - 9.968229385843047, - 9.936333317925877, - 9.955014442494797, - 9.965334123306857, - 9.956135635845891, - 9.977964820206372, - 9.953409845502689, - 9.968407989064533, - 9.995785364648262, - 9.963396904925244, - 9.981446153148061, - 9.945360146803404, - 9.943585296249456, - 9.894657721313388, - 9.903374328107999, - 9.959924121078451, - 9.96198521598053, - 9.97719782460591, - 9.979714368503984, - 9.94691289780156, - 9.949972120837938, - 9.968630404959134, - 9.9513139377951, - 9.941969171111133, - 9.946791302558802, - 9.936228343644103, - 10.001019140654163, - 9.962312748331549, - 9.930592885882959, - 9.931734608177894, - 9.984326039909766, - 9.956627545956291, - 9.935755527025442, - 9.922233312960293, - 9.912983892525645, - 9.92725981559128, - 9.970039914907503, - 9.95603943332903, - 9.935258964103943, - 9.964537931823312, - 9.944547535043487, - 9.973965502468808, - 9.982133480033172, - 9.9480207754338, - 9.94252522481253, - 9.945235476719631, - 9.929224203333536, - 9.894856425850943, - 9.875964918993189, - 9.924037477438931, - 9.967421138328103, - 9.947712014768692, - 9.965590751620116, - 9.96947928863952, - 9.953332399424635, - 9.943346564799139, - 9.95883448132935, - 9.955562121291086, - 9.944136607063466, - 9.939788144464563, - 9.93941929555951, - 9.958829870166642, - 9.950944067826365, - 9.944562999761821, - 9.933619187240494, - 9.937055141567763, - 9.927035459137114, - 9.960556696193878, - 9.9451998897277, - 9.941168665268199, - 9.92922125049237, - 9.945927280717004, - 9.937959431606107, - 9.925700364015638, - 9.970905901668173, - 9.97343924452404, - 9.984947066230632, - 9.960346166391188, - 9.951068514728492, - 9.922741648977162, - 9.941525194801867, - 9.943191804473827, - 9.980590541698758, - 9.959375347656756, - 9.936027385518923, - 9.942688069134357, - 9.939291650062435, - 9.977459994369712, - 9.971768398015943, - 9.948175462292161, - 9.936853397648573, - 9.965511543268438, - 9.959860776612103, - 9.940702451839835, - 9.954105659283192, - 9.923469718764775, - 9.942653240923793, - 9.913517621774947, - 9.920362702802446, - 9.945935381739927, - 9.927547378437893, - 9.963627797612473, - 9.995177725698033, - 9.962871678978212, - 9.936681521650101, - 9.968057122139301, - 9.959292842741643, - 9.954885112849844, - 9.977625920440165, - 10.00018558478846, - 9.923250458445917, - 9.94117575720545, - 9.95779816324098, - 9.929678365473404, - 9.96329541996995, - 10.001980368874468, - 9.987347586874264, - 9.983086803870462, - 9.976879436656185, - 9.975496699478283, - 9.927165306646213, - 9.9697341514623, - 9.927090958193597, - 9.92361673612327, - 9.954902138164721, - 9.97500350180054, - 9.935978756909421, - 9.94342688116044, - 9.916210900777255, - 9.891791462163974, - 9.882440303073249, - 9.874974234027157, - 9.9259162183772, - 9.943032234433218, - 9.964475992690138, - 9.93568812096831, - 9.921289585874666, - 9.901351761447483, - 9.915149057912707, - 9.9375065528053, - 9.939780038900869, - 9.913251800313835, - 9.931683484812869, - 9.939775282394933, - 9.930300369531393, - 9.91475189017936, - 9.916135577415858, - 9.952192457226367, - 9.935994580633524, - 9.929326238492285, - 9.93288460944038, - 9.971499858627512, - 9.940620664550167, - 9.92213057731403, - 9.916875150903333, - 9.91242643721059, - 9.950861020140671, - 9.896320579640292, - 9.928676944503698, - 9.95015116853954, - 9.990912444653041, - 10.00468262439297, - 10.003175854954677, - 9.975480112942535, - 9.994769205705794, - 9.956465592607893, - 9.925737598100417, - 9.952683746477433, - 9.954741488579963, - 9.949650953838692, - 9.976734980565306, - 9.988030083394891, - 9.946747643391772, - 9.94342750825233, - 9.965850729546958, - 9.933474160133608, - 9.974293089261113, - 9.961761932019343, - 9.971189455650311, - 9.9849210512589, - 9.940728751344636, - 9.953764773388869, - 9.946442705717672, - 9.935160259046807, - 9.950034988692595, - 9.919681457808913, - 9.95827984237322, - 9.950068532263943, - 9.934301883402583, - 9.91000440442228, - 9.926815847231735, - 9.930645481343387, - 9.897914839560645, - 9.896879488304103, - 9.902711181022006, - 9.921550359507833, - 9.94755366113173, - 9.931412729971303, - 9.948326137916563, - 9.912647916750172, - 9.966387474667057, - 9.953127204414558, - 9.922364110288258, - 9.922599919083138, - 9.950982937468746, - 9.94745608184758, - 9.911661489364484, - 9.932853246402193, - 9.963377426274738, - 9.959989957813157, - 9.959248595778986, - 9.91580523751695, - 9.94974675256958, - 9.963974618204075, - 9.986793729055183, - 9.925120383791649, - 9.999176372523127, - 9.93469857433067, - 9.953006265553931, - 9.936976297094382, - 9.945875976426066, - 9.928537619811769, - 9.94262755843141, - 9.950836908696806, - 9.922566447559356, - 9.928585714364658, - 9.938510562498223, - 9.948086050054014, - 9.937179739692008, - 9.965015757725048, - 9.962988919703664, - 9.938709754993479, - 9.937485966214494, - 9.958264631035433, - 9.91143364343466, - 9.932054598403187, - 9.922029900544665, - 9.92346491337007, - 9.930920466622709, - 9.93748838243721, - 9.902389538705535, - 9.941544358360495, - 9.949086264097968, - 9.98549490941673, - 9.95398034287383, - 9.929846086057985, - 9.94946952339093, - 9.975907050964889, - 9.996716241685428, - 10.000638608383767, - 9.967670860745796, - 10.004910508197145, - 9.99326498215114, - 9.981516450316182, - 9.964924781401319, - 9.950997838826444, - 9.950115378451223, - 9.926968142901918, - 9.90626629418012, - 9.966785083876054, - 9.931284465627026, - 9.951673242048335, - 9.972463285688162, - 9.983382134379557, - 9.97988213782672, - 9.988407863584346, - 10.001004065329747, - 9.964433999548369, - 9.93746031250317, - 9.975384798685772, - 10.01442072628255, - 9.989755973756225, - 9.948799990048133, - 9.942131424013875, - 9.98462685508836, - 9.951178026302632, - 9.943095133635632, - 9.930593601223991, - 9.964457712790423, - 9.95299038186779, - 9.945102739801587, - 9.961200194765132, - 9.958976575226236, - 9.957506540167754, - 9.97539444194119, - 9.973469371354895, - 9.925214734547092, - 9.927987852113114, - 9.933683915198456, - 9.950800552535021, - 9.935060697797875, - 9.960959592374971, - 9.932553617727718, - 9.923811698606881, - 9.933544070759455, - 9.934268802778455, - 9.932134233280207, - 9.937185977740524, - 9.969660229925273, - 9.944571733615746, - 9.938678550449733, - 9.972148096056294, - 9.929678144199196, - 9.945701546163917, - 9.945242123870061, - 9.92090847733891, - 9.91803743079492, - 9.92554485869389, - 9.9154173669399, - 9.900725463411456, - 9.928225956823958, - 9.943189723644966, - 9.947910019632339, - 9.921692093675565, - 9.908873775493312, - 9.924146588007561, - 9.927326919293288, - 9.908792517658338, - 9.905279334142696, - 9.952467465803547, - 9.94690738045019, - 9.949976509233135, - 9.957282030752985, - 9.932242181036521, - 9.962524719816567, - 9.964855482920315, - 9.950740355458473, - 9.984105513911905, - 9.945912484205618, - 9.978188035091254, - 9.923767351917526, - 9.936938104720216, - 9.956237705354194, - 9.947342258468554, - 9.971175203212791, - 9.963441592770504, - 9.973227760052602, - 9.959892914094835, - 9.97651991383475, - 9.992947205805539, - 9.93034262201017, - 9.948580188983488, - 9.942086270006369, - 9.926829051217744, - 9.950479472449011, - 9.92730733877987, - 9.945958462763254, - 9.950002771983488, - 9.984173100233013, - 10.00590918509343, - 10.004254993617069, - 9.9735032898073, - 9.972008190629756, - 9.970325001006271, - 9.922170289158547, - 9.963590275178378, - 9.965602739562295, - 9.95057455736868, - 9.957528934853327, - 9.94827900014516, - 9.960087614518052, - 9.951897200068167, - 9.953710228591529, - 9.926966012771867, - 9.906877409440888, - 9.927424038327421, - 9.930921221029072, - 9.949553821346422, - 9.914753627740208, - 9.91542701606459, - 9.918030270296178, - 9.927243459049341, - 9.967056529375132, - 9.976052819243057, - 9.980990946324305, - 9.980654166856914, - 9.967084023578025, - 9.944491264078213, - 9.968037396043515, - 9.969172414923213, - 9.968085570383218, - 9.948979252610402, - 9.986537439519655, - 9.98518266802446, - 9.951596023742272, - 9.95364310271612, - 9.952185245274059, - 9.950820310898306, - 9.980836464213414, - 9.960926271253037, - 9.934791026585781, - 9.94660952728311, - 9.949864321314529, - 9.95959374973952, - 9.9531621214909, - 9.941188291298808, - 9.942208263847549, - 9.932091458382041, - 9.962023265379853, - 9.92067547275569, - 9.947832853259898, - 9.93772802197965, - 9.93054477400505, - 9.942277034837664, - 9.951850290258307, - 9.942047223522602, - 9.96342726272635, - 9.91626160803237, - 9.956348957465746, - 9.966831369807982, - 9.969491697598805, - 9.93427568125367, - 9.939898619549519, - 9.949070004725446, - 9.950098163764006, - 9.955045421950038, - 9.982373487180649, - 9.970383693136885, - 9.922180440840084, - 9.984022507947543, - 9.937891990898281, - 9.977794499241874, - 9.94628627325409, - 9.963606760351292, - 9.965057545073995, - 9.944714516017987, - 9.962368004325658, - 9.938769210585379, - 9.936564535412554, - 9.971886147508792, - 9.944749925109068, - 9.958780123347907, - 9.949450387061775, - 9.93219356357217, - 9.942520324780194, - 9.947571329987733, - 9.940720721981505, - 9.93357946317352, - 9.971557107259668, - 9.934878307640439, - 9.95195388742924, - 9.941448827682594, - 9.963920812359795, - 9.948872106691052, - 9.970866366906186, - 9.958200491383277, - 9.96213299780196, - 9.94848663842233, - 9.963702360020637, - 9.937890934402562, - 9.957695723831486, - 9.912603874974561, - 9.917013806992786, - 9.921307665160402, - 9.889519902151873, - 9.886441311760137, - 9.964324875446781, - 9.948212062093724, - 9.944228099623004, - 9.953194609825768, - 9.924743988643893, - 9.8942330436212, - 9.934637188861949, - 9.96714281816738, - 9.95392405420229, - 9.95423085106609, - 9.96122669219769, - 9.929641849715713, - 9.93532282546877, - 9.961712724327885, - 9.966565561974736, - 9.989633314593378, - 9.955632028446544, - 9.95019521600679, - 9.97659888359186, - 9.957753659522908, - 9.930564922486635, - 9.930460164593939, - 9.940462089777109, - 9.940202382825094, - 9.924627265578279, - 9.971976492394992, - 9.953449047692574, - 9.933100651509367, - 9.92434790586792, - 9.957804520811665, - 9.967245633101957, - 9.996728624421184, - 9.998443827189902, - 9.93530520721302, - 9.954669403734542, - 9.934985873542246, - 9.960053677312228, - 9.921961320874333, - 9.970013330667147, - 9.982742611208533, - 9.949538072441197, - 9.94347408242354, - 9.928665712779038, - 9.97892383903751, - 9.968997303264077, - 9.94232233235138, - 9.913217461890621, - 9.932401919528324, - 9.899665237096366, - 9.928049480295321, - 9.915546936941647, - 9.96187808456049, - 9.928220994453183, - 9.947219880912009, - 9.917476321834616, - 9.967226941861945, - 9.951666257266515, - 9.992573359753104, - 9.992905724609965, - 9.976013509994008, - 9.979781746768545, - 9.976669832129312, - 10.009367730079104, - 9.97120812726952, - 9.968090559554444, - 9.941154155684096, - 9.935880061971556, - 9.898531254543013, - 9.96048118252598, - 9.963480420422572, - 9.932486422360649, - 9.929000213630218, - 9.953900148542674, - 9.935226569593462, - 9.970483547840969, - 9.932582308135437, - 9.947459864316265, - 9.936807698784815, - 9.951121072157692, - 9.940522802517114, - 9.966730344118881, - 9.976115799905243, - 9.987925664179835, - 9.967195478306914, - 9.95479703279056, - 9.926577779384951, - 9.955991923180227, - 9.973274201656064, - 9.951084747540582, - 9.927090755290338, - 9.973148453087516, - 9.926546636601575, - 9.957655922699562, - 9.923830801510404, - 9.940732350106053, - 9.938378892295258, - 9.917355860147973, - 9.937868237645693, - 9.962048683471286, - 9.912404745055644, - 9.960457547048286, - 9.930102905234255, - 9.944661196443654, - 9.949350676624555, - 9.955459567216309, - 9.939750627924042, - 9.926782360302616, - 9.895560953889186, - 9.942804622273206, - 9.949963387868598, - 9.889829776082047, - 9.933143325968462, - 9.938093240006319, - 9.940736457449113, - 9.911926350133196, - 9.871678164474481, - 9.871518081286215, - 9.891390401005324, - 9.941701721756411, - 9.938786182948528, - 9.952302479506876, - 9.969838178329354, - 9.952844055225247, - 9.949663736429489, - 9.961109028656587, - 9.926764691139754, - 9.921641177292122, - 9.949617656068437, - 9.931492910325005, - 9.925772715171172, - 9.929254578186189, - 9.971641481746769, - 9.975811077384664, - 9.949830575272367, - 9.941082375360503, - 9.967536965607174, - 9.964813460634737, - 9.928391205714522, - 9.931032380296005, - 9.95837323734213, - 9.996417333249536, - 9.928894851299798, - 9.913067762364614, - 9.967601747122675, - 9.970953908567672, - 9.963408421203516, - 10.00135976129382, - 9.944805862425145, - 9.922128390737093, - 9.958650234518984, - 9.966036639238663, - 9.935408349156798, - 9.919280848517264, - 9.89715366092726, - 9.923502529391206, - 9.95543541715306, - 9.930564626251275, - 9.923452377549552, - 9.92152670065455, - 9.961324863813722, - 9.944883943636738, - 9.940283378351367, - 9.933510394597686, - 9.935561244895506, - 9.971986396448951, - 9.943852880002652, - 9.906478809165575, - 9.917018232205294, - 9.944552795257227, - 9.95496438048105, - 9.917986758813383, - 9.925617089770958, - 9.925284218890836, - 9.980852981021853, - 9.973339132912033, - 9.981733207301435, - 9.93419081994127, - 9.940558960158612, - 9.986016553386005, - 9.997509204852825, - 9.989114574193875, - 9.974441411743806, - 9.967010592695454, - 9.976152619903027, - 9.954681825712402, - 9.9576255785564, - 9.925408710802882, - 9.966750447036322, - 9.958625277621351, - 9.942387301327164, - 9.96217529159599, - 9.928833297774734, - 9.950136864761962, - 9.929317313866953, - 9.95097150987452, - 9.952433749216, - 9.963440707545832, - 9.991095548398482, - 9.975211939411208, - 9.947930750672846, - 9.967470780928675, - 9.958773208033008, - 9.944041232810465, - 9.946379610665701, - 9.960979194502945, - 9.951075129160932, - 9.93079643917597, - 9.956460457065365, - 9.960104744000166, - 9.951580775829516, - 9.940532880995871, - 9.913954793371804, - 9.924679900565764, - 9.911626696793022, - 9.915551214114936, - 9.961703972257343, - 9.919851584853793, - 9.937934213728546, - 9.974991533585742, - 9.971072181774156, - 9.931142222215655, - 9.961645962458533, - 9.957097472074942, - 9.946188195758134, - 9.916898528747339, - 9.898877977182709, - 9.931472382071231, - 9.940755327135259, - 9.974977981408317, - 9.944195728752772, - 9.976571006566136, - 9.961183946880137, - 9.96253351970303, - 9.937425200944402, - 9.938861173275187, - 9.96567467221444, - 9.968488844299324, - 9.917282512171715, - 9.951958325004206, - 9.969074310852541, - 9.966370856423119, - 9.9584508574393, - 9.91992283356287, - 9.938381287747122, - 9.973698817284161, - 9.983507191317841, - 9.980524600375986, - 9.945293493135347, - 9.965840431894268, - 9.916920905459286, - 9.919544944570713, - 9.931869140802444, - 9.922469699306692, - 10.000793111919695, - 9.930987254373825, - 9.970323718039428, - 9.952603933616889, - 9.956572244778869, - 9.96165902197365, - 9.93645923880864, - 9.927503542089577, - 9.953150139435778, - 9.950605140953364, - 9.962138590595087, - 9.91517944967287, - 9.97047720676325, - 9.960254076048157, - 9.947697188855846, - 9.990948485051547, - 9.976529649086755, - 9.958977733887586, - 9.972324031551828, - 9.96706507403594, - 9.955091773686092, - 9.943263413799276, - 9.99584798228057, - 9.940026669683922, - 9.901960869087413, - 9.923660611229813, - 9.965322405262489, - 9.96683693926583, - 9.928964446956064, - 9.95905445412689, - 9.94866022991227, - 9.959339662025565, - 10.017127328773384, - 9.992170387332326, - 9.969202801301769, - 9.934716990786917, - 9.962668411601275, - 9.951718512823048, - 9.945621548272449, - 9.925482328088194, - 9.927052334774121, - 9.931179676903229, - 9.950312332435436, - 9.966944618420259, - 9.966639041783955, - 9.95275091584954, - 9.951291607314259, - 9.947447435485778, - 9.926536817469389, - 9.939013219406194, - 9.925040735141383, - 9.935190951001886, - 9.948484188878593, - 9.952385257715571, - 9.924566465305178, - 9.924431467316507, - 9.913309593989407, - 9.966038581550224, - 9.982397168383, - 9.933304018023989, - 9.8914808210807, - 9.952409300371519, - 9.953511020189792, - 9.961637576792452, - 9.921252304842277, - 9.930063187405215, - 9.947619598000223, - 9.948851919904456, - 9.964983615744766, - 9.954051094082683, - 9.959461790395967, - 9.93498971475213, - 9.978089020780073, - 9.921854691905118, - 9.964952135168366, - 9.989865442559609, - 9.933626496623708, - 9.955376125932071, - 9.976019827200455, - 9.948011734555214, - 9.97314499630165, - 9.921861803336874, - 9.939395861475447, - 9.97173523287947, - 9.929770200833909, - 9.938256808750209, - 9.973579572855225, - 9.976248332291531, - 9.942623885435932, - 9.925475121359705, - 9.917895941699548, - 9.933539075462367, - 9.954033262103456, - 9.935018515388624, - 9.947845436003849, - 9.912656502119447, - 9.977435027576373, - 9.946957439738382, - 9.946283242618978, - 9.981333737732792, - 9.958764789962466, - 9.97984897537746, - 9.953451664433432, - 9.965416587119739, - 9.91765963836771, - 9.941198690563498, - 10.003723000327367, - 9.977577279228397, - 9.96633100231408, - 9.938462039228364, - 9.963616452416021, - 9.995718945600245, - 9.949955295136515, - 9.939955800980327, - 9.96544133249701, - 9.942466499973168, - 9.949729559240952, - 9.973309740592235, - 10.030021988208798, - 9.994311846225635, - 9.963114304238962, - 9.915127978735432, - 9.90780895885981, - 9.939293579568774, - 9.927415071807665, - 9.94841923447489, - 9.951732398225563, - 9.951373040477037, - 9.972990657456412, - 9.972754265022541, - 9.947286983172944, - 9.941265752390871, - 9.94061377292419, - 9.9510937048454, - 9.920696279243112, - 9.916743449707157, - 9.949782271212444, - 9.904717503597977, - 9.94607738655512, - 9.946980386037247, - 9.925821680515336, - 9.92200581150294, - 9.91774650858575, - 9.954922862903205, - 9.948407092967962, - 9.925895332902744, - 9.926133278028239, - 9.94672489340566, - 9.94936303624558, - 9.941344867951898, - 9.935272404273196, - 9.92355347417069, - 9.940634157208065, - 9.936915621989955, - 9.921524049590806, - 9.909436220196781, - 9.96748701211363, - 9.970113857928702, - 9.915404596394342, - 9.951874831893887, - 9.91878559343838, - 9.92189306022676, - 9.961931371086393, - 9.945273836401656, - 9.950085436423642, - 9.930776843096544, - 9.930731138605973, - 9.92787148693201, - 9.947772137536454, - 9.967007955184034, - 9.955221076336736, - 9.924630593508672, - 9.931498862602858, - 9.954268781258053, - 9.968374261335512, - 9.945107159880516, - 9.941337219685838, - 9.925694202559647, - 9.958839020906554, - 10.004514454855448, - 9.969555173634566, - 9.956171742132963, - 9.954320706442298, - 9.981537273791776, - 9.970177218627972, - 9.90009209286918, - 9.960427954861999, - 9.91678177501009, - 9.949942648118162, - 9.943176717817549, - 9.97451442091914, - 9.975593454045784, - 9.953307639826747, - 9.96919919156187, - 9.919504669966585, - 9.96401821763528, - 9.941398062513137, - 9.941350593976232, - 9.934323682384203, - 9.93547417637447, - 9.965460168936806, - 9.997987271633573, - 9.964263594498556, - 9.93821827271824, - 9.941630848838617, - 9.913863619588799, - 9.956819958696268, - 9.916532316751479, - 9.919034087961666, - 9.932743424244137, - 9.921774831697597, - 9.900503837993442, - 9.954438475738156, - 9.97557388166788, - 9.963013553781744, - 9.935827144008057, - 9.925861452955424, - 9.934971627456695, - 9.965014626481409, - 9.977480840988745, - 9.932615141106508, - 9.950237935481743, - 9.985882473268317, - 9.940095116081253, - 9.934063567280464, - 9.991829967750252, - 9.988513307431575, - 9.944465266508885, - 9.958177789635686, - 9.990472245661923, - 9.960405469799746, - 9.932412569639952, - 9.912394746768992, - 9.965406723871666, - 9.94608690812232, - 9.985614497802965, - 9.93107019673212, - 9.935550549330179, - 9.954222712828981, - 9.957670298208294, - 9.96447399171493, - 9.937734826319431, - 9.932409603754804, - 9.919105249425677, - 9.96507576184484, - 9.989080852467547, - 9.902491936576395, - 9.908872021107133, - 9.912485478435798, - 9.916012146782316, - 9.91035352674862, - 9.961726719075036, - 9.960355096663788, - 9.963254130565353, - 9.915929377638058, - 9.910956711915144, - 9.94769608608482, - 9.947740632529614, - 9.941914387567135, - 9.91982161561239, - 9.935008287450414, - 9.957336797808436, - 9.934953602017845, - 9.959163269872418, - 9.996171842135107, - 9.967821501562664, - 9.96980585905806, - 9.940669069123237, - 9.927275583918735, - 9.955892123962242, - 9.963752567774508, - 9.956136208047347, - 9.958442317646627, - 9.947712342993222, - 10.006806086752704, - 9.951486147434213, - 9.940723992254814, - 9.946397866874733, - 9.916647116272598, - 9.950464439409016, - 9.982814368553615, - 9.950902479725086, - 9.943082749753513, - 9.891967526088337, - 9.875083580852557, - 9.91117665210634, - 9.924278648157747, - 9.92221641446229, - 9.968068320437823, - 9.938332417230667, - 9.972158012652615, - 9.9921028224809, - 9.943738945185464, - 9.952106006339214, - 9.963453116135025, - 9.990761820491647, - 9.951431945824805, - 9.937320093031465, - 9.990262343960548, - 9.960864403475806, - 9.984597041157059, - 9.953003500799118, - 9.956166473292898, - 9.961766757089414, - 9.934805995550242, - 9.930247461870827, - 9.949600702913683, - 9.949041312420189, - 9.941424272181173, - 9.952385985285234, - 9.951880764719702, - 9.976140868322299, - 9.954611545872194, - 9.946669846803434, - 9.94784283850985, - 9.939492318793093, - 9.960781278539871, - 9.990735243162145, - 9.946787397304691, - 9.972778879557826, - 9.978048005030619, - 9.962815380481281, - 9.962111982867825, - 9.900956806383963, - 9.971150022492209, - 9.963040102654132, - 9.9702020225182, - 9.939874008123432, - 9.911440477622186, - 9.939990487772848, - 9.9401244687504, - 9.934905414900955, - 10.010116504034364, - 9.956398354088083, - 9.953188904973985, - 9.947529152573606, - 9.983788318369088, - 9.945089900101136, - 9.948761952982128, - 9.968301480768611, - 9.975813110323637, - 9.983882154955863, - 9.93936058259246, - 9.940749371260646, - 9.981055774087546, - 9.949624765122865, - 9.969482899070309, - 9.971329027000444, - 9.969336979600657, - 9.955712486169949, - 9.97674518441497, - 9.95643784409814, - 9.941474421033469, - 9.920497303187087, - 9.93578345757241, - 9.944528929043711, - 9.916536871263828, - 9.954172983963264, - 9.966818447100431, - 9.937573171302725, - 9.923221439439716, - 9.901238871605365, - 9.947430627364888, - 9.91443722708024, - 9.953544464865065, - 9.939712699309942, - 9.91156481051907, - 9.902443333749193, - 9.950525755699442, - 9.931354728394785, - 9.936474890002959, - 9.902552522350625, - 9.962735986319748, - 9.900050789761474, - 9.929453265746842, - 9.949555489124833, - 9.960071909130955, - 9.919995474516547, - 9.938432070159163, - 9.9065379308595, - 9.90354257204043, - 9.954617135750594, - 9.977974939156201, - 9.94932042459089, - 9.89926780687318, - 9.887589117911546, - 9.889946476596133, - 9.921495486111098, - 9.948478909895378, - 9.964299792188875, - 9.952345559354688, - 9.943415295626457, - 9.93261358793946, - 9.959925629308675, - 9.96434272526254, - 9.943350089973755, - 9.922361790273236, - 9.95659846928261, - 9.959308651471709, - 9.978268988792763, - 10.013813101457709, - 9.951213775255095, - 9.95844068584426, - 9.946821786199362, - 9.951647384334278, - 9.939951507541355, - 9.958540453381623, - 9.922753695312748, - 9.926737263748176, - 9.937867381814701, - 9.964188592066295, - 9.97524648890011, - 9.957254415044378, - 9.947785000637639, - 9.98604561544055, - 9.96861318282921, - 9.928661046069482, - 9.912445622231946, - 9.938215791715985, - 9.899371596481162, - 9.898162963322891, - 9.959856327603687, - 9.942019351078573, - 9.920627950714165, - 9.913882272762953, - 9.980642168178056, - 9.964063603820168, - 9.983025563354872, - 9.942035637632337, - 9.94989901638238, - 9.958828198685724, - 9.95241168863511, - 9.956192623213255, - 9.963158303675886, - 9.947753094945158, - 9.96895650341297, - 9.99944951480595, - 9.940835234585151, - 9.942065760048584, - 9.954917346909587, - 9.974267025660144, - 9.956621350084387, - 9.98786648658451, - 9.937695239662172, - 9.91871684895311, - 9.945292666149735, - 9.955359912531234, - 9.976103212247377, - 9.982162412382422, - 9.963532709599017, - 9.957513193024141, - 9.934763173309536, - 9.897862578318653, - 9.949585259695848, - 9.932969287535352, - 9.962967437364926, - 9.933470842012245, - 9.924878833082326, - 9.9327485024099, - 9.896223814224053, - 9.927489067721181, - 9.938205081215816, - 9.963733483265408, - 9.942540414026237, - 9.946708979080594, - 9.957878748727746, - 9.935342363731918, - 9.95105387943781, - 9.980485679409641, - 9.979027857365937, - 9.99711283768347, - 9.94316028889242, - 9.950173179178508, - 9.97075525281254, - 9.975377698687375, - 9.959612954714943, - 9.957695630800377, - 9.928856346523565, - 9.964085143648177, - 9.91249627039143, - 9.971257852548984, - 9.94337541148656, - 9.940718457318342, - 9.981081100857985, - 9.939996064725925, - 9.919457180622535, - 9.974219642477502, - 9.994100943005812, - 9.959511496916324, - 9.992515927888466, - 9.976973227135614, - 9.942793572023763, - 9.914405314557287, - 9.914030536315785, - 9.936274060511554, - 9.91260722477977, - 9.981411354722038, - 9.972825975191576, - 9.994850056566593, - 9.988175827708707, - 9.964692378361406, - 9.964246768160155, - 10.000688948201999, - 9.987220542695491, - 9.957573793672463, - 9.937852305909837, - 9.94564501105591, - 9.975839532069873, - 9.974334253365734, - 9.952131299398058, - 9.991480784370497, - 9.968104720284904, - 9.904060919227083, - 9.906582095228973, - 9.941927375638448, - 9.944000728537754, - 9.935068631269262, - 9.939347222240645, - 9.932407805231023, - 9.933620652822885, - 9.925256785620883, - 9.978005554883866, - 9.977542391690434, - 9.969706822025612, - 9.992657853156853, - 9.965843788745639, - 9.970002170917473, - 9.964459071941906, - 9.965863330864577, - 9.919512707733524, - 9.916934668621922, - 9.921050803813005, - 9.944875181914806, - 9.916445560815106, - 9.8730775587417, - 9.937077784686995, - 9.930974952576625, - 9.928768794763394, - 9.955270480698681, - 9.95693892706001, - 9.919497662362504, - 9.967594299415312, - 9.946740596345602, - 9.957174370040612, - 9.97858799987459, - 9.952922729910625, - 9.929052478388883, - 9.93238815001144, - 9.94858044822144, - 9.946846211213543, - 9.933188126045652, - 9.933636248957336, - 9.943943665445316, - 9.960191195596309, - 9.967057519730758, - 9.96160879436665, - 9.972620457871264, - 9.957601239427097, - 9.981519743680385, - 9.966396206889176, - 9.95576828687311, - 9.953265163823696, - 9.944778326011152, - 9.952776069158114, - 9.962130268740317, - 9.938037844846392, - 9.95797990555959, - 9.928456766994483, - 9.937217218625515, - 9.981948611649896, - 9.960829339266962, - 10.01182152596815, - 9.967116100397961, - 9.957437125262052, - 9.99585924335684, - 9.993933144251322, - 9.992590234219392, - 9.977982841890322, - 9.94392521165325, - 9.940552133316732, - 9.937710639928063, - 9.931794106932337, - 9.949342984982088, - 9.913978209504881, - 9.904405822148753, - 9.93153152847872, - 9.966731647820827, - 9.978252089529803, - 9.994922599005987, - 9.980463618446327, - 9.967276217487765, - 9.990811245607865, - 9.968219172586627, - 9.996509510414262, - 9.924025980007501, - 9.940487933271696, - 9.946350366938528, - 9.91841213757499, - 9.951025607653328, - 9.940199176417801, - 9.97316368794563, - 9.988817040590785, - 9.931822897275257, - 9.949520260854355, - 9.964608417355597, - 9.95344216148098, - 9.959068601738608, - 9.964322089224671, - 10.010354314657635, - 9.963842059199033, - 9.959951760469222, - 9.963409051439664, - 9.948253159117316, - 9.965855970719534, - 9.932335437981914, - 9.928663788116486, - 9.922887952769864, - 9.946137153932721, - 9.960709037552325, - 9.955321157727749, - 9.947108117167549, - 9.95555594679623, - 9.923471284637706, - 9.895380809343903, - 9.919789066641838, - 9.923118603233918, - 9.970785512182117, - 9.987724363172672, - 9.937939094629483, - 9.97612042464364, - 9.989312427461444, - 9.989560676086116, - 9.976865477246472, - 9.9684646886404, - 9.97888835274472, - 9.985501366230043, - 9.982772226073902, - 9.94465950407593, - 9.92352834542734, - 9.898584428780456, - 9.94481581023576, - 9.958505325430911, - 9.988697786721497, - 9.947931061398497, - 9.943832308558802, - 9.993827603774522, - 9.976245925872531, - 9.970578640150805, - 9.963830242990303, - 9.954491279430869, - 9.943386170850964, - 9.909681994008286, - 9.924581160482486, - 9.935619143739304, - 9.942948060446673, - 9.940505968383249, - 9.9398834016867, - 9.943539338572764, - 9.930019051598578, - 9.954111959257185, - 9.942872184934464, - 9.947142573560061, - 9.983836623470003, - 9.931004720411257, - 9.945210461779833, - 9.943651610419469, - 9.955094883126087, - 9.972219721010871, - 9.957651659723116, - 9.960776313580668, - 9.93240705969099, - 9.940040440926781, - 9.975424391012501, - 9.960816609776678, - 9.993886293116434, - 10.001153904267072, - 9.96790085129982, - 9.912026068816088, - 9.91211276166107, - 9.93368559287756, - 9.930480323482191, - 9.960499692928524, - 9.93519797377613, - 9.952551083787252, - 9.97965260927605, - 9.952189619867136, - 9.955041331647383, - 9.928245360138181, - 9.915857287839847, - 9.89303470206219, - 9.942015777383586, - 9.936253970363564, - 9.952339554946182, - 9.938864979664922, - 9.961038819821795, - 9.950148557095382, - 9.944219134034697, - 9.929557796441026, - 9.924643871787666, - 9.934128976263452, - 9.927186850960682, - 9.939518537323664, - 9.919614738168676, - 9.953976118312973, - 10.000206526384476, - 9.957735416612131, - 9.933606769348946, - 9.946802528137642, - 9.95042687690884, - 9.96148067315359, - 9.916152065754227, - 9.916154537916933, - 9.908929457228886, - 9.925208723482017, - 9.92543496419477, - 9.957729830056763, - 9.942438947755342, - 9.90432680633939, - 9.9523446667473, - 9.9616644107201, - 9.960160190197556, - 9.913884638337409, - 9.970399929960656, - 9.978246330545337, - 9.94766813102188, - 9.939544905871053, - 9.969838991594957, - 9.980044821672097, - 9.974019082916719, - 9.936072189506623, - 9.99561897577677, - 9.99182280709452, - 9.943866924920298, - 9.940122915892916, - 9.927886704839247, - 9.9577492485222, - 9.947274934535033, - 9.95295034707335, - 9.935401303971013, - 9.907710152371646, - 9.912069520553345, - 9.94966227556457, - 9.95290417485648, - 9.971413028616016, - 9.945068927629176, - 9.936490736800788, - 9.939597418401927, - 9.93986079086916, - 9.940461850503642, - 9.92184478038285, - 9.90934547731056, - 9.921438987901661, - 9.883739114327625, - 9.915471348486799, - 9.934174706429452, - 9.923452510549401, - 9.998579749858136, - 9.96072704690932, - 9.947438138383848, - 9.94230867009087, - 9.925839179387802, - 9.94177148380231, - 9.946402408507533, - 9.968630941147484, - 9.947264345697484, - 9.961281425671483, - 9.983761638535025, - 9.963291065639256, - 9.941787143362205, - 9.944284889718695, - 9.9073448450894, - 9.91768894801553, - 9.948463956431613, - 9.940297840032772, - 9.943859315055375, - 9.94956755001671, - 9.962496481101287, - 9.930429099108837, - 9.926570030777937, - 9.940961431009326, - 9.951713597733072, - 9.933023106083976, - 9.95023543725489, - 9.873900763657408, - 9.903564638351483, - 9.902169421391074, - 9.899861290136304, - 9.920609316867587, - 9.952143959275034, - 9.941310742020262, - 9.912067528295399, - 9.931159859588398, - 9.964640853431002, - 9.915243942134495, - 9.96161168572697, - 9.978562623847452, - 9.956588665819588, - 9.943832226421572, - 9.955003569766834, - 9.921786903198191, - 9.933874101316682, - 9.96503114582377, - 9.924019381908641, - 9.905489151354667, - 9.915442838599033, - 9.939202131765985, - 9.96739342161381, - 9.996449416440582, - 9.954696448615525, - 9.925640088062437, - 9.906476051385935, - 9.92224385789871, - 9.893007753774556, - 9.92269134472378, - 9.920957540025816, - 9.925611497228829, - 9.979313149827155, - 9.95664185805218, - 9.948728958326308, - 9.923464482592989, - 9.974843498898426, - 9.974852218151536, - 9.991969197688691, - 9.945373355884984, - 9.948542422517365, - 9.986565002950618, - 9.979312236445306, - 9.928242031768166, - 9.936094687523672, - 9.974083653453624, - 9.98010257483965, - 9.961797416451205, - 9.900258683631144, - 9.925182701408966, - 9.945646031510051, - 9.902487215620972, - 9.933811123583158, - 9.968894854120245, - 9.963585785704424, - 9.942471439948761, - 9.935760071510272, - 9.935864421156369, - 9.97816009060147, - 9.966103875713463, - 9.979845246616021, - 9.968336201094111, - 9.944337472754201, - 9.92279272318729, - 9.957262192106294, - 9.951324424397184, - 9.91217935633366, - 9.950270532981454, - 9.913823666106103, - 9.88866941455101, - 9.939479446330061, - 9.938676021946565, - 9.944792027583778, - 9.958015183044898, - 9.925660601704406, - 9.995291197231442, - 9.947332189290996, - 9.979666337596317, - 9.952845167281861, - 9.931656165405869, - 9.898123840281, - 9.933141148841244, - 9.970948279340494, - 9.994683195615456, - 9.954698610108881, - 9.966580057230264, - 9.957758888490519, - 9.971071517197787, - 9.929322832571572, - 9.949996142770113, - 9.911204598537461, - 9.93936782141283, - 9.95847977911053, - 9.932814187582519, - 9.958474955819941, - 9.954851706214326, - 9.924604712169044, - 9.918564684955742, - 9.923217374878282, - 9.93225015673727, - 9.950617158899115, - 9.949190997451767, - 9.963749909841725, - 9.934915675237466, - 9.95398990534822, - 9.949671415540532, - 9.96546710534431, - 9.954014877631327, - 9.9614858430794, - 9.941324843758053, - 9.932630664422726, - 9.961916830351711, - 9.930440214699837, - 9.96789900178343, - 9.955608698091714, - 9.961979786276192, - 9.977303612200611, - 9.925424864204583, - 9.937636999479421, - 9.9600232004007, - 9.953362869309156, - 9.962978856706936, - 9.953471064708076, - 9.935694043363842, - 9.938909562278898, - 9.920044885617619, - 9.94548013884822, - 9.941187847133218, - 9.963851816165505, - 9.977298006293639, - 9.951317188706355, - 9.936553426974426, - 9.942009913543522, - 9.945079476302258, - 9.901529170819577, - 9.917474172032156, - 9.945901580826751, - 9.92276130238324, - 9.927577597367522, - 9.93078813784358, - 9.96758056713478, - 9.951464770981934, - 9.93550213575486, - 9.926012840743477, - 9.930005929350008, - 9.931237234364312, - 9.912324965163524, - 9.912690881773011, - 9.95174249047804, - 9.999403182845255, - 9.999794192792377, - 10.008485013238095, - 9.956193174869146, - 9.976756247424557, - 9.974675817118069, - 9.937395589495418, - 9.912861657851755, - 9.955464322920838, - 9.963231046606701, - 9.924515164031641, - 9.912284425510943, - 9.92440683269753, - 9.903192718480952, - 9.937630240177572, - 9.944011466788782, - 9.944264039835176, - 9.914754445044304, - 9.911973139661848, - 9.904825565856111, - 9.928797013296728, - 9.910879063192352, - 9.916690552531396, - 9.96542685667972, - 9.974743957628121, - 9.974530328085333, - 9.941956847344324, - 9.973479474952176, - 9.999966122692996, - 9.983286265106834, - 9.933522864916268, - 9.935650353753761, - 9.964954560253288, - 9.953073761762791, - 9.94280379877601, - 9.933813290310056, - 9.930889390903198, - 9.903370519536685, - 9.905669530029304, - 9.93292740721981, - 9.937193979792276, - 9.927895430135438, - 9.951056644257438, - 9.932310270506607, - 9.956126684025964, - 9.931129321172305, - 9.964068602368737, - 9.936276851368023, - 9.934448422020091, - 9.979306080952497, - 9.961449811838493, - 9.953191950386852, - 9.961157036628748, - 9.947796423126668, - 9.951159416895301, - 9.94486706181105, - 9.967457402551236, - 9.962438178251551, - 9.947581631827374, - 9.977546567939266, - 9.95588862487231, - 9.976015982289422, - 9.949047289581914, - 9.93607287777259, - 9.948292057910024, - 9.968845369402386, - 9.98073264278775, - 9.985847309551698, - 9.983360237065131, - 9.92372077256905, - 9.93103352264536, - 9.92619592299214, - 9.953198574090043, - 9.907090846333897, - 9.945982317507177, - 9.95695522482656, - 9.931851895966004, - 9.946331350029121, - 9.94490673338251, - 9.94948649990674, - 9.945559654137329, - 10.000463453333566, - 9.996517823853335, - 9.957536570563532, - 9.935988580984723, - 9.936995530228446, - 9.907821950895796, - 9.956480774809242, - 9.95183937348972, - 9.957757653464318, - 9.946061762879419, - 9.944589151307, - 9.994631036908979, - 9.989506798141612, - 9.969708218864842, - 9.969972986567745, - 9.988971977352028, - 9.98398443141154, - 9.979218195606677, - 9.998731693630834, - 10.000826602596465, - 9.96171977279752, - 9.952287486762529, - 9.925537306333842, - 9.946707454396844, - 9.952873046166934, - 9.943122895972815, - 9.932953001521426, - 9.931351043410269, - 9.96094052749568, - 10.008327304443029, - 9.980671515008247, - 9.917801488781514, - 9.918398848068527, - 9.91566372332396, - 9.931085603214262, - 9.954222391518657, - 9.93785020363848, - 9.934584569861345, - 9.952943853298308, - 9.9748594162943, - 9.929142996172915, - 9.928387350785908, - 9.953729634551083, - 9.944578384805917, - 9.940247222122501, - 9.919131874428729, - 9.947799638514011, - 9.955923719312933, - 9.908747814224585, - 9.956708733686517, - 9.966798157585249, - 9.966206795321886, - 9.936290412750571, - 9.970234209000788, - 9.984278625751069, - 9.995155374853871, - 9.967021191533277, - 9.958565530645116, - 9.952890802231769, - 9.959163830250736, - 9.930474907131114, - 9.972317516407667, - 9.957680758050273, - 9.949779324983002, - 9.95906363244299, - 9.951130906824357, - 9.950327783746568, - 9.921440655204599, - 9.963969516223893, - 9.968279308940822, - 10.000445315195027, - 9.971431338121421, - 9.974635683736892, - 9.97675689003193, - 10.00716595021924, - 9.964849434452457, - 9.94112876434054, - 9.985706430425202, - 9.970361410800406, - 9.966086501871828, - 9.964268272668821, - 9.951554418311693, - 9.987756343723953, - 9.99685434214185, - 9.98211446722256, - 9.911535542923897, - 9.933849165873173, - 9.891628656957797, - 9.899079284067072, - 9.917328393462917, - 9.923359536900643, - 9.981497171225348, - 9.933707880260938, - 9.950100422020565, - 9.970215564487955, - 9.967432299096533, - 9.939655547758925, - 9.962255332463974, - 9.958712813995563, - 9.990491985124917, - 9.974449297131168, - 9.91814877802199, - 9.937176647413457, - 9.968452309000844, - 9.956698655059826, - 9.948625030199729, - 9.899241682894727, - 9.912522484915172, - 9.94685690091981, - 9.948168511144107, - 9.97960213609267, - 9.92749654354401, - 9.929930607552949, - 9.958164629131229, - 9.92403527859789, - 9.910344529176081, - 9.946842506934304, - 9.953553974648823, - 9.948806366954042, - 9.963187151093214, - 9.9466321239682, - 9.98039891542095, - 9.94497999513198, - 9.958407439159695, - 9.94136417405958, - 9.922438652637634, - 9.901656552447353, - 9.921860877933707, - 9.919742063250371, - 9.950856657756074, - 9.959886880234597, - 9.97345890456819, - 9.934831755286519, - 9.953352284092626, - 9.963666576764634, - 9.979092205334856, - 9.950588927248935, - 9.943774508742564, - 9.895453967052948, - 9.936170684971772, - 9.919132742189824, - 9.94446508374692, - 9.92950345473921, - 9.934093407131687, - 9.95582043624751, - 9.948376676428351, - 9.949675021966112, - 9.941284315906158, - 9.94269090300468, - 9.941907752788994, - 9.949280820398384, - 9.964671656237895, - 9.940403275738964, - 9.913327792842496, - 9.93224577276118, - 9.958261337980012, - 9.941601685622436, - 9.96564789182801, - 9.988802714260569, - 9.99127940522213, - 9.982884777191778, - 9.967373610102284, - 9.93692270104154, - 9.870951872727701, - 9.931051534047867, - 9.955247190030015, - 9.980005952392629, - 9.971106250359226, - 9.954719468648209, - 9.943407150010946, - 9.934579541562586, - 9.958610903097034, - 9.931505387407169, - 9.921722499499435, - 9.908237256451214, - 9.93737995836693, - 9.945925373239106, - 9.937815484389143, - 9.93347046704045, - 9.946801582233892, - 9.95450528785785, - 9.919884218085416, - 9.945006550391048, - 9.932157437350968, - 9.937922577114628, - 9.940667111486578, - 9.900670073031893, - 9.924461305579978, - 9.952967089907228, - 9.947046866190933, - 9.947633323761096, - 9.94900133507427, - 9.953688849206365, - 9.950514864879278, - 9.969054653464596, - 9.957053993419438, - 9.936457982930976, - 9.943794519827458, - 9.910716214651, - 9.95853829809925, - 9.911188997557385, - 9.927161853888585, - 9.932845131569538, - 9.962880952857951, - 9.963035979113606, - 9.955264255002552, - 9.952297557996985, - 9.940746487593609, - 9.956701277198862, - 9.910137357085915, - 9.949419276021311, - 9.909807020881008, - 9.92600149736827, - 9.949108158903192, - 9.974808238564671, - 9.934933265153587, - 9.924490149286672, - 9.909767191185535, - 9.975224186918425, - 9.962156935795667, - 9.929885591792893, - 9.961539404637241, - 9.949616794483918, - 9.964754301332468, - 9.972707024180258, - 9.923670967090576, - 9.904399881397781, - 9.950191031122607, - 9.97077776623266, - 9.979435258738413, - 9.98756893782027, - 9.9806376376041, - 9.958221545092101, - 9.950862232738528, - 9.94588475054544, - 9.963116248432117, - 9.951595131109398, - 9.92825509571373, - 9.944884617516093, - 9.928342074703373, - 9.961772215958367, - 9.971290467694404, - 9.951465803403742, - 9.934246406807697, - 9.962477151926475, - 9.93907127097066, - 9.915033274660885, - 9.927822665908584, - 9.951532251606125, - 9.957069784388139, - 9.944706325381587, - 9.92975283431889, - 9.916879374753165, - 9.916220105736729, - 9.940279737632293, - 9.971704391552441, - 9.990202838003299, - 9.938150688642535, - 9.929905829015937, - 9.97010654890114, - 9.977627074678603, - 9.989040745918452, - 9.967074498623791, - 10.000501883557996, - 9.972812172807899, - 9.949186778880556, - 9.944378641601814, - 9.941136457856398, - 9.95677195160954, - 9.950258305896694, - 9.96525931986813, - 9.966854744020262, - 9.96450048973677, - 9.95162258482723, - 9.932430606286722, - 9.96796269963072, - 9.976959204155563, - 9.972927934234018, - 9.962603718307168, - 9.97090020442229, - 9.908174278700296, - 9.951919533365103, - 9.890609458161789, - 9.925809582693258, - 9.945305677491984, - 9.954490798784624, - 9.986046635142415, - 9.961201281764568, - 9.938258065124685, - 9.963709583115616, - 9.988339892324571, - 10.000827008854444, - 9.953502673068678, - 9.95573726556523, - 9.901451014164278, - 9.905036487618457, - 9.962077091882716, - 9.948248596191725, - 9.962518524815225, - 9.960790754502279, - 9.939663154837906, - 9.934169765801876, - 9.950193556942413, - 9.938187115907692, - 9.94914208611377, - 9.949046743118181, - 9.943052617454741, - 9.944892852591686, - 9.931308785616867, - 9.941201210228456, - 9.937357272496424, - 9.985701311263346, - 9.955886895184408, - 9.9700455915457, - 9.949127672082144, - 9.95455358009459, - 9.932651854829139, - 9.935640459957424, - 9.938321432898697, - 9.960937826218856, - 9.935257649938613, - 9.955401249325774, - 9.94244095986479, - 9.953743625111034, - 9.934527859524211, - 9.957235714710027, - 9.950122093866165, - 9.996137911924933, - 9.911183757511424, - 9.92047131602446, - 9.936622869708183, - 9.919528021065366, - 9.928050279861454, - 9.907065554574325, - 9.967907189636604, - 9.98504928054149, - 9.975074736827722, - 9.942435241020474, - 9.964294770883846, - 9.943073417263333, - 9.908020168064134, - 9.962295768652428, - 9.98214373942103, - 9.959842060419911, - 9.963743934637447, - 9.973863982453922, - 9.948605037695966, - 9.986285142208118, - 9.95211592194466, - 9.937499826345585, - 9.927617494286476, - 9.956055831300992, - 9.925815497371975, - 9.923416701510082, - 9.935669864986043, - 9.993092773408149, - 9.989003019425661, - 9.956189128537863, - 9.944493884913724, - 9.936911969594984, - 9.934837350868438, - 9.918651947218146, - 9.894068878107, - 9.902118971917897, - 9.944376381196328, - 9.95425252526045, - 9.95515496075748, - 9.947042774750063, - 9.96408517672112, - 9.97728797716213, - 9.933897607360066, - 9.907683143923094, - 9.913275038350198, - 9.956374632689696, - 9.972488750488417, - 10.00835901340376, - 9.978799882724369, - 9.945566298970792, - 9.94887787946401, - 9.921855592889557, - 9.946936769022875, - 9.96027813695313, - 9.984574560252303, - 9.981556252639196, - 9.93168687697562, - 9.959107769080427, - 9.943208976593493, - 9.983130934512674, - 9.991327847655665, - 9.926904117524682, - 9.929615806216919, - 9.930091656250505, - 9.954743459521925, - 9.917618641569698, - 9.982853140152166, - 9.999046923018929, - 9.981502205853031, - 9.959711568888665, - 9.969743771488533, - 9.940309265599785, - 9.940352116603545, - 9.935847404187104, - 9.944566076444909, - 9.962694262654601, - 9.948473647184972, - 9.94057678076404, - 9.93043849584482, - 9.938359616159886, - 9.949825566726464, - 9.934161268480805, - 9.926039608303695, - 9.937573765954026, - 9.979293287364685, - 9.983113692725428, - 10.008238291975065, - 9.958208836613032, - 9.971222215892727, - 9.947476349761907, - 9.975715180458872, - 9.967967592704632, - 9.957069981139803, - 9.924078432657469, - 9.944428830749207, - 9.916503103272499, - 9.968804173065879, - 10.002400721112659, - 9.961470952223802, - 9.961634397746934, - 9.968682047836195, - 9.992442529760236, - 10.018137083445524, - 10.002617558851295, - 9.964922914133446, - 9.958049137402451, - 9.974831938588848, - 9.94092849999638, - 9.941308231122793, - 9.988347428227685, - 9.946564122574069, - 9.9382954744194, - 9.924498995037617, - 9.948444640903475, - 9.935417913143887, - 9.94823786792474, - 9.93034248207153, - 9.952609709523957, - 9.969957282777834, - 9.955134967331187, - 9.9196365377123, - 9.89360063519766, - 9.921159327594719, - 9.950870665894936, - 9.953557360035909, - 9.967862087997522, - 9.94993065129397, - 9.955297689302384, - 9.93315168048656, - 9.940077064728369, - 9.96766663490206, - 9.977358181009086, - 9.949878965015678, - 9.968425828931727, - 9.984595687466047, - 9.954097255363537, - 9.957411182040385, - 9.954971249151871, - 9.961711957966479, - 9.97725698112592, - 9.956582979345987, - 9.92705371211335, - 9.957001005955984, - 9.942791869520411, - 9.935553442191631, - 9.909980342987762, - 9.959137044825216, - 9.977562219767506, - 9.932200496981405, - 9.939683333905686, - 9.93317344470058, - 9.9776450601772, - 9.981273446056372, - 9.93890459010877, - 9.957249606529993, - 9.946282877365963, - 9.985289511401874, - 9.971423083389606, - 9.973798889303685, - 9.962067970147338, - 9.957984869761598, - 9.949409858938058, - 9.95257850493505, - 9.942137170769156, - 9.969611201538498, - 9.966077079910729, - 9.90906303397579, - 9.91895050854157, - 9.9090117324731, - 9.912516548482307, - 9.922044116810394, - 9.939452687504417, - 9.930504534734707, - 9.909373794519887, - 9.907480535818259, - 9.931259844131114, - 9.968576399514397, - 9.919605256962205, - 9.905511453739724, - 9.91528133458207, - 9.964955991553412, - 9.948930026111793, - 9.98797572988279, - 9.940096417143366, - 9.951047881516564, - 9.937971475475894, - 9.913276046811278, - 9.947981932881438, - 9.931185663247481, - 9.943160676387304, - 9.981105472033613, - 9.971846041733599, - 9.924402182844974, - 9.952505542472776, - 9.973292291428162, - 9.965664011791407, - 9.970645053709266, - 9.954516276498575, - 9.914838641514148, - 9.909629743057183, - 9.91710409483631, - 9.904976408437722, - 9.929080008640748, - 9.95099058631109, - 9.941167442842701, - 9.920704724764425, - 9.937842369220697, - 9.931377324876072, - 9.936482683669096, - 9.935909512872488, - 9.962708306279412, - 9.947296869102683, - 9.941123436795666, - 9.92208545466528, - 9.937670393477498, - 9.986859368060918, - 9.947254797021792, - 9.953041582236636, - 9.951609154686302, - 9.952344984331148, - 9.976282995657227, - 9.964373935834736, - 9.949968754728998, - 9.972587089037285, - 9.971804833212357, - 9.945676052605162, - 9.954812971224197, - 9.940213427994417, - 9.936103616492423, - 9.979289811538889, - 9.977754261414649, - 9.997654336176343, - 9.93512847591714, - 9.953581038941753, - 9.974609275161189, - 9.943914516541177, - 10.000746954045368, - 9.99358349390995, - 9.961618941900989, - 9.931366331137395, - 9.954621905679426, - 9.970441776995036, - 9.917296781014564, - 9.926726294199721, - 9.95563979786791, - 9.970802623008796, - 9.955979429252807, - 9.90595548003027, - 9.90209418245815, - 9.911069138523812, - 9.931144133547917, - 9.945803659868035, - 9.927356005236685, - 9.90861780711408, - 9.962559610124849, - 9.936740101806532, - 9.95573259419426, - 9.916815056656944, - 9.921867657925322, - 9.891200098055858, - 9.89401401456114, - 9.906265067882954, - 9.903624010537985, - 9.922710598340686, - 9.925904903117686, - 9.917747479009861, - 9.928714438204583, - 9.908697925888905, - 9.959686952807026, - 9.941573491573424, - 9.93802065761271, - 9.940789890168329, - 9.925615208871607, - 9.938409742604641, - 9.947876902705495, - 9.969140688602668, - 9.968048142318777, - 9.961876317454472, - 9.958939473299568, - 9.95996624284517, - 9.944902049956756, - 9.966576123126965, - 9.980660913523119, - 9.934940266056623, - 9.920479861768703, - 9.946018013788718, - 9.916748151406296, - 9.94182377983282, - 9.927985856754592, - 9.958918010928537, - 9.94699187883815, - 9.947761804114574, - 9.967507211378466, - 9.94965272569558, - 10.001196953540656, - 9.949102769488704, - 9.943639522992118, - 9.910953914837178, - 9.931206345989477, - 9.956743943855047, - 9.991360772247429, - 9.939496251057683, - 9.980707245746352, - 9.958086455352845, - 9.969348121630304, - 9.95338997477472, - 9.964161853877703, - 9.941826051652535, - 9.944201537513925, - 9.96065072520341, - 9.949654972238024, - 9.978281899828396, - 9.936599386131041, - 9.929270508064644, - 9.91310487558911, - 9.94318922499172, - 9.973319670591815, - 9.965084528587948, - 9.958669518585248, - 9.997896114489604, - 9.944681458089825, - 9.956722961851076, - 9.946768843007865, - 9.956500804022008, - 9.990293225982125, - 9.965600268276454, - 9.949785960563524, - 9.979007253949815, - 9.99853454694612, - 9.982999135362517, - 9.939638776447863, - 9.929456603721698, - 9.921923634300086, - 9.942194757832102, - 9.953306418139846, - 9.973976230886626, - 9.960464317217363, - 9.939577713617597, - 9.977476758480934, - 9.939409990216788, - 9.953637387214068, - 9.928894780468628, - 9.970875271267937, - 9.943317713803351, - 9.969275279590963, - 9.914192231248082, - 9.961136891691725, - 9.945851169436134, - 9.927811704712425, - 9.929234136933697, - 9.927954877211008, - 9.931268135113541, - 9.918781866148986, - 9.909906223709521, - 9.928265933310588, - 9.87631160798306, - 9.906697765175053, - 9.925340612313388, - 9.917437385639936, - 9.95828956761874, - 9.962331125325795, - 9.989609027393024, - 9.977911776660275, - 9.934730575874344, - 9.939994279034963, - 9.927615333910126, - 9.96750446972247, - 9.968437033659018, - 9.954323629401086, - 9.93617252224718, - 9.960050343653917, - 9.964879905932987, - 9.941546871416268, - 9.945369837015276, - 9.942915153509176, - 9.995130103042014, - 9.997899616514164, - 9.97180508527011, - 9.949963379591841, - 9.937646464044716, - 9.924071586629132, - 9.962274439263682, - 9.952229625152826, - 9.948034768366789, - 9.919521649792493, - 9.958930881383809, - 9.953824418197463, - 9.931787128063778, - 9.930180647979745, - 9.940461082874489, - 9.964811085302664, - 9.96065260677059, - 9.961002902111579, - 9.94799590282333, - 9.933975323121421, - 9.938492292101644, - 9.942440264978437, - 9.972234521660267, - 9.99507196636204, - 9.975225668234552, - 9.961601270831919, - 9.948900455271994, - 9.89308739699078, - 9.957949739916954, - 9.94158598209467, - 10.01608386096839, - 9.954429005306032, - 9.946450730248165, - 9.927789128928254, - 9.922602666626272, - 9.97663391162057, - 9.947399076658666, - 9.94842478212677, - 9.948321649204384, - 9.960828593114947, - 9.965370393205982, - 9.931438474271536, - 9.972874293430324, - 9.970979985638996, - 9.947555181426006, - 9.927856116668057, - 9.970649731338332, - 9.938964435969005, - 9.92063251941483, - 9.942822065302801, - 9.928452898060366, - 9.917576130983145, - 9.926873154609186, - 9.962241698393694, - 9.954253587413309, - 9.911029320202323, - 9.93373900911995, - 9.979770468297898, - 9.910343071818511, - 9.927291323054451, - 9.926250915282218, - 9.957076122724539, - 9.977587344382632, - 9.97825416260959, - 9.984691788146362, - 9.9571434233503, - 9.938749007487013, - 9.934984706523089, - 9.983623019172349, - 9.939913008831262, - 9.918162893438234, - 9.950069915547648, - 10.016481200195669, - 10.009558812320508, - 10.024681595134263, - 9.990746379140933, - 9.937363402541326, - 9.9590482735411, - 9.993087186472039, - 9.968322003205468, - 9.978506733146633, - 9.971335292860276, - 9.917574716623292, - 9.943362013752857, - 9.969577293459789, - 9.966201136248184, - 10.021068621102918, - 9.979697952281466, - 9.963480593743979, - 9.921604862863516, - 9.97062487108695, - 9.955476370809592, - 9.933641825503868, - 9.92758198841282, - 9.938942597337324, - 9.912701642805978, - 9.955487786885891, - 9.959086943191231, - 9.937486527200754, - 9.950361255937613, - 9.967538728594372, - 9.946174152862142, - 9.943661152963367, - 9.967497251228309, - 9.972611163790594, - 9.946695128330354, - 9.961931264178997, - 9.956517823698638, - 9.976110127055444, - 9.984003743241557, - 9.958352400815345, - 9.986293706553393, - 9.945249026441532, - 9.944891551297381, - 9.92170226453205, - 9.927141138382014, - 9.971135188205063, - 9.919735982469094, - 9.934275179141622, - 9.956230672145868, - 9.931320730246828, - 9.931690410264158, - 9.976127144140136, - 9.979889476220892, - 9.974646208433779, - 9.951092986089929, - 9.954714210636835, - 9.963525998341419, - 9.970109428392668, - 9.962127938796188, - 9.925345664238751, - 9.936845285109307, - 9.944107042204209, - 9.946423816545595, - 9.91521179399111, - 9.928059372971507, - 9.917863571372369, - 9.918439399989069, - 9.967450838474534, - 9.996454307683276, - 9.966002284720695, - 10.001812494278768, - 10.006934761426852, - 9.950709988754507, - 9.944360527626337, - 9.949807827727053, - 9.945228232317312, - 9.967544171010642, - 9.916859144169516, - 9.934375824478844, - 9.926673892092948, - 9.965484203949849, - 9.955008236453338, - 9.96648448292567, - 9.952482700883577, - 9.959497325969277, - 9.9699677839047, - 9.952563334472975, - 9.978028376552546, - 9.916893682526617, - 9.918065096047206, - 9.905101566031517, - 9.972523958091058, - 9.967200880880029, - 9.951820322827691, - 9.96446188528207, - 9.97046215598869, - 9.954407492384506, - 9.98006142799111, - 9.98232544697641, - 9.972169976497819, - 9.9142920200885, - 9.975445709817528, - 9.970001316755713, - 9.980289958518902, - 9.969972416864275, - 9.9387586873039, - 9.969094667270523, - 9.953364792587232, - 9.924436286844115, - 9.87391697643617, - 9.904705074014709, - 9.964020267172303, - 9.95494291180749, - 9.963218309160185, - 9.958947164759852, - 9.975991429799942, - 9.977321935172014, - 9.980022564412065, - 9.94277557350453, - 9.954810025535823, - 9.948853798833028, - 9.986809724628054, - 9.972075148619377, - 9.957044033066692, - 9.936836405450594, - 9.925507423255851, - 9.943457650595585, - 9.950228862907782, - 9.985327704224353, - 9.988534528729959, - 9.96505066548419, - 9.960264624461116, - 9.95622874424155, - 9.948494195372481, - 9.930546330090541, - 9.949554818121873, - 9.953331341992453, - 9.982115831076978, - 9.996764239596354, - 9.915895832453392, - 9.958967222450777, - 9.946925906080093, - 9.940445500587153, - 9.91786157568381, - 9.942611805055341, - 9.952861782345936, - 9.978492491443836, - 9.952330151668942, - 9.974537934457121, - 9.991947024760854, - 9.97014836046392, - 9.964417326489217, - 9.97757254432219, - 9.934738073110928, - 9.969089219073552, - 9.930379357048064, - 9.953476994288721, - 9.946557214298416, - 9.983088324575814, - 9.982450847805609, - 9.933299207471526, - 9.947708056385872, - 9.952335115983193, - 9.919698118334102, - 9.962815588959032, - 9.929588945861495, - 9.92026293615634, - 9.943042540936007, - 9.987933207467645, - 9.958203117514103, - 9.936997117133327, - 9.90770846668682, - 9.940080461117061, - 9.928389281720554, - 9.94544983466293, - 9.943504271046576, - 9.941468618747471, - 9.938704385871198, - 9.95871772356963, - 9.97536985485524, - 9.964485530752142, - 9.925829589281125, - 9.9287130610943, - 9.924546688308093, - 9.903506445244938, - 9.941005219272213, - 9.951278387316371, - 9.907130609390977, - 9.91158487404636, - 9.907111616816342, - 9.946433589635529, - 9.95212358560042, - 9.946436433547493, - 9.933372852550805, - 9.930739634846189, - 9.936375911085522, - 9.941098071138107, - 9.958513010806582, - 9.918664398618796, - 9.94769994767044, - 9.989924063566834, - 9.979659906650204, - 9.9688054667139, - 9.931506450313352, - 9.976712281314256, - 9.938811381792805, - 9.955786011233293, - 9.918114224042723, - 9.902647981589643, - 9.949486250539021, - 9.951004609577748, - 9.951015323835685, - 9.95365716942672, - 9.94543243133184, - 9.902316325580193, - 9.940316472208341, - 9.930981630141115, - 9.953319295258686, - 9.955315612446594, - 9.894064523813572, - 9.909350196100855, - 9.909494126721857, - 9.912795598263015, - 9.917379938209463, - 9.932788805045499, - 9.91752857421363, - 9.940374333072006, - 9.963857517575216, - 9.94640851610471, - 9.95452729798187, - 9.981815987255818, - 9.949825704252437, - 9.962232485852798, - 9.95854194272891, - 9.891017562288228, - 9.923999456336794, - 9.926787850010575, - 9.931019474228687, - 9.970893436005667, - 9.962627114428516, - 9.932339790215725, - 9.927242206415075, - 9.941996978035055, - 9.909656752641345, - 9.943124778481767, - 9.952117314024935, - 9.935364681916557, - 9.961810163858521, - 9.951881123423249, - 9.955358703164832, - 9.939237148503908, - 9.902079548409564, - 9.928395973304834, - 9.939417174744214, - 9.967319077560058, - 9.930571678451747, - 9.948333249951755, - 9.946079824968196, - 9.940229877507077, - 9.96556247634493, - 9.97774788726181, - 9.954357639661604, - 9.958498699921364, - 9.922168693876422, - 9.896539824295735, - 9.898465983254543, - 9.899754447783444, - 9.97284059489982, - 9.966551744573488, - 9.945409801565999, - 9.961183060137545, - 9.965244078324009, - 9.943220835320627, - 9.955837585464751, - 9.930353626986747, - 9.952388678477346, - 9.9464104024401, - 9.947184084699927, - 9.959842714698144, - 9.94563920914098, - 9.945716127233874, - 9.936108421520606, - 9.93116005169094, - 9.912346338054189, - 9.908175697873814, - 9.89928239256356, - 9.911345391341161, - 9.954711742711199, - 9.978866084054749, - 9.980715909950664, - 9.969345620630088, - 9.95015451576627, - 9.918033036319633, - 9.936572426832795, - 9.948023436431944, - 9.91191326688223, - 9.91166065318685, - 9.878386603014754, - 9.94099249587123, - 9.955979348540222, - 9.945572433938013, - 9.987310250576309, - 9.970873964295064, - 9.94049887146194, - 9.95639252885185, - 9.949482109438987, - 9.91537836288029, - 9.952014958296992, - 9.947973260015308, - 9.932298286678465, - 9.996131969986413, - 9.963030408242929, - 9.957054089290947, - 9.98343460191071, - 9.977641276360204, - 9.95065197276601, - 9.964576006131644, - 9.951857771006429, - 9.919977558627378, - 9.970747760793014, - 9.937892137138101, - 9.946254692182082, - 9.899653723258847, - 9.904337696688671, - 9.934272160454071, - 9.95070640813381, - 9.981251971652476, - 9.941454941986574, - 9.973431284561823, - 9.955763535938145, - 9.930998247467423, - 9.96673768392061, - 9.976180201028052, - 9.959294021370482, - 9.936638590390833, - 9.962482035935434, - 9.953735695521896, - 9.966838941637619, - 9.93055306740962, - 9.957964345190616, - 9.963805354404556, - 9.934308555461186, - 9.97966354627097, - 9.953698292871554, - 9.903877099684243, - 9.897235841941407, - 9.962220329528169, - 9.949567443531668, - 9.945613522790154, - 9.950752814227716, - 9.98959969400884, - 9.932374845830592, - 9.961915892135021, - 9.93003567592565, - 9.962872468230284, - 9.925407342041504, - 9.962078284818277, - 9.983961426221615, - 9.958744199724144, - 9.959280261750493, - 9.954298972885363, - 9.95572281064191, - 9.947343217978801, - 9.958829452594298, - 9.989144814523211, - 9.930845555506297, - 9.912535035970734, - 9.948806829899258, - 9.952503999777859, - 9.959786309969642, - 9.979477776342897, - 9.981386876814446, - 9.949657390609023, - 9.945889050353019, - 9.905042402663106, - 9.933070127632691, - 9.88358297186078, - 9.920773535823873, - 9.91523130531598, - 9.953558387547922, - 9.921777216366628, - 9.946995669021765, - 9.929554282294129, - 9.955969546782514, - 9.974079925051491, - 9.964117743016201, - 9.99341614416185, - 9.983716031451703, - 9.972867337478334, - 9.989487205176038, - 9.989803107660695, - 9.968359975823619, - 9.992677313072667, - 9.99354587811669, - 9.96090001319069, - 9.988003586495255, - 9.986338909194362, - 9.96073999653252, - 9.925259308371519, - 9.939488315463489, - 9.922067970175739, - 9.957565834327195, - 9.968477409832802, - 9.986669493654478, - 9.957731412724145, - 9.918945427715418, - 9.930221473742098, - 9.934552108545535, - 9.98277026232032, - 9.959389324392248, - 9.953091026545682, - 9.937126936560954, - 9.959109897184224, - 9.98639261417432, - 9.986161736184386, - 9.957353814594063, - 9.934615154494434, - 9.930938237223106, - 9.96410400078236, - 9.945244020010517, - 9.934764895609078, - 9.988406275275889, - 9.93275107807641, - 9.9325981436578, - 9.974407415046874, - 9.98236258058087, - 9.970600550217233, - 9.93738484461217, - 9.968811408017961, - 9.928499572364773, - 9.968210638845505, - 9.936245437934952, - 9.944003780448089, - 9.933455489112266, - 9.97554189472665, - 9.965986526476643, - 9.953412717132723, - 9.934196865761475, - 9.963972340672951, - 9.976515449576267, - 9.949385680433608, - 9.932980073293235, - 9.91866322722688, - 9.955108693294273, - 9.961548501669482, - 9.987826147746127, - 9.930385663760015, - 9.946424784115097, - 9.908329926119658, - 9.916515994615215, - 9.900710598160874, - 9.946473899304376, - 9.97520692992772, - 9.939635986289854, - 9.954241682145929, - 9.960623092524484, - 9.936062638999056, - 9.93430124302755, - 9.914115110143948, - 9.964966626187136, - 9.975593680824968, - 9.960970968773227, - 9.905106870836638, - 9.890180905200584, - 9.927337468098871, - 9.919962904812035, - 9.910968352416337, - 9.94438516699804, - 9.98898755439969, - 9.971243123237274, - 9.958839012640691, - 9.935508780102083, - 9.905875365218566, - 9.931336784726957, - 9.929161051333676, - 9.915966991996024, - 9.915744868575326, - 9.94253516959697, - 9.936478998059481, - 9.89525812853158, - 9.948429515462088, - 9.961279066717484, - 9.962587550509802, - 9.976202064244099, - 9.97878676707457, - 9.949652346123974, - 9.954405430699635, - 9.923761315851504, - 9.932911105971144, - 9.939134977554948, - 9.927036372101629, - 9.914590552081892, - 9.929484149659816, - 9.952886249157094, - 9.97790659031227, - 9.980104445355552, - 9.926999684887399, - 9.970993244717274, - 9.97205555345866, - 9.945556437068737, - 9.952210372188409, - 9.933603408626315, - 9.916153196184904, - 9.950477690225304, - 9.971828048245662, - 9.94987558962984, - 9.970740690793036, - 9.96773634450648, - 9.964570422817834, - 9.961859997193105, - 9.901883301793156, - 9.912530180799424, - 9.935956330426592, - 9.974142288774994, - 9.961068672737783, - 9.95821558988274, - 9.961814548343986, - 9.879150758256266, - 9.929582205534793, - 9.911443901780213, - 9.930163156633554, - 9.964658269272132, - 10.023461172227679, - 9.975642822810403, - 9.962886404022882, - 9.952660606911628, - 9.923068911390647, - 9.94620221744662, - 9.942776125482634, - 9.962803610809171, - 9.944300664415422, - 9.943397132272349, - 9.902700807096666, - 9.94589042077237, - 9.916562174294738, - 9.909084997843227, - 9.89510847147565, - 9.903156299093503, - 9.932729896981074, - 9.965499826071929, - 9.97340720860692, - 9.975928918630196, - 9.923211864989344, - 9.908023293977054, - 9.9188150841398, - 9.869438457065485, - 9.922763330377935, - 9.942313294362332, - 9.911920256853657, - 9.88959191981128, - 9.890797446563028, - 9.91956579399621, - 9.939846793043372, - 9.945262021862616, - 9.940944889353556, - 9.93521478229758, - 9.945518269712034, - 9.956801719466482, - 9.959972933159671, - 9.945737881889968, - 9.932306369583653, - 9.906392509728157, - 9.929166359706384, - 9.968210628917971, - 9.939790391257597, - 9.969720072833642, - 9.981298766013351, - 9.970642395373346, - 9.979581602421048, - 9.96475789681905, - 9.971764209711086, - 9.963120591089135, - 9.952243538525645, - 9.94650033354137, - 9.929417025076397, - 9.943694041883607, - 9.947984623294131, - 9.978499857871784, - 9.960406341271371, - 9.98337681453299, - 9.961437130373472, - 9.934766278443506, - 9.946975961844103, - 9.951882552136084, - 9.952203433192862, - 9.950670173648613, - 9.899553678932614, - 9.920000568739324, - 9.945022614576105, - 9.944332168815604, - 9.948402939761705, - 9.950587615583817, - 9.962355012413965, - 9.985787786441017, - 9.996551417024781, - 9.960113093864777, - 9.950645547398679, - 9.96352717690099, - 9.957915868880594, - 9.956394336132563, - 9.957543742606317, - 9.954950289066625, - 9.946847643521382, - 9.953063177470263, - 9.947017789175032, - 9.922410227339752, - 9.958874306768132, - 9.941251086362344, - 9.972100459892083, - 9.958698995869028, - 9.93767811957942, - 9.969288765772509, - 9.917785395824234, - 9.924023049287163, - 9.955687875485598, - 9.92413289527381, - 9.912571216817135, - 9.94368472033582, - 9.951340119014924, - 9.946059313096937, - 9.914380233467922, - 9.960285083118382, - 9.933694457326732, - 9.952149871677275, - 9.949347762707925, - 9.982079074075886, - 9.917326668191459, - 9.905872999374248, - 9.943918683090518, - 9.932605568710056, - 9.961362684269332, - 9.935489742357632, - 9.901172651461236, - 9.906169338131708, - 9.900708277795422, - 9.9632763252479, - 9.933038586029783, - 9.912603054435266, - 9.96895005051215, - 9.949245984626117, - 9.908256496291132, - 9.977641612703025, - 9.949912632190452, - 9.944088933127192, - 9.988576412158414, - 9.968012023972694, - 9.921913839501705, - 9.943142105523068, - 9.918187575143419, - 9.959212392877017, - 9.973152690528748, - 9.975938207878077, - 9.942124406741508, - 9.933680473938313, - 9.973091043194609, - 9.982125003984153, - 9.919298221589871, - 9.954854195975162, - 9.976618375857438, - 9.94929796016038, - 9.955089425573833, - 9.925900376876571, - 9.941312621638502, - 9.930686642103069, - 9.907158356215213, - 9.916692909132358, - 9.932384492376155, - 9.958743253061613, - 9.959782830422919, - 9.947707365130157, - 9.970196204740612, - 9.934829403178792, - 9.959157071709514, - 9.894351496038514, - 9.917477785621102, - 9.88905960754998, - 9.918834991477565, - 9.955997772008214, - 9.962675607383456, - 9.947937495700211, - 9.931467333891916, - 9.917109361058678, - 9.951717067053472, - 9.956879858085237, - 9.920049088737766, - 9.919426231884223, - 9.963585665852705, - 9.961707265337804, - 9.982642317100366, - 9.928620838323397, - 9.91714198059471, - 9.95181937508032, - 9.941738015908163, - 9.955851985435034, - 9.939020291182747, - 9.950230906863922, - 9.957541827092408, - 9.975635851781933, - 9.951975088619092, - 9.983610183647663, - 9.971786086120618, - 9.952242520009724, - 9.94648039574855, - 9.90423208883673, - 9.911062188895981, - 9.982283417317294, - 9.94986837283855, - 9.940238210638636, - 9.947708183174857, - 9.948652483491728, - 9.923085677639067, - 9.909202926681502, - 9.911287484811577, - 9.910593909699845, - 9.904001847866294, - 9.950877766256927, - 9.97819493704169, - 9.963933219582778, - 9.979067306353194, - 9.929778727571826, - 9.94131949370237, - 9.983229679789023, - 9.984901254634803, - 9.99762693331218, - 9.999531318721198, - 9.951928887013406, - 9.93764583151472, - 9.920268356429311, - 9.957610837370334, - 9.931742050181004, - 9.956775677712667, - 9.94964927648074, - 9.958878121093722, - 9.950458176543167, - 9.930852152422501, - 9.933314285032742, - 9.947220852077166, - 9.912983016686006, - 9.878915066487068, - 9.923850970164636, - 9.964530789567918, - 9.893993469201074, - 9.924443160454773, - 9.919566226850115, - 9.933291885414562, - 9.958492794056346, - 9.942043876902376, - 9.911858808823313, - 9.861252676621469, - 9.8239794725381, - 9.860304377064509, - 9.885653391068068, - 9.893309209980412, - 9.911104949644429, - 9.882242381959234, - 9.843265627943081, - 9.831078446309482, - 9.84612987819225, - 9.864491027527333, - 9.879372728272937, - 9.859309610195234, - 9.839792531367438, - 9.859704233512897, - 9.857565328787476, - 9.884725600096035, - 9.894921108626304, - 9.912276003718118, - 9.92209312791802, - 9.923750002418439, - 9.903719067111371, - 9.914636980623268, - 9.955728460206343, - 9.964880557840965, - 9.956063937969263, - 9.968668714685217, - 9.944070198665768, - 10.003932312057348, - 9.957128513870892, - 9.97185062835824, - 9.950813479715524, - 9.944919553306354, - 9.944842136681762, - 9.957690330254351, - 9.929701809657264, - 9.934518695324405, - 9.929193151294363, - 9.948012842630943, - 9.916533122941557, - 9.90485395721477, - 9.938354015390981, - 9.967346359254789, - 9.970102564729372, - 9.914513501879487, - 9.97226077925589, - 9.938397228765064, - 9.942975563996669, - 9.965740921453543, - 9.987957179697691, - 9.960937604348018, - 9.928721006229837, - 9.94053520258658, - 9.9417247002603, - 9.953414698421316, - 9.98671442039485, - 9.970274639632704, - 9.942391762262908, - 9.940405125629619, - 9.974967931188555, - 9.963350605183324, - 9.988569868196336, - 9.990074129398595, - 9.954641790262723, - 9.963999459003315, - 9.95896576989073, - 9.937567931420594, - 9.963723816003878, - 9.959075051908878, - 9.893252339057987, - 9.93028332171366, - 9.965705992823851, - 9.972572740757931, - 9.964972699097618, - 9.986131449505828, - 9.936235767414551, - 9.948863885578175, - 9.904651988402433, - 9.915515110117745, - 9.946796272675542, - 9.917022323323431, - 9.912695856188368, - 9.900565341784487, - 9.910672054612204, - 9.96188032178315, - 9.940309857743866, - 9.945427348729522, - 9.973258552165015, - 10.015515612482242, - 9.955555470599787, - 9.946639888171916, - 9.955915754626693, - 9.978166344981547, - 9.967746869112041, - 9.983937202360867, - 9.958381872081791, - 9.93760510641761, - 9.95026828526336, - 9.937841451638521, - 9.929494992996624, - 9.952618573079441, - 9.921674197583219, - 9.920689372427681, - 9.95509543316306, - 9.985061944086189, - 9.960884293805826, - 9.92486672812625, - 9.91856624862116, - 9.957414096178434, - 9.987556866212696, - 9.962714597485975, - 9.980437756890142, - 9.945708825974586, - 9.940610520845665, - 9.931116404967831, - 9.95022034788811, - 9.96127074729879, - 9.961348389550334, - 9.9573839889926, - 9.93437364181888, - 9.93639970815216, - 9.947145738391017, - 9.957822707553035, - 9.95215051495369, - 9.97423464434334, - 9.978909303743631, - 9.99370960592195, - 9.992096402762979, - 9.984898744012533, - 9.912529690478733, - 9.928129598506567, - 9.931952960716279, - 9.94631353875913, - 9.938721422843352, - 9.9344060855786, - 9.933029388408311, - 9.939392509770299, - 9.921711619645354, - 9.902237467477875, - 9.924310016639765, - 9.918549591585705, - 9.909471598769162, - 9.913639008132801, - 9.91488273584458, - 9.918092432066658, - 9.901591124950494, - 9.945993307070914, - 9.980355211635963, - 9.989407293319086, - 9.967307261364715, - 9.960965848107428, - 9.944619641043678, - 9.925747957160574, - 9.956703370906137, - 9.955749426028483, - 9.910822569519363, - 9.962612471293559, - 9.96743739794588, - 9.921864743630039, - 9.927415548300894, - 9.959233291383306, - 9.973155153597302, - 9.964038420156962, - 9.97358594624713, - 9.948982448466921, - 9.960615856433275, - 9.964514473843376, - 9.959662106278621, - 9.964905383275601, - 9.922388953722002, - 9.939394151772296, - 9.958585183163244, - 9.984072890092921, - 9.981641341225428, - 9.947503617497308, - 9.945182887818255, - 9.926562746130728, - 9.963338430012891, - 9.929687162096918, - 9.976804500794987, - 9.956438771937401, - 9.930856558858297, - 9.923824788390672, - 9.96402721054885, - 9.942112982698461, - 9.915882714563729, - 9.944619396027658, - 9.973498625934086, - 9.955528396930703, - 9.959619807622955, - 9.93168477111365, - 9.92005228617086, - 9.991469576079682, - 10.001752541121947, - 9.989281513236454, - 9.99408068938717, - 9.985785859560213, - 9.974532128100272, - 9.969467047061102, - 9.949946710257795, - 9.954089334893615, - 9.941025449048858, - 9.950875200540303, - 9.956703896797082, - 9.907806707542537, - 9.91288501102945, - 9.920800764137686, - 9.967707454286826, - 9.956703781158426, - 9.949104237713119, - 9.973629174754645, - 9.925550691032203, - 9.912979875886048, - 9.95994024862912, - 9.967009894476853, - 9.98915529618705, - 9.951300690585224, - 9.959491006926092, - 9.940756259481518, - 9.973871116350589, - 9.945684298177506, - 9.947583134637036, - 9.953615014814366, - 9.954099613558228, - 9.918048448607859, - 9.903275971337841, - 9.926310350735143, - 9.92073758298326, - 9.937110328828677, - 9.930400848156163, - 9.930968591290721, - 9.950170181282797, - 9.949933297830645, - 9.95063996318681, - 9.933252148363657, - 9.96492319874502, - 9.944901012920708, - 9.950715550065048, - 9.963026889377748, - 9.890653646128337, - 9.928315857137736, - 9.8952498864123, - 9.915518635186471, - 9.920102429305972, - 9.916196823120403, - 9.943541377165793, - 9.962913425586608 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 1", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 9.962913425586608, - 9.975642604212574, - 9.972565179320402, - 9.940082743589347, - 9.953570714409272, - 9.944734593068677, - 9.984758758408061, - 10.00695187507671, - 9.928273840091304, - 9.935938728513745, - 9.964915729830697, - 9.965153839440354, - 9.944331651125148, - 9.921647486127881, - 9.925711723908103, - 9.960111543647807, - 9.965544104892818, - 10.003203023787036, - 9.942450805881395, - 9.928710094800865, - 9.929486050919092, - 9.931394551981349, - 9.948771043144978, - 9.91934831622071, - 9.939058444205362, - 9.934512796412447, - 9.977179452955399, - 9.944274019646704, - 9.967274649016135, - 9.93052119081981, - 9.9639709062564, - 9.957241105733903, - 9.963315843977988, - 9.958304862855808, - 9.967747153609517, - 9.90478750245824, - 9.941684778051089, - 9.960964303598393, - 9.957480105207027, - 9.984477623516957, - 9.953316344574398, - 9.955301564416594, - 9.896960198151211, - 9.856353271133942, - 9.951279229464406, - 9.904410258777604, - 9.949683028442912, - 9.957882757873493, - 9.943707146215466, - 9.951417024582506, - 9.950509168817765, - 9.964659275146015, - 9.936093405579996, - 9.942746399099878, - 9.932256082858334, - 9.959689252963429, - 9.975620729525364, - 9.958397729459636, - 9.969622444449142, - 9.979867435029488, - 9.96872287802659, - 9.985662026140991, - 9.98056670474807, - 9.947802747778713, - 9.958375687192662, - 9.940847581960666, - 9.94517691800743, - 9.930387004053216, - 9.939050322320607, - 9.946317019119503, - 9.940811644701842, - 9.936133066686466, - 9.93301095130989, - 9.951514756914206, - 9.95422433155882, - 9.929199596702823, - 9.932353905445057, - 9.94630793516456, - 9.94820662739933, - 9.963397770996249, - 9.956802573217507, - 9.975371922618589, - 9.993762888196127, - 9.991433908651038, - 9.964329195532692, - 9.918176707924117, - 9.919059891444787, - 9.920308771557794, - 9.930597222074248, - 9.96096483484826, - 9.91454759660251, - 9.956730011723185, - 9.956209953652422, - 9.923893651176197, - 9.944494407779196, - 9.94426103173074, - 9.914484539168747, - 9.896030135992412, - 9.910727229461866, - 9.916784452244581, - 9.962749242680363, - 9.90673383781924, - 9.932858283105967, - 9.958901643799958, - 9.939082697303286, - 9.94747985326334, - 9.931360992177812, - 9.972784922741848, - 9.932270129135668, - 9.943188688364469, - 9.945192671022102, - 9.944156823346525, - 9.972348794097071, - 9.968736011098533, - 9.988556116748555, - 9.979255154154984, - 9.945872931671854, - 9.95156731954278, - 9.943547399805288, - 9.961906957510957, - 9.956333171153805, - 9.99877864062969, - 9.929501118078763, - 9.928659459085871, - 9.969027612111773, - 9.960204966371538, - 9.979968107924941, - 9.951176197440416, - 9.96305419090844, - 9.9717892007071, - 9.980001543474096, - 9.987297480589113, - 9.960058103193294, - 9.977647579009895, - 9.957520982410108, - 9.977556875361117, - 9.9780968935468, - 9.948598740847173, - 9.928461297548667, - 9.930500299087848, - 9.957778988996631, - 9.959147159181963, - 9.961751311204258, - 9.982712416942606, - 9.989372974059169, - 9.98541126845286, - 9.964741110551369, - 9.980745741776248, - 9.961352315565899, - 9.956950294344324, - 9.955927409010055, - 9.965972033006139, - 9.967457440973337, - 9.945028900670238, - 9.929450961281463, - 9.940811365573062, - 9.95843483797369, - 9.957819304766952, - 9.952429696755598, - 9.946827794791567, - 9.972475701775616, - 9.952920159472676, - 9.976813815329667, - 9.926764744862895, - 9.91241287632654, - 9.889626657975635, - 9.931946159294274, - 9.917801855886902, - 9.936056308021847, - 9.906330062541018, - 9.938066625302442, - 9.9285241193851, - 9.920735301387069, - 9.998112482222815, - 9.958535115863832, - 9.94516611535778, - 9.938805944088806, - 9.936207881100277, - 9.939143939764184, - 9.942827476460764, - 9.927940094031829, - 9.953821788888966, - 9.95299658243605, - 9.966717667089519, - 9.977832115572914, - 9.96941965967454, - 9.940686771646707, - 9.934633160618416, - 9.918091349855345, - 9.941394753360214, - 9.946395738871164, - 9.985933613588534, - 9.9788278141018, - 9.938775167695846, - 9.957484278936017, - 9.933991602038475, - 9.958310041009481, - 9.956354613553264, - 9.934825263977064, - 9.917926722539224, - 9.955470107319659, - 9.993600132874317, - 9.962968082080216, - 9.941337583302424, - 9.928344679621796, - 9.92467398173332, - 9.9425438722827, - 9.951102399609411, - 9.95657697496764, - 9.942280580222839, - 9.930715276985431, - 9.949536735365644, - 9.961451116839555, - 9.986397823095796, - 9.991785380602677, - 9.95233970319183, - 9.944361187799412, - 9.937972321274614, - 9.968098477403409, - 9.978208484654898, - 9.97575800765609, - 9.940017639334918, - 9.95026976451918, - 9.942550229631898, - 9.942158528586976, - 9.938596879001496, - 9.952793097912437, - 9.968522157449883, - 9.986384729195022, - 9.953379136682473, - 9.936550206845931, - 9.934920743991668, - 9.940700702895466, - 9.903336783586928, - 9.909442223540621, - 9.90240609635907, - 9.911741508006909, - 9.904573261601426, - 9.947673342643323, - 9.962702853111955, - 9.96685616893421, - 9.966470816670919, - 10.002485293412265, - 9.975261796922366, - 9.976252646962234, - 9.960758938785697, - 9.950205935022025, - 9.944911914526257, - 9.971366391636453, - 9.94590363597515, - 9.974030266714207, - 9.999584633648055, - 9.951325385837245, - 9.980031449692392, - 9.984207743327966, - 9.964417713531493, - 9.953650159238009, - 9.98472736794662, - 9.943673917593406, - 9.993074153086871, - 9.963624009276563, - 9.952625058179812, - 9.980279762034305, - 9.937957862195164, - 9.94341881499078, - 9.980766339051094, - 9.964897041342823, - 9.990015769829153, - 9.945151106028526, - 9.894859714515382, - 9.905778112859037, - 9.936392153426535, - 9.905093582158512, - 9.920862202655304, - 9.935079023747903, - 9.932731056004116, - 9.962932680830619, - 9.950680680094832, - 9.919896303000684, - 9.91172592190619, - 9.92075884470875, - 9.950031014613554, - 9.96160437493816, - 9.939441130067873, - 9.955489591385627, - 9.946716790051498, - 9.957164492698583, - 9.942062171382133, - 9.95584885187985, - 9.944122845456167, - 9.943572330814757, - 9.919484038171987, - 9.98235523855528, - 9.96282207016087, - 9.949510401673704, - 9.945874078602525, - 9.94294057980604, - 9.970517681674723, - 9.949757464188307, - 9.960219141645139, - 9.98123319203786, - 9.977792413482447, - 9.9733720358573, - 9.969891006742412, - 9.907018781335305, - 9.960756410767251, - 9.955157438136196, - 9.96432848776872, - 9.938146261208585, - 9.944608911243128, - 9.949000591850826, - 9.963853640837943, - 9.942049568853644, - 9.94901383709252, - 9.956665370627977, - 9.946136776271441, - 9.928348439677688, - 9.920137610389208, - 9.936903300346101, - 9.925675242995517, - 9.948847800728538, - 9.987072030573492, - 9.946106607817907, - 9.972973786025813, - 9.974874446860829, - 9.96459457610131, - 9.94326323553391, - 9.9289201938898, - 9.9339362806372, - 9.951203286293293, - 9.907902632446802, - 9.88141512583591, - 9.859550907268986, - 9.888474774109094, - 9.933753826680102, - 9.9473229279569, - 9.926682439740695, - 9.958664642611355, - 9.94502781182715, - 9.913622252575278, - 9.91492941089189, - 9.948432520498102, - 9.9186644434293, - 9.946597043639239, - 9.965865850592687, - 9.951359004466612, - 9.94759020402472, - 9.94600798651199, - 9.992338006463674, - 9.961545645535546, - 9.960244058102532, - 9.980684041157208, - 9.940867793975661, - 9.996132601617987, - 9.988210472274874, - 9.953207824382098, - 9.946468012117538, - 9.934096337804029, - 9.937158954415084, - 9.94941710027016, - 9.920146248434538, - 9.921376032626876, - 9.92565959419597, - 9.924403195863466, - 9.958165718092143, - 9.983929146345858, - 9.984437713460915, - 9.951185511819954, - 9.965238498845103, - 9.957998096498779, - 9.935195836393705, - 9.900520255072372, - 9.930633112537267, - 9.96318047129178, - 9.99456302746531, - 9.960859967599438, - 10.003997244502118, - 9.970157802287094, - 9.943462319860291, - 9.967787847935172, - 9.98552704537974, - 9.971917555616352, - 9.929280912780824, - 9.903348097606536, - 9.956310764436788, - 9.941808526296683, - 9.965318396170716, - 9.998909221239145, - 10.012976888502395, - 9.986064594461915, - 9.93930756227495, - 9.966144649538327, - 9.987247948956835, - 9.972490636135415, - 9.97496854112185, - 9.967112261798576, - 9.986293520123333, - 9.960631920923358, - 9.899661085434667, - 9.944698805189754, - 9.945206736184826, - 9.971723012450866, - 9.95066434636915, - 9.958567781418543, - 9.945776353116317, - 9.967595553552323, - 9.959755353378915, - 9.915868879784533, - 9.941192689709556, - 9.892397685063395, - 9.919248852459887, - 9.985479087631598, - 9.968286629154292, - 9.954843876600618, - 9.944304942104617, - 9.993016715671411, - 9.974984393550246, - 9.969944032714842, - 9.954191976895538, - 9.943776715283931, - 9.915336200434234, - 9.96497376816435, - 9.987102380745936, - 9.969499420859156, - 9.943546288531074, - 9.938513575228214, - 9.954212206347847, - 9.922852517049664, - 9.936565341069448, - 9.961621576260825, - 9.974704193247202, - 9.961315928685497, - 9.957146059592692, - 9.962823194788553, - 9.964475350718793, - 9.955297541232909, - 9.92420768760472, - 9.930996555329875, - 9.946483567563712, - 9.962742901967497, - 9.94322788114708, - 9.917230498652964, - 9.912486449020212, - 9.937845913915384, - 9.955220244169924, - 9.975104678513874, - 9.936973432474979, - 9.932604053909241, - 9.909564947412779, - 9.908279253218323, - 9.918397594519963, - 9.922097487182846, - 9.93313688549784, - 9.940408479515034, - 9.97326557625412, - 9.962368015263165, - 9.927419824087165, - 9.956092923704691, - 9.957170862795188, - 9.931291893171691, - 9.942332828332962, - 9.96721294620352, - 9.973858753528441, - 9.94361056552564, - 9.916495869102565, - 9.91842257958901, - 9.943883997567518, - 9.933156584298565, - 9.94921595228881, - 9.949459786914302, - 9.91965569179459, - 9.934398571971988, - 9.927676221354911, - 9.93410978145518, - 9.939749716545661, - 9.946262855412773, - 9.973522055952834, - 9.94583766088389, - 9.960231604396904, - 9.908473543556337, - 9.942685169342827, - 9.933062022853731, - 9.919950836255465, - 9.885200525092984, - 9.908761949774, - 9.92000918792526, - 9.93602856472869, - 9.9546029995507, - 9.92883266469648, - 9.953408527771987, - 9.955278501722914, - 9.953459683776158, - 9.963687049171995, - 9.973822318880597, - 9.97443178530044, - 9.925508106135867, - 9.921306388136761, - 9.942453332811931, - 9.927277472741826, - 9.943112649861371, - 9.94740976968061, - 9.919542462581601, - 9.960510514365042, - 9.943072761711697, - 9.989172606589873, - 9.978956364252419, - 9.961793323294735, - 9.957916443215469, - 9.933270139266893, - 9.926154822456548, - 9.943883159406631, - 9.96900300608836, - 9.95208184997472, - 9.985462964389349, - 9.952873442177378, - 9.934323512289838, - 9.968510958066535, - 9.950658264478664, - 9.946639665586623, - 9.917393850204439, - 9.930605065964627, - 9.945691633159225, - 9.954753962060886, - 9.952240086811166, - 9.951936068425626, - 9.966225684361952, - 9.940983565453134, - 9.99936709293871, - 9.973114549668196, - 9.977368577732038, - 9.934011729119806, - 9.921225825094213, - 9.915318277442818, - 9.915104256481706, - 9.902417198763084, - 9.94545374916875, - 9.928634907720165, - 9.944932582752541, - 9.915680985501739, - 9.934179465161229, - 9.96048680655547, - 9.956860182566603, - 9.938732003921052, - 9.968968012109187, - 9.962666415171396, - 9.95264905399726, - 9.951399585833189, - 9.93995987234958, - 9.961324378650266, - 9.94406789751993, - 9.956329945601748, - 9.958189760646633, - 9.935629426918606, - 9.935952916572877, - 9.961794627667254, - 9.929192658821929, - 9.925969834545798, - 9.91512944771775, - 9.944643716407992, - 9.91738049498517, - 9.914090049180272, - 9.933725199189885, - 9.94976514642731, - 9.918307072344735, - 9.964508920886257, - 9.9605193347863, - 9.967223492639258, - 9.958113262838072, - 9.960520079229559, - 9.978912320142559, - 9.932128159356592, - 9.956724648109528, - 9.969853848670633, - 9.970431801714374, - 9.940023967736733, - 9.938213688384842, - 9.966445166419522, - 9.955574929523097, - 9.967781603348225, - 9.961671162920783, - 9.955216149301167, - 9.970874680227983, - 9.945838086738236, - 9.922121273352262, - 9.935543720720254, - 9.943308841369337, - 9.939703672723667, - 9.966858194234607, - 9.927016119624225, - 9.943237642923126, - 9.960917112734334, - 9.923896723902802, - 9.932446668860386, - 9.947967523358189, - 9.934204728516512, - 9.939187774577576, - 9.930885599269446, - 9.89654839344387, - 9.928805367761615, - 9.95046507358705, - 9.952057944666768, - 10.00151365520981, - 9.969326973339331, - 9.980648944155837, - 9.953822401653905, - 9.954881206718284, - 9.96421653982946, - 9.943639205608779, - 9.947961203434444, - 9.93705270693517, - 9.944925019312953, - 9.981464342100464, - 9.957074301796425, - 9.96004620151959, - 9.945814684624166, - 9.937401831132174, - 9.937624624912338, - 9.948007004929654, - 9.967847210092257, - 9.9457778995789, - 9.907540987764724, - 9.939041084784492, - 9.973262393950877, - 9.953117444358845, - 9.959081965028828, - 9.968220767239705, - 9.955901546615792, - 9.942254429713529, - 9.902258857312688, - 9.936708086201575, - 9.942399890912736, - 9.931980146501035, - 9.969982394592263, - 9.988007124115084, - 9.93969583160345, - 9.968708729791697, - 9.970154748419825, - 9.96294006865558, - 9.965498222775139, - 9.948108833647321, - 9.949382808727144, - 9.93362344455008, - 9.923031196662974, - 9.961371133267457, - 9.946715518290773, - 9.943381588939278, - 9.920644009365533, - 9.926251748482615, - 9.977282985002375, - 9.978920426707466, - 9.969052979187156, - 9.97419736848995, - 9.957923776974871, - 9.946736223152781, - 9.93963611539095, - 9.945616627486697, - 9.998900523477257, - 9.966883342600086, - 9.92583546322383, - 9.951334104305559, - 9.971972175883977, - 9.920642295907053, - 9.923220069262916, - 9.931174873972505, - 9.904258000256858, - 9.95659931725413, - 9.929084537746332, - 9.96213762337937, - 9.978959787333542, - 10.01213653737452, - 9.967820091948361, - 9.945442008138471, - 9.951977075447633, - 9.957841209128944, - 9.922020287643484, - 9.913733673877742, - 9.917462714105472, - 9.95122946866635, - 9.943113449073556, - 9.971582713928722, - 9.96386356342667, - 9.895685639841078, - 9.941026954582638, - 9.95321059495407, - 9.966555975095181, - 9.968683606924827, - 9.974898875260287, - 9.918308294145403, - 9.928007916014613, - 9.895902752239037, - 9.937387970739527, - 9.934489099980642, - 9.923711136697094, - 9.912312536785004, - 9.938829245477509, - 9.929059058141975, - 9.895634084272578, - 9.957589354276129, - 9.928706616234296, - 9.909965856504122, - 9.927793426381577, - 9.936942416740038, - 9.934084828094454, - 9.944592977408192, - 9.954084117612135, - 9.95298779304888, - 9.989777664371603, - 9.970791527961097, - 9.996177990870388, - 9.965881776069722, - 9.937091370159932, - 9.952485185678233, - 9.981305154194347, - 9.927505676403655, - 9.972493703504497, - 9.923531926774675, - 9.9113941829883, - 9.928875659480005, - 9.945914776991854, - 9.910916200951712, - 9.88386396708485, - 9.946529116667755, - 9.960882468057488, - 9.92113482213305, - 9.944874593177978, - 9.930291036067931, - 9.95271606833758, - 9.966175105494417, - 9.967632557778071, - 9.946020784638364, - 9.99500178396137, - 9.933875853347585, - 9.957541891454456, - 9.978892770351228, - 9.963810831315282, - 9.931188371842296, - 9.925910942055399, - 9.923442225367914, - 9.941517393310935, - 9.909545565794236, - 9.957248342572559, - 9.983110397428018, - 9.97844164124186, - 9.97485933128711, - 9.986486717648043, - 9.967257255477035, - 9.92233784248879, - 9.949716982070445, - 9.940362378429985, - 9.944507164444872, - 9.950114345237502, - 9.97057474308337, - 9.95906448149839, - 9.93967114465572, - 9.884957036767249, - 9.95716484280641, - 9.967850081440327, - 9.955760460765319, - 9.945049716996675, - 9.947599985720279, - 9.953285061623546, - 9.976151770819481, - 9.995255050331373, - 9.958326529067332, - 9.94264166008996, - 9.96629133788768, - 9.949909643125311, - 9.960680165837694, - 9.99552903078032, - 9.97046399518806, - 9.947699802531432, - 9.96228285245034, - 9.967804695791786, - 9.975383474732421, - 9.960620153814197, - 9.963144450169098, - 9.986219981183282, - 9.983712831850081, - 9.954711334004863, - 9.975626748214124, - 9.987643417665364, - 9.958101858699465, - 9.960339571238736, - 9.940813926187367, - 9.952961702808974, - 9.931844508577301, - 9.946544492785646, - 9.97686931241151, - 9.92704017034291, - 9.953686873187536, - 9.956404746116398, - 9.94650874801839, - 9.938456611188535, - 9.916374914597084, - 9.89397470848654, - 9.91532838977694, - 9.891275201125488, - 9.91959359424586, - 9.903509091367306, - 9.930178346177357, - 9.93977479359517, - 9.962815823743489, - 9.978897888415585, - 9.931362869130265, - 9.954000650086973, - 9.965630995130445, - 9.959262094211738, - 9.925569332249225, - 9.933383189113865, - 9.972517889443242, - 9.931554362273433, - 9.968804721964935, - 9.981464594628198, - 9.960169100954998, - 9.943159604470532, - 9.974385779276737, - 9.967821361653437, - 9.975375384637632, - 9.950701628494818, - 9.934239276386565, - 9.942137654948402, - 9.98280938470844, - 9.967067773482023, - 9.960411078844704, - 9.944433957951917, - 9.97764244744358, - 9.951242006347362, - 9.992308627128564, - 9.98045266093048, - 9.94998778210585, - 9.90640611738803, - 9.967518705105837, - 10.00381383040159, - 9.987747556072321, - 9.985385480724627, - 9.993658034117596, - 9.986326304229234, - 10.00582792109211, - 9.947117932808496, - 9.961374468274089, - 9.976661376413178, - 9.958431912386075, - 9.98010152521822, - 9.945766164824171, - 9.963906589510062, - 9.965960707093506, - 9.976920591333544, - 9.979062770438038, - 9.989003275987129, - 9.949621615726938, - 9.931547532205148, - 9.921312057524366, - 9.981597432148494, - 9.974824517371754, - 9.949562932452075, - 9.94500897360057, - 9.967282295098428, - 9.97046839152568, - 9.9547067018449, - 9.963181074981959, - 9.948443942599429, - 9.949755547046129, - 9.946352749155622, - 9.985531794849473, - 9.914921168221364, - 9.948303858683907, - 9.950246130683322, - 9.956807442378517, - 9.973754458183725, - 9.947719402973995, - 9.954092487375267, - 9.954879259557293, - 9.916001676953101, - 9.925423152434927, - 9.924384964030939, - 9.93615215965162, - 9.912227273002031, - 9.955222737586709, - 9.95716778490142, - 9.979178972882176, - 9.994307598752712, - 9.929559634052511, - 9.953728136620416, - 9.92132604894027, - 9.942205059412931, - 9.941306617382711, - 9.99307462322028, - 9.991060586094198, - 9.971389244348845, - 9.960481345291841, - 9.947478899202197, - 9.942792393753429, - 9.933310030231663, - 9.960692430539813, - 9.95076241244628, - 9.971024111887091, - 9.927441667112783, - 9.929350966763451, - 9.961548945388685, - 9.951948505997551, - 9.954778150140658, - 9.928339202156979, - 9.962710362048318, - 9.92776533156729, - 9.959420715187651, - 9.951638544193932, - 9.956868131042242, - 9.977456134784042, - 9.923060418247507, - 9.970131275526583, - 9.956945108278044, - 9.916445575690586, - 9.947288098331594, - 9.98884533306413, - 9.982869938965043, - 9.955935878281664, - 9.911925995950783, - 9.960554423034386, - 9.993237387986477, - 9.960520223290425, - 9.992701631856, - 9.964221852042424, - 9.979828718228086, - 9.963261193975564, - 9.901566183782645, - 9.95944182192157, - 9.975404977790845, - 9.929875911954495, - 9.964925720310617, - 9.945745786817335, - 9.96119210113965, - 9.925080209362456, - 9.907833456978942, - 9.883626645102192, - 9.952163792155494, - 9.964406069057434, - 9.970688122350012, - 9.984733965086013, - 9.940848114543568, - 9.956160207389637, - 9.966818081187203, - 9.942220410177656, - 9.906066289480641, - 9.913071560958501, - 9.953087864834776, - 9.944990607022527, - 9.992472783901515, - 9.95864263458034, - 9.933870690952041, - 9.951024756650657, - 9.951464592911556, - 9.958831446131539, - 9.933486097048668, - 9.954798210766707, - 9.945532171313534, - 9.950721806000276, - 9.944438028512582, - 9.932791056413704, - 9.914796910506995, - 9.942107766372837, - 9.930273000213207, - 9.944896658031285, - 9.962032131378171, - 9.882770509277165, - 9.911697089626076, - 9.949706795239578, - 9.933691149889412, - 9.947771341893747, - 9.910498514279674, - 9.946527655137201, - 9.935794608326235, - 9.96835999235247, - 9.933515650067042, - 9.940037077081637, - 9.927179754286428, - 9.959479949562054, - 9.967356899539089, - 9.965812054291197, - 9.938361671304897, - 9.982930785461665, - 9.93677099034133, - 9.909028123509747, - 9.893271777608716, - 9.954896276140856, - 9.985126400108419, - 9.975354028353928, - 9.963816078246442, - 9.95069423267525, - 9.93412068106554, - 9.92398616773627, - 9.921262954364776, - 9.926884054639801, - 9.939587892175552, - 9.95694914907156, - 9.977555693875559, - 9.995837502315835, - 9.987699417327342, - 9.966999049976287, - 9.973600882623076, - 9.929075607860156 - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 2", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.14627265523349112, - 0.09249825063118461, - 0.05864638094297092, - 0.29939728890762946, - 0.21984407544230936, - 0.3815425425336365, - 0.26476914307147803, - 0.2972736444877533, - 0.3197654954898758, - 0.36675083245741247, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.18222284147805604, - 0.09146714114865447, - 0.13750274901415122, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.06885296393026999, - 0.8526659535856848, - 0.31532002776348655, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.1884001842285637, - 0.29544687481761756, - 0.48875172337385187, - 0.4106995692076558, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.011646499474023766, - 0.16166528592369075, - 0.21537499880135694, - 0.11051465870664842, - 0.29325460593707986, - 0.257339504075334, - 0.3080347504065253, - 0.11825655999624235, - 0.0908277661568195, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.0524786366803062, - 0.12973008483739817, - 0.1312086196845979, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.42071214012958413, - 0.48698265068922736, - 0.5083508047316404, - 0.4882811588271051, - 0.3874660692988012, - 0.4521545197499185, - 0.634453336665064, - 0.3901278594237819, - 0.34113783525571956, - 0.31130304878486226, - 0.20669372830284927, - 0.31062850812352916, - 0.26084769855470447, - 0.21103812386349868, - 0.24715692122072525, - 0.10000355669152555, - 0.2022906545452066, - 0.34002009996336235, - 0.20526745090784462, - 0.1597940275138265, - 0.36557555976648254, - 0.4011910521603971, - 0.5474228490122541, - 0.1468407050288577, - 0.3541439756364462, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.057839265628922214, - 0.3252271458267658, - 0.21024820394826874, - 0.32969440084172796, - 0.223844532936726, - 0.35561655921255186, - 0.2803559091230649, - 0.25940434126811773, - 0.12950010078547672, - 0.07003863535601987, - 1.059165966438313, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.16681348386893693, - 0.04601269427644372, - 0.0207445091432104, - 0.07011940332457094, - 0.2037120977283152, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.12363543754802661, - 0.28039689738658324, - 0.2684297954819648, - 0.329231869811411, - 0.4382296665826228, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.003147187408442312, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.07626680036074457, - 0.8221520338022736, - 0.7324403870278046, - 1.2787302368505704, - 1.5933305810168692, - 1.6198624370138168, - 0.6980561577266191, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.18298110550911148, - 0.10056890069661495, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.5660828152171675, - 0.727863913326424, - 1.266614913969334, - 1.3241779793501485, - 1.777172500968637, - 0.7654749785812428, - 0.7052873569007863, - 0.9058052251998259, - 0.8733464751495077, - 1.300934368336553, - 1.468526080260115, - 1.18793729806842, - 1.1991858885684528, - 1.2493881676438447, - 1.3747786033478315, - 1.667557301624477, - 1.4939552084824506, - 1.521295349085257, - 1.4483085254013175, - 0.7125865325827673, - 0.9076486803287592, - 0.7199164295308215, - 0.39487234688083206, - 0.6539523962139939, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 2", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.24999183759836885, - 0.6037586825859343, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - 0.2923807993150283, - 0.13057316999913074, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 3", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 3", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 4", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 4", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 5", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 5", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 6", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 6", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 7", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 7", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 8", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 8", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 9", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 9", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 10", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 10", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 11", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 11", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 12", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 12", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 13", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 13", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 14", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 14", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 15", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 15", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 16", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 16", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 17", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 17", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 18", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 18", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Source 19", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source 19", - "showlegend": false, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Source traces", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Source traces", - "showlegend": true, - "type": "scatter", - "x": [ - null - ], - "y": [ - null - ] - } - ], - "layout": { - "annotations": [ - { - "showarrow": false, - "text": "\tBurn in: 4000", - "x": 4000, - "xanchor": "left", - "xref": "x", - "y": 1, - "yanchor": "top", - "yref": "y domain" - }, - { - "align": "left", - "bgcolor": "#ffffff", - "bordercolor": "#000000", - "borderpad": 10, - "borderwidth": 2, - "font": { - "color": "#000000", - "size": 12 - }, - "opacity": 0.8, - "showarrow": false, - "text": "Total Site Emissions are
the sum of all estimated
emission rates at a given
iteration number.", - "x": 1.05, - "xanchor": "left", - "xref": "paper", - "y": 1.05, - "yanchor": "top", - "yref": "paper" - } - ], - "autosize": true, - "shapes": [ - { - "line": { - "color": "black", - "dash": "dash", - "width": 3 - }, - "type": "line", - "x0": 4000, - "x1": 4000, - "xref": "x", - "y0": 0, - "y1": 1, - "yref": "y domain" - } - ], - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Estimated Values of Sources With Respect to MCMC Iterations" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0, - 4999 - ], - "title": { - "standoff": 20, - "text": "MCMC Iteration Number" - }, - "type": "linear" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - -2.720180351477456, - 1.6418787783379458 - ], - "title": { - "standoff": 20, - "text": "Estimated Emission
Values (kg/hr)" - }, - "type": "log" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQWYXcX5h7/sxpUQgaBBAsEKaXEpWpxSrKVocSvwL64tUqR4ixQoUKTUsOJWrGiAlOIS3BKIQAIkxP/PO8kssyfn3Hvumbu792Z/w8OTZPeckXfmnDPzm+/7psOsWbNmmZIIiIAIiIAIiIAIiIAIiIAIiIAIiIAIiEAqgQ4STzQyREAEREAEREAEREAEREAEREAEREAERCCbgMQTjQ4REAEREAEREAEREAEREAEREAEREAERKEFA4omGhwiIgAiIgAiIgAiIgAiIgAiIgAiIgAhIPNEYEAEREAEREAEREAEREAEREAEREAEREIFiBGR5Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hIBERABERABERABERABERABERABEWgnBCSetJOOVjNFQAREQAREQAREQAREQAREQAREQASKEZB4Uoyb7hKBuQi89NJL9tvf/taWWGIJO+6446xv376ilEJg7Nixdtddd9mjjz5qJ598si211FJ1wemrr76yhx56yG666Sb71a9+Zauuumpd1Lu1Kzlp0iR74IEH7LbbbrNPP/3UunTpYiussILtueeettxyy1mHDh1au0oqr44IMHYuv/xyW2eddeyQQw6xrl275q799OnT7X//+5/97W9/s8UXX9wOO+yw3PfqQhEQARGodwJffPGFnX322fbee+/ZSSedZN/73vfqvUmqvwjUHAGJJzXXJapQGgE+CEceeaR99NFHhQCdddZZLb7Y/f3vf+9EAVJrlFcIRBve9M4779hll11mr7zyis2cOdN69+5t55xzTlnx5Pnnn7fjjz8+s+Zbb721HX744am/ZwFPmclU6p7ktYy9P/3pT/b444/bt99+q/4tMYbGjBljZ555pm255Za28cYbG0LZxRdfbM8884w1Njbar3/9a1t77bVLjsKPP/7Y/v73v9vw4cPtyy+/dPctvfTStskmm9i6667r/s3ieO+9965oYd2GQ78uiw7fZ8kGrL766k74/OSTT+yYY46xiRMnprbx4IMPtu22267pdzw/p59+uj377LPNrl900UXt/PPPt27dujX9Pu/7gYymTZtmt9xyi/ufMUOq5Bkv1UG8t0q10d/bo0cPW3DBBW211VazzTff3BZeeOG67HdVOh8BhPQXXnjBnnrqKUNYJzEG+KYts8wy+TKZcxVjlm/c22+/3ew+/5ylCYizZs2yUaNGOUGfb9OHH35oM2bMcO/HhRZayFZZZRXbdNNN3feVdyl13GKLLezzzz+3O++8015++WV7/fXX3beYxJj9v//7P3d/Jenee++1Cy64YK5bSs2BEDlfffVVe/DBB43v+7hx45r4IXqutdZattFGG1mfPn3sL3/5i/uWDB48uGS1st4t4U2leFbS5lq+NpwvVesdWMvtVd1EoC0ISDxpC+oqszABJgBXXXWV3XPPPWUnyEyon3zySbd4Y2LS0pYCb7zxhlscyvIk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L4snhA845ZRTbNCgQfarX/2qRU/1k3hSfAzWy51FxJNHH33UBg8e7AQCRIuFFlrILf7feOMN1+ws8YTwGFyz5pprZuLxAskee+zRTDzxwsqWW27p8kd0uPvuu51QkSaePPPMM05YySNipJWJEFKqLWkNaJfiyUsvveTEERKL8B/+8Ie22GKLuaMex40bZ4888oj95z//sd/85je29NJL18tz0a7qKfEkvrslnsQzlHgSx1DiSRw/iSfx/CSexDOshngy/dUXrEOf+axx0GJmjY3xlaqjHGpdPJk57nOb+dknZrPMZnz4jjUuNdQ6LrmsWcdObU45j3jy+9//3u66667UunI89BJLLOEszjfaaCPr3Llzm7fJV6CtxBPKPfHEE23jjTe27bbbrhkPFrZ//etf7Y477jC+3/x+1113nWsnvdrX1Uyn1HFFiognvrmIIaF4Us5ygpiheHMkLUpCfFniiS8rtC657bbbbMMNN5xLICGPK6+80o455pjC4kkdd2l01XNbnvijikePHm3HHXecDRw4MLVwTtoZMWKEHX744dbYzj7k0b3RChl48eTei8+3maM/rqDEDtbQf6DZzFlms2barJkzzfh/1pw/Z875WfDvDt26W4eevZrKmPnlF9ahUyfj59bQ0Lzs6dNt1ozpZtOnm82YbrPcnzOsQ5++ZrOYeTT/uc2cUUHdq38pH7+OHTtWP+N2kiPvE0TXDh06tJMWV7eZCHgzZ87UOzYCK88w36iWGoOzJk8y69zFZn09wTouseycd9rs95p71/E/79A6TYw/xqG+88U7sBrfkZljRs+uQMeO1qFHL2uYf6DNmvzN7O8m31nesw2NZg0dzNyfc37WgT8bbeb4MbO/44lEXh269TC38p/FL8M/3Q9c/5f6vavD7AuDP+fkE/xsVkreqfck6jJjxnT3/PItqcU086sJZt9Obl61jp2scfAQ69ClS3WrPG2azfx6ohsDLrl3jH/XzHDvmoZ+A8zmfHNfGfm2DfvJT92lyy3Q30acd6p16DK3SfxnE7+y0+97zL6Y9K2dtvZKNrhrR5v57WQb37WX/fPdT+3fIz+wHwwaYL9abQXrQTcwl5s+bc48bpr7d0O/gdYwYMHm7Z0+remd6K5nzud+NvvvTX9O+sY69OzteLn6de46m920aTbj4/dn50mbmqYSc/7i5xbhHGOu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kOTu2/Hyyy87qxv6Kct6piLLk+uuu84FK6XRHGPMxPOaa66xv//97y7WCMLJXXfdZcOGDbO999670KSUyv7xj3+0vfbaK5cYUOqJY3cb06Mdd9zRBgwYUNMPJ5XLEk/eeecdJ56sv/76dvjhhzdrB/dwPPTvfvc7W2655Zr9DjOqZPKK3mHXXF/zPFRBERABERABERABERCB6hL44M037NAfbeQy7bvEUrbTX/5R3QKUmwjkJDAvnraTZnny4osvOjHCCxMIFt46BVTnnHOO7b///k5UIbGYJ3QFsTe4jrU1bkBJFxmuRXTBNciXweEuHOCCSPP666+nutHceOONts4667jyWBu+8MILdsQRR7hyQ6sZ3438/IorrnDxRXFF8tdg4FDObSe8d8EFF2y6PhwiV111VTM+tCkpzJRr4+67755aR8oJWadxR+AitsrQoUNd/dANosUTGsACffPNN3dCCenDDz+0Y445xpZYYgmn6mBtws8uv/xyp+h495Kcz4+L3H/33Xc7Fx3gViONGTPGWWbQCbW+w5glnjz//POO59Zbb50qniBY8YDALUw8dMlE3BSSxJNqjC7lIQIiIAIiIAIiIAL1RUDiSX3117xc2/Yinvigp34Tmw1vb/3g+zcZnDUUCxAsSGH8lNDFJevnaS4oSXGHf3vxJhRGfJnh+PPWMv369XNiRx7xJLQ68Xlxr2ewxx57NFndhG1KE0+SHFnfJ9uYrGMonlCXJHfW3//5z3+a3Kyq5raDby7uObjB9O3b17UdixPMiTCx8VFw067L+9BjroMfddrRffi2fvrpp7bkkktWbB5Hnu5Y1IbaPootSzxBNTz22GNt4403rsjyJI17eNoOvx/cs7t1rnEuecdPa10nt5140nLbiWMot504ftwtt504hnLbiePH3XLbiWMot53i/JJuO5f8++HimbXjO+tlfVHLXbTNogvVcvWsUrcdGlMq5kkontx+++3OJadUeAovPGy11VZNFiZpAkKMeBIGiQ2FhqR4QhkYJeC6g9BDTJe84kmaNYvveJhgPBFa5mRZnpQTT9LqmBRPktyT/VU18YSgSFieHHTQQc6dZvTo0c7qhDgcKDgEcSURdAqzntNPP92Z9VQjcdIOAVFfeuklFzAV06V5MZWLeYJAdeSRRzbFifAn9NDJlcY88ZYnmyw00Lo1Ns6LOFus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x0/iSRw/iSfx/Oohh2qIJ9USEqqVT2twr6e6Vsojt3hCxogi1113ne24446Zbjvjxo2z8847z4455hjr27dvpfVJvZ4JBnkeddRRJfNkUYsJ0/XXX28rrbSSE3AOPvhgJ6IozSYg8SR+JEg8iWco8SSOocSTOH4ST+L5STyJZyjxJI6hxJM4fhJP4vhJPInnVw85FBFPQreV5557zi6//HLXVDwj1lprLefS8vTTT9uBBx5ou+++u11wwQX26aef2kILLeT+PPnkk53LC3FGl1lmGTvrrLPswQcfbMrn+OOPt0cffdRdf8QRRzjDBl+mL2fDDTdsypd1+5FHHmk77LBD0/Vcx0EwvuzwmkMOOcQuvfRSVxfqzGExDz/8sJ166ql28803u5/762kDa0vq1K9fP3c9IT4QT/g395Jow+DBgw13I65966233LWDBg2yffbZx/bYYw975pln3J/EM63lVJF4QkM++ugj+8c//uE6P2lZgtUHcN977z07//zzqyqenHnmmc7c6dlnn7WJEye66ODA3Wijjaxz586O8SeffOLisay55pp26KGHNsVEYRD4a2q5M1qjbhJP4ilLPIlnKPEkjqHEkzh+Ek/i+Uk8iWco8SSOYa2LJy99McFGTfrWujQ22NA+vWzBbrUVl0DiSdz4k3gSz68eciginnhRYsstt3RrV2+FMXToULviiits2223tQUXXNAJF1yDqICgsu+++7rrcc9BdCEEBqIIiTVvaM3BNffcc48TQzgB98knn3SeIcQo9Xn5fFdeeWUn0viy+blP/vrkNfz+yiuvdMYQiDP+XoQR8uf6nXbayf0dEQdjhcsuu8y1x7d5zJgxrn6PPPKIvfDCC04kQRTiWtI555xj+++/v73++uvu914IqvVxUZF4Mnz4cKccYYFSKlX7tB0mGChmCDfJhIXJiSee6NQtAseiZtEpxGVhkUvwWgb+GmusUet90Sr1k3gSj1niSTxDiSdxDCWexPGTeBLPT+JJPMNqiCeTZsywydNnuMp079ho3Rob4ytWJznUunjywvgv7eNvJjfrm+/N38d6duxYE4QlnsR3g07biWdY6zlUUzzxYgZWJz55axSEB9aviBM+IZZgtcI1pcQTxAmSt9hAcPn444+duOHzDQWQpHiSdg31qOTn5BmKO+HfEWjIa5tttjGMIbA68QkxZdSo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UaoOi1osJBDiaW12j/Mrc12hyTr+UPvUkQfgn//8p9r+hMUWPhijIkXwN91eH5foXPWHNGvY8F/+8pcqW+e+//57JTfBBh/QwA0f3qyLVn2fEDGQgBAuCCc+9thj1bxE6La12T0ukfkhNB3RN7iX4IYysQ899JDKq6Gb13PLbn+JyhBbPyDZIM9DNZTE7du3rxICEG34H47FXEKUCrZI6YgT6/l231vsHpeo/DAu62sTkgkVii655BIl0JHM2c17gd33DLvHJTI/SDS8LyASCdGbyCl2/PHHV/v7xjno7CmGkifowe7ffa+Pczb6+B8dSp5Y5ypee/hyAtEmoV7ruAO77w92j4s/FY6ABEggFAHKE84LEiABEiABEiABEiABEiABEiABEiABEqiBAOUJpwcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUJ5wDpAACZAACZAACZAACZAACZAACZAACZCAOwKMPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAmkCAHKkxR50LxNEiABEiABEiABEiABEiABEiABEiABdwQoT9xx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIpQoDyJEUeNG+TBEiABEiABEiABEiABEiABEiABEjAHQHKE3fceBYJkAAJkAAJkAAJkAAJkAAJkAAJkECKEKA8SZEHzdskARIgARIgARIgARIgARIgARIgARJwR4DyxB03nkUCJEACJEACJEACJEACJEACJEACJJAiBChPUuRB8zZJgARIgARIgARIgARIgARIgARIgATcEaA8cceNZ5EACZAACZAACZAACZAACZAACZAACaQIAcqTFHnQvE0SIAESIAESIAESIAESIAESIAESIAF3BChP3HHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAilCgPIkRR40b5MESIAESIAESIAESIAESIAESIAESMAdAcoTd9x4FgmQAAmQAAmQAAmQAAmQAAmQAAmQQIoQoDxJkQfN2yQBEiABEiABEiABEiABEiABEiABEnBHgPLEHTeeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCIEKE9S5EHzNkmABEiABEiABEiABEiABEiABEiABNwRoDxxx41nkQAJkAAJkAAJkAAJkAAJkAAJkAAJpAgBypMUedC8TRIgARIgARIgARIgARIgARIgARIgAXcEKE/cceNZJEACJEACJEACJEACJEACJEACJEACKUKA8iRFHjRvkwRIgARIgARIgARIgARIgARIgARIwB0ByhN33HgWCZAACZAACZCADQIff/yxPPvss3LdddfJaaedZuMMHhKOwO7du2XBggXyxhtvSI8ePeSss84iLBIgARIgARIggRgRoDyJEWhehgRIgASSncCePXvkp59+klmzZsmnn34qO3fulAMOOEBGjhwp+fn5EW+/uLhYhg4dKqtWrQoci8X2zTffXOXcvXv3ym+//SYTJkyQb7/9VkpKSiQtLU2aNWsmJ5xwglqgb9iwQX7//Xfp3bu3LF26VL766iv58MMPpbS0VBo1aiRjxoyRNm3aRBzT1q1b5d5771ULVt3+8pe/yPDhw6V27dpVzsc1J06cKJ9//rksX75cwAP3fdhhh8n5558vLVu2VGM+99xzq52rO0IfgwYNkhUrVlQbWygWEW8gAQ5IFHny/vvvyzPPPBMggnnw4IMPqjkaqj3++OOCsVtbuGcfC8yYG5g/06ZNk8LCQhk4cKCcffbZsbg0r0ECJEACJEACJCAilCecBiRAAiRAAp4SgNx48skn5aOPPlJS47bbblMSI1KzLm6PO+44JRHq1KlT5bSNGzeqKAYImpNPPlnOOeccadWqlbrO5s2bZd68efL8888reXLttdcqUaGbtf+LLrpI+vXrJ7Vq1apxWF9//bXcd999UlZWJocccojcddddUlBQUOUcRANgkf3vf/9b9t13X7n00kulc+fOkpmZqc6D6HnxxRflhx9+kCOPPFLuueceycnJCXtd8Pvll1/UdSGGcM4dd9wheXl5Vc757rvvpGHDhrLffvtFQhuT3yfaeELdNGTY5MmT5aWXXlJyb//995cHHnhAmjRpEpLRtm3b5JFHHpF169aFfPYxARt0ET2PKU/iQZ/XJAESIAESSGUClCep/PR57yRAAiQQJQJY4I0fP14gOyASEL1Rt27dsFfDcRATiBaBjAi1MFy7dq0SCn/++afceeedcuyxx4aUHzgOkSEHH3xwlagVRKkg0mDXrl1KgCD6JFiEWAeI40aNGiVz5sxRYwoV+YGfQ4zgfs844wy5+uqrJSsrq9p94rh//vOfKlIGi/EGDRrUSH7Hjh1qUQ8ZFIoF+oMk6tOnjxIA8W6JNp6aeEBOTZ8+XT1btGOOOUaGDRsWdn7i2SKSKDgCKl7MIfTuvvtuRp7E6wHwuiRAAiRAAilLgPIkZR89b5wESIAEokcAC87Vq1fLN998I2vWrFEyo3v37mEviK0uM2fOlC1btqgtMsHCAIvzxx57TKZMmSJ2okYWL14sX3zxhQwYMCBwTYiLSZMmyaZNm9Q1+vfvr/oK19DH66+/riJIZs+eHVKeYNwPPfSQtGvXTv7xj39Uiw6x9o3ImOeee06uuuoqY3kCruPGjZP7778/IeRJoo0n0szGXEAEEyJREN2D7S/XXHONZGRkVDs10eQJxo5IJEaeRHrK/D0JkAAJkAAJeEuA8sRbnuyNBEiABEhAREVi4Bt+RFC8/PLLSpxgwRcqKgMLWESEnH766fLJJ5+EjLaA7EC0Sf369W3lK0G+kalTp8rxxx8fyC+CReeXX36pImEgPNq2bRs2HwvOh5zAVp0lS5aobTnBkSeIlsE9YVsOtib17ds34rP//vvv1VabffbZp8Zja4o8QU4YRPKsX79esYh35EmijSfiQxBREUCYC126dFFzD9urkND2zDPPrBbNRHlihyiPIQESIAESIIHkJ0B5kvzPmHdIAiRAAjEngAUnGvJ1IAksErVCWEBcBDeIEciJG2+8UcmA4K0qWmQgasROzpBwN6sXzH//+98jSg9s00Bkwu233y6vvPJKSHmCaBRsrcF2pIcffthTiRFOniBvChb7yOlibVaxU15erhLkQlqtXLlSRc5ge89ll10WSNyLSB4k9/3ggw+UzEH+F9wvtrMgT8wVV1yh8shgiwhyufzxxx/qcsgvg2idE088Uf0+0nggxvA8UR0Gcik4wSnGOnfuXHn11VfVNZCD5tBDD1XXx7YrnZNGV5lB0l/kJ7nhhhvUdipsXULy1COOOEIGDx6skgHbaXou3HTTTSoJK+4dnLAdBtt4rM0qT4IT+loTyFpz6mjJB7GFe8RzwO8RzYQEyuDyxBNPyMKFC6Vx48Zq7IcffrggxwpYIV8Q5gByBSEixrrlzRp5ggTJ2DaGqC00VN+55JJLquUKwhY0JDN+9913Fa/c3Fz1LJDIWCc+Rl4XRGshumvIkCHqNYuxIj8Ptsshnw8bCZAACZAACaQyAcqTVH76vHcSIAESiBIBLU+QBwRbVbBIR4LXW2+9tcrWCJ1XpFevXnLUUUeFzPOBCA8s5pDrxKTijF4wI3eFXuhioY4oDiwmdUPEzAsvvKCiXCAKdNWV4Gs//fTT6r5at25tK4+JE9SRcp5gTFjoBkee6NwqWPgikgKLblQ+gmTA1iLcK6J/ZsyYIUjwij6wQEfuF0TYYPsNqs8gHwgEDBL/ghdkCcQBfg5hErwNK9R4sEjHNcAIzy54mwmePaQFpAnmBTiiyhC2ZyFhLo5HNBKOwzghWfR4IXEwng4dOqjqRvg5BNEtt9wi6enpEVFb54JmhjkRqgJPcOQJ5gdkBVhgzlorL+Ge8W8dFYRkvhj3jz/+KO+9956quAS5MX/+fCVp8HOIElwXog6RV7g3/Pv//u//FI/g7WVankB+/Pe//1UyCclvIZPw/8E5XCBqRo8eraKdkMwYDdvR3n77bVWdClFTiJ7Cc33nnXfU75G7B9f59ddflWzB6w+vXzYSIAESIAESSGUClCep/PR57yRAAiQQJQJanmCBh0U5ok/QsNhv37594Kr4HaIOsHDEN/+hkqRiWwgWb0gEG1xBx8nwrQtmXRY5VD4W/G7s2LFqUYnyx6HkCbZ5YPGMRbtJNEy48buVJ6gkg+gM5F/R5aERuYMktdjGZF2IIwoC3HEcpAoW+liMIxIBP8OzAB9rgltEJSDKJvg5hJM5uD9EO0CgBcsTjBNRLRgrokx0w2Id8wUCAtFKEFxoWNwjsStKTENQQESgFRUVqcgNzB87yXhxjnUu4N8QDHieEB0QIohA0dEeobbtLFu2TI3xoIMOqiJP9HOD/LGKLeRVQfUoXAd9454QVWOtTAVBhYiaevXqqfvS14D0slZo0vIE49TPD8fr7VNWUYX+UVkIkS/WbXMYBxgi+kiLMD1PIIYQwYJoJIgr9AehFmrLnZPXH48lARIgARIgAb8ToDzx+xPk+EmABEggAQlY5QkWYFhIIkIA2wTwrTYWjta8ItjSEU4Y6EUkoilMkmRaF8x6Ufnmm29Wy8eCn+Faepyh5Il1rNatG149CjfyRJ/TokULuf7666sMRUfaICoBVY0gSDRX5KNBxIa1bDOeDaJOsH0JWzZ0ZI5euAdH4dQkT0KV1tX5YrAlRG990gPWkT+IgrBGk+jxooy1tfKNvm/IA8gTO1t3guUJrq2rNOE61gSyXsgTvd0H1wkWPOFKD4c7p6aEsYgognDScxLbgCAeIUMQxWNtel7jd3q+4Gd4nXq9Dc2r1wX7IQESIAESIIF4EqA8iSd9XpsESIAEkpSAVZ7gFkMlfMXC/KmnnlLf4CPvQzhhoL+1x+LYutBzii54wYzrB+djwaIei09U6dGJWEPJEyzwkVAWeSSQCwKLTR3p4XRcoY53I0+C83GE6te6xSicjAh1HvJhIC8NokVQNchUnuiol06dOlWJ3NDX1oLAyjaSPAmO9qjpOYSSJzge21cQGQKWOoEsth0Flyp2GnkSK3mCKBHIEsguSBpE7+g5Ho6HVf7VJMG8mNfsgwRIgARIgAT8TIDyxM9Pj2MnARIggQQlECxPsE0AW0MgUa688kqVSwQRHkg6qssFhxMG1p8j6gBbN7BFw2kLXjBbE9HqfCyowII8HYhs0LkzwuU80REDyDkBeaK3kTgdl1fyRC/ozznnnEBui5rGYkeeYLsHEpsiEufCCy9U3BGJYipPtBwJF7Wjx5aXlxeI1IiFPAEvbN1BUl40iBRsXfKLPAmWNGCG7TrYmoPXTqRGeRKJEH9PAiRAAiSQygQoT1L56fPeSYAESCBKBILlCS6jq9M0b95c5X9ANRidKBS/rynaAklPH330UZWDBPlImjZt6njkoaINrPlYkFcCSTohCXSeDVwknDzRkSuIjLG7OLU7aDeRJzpCB7lLwpWFtl6/JnmCyBokMkW+DFRBQmJRiC6vtu2gZDMkGOZCqK02ofJ9xEqe4N51BZ4GDRpIx44dVSSHdatQokae6PwvEHmYz6tXr1aRKNj+pLeh1TQHKU/svkJ5HAmQAAmQQCoSoDxJxafOeyYBEiCBKBMIJU90ngtsjUDlD0QdWBd0NQkDiAFEAeBcRK5cfPHFVXJ0BN8OKqigcgm+bccCGC2UPEE+FpRjhdhBrhAk58Q2B2tyzHDyBJErqMqDhKihqvaEQowxoG+rnAl1nBt5oqN7sCUmVMldMEHC1549e6pkqDXJE/27Ll26KNGlo3C8kic6YS/+P1QJa50c9m9/+1sgMilW8gTPw1qBB/8OjrRJVHmit0Ohog8iujRnzCdE0yBVx6zVAAAF9ElEQVTxq7VhzqA89amnnqrkGOVJlP8wsnsSIAESIAFfE6A88fXj4+BJgARIIDEJQCignXvuuVUGqCNIsHgPrrwTSRjofBRbtmxRC/rjjz8+pEDBwlfnIrFKiq+//lqV3w1OjqrzsUCGBJfgxeDDyRP8zlql5ZRTTlF5MpCMNVRbtGiRqjx05plnRiynG4kFxjRt2jRVghaVapDsFFtckDAUETpIxArxgDLEYA1x9dZbbymRdMEFF6jhhRMkWjQhegXJZHUUCyIysNBGVRrIhJtuukmQkBT9hxsPRFGohKjo64033lDRR127dlXXsHLDli5EvuBayNOix4soCsifUAljneQ8CTcXgsWCrsATLE90hAcq40C+6Xw3YApJsWnTpipJV2OR8wTz/plnnpGff/5ZJeHFdjJrYmQ8eySGBe+MjAxVpQj8e/TooZ6znuvWeZWYf104KhIgARIgARKIDwHKk/hw51VJgARIIGkJYOGIBSUaFsVY1OumvwlHolBIDB3RgEUevjWHvEB+DUSMQJDUqVOnCicICPSNBKaoHINv1/FtOnJxoHwwBAvEDRLLYruFbpARKJeL0qzIvWLNT6IjNnAsfqdL1OLf1vKvhxxyiKpUU1BQUGVMEBPYeoJcGVjoX3755arcLbZ6lJeXq2//kWgVSXHPOOMMtXCtqYEFRAByiyDiBtEfkAZWji+++KKSIeDUuXNn2b59uxJVuM+nn35alSUObuCFrTK4P4xr0qRJSnpgXFhst23bNnAK7hvHYuzIB4PnpaNmUA4Z/0aJZjA5/PDDJdx4dF4ZjAfVXlDiWEf1aPE0b948gXhCaVyMDXlnnn32WSVnMGY0jBeRRMi/0qFDBxkxYoQ0bNhQ/Q5jxTzDnLjzzjulW7duNUYl1TQXgpn98ccfqu9jjz22irCxVpDC80GZ4R9//FFtQ5o/f75iBS4QFagktXTpUhUNhPmO0swocYyGfjAvIYqsfKyvBxxnPQeyTz9HbKnC/YLze++9pxjdf//9gWTHOBdzCOdjfMHNWlUIzxrHQb7gdYV5zPLESftnmjdGAiRAAiTgggDliQtoPIUESIAESKA6AWu0hPW3wUlBsciD8NBRITVViQn+xh/94jpz5sxRi0Usbnfu3KkWpegTC/2TTjqpinTRkSPWMVmrzuDniEhBRAvO19eAUMDCPriFSnKKxT0WyCivu3DhQhXpgYYcLVhAQ5rYSShrlwUWxIg6wfYWLLr79+8fiNzAgvyzzz5TcgU5L1C6F9syUCYa0R3hnlMwa+QlQX4ZXAsiAAv17OzsgNQZPHiw+rleoAePB1IjuNJLMPfgsaJ/yAhszWrVqlWNzwJlq9EQbWFtoeaM/r2duRD8vCHFIET09fTvwQV88Ds8Z/CBTILcgyCDgMA2MJR8RqWi4DFinMF86tevryKycHzwOdYy3WALSThr1iw11/QzhkALFo64LiKEcDzkCsaNLWoY31//+lc1Vr0dyzpGPRZddYp/80iABEiABEgg1QlQnqT6DOD9kwAJkAAJkAAJkAAJkAAJkAAJkAAJ1EiA8oQThARIgARIgARIgARIgARIgARIgARIgARqIEB5wulBAiRAAiRAAiRAAiRAAiRAAiRAAiRAApQnnAMkQAIkQAIkQAIkQAIkQAIkQAIkQAIk4I4AI0/cceNZJEACJEACJEACJEACJEACJEACJEACKUKA8iRFHjRvkwRIgARIgARIgARIgARIgARIgARIwB0ByhN33HgWCZAACZAACZAACZAACZAACZAACZBAihCgPEmRB83bJAESIAESIAESIAESIAESIAESIAEScEeA8sQdN55FAiRAAiRAAiRAAiRAAiRAAiRAAiSQIgQoT1LkQfM2SYAESIAESIAESIAESIAESIAESIAE3BGgPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAmkCAHKkxR50LxNEiABEiABEiABEiABEiABEiABEiABdwQoT9xx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIpQuD/AdcvFELuB5fAAAAAAElFTkSuQmCC", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Number of Sources 'on'", - "line": { - "color": "rgb(248, 156, 116)", - "width": 3 - }, - "mode": "lines", - "name": "Number of Sources 'on'", - "showlegend": true, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2 - ] - } - ], - "layout": { - "autosize": true, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Number of Sources 'on' against MCMC iterations" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0, - 4999 - ], - "title": { - "standoff": 20, - "text": "MCMC Iteration Number" - }, - "type": "linear" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - 1.9444444444444444, - 3.0555555555555554 - ], - "title": { - "standoff": 20, - "text": "Number of Sources 'on'" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQeYFEX6xr+Znd0lChwoKooioBIUEDAgQVEBsxgRA2bP8L87E2IOqCCi55kQPRVzQhEDZs6EYE4gSJCgAqIoCggb5/+8tdRs7WzPdPd0ze6Et57H546d6uqqX1WHevsLoWg0GhUWEiABEiABEiABEiABEiABEiABEiABEiABRwIhiidcGSRAAiRAAiRAAiRAAiRAAiRAAiRAAiSQmADFE64OEiABEiABEiABEiABEiABEiABEiABEkhCgOIJlwcJkAAJkAAJkAAJkAAJkAAJkAAJkAAJUDzhGiABEiABEiABEiABEiABEiABEiABEiCB1AjQ8iQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEiABEiABEiABEiABEiABEiABEggTwhQPMmTieYwSYAESIAESIAESIAESIAESIAESIAEUiNA8SQ1bjyKBEggywhEo1H56aef5LnnnpOPP/5Yrr/+emnfvn2WjSJ4d3///XeZOnWqvPbaa7J69Wpp3Lix9OrVS0455RTZZpttgp+ALZBAjhJ444035N5775W9995bzjvvPGnQoEGOjpTDqmsCGzdulLvvvltmzJghf//732XQoEF13YV6Od/XX38tN9xwg7Rr105GjRolLVq0qJd+8KQkQAIk4JUAxROvpFiPBHKEAF7SRo8erQQEs+y5557q5QWb6URl0aJFMnLkSPnzzz9rVTnkkEPkn//8Z0ZSmj17tkycOFHmz58vlZWVstlmm8m4cePyTjzB/N1yyy1y9tlnS7du3WTp0qWKw8KFCxWTMWPGyI477phwDiFAzZ07V5599ln54osvZP369VJcXCw777yzHHjggbL77rvLr7/+Kv/73//ktNNOy8i1kEudWrJkiVxxxRVqw3HNNdfI5ptvXm/Dq6iokAceeEBeeOEFtfk79NBDJRQK1Vt/bJ/YvG9m6/0D1+x7772n7v2rVq1SiMLhsFx11VXSt29fX8hKS0vV/eKDDz6ocdy2224rt956a8JNMDh+/vnn8uabbwruy2vWrFHHN2/eXLbffnvZZ599lDgViUTUehoxYoT67e2331b3nA8//FDWrl2rjsGzCvevZPcsp0HhnJdddpm675kF9y+wSCSK4d6G8aIvixcvlpKSEsWvVatW6n667777Svfu3QX32ZkzZ8qpp57qman5bHXrh+dGs6Dif/7zH3n55ZdVT7GeIOSzkAAJkEAmE6B4ksmzw76RQBoJ4EVw8uTJarODjQ/K0KFD5ayzzlIvrskKXryxCcdXI9Q//PDDXY9J41A8Nz1lyhS555578lI8gZXJlVdeqb7wXXTRRVJQUKC44e8333yzssq58cYb1QbGqZSXl8t///tfAcPevXvL0UcfLdttt506/p133lEvwBBTUDJZSPO8WLKg4ksvvSR33HGH6uk//vEPJVjUV8GG9JJLLhEIOlhDuD9g05tL5d133xVs9rLd8gT3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AiRAAiRAAiRAAiRAAiSQ9QQonmT9FHIAJEACJEACJEACJEACJEACJEACJEAC6SRA8SSddNk2CZAACZAACZAACZAACZAACZAACZBA1hOgeJL1U8gBkAAJkAAJkAAJkAAJkAAJkAAJkAAJpJMAxZN00mXbJEACJEACJEACJEACJEACJEACJEACWU+A4knWTyEHQAIkQAIkQAIkQAIkQAIkQAIkQAIkkE4CFE/SSZdtkwAJkAAJkAAJkAAJkAAJkAAJkAAJZD0BiidZP4UcAAmQAAmQAAmQAAmQAAmQAAmQAAmQQDoJUDxJJ122TQIkQAIkQAIkQAIkQAIkQAIkQAIkkPUEEoonixYtknnz5sk222wjbdu2lWbNmkk4HM76AXMAJEACJEACJEACJEACJEACJEACJEACJOCHgKN4smbNGrnkkktkyZIlsbYgnLRq1Ur22msvOfXUU6Vx48Z+zsO6JEACJEACJEACJEACJEACJEACJEACJJCVBBzFk/Lycnn66aflrbfeks0220y6d+8unTt3lvbt20vz5s0lEolk5WDZaRIgARIgARIgARIgARIgARIgARIgARLwS4AxT/wSY30SIAESIAESIAESIAESIAESIAESIIG8ImBdPFm9erWMHz9eRo4cKS1atMgrmBwsCZAACZAACZAACZAACZAACZAACZBA7hHwLZ6sX79eFi5cKH/99VctGmVlZfL222/Ljz/+qAQUiie5t2A4IhIgARIgARIgARIgARIgARIgARLINwK+xJOPPvpIxowZIxBQkpVtt91Wbr31Voon+baaOF4SIAESIAESIAESIAESIAESIAESyEECnsUTCCbXXnutfPPNN9K3b1/p1auXSl9sFlqe5OAK4ZBIgARIgARIgARIgARIgARIgARIIM8JeBZPfv/9d7noootkv/32kxNOOCEhNsY8yfMVxeGTAAmQAAmQAAmQAAmQAAmQAAmQQI4R8CyeVFRUyO233y677LKLDBo0KCGGyspK5dbTuHFjCYfDOYaLwyEBEiABEiABEiABEiABEiABEiABEsg3Ap7FE4BBoNg333xTzjzzTIlEIo6s/vjjD7n//vtVnXi3nnyDy/GSAAmQAAmQAAmQAAmQAAmQAAmQAAlkPwFf4gmGO3v2bFmxYoXsv//+EgqFahAoLy+XmTNnyuOPP64CyzLbTvYvEI6A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k0LcMYdThARIgARIgARIgARIgARIgARIgARIgAQMAgnlyaBBg6Rnz55qi9iioiISIwESIAESIAESIAESIAESIAESIAESIIGCJJBQngwYMECw7i+d46CDDpIhQ4YU5FbF6fDiOSRAAiRAAiRAAiRAAiRAAiRAAiRAAu4lkDTy5LTTTpOOHTsmlSCVlZUyadIkefrpp6WqqkqOO+44ueKKKyhO3DvmbBkJkAAJkAAJkAAJkAAJkAAJkAAJkIANAo5yniCp7COPPCLTpk0TbFXcp08fgXAp5K2KbbBnURIgARIgARIgARIgARIgARIgARIgAQ8QiCtPgsGgLF26VNq2bSt+vz9uN3799VcZPny4fPXVVyrK5Nprr5WjjjqK+VE8MOhsIgmQAAmQAAmQAAmQAAmQAAmQAAmQgHUCceVJqtMXL14sw4YNEwiUli1byuDBg6V169apTuPfSYAESIAESIAESIAESIAESIAESIAESMBzBGzJk+rqannvvffksccek/Lyctl3330Fu/I0a9bMcx1ng0mABEiABEiABEiABEiABEiABEiABEjACgHL8mTLli3y5JNPyjvvvCOQKF27dpV+/fpJrVq1rFyHZUiABEiABEiABEiABEiABEiABEiABEjAkwQsyRNzfhMmhvXkOLPRJEACJEACJEACJEACJEACJEACJEACaRJIKU+WL18ud911l/z8888qMewNN9wghx9+eMLEsIhKwS48KOvz+dJslvdOQ2TOSy+9JFOmTBFs34xdh8477zxG5sQZSmxt/eijj4b/UlpaKvfcc4+0b98+/G8bNmyQp556Sj744AOVtLhXr14q2il6Jyer5bw3o+K3+LfffpOJEyeqOXb55ZfHLWSVie5yXmOM7yokxsY26z169JCDDjoobhfw2b7zzjvl008/Df+9TZs2Ku9Tw4YNw//29ddfqyWNqHO33XaTK6+8Uvbee++YOq2W8xJPCHZEJn700UfqM4p7RN++fWOWdIZCIZkzZ4488cQTsmbNGtl///1VsvEWLVpEdFd3OS+xRN8XLlyo5tKKFSukSZMm6n6C/8VL4D5v3jy5/fbbpaKiItzN/v37S5cuXcL/bfX+ZLWcl3iirfjMPfzww7Js2TLF88ILL5TOnTvH/Eax2n/d5bzE0/hsYqdFfO7x2b3qqqvU92dRUVFMV3i/tze6U6dO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/vnny0EHHRTujtX+6y7nJZ7YJQ/fl1gOhwgz3LcxJ8ePHy9XX311OGEs7/fpj2o8eYLarN47dJdLvyfuODOePIE4hcjDcvF99tlHsHUxIiBxrzJ/JxT6vcgdI8hWkID7CFCeaBoThGAiWdU777yj3vhhu8ju3burbU15iOAH55NPPil4a4cbEh6c8LCKB0vzA6vBCluVojwiTvAggB+6xx13XMxbWKvl8mEMjN2bzH2Jt5OTVSa6y3mJcfTuG2g73jaZk5kiagTRT8jgHwgElByA6GvZsmVMVzGnkd8IeRSw/TZ+kOEhFiHX5sNqOa+whDhBODkYxTsgSyH7jCgICBVIKfx4xblIlghOCKc2H7rLeYUnwukhliDg4x3YZrRLly4q1B9yCf9DWfBDlMqxxx4bZm0+3+r9yWo5r/A033cQDYY8PEcffbQS+PGWllntv+5yXuGJzyxeDGEZCT6jO+ywgxIpiDhD8mzj4P0+/RFNJE+s3jt0l0u/J+44M548gdTHPMZvIAhA/LZM9J1QqPcid4weW0EC7iRAeeLOcWGrSIAESIAESIAESIAESIAESIAESIAEXEKA8sQlA8FmkAAJkAAJkAAJkAAJkAAJkAAJkAAJuJMA5Yk7x4WtIgESIAESIAESIAESIAESIAESIAEScAkByhOXDASbQQIkQAIkQAIkQAIkQAIkQAIkQAIk4E4ClCfuHBe2igRIgARIgARIgARIgARIgARIgARIwCUEKE9cMhBsBgmQAAmQAAmQAAmQAAmQAAmQAAmQgDsJUJ64c1zYKhIgARIgARIgARIgARIgARIgARIgAZcQoDxxyUCwGSRAAiRAAiRAAiRAAiRAAiRAAiRAAu4kQHniznFhq0iABEiABEiABEiABEiABEiABEiABFxCgPLEJQPBZpAACZAACZAACZAACZAACZAACZAACbiTAOWJO8eFrSIBEiABEiABEiABEiABEiABEiABEnAJAcoTlwwEm0ECJEACJEACJEACJEACJEACJEACJOBOApQn7hwXtooESIAESIAESIAESIAESIAESIAESMAlBChPXDIQbAYJkAAJkAAJkAAJkAAJkAAJkAAJkIA7CVCeuHNc2CoSIAESIAESIAESIAESIAESIAESIAGXEKA8cclAsBkkQAIkQAIkQAIkQAIkQAIkQAIkQALuJEB54s5xYatIgARIgARIgARIgARIgARIgARIgARcQoDyxCUDwWaQAAmQAAmQAAmQAAmQAAmQAAmQAAm4kwDliTvHha0iARIgARIgARIgARIgARIgARIgARJwCQHKE5cMBJtBAiRAAiRAAiRAAiRAAiRAAiRAAiTgTgKUJ+4cF7aKBEiABEiABEiABEiABEiABEiABEjAJQQoT1wyEGwGCZAACZAACZAACZAACZAACZAACZCAOwlQnrhzXNgqEiABEiABEiABEiABEiABEiABEiABlxCgPHHJQLAZJEACJEACJJALAm+//bY89thj0q9fPznppJNy0YS8uWZlZaUsXLhQXn75ZenYsaOceuqpedM3doQESIAESIAECp0A5UmhzwD2nwRIoGAIVFVVyddffy2zZ8+W9957T8rLy6VNmzYybNgwadiwYUoOv/76q9xwww2yatWqcFk8bF9zzTUR54ZCIVm2bJlMnjxZPvvsM1m/fr34fD7ZYYcd5N///rd6QP/jjz/k+++/l86dO8vSpUvlk08+kSlTpshff/0lTZo0kREjRkirVq1Stmnz5s1y2223qQdW4zj00ENlyJAhUqtWrYjzcc13331XPvzwQ1m5cqWAB/q9//77S/fu3WXHHXdUbT7jjDNizjUqQh0DBgyQn376KaZt8Vik7IALCrhFnkyaNEkeffTRMBHMg7vuukvN0XjHAw88IGi7+Ug09tnAjLmB+TN9+nRZs2aNXH755XLaaadl49K8BgmQAAmQAAmQQBYIUJ5kATIvQQIkQAJuIgC58dBDD8lbb72lpEb//v2VxEh1mB9uO3XqpCRCWVlZxGkbNmxQUQwQNMcff7ycfvrp0rJlS3WdjRs3yqeffipPPPGEkieXXXaZEhXGYa7/KskNQQAAEZ5JREFU7LPPlt69e0tRUVHSZs2bN09uv/12qaiokL322ktuueUWadasWcQ5iAbAQ/azzz4ru+yyi5x33nnSvn17KS0tVedB9Dz11FPy5ZdfykEHHSS33nqr1K5dO+F1we+bb75R14UYwjk33XSTNGjQIOKcBQsWSOPGjWXXXXdNhTYrf3dbe+J1GjJs6tSpMm7cOCX3WrduLXfeeadst912cRn9/fffMmrUKPntt9/ijn1WwEZdxJjHlCe5oM9rkgAJkAAJkEDmCFCeZI4tayYBEiAB1xLAA95LL70kkB0QCYje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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter = elq_model.components[\"source\"].plot_iterations(plot=plotter, burn_in_value=burn_in, y_axis_type=\"linear\")\n", "plotter = elq_model.components[\"source\"].plot_iterations(plot=plotter, burn_in_value=burn_in, y_axis_type=\"log\")\n", @@ -462754,78639 +563,10 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "id": "1c2058b5-4655-46ea-ab41-5551840b69d6", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 0", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgb(250, 231, 184)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 0.0014669410086606076, - 0.0004176050878489616, - -0.00022938137698525488, - -0.0003545391409071656, - -0.0004095487644462397, - 0.0003360745034889504, - 0.0010186974501970505, - 0.0010326482966657767, - -0.002187700981169795, - -2.20378504633748e-06, - 0.0014184202720227378, - -0.0001090762178514777, - 0.0008607153957351094, - -0.0003256972049288041, - -0.0017518492112961206, - -0.0009570430065181932, - -0.0004242571858891229, - -0.0015637291396799321, - -0.0013582669096586831, - 0.0003828442570700818, - 0.00017479957580277287, - 0.0014032587634241805, - -0.0010928638852340895, - -0.0003408188641952017, - -0.0021767219554672313, - 0.0008259492687958586, - 0.0005385768865451727, - -0.0012265350423014585, - 0.001188667582520299, - -0.0005068959655728795, - 0.0004020318896230689, - 0.00037304213140802137, - -0.00023609347928114878, - -0.0010182211127400878, - -0.0006962266963266421, - -0.0010213388164462534, - 0.0020854575898188125, - 0.0018452383539374168, - 3.778240851008333e-05, - -0.0011120525766697721, - -0.0026707146129197547, - -0.0004911766725086844, - -0.0005304709465731596, - -0.0019030063166717954, - 0.0009905427706474147, - 0.0004269627281508071, - -0.0014437718767133785, - -0.00041022134049111545, - 0.0010165004396162126, - -0.0003125390491652364, - -0.0002693472973766761, - -0.0005261275446106617, - 0.0005511655201900107, - 0.0001937248114272768, - 0.0002025935347021905, - -0.0014171566266417196, - -0.002318892836858471, - 0.0015511703564577537, - -5.996264661750087e-05, - -0.00017943565831566688, - -0.00029392656154704277, - -0.0013907398264673052, - 0.000492005896938507, - 0.0010564638542046741, - -0.0006369837143281505, - 0.0013425862157474648, - -0.00010949055814152156, - -0.00056408247377704, - -0.0005747187858383991, - 0.0006089097528110041, - 0.0004931551998321227, - -8.41010297992609e-06, - -0.0013848127320767439, - -0.0007220184448311896, - 0.0012223682040267045, - -0.0005502896672590674, - -0.0006838334742298032, - -0.0004036777797577894, - 0.0001704166391149418, - -0.00030974289358869816, - 0.0005437094152810494, - 0.0011277876061412118, - 0.00048353189272289717, - 0.00020192685289058027, - -0.0012662847829611832, - 0.001373725167672892, - -0.0005627246564371846, - -0.0006016119993508501, - -0.00060806543934596, - -0.0009247067730935089, - -0.00015102881587684364, - 0.00023853799054790028, - -0.0007643616492182781, - -6.208204474615812e-05, - 0.00024319374326802696, - 0.002101871367417518, - 0.002406500093749241, - -0.0013619014356853788, - 0.00024695083794410214, - 0.0005569696312574165, - -0.001561883451663186, - -0.0023400963470538256, - 0.0007802721814431519, - -0.0003992541879633809, - 5.1848364876699874e-05, - -1.2657860278666825e-05, - -0.0008729004870337789, - -0.0006281313169220453, - 0.0016511939759728475, - -0.00039996792416071745, - 0.0020435057841071934, - 0.00029743246182483487, - -0.0020198345821348584, - 0.001172168041513664, - -5.564005544087931e-05, - -0.00022633826910584668, - -0.00046258514728857094, - -0.0009585845855167503, - 0.00069776915773562, - 0.0005927832666925504, - 5.275578187926764e-05, - 0.0009401861201985042, - 0.0005754130094372579, - 0.00012650715641680246, - -0.000800921783793872, - 0.0004287226427178397, - 0.000672130871726954, - -0.0003955334075189061, - -0.0005062568311763446, - 4.288849697724089e-05, - -0.0008533000308205977, - -0.0008481697228678775, - -0.0011867909740869624, - -0.0015501003435376113, - 0.0001911734797321233, - 0.0010365309617426754, - -0.00174077060163738, - -0.0005223807856117244, - -0.00010518757456500478, - -0.0006606992235103022, - 0.0003527709344073573, - -0.0014686998527834486, - -0.0004597985602260978, - 0.0006862727980854954, - 0.0003787051394667699, - 0.0012067764707688164, - 0.0006487705388526091, - 0.0011359117367337299, - 0.00014701779905507186, - 0.0005517142444495379, - -0.0009109331994270537, - -0.0003010620428104183, - 0.0009150942032648688, - -6.519809790122039e-06, - -0.0013178232565040427, - -0.0008795255938615901, - 0.001162758269175413, - -0.0007426692306449609, - -0.0018814743938727993, - -0.000418481116203577, - 0.0006902832384077052, - -4.438586273535391e-05, - 0.0006404551511580748, - 0.0005977552611443365, - -0.0009610998215319411, - 0.0005362269672989931, - -0.0004781779388862744, - -0.001830979028051998, - 0.001857424199664023, - -0.0015945575279553634, - 0.0012619192013005184, - 0.00011337999595702441, - -0.0008501315384019447, - -0.0008435876221458329, - 0.000253292193111017, - -0.0008385923094158802, - -0.0004532394189343372, - 0.0004865408770103253, - 0.0003241875035981894, - 0.0012068038813373577, - 0.001136542501752612, - -0.0012497790054968715, - 0.001857808683077015, - 5.170699427531387e-05, - -4.461254610875172e-05, - -6.44417738816062e-05, - 0.0018414124285299736, - -0.0012196683861482776, - -0.000758731445947869, - 0.00077990062193333, - 0.0025200982929235766, - -0.0004298534685224885, - -0.0007085138509333518, - 0.0003621059210316573, - -0.0007975541110937011, - 0.00038318249262105764, - 0.001060256474784463, - -0.00011324818379165142, - -0.0010203763466913997, - -0.000992799433390788, - -0.0013742556534056644, - -0.0007366612113519653, - 0.00019113718483872275, - -0.0003798154187657285, - -0.0007043630170530315, - 0.0002285129001159103, - -0.0007872273545233721, - -0.00024159484623139128, - -0.0003479949218676003, - 9.434805505883574e-05, - -0.00010925574239280749, - 0.0006536600340867774, - -0.0007897962924539389, - -0.0008711976743225299, - -0.00021431326929544932, - -0.00138337506892509, - -0.0004962645205646158, - -0.0016628591379321525, - 0.0005334427978876787, - 2.627792053359633e-05, - -0.00018255551480544203, - -0.0014036594258001528, - -0.0014316953530373144, - 0.0006122122833310859, - 0.00023911417443730866, - -0.000621389293797382, - -0.0008062380154294762, - 0.00048336755673053576, - 1.862874819755525e-05, - 0.0008614265989495008, - -0.0011162265434477671, - -0.0002887786384801181, - -0.001238513613875924, - 0.00012475109472547547, - -0.00026639716066621593, - -0.002520084395674345, - 0.0005146609552010763, - 3.9941260120005745e-05, - -0.00035598615132513886, - 0.00011195233166099041, - 0.001220501988845919, - 0.0001066445719264029, - 0.0014857129602972858, - 0.0001710236703712038, - 0.0007991343008930418, - -0.0006941580418937727, - 5.432804846124081e-05, - 0.0007910308678026374, - -0.0016524952996642887, - -0.0009086640716795889, - 0.0006648814856646534, - -0.0022182765774838293, - -0.00022445947675726573, - -0.00027878091074520767, - -0.0016124799063701226, - -0.0013038604724973785, - -0.00011274313640577261, - -0.0013938037761951564, - -0.001334706810199391, - -0.0008200284947787342, - -0.00038805650328519527, - -0.0007294882983062844, - -0.0003651031986479881, - 0.00030386447806181175, - -0.0021576672453539262, - 0.0024628528746891854, - 9.784219686688596e-05, - -0.00010568502494112057, - 0.0016048795150531965, - 0.00030755518928157, - 0.0005494068865934718, - -0.0007053907124803251, - 0.0008040581114445534, - -0.0007706931443382668, - -0.0014387134377023842, - -0.00028562459003371, - -0.0002681374271411434, - -0.000819029404574377, - -0.00022423766784030133, - 0.0004949573302190052, - -0.002245261857888485, - -0.0011764804805028343, - 0.001235355909137939, - 0.0008476830565811652, - -0.0001277434279831955, - -0.0011167178013066017, - -0.0006456508108364316, - -0.00131971785776246, - -0.0009319003137982869, - 0.0009219236669915181, - 8.372253624327614e-05, - -0.001494379919943101, - -0.0022305260140545406, - -0.0008811032443774174, - 0.0002920991120672439, - -9.686885543963426e-05, - -0.000635317230633547, - -0.000267718112824091, - 0.0014994216452558452, - 0.0005249756104155123, - -0.0004244897430402133, - 0.0015074742986848294, - 0.0003747674038253864, - 0.0007689050366507364, - -5.1194639252723995e-05, - -0.0013534970113366703, - 0.0003831099683965424, - -0.0006034455925651204, - 0.00042718603146413883, - 0.0004089150343599172, - -0.0009066388246472059, - -0.001574808056970449, - 0.00019514976683121928, - 0.0007874661728451496, - -0.000321528100445245, - 0.0015639301802927118, - 0.000742257099640272, - -0.0007866292448295636, - -0.0010387236613821158, - -0.0015487947325507738, - 0.0007681370334109068, - 0.0006002908707064365, - 0.0021949925709448628, - -0.000113342500376747, - -0.0007448710978185942, - -0.00032394420378254027, - 0.00036964145796071116, - -0.00046336539145940805, - 0.0008664082478921785, - -0.00015684490638386657, - 0.00022038175540190782, - 0.00020937175443781634, - 0.000559096049402861, - 0.0010018223576109982, - -0.0005015801829486568, - 0.0012969685431972254, - -0.000597783814481851, - -2.122057164010565e-05, - 7.231561835800474e-06, - 0.00038981660778418027, - 0.00038946007892326495, - 3.0940892677848726e-05, - -0.0001713928554420382, - -0.00022879428915038532, - -0.00015997686405879897, - -0.00018356698254428231, - 0.0003803199719511799, - -0.0006169819554978873, - 0.0007295968235663036, - 0.0010394280297349736, - -0.0012445678565068054, - -0.0011138549678405784, - 0.0006453671896675175, - 0.0004086173421806391, - -7.412014168759766e-05, - 0.0009633829399214539, - 0.0008542356639528728, - -9.831709609443403e-05, - -0.00043363163142364305, - 0.001719615155895543, - 0.0009959438197706073, - -0.0017633851338457534, - 0.0009341626270581004, - -0.00036804901581739927, - -0.0001494794929479567, - 0.0010719111923295885, - 0.001168396091744781, - 0.0005203055349458001, - -5.538895343086181e-06, - 0.0002571509139780953, - 0.0008009798879984551, - 0.0018628837585944974, - -0.000471608607812435, - -0.0015739090204890912, - 0.0010695688042854892, - -0.0005589642031744924, - 0.0025484831443560087, - -0.0004085224744138704, - 0.0001695748344467419, - -0.0007444263768759496, - -0.0012833766814059914, - 0.0017662275942243104, - -0.00040094379558630377, - -0.0005657838141114404, - 0.0019283703833803077, - 0.0007902799185302454, - -0.0002874627566777211, - -0.0005277538419645102, - 0.0009655747167402636, - 0.0003112991244380715, - -0.001036263193391559, - -0.0003204410334979498, - 0.00016382009649870227, - 0.0008951768794440519, - 0.0003951795578670083, - 0.0006523367074015231, - -0.000691975260261837, - -0.0007731460010838801, - -0.001700396333296269, - -0.00016898580299214906, - 0.0010540418283686416, - -0.000386578170676344, - -0.0009827082532759483, - 0.0005465384927491942, - -0.0013985076196398338, - -0.0010307663702067145, - -0.00022895579390100972, - 0.0004171513096137152, - 0.0017843917786221203, - 0.00015113258955427985, - -0.00030926801896755666, - -0.0014984729243537839, - -0.0008881986673529974, - -0.0004839869849805062, - -0.0009067417541875385, - 0.001111391742556928, - 0.0003801778867311786, - 0.00035795157659867946, - 0.0004265601756801203, - 0.0008762833112069135, - -9.429240982413185e-05, - 9.295816386383935e-05, - 0.0007080570080978908, - -0.0013964542858223284, - 0.0008317810972729639, - -0.00045617158939158014, - -0.0006520370781735581, - -0.0006046579399999969, - -0.00035184750602372685, - 0.00012078321880239169, - 0.00029101419714351454, - 1.669713237793064e-05, - -0.0005734131510580657, - -0.0015363577469695057, - -0.0019272150491476633, - -0.00029671417618936323, - -0.0016860285337024132, - 0.0004840914614594259, - -0.0002790986454769015, - 0.001220020894111264, - -0.00034656874665542597, - 0.0023039817655871792, - -0.0005879402662633338, - 3.39853535961e-05, - -0.0010298713194833514, - -0.0007357551186668315, - 0.0019174268527160211, - -5.541496161886496e-05, - -0.001484437567997972, - 0.0013398854588935886, - 0.0009686175183917406, - 0.0010012205481649988, - 0.0006142255712536022, - 0.0002634954541596364, - -0.001897102663544499, - -0.00035939252151105834, - -0.00014372138531769732, - 0.00031127552777815936, - -0.0009603377122753561, - 0.0009968872175718563, - -0.0008030562838189688, - -0.0016374801978344365, - -0.00030018331273047355, - 0.002391653598151991, - 0.00034100139932193664, - -0.001088414550739105, - 9.23031653831821e-05, - 0.0005510749293746338, - 0.0008871261649118191, - -0.0008005301568629238, - -1.7576365133369045e-05, - -0.0011773606878901777, - 0.0009537585660113866, - 0.0006763635626172666, - -0.0009576833129231169, - -0.0014048638818535554, - -0.00013751302537346816, - -0.0012328777491039734, - 0.000154389147140769, - 0.002406858035319626, - -0.002618851413071911, - 0.00038962381534435493, - 0.0012488485768966735, - -0.0008667773640387054, - -0.0014085899981159619, - 0.0008496293883294278, - -0.0006774297317821104, - -8.625965915969097e-05, - 0.0008725104841009191, - -0.0009776629843807406, - -0.0009658204993404752, - -0.0006766897115224551, - 0.0003288866879732884, - 0.0011182045434119932, - -0.0006112789898320312, - 0.0002650680888371304, - -0.0007087388989276189, - 0.0009861790552861726, - 0.000293027227041239, - -0.000924589395093711, - 0.0007505295099423621, - 0.0002183641721999963, - 0.0004835709697088823, - 0.0016679673169416804, - 0.0001967896262919383, - -1.7737429077448508e-05, - -0.0007076895138208211, - 0.00048702583199301195, - -0.00018537280794065416, - 5.15089329890584e-05, - 0.0006344325772616561, - 0.0001022922307091239, - 0.0010993100625879902, - -0.0005320211119842674, - -0.0016065999407341431, - 3.563093449916013e-05, - -0.0009872041662514156, - 0.0006245145390546686, - 0.0008588030636032832, - 0.0001793021122303052, - -0.0004654919706175733, - 0.00017052296827448998, - 0.0007806930852990667, - 0.0012735582297200153, - -0.0005975638040636409, - 0.0009321033359109653, - 0.001876641578707313, - 0.0002683507359439939, - -0.00014908926749792462, - -0.0017610143865382521, - 0.00022052663423729286, - 0.0009499558060371331, - -0.001081132451604792, - -0.0001948039702062185, - 0.002104679599197938, - -0.001653750736738214, - -0.00019119561035816826, - -0.0010962876617753748, - -0.001361489050997305, - -0.0009307738281167825, - -0.0006225386125455695, - 0.0010579842916097408, - 0.00037264123054894864, - 0.001567120207597795, - 0.0009110279989093472, - -0.0018962573358921675, - -0.0004396546723054669, - -0.0002832429175286471, - -0.0002807400101393904, - 9.38882365374396e-05, - 0.0004048185030540798, - -0.0020904059890879552, - 0.0008701080979568366, - 0.0004013442718728972, - -0.0003987461837203858, - 0.0006990477872714456, - -0.0009225693181219921, - 0.0006242000639338672, - 0.0017712360630568666, - -0.0008412148455470025, - -2.5719943457720635e-05, - 0.0003792107223978423, - -9.66138263079922e-05, - 0.0004754442366380009, - 0.0005063404445458719, - -0.0005006669271429488, - -0.0010242251750306884, - 0.0007138824014434268, - -0.0012879991345330726, - 0.00018929842996817087, - -0.001223391603347515, - -0.00017695852372464022, - -4.7287887765729225e-05, - 0.00045277844966034285, - -0.0011313241269935062, - -0.00012089922638951064, - -0.0008447201100825662, - 0.0005957760742919413, - -0.001035930700205584, - -0.00196638053979348, - -0.00018007793636665728, - 0.0004923861898476624, - -0.00039933232538982876, - -0.0018535040412866243, - -0.0007764433665339559, - -0.0022753122515251504, - 0.002144038693902181, - -0.00023755997840116085, - 0.0006190239270276783, - 0.0007892214779254414, - -7.055997625550841e-05, - -0.00042848205844445283, - 2.749620384381851e-05, - 0.0009658426707982842, - -0.0008878992034264097, - -0.00031684870732452935, - 0.000646664313988904, - 0.0003034145778486356, - -0.0008196612041871191, - -0.002833215306035351, - 0.0011175546678409852, - -0.00022116539242228916, - 0.0009731335083363506, - 0.0010292336538580743, - 0.0003473933862670809, - 0.0004027551246924918, - 0.0016150210606761118, - 0.0005496399824092412, - -0.0018209720424876305, - 0.0006768530862219656, - -0.0007401739625987159, - 0.0009012039134780938, - -0.00029239573781262814, - -0.0007025904488863609, - -0.0006750421826996557, - -0.0007241917547019318, - 0.00018965328252167635, - 0.0005575972177135412, - 0.0007584215403467348, - -9.212405732260187e-05, - 0.0008351686183830698, - 0.0004441411345669769, - -0.0007509478500652268, - -0.0003413825855590765, - -0.0011680566912157355, - 0.00017073587938129877, - 0.0003023493953368782, - 0.0002901102113706587, - -0.00021225806450142346, - -0.0021510175414251307, - -0.0007264363861889744, - -0.001069068679012207, - -0.0010992589887502918, - -0.0008508114546453197, - -0.0006865351234660838, - -0.0008915188009049023, - -0.0001264841195333775, - -0.0010936467461850124, - 0.00018800163928959254, - 0.000559503090462226, - 0.0010662203212796957, - 0.0008216043750846766, - -0.0003436191801502483, - 0.0008000236366349656, - -9.028949721410625e-05, - 0.000525500533080323, - 0.0010972014096708711, - 0.0009252587452064861, - 0.000821461314903428, - 0.00035811339065206746, - 0.0002477027826749413, - -0.0011073180770224515, - 0.0006042703659638294, - -0.0019530308399021458, - 0.0008920153298291203, - -0.00026158329735123225, - 0.0006393033402019177, - -0.00029894179820141273, - 0.00021570131325946332, - -0.000295409682778097, - 0.0008389243237387774, - -0.001441885304883763, - 0.0002701469769548879, - 0.0015005049584683786, - 0.0010526961155434172, - 0.0013182449013226768, - 0.0004387210309719807, - 0.0008998761900721985, - 0.0009083107838288994, - -6.455883795018958e-06, - 0.00040666713103090145, - -0.0007794806113683782, - 0.0002129890023802552, - -0.0002708201844649146, - 0.00016255677571460416, - 0.0024080488080417285, - -0.0002275601959512557, - -0.0022065337538272954, - 0.0016301192985264227, - 9.899165342852483e-05, - -0.0002556025666145831, - -0.0010258299026422093, - 0.0006882864765065884, - -0.0005621051659549435, - 0.0011721380413324872, - -0.00023983907750934594, - -0.00034695662708080914, - 0.0016377916969294375, - 0.00035657208103545145, - 0.001273495953902774, - -0.0015503981444170093, - -0.0006647532946180511, - 4.188432971780601e-05, - 0.001062661621942521, - 0.0009671159538056567, - -0.0006369324974731322, - 0.0010722428457834053, - 0.0005224791807525825, - -0.0007606472937354598, - 0.0004657693646942374, - 0.0006616526937189137, - -0.0006262420811333366, - 0.00032327409024423344, - 0.00025837419745996035, - 0.0005311335440950309, - 3.044930037603256e-05, - -0.0010077506642074982, - 0.00036513269039462173, - -0.0010682762873586817, - 0.0002775935521600259, - -0.0006313137118842054, - 0.0012033346968224354, - -2.7771871567971124e-05, - -0.000913085497033882, - 0.0008640172268976614, - 0.0009689459913016349, - 0.0005743524567664952, - -0.0004235452015989288, - 0.0011022106950369862, - -1.5896126744667487e-05, - -0.0007353276596817864, - 0.0007763824687627257, - 0.0010881876706699883, - 0.0006399911875125473, - -0.0014025949500566378, - 0.0011635295122763005, - -0.0005354002772124556, - 0.0006074971625880752, - 0.0004697251329621335, - -0.0005501555013685027, - -8.225339607718734e-05, - 0.0018380026443242854, - -0.0009079871579854175, - -0.0008506288969842132, - 0.0015841734662251764, - -0.0010407832692744504, - -0.0007090395282830554, - 9.447771401365626e-05, - 0.0005383985282947394, - 0.0014071170707140861, - -0.00015973747565060069, - 0.0005120516706177105, - -0.0010739691143995484, - -0.0007949174449968207, - -0.0015096968487160645, - 0.0002216767363389127, - -0.0003851043252657658, - -0.0002877398799239973, - 0.001312643574505132, - -0.0003621279581888253, - -9.079517195671246e-05, - 0.001612107301651266, - 0.0003434867838384702, - 0.0004471099675104316, - 0.0008202292884004745, - -0.0015672282660219635, - 0.0010410893310175194, - -0.0003080832610431722, - 0.0005618258126448508, - 1.1621856715304048e-05, - 0.0013230019071594117, - 0.000980764041079878, - -0.000283921878330055, - 0.0019696438996249627, - -0.0010243044262975471, - 0.0004810279803116901, - -0.0011219380191290636, - 0.0001904039122159786, - -0.00047936275976281093, - 0.0010761656568196362, - 0.0008560880249290579, - 0.0007907949311485, - -0.00022841182099927443, - -0.0003143023763695142, - -0.0015124039063953612, - -0.0005866647787737926, - -0.0022589025095316392, - 0.0009422501968605966, - 0.0007322843190493106, - -0.0014079825549340567, - -0.0005901645757896276, - 8.316083276994123e-05, - 0.0009700794886627807, - -0.001466376479517039, - 8.070906808224884e-05, - 0.0004501609121711771, - -0.0001632886602382045, - 0.0001861183220025798, - -0.0002176643378390837, - -0.0018670272723307266, - 0.002540400278325116, - 0.0006983558187196857, - -0.0012717437872125335, - 0.0018362894369659132, - -0.0008588738474795064, - -0.0005081722156642659, - -0.0002638346796663386, - -0.0004381154611698472, - -0.001981708537314267, - -0.002605540868452393, - -0.0005126133963574236, - -0.00040490758826649225, - 0.0006648084405319226, - 0.0008882237385023157, - -0.0011581906286656078, - 0.0022497204812571624, - -0.0007276698753031847, - -0.00028959379925123853, - 0.00047128273231394305, - -0.0013120450451873256, - 7.742351465945464e-05, - -0.00016973568083401329, - -0.00019289401679143224, - -0.0010404292962456563, - -0.0011526054713415334, - 0.0010449442171637205, - 0.0014796745833896177, - -0.0012538472901980212, - -5.944909196381074e-05, - 0.0016113764168242189, - 0.0013413565624138047, - 0.0010209744882739042, - 0.00048341528203807134, - -3.073396470515356e-05, - -0.0005624380561741859, - 0.0009931365554569696, - -0.0017009907186032146, - 0.0013982918488857883, - -0.0004411735681068602, - -0.0004813914499224262, - 0.0008526119769098893, - 0.00012756052166745875, - 0.000930225948357992, - 0.0017236093196484525, - -0.0002124917505258104, - 0.0003268534063236805, - 0.001422438700906645, - 0.0003794433629870436, - -0.00042897093975849843, - 9.530752055421018e-05, - 7.358494985565335e-05, - 0.00039723163505161834, - 0.0012950430246783163, - 0.0009638932382468431, - 0.0007524641059456153, - 0.0009525152581867298, - -0.0005908805758047247, - 0.0008773784364785257, - 0.001094127053452594, - 0.0009970402202679495, - 2.3352850725025364e-05, - 2.1415636130866676e-05, - 0.0020155285350626152, - 0.00015049208786336113, - 0.0007464979678369016, - -0.001624874229985147, - 0.0006417240981858868, - 0.0003176328660377815, - -0.0016547592762111883, - -0.002060577904900887, - -0.00024455243911337515, - 7.455127901507072e-05, - 0.0012897878452259894, - 0.0003153207695700487, - 0.0009193025819953445, - -8.148870200036236e-05, - 1.1441571275997727e-05, - -0.0007628539406064398, - 0.0011546772348061632, - -0.0010162978083992932, - -0.0011663233837383336, - -0.0011980838225729216, - 0.0007133786600250795, - -0.0014771849587401316, - -0.0008428393595706751, - -6.253857691743355e-05, - -0.000367146182018282, - 0.0006138371592150653, - 0.00027001481310436276, - 0.0006747440688810545, - 0.0004179870728450986, - 0.0014594897605046068, - -0.00043549727379694537, - -0.0005474033655436531, - -6.088974898868903e-05, - -0.0002511773366363416, - -0.0007174638386122269, - 0.00028525564518854554, - -0.00019216939867759713, - -0.002211915900564699, - -0.0015281595424700288, - -0.0006806020385132218, - -0.00166635396114731, - 0.000665319591841962, - 0.0009049413263973998, - 0.0014445250395152146, - 0.0004927061516442958, - -0.0010370714387909425, - -0.0007116999084198842, - -5.447096992162271e-06, - -0.0009320870725174843, - -0.001724558346591853, - 0.0009596394430020404, - 0.0018613417339584056, - -0.0003935138029997327, - 0.0006733073434452526, - -0.0002645700840097038, - -0.0002701635861073544, - -0.000776326004543228, - -0.00014933108134030287, - -0.0005746255969612319, - -0.0011904902013045297, - -0.0006969458102670729, - 0.0005283584655347244, - 0.0022394907484309693, - -0.00016297792089115375, - -0.0015540908607076737, - -0.00023456451190775494, - -0.0010006411404332573, - -0.00023805588575312906, - -0.0004902070342143466, - -0.0013129904190610335, - 0.0010210802690181866, - -0.0008939943242386699, - -0.0010676406126741045, - -0.0014847566596803247, - 0.0015654115776486488, - 8.671463195350208e-05, - 0.0005291185448129515, - 0.0007419935198653637, - -0.0003314334382323692, - 0.0008496748996618784, - -0.00016665334503530456, - -0.0015967865888054731, - 0.0007974710394632958, - -3.613171545114073e-05, - -0.0005190724671317179, - -0.0009517319812039873, - -0.0003584832065263928, - -0.001128790105369156, - 0.0007920362705598713, - -0.002294106837529347, - -0.0014987606544609366, - -0.00040149911622060225, - 0.0003446833683678405, - -0.0001307523985102313, - 7.375079836543137e-05, - -0.00043022925836330576, - 0.0018395955681961443, - -0.0006792604288794711, - -0.0014294271528042587, - 0.0006227345954177959, - -0.0004627923479678895, - 0.0003115156605342857, - 0.0015579682955912072, - -0.0012798738614811143, - -0.000906292449172436, - -4.977065142139004e-06, - -0.0005758968171469765, - -0.000886419381928555, - -0.0010454529012943136, - 0.00031276596888937536, - -0.0010775149912362002, - -0.0006117551123683301, - 0.001011423382950296, - -0.00016077245932500327, - 0.001960629210248242, - -0.0006561117132294935, - -0.0009746553441262341, - 0.00021865696622947476, - 0.0007424466415619959, - -0.00044595033960069075, - 0.00035012588499307666, - -0.0017789921848818805, - -0.0005561780785646517, - -0.0012479386655117454, - -0.00012014487946711996, - 0.0015639314585146882, - -0.001591823719859876, - -0.00021317212501173002, - -0.00026967014846105845, - -0.0010244015984440672, - 6.659825866670943e-05, - 0.0008507111190045765, - -0.0002929755061117849, - 0.0006687051132833005, - -0.00014136667413783478, - -0.0007947177790856135, - 0.00039839213940314437, - 0.0013057551383419401, - 0.0007138079181701289, - 0.0009254946857534999, - -6.4275447575126e-05, - -0.0005240149259382424, - 0.0008751831157276767, - 0.0009014267640023795, - -0.001486377095996229, - 0.0004723258959260644, - -0.0030845094638118384, - -0.000754927388287784, - 0.002399072966870821, - -0.000735220254529608, - -0.0010369657359578066, - -0.00025911875608743455, - -0.0001414277795873866, - -0.0005721230573034121, - 0.0021028278486114192, - 0.00042784479226530266, - 0.0009223769165003687, - 0.0005657451139507164, - 0.0015726895879777602, - -0.0008080479778728326, - -0.000260464967175885, - -0.0027380952865775307, - 0.0005994701641662676, - -1.1327285525571928e-05, - 0.0012583162403806338, - 0.0008056849817355509, - 0.001214172422655757, - -0.0003936574540653977, - 0.00033037230950976515, - -6.211268085771155e-05, - 0.00035024158199514706, - -0.0023276875566876193, - 0.0008784515364328377, - 0.001992040610543779, - 0.00025086174644732697, - -0.00079311743902958, - -0.00045557252076248056, - -0.00037328222794534766, - -0.0017394094265404396, - 5.221417091323887e-05, - -0.0019329240697911496, - 0.0008237021372940815, - 0.0002914083316774292, - -0.00010817289614902266, - 0.0006684028362076108, - 0.0013882782584145519, - -0.0002520213555629456, - -0.0010714109893439048, - 0.0004594458851519142, - -0.0008920770693663321, - 0.0002731086770831115, - 0.0007358205594352787, - 0.0013068889648195242, - 0.0002854662867361884, - -0.0008822635306505135, - 0.00046150678808709307, - 0.0016692317785247154, - -0.0004645337217044006, - -0.0017593369701695873, - 0.0006108760524500415, - 0.0007206101681548302, - -0.0014469541938214863, - -0.00043887185377258303, - 0.000531536475043845, - -0.0005495897336811116, - -0.0021000881401440383, - -0.0010287846115280296, - 0.0014131513323763327, - 0.0005549872052582007, - -0.0005872918736613452, - -0.0009441580121020733, - 0.0008751118326742644, - 0.0011293580363897074, - 0.0005814832624032114, - -0.0011363097957671515, - 0.0006492067917461266, - 0.0013672631146392977, - -0.0005733619754505599, - 0.0003355167340946423, - 0.00022994963484099948, - 0.0009129151496468697, - 0.002074238852664533, - -8.61089683210891e-06, - -0.0006547197258202851, - 0.00035278478118274997, - 0.00015382485707691687, - -0.0013644904252537253, - 0.002212250507394985, - -0.0011135829574783307, - -1.9423906495645688e-05, - 0.0012599454741592869, - 0.0006090916259932577, - 0.0006824233998650024, - 0.0004557927555231781, - 0.00024212288520157737, - 0.0015870974509525663, - 0.001055279424031408, - -0.00011543114566747422, - 0.00023993068769724937, - 0.0014200614917913, - -0.0012814316171939624, - 0.00028121736433736567, - -0.002199867310952224, - 0.0013787282453213159, - 0.0004821657117613827, - -0.0008034019853656649, - 0.0003179632221901624, - 0.0002464365564521144, - 0.0001573819695937271, - -0.00044674366409866445, - 0.00014242280905325783, - 0.001156806035546999, - -0.0009742269764825561, - -0.0012627314680424323, - -0.0012666400055651031, - -0.0002571970037379594, - -0.0019326442619664638, - 0.0010347524697787885, - -0.0005508587977233178, - 0.0021160716907888226, - -0.000297310096397754, - 0.0023062352605601895, - 0.0002606467646002496, - -0.0010217534368866282, - 0.0016471281288346375, - -0.0010816371691632833, - -0.000778292098106097, - -0.00013416414127614544, - -0.0009557672902701021, - 4.8659863099216835e-05, - 0.001158986461548603, - 0.000172529189680331, - 0.00016041776447167985, - -0.0004733657544442947, - -0.0007218378563470036, - 0.001164953843547394, - 0.0014135993395303515, - 7.768497570693002e-06, - -0.0012701488646010965, - 0.0007364539936344746, - 0.002425497090730335, - -0.00042525849747668466, - -0.00046731761030150267, - 0.0011953621862061336, - -3.7659398035232907e-05, - 0.0009434358684005671, - -7.131610493915408e-05, - 5.381217691708748e-05, - -0.0007969521075772839, - -0.0015837229965247196, - -0.0015132135279271124, - -0.0010717602646821282, - 0.0021151959326895335, - 0.00016058626419370201, - 0.0011414897473563405, - -0.00024023191050584318, - 0.0004900025363132559, - -0.0007303111746822291, - -0.0002178732987828337, - -0.00072911272307898, - -0.00021359119483214142, - 4.1563544111679705e-05, - -0.00022736880377043314, - -0.0006847239565378095, - 0.001726886267972683, - 0.0008777623772338588, - -0.0005366002471207977, - -0.000518369581689911, - -0.0003012058791467428, - 0.001536168397325097, - -0.001258173735298124, - 0.0005710456475900717, - 0.000471802364501735, - -0.0004464855787206824, - 0.000205946009773752, - -0.00029336784104294145, - -0.0005944421819627598, - -2.5535302251045866e-05, - 0.00033655009410022454, - 0.0021360726379727195, - 0.0003369185015530038, - 0.00059123284948824, - 0.00031870733376460823, - 0.0002758221669823251, - 0.001112930651153542, - 0.0009453919774963223, - -0.0003044033984954527, - 0.0017552027425381154, - -0.0016062354453727308, - 0.0009853829179887312, - -0.0002698678362313843, - 0.0003522065853350651, - 0.0005068517450169793, - -0.0019701089074320222, - 0.0007184441978577012, - 0.0019258081324525459, - -0.0007562663375157699, - -0.0009150255938148147, - 0.0009590653990644275, - 0.0013855771721260615, - 9.446416649798784e-05, - 0.00019903721358509386, - 0.0006747467137612333, - 0.00011193767610122924, - 0.0008560305940560316, - -0.0011309183292810762, - 0.0003452568830196693, - 0.001491778774054002, - -0.000780559055099111, - -3.7076424171042524e-05, - -0.00011434835466015587, - -0.00034401439678976914, - -0.0007512467753767296, - 7.9566715336353e-05, - -0.0017911313711349217, - 0.00012455176869281899, - -0.0009028184155992044, - -0.001269041607227962, - -0.0006180223165721011, - 0.0012121930363263361, - 0.00183671954919671, - -0.0011617411399426005, - -0.0012261696824258973, - -0.00046912411069552644, - 2.7246313812824044e-05, - 0.0005300839040794149, - -0.00033077466521659073, - -0.0005417564022819689, - 0.0008024868500633735, - 0.0006734859679105334, - 0.0006964330736556402, - 0.000525957162561455, - -0.0007638719881069869, - -0.0018017470294839843, - -0.0003708013844585326, - 0.0009616306289441152, - 0.0005808149593666921, - -0.0012229476989059317, - -0.00042570269935060143, - -0.00042609063992553824, - 0.0010849126320356176, - 0.0014305963780368793, - 7.92967531861325e-05, - -0.00010653925032107447, - 0.0004493261881876303, - -0.00034454018246593765, - -0.000947279529547464, - -0.0008239071376243343, - -0.00010732440565378457, - 0.0003417884508571748, - 0.0010764440264883015, - 0.0008429796149191747, - -0.0005215235072143447, - -0.0002038994630600924, - -0.0018349038697060573, - 0.0001799088268057386, - -0.0010097983475866473, - 0.0009782232721753143, - -0.0007988159795384997, - 0.0004358075343226183, - -0.001155970117185319, - -0.0004175782526836562, - -0.0002934779521218183, - -0.00018509941538405504, - 0.0009449972828504662, - -0.0002648081701760107, - 0.001381524003969021, - -0.0010259639413718069, - -0.0015962234627984826, - -0.0016970479682637716, - -0.00010512383278169487, - -0.0004284383076016244, - -0.0013619868357721589, - 0.00018801933127672544, - -0.0006362143530427879, - -0.0022983023030530504, - -0.0005883595053050592, - 2.98113449939918e-05, - 0.00032073322501607345, - 0.00018394870714732002, - 0.0010060939319686138, - 0.0016589993441475214, - -0.00040780313320236357, - -0.00025999770570489647, - -6.253631834370773e-05, - 0.0020204752341378483, - 0.0004960965846192026, - -0.0008593794412288993, - -0.0001812947080130853, - -0.0013171702106645434, - 0.0010201726007962946, - 0.00018329717858380916, - 0.00041775667117057753, - -0.0010134513757758205, - 0.0004885969642788124, - 0.0005711884079850186, - 0.0005616368430822697, - 0.00045864467184599965, - 0.0014553825174290253, - -0.0011871258263307398, - -0.0013472132782805844, - -0.00042320859599546853, - 0.00018351254631059687, - -0.0005189284013364096, - -0.0017634543082457941, - -0.0007570717690873585, - 0.00016492132073852727, - -0.00012247988614658113, - 0.00013915047819128615, - -0.0007470574386447694, - -0.0014696119837247954, - 0.00027003116600284776, - 9.013438269057419e-05, - 0.0024017602273059733, - -3.333128875571249e-05, - 0.002770534120831621, - 0.00034281698879683355, - -7.59377538820038e-05, - 0.00030714185390284663, - 0.0009106627099128233, - -0.002360901599266719, - -0.0005069607510709515, - 0.00026810114264808765, - 0.0012297005908986464, - -0.000666615077191874, - 0.0009812754972601749, - 0.0004904540089472398, - -0.000992554249746286, - -0.00022262782037718736, - -0.0022364382349796576, - 0.0001396258085648052, - 0.002446347985949953, - -0.001477824991678581, - -0.00010135244235446965, - 0.0003960330223396115, - -0.00023966234897965363, - -0.0010578356668092764, - -0.0013983220452059339, - 0.000632067549933272, - 0.00020688221691457167, - -0.00013819482010419247, - 0.0009365240742070359, - -0.00040601271360316135, - -0.000669714414569351, - -0.0017348221129773213, - -0.0007943788646057942, - 0.0005063476250649693, - -0.0004117505891953004, - -0.00020453920686368534, - 9.948266040916574e-05, - 0.0005928314783914035, - -0.0009223720353848894, - 0.0005622311776379473, - 0.00038642340341431784, - -0.002000964636450035, - 0.0015968101940761865, - 0.000751292313858892, - 0.0016237853698535668, - -0.00045778718815748116, - -0.0005548193236279813, - -0.00018227686311509167, - -0.00028679342022361944, - 0.0018116009676048454, - -0.00016493702225962278, - -0.0011613153876985421, - 0.0008107199541952045, - -0.00017850040962563252, - 0.0020048464441180932, - 0.0003677210042228036, - 0.0007569541425621835, - -0.0013531102983440472, - -0.00019344884415554482, - 0.00018738986862942212, - -0.0011131948205032084, - -0.0001291428489020902, - -0.00029483613188571896, - -0.0012977009401634175, - -0.0008646912825358464, - -0.00219670277998834, - 0.0006878138364321354, - -0.0009074484411233199, - 0.0010344071929201837, - -0.000319361285835822, - -0.0001240238212624633, - -0.0006721116329268292, - -0.00033635882140189055, - -0.0006757233717022491, - 0.0019968696780769224, - -0.00030911555828493054, - -0.0012879630828315626, - 0.0006576899265967749, - -0.0003775491880861822, - 0.0003201767468635593, - 0.0007969513788156498, - -0.0006702774336459949, - 0.00011457604351505489, - -0.000430573340342641, - -0.00137287377246513, - -0.0003968451338656719, - -0.00027852272397422916, - -0.0006015519475314062, - -0.0016626570431750793, - -0.002100031027736654, - 0.001374690434841944, - 0.001087115117439307, - 0.0008082268577259429, - 0.0002580230239054979, - -0.0006557923914224976, - 0.00011206012580976268, - 0.001423176788813752, - 0.0010769899096247525, - 0.0007086014683228986, - 0.0013157400132956403, - 0.002059986213356292, - 0.0014634663657496808, - 0.0009850706955563406, - -0.0006784941033162807, - 0.0018788566967212136, - -0.0001173009412787346, - -0.0006930324270432544, - -0.00033775154913206237, - -3.600498320056217e-05, - -0.00017532924083070526, - -0.001213245170687065, - -0.0024108001454194437, - -0.00017793591777162478, - -0.0008130723932463469, - 0.00013170265521263361, - 0.001167995310761985, - -0.002945166926455898, - -0.0017541913678899952, - -0.0006772048822860325, - 0.0009471691066346948, - -0.0013141380485713627, - -0.001216383167733922, - 0.0010824665044820462, - -0.0004860987262850188, - -0.0010991248844716029, - 0.0022657452863988035, - -0.0009690200364709822, - 9.635535080347758e-05, - -0.0002519047208573477, - -0.001429433905568059, - 0.0007150689052220823, - -5.167746507332966e-05, - -0.0003197231582815278, - 0.0007573603371127314, - 9.297967061424108e-05, - 0.0011580714794309586, - -0.0008416416534057413, - -0.00020580905993724846, - 0.00013283161397901073, - 8.807240510889414e-05, - -1.00813974414108e-06, - 0.0008370286724547485, - 0.0010234463982652375, - -0.000914735600192238, - -0.000800513391195495, - -0.002709008257726048, - 0.00033152698014402113, - -0.00151435009967197, - 0.00147646177833677, - 5.226360912749391e-05, - 0.001067029657645701, - -0.00011700140846737311, - 0.0003706161958223958, - -0.0002549694410474566, - 0.0011592478969445956, - 0.00018063550564548358, - 0.0001378224286545556, - -0.000488527270626346, - -0.0010489222980376277, - -0.0014711006019127672, - 0.0003502465514688925, - 0.0006947915865234849, - -0.0010921621858161071, - 0.00044427473154941483, - 0.0002459880171538859, - 0.0012012035374147966, - -0.0009066496721239965, - 0.002134471391166094, - 0.0008015867331234378, - -0.00047004452917257883, - -0.0008012538804508014, - -0.001006944219063253, - 0.0002140406819992003, - -0.0015609365969730105, - 0.0009489615847304297, - -0.0014408582287871211, - 0.0001503750273485055, - 0.0007318964545463225, - -0.0006460441787439914, - 0.0021122230944904583, - 0.0009517210859281405, - -0.001121964231478373, - 0.0006159515839690013, - 0.0005324066038440138, - 0.00020360228321128918, - -0.0006429504437540451, - 0.001101595035935257, - 0.0010233558156307087, - -0.000363932363582118, - 0.0009629443133424963, - -0.0002472867257646307, - -0.0007927207399069455, - 0.00016973391084808859, - 0.0003318405952708236, - 0.00025028493494045625, - -0.0009342943757697668, - -9.95152550199228e-05, - 0.0011135189123969748, - -0.0005993408026874302, - 0.0006453422716219977, - -0.0006344453679769212, - -0.0004980274839247794, - -0.0013722162915304013, - -0.001989622375310026, - 3.0469891646532496e-05, - -0.00013826718680512483, - -0.0005145302868175863, - 8.961628076741045e-05, - -0.0013521339113830677, - -0.0003607210497865404, - 0.0007737926211033202, - 0.00015707804553858387, - 0.0005521322959026068, - 0.0007099848189831859, - 0.0007905687340459057, - -0.00011922627857382486, - 0.000929787455322395, - 8.849408226271901e-06, - -0.0008952595302427321, - 0.0018001542506037042, - -0.001863519529344492, - -3.0396516868798848e-05, - 0.0011603718959807912, - 0.000730383073462288, - 0.0006596037422921705, - 0.0004940660606898931, - 0.0014549315961199902, - 0.0014908288368803775, - 0.001057267772283377, - 0.00048564928153464374, - 0.0006177543379620486, - 0.00028794048174423054, - -0.002770338786958668, - -0.0001474867494243451, - -0.0012776999401289482, - 0.0008216431830451944, - -0.002139259453128202, - -0.000418758376359125, - -0.0005969381046177179, - -0.00013137009453688227, - 0.0002617759935025151, - -0.0008007372324014625, - -0.0008158343971731066, - -0.0012230904846394532, - 0.0008347855686629445, - -0.0002671609502851785, - -0.0006263990906977282, - -0.0010819482831142223, - 0.0012110175017781798, - 8.734367821576603e-05, - -0.001144672375174943, - 0.0005893687941841407, - 5.250617341345888e-05, - -0.00011728785857970774, - -0.0006174638665541433, - -0.0007883608813341108, - -0.0008452775773495841, - 0.001163763078873307, - -0.0008429297496417477, - -0.00015806586907584713, - -0.0001312545010246467, - -0.00041711793372005716, - 0.0022404372035953334, - -0.0019752069755713847, - -1.915595410604209e-05, - -1.6631683325425897e-05, - -0.002275517221835953, - -0.0020831871608812218, - 0.0003473730525459277, - -0.00020900582058390867, - -0.0017194325904776075, - 0.000305596477618872, - 0.0013110492133308553, - 0.0011194245748569638, - 0.0008133339535919628, - -0.0007573343123006781, - -0.00012925545276588167, - 0.0009322832822087478, - 0.0006479397312932979, - 0.0014888385869867961, - 0.002324757918449595, - -0.0005397888807729468, - -0.0002070013864949271, - 0.001439218909942333, - -0.00011690216051943658, - -0.001673310728917712, - -0.0016834533869199352, - -8.295769438381554e-05, - -0.00030623325679010594, - 0.0011692754579462922, - 0.001711709608307236, - -0.0008810374135260785, - -0.00026313220169263933, - 0.0010084809612262136, - 0.0021727829572647126, - -0.00047434416253456054, - 0.0002732493683887391, - -0.0006405087170355569, - -0.000887431438264983, - -0.0003159831316084356, - 0.00034752558862488403, - -0.0009737953197361975, - -0.0012676481907330688, - 0.0017515081488256687, - -0.0016497361547823904, - -0.00015718290847145818, - 2.88381384116158e-05, - 0.0001978938381467462, - 0.000517172238250935, - 0.0006480769775851413, - -8.386415359777427e-06, - -0.00049999156704622, - 3.030353751993813e-06, - -0.0011429960638134186, - -0.0002883184394787257, - -5.123688052164177e-05, - -0.00013371555921355948, - -0.00041426104931108296, - 0.0005180458706019288, - -1.8482222704971093e-06, - 0.00041487454547683896, - -0.00025506760969307797, - -0.0012888264636052617, - -0.0021750379410564423, - -0.0009520582813968484, - -0.000891154660269908, - 4.242285296006006e-05, - 6.468588308901045e-05, - -0.0003439088686706698, - -0.0004571793736611277, - -0.0012799930267157246, - 0.0007436254161105948, - -0.000981768665261354, - -6.882764334214756e-05, - 3.756112733073505e-05, - 3.6690636450721494e-05, - 0.0007352236348168214, - 0.0022749751751619403, - 0.0005912239514778898, - -0.0016946738103816312, - 0.00029703335389008996, - 0.00157211580331059, - 0.001847913978658612, - 0.001203242944144437, - 0.00036459702579002314, - 0.0010152449636974762, - 0.0004895480079877445, - 0.0010922809612726554, - -0.0014736359407913006, - -0.0005852154260333913, - -0.0006885579874398642, - 0.0008179908110314105, - -5.289176357701178e-05, - 0.00044698558407616, - 0.0006405100636037581, - 0.0006765316131011041, - -7.34620971012602e-05, - 0.0015652221085889545, - -0.0007794070716143278, - -0.0005143320080555942, - 0.001213598229212442, - 0.00027835394809537116, - -0.00023920343587237038, - 0.0007260349175937413, - 0.00023395757751242162, - -0.001435864768375164, - 0.0006049855086164186, - 0.0007498374347093039, - 0.000544133198837308, - -0.0005616216198331796, - 0.00018725303540992994, - -0.0002508375479631576, - -0.0014003870742908212, - -0.0019463370137567317, - 0.0002930666799570562, - -0.00020609923181502692, - -0.0006878374400475431, - 0.0014534059088648211, - -0.0016214841613410827, - -0.00033555241380080913, - -0.0003412180373618749, - 0.0003500134699815476, - -0.0005446149229434124, - -0.00016780047050753532, - -0.0008425466557309949, - 0.0013918143434701212, - -0.0009358643619515249, - 0.0013585726359986285, - 0.00011434720727032676, - -0.0009224396061389954, - 0.0010430744552833197, - 0.001165846699776738, - 0.0004957365477597576, - 0.0006991153572694958, - -0.00027958562310225187, - -0.0013287972883025594, - -0.00019091767041671084, - -0.002021330365768888, - 0.00018782161246525496, - -3.3427848820232083e-06, - 0.0014928436158919206, - -0.0011936941036634517, - -0.0001661388875771902, - 0.0005552639245692335, - -0.0005002272946520811, - -0.0004612755123366777, - 0.0012538190504057683, - 0.00041411308073585965, - -0.000271024894259361, - 0.0020269477416732335, - 0.0006301423639050313, - 0.0012214399087266538, - 0.0015433603268631844, - 0.0021478342927185555, - 0.0009514549689833327, - -0.0023534930860640304, - 0.0005488920844450545, - 0.0014550434386050796, - -0.0004517327507657169, - -0.0009872496203993562, - 0.0008518073816900319, - 0.0007077465959675185, - -0.00037570742507847716, - -0.00026713271562125735, - -0.0012028263851252003, - 0.0003261269371099305, - -0.001109472137260562, - -0.0008415089297956346, - -0.00017672221786859646, - 7.341657965389876e-05, - -0.0019684439377574436, - -0.0008238416772022125, - 0.0005261516162063881, - 0.0009396765096665821, - 0.0016980791813146349, - -0.0006903944046176788, - 0.002330676179639378, - -0.0010054689959600835, - -6.255814248875348e-05, - -6.657745219133854e-05, - -0.0003984645839817169, - 0.0006738007386121129, - -0.00037702136915798034, - 0.0008073966445801302, - 0.0002683318107495243, - 0.0008429337805846672, - -0.00015532296113296445, - -0.0006519271836204192, - -3.047670052160958e-05, - -0.0011234192747516336, - 0.00016194729572247, - 0.00014200759056051435, - -0.0006883647770337462, - 0.00015838697368042781, - 0.0005542490985128469, - 0.0002839324826499675, - 0.0017187162597487988, - -0.0001958973988189627, - 0.0016620687769010251, - -0.00011672705080983496, - -0.0017007653105930189, - -0.00040870421875981644, - 0.0012931542985454379, - 0.0016312984406120583, - -0.000346492548693981, - 0.0004359092952518694, - -0.0002851705764801902, - -0.0003127358445165878, - 0.0005053932132033831, - 8.210526618812681e-05, - -0.001360664744186607, - -0.0010758678298670038, - 0.001147401415712394, - -0.0003172489271263596, - -0.0009068470198622334, - 0.0005267637918925629, - 5.754802295571757e-05, - -0.0008270005374058649, - -0.0007955635590025786, - -0.0006572790933324576, - 0.0006616035491840507, - 0.0007963196408797031, - 0.00024088914975747963, - 0.0014724861243260192, - 0.0005055036988596143, - -0.0001877642689708391, - 0.001658734972532033, - 0.0003947617924964777, - -0.0008473160903382389, - 0.0009967854823293952, - 0.0005083694008870188, - -0.00011788850913030612, - -0.000466930213296634, - -0.0014458285669212802, - 0.0010497929285396153, - -0.001194062544844026, - -0.00016596737834024034, - 0.001668530392564695, - -7.097680734530418e-05, - -0.00043437043772285845, - 0.0008993059164824316, - 0.0001117536139948584, - -7.383986100366363e-05, - -0.0007380626425676749, - 0.0008291688772050187, - 0.0008020956892833192, - 0.0004953662941444217, - -0.001458919315460543, - -0.0003919141402535851, - 0.0018592029487926915, - 0.0005557480344703926, - 5.012673886966962e-05, - -4.4929482104794016e-05, - -0.0008831367571701827, - 0.0006680727461003726, - -0.000791240352624969, - -0.0012528138798143487, - -0.0008259348691476082, - 0.0010436625945104778, - 0.0008279538474118602, - 0.002925207760602619, - -0.0014966990385592933, - 0.0006234655308850841, - -0.0008269431603078807, - -0.0001298932181081541, - 0.0005645552962700063, - 0.00022937549036062532, - 0.0009657710806360699, - 0.0007672880774017779, - -7.139771849465004e-05, - 0.00029685536252089953, - 0.0011356526029027557, - -0.00011829302076581359, - 0.0007878334965995958, - -1.8662505224862785e-05, - 0.00039747434938770083, - -0.001227670758779944, - 0.0004451436170039147, - -0.0006879176230232358, - 0.0008967534997876575, - 4.589283295703067e-05, - -0.0009041764735710052, - 0.00035575855393711294, - -0.000519080574166787, - -0.0005024638557184619, - -0.0013271459876415044, - -0.0004925811546039711, - -0.0018622625384381213, - -5.2654647449671866e-05, - 0.0006088508934848843, - 0.0017294895949486132, - -0.0007671882686183141, - 0.0005391780791078715, - -0.0001191355933323743, - -0.0009206340023438, - -0.0013202150722449624, - -0.0006041650082188328, - 0.0012681665377828422, - -0.0002761365953638448, - -0.0004911826078346251, - 0.0010660911657609732, - 0.0008496853204793495, - 0.00023316427664536995, - -0.0006892921156646982, - -0.001718774028733103, - -0.00029322561239282985, - -0.00010659944872340311, - 0.0002601664980501787, - 0.00020786607907432347, - 0.0003125360238855501, - 9.725514415500303e-05, - -2.8404611524823707e-05, - 0.001535968887180964, - 0.0003774753149241104, - -0.0012532672530258177, - 0.0013235846337210633, - -0.0012507975614088787, - 0.00036902978208720207, - -0.00107988740797501, - 0.0010374767257926147, - 0.00027072860941310714, - 0.0009635751389682408, - 0.0005046047399874296, - -0.00021490943747700585, - -0.0004428062844870556, - 0.0010682424506318385, - 0.000566473922549104, - 0.0004874834358119451, - 0.0009152232263247457, - 0.0016365058972713834, - 0.0008788651850573261, - -0.0006871223704802316, - 0.0012367860871209267, - -0.001050690411213988, - 0.0028950574677528607, - 0.0016831086839237206, - 0.0007228748062512171, - -0.00012140423613468474, - -0.000919840592258851, - 0.0006320765348187487, - -0.002457061282463009, - -2.782395333261189e-05, - 0.00020790518172738562, - 0.0005652577125907709, - 0.0002988602980101528, - 0.0007482384747984114, - -0.0001902785665057037, - 0.00014334711793558084, - 0.0009218973081994185, - 0.000781083276233312, - 0.0014283667738310495, - -0.0011721475863152968, - 0.0007809917868164786, - -0.0009703089078275269, - -0.001612851145363908, - -0.0008889969779117801, - -0.0010104313818812593, - -0.0002976506268120811, - -0.002612640588191492, - 0.0009100742704847296, - -0.00010557571238135137, - 0.0007938909417489399, - 0.0007691607164306854, - 0.0006062577945471568, - -0.0005813657619422498, - 0.00023350508781314554, - 0.0029001007061642157, - -0.00037432470389853954, - 0.0003165427816445663, - 0.0005818814342991102, - 0.0006609853071381989, - -0.0012269753648939963, - 0.0002000725083012909, - 0.0010797226932450022, - 0.0006347223459037255, - -0.0005355392901303517, - 0.00019958835387967407, - 0.0007179012925950255, - 0.0009948014510114294, - 0.001312226572437051, - -0.0016481434641718042, - -0.001227165278467935, - 0.00027006251998423704, - 0.0005228963651819212, - 8.631963844730429e-05, - -0.00027338669095975244, - 0.0008350695420104044, - -0.0003764617967104027, - 0.001083580273366557, - -0.000909655770139141, - 0.0006578313157836329, - -2.813473611084923e-05, - 0.00028996464120312524, - 0.0006502003810265185, - -0.0013933575978703145, - 0.00036052766662761696, - -0.0023065867231478647, - -0.0001286889575194135, - -0.0011545843331223393, - -0.00016476492594017092, - 0.00020906334377991724, - -0.001049890979173519, - -0.0011647449663787762, - -0.0009064853037256823, - 0.0008985055306096243, - -7.077178556555743e-05, - 0.0006498207174179606, - -2.324470946704342e-05, - -0.00012405226039648816, - -0.00038180557443559375, - -0.00011379169583414864, - -0.0008873717279877051, - 5.0106080751212545e-05, - -0.0011935388455066953, - -0.0005747790693965667, - -0.0001344799425697247, - -0.0007206319822476502, - -0.00029483442068769557, - 0.0007924210964415128, - -0.001586979374548149, - 0.0011772750823246707, - -0.0004089156188995707, - -0.0003502242722882476, - -0.0013444240376008867, - 0.0001608487252444253, - -0.00041178159507463996, - 0.00016478044963110145, - -0.0003592277239146252, - 0.0012297719398729362, - -0.0011643734934809035, - 0.0011699094183476747, - 0.0007028808862361751, - 0.0007377187530846794, - 0.0002948086842634875, - 0.0018171572557059061, - 0.0005534175441592916, - -0.000789779216828024, - -0.0001770557347639391, - -0.0006987720463086283, - 0.0001416682684483319, - -0.0007290468476985022, - 0.0012236014840991602, - -0.0014995980443221367, - 0.0008225878606428934, - 0.0018010720525229965, - 0.0014765524504745811, - 0.00022871294781637042, - -0.0013406099267177648, - -0.0014448849176412328, - 0.0005533507673272009, - -0.0007369719575183793, - -0.00032576048786814315, - -0.0005911449915374276, - -0.00019038823438374575, - 0.0006421315159012004, - 0.0010694467455103437, - 9.641245619965478e-05, - -0.00023704780940341777, - -0.0017212851054539124, - 0.0007422277607605434, - -0.0004392946633240281, - -0.0014784973145516983, - 0.0007628540386505204, - -0.0009113715204224276, - -0.0002901921851341963, - 5.4303568273316294e-05, - -0.000566797405873855, - 0.0010330368520139964, - 0.0003052261253342062, - 0.0002487550528721501, - 0.0006192803973021576, - -0.0003528555739386328, - 9.994314748640222e-05, - 0.0007801645724614252, - -0.0005530806143952362, - 0.0010796552905721396, - 0.0012287195507140107, - -0.001638954853558452, - 0.00020688732767030024, - 5.524184703677699e-05, - 0.0008051258995555224, - -1.9604311990989668e-05, - -0.00041246721413842153, - 0.0008579797354344756, - -0.001077356289559307, - 0.0009667620679336006, - 0.002227027879645239, - 0.0007524185740904584, - 0.0007811426732931015, - 0.0007983222685196994, - -9.291905892405713e-05, - -0.0006206029651002633, - 0.0012001647056478558, - -2.449380405447419e-05, - -2.9575321532244454e-05, - 0.00174026207121385, - -0.0008413436683199018, - -0.0010313120662207814, - -0.0001350169056386527, - 0.00010878037575663669, - -0.0005265421665733922, - -0.0001729533470643061, - 0.0002360720672460234, - -0.0002084003062006181, - -0.0004422161001380829, - -0.000458704158850643, - 0.0010501847740834215, - 0.00039765528022830965, - -0.0007201800415484186, - 1.5769100879129392e-05, - 0.0003749458767161133, - 0.00017365328219696817, - 0.0008076609102157501, - -0.0006502765868165674, - 0.0015282571175005513, - -0.00035838373860470787, - -0.001535609348215325, - -0.0005124200525233682, - -0.0004679863977381196, - 0.00010359404778819029, - -0.001647193582855047, - 0.0011204431332043623, - -0.001502523766449747, - -0.0005043170289330184, - 0.0017370375088990272, - -0.0031266433446463502, - 0.0010108964582687396, - -0.0005140993151672531, - -0.000871861589065925, - -0.0008033302744996514, - -0.00128601626333777, - -0.0005272261032347656, - -0.0015122763881272806, - 0.0008051753863833806, - -0.0014742095353293169, - -0.0005736677817361788, - 0.0012519882387327448, - -0.001001845043465625, - -5.4131529257724805e-05, - 4.9428484178548845e-05, - -0.0006910546808541779, - 0.0001908862366312889, - -0.0008632417402876922, - -0.000165419889126953, - -0.0019572178971244895, - -0.0021740702206465797, - -0.0018883012655325445, - -0.0014769603564129018, - -0.0011187615789493384, - -0.001904134823719067, - -0.0017078546098604418, - 0.0003371079513332303, - -0.0009038474355663435, - 0.00019272015076727707, - 0.0006071211449249963, - -9.255894515679426e-05, - -0.0006918327616818057, - -5.077777485655437e-05, - -0.001200997044871549, - -0.00027360159306153277, - 4.360183654389315e-05, - 0.00034425344778154794, - -0.0012467265252127514, - 0.00023466387889643477, - 0.0005966786286771957, - -0.00026589814851551974, - -0.00027312503444587474, - 0.0017055507827054724, - -0.0003876228404236492, - -0.0001569604685585928, - 0.000262646300619003, - -0.0019265237856809652, - -0.0013242289499692925, - -0.0007688356834000492, - -0.0011635076608099962, - -0.00036352749120363207, - -0.0008223431750115962, - 0.0007381595597548931, - 0.0006087576320434163, - -0.0012775818707602697, - -0.000945106048236095, - -3.577915110627102e-05, - -0.001873793300156499, - -0.0017530358952624807, - -0.00016590457604007824, - 0.000653345472447085, - 0.002151606975810534, - -0.002044666269135435, - 4.3110969215061594e-05, - -0.001300743454684588, - 0.0013071104411136892, - -0.0006242092687075194, - -0.00011662780554383822, - -0.0008604728211348055, - -0.0017293029271453332, - -0.0011153125388182882, - -0.0003328022707564198, - 0.0017060428882241763, - -0.001139193423687248, - -0.0007575732921176455, - -0.0013312926231705013, - 0.0012561819434255186, - 0.0012768923891262867, - -0.0001339601542083186, - 0.00039224978679081794, - -0.0009947542731808293, - 0.0027108793000990756, - -0.001416374550032184, - 0.0007943588923071194, - 0.00036912344488687404, - -0.0005796375842107658, - 0.00032783300568385316, - 0.0008339087620308087, - 0.0013003924576110242, - -0.001457129961032195, - -0.0003505632518096813, - -0.0008202758940563356, - -2.8676512335982624e-05, - 0.0009030364715193314, - 0.00045024746196349277, - -0.0006233077822879959, - -0.00044679458178011473, - 0.000838991315995428, - 0.0009868311398042913, - -0.0013989776310722399, - -0.0005076970627504914, - 0.000788812313492652, - -0.001368369647350704, - 0.0006309428096061469, - 0.0004113013020621947, - -0.001531590940892129, - -0.0004717526853845872, - 0.0003265668562606401, - 0.0006271829827699738, - 0.0005438330379346257, - -0.0002981150932027299, - 0.00047277081274169064, - -0.001389635554235139, - 0.0010162117028613036, - -0.0006801680462898978, - 0.00023777124676397737, - 0.00018282911260595773, - 0.00033315800380134906, - -0.0009055889758812302, - 0.0002296262548311043, - -0.00031538653746706463, - 0.0006426133952205075, - -0.00046480924867001476, - 0.0003794928250436498, - 0.0005739749718891059, - -0.0019192592379441507, - 0.0014024874915326115, - 0.0008166045083379769, - 0.00015105593839540173, - 0.0002876358259105142, - 0.0014583402868238832, - -0.00019386834717404018, - 0.00031334167183856717, - -0.0009697718229014966, - 0.0009725516924408737, - -0.001040417722705186, - 0.0014658024396458076, - -0.0003304247182152018, - -0.001873696311121538, - 0.0005390953312033582, - -0.0003987650505892127, - 2.012723853522716e-05, - 0.00016725899095058064, - 0.0015798828165528465, - -0.00040743758139911984, - -0.0006013537668333857, - 0.0003474225052180093, - -0.0010776596706944376, - 0.001840098053493067, - 0.001034155370937642, - -0.0023925425577381687, - 3.262071323318415e-05, - -0.0012099314471067132, - -0.0005132451826061425, - -0.0011767851707354987, - -0.00045280307892948734, - -0.001045129695308674, - 0.00027102690934757673, - 0.00035097456968063707, - -0.0013072744446330166, - -7.05273485735858e-05, - -0.0010459206385548775, - -0.00010967942986843356, - 0.0005693547952033202, - 0.00032825697660096185, - -0.0009485459986364324, - -0.002199158804791308, - 0.00042153395887912517, - -0.000511423470780096, - -0.000684163735253281, - -0.0014108126367518852, - 0.001502155974519887, - 0.00059343669286598, - -0.000664247734977113, - -2.215184280306479e-05, - -0.00026472325944433393, - -0.002503493223548257, - 0.0016488935066011374, - 0.001759650094677933, - -0.002139323014672021, - -0.0008477608643295522, - 0.0009053012676527658, - -0.0007188121387756556, - -0.0004722141410849646, - 0.0003921395351726063, - -0.00039706861778835936, - -0.00036886403335840295, - -0.0005296846597544744, - -0.0003134752204913904, - -0.001602942921744375, - 0.0004398959807614666, - 0.001041869775439606, - -0.0007020559797392901, - -0.000512452475255227, - 0.0012140541607938938, - 0.0010212078516464908, - 3.781502964204761e-06, - -0.00030495401846641267, - -0.0008032363230597946, - -0.0008271334002556508, - 0.00031570729222388976, - 0.00047663758958436833, - 0.0009979649998493728, - -0.00038094495415198646, - -0.0005424019462622017, - -0.00123837851635567, - 0.00038629705286488295, - -7.248109888356018e-05, - -0.0008563181441571545, - -0.0009584566086553199, - -0.0011971948565701284, - -0.001118249449118007, - 0.0013953017639253792, - -0.0011131860016426187, - -0.00039696029459091847, - -0.00015924588454782366, - -0.00018054828070104885, - 0.00039799278205860907, - 0.00014163597486071918, - 0.00020662058897112488, - 0.00036304852884646156, - -0.0003948666979934823, - -0.00032992586357234505, - 0.0003531443213236077, - 0.0008916313046944593, - 0.0006921767525537431, - -0.0005449817934359045, - 6.278696149766941e-05, - -0.0015654081520702075, - -1.4754949213822602e-05, - 0.0008296544298430945, - -0.0009812232720251798, - -0.00029007548840137494, - -0.00023683137768591386, - 6.638100940347816e-06, - 0.0020273087981984117, - 0.0007166910366766988, - -0.00015533022369527776, - -0.000524626940809351, - 0.00030222376885088764, - -0.00046306358386588077, - 0.0010819808174069201, - 0.0008260866721839887, - -0.00043220628205572386, - 0.0003255258284921376, - -0.0001550532982221455, - -0.0001782520097831722, - 0.0012065151673456068, - -0.00025494994557594553, - -0.00044602123120196643, - 0.0003749088344990428, - 0.0005313360514821061, - -0.001067267405179844, - -0.0014896211658936658, - 0.00024186148231677051, - 0.0018017792888010437, - 0.00030887107787128804, - -0.0011893738633088266, - -0.0006567873789368011, - -0.000772478276293044, - -0.00012836305991569688, - 0.00019919635865384258, - -0.000882576423160676, - 0.0012829957177169188, - 0.00023664648266715055, - 0.0010521554386871427, - -0.0014391719176671826, - -0.0007928385568160237, - 0.0002355521369858573, - 0.0003247571181857733, - -0.0004017893306586464, - -0.0006156996162659503, - -0.00035794292432008514, - -0.00025605453488188225, - -0.0007870322188466393, - 0.001356648815616571, - -0.0008627522202138298, - -0.0013587603175876373, - 0.001046066176611419, - 0.0010308356917381287, - -6.191663194648061e-05, - 9.509425159349954e-05, - 0.0030207545103061737, - -0.0019167791974065145, - 0.00012379139860118073, - -5.788712676490567e-05, - 0.0011387948905966696, - -4.434545704493683e-05, - -0.00014789313814940166, - -0.0005356210386446293, - -0.0015782803365486137, - -0.0008416971964812678, - 0.0012862087636294841, - 0.0004575912073261097, - 0.0009661947774162194, - -0.001182651851828391, - -0.0005688366681331128, - -0.0018709826434484627, - -0.0008696096151420246, - -0.00048729086874037226, - 0.00011307789448919277, - -0.0008639371064603731, - 0.0015548993154461356, - 0.0008526356531486878, - 0.00029937845636727057, - -0.0009228823691115882, - 0.00061834603881346, - 0.0004988592042288958, - 6.934466313696893e-05, - 0.00018081132378102417, - -0.0016790335242277525, - -0.00018747276045089157, - 0.0005752894203223944, - 0.0015827997838004145, - 0.0008208251525319943, - 0.0026386364744030986, - 0.0007956091110592346, - -0.000504882557237428, - -0.00016995124116685163, - 0.000795323016494175, - 0.0004093214894707163, - 0.00045809775391658766, - 1.4419208951647679e-05, - -0.0009720034791183918, - -0.00040816715668303923, - -0.0005504577630833357, - -0.0002414657351355739, - -0.0005955471100146642, - -0.0012306077175734417, - -0.0005306848221905616, - 0.0007655121671201732, - -7.970468077030267e-05, - 0.00015137391299539795, - -8.014395986089272e-05, - 0.0017294329250542282, - -0.0009326462148543299, - 0.0012984750741636452, - 0.001391243079997418, - -0.0011332696430801812, - -0.00027957256225944545, - 0.0016077850952340245, - -0.0010099116631840958, - -0.0005858809401131701, - 5.554564813788997e-05, - 0.0010863865796095229, - 2.8750717125723693e-05, - 5.88759022023127e-05, - 0.00026029733949932773, - 0.002558612643143265, - -0.0003003950672996316, - -0.0016867083991940314, - -0.001420756702284227, - 0.0020301239988565756, - 5.823102193960843e-05, - -0.0013201701791173141, - 0.0012541244673897653, - -0.001694845851815293, - 0.0003406129750054729, - -0.0014728249383093705, - -0.0011476006245486146, - -9.978070772036882e-05, - 0.000571504565846614, - 0.0012460871620336186, - -0.001647830389180901, - -5.695050151300646e-05, - -0.0006038702507427205, - -0.0002638149283914981, - -0.0010101256771525206, - 0.0018862548560719798, - 0.00025697644966663397, - -0.0010520792830266705, - 0.0002568710041930001, - 0.001771344392480392, - 8.869924429039928e-05, - 0.00033994506692392053, - -0.0028399210404883198, - 0.0006130000601126156, - -0.0004432289570443829, - -0.0013277715995566439, - 0.00038055269905921073, - -0.00037801710489702994, - -0.0003519768589226585, - 0.0007985822559403975, - -0.0002139384303413195, - 0.00046245367808782237, - 0.0006353390921750248, - 0.002178496402860409, - 0.0019440174994887565, - 0.0004247921430024843, - 0.00013679273713955334, - -0.0010658835688688293, - -0.0006062267307268344, - -0.0013172267190559137, - -0.0007197514568995907, - 0.0020668111099634446, - 0.00038194135989007256, - -0.00052208785417008, - -0.00024470597169139305, - -0.001618322750097565, - -0.0004123686442026127, - 0.001054813945625825, - -0.0012076126236061828, - -0.0009462040659263261, - -0.001408393659317745, - 0.0013522596338459657, - -0.0006558505960639797, - -0.0004386200082029965, - -0.0018569583214278738, - -0.0010621489434628013, - 0.00031185763421009066, - -8.355059839865068e-05, - -0.0015648982968277092, - -0.0007431057848916151, - -4.595163914438869e-06, - 0.0016854034986315055, - 0.0012683750164008498, - -0.00021678751381468402, - 0.0009783387131548362, - -0.0002509599964898599, - -0.0013179305553953887, - 0.000530640389712002, - 0.0004846844034953684, - 0.00014855067415394543, - -0.0015299759708100975, - 0.00017252215054423977, - -0.0013253389431435775, - 0.0015482756265867339, - -0.000617967256288324, - -0.00011798506801786862, - 0.002272088140773624, - 0.0006396883344335749, - 0.0006729152931820091, - -0.0007707299365970305, - 5.230285923153502e-05, - -0.0013979509691053526, - 0.001006385205282626, - -0.0006139714387971132, - 0.00037119168478708076, - -0.00017811052332524773, - 0.0002986510316830998, - 0.0020481091593948604, - 0.000316192627020012, - -0.00030851878084513077, - 0.0005373421087636106, - -0.0010438131360389106, - -0.0007206574395972818, - 0.0003221005534305504, - -0.00042534364645127853, - -0.0007502303969102966, - -0.0015468451145000698, - 0.00133104273368403, - -0.0004755606058064495, - -0.0013972981975302926, - -0.0001765538139423174, - -0.0002560816053763925, - -5.223060127810288e-05, - -0.000835033455540951, - -0.00039937587261345783, - -0.0006728837034860872, - 0.0010535140697707345, - 0.00016137798962434478, - -0.0005641063731500086, - -0.001694052172720862, - 0.0009090227591731266, - -0.0017073885104509137, - -0.0007703132724953923, - 0.00030434948188881925, - -0.0009523068969485405, - 0.00038733943847925415, - 2.6019541486002907e-05, - -0.0016222120166294648, - -0.0016058385682334408, - -0.0003937069533607744, - -0.0014390368707928951, - 0.00028873058082998167, - -0.001631062303141525, - -0.0015349766116527018, - 0.0007368745123124707, - -0.0006355926350508033, - 0.0018747255949504084, - 0.0005703896585983692, - -0.000729911699005818, - 9.1091522989903e-05, - -0.0005834592733879649, - -0.0006908216735594259, - -0.000864833452905959, - -0.0006695676723276166, - 0.001795143305255756, - -0.0015180740287764056, - -0.00210120739863102, - -0.00033201755700055835, - 5.283337237626696e-05, - -0.0008931010804611335, - 0.0006874061257944143, - 0.0009431970439386188, - -0.0011826615548396304, - 0.0013494011051833515, - 0.0006227896327290095, - -0.0016342377136780322, - -0.0011338497656727484, - 4.656837222472164e-06, - -0.0011664994734969663, - -0.0004552254893419864, - 0.0006383350124538738, - 0.0016553036276935667, - 0.0012636327423331919, - 0.00020578996584797365, - 0.00023109404547677566, - -0.0001770615379426897, - -3.5412770922216546e-05, - 0.000720574334379009, - -0.0010238929288154622, - -0.0017444709066335826, - 0.00039604390335965575, - -0.0014553715432158501, - 0.0017434604299425974, - 0.00012401494557044566, - -0.0011648069855184663, - -0.0010510324749181826, - -0.00021082806626281846, - -0.0003183074473746005, - 0.000550896471163073, - 0.0005826951465703096, - 0.002209965043876214, - 0.001409466907460268, - 0.0022841564649711387, - -0.00028749666592913333, - -0.0009687890236077091, - -0.0010610275518289148, - -0.0003266852194286706, - 0.0013103357509591266, - 0.00039787420259287406, - 0.00023386745920777273, - 0.0002998414070987274, - 0.0010734298116155021, - -0.0004636344631782388, - -0.001158139051632458, - -0.0008352075978292656, - -0.0011758030775352159, - -0.001349360742504203, - -0.0010193989226688824, - 0.0008071168422397068, - -0.00022343610289328664, - -0.0011263848379902705, - 0.0007355874506866118, - -0.0010580847637602156, - 0.00012098679580884098, - -0.0007944710801412734, - 0.00022216251024848136, - -9.847327232953526e-05, - -0.00031886825923641005, - -0.0010679413609618234, - 0.00043894179607962045, - 0.002160873334244369, - 0.0006303981493328158, - -0.0017540000785325853, - -0.0003674312153203904, - 0.0006477992639187363, - 0.00040912340080326715, - -9.456225929299865e-05, - -0.0005554375416209835, - 0.0003175507778655629, - -0.0010722036474776482, - 0.0013552471641519355, - -0.0009832960042572298, - 0.0005843106542680999, - 0.0011018182201637339, - 0.002011464230686246, - 0.00044670355767656005, - 1.845269471720368e-05, - 0.00017578833746607298, - 0.0023270772118125908, - -0.0011180348815580398, - -0.0007493585813548007, - 0.00010082839776725471, - -0.0025603261790538368, - -0.00019606028975004683, - -0.0008905215874017802, - 0.0007123618746799855, - 0.00020320024788897509, - -0.00026645101008394, - -0.00019347819002958462, - -0.00037499800738024266, - 6.196550707408917e-05, - -0.0030096263708234584, - -0.00034421165265568864, - 0.001631016209303581, - 0.0006137985882325823, - -0.0003973833588474072, - 4.167143635323772e-05, - -0.000489661545868989, - 0.002507272118554918, - 0.0015505309741224295, - -0.0006068161860412626, - -0.0012300067675236922, - 8.53114293868912e-05, - -0.0007031597540082974, - 0.0002889734763848189, - 0.0016484763406131276, - -9.962491670830492e-05, - 0.0024801102877651734, - -0.0006443747947516717, - 0.0005926165271106109, - -0.0014518768590482149, - 9.78450464283615e-05, - -0.0009039347408810552, - -0.0007659270528403066, - -0.0009263556887289321, - 0.0003621159805755733, - -0.0006630701836231866, - -0.0005072800405249145, - -0.0009169024792835806, - -0.002003266785382957, - -0.0016835562476071528, - 0.0005805651188313827, - -0.0010923225269550095, - -0.002040078810778707, - -0.0010080490549936713, - 0.0001321041583238902, - 0.0005323278409030434, - -0.00013328515717540973, - -0.0007763397983144437, - -0.0007341305359058945, - -0.0001121943387957886, - 0.001226536653383047, - -0.0001983145571761254, - -0.0014289103245724516, - -0.0011504801431393224, - -0.0009735494816080998, - 0.0009060137882669717, - 0.00012866351594286623, - 0.0011384607470193917, - 0.0011882087441518394, - 0.00056968454994588, - -0.000265467000120187, - 0.00016673117835869588, - 0.0009503630904986592, - 8.293961146554462e-05, - 0.0005619112056564883, - 0.0004160697877366922, - -0.0007773802457089549, - -5.46522772255841e-06, - -0.0013968246207610596, - -0.001214298519929965, - 0.0020524506827947725, - 0.0006531947972376577, - -0.0008633727918997118, - 0.00047658258558819417, - -0.00013236476558118915, - 0.00026788121646443414, - -0.0007776621617048335, - -0.001842080438907829, - 5.701757681047852e-05, - -0.0009107504590771012, - -0.0011127339375159328, - -0.00018920359146305237, - -0.00016962829471505353, - -3.462123982520477e-05, - 6.338315940705746e-06, - 0.0006425197986871742, - -0.0029503708717786717, - -0.00024252724741532676, - 0.0037994827149691367, - 0.001589073430012489, - 4.664326061352766e-05, - 0.0007925425471013635, - 0.0004927110013551407, - -0.001044900664519976, - -0.00037845904063865785, - 0.0016229799722754365, - 0.000879124587552329, - -0.0014410579145420674, - -0.002382421100790483, - 0.0014753060101055549, - 0.0004809188156950399, - -0.002552869054847608, - -0.0014953221395429199, - 0.0006926423878848, - -0.0009443251455954134, - -0.0014805371438667897, - -3.084821871713503e-05, - -0.0005110381884514782, - 0.0006025649921138275, - -0.0024836692006822976, - 0.0005476135381347904, - -0.0007918749092641196, - -0.001278562210217579, - 2.3073921098317595e-06, - 0.000982778349183332, - -0.0002210779671601881, - -0.00015094411027408278, - 0.0005661288131801693, - -0.0013160633616911303, - 0.0004184934273814315, - 0.0005143411441754361, - -0.000693598282228607, - 0.000669419845044562, - 0.0004324518677041007, - -0.00018781229222620006, - -0.00015541275647648725, - 0.00035865400064189374, - -0.0006437242821990384, - -0.00028146774972140283, - 0.000768466056102701, - -0.0012822327621005802, - 0.0007032532373140853, - 0.0009810058362687796, - 0.0004787190660036808, - 0.00011827303854383055, - -2.8188103781611135e-06, - -0.0002066811902631008, - -0.0010737957756972389, - -0.0013518991324179852, - -0.00032821217323887527, - 0.0006332552636062477, - -8.523487009648074e-05, - -0.0005799297995597477, - 0.0001603848819399461, - 0.000593159844123499, - 0.0005787148579750306, - 0.0002459243351381186, - -0.0007757775669537914, - -0.0011822085177252068, - -9.90197704929569e-06, - 0.00061265388062932, - -0.0006311396227940874, - -0.0007885151974918594, - -0.0011802472095321288, - 0.0005991347772674673, - 0.0007011652517143457, - 0.0008952000223401218, - 0.0012128217436871737, - -0.0001871350974566705, - 0.000968449901528213, - 0.0007469683939228005, - 0.0012002517395576365, - 0.0007776551182314477, - 0.0005308950140066597, - -0.0002995786219516332, - -0.001972369564903636, - -0.0006324730212821197, - 0.0005238153219783101, - 0.0034653020781891513, - 8.53838310650319e-05, - 0.0022093596907157105, - -0.0011669895075731732, - 0.0008798244677082424, - -0.0003482378049585542, - 0.0012518831984156037, - 0.001907657539145941, - -0.0002550137117357274, - 0.0004927014477988136, - -0.0017000327076147832, - -0.00014550726054625809, - 0.0008058705434928411, - 0.0003804234805401675, - -0.0009037557778955759, - 0.0006419193105777791, - 0.0016010585187884298, - 0.0003164843700831394, - 0.00018344965633435947, - 0.0012354050365094428, - 0.00031854759022489947, - -4.506637043224637e-05, - -0.00011136416414277809, - -0.002053116738435719, - 9.362143940823841e-05, - 0.0011379930034989415, - 0.0013202043933142414, - 0.0013172364222867115, - 9.633451303664376e-05, - -0.00039230415542113305, - -0.001646434152603326, - -0.0009203842537089421, - -0.0005078819457924479, - -0.0001000051843733744, - 1.9317752182261587e-05, - -0.0011623207112037947, - 6.859357657754788e-05, - 0.001030172599956381, - 0.00048089308262030044, - 0.0006329151164193334, - -0.0005276879572700488, - 0.001422241702424021, - 0.0019206288034988024, - 0.00029628097489870094, - -0.0012619571537566521, - 0.0007349271507982874, - -0.00015789367132785614, - -0.0009369127571548466, - 0.0004173558730604802, - -0.0012275663977245647, - 0.0009443094816642983, - -0.0022860527883971473, - 0.0009737847237349877, - -0.0009872573095613586, - 0.0005132370877832219, - -0.00045630560786413235, - 0.001083667485740534, - -0.0006170656965366864, - 0.0007697744755520887, - 0.0011701844800048858, - -0.00032209929786908195, - -0.0011464336473092779, - 0.0010432983523237947, - 0.0004437078498629345, - -0.0008238405859633894, - -0.00019971628795815928, - 0.0013558942676473826, - -0.0027194629444495084, - 1.396169448773125e-05, - -0.00020384310888103515, - 0.0004897615091511592, - -0.0009569435803724843, - -0.0010613563828805069, - -0.0016862510150676344, - 8.234816361791192e-05, - 0.0012521322149923796, - -0.0007716930711459364, - 0.0010397456385830496, - 0.0004643572917031626, - -0.0017074256597101366, - 0.0008048271118401745, - -0.0010003028951300287, - 0.00014999149091487487, - -0.0016324163284892497, - -0.00021544854921900892, - -0.0010816260509729798, - 0.0005778952559175847, - -0.0009437245763063093, - -4.109313088620799e-05, - 0.0005618825613041072, - -9.14660991584195e-05, - -0.00013676915989934595, - -0.0020977548804213047, - -0.0010024060716985039, - 0.000813942628499569, - 0.002910503856971923, - 0.00027743585013141197, - -0.0006118032862173985, - -0.0003054358294928899, - 0.00037045513412074327, - -0.0011582454878222908, - 0.00028258670875434713, - 0.0005781612342585284, - -0.0004666743129803077, - 0.0008228570887929777, - -0.0015667094758936837, - -0.0005685565817077774, - -0.0005997846499275295, - 0.0010993180420094508, - -0.0005702094858259772, - 0.0008456071400093724, - 0.0003644659381475117, - 0.002014402760587063, - 0.0013199945688837668, - 0.0016731879288197538, - -0.00011294713048703763, - -0.0018637533941199829, - -0.0018401445282509245, - 0.0013274383717823775, - 0.0008210559082440651, - 0.0008341192788091826, - -0.0006814910485581221, - -0.0012008000423655754, - 0.00042216658574075974, - -0.0015190790944349787, - 0.00019758347844856552, - -1.1122374925310599e-05, - -0.00023697912660952992, - 0.0019477804434100807, - 0.0006921801247348219, - -0.00029667968446069575, - -0.0016617060744382969, - 3.3040740505330335e-06, - 0.001260025201538233, - 0.0002828446269614241, - 0.0010820161314267732, - 0.00042579776031105576, - -0.0007390576736198619, - -0.00017210601543133107, - 0.0007751667277719757, - -0.0030733766796276854, - 0.0005864982945987699, - -0.00027855694926501307, - 0.0008080757797369345, - -0.00101008746628881, - -0.0020685430249696166, - 0.0015554934466096282, - -0.0005696232051512094, - -0.0019318844342615946, - 0.00048152381252271185, - -0.0013340249686682683, - -8.113884873994999e-06, - 5.8581207583909176e-06, - -0.0003664944546206609, - -0.0008124234875570984, - -0.0007393758360892206, - 0.0002749805927765721, - 0.0007857026169169544, - 0.0013376843747257819, - 0.00010094376427612672, - -0.00023260175357586033, - -0.0005460834997485609, - 1.8080686156123988e-06, - -0.0012709529975755748, - 0.0007490902390655639, - -0.0005604712373798168, - 0.0005170517461923289, - -0.0008360214266937828, - 0.0017424207241518671, - 0.000870975622438546, - -0.00010715166986752964, - -0.00045482948014648384, - -0.0013148238860881836, - 0.0019062824982193495, - 0.0003379866375907695, - 0.0005409233463522957, - 0.00032802586015477544, - -0.00040116417064107876, - -0.001136375750739968, - 0.0008648043338897006, - 0.00211685213047613, - 0.0007394733921106746, - -0.001422855951256798, - -0.0023106060761122066, - -0.0004285260194135304, - 0.000764727516574208, - 0.0005669470126547043, - 0.0012642852216280557, - -0.000723812493486943, - -0.0011884404607782394, - 0.0006267913210194092, - -0.00020311908073093084, - -0.0004264022823420136, - -0.0002443745031971193, - 0.00029368106832980076, - -0.001690525765487102, - 9.667126326717362e-05, - -0.002123172549099909, - -0.0019176399475036568, - -0.0003503639656679751, - 0.0004270236023820176, - 0.0009388492673326058, - -0.0013206858125217361, - -5.382223527325159e-05, - -0.0009665712097343219, - -0.00011529103595023272, - 0.00010294674829624418, - -0.0018236854493635616, - 0.00042544776243640147, - -0.0018216236885013446, - 8.986714110486747e-05, - -0.0013936254462709424, - 0.0004890561338171542, - 0.0009456268048341018, - -0.00014879063425070932, - 0.0004932008296410081, - -0.001985412879949309, - -0.0019460779285533174, - -0.0016319981571238788, - -0.00010217497434549203, - -0.0007406147737175941, - 0.0010547697704510234, - -0.000730249798906033, - 0.0004026355239908254, - 0.00013424914009303209, - -0.001737141044031844, - 0.0007983115957285136, - 0.0006915881619443882, - 0.0012421664328823962, - -0.001979113530535867, - 0.0015455612177918932, - 0.0007005680614601825, - 0.00022917136424097654, - -0.00028548305671926877, - 0.0012392794952678632, - 0.0018033833976897672, - -0.00035358935586977594, - 0.000252192267664189, - -0.0005074733164653379, - 0.0015055123316474676, - -0.0018387158534756234, - -0.0006823090763183634, - -0.0013250217108641018, - -0.0003418165898686746, - -0.0012250048120941305, - 0.00023305549072211146, - -0.0006677346525666419, - -0.0004068516296128657, - -0.0016606463292844489, - 0.0003108468323282655, - -0.0004905640435569638, - -0.0003242532019242971, - 0.0008308500919972655, - -0.0005024468221710894, - -0.0021944695687850947, - -0.0003902358600398116, - -0.0004670859863915425, - 0.00038400183320553964, - 0.0012502876896419027, - 0.0012933714424892854, - 3.0594174225691774e-05, - 0.0008573554019719845, - 0.0023071980759245335, - 0.0008484477360543209, - -0.0015004397364134464, - -0.0008673749959249306, - -0.0003468744154771835, - -0.002097818569918737, - -0.0002446044877129122, - -0.0020208643526938895, - -0.0009368573291960067, - 0.0005730343291981495, - 0.0012002998030520625, - 3.3014553184540255e-05, - 0.0008631821597171851, - 0.0021698016841543047, - 3.8517822691303425e-05, - -0.0004935436956373933, - -0.0005373365314013608, - 0.0009607682513232158, - 2.049181140956154e-06, - 0.0007822987633515368, - -0.0007030456311350856, - -6.891686597563906e-06, - -0.0021062130489541506, - 0.00034609287147937455, - -0.0011190977030234189, - -0.0010639987166455275, - 0.0005412131548046423, - -0.001617479122100571, - -0.0004424825891391762, - -0.00012493495857054582, - -0.0016234124243771609, - 0.0024460350668254653, - 0.0005784464464665057, - -0.0011651762079857228, - -0.000585301465188086, - -0.0007041304213295126, - 0.0011990538232895633, - 0.00013837840483173843, - 0.0010658522296592549, - -0.00040108914407134224, - 0.00032783066250563806, - -0.00011884698213060572, - -0.000855462276604808, - -0.000744956076567463, - -0.0016491241254062102, - 0.00025385841614923024, - -0.00013736058539243797, - -0.0002333460097353297, - -0.0005147768091208899, - 0.0011047375464618293, - 0.002059361503837074, - 0.001602556555925231, - -6.986677411936739e-05, - -4.605457292351225e-05, - 0.00028647498727823594, - -0.000255664253788858, - 0.0016597504696430404, - 0.0010342774720601172, - 0.000981136972606408, - -0.0003813127972811046, - 0.0008936664663781762, - 0.00045757148165723253, - -0.00029759935712718504, - 0.0007747043130495676, - 6.865452762244633e-05, - -0.0007895057511171324, - 0.000282968295391777, - 0.0002243239227064678, - -4.244157923273849e-05, - 0.0006000809317600359, - -0.0004888667060846292, - 0.0004922193022264176, - -0.0012022389482396693, - -0.0010150105635461444, - -0.0013183525664108304, - 0.000822436249630039, - -0.0002691614911437611, - 0.0007324786354678893, - 0.0003361428508106528, - -0.000730466473479751, - -0.0010025319046157387, - -5.210866416014479e-05, - -0.0004278832789257826, - 0.0013635966433536073, - -0.001211459065954199, - -6.714320470011357e-05, - 0.0008640115985963593, - 0.001309457111114345, - 0.0003864492378095713, - -0.00021360478557697673, - -0.0005146921886155855, - -0.0013547760178789024, - 0.00047680355514861564, - 0.0013366686476931273, - 0.00040525217216576514, - 0.0012924209968581514, - 5.448969934684256e-05, - -0.00030968819612447264, - -0.0018233917233371675, - -0.0019594800714508647, - 0.00031105734836450743, - 0.0007058177474352455, - 0.001028067564470791, - 0.0006430564897551909, - 0.001165300251781533, - -0.0012904771597934384, - -0.0012493991550566518, - 0.0007224452284707664, - -0.0006868762531991568, - -7.433822192561543e-06, - 0.000419831007631216, - -0.000615202620135087, - 0.00011227575649486219, - -0.000278422677364653, - 2.745092977693214e-06, - -7.406894581130114e-05, - 0.0008233436816900248, - -0.000599916002358613, - 0.0015848584832032287, - 0.000369002295358606, - -0.001604446661615565, - 0.00011010783377195321, - -0.0020627786783992273, - 0.001340276546740976, - -0.0003700677160689331, - -0.0001749341301310572, - 0.0011890712557522192, - 0.0014637482969635, - -0.0011187955047257706, - -0.0006555655821732263, - 0.0006437238547709282, - -0.0007659802320640402, - -0.0012736505653561142, - 0.002167079932134345, - 0.0013138638228368605, - 0.0006889414454031902, - 0.0006126343432525338, - -0.0010169520914636856, - 0.0011875281503711127, - -0.0003605320589748387, - 0.000510780438342156, - -0.0014684873961559632, - 0.0011391977852365667, - 0.0003398929153577536, - 0.0007867435654827409, - -0.00042408810100382074, - 0.0006097572836255118, - -0.0007744536957718152, - 0.001181236028388171, - -0.0007746073291702536, - 0.00031893627385032384, - -0.0004984754575266347, - 0.0011211728343589308, - 0.0010918431556506058, - -0.000619982486348485, - -0.0005080967275058221, - 0.0012738124746728315, - 0.00020664929747826952, - 0.0007801245803006095, - 0.0003258521766288535, - 0.00023490032275586068, - 0.0003752410970738025, - -0.0005197174852171936, - 0.0011155901952354423, - 0.0007246439808099511, - 0.0027865889010256066, - 0.001578778028889592, - -0.0005849947263398485, - 6.104988772459525e-05, - -0.00018475553217899934, - 0.001076456866430889, - -7.53622018916458e-05, - 0.00154722076760379, - -0.0012283846124204751, - -0.0001222015652617201, - 0.0003537529866226833, - 0.00013146316241471732, - -0.0025803592902775346, - -0.0003405374123815561, - 0.0010602139846087257, - 0.001180416064566177, - 0.0006156041808686011, - -0.000732431543048822, - 0.000409564680782092, - -0.0009185471433802978, - -0.0005078281722235376, - 0.00035921845791313803, - -0.0010788193452080344, - -0.0002702927531471816, - 0.0005978954551864736, - -0.0007505053768835447, - -0.0008399044148253899, - -2.6532418467303472e-05, - 0.00029069536579206184, - 0.000985731820166981, - 0.0013150802809225655, - 0.0013796208485526318, - -0.0009571017062595512, - 5.774979482628108e-05, - -0.00035099830536769217, - 0.00020599610296786637, - 0.0010396111659921152, - -0.00023081893312596168, - -0.0006653132787182625, - -0.0006868199882813954, - 0.0005537573104270205, - 0.0002393629038720559, - 0.0020052776541683174, - 0.0014963901752891341, - 0.00026430941455372, - -0.0019857717911744787, - 0.00039349296202540764, - 0.0008180449316328231, - -0.00016681702075426106, - 0.000392398589262528, - 0.0008132689861899392, - 0.00022293056339078816, - -8.145176168099882e-05, - 0.0003996604852576758, - -0.0015570517774160843, - 0.0002380878821006812, - 5.332798749002582e-05, - 0.0006599982374754875, - 0.0009014421866752351, - -0.0011465141064124704, - 0.0005162077549538458, - 0.0015722865540113188, - 0.0004602303584114511, - -0.00024272536782392096, - -0.0025738020784470666, - 0.00073871961002416, - 0.00010451213239470869, - 0.0011776867252551021, - 0.0007936554503863816, - 0.0006130661765591344, - 0.0008601448041345303, - 1.562337918297861e-05, - -0.0017477411576108475, - 1.8625693746035132e-05, - -0.0008085929982529302, - 0.0005601505007029594, - 1.2646860007249775e-05, - 0.0008622518503659729, - 0.0003971874187048324, - -0.001415290620623809, - -7.364610663021134e-05, - 0.0011551931065254674, - 0.0003858769786357842, - 0.0015523449846720262, - 0.0017670059742932581, - 0.0001097471848901264, - -0.0005666905175071421, - -0.0009624659609773999, - 0.0011766726793869685, - -0.0007581160183263838, - -0.0002485637331608375, - -0.000766389718930016, - -0.0001147866564384636, - -0.0008165767237517452, - 0.0009038278059488839, - -7.095092334352007e-05, - -0.0008393326061074984, - -0.002098248437167303, - -0.0008293399692756631, - -0.0007973206187543041, - 0.00022393027909728376, - -0.0002075892058876811, - 0.0004823878787451149, - 5.6578630575850575e-05, - -0.0015476824482271794, - -0.0003837989246754645, - 0.0011539842852826133, - 0.0008038530832645343, - -0.0018425408164421282, - 0.0006741348147541781, - -0.0026135333467360218, - -0.0002021745722511274, - 0.0016041350763864684, - 0.0002800798348881341, - 0.0005332792656691159, - 0.0009215787798109731, - 0.0005902693991096697, - -0.0002555022523153384, - 0.0009292470287378445, - 0.00031597190088520206, - 0.0005217257288512134, - -0.0011568436992485844, - 0.00020515250677229468, - -0.0006766794218785168, - 8.754057925905329e-05, - -0.00010582786147214754, - 0.00024016414665021114, - -0.0012629119585100116, - -0.00016784270250800917, - 0.00012051252081820505, - -0.0007931617207703749, - -0.0005314224810808128, - 0.0013636939623792308, - -0.00019733045638944388, - 0.0003175259857080333, - -0.00022930891345697668, - -0.0024031463034358265, - -0.0005914244155622334, - -0.002409028898315769, - -0.0006725598047093896, - 0.0013283334241446934, - 0.0013460788382625938, - -0.001374147660756294, - 0.0002902626599468961, - -0.0017506782762682928, - -0.0006412085131022595, - -0.0006349209963699817, - -0.00277875684992486, - -0.00023732270098082684, - -0.0005596210221575188, - -0.000278069944761283, - 0.000490908789191702, - -0.0007939636970208462, - -0.0003602347838674871, - 0.00010166549685505945, - -0.0015112245643525261, - 0.001192383156286273, - -0.0008632109817940913, - -0.001132363204318021, - -0.0005117981424452351, - 0.00028453006556164456, - -5.1195690895280236e-05, - 0.00033953905445530797, - -2.203684166798573e-05, - -0.0012742570948088235, - 0.0006489291508449984, - -0.00042639774254457836, - -0.00196551922655889, - -0.0011956047856194448, - -0.0005808918023858585, - 0.0011066597422632136, - 3.612663983739742e-05, - 0.0005126094077248752, - -0.0016797129724157498, - -0.00018772012091656327, - -0.00159142348290713, - -0.00011416941218344202, - -0.00045332259881387005, - 0.0003234681121386211, - 0.0011408844911139258, - -0.0014624011334223692, - 0.0005493642085944968, - -0.0010793334260166116, - -0.0011413728060256977, - -0.00048025171179311626, - -0.0003320354629259299, - 0.0012035002237285397, - 0.0005237036931881693, - -0.0004853643579361871, - -0.0020352415137207683, - -0.002027424077974949, - -0.00200494683400673, - -0.0007459607687812264, - -0.0006888646964515156, - 0.001260684324967894, - 2.563580813003564e-05, - -0.0006066258043883766, - 0.0008562490859970894, - -0.0001404123993863278, - -0.0007072895690304811, - 0.0004027643755847724, - -0.0006092094233809057, - 0.0018727959138857462, - -0.0011777769625130453, - 0.00041423040635375156, - -0.001567016713522579, - 0.0015947025233432788, - -0.0014298277550677657, - 0.0006539601414297519, - 0.0007303655493469286, - -0.0005159515229014994, - -0.0005388363387749064, - -0.000667669506235439, - -0.0005552806074380231, - 0.00048625581969047343, - -0.0018330117493477426, - -0.000868945592557178, - -0.0003749432890153304, - -0.0007220261173136594, - 0.0016456925699277888, - -0.00039290122536982786, - 0.0005087820442687141, - 0.00021611132457242049, - 0.0006791233180886207, - 4.3672660564131204e-05, - -0.00031703035992492666, - -0.001333363759590335, - -0.002227750789917166, - -0.00011233453211475567, - 0.0006313094493940804, - 0.0006842278125827254, - 0.0009845870310099402, - 0.0006823029772282072, - 0.0006282599654239465, - 0.0004752904541980526, - 0.0007570686600920462, - -0.0009389745358921389, - 0.00034625638050921975, - 0.0007256760214261097, - 8.150687766616784e-05, - -0.00015049426632357776, - 0.002211276410941523, - -0.00047326807129525344, - -0.000201901507063177, - -0.0001433305482424617, - -0.00018795330785152455, - -0.0006202139987968688, - 0.000581863993422844, - -5.2376182603352416e-05, - 0.0012704302508024035, - -0.0009825240175870206, - -0.0006633931188605078, - -8.910139215880162e-05, - 0.0013663134223497475, - 0.0005991260996378422, - 0.00044477970697956324, - 0.0007501715917140904, - 0.0013511337762475806, - 0.0001214256958928739, - 0.0007583777486128648, - -0.0014026249919138845, - -0.0007211981825201494, - 0.0006846442395077277, - -0.00018820538147172394, - 0.0005751380519013757, - -0.0008294203911511591, - -2.6601342756898305e-05, - -6.849333766889348e-05, - -0.0004909509323422891, - -0.00022239412074830857, - -0.00020847754261698565, - 0.0008257006424768218, - 0.0016581652811088793, - -0.0007291942933001395, - 0.0008896394916943732, - -0.001300730569004944, - -0.0011608986454166397, - -0.0006120664013719106, - -0.00010679795470827083, - 0.0002095848364660721, - -0.0011828123831651627, - 0.001320593213208555, - 0.0005841337011111377, - -0.0010932066681299782, - -0.00044588108561541663, - -5.674678625711186e-05, - -0.0001549303051016732, - 0.00010637630488234024, - 0.0018511443688712806, - 2.8921632609092223e-05, - -0.0002807586040852862, - -0.0015963268290256011, - 0.0012288466523686032, - -0.0005698864890856203, - 0.0006378882836946825, - -0.0002694531746827519, - 0.0008374973940131107, - 0.002152731621290208, - 0.00018798830403729807, - 0.0008343823592908944, - -1.3071693133587619e-05, - -0.0003934816410386631, - -0.00016181742398115804, - -0.0016276867471682716, - -0.001239266288387296, - -0.0012434402926105453, - 0.0004054164991831823, - -0.00019315467856389516, - -0.000108445879923718, - -0.0008045191371250114, - 0.0009443589097034293, - -0.00020242420902438516, - 0.0009994778794939342, - -0.0006690483407247866, - -0.0003110409086854358, - 0.000996666995853646, - 0.00048665140933557623, - -0.0003292670533428893, - 0.0005525585997622691, - -0.0002959643820411061, - 0.00023912830408008695, - -0.00039236977722792974, - -0.000720235195100531, - -0.00047629737138278405, - -0.0003729640430239032, - -0.0007888212138015692, - -0.0011899563429616355, - -0.00019467410482964807, - -0.0023938728384074693, - 0.001964806446106273, - -0.001608821448536066, - -0.001358642758237228, - 0.00028685664579147595, - -0.0005396038748098848, - 0.000759550068091111, - -0.0004764150917235405, - 4.509146546107997e-06, - -0.0016609098082102699, - 0.0021547077999567407, - -0.0015770853234237233, - -0.0010451495348943842, - -0.00045599739965561836, - -0.0006418354362705543, - -0.0013118123164979985, - 0.0003160330162135682, - 0.00140538452942483, - -0.0012590560211136576, - -0.0006052548233157692, - -0.0005925501312914538, - 0.00038660109580858153, - -0.0006841522493043743, - -0.0012940730907945953, - 0.002092053366790811, - 0.0002909847383096608, - -0.0001184986865988977, - -0.0009180712202220647, - -0.0009701570645118182, - 0.0006896967015832845, - -0.0015233461784191383, - -0.0027930621627318014, - 0.0015835646317381568, - -0.0006968184641284831, - -0.0004857276526237211, - 0.0005048058896396793, - 0.0007275431037733841, - -0.0019100153724950517, - -0.0010930973147686997, - -0.0008355773432517931, - 0.0011668526295628137, - 0.00020021964891618813, - 0.0016819146078641675, - 0.00043089275001556034, - 0.0017129003148458502, - 7.210290497636275e-07, - -0.0010273402343084009, - 0.000133960980782664, - 0.000912354547184058, - 0.00036961915852731726, - 0.0004929623845970906, - 0.0016968759993682414, - -0.000144204769883751, - 0.0006286751882712885, - -0.0006397505127161863, - 0.0012340516863637665, - -0.00044799897688888355, - 0.00026825912205174975, - -0.0002800249688174469, - 0.001174839660812033, - 0.0006373322143182147, - 0.0008809313360358395, - 0.0009191940398271611, - -0.0002459604081943741, - 3.691788584990818e-05, - 0.0014325655592716119, - -0.0006605675318798914, - -0.000913329286883658, - -0.0003638426505962881, - 0.0005470841610246902, - 0.0011631901580240686, - 0.00021239277940573922, - 0.0006945846526577841, - -5.436662783687133e-05, - -0.0021333884915431547, - 0.00022592771443466912, - 0.0009631340577983418, - -0.0008134907707297848, - -3.599491401519592e-05, - 0.0021843894510439276, - 0.0008147808098185808, - -0.0016387179064752467, - -0.0004684967418960447, - -0.0005334142832204746, - -0.0010268758957526416, - -0.0006717153592404915, - -0.00022170949745977663, - -0.0022325587330628604, - -0.001213530712346098, - 0.0017700695204816365, - -0.001817718810099104, - -0.0001497081860716363, - -0.00037870759509842035, - 0.000865832966021282, - 0.0012125692782022986, - -0.0005861152116053501, - 0.00030006024131923944, - -9.173830990751722e-05, - -0.0012425109131014734, - -0.0012814189473053306, - -0.0007400652960620095, - 0.00038076640339828244, - -0.000617642069344742, - -0.0011851733180349134, - -0.0010520496942468419, - 0.0005887410012730694, - 0.0009905497330408486, - -0.0002155572703811626, - -0.001582993383871847, - -0.0016037872167969584, - 0.00014495867257661982, - -0.0001897760308897799, - -0.00043519278973907133, - -0.0006424044221954241, - -0.0007539053756717707, - -0.0007084186385083712, - 0.0003200479541522608, - -0.0007918115751149085, - -0.0004525474082139826, - -0.000205116714502974, - 0.0004042382251490799, - -0.0002949979444739781, - 0.001106551255169697, - -0.0005815126967648445, - 0.0005067407849244036, - 0.0006460524513034605, - 0.0014887924978461238, - 0.0010105644953590054, - 0.001181819090633168, - 3.883910990068191e-05, - 0.0007940191763439044, - -0.000165608093294929, - -0.00010571552903757169, - -2.5181816148969833e-05, - 0.0007440211838726194, - 0.0007979053100157758, - 0.0002898171077347486, - -0.0009744608727769221, - 0.00039688041970231593, - 0.0010711558506647158, - -0.0023438818275539736, - 0.00021292986795289637, - 0.00041503675307908496, - 0.0009216200092119728, - 0.0004602650591518474, - 0.001173362260458247, - -0.0016331516370187275, - 0.00024047129921990696, - 0.0016656968453725757, - 0.0008273279167119124, - -0.0014548037934627263, - 0.00047086071795068895, - -0.0010083384392413621, - 0.00031795166647274474, - -0.0008242606704852223, - -0.0010804913326859804, - -0.0011458265334717479, - 0.00046722635094077644, - -0.00028466502950329176, - -0.0007992480241543912, - -0.000477813280046476, - 0.0018705299459796858, - 0.0009541099501967494, - -0.0014072980973949365, - 0.0006967389633240432, - 5.087668728594888e-05, - 0.00045375599886690913, - -0.0006412718345660544, - -0.000516124021342654, - 0.00022798568406440743, - 0.0002735813562677324, - -0.00019618745088882902, - 0.0004029282180293909, - -3.645050487006767e-05, - 0.0005709813041700008, - -4.646514324692398e-05, - -0.00023108888779890398, - -0.0020858542387901047, - 0.000477257099629505, - -0.0011147343922426394, - 0.0006332114878604241, - -0.00040164123100371973, - -0.00010212374047788917, - -8.634935624205576e-05, - -0.0007263584747309839, - -0.0017474927031298285, - -0.0002666042297596156, - -0.0004257790583879524, - -0.000535382050788839, - -0.0012259477227380535, - 0.0007712795764427245, - 7.133258340767518e-05, - 5.3509884802214344e-05, - 0.001409166359372516, - -0.0004918117786618525, - 0.0005577813403175204, - -0.00010088633605677416, - -0.001570671850880674, - 0.0017497319640446458, - -0.0011071986792333204, - -0.0001334321844741402, - -0.001697905025402217, - -0.001319970714048115, - 0.0024032930901300487, - 4.063031649065766e-05, - 0.0005998750338648811, - 0.0005807968702618021, - -0.00010114767089529194, - 0.0008291201955352334, - 0.00039089537767464074, - -0.0002337435943369629, - 0.00041485119831830675, - 0.00041062903295235084, - -0.0005091872880191606, - 0.000635590233310061, - 0.00014731552045611486, - 0.00041320444631732817, - 0.0003766878112598191, - -0.0014672959166884998, - -0.001290875480581679, - -0.001234920541792042, - 0.0012117509940392207, - -0.000872681831846063, - -0.0007821361704960821, - -0.0028951007263108655, - 0.0027170640733617, - -0.0004691151098443605, - -0.0002353108942234338, - -0.0016164287198581393, - 0.002659762145740645, - 0.0005390233923847069, - -0.0001286963667155386, - -0.002739181253587849, - -0.0009290900842855405, - -0.00039886163552807914, - 9.98392874445368e-06, - -0.0015750285193356025, - -0.00010545075258252547, - -0.0003656096445653432, - -0.0009742525147178536, - -0.0008683469689164904, - 0.0009380232895085392, - -0.001447695390837758, - 0.0012785138923256708, - 1.4343582713155558e-05, - -0.000628053631327963, - -0.00020025736005281123, - -0.0020621649888766876, - 0.0015063462238918658, - 0.0002742087374198063, - -0.00010869799021815443, - -0.0002677107486376507, - 0.0016985644383963438, - -0.002273973011263837, - 0.0006876784485962671, - -0.0007667822038045903, - -0.00012047469062653027, - 0.00017723604317313713, - 0.0010602087339038936, - -0.00028816829911515517, - -0.0012829769920831534, - 0.00015968558100220022, - 0.0010949041679145007, - 0.0003624079759931261, - 0.001716678977989426, - -0.0014865368095110028, - -0.00024624320403963804, - -0.00018962359873577367, - -0.001475131879835043, - 0.0006578836179177148, - -2.638128094661584e-05, - -0.0012045653294561406, - 0.0018471952478932593, - -0.0013681130858277503, - 0.0011504629342292056, - 0.0011594460361146195, - -0.0009898497527947017, - -0.0006467342238948637, - 0.00012463086965774922, - 0.0007862436869864922, - -0.0006179142604437481, - 0.0008190148181260493, - -0.0002700979592749801, - 0.00024939232855442366, - 6.150578043976072e-05, - -0.00042699770961816905, - -0.00019379276269970686, - 0.0009009534077425097, - -0.0009005774570748357, - -0.0007205104778237747, - 0.0016044183007746012, - 0.00014949866976280785, - -0.0004716142709892259, - 0.0008219751226348238, - 3.0923525114497866e-05, - -0.001091950663318345, - -0.0003182441390251327, - 0.0008034850175198171, - -0.0008735520858494533, - 0.0006410885284087482, - 0.0019201963909479577, - 0.0020951232606051915, - -0.0004701139489623465, - 0.0013101522577056842, - 0.00017593474662716676, - 0.0005359054115362458, - 0.0014541803516126691, - 0.0011368592533270183, - -0.0008116694984707718, - 0.001426476879269572, - 0.0002188285954218074, - 0.00125987154687111, - 0.00012504456276568279, - -0.0014189942737103183, - -0.0010020145399649738, - -0.0009441485667828218, - -0.0009280763430605002, - -0.00036473188360457344, - 0.0014540194966130328, - -0.0025239085054195756, - 0.0007962510228958058, - -0.0003734122400056384, - 0.00187174756657425, - -0.0010122272444886146, - -0.0002161613671363778, - 0.002690439157326255, - 0.0002130206259455728, - 0.0002678621899435048, - -0.0005602890234925605, - -0.00051634941784355, - -0.0003725301078042737, - 2.2399717163246496e-05, - -0.00020270465534419168, - 0.0001633122615867127, - -0.00044584946087845476, - -2.0209984348065463e-06, - 0.00037459234068929284, - 0.0007266674594783419, - -0.0005094737450554702, - -0.00108822820682533, - -0.000472390705645715, - -0.0015397812962806606, - -0.0011841976192919009, - 0.0013260037489881801, - -0.0010073243641000723, - -0.00123435991332459, - -0.0008254600154519698, - 0.0005097685741366842, - 0.0011019273071698505, - 0.0010951643103858514, - -0.0008531950365690771, - -2.2002894548504516e-05, - -0.0008212998112916861, - 0.001182043852917157, - -0.001662414853618538, - 0.0003546079334350781, - -0.001034680373980675, - -0.00013047738775384113, - -0.0003981927513699645, - -0.00023130132844079775, - 0.0009376033794230996, - -0.0003061131332500271, - 0.0004387494117247188, - 0.001461559835628064, - 0.0012952731400943515, - 0.0006928502291391938, - -0.00015802433291885984, - 0.00032736889218481737, - 9.590625266935413e-07, - 0.0005322423797166227, - 0.00029167516991748896, - 0.002265474426906923, - 9.294768617179942e-05, - 0.00010880840745224164, - -0.0011881483685050275, - -0.0015334345451020587, - 0.0009748655400885992, - -0.00026007935985254287, - -0.0004011296554558339, - -0.0023526735820937573, - 0.0006987779636898977, - -0.0006368319087558572, - -0.0006505610918561765, - -1.9031921515521677e-05, - -0.0005716762691623259, - -0.0018857608131461778, - 8.836201197766528e-05, - 0.0001820590880885707, - -0.00024515369192424567, - 0.0004135701631112784, - -0.0012085766731435446, - -0.00048592254981358524, - -0.0007498000216146002, - 4.998139305288978e-05, - 0.0008117855438706916, - -0.0001996169323031093, - -0.0004875628994355697, - 0.0004184022373380142, - -0.0025252734937869043, - -0.00018888757583779533, - 0.000959690211753677, - 0.0004451733204918563, - -0.000552504024717263, - 0.002933458861436471, - -0.0018445809935875759, - -0.001198747419306746, - -0.0006974758038914129, - -0.0006999252369923829, - 0.0002934726964686592, - 0.0009709545933470925, - 0.0007383180239909635, - 0.002525671436889377, - 0.0007192645646370746, - 0.001126931143591391 - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgb(246, 207, 113)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 1", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.001126931143591391, - 0.0001366516959005484, - -0.0015903656318779972, - -1.6141046952390164e-05, - 0.0010141515780524568, - 0.0014183755598595202, - -0.0005928264449893003, - 2.0251600745825583e-05, - -0.0014156428362243638, - 0.0013164401183389494, - 0.00021973283891391201, - 0.0009724863026296366, - 0.000924659278281904, - 0.001325451513325202, - 0.0009668530479842803, - 0.0009612186721239702, - -0.000672235515842028, - 0.00013644959056582277, - -0.0005790234095104245, - 0.0015284633565679601, - 0.0003113080994637032, - -0.000773275080424825, - -0.0022344139741296257, - 0.0020997562127716427, - -0.0007012231494118201, - -9.637168800831716e-05, - -0.0008335824086203008, - 0.0011183307775925017, - 0.0007039680716917274, - 0.001341259538433009, - -0.0011001865847509713, - -0.0014837681632402253, - 0.0006159149024880919, - -0.0002197160931841358, - 4.7122302567410966e-05, - -0.0010259166288988048, - -0.0013620400295850765, - -0.00022595094293072256, - -0.0015740335939073502, - -3.435211670847887e-05, - 0.0007541801071030402, - -0.0004032140891217525, - 0.0015700894033756382, - -0.0005432385746703323, - 0.0001289451971919868, - 0.0007813358844492947, - -0.0002465752262623505, - -0.0012393174614247786, - -0.000295508054343837, - 0.0005156792747163233, - 0.0008311634564697458, - -0.0020460928541422233, - 0.00023253516154396182, - -0.0005625100382057205, - 0.0004460829508404133, - -0.0007011281251223634, - -0.0011601488493758886, - 0.0005383807365162702, - 0.0006335350430294133, - 0.0008355086465069216, - -0.00015834726196869257, - -0.0006686773654045602, - -0.00025379647272931455, - -0.0020332966581009227, - 0.0006860464003001382, - 0.0008889821410372325, - 0.0001760108828055627, - 0.0010121741852197178, - 0.000748115122651041, - -0.0010493977663692685, - 0.0010810319202276045, - 0.0009185747514156867, - -0.0011957526020308403, - 6.992264891079855e-05, - -0.0006164535099501062, - -0.0007928957448012011, - -0.0010831868741394694, - 0.00010273839135493037, - 0.0014037208595317596, - -0.00041127060523931107, - -0.0009649187196545049, - 0.0004561901165400211, - 0.0015166453806362643, - 0.0005153862673314311, - -0.001555689231621431, - -0.0007334389975181775, - 0.0008978713915292089, - -0.0005679525936062184, - -0.0003343448392419797, - -0.0015080138150037894, - -0.0013574122933790076, - -0.0001818735725262273, - 0.00035621195229933666, - 0.0011598531762431008, - -0.000732106989580845, - -9.224495255209884e-05, - -6.920200301530493e-05, - -0.00039854097524154335, - 0.0018128646661889785, - -0.0010467386550527963, - 0.0007874365955585045, - 0.0005148352373045059, - 0.001184297519873447, - -0.0008387169225888131, - 0.0001620083539185236, - -0.0004544854439237014, - 0.0014435865050377158, - 0.0009114638227535225, - -0.0011121874773851834, - -0.0006689141913884242, - -0.0013471246556142767, - -0.0019669757974935327, - -0.0005340438950862949, - -0.0012533673061330408, - -0.0008242765623723733, - -0.000400506520026716, - -0.0010857026760696846, - -0.0003630176112332235, - -0.0003305438538704915, - 1.613101801989215e-06, - -0.001695827934458258, - -0.0006469973382303982, - -0.0002768887147184687, - 0.000711234267255801, - 0.0005374959296455829, - 0.0005010291354970452, - 0.0013655328896184397, - -0.0008651033094811328, - 0.000957018460325614, - 0.0004445285046467526, - 0.0004634626358003315, - 0.0001250956287438983, - 0.0009814802816564105, - -5.913542969880399e-05, - 0.00024059156664428736, - -0.000774000652460641, - 0.0005184447470164419, - 0.0016363967842105346, - -0.0006516973385118717, - 0.00025941933126452286, - -0.0004385700743258704, - 0.001171463854901054, - -0.0009810727296613113, - 0.00017597992509834313, - 0.0016186565418279575, - 0.0002777088089580539, - -0.0010944259877069752, - -0.0002846413857934735, - 0.0007954071674765002, - 0.0012779386207758276, - 0.0015566946564149105, - 0.0025746718917090032, - -0.0023269376478664066, - 0.000693046858208233, - 0.0015757448156827876, - 0.0010496338638337286, - -0.0005326612570837433, - -0.0005152459636464881, - -0.0008965367335374877, - 0.00042967373324542726, - 0.0013343074451989333, - 0.00015868925799671053, - 9.878218320458142e-05, - -0.0018058107756518515, - 0.00023163985333152893, - -0.0013065360234357382, - 0.0017288921215923845, - 0.002467173120371578, - 0.0011292433227409007, - -0.0004952077209646962, - 0.0004971297219294988, - 0.0011635221915711534, - 0.00042312171518775623, - -0.0007547485318006465, - 0.0010072451423153996, - 0.0019405825062723653, - -0.00017438556724143144, - -0.00045438355878542444, - 0.000602426173135403, - -0.0006114818015161131, - -0.0013186792120691143, - 0.0015031247978081858, - 3.108486111033439e-05, - -0.0003607219519723518, - -0.0007553023443461253, - -5.213772624731532e-05, - -0.00016113630380516658, - 0.0005316223063966308, - 0.0018797631811885188, - 0.0011317604973735311, - 0.0001105499983143108, - 0.0006391477767964717, - 0.0016973353061446555, - 0.001491002095371194, - -0.0006752178420190775, - -0.0004134602408195504, - 0.0012432682915026801, - 0.00036195406733182913, - 0.000962240989083526, - -0.0017416576414350945, - -0.0016820608999933563, - 0.0008145318740809254, - -0.0012613218340321239, - -9.811475346797134e-05, - -0.0010718231266453355, - -0.0009918240861324157, - -0.0008084875095440158, - -6.544305367411308e-05, - -0.0004226314168548488, - -0.0016463389351741777, - 0.0016417185599581301, - 0.0012515357126305273, - -0.0007715404139028981, - -0.00033794100739727764, - -0.001371558647158496, - 0.0010772479005707527, - -0.0013614924609903804, - -0.0019378958696946286, - 0.0009655834497069659, - -0.00042273410142852755, - 0.002880476699537658, - -0.0006931669625328902, - -0.0015454302969523308, - -0.0004520126714128924, - -0.0003211542325842148, - 0.0010300608908205577, - 0.0013637695563362285, - 7.019898762653762e-05, - 0.0007022963336557063, - 0.001284750778629835, - 0.0013780578795157354, - -0.0006159455172943725, - 0.0014275252918954117, - -0.0004992585971343146, - -0.0016587081376633203, - -0.00038978435843671456, - 0.0015289567393887656, - -0.0007801216496269912, - -0.0002351487085125739, - -0.0011269450394805485, - -0.0008207060850357216, - 0.003436006888906119, - 3.969894167343236e-05, - -0.000937149048974453, - 0.001627772334418262, - 0.0009394554694743463, - 0.0019199598327396417, - 0.001475548735335455, - 0.0004736504387364243, - 0.0017218902365051167, - -0.0007151789634403687, - -0.000964045571154726, - -0.0017232289531033608, - -0.00023189172058351944, - 0.0007273340029073256, - -0.0014769933782213596, - -0.0005240229991746775, - -0.0010703982666376232, - -0.0011147694178254655, - -0.00046479983943393253, - -0.00024692378629351366, - 0.0005135312558812957, - 0.0008137378216161216, - -0.00022470298599309416, - -0.0007897330365318092, - 0.00024004734106718677, - -9.73668684757632e-05, - -0.0002077905419281723, - 0.00015351522632984062, - -0.0010282630768558365, - -0.0016146349700336612, - -0.002132785870314595, - -0.00021585278062098787, - -0.001256743315064973, - 8.486112819320546e-06, - -0.00019726348075824963, - -0.0005505423875859423, - -0.002176026970044841, - -0.001062651639090081, - -0.000259497106160153, - -0.0014714410195160574, - -0.000771856426681798, - -0.0020508417689438104, - -0.0005448122064344424, - 0.0002024347618679283, - -0.0010138942124668542, - -0.0007335647005357454, - -0.00024167665593139345, - -0.00025524468761861104, - -3.620078457539255e-05, - -0.001591907765008563, - -0.0003036012890598751, - 0.00016070910005241246, - -0.0007324961181870225, - -0.00028772253446395895, - 7.4472019794120384e-06, - 0.0008797096211713593, - 8.779015515382102e-05, - 0.00030202778894021515, - 0.0005401863858402514, - 0.0005642370637142385, - -0.001959472313274904, - 0.0015777412214555218, - -0.0004361961110646103, - 0.0014092383462920438, - 0.00029401238806307453, - 0.0009483105115579143, - -0.0002945067305621721, - -0.0004148480516392149, - -0.0013148667130008873, - -0.0017770183202668734, - -0.000227260646288678, - 0.00018217712677001284, - 4.435561949353904e-05, - -4.881038754528242e-05, - -0.0006441057217582518, - -0.0003939393138002342, - 0.002468002600724897, - -0.0003487563722054912, - -0.0009087350645634162, - 0.0002410580703455328, - -5.565118020245435e-05, - -8.504925945877954e-05, - 0.0026837596708299467, - 0.0006085758662826813, - -0.002115735062611961, - -2.9554599949651823e-05, - -0.0011472261510875354, - -0.0014206758324288931, - -0.0013697209120798178, - 0.0005085856333263151, - -0.00022074100734592087, - 0.0007242100719563329, - 0.0006061667616127033, - -8.504218273974198e-05, - 0.001052180513170455, - -0.0004353675150500951, - -0.00027287111201217097, - -0.0006074636239509929, - 0.0005406081715957534, - -0.0009069478185534231, - -0.0005894916566845345, - -0.0007559776446997182, - 0.0009290486295427513, - -0.0005848156009482677, - -0.0013234134651057274, - 0.0012816329364713508, - 0.0013918858866539554, - 0.0002820799378738546, - -0.00016669286145555326, - -0.0013607171204140448, - 0.0028855198052016306, - 0.0012990342397254625, - 0.00114611538439916, - 0.000212509500131061, - 0.000977499410199533, - -0.0010628364873403345, - -0.00036578063963843007, - -0.00048477666949291686, - 0.001182464059818689, - 0.00028796340567039785, - -0.0008935357197826718, - 0.002587294918188059, - -3.0213050147543e-05, - -0.0008177014289521547, - -2.3944138183508953e-05, - 0.0002399706395612233, - 0.001976631588378057, - -1.8699639300012395e-05, - -0.00040784567006957106, - 0.0007022733195093351, - 0.0005230486736423264, - -0.0008609191407034205, - -0.0007679408449660912, - -0.0005281968796333236, - -0.0009967708920937794, - -0.0017841778972068475, - -0.0009248163228223431, - -0.0011835575700024864, - -7.662339121616209e-05, - 4.006613716965109e-06, - 0.001370152770712739, - -0.0002404893291922907, - -0.0005059111298957453, - -0.001988380319887095, - -0.001119011191610601, - -0.0005513341903388397, - -0.0007386975456214389, - -0.0018212511089920078, - -0.0006755427293500553, - 0.000697271428536339, - -0.0005305929241948159, - -0.0004583447087650934, - 0.0006979454850347394, - -0.0013826282747785139, - 0.00019413112120164608, - -0.00012964505754227838, - -0.000488437395688095, - 0.0019441178101225161, - 0.0016627251466734764, - -0.0002784121491868203, - -0.0013760165213118811, - 0.0003100914694467498, - -0.00043891761579211526, - -0.0003452010162974092, - -0.00042970900957179606, - 0.0005315464392610491, - 0.0005145609484561917, - -0.0009266277077139332, - 0.0016676055856648143, - 0.00010310170172472673, - 0.0006267947422903663, - -0.000813843244867034, - -0.00046175668662486104, - -0.0011051855549051662, - 0.000766568748176574, - -0.0004901851015089507, - 0.0004997582592806301, - -0.00018685614897071988, - -0.0006841129612983082, - 0.0006359707210072352, - -0.0013878255539457908, - 0.0006306695318425152, - -0.00038436204912706853, - 0.00040187645147872963, - 0.0005327496891074527, - 0.0018215454484171879, - 0.0014122287446811403, - -0.0013627802103267576, - 0.001834815630700337, - -0.0013789050044651187, - 0.0008791578290813992, - -0.0004079487607992369, - 6.742889655756288e-06, - -0.0007608680586012468, - -0.0005423188057856521, - 0.0004353665395937303, - -0.00044837763325893603, - 0.0004176333767813877, - -0.0004283839972291703, - -0.0015324093542151726, - -0.00032096089815982507, - 0.00014351917317651032, - 0.0012641863856408294, - 0.0005117710228403071, - -0.00020204055106464973, - 0.001714467483938586, - 0.0013721817533667003, - 0.0010353134466738066, - -0.0009956748862916824, - -0.0012253235095554527, - -0.00040159812187926826, - -0.0008208614928380616, - 0.001187168196060793, - 0.00025811670668278756, - -0.001727293615219509, - 0.0020619919857516275, - 0.0012286392998058534, - 0.0015550122698301983, - -0.000824235532645167, - -0.0011088459869167666, - 0.0006453561978863383, - 0.000304172376388374, - 0.00019185227704995175, - 0.00014400078994488091, - 0.0002621934626265899, - -0.0007018841849211253, - -0.00023862655017042734, - 0.0007368437013361567, - 0.0005470697897602706, - -0.0008665659805334579, - 0.0004912328878566648, - 0.0007228843531089835, - -0.0010973388401202139, - 0.00021224838725703536, - 0.0005610659627445653, - -0.001003775092725398, - -0.0010485519778962095, - 0.0011617421240992737, - -0.0018375080026566326, - -0.00010938933577331743, - -0.0015607000151232706, - -7.606614833399254e-05, - -0.0014707109894170275, - -4.994128343290629e-05, - -0.00017263630127675728, - -0.000497442828742867, - 0.0005302901308364585, - -0.0017790467904629905, - -0.000937603473215549, - 0.0008590520451034984, - -0.0007359864936255547, - 0.0012411592764352548, - 0.0010227162993124454, - 0.0004708468407356398, - 0.0006352043514272376, - -0.0002587332223240235, - -0.0005793099216942158, - 0.00019879172003829193, - 0.0007142016311748558, - 0.0016968696707541225, - 0.002136203753139071, - 0.0014457077216049228, - 0.000663151444715387, - -0.0004756084532110342, - 0.0005907644770401701, - 0.0011939728546392033, - -0.0002730422976530161, - -0.00046504297479287135, - 0.00026121778057862626, - 0.0010627630005665847, - -0.0001647008289112847, - 0.0001957583584909089, - -0.0009472666355688118, - 0.0020059029723023336, - -0.0013900942208887222, - -0.0002277383228516566, - 0.00023424282076068054, - 0.00023586080849691108, - -0.00028614514216585127, - -0.000172464275059029, - 0.00011316055338992836, - -0.00023575310874859507, - -0.001852449345426223, - -0.0006091854487943082, - -0.0011669673003340572, - -0.0018190698475421, - 0.0001533712069457534, - 0.0005415371574470747, - -0.0013616194420570354, - 0.0005204584861483342, - -0.0012853750023257748, - -0.0003141804350609804, - 0.0005306219437932779, - 0.0008302616835632837, - -0.0009429207871689604, - -3.639059939658185e-05, - 0.0012258210010097034, - -0.00036499705686196196, - -0.00023104653887258669, - -0.002028407122626162, - 0.000855728092403671, - -0.0003977749370799059, - -0.001002187384014767, - -0.0002891065425229689, - -0.0017741534913217802, - 0.00021547287523477227, - -0.0004059556331964193, - -6.362426068201474e-05, - -0.0005238630467595715, - 0.0006048901485540863, - -0.0005150874391451252, - 0.0010816348808572458, - 0.0007578331375962778, - 0.0009010917416271786, - 0.001694592536580297, - 0.0012915432529566077, - 0.0005409569383284224, - 0.0007529221675167721, - 5.792459701455743e-05, - 0.0013647824796804702, - -0.0002364192652893131, - 0.0004490828030041378, - 0.00030722241622444825, - -0.0021693091952541574, - -0.0005980276849582303, - -0.0012354366703043753, - -0.002618355249448559, - -0.0006378140011173753, - 0.0011439494263097121, - 0.00020481348232218748, - 0.00038959553128681485, - 0.001980399222745151, - -0.0003244113309123819, - 4.413018756552484e-05, - 0.0018441786311441714, - -0.0018838800203688345, - 0.000364647130840739, - -0.0003227738444545068, - 0.0011531034549167381, - -0.0021293033286783006, - 0.0003430526658861855, - 0.0009999018555349223, - 0.0016192838718220013, - -0.0008146156865538118, - 0.0002390529896026534, - -5.5887586584123385e-05, - 0.0019119681581599114, - 0.0006434246410596273, - -0.0018169838250120275, - -0.0004967239351138738, - -0.00026649570083162434, - 0.0005082294588167596, - -0.0004223064958205536, - -0.0005571182319497729, - -0.0006998623509190253, - -0.0003292084127236785, - -0.0004798345478345899, - -0.0035542913496252695, - -0.0002637837961484876, - -0.0007539669231858044, - 0.0012059501080864026, - 3.0056541184410394e-05, - 0.0003167799005701838, - -0.0006587271035126575, - -0.00011961175459155553, - -3.570192928724015e-05, - -0.0004907642629192979, - -0.0004942205208005026, - 0.00016708254232806032, - 0.0015647715252501125, - -0.0015927614037593333, - -0.0006201486653865878, - 0.0018519637871845418, - -0.0011148978914943153, - -0.0007707750472514635, - -0.000533946018886265, - -0.000839144474014491, - 0.0019251587835180442, - 0.0007134467468104922, - -0.00011098962044035274, - -0.0009627699333336634, - 0.00017618609603078318, - -5.584541549792955e-05, - -0.0010724913099648878, - 0.0013099407053219383, - -0.0014382574451544954, - -0.000724126930454644, - 0.0008410753954079802, - -0.00035128063897199325, - 0.0007063192971454871, - 0.0004817066391916138, - 9.705011162656338e-05, - 0.00010674240767484915, - -0.0015623412680485498, - 0.0011371189307849815, - -5.590574011805238e-05, - 0.000471601286282338, - -0.00047823340518290546, - 0.0002033965770073246, - 0.00039020080089527853, - -0.0006305052222572453, - 0.0005108483593861739, - 0.0010315954321955363, - 0.0003953094348902681, - -0.00070934331033013, - -4.849248608494195e-05, - 0.0006758479677129534, - -0.0013501502648581905, - -0.00018397029986840606, - 0.0007630451829965171, - 7.01017842034387e-05, - 0.001968491712469446, - 0.0003468771390964573, - -0.0009046064684225152, - 0.0004962991107782862, - 3.8586391301767254e-05, - 4.9944029432217814e-05, - -0.0017275923098532212, - -0.0006098382351817569, - -0.0009625959120168132, - -0.0013303095262968188, - 0.0007047702076870971, - -0.0008727194345778993, - 7.49948304212421e-05, - -0.0008348021923673883, - -0.0016256828882563617, - 0.0005788678149860761, - -0.0011658410794675802, - -0.0012104007594123574, - -0.00020636274562619244, - 0.0006135649913953711, - -0.001090330736332045, - -0.0010270892661658274, - -9.963078205533056e-05, - 0.0005195819345371216, - -0.0002817722795390947, - 0.0007087971916211334, - -0.0024783137918979767, - -0.0002200804941706135, - 0.0003858208451332204, - 0.0008389164852453235, - 0.000294876411891952, - 0.0017507439631412032, - -0.0007788746620493313, - -9.892501521430271e-05, - 0.0001326601131176974, - -0.0006044300293587392, - -0.00023472645628515301, - 0.00012888367900715716, - -0.00034075908467430565, - 0.00027469915158700537, - -0.0015759156652018062, - -0.0006726643680504644, - 0.00019359666468269602, - -0.0008768516491710488, - -0.0002638899587238991, - -0.0011681788808004523, - 0.0018518225331391545, - -0.000339810366010113, - -0.0020726592500055164, - -0.0001871767357686002, - -0.001956276565025694, - 0.0006285064790870529, - 0.002319792832808875, - -0.0009302024866675088, - -0.0011426938458960329, - 0.001056463527249823, - 0.002367807210443055, - 0.0019879134348697487, - -0.0008475708653358059, - -0.0017777449336610933, - -0.0007686449443678876, - -0.00046462024068300397, - -0.0006870541005099004, - 0.0006434326298923074, - 0.0002338428417321113, - 0.0006209036132072826, - -1.762423727519622e-05, - 0.0006247490840127171, - 0.00022306974695925912, - -0.0006424999827948988, - 0.0002918693887689834, - -0.0016061425116674997, - -7.737033549829402e-05, - -0.0009045940343160741, - -4.386250440623488e-05, - 7.154792483243035e-05, - -0.0006505368935504646, - 0.001232821283130573, - -0.0004029661503433726, - -0.0012711889384231139, - 0.0002451972799744163, - 0.00036374198606649056, - 0.00015393166823964025, - -0.0005248319230370493, - 0.0001005145817860494, - -0.0015723036566695106, - 0.000972303391551457, - -0.0005233287525009302, - 3.3913765161488124e-05, - 0.0005656812094995245, - 0.0005275985199515649, - -0.00028050661098715256, - -0.00045548298038926, - -0.00026206798139245975, - -0.000840390825984235, - 0.0003495751533143237, - 0.0005380663954297442, - 0.0006470888423573023, - 0.0006874883818883705, - -0.0008703150713908538, - 0.00030307995916695977, - -0.0006775077136722441, - -0.001181921518124304, - 0.0005767099521804254, - 0.0003330070122296892, - 0.0011924023603203703, - -0.0003767901937349975, - -0.0009135668476652495, - 0.0003861392508695503, - 0.0011087743130141284, - -0.0014100274086969065, - 0.0013404495300917102, - -0.00016874714019263033, - -0.00033898195014055827, - 0.0018266527577019645, - -0.00040060585237489344, - -0.0008183501375311675, - 0.001143055387191658, - 0.0004946092839084285, - 0.001185517352532013, - 0.000179290290761112, - 0.0014955758610970748, - -0.000556393805098817, - 0.0009226823757541367, - -0.000141701019012894, - 0.0012468922892753746, - 0.00012076025414857614, - -0.0008933796818030753, - -0.001001787876618915, - 4.295274881942342e-05, - 0.0003804660210684932, - -5.863071997168328e-06, - 0.0007090501122699801, - -0.00036354909116044655, - -0.0011783535461763407, - -0.00015768509907959391, - 0.000222419594593706, - -0.0014645328793503334, - 0.0006077414719953865, - 7.749392205930228e-05, - -0.0005726226557266564, - -0.0005389086316844031, - -0.0015417370816275399, - 0.00020738985110555847, - -0.001238680137873188, - 0.0007788300624382821, - -0.0015026502905072555, - 4.065960443827435e-05, - 0.0002704604245202564, - 0.0005588684466973966, - 0.001473961790394332, - 0.0008138950111990406, - -0.000654266844882041, - -6.399537259759258e-05, - -0.00028811597366787563, - -0.0007599171593815213, - -0.00018348997616228314, - 0.0021114563404289943, - 0.0015400861256707205, - 0.0010307015165472435, - -0.0008964337977420799, - -1.3402700939711894e-05, - 0.00017256141694678906, - -0.0004267957402980235, - -0.00043003145413725573, - -0.00041344538840220143, - 0.001500419513409365, - 0.0006175533105893108, - -0.00011890435838522091, - 0.0001073738792956918, - -0.0005428030717511917, - 0.0004259913951944261, - -0.0005466337500256161, - -0.00013786617924868482, - 0.00013004780547500107, - 0.00033486088672849985, - 0.0010749240730827435, - -0.0008263031185473841, - 0.0005088896071146848, - 0.0023133562301181324, - -0.00015541442574103201, - 0.00036945340665289045, - 0.0016015645297764811, - -0.0011926138058018009, - -0.0007908241040074331, - -0.0007743259722093375, - 0.0021798408075507356, - -0.00018085365352637722, - 0.0008417384402695851, - 0.001059188458991249, - 0.0003938616403376389, - 0.001502730003896288, - 0.0009440873056746446, - 0.00015977200463794734, - 0.0009582588150626653, - 0.0007713462474573261, - -0.0011627467276789233, - -0.0008110978820475603, - -0.00043471660529734147, - -0.0005268309569146806, - -0.0019105224043895646, - 0.0007369689393221212, - -0.0006250203230940373, - -0.0004627184880532901, - 0.001001284342075303, - 0.0015773069813906878, - -0.0008161020869274945, - 0.0007273292154230727, - 0.00018674843947885387, - 0.00010085485308772315, - -0.0017218101831823138, - 0.00044077998783792694, - 0.0005356297685534336, - 0.00022924896558156524, - -0.0011104963173442892, - 0.000999579407246948, - 0.0002446673872653208, - -2.72609287764138e-05, - -0.00015108923559576846, - -0.001151664348937209, - -0.0007364155191234738, - -0.0016630080466208434, - -0.0006457385032875702, - 0.00010552048937404763, - 0.0010070341659481872, - 0.0008738052426455669, - 0.0006424687654960847, - -0.0010379967370064646, - -0.00025853169115226123, - -0.00044752868061825716, - -0.000145306252039326, - -0.000988954551938975, - 0.0008387597298402755, - 0.000854735575468694, - -8.74753050008291e-05, - -0.0016063858317493587, - -0.0011474944216380166, - 0.000582547179485278, - -0.0007681562454809629, - 0.0009032632598055361, - -0.0006230983025357806, - -0.0012442756446951744, - -0.0003462504245769126, - 0.0007879817659734947, - 0.0005654654858035443, - 0.0021023327314016013, - -0.0010175530144982518, - 0.0014899025426558894, - 0.00024301300632386503, - 0.001363295818008161, - 0.00013752256233615925, - 0.0006150874101512865, - -0.00024262967502025406, - 0.0009712776014729804, - 0.001483967050252448, - 6.682269501215147e-05, - 0.0010431375338894498, - -0.0018395796418831432, - -0.0003901801843546127, - 0.0009470264254235924, - 0.0015523793197296904, - 0.0008401451904839624, - -0.0017418734085727012, - 0.001925185641451672, - 0.0005886539890469323, - 0.0012852706961870549, - 0.0013915686078292292, - 0.0006617730678158745, - 0.0011548142796029431, - -0.00014052281690667758, - -0.0014787168914362696, - -0.0012915100971865809, - -0.0003701165050077378, - 0.0021634810156434827, - 0.002374778250694069, - -0.0006543588494897601, - 0.000567903710927445, - 0.0008489199519400467, - -0.0010356957069720977, - 0.0008511868480481264, - -0.0005648501002454, - 0.00022505449123308725, - 0.0013075639233161543, - 0.0005254162056026667, - -0.00266467728163825, - 0.0005472349586673109, - -0.0005844377558589395, - -0.0007316292142464266, - 0.0010765342976612282, - 0.00028422314704339786, - -0.0009703919461452465, - -0.00042870719697929, - 0.0011370385098374521, - -0.0018711994580595222, - 0.0005066993028766408, - 0.0025841794516828867, - 0.0011955066688136365, - 0.0007368009595244562, - 0.0007237260993350595, - -0.00014500813988332461, - -0.0001332619062004114, - 0.0001502684766358644, - 0.0002849967117523045, - 0.000993000306375094, - -0.0007788431345886861, - -0.001189166383798867, - 8.877958669768165e-05, - -0.00020728495203125886, - 0.00020488118567903754, - 0.0015579163443635398, - 0.0004497173387454979, - 0.00014704909397217868, - 0.001079491710826068, - 0.0011277557636237912, - 0.0010185718657773368, - -0.001084770932852381, - -0.0016449141469379524, - -0.00047925930544741617, - 0.0006375356438111523, - 0.00036999385543651014, - 2.4829125882246283e-05, - 0.0017860197558468168, - 0.0010836763310391364, - -0.0005600217367061524, - 0.0026890565530743597, - -0.00020730804016353928, - -0.0007411010403929097, - -0.0010539059508771792, - 0.0005318330344665369, - 0.0007803373273579573, - -0.00040098234523645545, - -0.0004316844837779429, - -0.0004772491985725347, - -0.0007490864342943435, - 0.0011592379781794524, - -0.0011607359366444681, - 0.00011779214038664349, - 0.0013987139199642521, - 0.00022557006615735588, - 0.0017935595510388497, - -0.0005323781252051362, - 0.0002288345517426682, - 0.001101448036143932, - 0.0004334481710940657, - 0.0004254284368068267, - 0.00011235540869107747, - 0.0009119249832900277, - -0.0016370892276454932 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgb(252, 206, 186)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 2", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 0.0015035680730868368, - 0.0015905715129065326, - -0.00032994425887051854, - -0.0005093407848734698, - 0.00045211772191778855, - -1.8849686062192945e-05, - 0.00023234880937773658, - -0.0010723087437518111, - -0.0020166598641511283, - 0.002504815186443923, - -0.0007516653837030712, - 0.0017356209813258203, - 0.00011723804400578649, - 0.0007652258332208473, - -0.0002756920821244731, - -0.0010335229923587265, - -0.0003543216105011325, - -6.217324570137166e-05, - -0.00023629440807315796, - -0.002507455082912319, - -0.0003696963614249946, - 0.0008475884244343454, - -0.001658437150331942, - 0.0009924445886928107, - -0.000852881117535648, - -0.00032903367704074227, - 0.0005263816971479695, - 0.0011472884403490758, - 0.00011529172419721816, - 0.00014630569480115753, - -0.002613084275262309, - 0.0023683029849420234, - -0.0004748544585882899, - -0.0016870680671841889, - 0.0003404964962910956, - 0.0012567003856509497, - -0.000514824234773432, - -0.00010907778889749387, - 0.00013710419175117685, - 0.0006887607859405795, - -0.000783792629009165, - -0.00020480876149518514, - 0.0014780588420490247, - -0.0005889902150182346, - 0.00011984591610041294, - -0.0002690571294367304, - -0.0007177023829824636, - -0.00013169147654139366, - -0.0027381406100259412, - -0.0007561949143757782, - 0.0007169735858459406, - 0.000849895870844912, - -0.0012531315480392607, - 0.00024319624483228912, - 3.787764287205671e-05, - 0.0018824289253136681, - -0.0020696022255353927, - 0.00015809244505736103, - -0.0005118277428795043, - 0.0006188372057925696, - -0.0002128540984479324, - -0.0011500528319911226, - -0.001588116245544318, - -0.0003225035373367562, - -0.00039144006325177817, - 6.417882745921578e-05, - -0.00161687302460201, - 0.0002624968866064674, - -0.0005696521797466826, - -0.0005690352174113977, - 0.0006420055388610771, - 0.0010913792731413326, - -0.0001848303803558282, - -0.0011224748292003126, - -0.00040159937928956844, - 0.00019033248279975748, - 0.002617067269915361, - 0.0017543145033761499, - 0.000284540091833008, - -0.0013537033963257478, - 0.0005961118788606627, - -0.001241984686338487, - -0.0009717632251566645, - 0.0002719863092562339, - 0.0013999535770987332, - 0.0007281004189995009, - -0.0003092179070235481, - -0.0006406968277025611, - -0.0009312372337063062, - -0.0014850455146328287, - -0.000387273016145213, - -0.0011170582320067938, - 0.0006728842803675993, - 0.00010559586352281958, - -0.0006085567880202366, - -0.0006665274887047422, - -0.0011181995644654517, - -0.00156067843652546, - -0.0015785046171054667, - -1.8526799056677178e-05, - -0.0006747971594531136, - 0.0010466707667036667, - -0.00048728227545097053, - -0.0006949812381669585, - 0.0011133928403201303, - -0.0007247701501509307, - 0.001434555877946925, - 0.0004923785009231588, - 0.0012450460636505697, - -0.001066625146282636, - 0.001136527761514016, - 0.0011698564983422418, - 0.0006804252926747884, - -0.0006863250347840601, - 0.0005456792527486956, - 0.0022882648137179146, - 0.0004689860716740736, - -7.955654299739886e-05, - -0.001100382191978874, - -0.0008722403685760143, - 0.0002572255825217976, - 0.0010322401053233315, - 0.0007151621613287427, - 0.000385948341523386, - -0.0011315900906794251, - 0.0005732414147077238, - 0.001273316246184134, - 0.0006043424082097776, - 0.000933543553406916, - 0.0005887658994278099, - 0.00028212192063835324, - 4.6231846844079404e-05, - -0.0003691053805944246, - 0.0007442615263014716, - -0.0004532967357858851, - -0.0002626609640607591, - -0.0005763064080343199, - 0.0017735336568242919, - 0.001173108834997059, - 0.000871555540188278, - -0.0002137897516274209, - 0.001490427896595883, - 0.0003375159424389011, - 0.0006847651129161401, - 0.00029442303154392896, - -0.0012068323288435005, - 8.347162959434473e-05, - 0.0004991820204236427, - -8.622906634119238e-05, - 0.0011373700713055476, - 0.000918965030968485, - -0.00011163246505974087, - 0.0009429086256226467, - -0.0006294745962155331, - 0.001379618890888899, - 0.0009798933135117599, - 0.0013410636066427623, - 0.00019808214400285308, - 0.0007393296253864072, - 0.0013012821728613333, - -0.0006157547346211441, - 0.00011438227118594687, - 0.00094604805356369, - -0.0011605409784749665, - -0.00029539417283126437, - -0.0017963090293169862, - -0.0003331055962165398, - 0.0008686770713970999, - 0.0006695604774221062, - -0.00023853718585022644, - -0.0005910666354201689, - 0.0007020185682106805, - -0.000592772293689145, - -0.0008481427225950488, - 0.001251789952748765, - 0.0008479606857789967, - -5.564046575703261e-05, - -0.0002189902543570688, - -0.0007597158094034982, - 9.558304534676243e-05, - -0.0006858361418145742, - -0.00020295630898702223, - -0.0007592208210934889, - -7.744693169942566e-05, - -0.00014705850824023152, - -0.0003584831079270798, - -9.56744964934882e-05, - -0.00019991503379562434, - 0.0003464489166428406, - -0.001112097014948429, - 0.000323200336870518, - -0.0005252342202096006, - -0.0010544391908673943, - -0.0009754637329714618, - -0.0018041659902804607, - -0.0006054128233967362, - -0.00019573728139381068, - 9.569480718841292e-05, - 0.0004994402921013996, - -0.00032686413346095887, - -0.0023632371381955425, - -1.5019968910413708e-05, - 0.00015977903390339458, - 3.2234586258470945e-05, - -0.001197752335688116, - 0.0002733876206729196, - 7.752310495376968e-05, - 0.00021168517827594872, - -0.001593393939259402, - -0.0007205508969312829, - 0.002030667446704804, - -0.0022758256695977145, - 0.0024077808695034657, - 0.0010848293711354846, - -0.0007826558125619571, - -0.0008553981109095521, - 0.0007473061944311035, - 0.0006249450636915677, - 0.00024108825543840744, - -0.0016158557031241893, - 0.0018251924466883846, - 0.002673672883702174, - 0.0005397761072214202, - -0.0005412633357517372, - -0.0008146074294425881, - 0.0010307394330646522, - -0.00023014019256076463, - -0.001172877398123374, - -0.0007728594043418168, - 0.0010275804622270636, - 0.002226998418420086, - -0.0006288238229147165, - -0.0010745543116427402, - 0.00037118420602052956, - 0.00011792502241203712, - -0.00023429363504809817, - -0.000540174497708277, - 0.0001977154140875628, - 0.0009004948184289311, - -0.0006241151622349955, - 0.0004096038060085275, - 0.0023180645934061926, - -0.0007364671309907674, - 0.0006073057918420698, - 0.0003091540687645274, - -0.000889557395555996, - 0.0008571567985206653, - 0.00040375322150603207, - 0.0009734523345649327, - 0.00157520029809988, - 0.0016030824279074463, - -0.00048733566707013213, - -0.0011235899530448374, - 0.0010562444744713865, - 0.00033417334866694677, - -0.00011540393292033382, - -0.0011100815799001977, - 0.0012334977636145907, - 0.0008695287673419812, - 0.00035968979553288897, - -0.00025912864333042785, - 0.0004830387642856439, - -2.7456171033791553e-05, - -0.0007881677086071239, - -0.000325925883179184, - 0.000526364888980367, - 0.00013917660567333326, - 0.0007404706230969695, - 0.00015817562414481245, - -0.0007317864753099321, - 0.0013164002267589021, - -0.001811607611829565, - -0.0012209067607852598, - -0.0018726548643455485, - -0.0005396698844102088, - 0.001099834362764669, - 0.0011104500962511945, - -0.00026306299099241725, - -0.0019206339942138319, - 0.0009231334383829721, - -0.0008214516793054759, - 0.00016712678332718765, - 0.0008135736478680154, - 0.0006564561669244763, - -0.0006675531172816152, - -0.0018334410290862058, - 0.0008028200341729013, - 0.0002114208315858256, - 0.002187354529654743, - 0.00031894592529099124, - 0.0005786526293388, - -0.0013116081725140516, - 0.0007780938556394199, - 0.0010381736098002013, - -0.0008117127531572261, - -0.0006157129675881959, - -0.00073749687999787, - -0.0011571457612371502, - -0.00039446191050583856, - -0.0009782975426947558, - -0.000706699041129583, - -0.0006217318505997366, - -0.0007859171752851673, - 5.4913305915817656e-05, - -0.0008935718310251182, - 0.001540271794266452, - 0.0008161247505187929, - -0.0015242875289153334, - 0.0003042074922765663, - -0.002459298827629478, - 0.0019399997306879066, - -0.002454044180495347, - 0.00027626654643561453, - -0.0001689552417254464, - -0.0011179154360149708, - -0.0014022552261139527, - -0.0013139841594996533, - 5.910409533223779e-07, - -0.0011689110811372021, - 0.001086503829037493, - -2.785847020148982e-05, - 0.0011927299733171253, - -0.0006439147567583208, - 0.0002000197482356023, - 0.0011199856915481234, - 0.0019035880727728692, - -0.000626133403436979, - -0.0006743695320444897, - 0.0003495025409608508, - -0.0010458816118459236, - 0.00026487769393206524, - -0.001262996272642321, - 4.428374595106769e-05, - 0.0006977868842798065, - -0.0016788534528482913, - 1.1499151399905534e-05, - -0.0011141174769609208, - -0.0009717738445289835, - 0.00046267132168006605, - 7.572364487827713e-05, - -0.0010693253128319358, - 0.0023736176215842057, - -0.0006239086697571503, - -0.0012591165238696265, - 0.0011389813406617235, - -0.0005868362978353928, - 0.0009950159846110207, - -0.0002941419979850939, - -0.0002493320601217735, - -0.0024971833998743264, - 0.0011042055689437606, - 8.26313813793182e-05, - 0.00035257652663140684, - -0.0014220338601629834, - -0.0014712051869916307, - 0.001975944867015426, - -0.00018392178604375225, - 0.00013764072897381468, - -0.0005017786902548902, - -9.553875134796588e-05, - -0.0008441711823408469, - -0.0006363194980423143, - 0.00026091928734425665, - 0.00048795668208635235, - -0.0007105775113397609, - 0.000726409549887859, - -0.0006337043136167285, - 0.001035546207366783, - -0.0014370106571890624, - -0.0006339636945323138, - 0.00046140791843036485, - 0.0009146765754521427, - -0.0003962601835127718, - -0.0016445493113229535, - -0.001960424775955271, - 0.0006931359916849799, - -0.0004176546765442276, - 0.0008528383130510134, - -0.0006353671377422604, - -0.0012546948924209963, - 0.0005070923394514754, - -0.001746395854578701, - -4.542983091533759e-05, - -4.623938760636233e-05, - -0.00011868606247191827, - 0.0009365519720562236, - 0.0004310094079964346, - 0.0007591011684620127, - -0.00026275065488962817, - 0.0015397724660050896, - 0.0004687426394751572, - -8.816487137656076e-05, - -0.00018433411631366424, - 0.0007100851841751874, - -0.0009049824415546857, - 0.0005132851899573254, - -0.0016608289682019997, - 0.00035019261273758586, - 0.0008083282304289484, - 0.0016166355945812793, - 0.00010990211335357268, - -0.0005434094834073723, - 0.00040458899871726985, - 0.0012703737403739156, - 0.0011801232519993493, - 0.00027965553011150815, - -0.0012559649547214625, - 0.0009148701016513639, - -0.0009212326294555464, - 0.0006644180706450052, - 0.00025831705836246274, - -0.001308523022250617, - -0.00026962838698293246, - 0.0015892550298849764, - 0.0006103611438751464, - 0.000770135697984667, - -9.776045539403662e-05, - -0.0015022612546265362, - -5.569955519491573e-05, - -2.390299985227502e-05, - -0.0007619002014714977, - -0.0015154070509321533, - -0.0017401876562093076, - -0.0010094563381343386, - -0.0004657546058779514, - 0.000731561027130598, - 0.0015782751690887294, - 0.0008986778505200442, - 0.001127085099520776, - 0.000556076435723286, - 0.0013992617980892776, - 0.00145760381844386, - 0.0006855131683377188, - 0.0015768224902152545, - 0.0014549019237220415, - 0.002041074676946346, - 0.0009564782581165033, - -0.001629544574276072, - 0.000997642162558631, - 0.0004074826057729128, - 0.00023005009488503693, - -0.0013183334710915543, - 0.00028589885212491786, - 0.002258624083744482, - -0.00026092027438795424, - -0.002510002284751742, - -0.0012336565190641314, - 0.0009000162228878972, - -0.0006137604856853872, - -0.00023054459190146196, - -0.0010345045878806878, - -0.0005264755268506407, - -0.00124652892933001, - -0.00013904116572761383, - -0.00043542577666884634, - 0.001248881663064642, - -0.0006012540699307997, - 0.0013780259780685306, - -0.0007670284153732812, - -0.0007328117136455118, - 0.0004119001235650198, - -0.001332979194690976, - 0.0009372317275763158, - -0.0015637954407420615, - 0.0002941347316383256, - -0.00010426638472470861, - -0.0005672613046775939, - -0.0011689922023360372, - -0.0011308308747164791, - 0.0013347763587938843, - 0.0007123561812916551, - 0.0007434852298938323, - 0.0019573447162317876, - 0.00015103215415317926, - -0.0010110737826976946, - 0.0005914845554418186, - -0.0016633267934152076, - 0.0007321118260509291, - -0.0015167580933756965, - 0.0005476216293336588, - 0.0009330210488791527, - 0.0009636680029251536, - -0.0010196760768947104, - -8.373418654688136e-05, - -0.0013826674790736063, - -0.00025550284164121284, - 0.0004264744969536465, - -0.0007524886378008543, - -0.0003009659269852808, - -0.0006159489722733555, - 0.00113700093707432, - -0.0012561603973552456, - -0.0009022062548954912, - -0.0006427411570381529, - -0.0011128956923057713, - -0.0004314077141315, - 0.0010434773588752656, - -4.711948262118942e-05, - 0.00048026623210886536, - -0.0001596238630386422, - -0.00038626661969986224, - -0.0010941984696999846, - 0.0012095562227640955, - 0.002200437689213837, - 0.0033529523229374174, - 0.002886664756982815, - 0.0010440828461428723, - -0.0012393699154607746, - 0.0005387289777639999, - 0.002132710572704203, - 0.0007829620360852956, - -0.0012029020604366353, - 0.0012962053072641524, - 0.0007405069863184241, - 0.001601116257380587, - 0.002925415983082668, - -0.0012015217639879951, - -0.0014037039311284628, - 0.0013714815066570875, - 0.00021080377921096357, - 2.3929425301301007e-05, - 0.0007792353189030566, - 0.00013671294187298432, - 0.00032374006513349385, - 0.0003139024834614686, - 0.0006308818041844698, - 0.00198411436480774, - -0.00022639178533983968, - -0.0019063492011571741, - -0.0002985652018418041, - -0.00023693504554583346, - -0.0005290791570397571, - -0.0003881253167289362, - 0.0004236897513050495, - -0.0006091791311565917, - 0.00021478313953936598, - 0.001640567660730186, - -0.00048674327983580165, - 0.0002609642503139448, - 0.0004936370025980517, - 0.00010515752408522889, - -0.0004977126478344036, - 0.0006843471350318068, - -0.0004189490881072776, - -0.0006871253576606953, - 0.000632822009971429, - -0.0008262754687094654, - 0.0007024943589937651, - 5.2660936805883044e-05, - -0.0005154204590048096, - 0.000853023461332687, - 0.00038887896751535256, - -0.0008200282387211432, - 0.0006614878847135785, - -0.0012407475950921827, - 0.0006411241615539996, - 1.29929484803025e-05, - 0.000697285313820502, - -0.0005784156607225417, - -7.047824689779675e-05, - 0.0005354436801699754, - 0.000118749091446708, - 9.230220895066357e-05, - -0.0004301137622056692, - -0.0004815093764616196, - -0.0017864191342128652, - -0.0003033082837186868, - -0.0007258391351668094, - 9.120515843939148e-05, - -0.00036320183419492874, - -0.0011245254666841032, - 7.504253426243081e-05, - -0.0005066735813907305, - -0.00018221547650010332, - -0.0004329644311194815, - 0.0018988427666417843, - -0.0013210380740088846, - -0.00045982542147579954, - 0.0012297452637826856, - -0.0005003399044151869, - 0.00039484378749224375, - -0.0007535176609019168, - -0.0011167855949196376, - 0.0008208660109048318, - -0.002283733386064746, - -0.00039064320838977715, - -0.0009083243743266527, - -0.0009011165152819799, - -0.0020088630302936153, - -0.0011652189869975316, - -0.0006424785906036197, - 0.0005594519117731192, - -0.0012598132335701205, - -0.00017611977562644667, - -0.001597452492185892, - -0.0006044015055494895, - -0.0001573165076710734, - -0.0013343354882811072, - -0.0011431017298602166, - 0.000480244750921097, - -2.7187810729124285e-05, - -0.0008327451084673079, - 0.0007963387416181585, - -0.0008713450217711558, - 0.0007709792810732181, - 0.00014516428595927116, - 0.0007331007959218061, - -0.0020609084263222095, - 0.001992000411101341, - -0.00055304839521243, - -0.0015856003573070045, - -0.000642725480874643, - -0.0006818134698537535, - 0.0017236006199169648, - -0.001007546873396707, - 0.0002740760096969612, - 0.00029977339056979995, - 0.00010351058025097623, - -0.0019330406989553092, - -0.0003184227211059216, - 3.134605729036456e-06, - -0.0014527938411526694, - 0.00041151424637422335, - -0.0006052485649080745, - -0.00177436278272001, - -0.0008876780137506493, - -0.0017478968989798616, - -0.00025935059113388516, - -0.00016559598142028086, - -0.000496143953340141, - -2.1961408474205935e-05, - -0.0001773716793927898, - -0.0004201355611024848, - -0.0011132058712680015, - -0.002117709837736209, - -0.000644360167703355, - 0.0010913456055140294, - -0.0013045617797224872, - 0.0002982953466711552, - -0.0002193301880279929, - 2.439510829530204e-05, - -0.0005298858230898078, - -0.0004805623456254689, - 0.0015806260461223751, - -0.0007655498983286949, - 0.0004676282740327066, - -0.000886034064530612, - -0.00043651134634072357, - -0.0004592523802997464, - -0.0005184396417303173, - 0.0005003135385575026, - -0.0019569576263236475, - -6.975141130113065e-05, - -0.0005206946951769739, - 0.00028019125124792774, - 0.0013188450516171753, - 0.0004068126905365287, - -0.0021591927372758253, - -0.001202554103884547, - -0.00011518487396108234, - -0.00030461006871396353, - -0.0014991842906327663, - 0.0011901189050907864, - -0.0009717330274821958, - -0.0013129639304526302, - -0.00030138438360317047, - -0.0005097717433471683, - -0.000280495806622367, - 0.00018184035936188796, - -0.0003200946603779598, - 0.00014171222339981097, - 0.0027165303530351285, - -0.0026254251509681206, - -9.588542743007919e-05, - -0.0009212645105101945, - -0.001382295607285977, - 0.002235978293857213, - -0.0016821718270107033, - -0.000252230106884861, - -0.0009274176731895766, - 0.000636578099642328, - -0.00024822691269018395, - 0.0008060931988996643, - -0.001117004239991752, - -0.0010302715162351934, - -0.001090221326978972, - 0.0004784706344760282, - -0.0007875058499729947, - 2.081778321545056e-06, - -0.0012930818861337792, - 0.0007449919466822159, - 0.0004688975220672308, - -0.0003475257948983215, - -0.00026387709319605155, - 0.001443302254725713, - -0.0026871192474328624, - 0.0009588179079867298, - 0.001682118527922623, - 0.0003551971106164907, - -0.00020458429814726402, - 0.0007247790311189856, - -0.0012216523488391298, - -0.0008484235277200538, - 0.0001310799291155119, - -4.196410849886929e-05, - -0.002650470568507735, - -6.429227500139247e-06, - -0.0006112451468409285, - 0.0022920554523473183, - -0.00042607921555620434, - -0.0010088386329972095, - -0.00082480849563124, - 0.0005694840396240946, - 0.0003910923822081268, - 0.00013505464102497923, - -0.0011982415559743539, - -0.002060035973093295, - 0.0012284719862505364, - 0.0015931633653390137, - 0.0013256440344302405, - 0.001958954920779895, - 0.00021794766876940484, - -0.0010891877442606103, - 0.0010986197449960307, - -0.001182058625720422, - -0.00210811844745946, - 0.00024687004640352577, - 0.00044837380541569335, - -0.000957883588717394, - -0.0011019408699991164, - -0.00020099552979083106, - -0.0003616292740253221, - 0.001113418195703499, - 0.0006234561712260135, - -0.00046462908495797424, - 0.0002730357301667339, - 4.681859299060142e-05, - -0.0008024536033201011, - 0.0011514887822361103, - -8.65754552768733e-06, - -0.0008180995913733858, - -0.0008210284037089624, - 0.0009152327938873547, - 0.001860405081939435, - -0.0017104714449185428, - -0.0006897439184589241, - -0.0010768063077502554, - 0.0009722746398810902, - -0.001194956992100443, - -2.0211121159042638e-05, - 0.0005202043523530403, - 0.00034194545847657313, - -0.002080274563423424, - -5.628163296745253e-05, - 0.001313154060662083, - -0.0004550361402929771, - -0.0015519038089871768, - 0.00011070528889170684, - 0.0005370235201462924, - 0.00045871831758447553, - 0.002180034299893826, - 0.001899447969471086, - -0.001148149100740575, - 0.0012291961387308828, - -0.00046093155745921137, - -0.0020866688128175887, - -0.0015520644598187492, - -0.0007793645349458477, - 0.0004823394709651556, - -0.00032883201713247717, - -0.0003307092405407723, - -0.0013982984184683909, - 0.000628479022184961, - 0.0007999834269546809, - 0.0006832995078508995, - 0.0003582752268088122, - -0.0016531885365504019, - 0.0005190852369624158, - -1.921314987885837e-05, - -0.0002381284627807235, - -0.0014714682740628567, - -0.0006544262146069169, - -0.0014365276089744205, - 0.0005939678714367904, - -0.0004672463182431466, - -0.0006316899412348801, - -0.0007363807130953207, - 0.0002711568676643475, - 0.00041266877212920203, - 0.0007691221955436134, - -0.00014878829823157798, - -0.0012786366664847343, - 0.0004839300962718113, - -0.00028410313522374866, - -0.001080738029363276, - -0.00131516672576523, - 0.00032242835133175523, - 0.0007078990443248499, - -0.001200595904578866, - 0.0005553748054481797, - -0.0006304221892046863, - 0.00240308804629687, - -0.0011919015212775422, - 8.489483625958701e-05, - 0.00017451661163921187, - 0.001417447695629426, - 0.0011306910487632333, - 0.000316269994790583, - 0.0014156929018745061, - 0.00021140377577012515, - 0.001131433192209172, - -0.0012934859219334406, - 0.0008836811079886167, - 0.0003810802681351796, - 0.0003729754469502728, - 0.0021842045991415254, - 0.0011050816655299668, - -0.0012588153319072204, - 0.0004588252818089818, - 0.0006910559513067815, - -0.0011332681472088911, - -6.12717782177387e-05, - -0.0004763413478840519, - 0.0005728464534951814, - -0.000835319831909755, - -0.0005545364214217717, - 0.0011185631954097439, - 0.00023490322296553334, - 0.00043140520114443747, - -0.0010594062914942922, - -0.0001898871664088539, - 8.475304326425257e-05, - 0.0012905682846826867, - 4.24460601047178e-06, - -8.11521637204494e-05, - 0.0004930330092723771, - 0.0016721366604109022, - 0.0010083146670133954, - -0.0005440709051463474, - -0.0009475140064986206, - -0.00034806869259639163, - -4.690048509494842e-05, - -0.0009209290554537393, - 0.0006878185238067375, - -0.00011797757215840305, - 2.6461745077164682e-05, - 0.00028250838804028415, - 0.00044999511102908915, - -0.0015593141717406976, - 0.0012954428869647724, - -0.0021932386193819335, - -0.000960582943018943, - -0.00013595391231946115, - 0.0003617155121309408, - -0.0008625900919841394, - -0.0006153233193662397, - 0.0006698599256757229, - -0.0006835743915779323, - 0.0011808381524254672, - 0.0006772208277542847, - -0.00021035739338349534, - 0.0004115459856381495, - -0.0010519863413117098, - 0.0012605219691040508, - 0.00035355061890402265, - 0.0009113667624232115, - 0.0006447773863082079, - -0.0006012644611557659, - -0.0007255766238914821, - 0.0007040605559664727, - 0.0008144550057212803, - 0.003296349503447766, - 0.0008470026899574738, - -0.0011090014629317074, - -0.0006967320330859221, - -0.0011882877274954151, - 0.0007464634764519629, - -0.00028335899071324494, - 0.0009661908421944607, - 0.00046864511436259736, - -0.001641081053605974, - -0.0005387213411529022, - -0.001444079089352265, - 0.000468090904309038, - -0.00031171063541353216, - -0.0009550969121889197, - 0.00030661421511265146, - 0.0012627419801620823, - -0.0007423550247894023, - -0.0016842376109148809, - -0.0008414301596063827, - 0.000543029911393542, - -0.0003652541962173974, - -0.0016605765038124832, - 0.0006302194623978316, - -0.001106547253706334, - 0.0006870851307356809, - -0.00024621174287278844, - 0.0006793437302618513, - -0.001721085353355792, - 0.0016254062122439128, - 0.00011209803756515473, - 0.0006040831094918568, - -0.0005821862441348284, - 0.0014561715164699328, - -0.0016850298927874627, - 0.0001653179649700359, - 0.001740677097411522, - -0.0002877840071506685, - 9.51882437556199e-05, - -0.0005177013987924531, - 0.0006083290908431722, - 0.00029939507108218527, - 0.001821370564867451, - -0.00035974382704384567, - -0.0004818539409848214, - -0.000540684420072654, - -0.000453075675807983, - 0.00014579181830146976, - -0.0003092096211428209, - 0.0013973813297869845, - 0.000668626690603324, - 0.0012404181010179666, - -0.00031732633309223965, - 0.0001412375210762578, - -0.0008535622291453938, - 0.0011110050134574218, - -0.0021969754984778114, - -0.0011973339410478992, - 0.0011378729334957705, - 0.0006315810221210958, - -0.0015664480268214188, - -0.0014273031159208838, - 0.0007521618058795511, - 0.0002866282881133691, - -0.0007015203704664209, - -0.0012060545900650461, - -0.00048336835336252134, - -0.0006127434100915579, - -0.0011378319162829364, - 0.0009362984706950521, - -0.0011326167948099027, - 0.0004316968877900846, - 0.0011683677705926201, - 4.830749871503603e-05, - 0.0016973359555369821, - -0.0009480789002728493, - 0.0015385821889305797, - -0.0011467465998565164, - -0.0013238723976231374, - 0.000870156444829857, - 0.00030034226811971175, - 0.0029388506061364737, - 0.0016438850227547383, - -0.00020666342184378982, - -0.0001616472142004922, - -0.0010517742150860298, - -0.0005272616152020161, - 0.00014718249575229622, - -0.0008359289346174839, - 0.0009534708848240993, - -0.0003477210749606349, - 0.00012513981419888035, - -0.00010075714500407004, - 0.0010818602089628312, - -0.000571267668204686, - -0.0005354981442931922, - -6.501533912952602e-05, - -0.0009194969639765871, - 0.0011199790784072964, - -0.00203563796784622, - 0.0025046897469167655, - -0.00032048875978008163, - 0.00025196231404817787, - 0.0009161033190062221, - -0.0010390146018018388, - 0.001406837443108627, - 0.00012899696551277583, - 0.00079497804267871, - -0.0009932028493803038, - 0.0014169845949723518, - 0.0005966894120710581, - 5.6261605102035964e-05, - -0.0006587102257121357, - 0.00032760019102833393, - 8.710632006825162e-05, - 0.0016657397087597174, - -0.0005406277736068846, - 0.0010965251857697424, - 6.824915087698642e-05, - -0.0008800912502239495, - -0.0005832544906636066, - 0.0018625989301107348, - -0.0003892733667500673, - 0.00032041061300173155, - 0.00023104653468335374, - -0.0001415059578862125, - 0.0011710380196813654, - -1.772734298995293e-05, - 0.0011973580963849624, - 0.0006764018080784476, - 0.0011952522686270576, - 8.990379623187843e-05, - -0.00025210229464279614, - 0.000638646468974087, - 0.0007568560310302695, - 0.00012107849789326532, - -0.0011089907096990166, - -0.0004313011909152897, - 0.0010609686755719701, - 0.0013660699638166907, - 0.00013681255058657605, - 0.0015470548566327478, - 0.00044826187004150383, - -0.0015814739939564106, - -0.0022763345519819945, - 0.00014518972092249336, - -0.00021156829766927798, - 4.658733897520577e-05, - -0.00018662909086139014, - -0.0010692943699589885, - -0.0006230046169952575, - 0.00014105449204445625, - 0.0006642461825295034, - -5.684065417255326e-05, - 0.0002837435517491925, - 0.0013135587410115525, - 0.00019815291373560465, - -0.00098544720180477, - 5.659772205917457e-05, - -0.0025239375668812155, - -0.0002627956455925353, - 0.0004195877712564811, - -0.0009789661072629953, - 0.00017901596967667113, - -0.0001419511762658154, - -6.889368391944258e-05, - 0.0010166328943991083, - 0.0007174983681690364, - -0.0006511878865993163, - -0.0004460963672975806, - 0.001329553146240984, - -0.001059462882538254, - -0.0009347372999220563, - -0.0022630429169991947, - -0.0017096938221304535, - -5.265304221463934e-05, - -0.0007714848251410365, - -0.0008094055564532792, - -5.6477849948180706e-05, - 0.0004088874005784615, - -0.00162446895677337, - -0.002023961579194859, - 0.0009723078296748024, - -0.00036675723718534786, - -0.00021996202378629003, - 0.00032823832807774234, - 0.00027680826317468053, - -8.599430076446321e-05, - 1.0322102451836882e-05, - 0.001289943025414825, - 0.00021168215793140592, - -0.0008060485798528093, - 4.133148601574848e-06, - 0.0008054262737892835, - 0.0012823538551647766, - -0.0020697813100448094, - 0.00030841362865394965, - 0.0005756587991091007, - -0.0009209513091548477, - 0.0007116147472551831, - 0.00012673109004182715, - -0.0012829688176855857, - 0.00024413926780271172, - -0.0006539869924277886, - -0.00020268535266852047, - -0.0002417427942224228, - 0.0012724948338160577, - -0.0011984926459137214, - 0.0008900913451447357, - 0.0008783061424053854, - -0.0010458721163060158, - -0.0006022052726642442, - -8.828887597004397e-05, - 0.001396798979293003, - 0.0004989865597157939, - -0.0005348790029593974, - -0.0006194644086751569, - -0.0007671904171932672, - -0.0012055981931412393, - -0.00032104341720748115, - 0.001683691610677059, - 0.000552117558209846, - 5.6081920406430105e-06, - 0.0006082844875672451, - -0.00013305075840800844, - -0.0013900975089295795, - -0.0010976193322011672, - 0.0006961676024798065, - -0.0005197946517720998, - 0.0014993852748486608, - 0.0013741650992779304, - -0.001447039495614885, - -9.950555049245738e-05, - -0.0011598046987846636, - 0.00024519997141634703, - -0.00034923664417386513, - 0.0001358911116846764, - 0.002453799311780455, - 9.94099498797496e-05, - -0.000256092834475479, - -0.0008763861367431084, - 0.002057025968982184, - -0.0006743442397776864, - -0.0015887787726295642, - 0.0005356760519903987, - -0.0017911832435620135, - -0.0014774630509457945, - 0.0006839920734285661, - -0.0007241102166030253, - 0.00016351333103982278, - -0.0009433317590419137, - -0.0003918610903856048, - -0.001404466024418185, - -0.00012293588912236375, - -0.00038889169428523617, - 0.00021802992810596657, - 0.0002814364532383221, - -0.002166717633632913, - -0.0014647930150811618, - -0.0012160465847264018, - -0.000576118298282733, - -0.0003958019008615864, - 0.0013935575072528477, - 0.001003994382357883, - 0.001961873277739065, - 0.001301513825971075, - 0.001317674152663509, - -0.0002446965318933963, - -0.0002485061321109793, - 0.0013900404137849804, - 0.0006176119823086444, - 0.001245348432298558, - -0.0003713420654413044, - 7.304316291190732e-05, - 0.0008112706916238822, - 0.000242440257070609, - -0.0009319735826420833, - 0.0005400177514752846, - -0.0012230812865281365, - 0.00029453912875240595, - -0.00012729063881367872, - -0.00193235396628409, - -0.00037271096609875834, - -0.00011798160592213698, - 0.000987905796991368, - -0.001000448425110173, - -0.0003476270161546004, - 0.0012418633967934954, - 0.0023972906696220074, - -0.0014726137116764897, - -0.0007456205226439763, - 0.0002540915969075913, - 3.3501959697294226e-05, - 0.00010061362830924049, - -0.0009777760610758946, - 0.0005751782743654062, - 0.0013041760273851074, - -0.0010729504501011955, - 0.00029778215961452474, - 0.0013983565184399744, - 0.0012670145132723939, - 0.001166512728530613, - 0.0004681663009650262, - 0.001178459603801974, - -0.0002673930419126405, - -0.001923420048539301, - -0.0005179669866831342, - -0.0003421938924086998, - -0.00031454299870890357, - -4.538791223070131e-05, - 0.00114374480329816, - 0.00023551055213126494, - -0.0003008136089731119, - -4.2811320876147044e-05, - 0.0007589492057692653, - 0.0001457501339360073, - -0.0003403904913840951, - -0.00010178391969813625, - -0.0007142384992884296, - 0.00023680330147214367, - 0.0004978988570954536, - 0.00023986813520435277, - -0.00016077655363883135, - 0.0003547036117098322, - 0.000905036487220282, - 0.0011260545090391253, - 0.0009468812685287136, - -0.0015644807722375094, - 0.0009360780741038703, - 0.0008314774348294702, - 0.0006547318026099123, - 0.0005525503275610661, - 0.000405694277185568, - -0.0007222452594205332, - 0.0005190334253660729, - -0.0012324022654431992, - -0.000909436085901894, - 0.0011630285570124745, - -0.0006678278347238176, - -0.0010977699843685818, - -0.00038369027253252336, - -0.00011034292395627632, - -0.002296203295718756, - -0.0010399543416634107, - 0.00022828118275489007, - 0.0006545897041908453, - -0.0012491636236799052, - -0.00012624600361530006, - -0.0003224001547186925, - -0.0003792542692920832, - -0.0013286881857320354, - -0.0008524205751910643, - -0.0022496897855364493, - 0.0012254977396853003, - 0.0007874047149730584, - -0.0021564397729080887, - 0.00016310959945044175, - -0.0011975676453436423, - 0.0005070312304128182, - 0.00204556529833553, - 0.0005393134005811962, - 0.0005317247750383935, - -0.0010077969005854932, - -0.0009912932683317005, - 0.00242949902341733, - 1.7512109027651474e-05, - 0.0006275422371647332, - 0.0014586972303107567, - -0.00042204196159876064, - -0.0010086187225615236, - 0.0006016060100710456, - -0.0009441986634935058, - -0.00037033211370929525, - 0.0010208130082697614, - 0.0002299407658003864, - -0.00040985063448632184, - 0.0002063877195258921, - 0.0014954590584082149, - -0.001494065764751854, - 0.0006832711349654054, - 0.0032684510938328667, - 0.0007933740192714414, - 0.00019276735487706149, - 0.0010344752162035596, - 0.0012499434709434386, - -0.0018695343810786347, - -0.0005535232444692484, - -0.0011512948383571964, - -0.0016394188531021392, - -0.002320950092088118, - 7.641718460858369e-05, - 0.0005775577754542768, - -0.000858262395774719, - 0.0007884237205812623, - -0.0004090280624851604, - -0.000732779780019323, - -0.0014167182386943752, - -0.000557383609727382, - 0.0014815330266955075, - 0.0025123247685384636, - 0.0009120476715233631, - -0.0012637291743742938, - 0.0009974651492620898, - -0.001112020678736539, - 0.0005548649949550477, - -0.0008769670796928167, - -0.0010020058039085533, - 0.0017997655431989058, - 0.00041242608443373217, - 0.0008942539415559499, - -0.0016606562535309121, - -0.0005701221120811762, - 0.0015232268760327333, - -1.2214908633249073e-05, - 0.0020476519679914255, - 0.0006068277978679423, - -0.0009935352837771088, - -0.0012690905447223383, - -0.0003979590925262299, - 0.0003461481533925584, - 1.3483539683909937e-05, - -0.000699361645924636, - -0.0013011416906567534, - 0.000768629333877517, - -0.0011750482240426862, - -0.0007807803663383399, - 0.0015409325066019022, - -0.00022271653099060828, - 0.0002709830865401771, - -0.00021119031367782776, - -0.002585295089106556, - 0.0007971678250533242, - 0.00040218855916707917, - 0.00021781566664876866, - 0.000890775048659973, - 0.0003638996504297788, - 0.0014534689856685787, - -0.0009289352823937419, - -0.0003547309773454183, - -0.00022424799510737837, - -0.0003533832600447177, - -0.001636313354185061, - 0.0004749198669373094, - -0.00019368779061795785, - 0.0006037242490626284, - 0.0015525492804952291, - -0.0013671455964979137, - 0.0005002873264754055, - -0.0016073170645611622, - -0.0005463633249455827, - -0.00016379499108103168, - -0.0003833819756587304, - 0.0013519142722982682, - -0.00043003600322486033, - 8.561976854685265e-07, - -0.001017032875045673, - -0.0021779039666496, - 0.0006002212715751832, - 0.0009474718244681557, - -0.0010365078926927308, - -0.0004216465503457887, - 0.0004554055967928784, - 0.0014330197302398805, - 0.001254033992413942, - -0.0009174047630206721, - -0.00031151507077286413, - -0.0012791246279226316, - -0.00023149279888347172, - -0.0007012013677514452, - 0.0006029603786410563, - -0.0007778232709361126, - 0.0004107997153919694, - 0.0017046919210290936, - 0.00027570828806197683, - 0.0026399773818223896, - -0.00026729365211599157, - 0.0008257369847529638, - -0.0005583404245572991, - -0.0005792197419512357, - 0.0010988608943619522, - -0.0009005864865660768, - -0.00021693349361683666, - 0.00048357924498768003, - 0.0013660410302722915, - 0.0008798951558513683, - -0.0009168487540592194, - 0.00035413674241279884, - 0.0007976898268152435, - -0.0021503642406324693, - 0.0006402308851035156, - -0.0006451527618007633, - -0.0005361454414668712, - 0.0012668783463805843, - 0.0006022513156779528, - -0.000603869426166372, - 0.0006281996589109849, - -0.0007691810723097991, - -0.0015344282144216298, - -0.0020232020679332384, - 8.016997908507344e-05, - 0.0006033210327256757, - 0.0006743328638580946, - 0.0012612393733702888, - -0.0006772825479732828, - 0.0001373943534099116, - 0.00033669540329503596, - -0.0006793269565985049, - 0.00019460901676931718, - -0.000646595308008727, - 0.0011053723371156645, - 0.0008026209913707568, - -0.0020551632241263646, - -0.00017377232230081236, - -0.00013600381891999572, - -0.0016198533783219687, - 8.10704931612298e-05, - 0.0010405086984507893, - -0.0003590773752239741, - -0.001002437322527758, - -0.001161584202027129, - -0.0005603510530274877, - 8.378959630032133e-05, - -0.0009786044357254172, - -0.00015215704412719044, - -0.000841887947634352, - -0.000799642541488621, - -0.0005311068689970131, - 0.0011615899971000648, - 0.0006578141903513387, - -0.00014619974897492192, - 0.00010819065221761499, - 0.0007359759550434815, - -0.0002543562800779573, - -0.00015646500505248556, - -0.0002197242244851538, - -0.0007474886056113806, - -0.0019151497161974448, - -0.001894763729561928, - 0.00221525092711684, - -0.0012944183308610671, - -0.0014081271081109225, - -0.0010292474590757011, - -8.115430300969194e-05, - 0.00012187052485438421, - 0.0008507305732680029, - 0.0008723381312593419, - 0.0012991223156996795, - -0.00010777315793434685, - 0.00041073893528559003, - 0.001041134967781498, - 0.0005237875747731152, - -0.0004338809320102498, - -0.002073816133974338, - 0.0007143912023108507, - -7.190073016017019e-05, - 0.00090210462309384, - -0.0005972669397155522, - 0.0008679099324397089, - -0.0012484539895824909, - 0.0005216716511744462, - 0.0004486132146332885, - -0.0004033816619321438, - 0.0002559761570756555, - -0.001546938403818934, - 0.0013475556530214634, - -0.0009277461716428649, - 0.0006552333753543608, - 0.0016051733046395364, - 9.470638635949893e-06, - -0.0004057598440088229, - 0.0008755745243156812, - 0.0010270304006772446, - 0.0006196581806054191, - -0.00026634314198146895, - 0.0019644925982851935, - 0.0010183263981026354, - -0.001002753327479171, - -0.00017570039837068116, - -0.0005472510027439817, - 7.867960630546193e-05, - 0.0011810746440383362, - -0.0020398517588618064, - -0.0005653474470381853, - 0.00012190197745279131, - 0.0005540217820455889, - -0.0006059887668693178, - 0.001213408139712729, - 0.00039290033160804686, - 0.00016706517784149003, - 0.0018179822944520444, - -0.0006321007517577175, - 0.00030095731294121913, - 0.001886094414933088, - -0.0006268970756422604, - 0.0012258406888773017, - 8.340217443332957e-05, - -0.0010730059026761059, - 0.0016810293355580283, - -0.00021395307575833994, - -0.00027771871527284593, - -0.0009272521921504715, - -0.0018724103577321975, - 0.000814851449405764, - 0.0006162155406466615, - -0.0005744364204685189, - -0.001840751112525641, - 0.00014182262641823667, - -0.0009080665697484129, - 0.0025297735837816245, - 0.0011852758973231172, - 0.0018684575892001952, - -0.0002773458092720576, - -0.0005954342157347672, - 0.0005137385042760067, - -0.00012797350577039267, - 0.00023417605817922422, - -3.8629624666586536e-05, - 0.0007259007029674304, - 0.0003796729458746447, - -0.0012338671649573542, - 0.0016194273544128488, - 0.00033116595255199704, - -0.002156633323316073, - -0.00013974369803923314, - -0.0012712046830490604, - -0.00022847739244118357, - -0.00029560466047043945, - -0.0006142599665759806, - -0.0010464066549965851, - 0.0005872394828794476, - -0.0006601506232705296, - 2.307044141117272e-05, - 0.0007276272497046813, - -0.0013819705744376706, - 3.2758858758459174e-05, - -0.0006135630578201338, - -0.000275150244957289, - -0.0010256759531080955, - -0.00023409633594535288, - -0.0011846803033728095, - -0.0006645616948943231, - 0.0010992524131829223, - 0.0015635150589697168, - 0.0007849387290476648, - -0.0007840932630354567, - -0.00046613319884066174, - 0.00017832613081925812, - 0.00045845663807168933, - -0.0016058607613153829, - -0.00046879668191327753, - 0.001624714197357801, - 0.0014841034915936237, - 0.0017644135938499892, - 3.9035419298184154e-05, - -0.00047239908000549407, - -0.00047374087372559025, - -3.2659753794563966e-05, - -0.0009098010909185313, - -0.001878131437592149, - -0.0005415907904115695, - -0.0008945837898139572, - -0.0006275694311655663, - -0.0018424789903200508, - -0.0008288583591076099, - 0.0012153450496774887, - 2.440362021787293e-05, - 0.0003029447851294308, - -0.0013235378522082767, - 0.0006929491382562639, - -0.001199278677277288, - 0.0004257021548760925, - 0.00023933597297624105, - -0.00012225495966644454, - -8.522990226540226e-05, - 0.00017454211102820147, - 0.0009299427345051384, - -0.00019274529353932986, - -9.372768663313137e-05, - -0.0009395816902243819, - -0.0012827337967690057, - 0.0007669710981980404, - -0.0011340616407460526, - 0.0009886691708712611, - 0.0005216696310271232, - -0.00013748122949247278, - 0.0013293179275433186, - 0.0008041309962498296, - 0.0004119425669489237, - 0.0011075725484613781, - -0.0002454273772698312, - -0.0013270002990211532, - -0.0006552508189581236, - 0.0007841839327576109, - 0.0009257082709316408, - 0.00015935049846924, - -0.001353677438216943, - -0.0003101536905384223, - 0.0006827468484294755, - -0.0005887581205602663, - 1.4466294567207239e-05, - -0.0002783193958011845, - -0.0007096774551859976, - -0.0012489418464952575, - -4.6514230382042655e-05, - -0.0006390639182274582, - -0.0007677893277195797, - 0.0007108351885585672, - 0.0005561776895310307, - -0.0009632513604964767, - -0.0005027759795659089, - -0.00013866259811720258, - -0.0005663346253346797, - -0.0002738001613877752, - 0.00043392491664402325, - -0.00014808070856451666, - 0.0007597508051178058, - -0.00021511183113965738, - -0.00040376233923170935, - -0.0011389573298199215, - 0.0011926471873615527, - 0.0010920534367936203, - 2.7439583067890837e-05, - 0.0013301412579836958, - 0.0018050410736988494, - -0.0007276770039951367, - -0.0005831331778332786, - -0.001022871927100198, - 0.0007392240522404302, - -0.0013415381556776812, - -0.0020526563904035553, - -0.0005652152980091115, - -0.00021745872357599571, - -0.0019746487862727967, - -0.0017153451145541843, - 0.00029155795933890363, - 0.002319630355203508, - -0.0013113963223806452, - -0.0001294221873382525, - -0.00017408063326714788, - -0.0005200002128589761, - -0.0019735440557535496, - 0.00012478131857156878, - -0.0005260956081139925, - 0.0009382583843977316, - 5.582627104092898e-05, - -0.0007215931311952389, - -0.000579857809666777, - -0.000544593472767772, - -0.0011385382165097792, - 0.0007948000627549126, - -0.0009137553096147457, - -0.0005289519784487587, - 0.00018533691705836824, - 0.0005398580458703363, - 0.00016971772399756668, - -0.0004921925659016053, - -0.0006760738544801761, - -0.0012256401801502216, - 0.0015251524782863546, - -0.0008849371781204839, - -0.0002742792656447132, - 0.0013464303868357013, - -0.00015200619862276818, - -8.331708310871281e-05, - 0.001083307733083923, - 0.0007890467767490176, - -0.0003042664822346212, - 0.0009547956944127718, - 0.0007707713099523723, - 0.0012522181105993294, - 0.001543871319612972, - -0.0008199443228660667, - 0.00011285375000587286, - 0.0004630741738959993, - 0.0009013945697030182, - -0.0010489574024819296, - -0.0001903833725376198, - -0.00025666381431434574, - 0.0011260744499346459, - 0.0023436314458386114, - -0.0008923738051725914, - -0.0011642892287812806, - 8.571111660265548e-05, - -0.00028728566138086216, - -0.0019275756228973664, - -0.0009914344712439141, - 0.00065325336656278, - 0.0001230089593329516, - -0.0005620340559111569, - 2.7391907319893895e-05, - -9.394381453933587e-05, - 0.00040659664840809025, - 0.0007191734541323098, - -0.0015035896087217885, - -0.0015866728871699015, - 0.0014847682480483217, - -0.0016015571084391016, - -0.0007555299681517055, - -0.00020017610125920479, - 0.00022026621331653354, - 0.0014777147071756943, - -0.000985673083611297, - 0.0012154835426142954, - -0.0009882905895190171, - 0.0008177141452310676, - 8.363096458943782e-05, - 0.0008254801872588242, - 0.00042970344461200295, - -0.0016355765099335202, - -7.002072173069537e-05, - -0.0002613217659772772, - -0.0004528517321366043, - -0.0006106324178301298, - -0.0007295695103410415, - -0.0009574255731477595, - 3.5319264231312115e-05, - 2.5048416980766137e-06, - -6.323489567834154e-05, - 0.00017803903138327554, - 0.0004883986157143899, - -0.0013018332778485314, - -0.00016593943607465093, - 0.0006854605413267064, - 0.00048767485909681507, - -4.3741239877119755e-05, - -1.2722000333969066e-05, - 0.0002973959779569777, - -0.0006771664804521326, - -0.00040865144133525144, - 0.0006911561058238152, - 0.0005464834256275891, - 1.068542313952991e-05, - -0.0002825797113803384, - 0.0007447849459271404, - 0.0006750125746597848, - -0.00010647771655461612, - -0.0010443174762639934, - -0.0006148876405887278, - -0.001281774071921391, - 0.000884214963056059, - -0.0009211962120539919, - 0.00021519740924755596, - -0.0013094415762291067, - 0.0011209730985217593, - -5.2563070581243424e-05, - 0.0011784129734459133, - 0.0010908884260492418, - 0.001121108021591094, - -0.0011324861261581534, - 3.767306682754646e-06, - -0.0004021740471330644, - -0.0019929828712680637, - 0.0005564546270876054, - 0.00047698697022544837, - 3.8808496130810614e-05, - 0.0011208681466245824, - -0.0017908305662381306, - 0.0005468357589374526, - -0.0010380684676747, - 4.1203979339640286e-05, - -0.0007406199329201499, - 0.00016965906451039449, - -0.0008458012653423028, - 0.00035941436661643313, - -0.0008024410947947481, - -0.00047082902339540413, - -0.0018517984045651535, - 0.0005215613504340325, - 0.0009191854381750063, - 0.0004161140764378989, - 0.0007005283910660447, - 1.5872750119012833e-05, - 0.00047501871149123194, - 0.0012065020366808926, - -0.0010390505552356425, - -0.00142236706007953, - 0.0003769242948156944, - -0.0005355051663895864, - -5.637059993671412e-05, - 0.0021085506650261017, - -0.00033512967573194727, - -0.0013865606939118616, - 0.001988689436393826, - 0.00042794527275678666, - 0.0007236796186709461, - 0.000207312140507114, - 0.0013779236447015676, - 0.00034710880475028637, - 0.0004751840223299953, - 0.0028898846903955295, - -0.001547874270212295, - 3.39964487835445e-05, - 0.00012962059392089933, - 0.0010139244886734934, - -0.00019121839856399092, - -0.0005768483537160632, - 0.0011758642240558951, - -0.00015823867993311144, - 0.00027516550222868286, - 0.0008484441706154387, - -0.0006333176731583799, - 0.0015395147356479148, - 0.0007693462325582032, - -0.0012354667980856568, - 0.0008589993289658408, - 0.00046892741753519035, - 0.0014966578199703672, - 0.0015137642536561433, - 0.0009151391090631963, - 0.0007560128893052371, - -0.0007246807122151445, - 0.0007777990701347045, - 0.0007558309868820272, - 0.00019305460833536826, - 0.0007070112359797129, - -0.0001326880674508584, - 0.0006300270522281987, - -0.001277381012083592, - 0.000938027907226287, - 0.002201943929337727, - 0.0006145693077624208, - 0.00036262069721010266, - -0.0005946631862239267, - -7.907669372864243e-05, - -0.0001015930486038088, - -0.00021637633345259228, - -0.0016791187571208153, - -0.0005002115227751338, - 0.0012424120401219635, - -0.0002028774556686876, - -0.0015076894351393204, - 0.0011755859028551104, - -0.0018532761038118476, - 0.0008170232017505365, - -0.00027068889874022357, - 0.0012315480508447209, - -0.0008793001516126271, - 0.0010077280864361673, - 0.0021555177062483996, - 0.0010516370897761967, - 0.0013706960570655912, - -0.0009775071731418254, - -0.0007266901081408426, - 0.0009684739001165906, - -0.0005196632465673016, - 0.00043798175906892604, - -0.0004761523148838627, - -0.0008015009559432673, - -0.0002743951830099175, - -0.0002101258541340768, - -0.0017535883167070945, - 0.00108318374785234, - 0.0010856079409741687, - -0.0006809524949173706, - -0.0012925443599986946, - 0.00031305398881067596, - 0.0001688828716820786, - 0.0012475675109088664, - 0.0013161845832167741, - 0.0008294131358979759, - -0.0005521582900165403, - 0.0001834289408128992, - -0.000725922060341002, - 0.000641204890282848, - 0.0005466261028535946, - 0.001619021485926928, - 0.0002455297060089909, - -0.00037621266155112574, - -9.805031289324159e-05, - -0.00043354887386529357, - 0.0006073273670017484, - -7.720405912905545e-05, - -0.001008381198249245, - -0.0007607993959550132, - -0.0006791157271967338, - -0.000611914669127093, - -0.00010675234371518604, - 0.00048435635073753534, - 0.0008674813478139841, - 0.0006265747605093991, - 0.0005195534036523024, - -0.0019626760030845196, - -3.1292711165564424e-05, - 1.6852298050166345e-05, - 0.0008372240129639294, - -0.0005075233129397342, - 0.0001702126167809307, - -0.0006612670176947515, - -0.0014133890156392544, - 3.022223005620058e-05, - -0.0007614504201546305, - 0.0010166843133909474, - -5.9598213080940344e-05, - -0.0005685352850292359, - 0.0007236654248102324, - -0.00028579610494040413, - -0.001840838642758128, - 0.0003973586781973919, - -0.0005754113090886242, - 0.0009390449080833442, - 0.0002531262740978972, - -0.00021228461443984878, - -0.0013934827726272243, - 0.0003820729581589727, - -0.0009652317669157452, - 6.373110656479822e-05, - -0.0005188179749127257, - 0.0006139867975434936, - 0.0014621329768889325, - 0.001396554611494456, - -0.0002020845202515054, - -0.0007701459863187674, - 0.0009551463092044626, - -0.0006157176532608947, - -0.0006731535991849483, - 0.000843132098280149, - 0.0009629342800641876, - 0.0009833547129192398, - 0.00037913624629173074, - -0.00016296380946954176, - -0.0003946064377629643, - 0.0011307565819540957, - 0.00048002682233348905, - 0.00013530736234440495, - 0.00015190909005770452, - 0.002525424314312132, - 0.0013983892843201589, - 0.0014719485720329994, - -0.0004870718591990938, - 0.0006182078263376038, - -0.0011856032754067613, - 0.003093780169936306, - 0.0014920250882651583, - 0.00031958248378246407, - 7.437426845314787e-05, - -0.000304905064233707, - 0.00035071326276614234, - -0.0007851997939006672, - 0.00037091106699067475, - 0.001326124868538595, - -0.00018414257610840644, - 0.0004674118783336765, - -0.0007706200653478202, - 0.000613778414457533, - 0.0011505195759888823, - 0.0018965219985330323, - 0.0005310451011945201, - -0.0012168026571109318, - -0.00028918306808454054, - 0.0009817133197341896, - -0.00019582802657454578, - -0.0004985991191709413, - -0.0010123380044174406, - -0.0013482871083811698, - -0.0002084431898089644, - 0.00021632655875696163, - 0.001937610683059438, - -0.00011419763189451319, - 0.0008098705601005431, - -0.0003048253915429597, - -0.0008458522928350008, - -0.00031281600702254953, - 0.0006882586826327576, - -0.0017247605011207114, - 0.001231783530519311, - 1.2386043745770664e-05, - 0.0007975930720058807, - 0.0015368579100151596, - 0.0008558762370825001, - 0.0009148739628520266, - -0.00039788447823082765, - -0.0003703737725833197, - 0.001585576444592436, - 0.0012262147696407593, - -0.0007353257925480993, - -0.0006481903932046089, - 9.147906492094841e-05, - -4.0676275173697306e-05, - 0.0005099071325796534, - 0.0007508179629184206, - 0.0005035773938286783, - 0.00037593167820039794, - -0.0005558980405911102, - 0.0008509115849267475, - 0.0004283354355305198, - 0.0001620461503859995, - 0.00021287942353907655, - 0.00013219193070519887, - 0.001894987670036629, - 0.001236209528800909, - -0.001733864374115713, - -0.0003265120875991358, - 9.999903762181897e-05, - 0.0004653840265722703, - 0.00017573299522958565, - 0.0015237490291014366, - -0.00037777764997797426, - -0.0006096532543440503, - 0.00019441395923034869, - 0.0004804104123186151, - -0.0003675825435076717, - -0.001331789891608182, - -0.0010167366804148435, - -0.0021342206134845544, - -0.0008948512704052287, - 0.0012038334559044514, - 0.0007843498666707582, - 0.00020704397463610765, - 0.0013600640893818774, - 0.00016244447215666352, - 0.0009151657924688093, - -0.0003173974654030323, - 0.0010343588160444245, - -0.0017715987954647222, - -0.00024964424125906463, - -0.0006133634110585387, - -4.7403826189359006e-05, - 1.4081461780296855e-05, - 0.0009572007674778298, - 0.00014855922423804825, - 0.00016011424720519324, - 0.0016366476683309205, - -0.0019441869472850257, - -0.0013713899074354597, - 0.0009544233399055267, - 0.00014151272508743313, - 0.001849610474993914, - 0.0023086161976397478, - -0.0006584695164297568, - 7.099257787946181e-05, - 0.0008474780704654086, - 0.0007507395277653367, - -0.0006938021044001769, - 0.001105309923747922, - 0.0026484486668228863, - 0.00025791839023851505, - -0.0018335430145064436, - 0.00040057846376246177, - -0.002276054535832052, - 0.00010477382019932218, - 0.0005736983256690269, - -0.0007251625737340841, - 0.0010856163854539944, - 0.0008312307112969851, - 0.00045610690999727807, - 0.0006722330850960164, - 0.001099332833617504, - -0.002008291287024973, - 0.00031644843532334984, - 0.0011340946825470347, - -0.0008618698663098958, - -0.0006677779035184153, - -0.0013770926536694284, - -0.00021775976294652013, - 0.0005913797126289503, - -0.0008559844308059121, - 0.0008641270352021477, - 0.0016487981302435505, - 0.0008188570501479655, - 3.617473112294436e-05, - 0.0020450903115102072, - -0.0007403821702958648, - -0.000616406968915607, - 0.0003834785405674865, - -0.001257297514153456, - 0.00159311756981004, - -0.0004139914077143578, - -0.0021851014808886007, - 7.268411711279082e-05, - -0.0006680390957399413, - -0.0007132746254335545, - 0.00125917339330871, - -0.0012568424283987208, - 0.0009071119641645683, - -0.00024939889062963624, - 0.0007046374996207801, - -0.0003759305608103504, - 0.0001906148304746912, - -0.00027128337909546643, - 0.0002913782418141792, - -5.5937351025074896e-05, - -1.948912788451046e-05, - -0.00037707753998497435, - -0.00042215623449753736, - 0.00018610233934877895, - 0.0004533676659774569, - -0.0007404728166798479, - -4.1456783695517814e-05, - -0.0013566458423544517, - 0.0002619538826103473, - -0.000844663148301194, - -0.0014506180739125613, - 0.0006408893640781722, - -0.0006727401470046621, - 0.0001719690883771914, - -0.0011708962981574955, - -0.0013129497005538767, - -0.0007324546853346176, - -1.6664476801845397e-06, - -0.0011021842888350745, - 0.00010651137282659544, - -0.00036614840475089844, - -0.00089251220834823, - -0.0013746802309841713, - -0.0011209009404559392, - -0.0009941312272154813, - 0.00015346970355666273, - -7.456606022138165e-05, - 0.001802263302140037, - 0.000517210990024804, - -0.0008786614782110772, - 0.0005504823700663182, - 0.0008694190642231708, - 8.275979252450808e-05, - 0.0001135415682457096, - -0.000957848022248403, - 0.0008350381278633296, - -0.001469625482599283, - -0.000543641073186527, - -4.843580104432465e-05, - -7.227086379148414e-05, - -0.0003262974648046803, - -0.0007475210266285093, - -0.0005243710510408663, - 0.0005836498262651517, - -0.0017000372916839818, - 0.00031528030205108144, - 0.00039108929283332037, - -3.892507614385109e-05, - 0.00013744908554576813, - -0.0006266822600186013, - 0.0004492356488404556, - -0.00023616775762699303, - -0.0018113748419439832, - -0.0019154894665313375, - -0.0015038519416110375, - 0.0025257577663450872, - 0.00024575534037567877, - 0.001018132096598654, - 0.0011276723901545147, - 0.0012170113290382195, - -0.001468094714436184, - -0.0003707827301416084, - 0.0015993048070901848, - 0.0016613983599902155, - -0.00048120036673072997, - -0.0011054418990079247, - -0.0011639491791715013, - 0.0012572148259509175, - 0.0002351258559832181, - -0.0009772673289506046, - 0.0006753431046667082, - 0.00023474325185870244, - 0.0008185661479336855, - -0.001073854447963591, - 2.8775742886413597e-05, - 0.00015641903990770592, - 0.0009285896349597373, - 0.000743250129913201, - -0.0008331179548047691, - 0.0005355414096374265, - -0.0013218463003704824, - 0.001001596755478037, - -0.0008589446410832784, - -0.0019354519871264569, - 0.000497754549132331, - -0.001031132625449232, - -5.5287744397359774e-05, - -0.000461092022819292, - 0.0006878269473303165, - 0.0008140125171906518, - 0.0001865062300536076, - 0.0004573438898734228, - -0.0006251437937052994, - 0.000458186685785606, - -0.00036661997441944747, - 0.0010578673099163245, - -0.0003191060279543737, - 0.001516869303763067, - 5.8002911440035456e-05, - -0.000729406055894024, - 0.0019126553428177413, - -0.0004488887070002623, - 0.0013038712498697144, - 0.00021836372883111645, - 0.0013708568438696932, - -0.00048348176142772443, - -0.0003373367335606932, - -0.0004092620006579989, - -0.000387317205606125, - -0.0003458906091736601, - -0.0008864137479464472, - 0.0005795548994785292, - 0.001528856426004212, - 0.0008451893088704214, - -0.0016155264235716198, - -0.00013085269757767202, - 0.0008548009293915774, - 0.0004655052232301872, - -0.0009612275713714917, - 0.001495149627345742, - -0.0015110227535005693, - -5.398680162478129e-05, - 0.00030641385290882425, - 0.0008455037285357802, - -0.00024112528139992384, - 0.0007676527438743029, - -0.0018032512630167129, - -0.0002800194526780565, - 0.00018984600991876503, - 0.0007822918707247971, - -0.0002237655434517622, - 0.0013652562680243772, - -0.0011799321458752074, - -0.00014521541745525943, - 3.289011562759349e-05, - 0.0022342661360973187, - 9.015856255705198e-05, - -0.00018010839058522134, - -0.0007215057256109542, - -0.0011082243018008583, - -0.0002667076767502756, - -0.0005261539957797791, - 0.0013993127573978497, - 0.003265046460816678, - -0.0011015280618956657, - 0.0007260930045290512, - 5.7629904537836756e-05, - -0.00028638261620400455, - -0.001390587919662593, - 0.0007280342031323194, - 2.4607841459044983e-05, - 0.0006126861856732723, - 0.00015221106915931922, - -3.9795884162908e-05, - 0.0016976784132201844, - -4.441078884960588e-06, - 0.0012071314200436587, - 0.0002878010434859319, - 6.687493229507888e-05, - -0.0014030877049524377, - -0.0019404936783602256, - -0.0005866504384310143, - -0.001928732082071324, - 0.0013257466148185926, - 0.00016279104232788755, - 0.0016392434395581595, - -0.0008073274070459788, - -9.640679839250063e-05, - 4.685827425682756e-06, - 0.0007897111274014245, - 0.001558754097916548, - -0.0017592421270404127, - -0.0001654192155494504, - 0.0003517491358873672, - 0.00034093630853618447, - 0.0006077586784839686, - 0.0006474605723020388, - 0.0006388140713417663, - 0.0015170142597995052, - 0.0004654329998929194, - -0.0015695121547723446, - -0.0011430885396366238, - 0.0001434207320023562, - -0.0008380448714112393, - -0.0005408059582948132, - -0.0009324220574122204, - 6.693939549958164e-05, - -0.0002508079081981275, - 4.136817792736838e-06, - 1.618081116186152e-05, - 0.001018976250163648, - -8.40069795943809e-05, - 0.00046482800517817346, - -0.0022356860340191206, - 4.3435421115747965e-05, - 0.0005163331871297355, - -0.00047840448283746476, - 0.000692205317261706, - 0.00035152329844499974, - 0.0012795117540978004, - 0.0010522895441960488, - -0.000341116015046483, - 0.001568593697676441, - 9.509066736981997e-05, - 0.000586615963982806, - 0.0004725103068407806, - -0.0010242752443036774, - 0.0013882467967714076, - -0.0006033589883686911, - -0.0012333263522328367, - -0.0007531743257335888, - -0.0014574076047991465, - -0.0015059215209906388, - -2.347764583313335e-05, - 0.000371356217118998, - -0.0016945400304788742, - -0.0008332352469380139, - 0.0006038170507731652, - -1.616205066087793e-05, - 0.00019746420688783594, - 0.0016668351774683115, - 0.0017904348867460367, - -0.0013013889096081478, - -0.0021743166286298608, - -0.0010956401869055884, - -0.0021798971720281054, - -0.0004441018659725227, - -0.0008161370681621995, - 0.0006106662471064867, - 0.0004427959024771751, - 0.0003578806611534797, - 0.0003950280990076959, - 0.0007639644098898555, - -0.0019433600549193294, - 0.0009302199882789731, - 0.0016756945095897581, - 0.0015079974420787808, - 0.0014184176166538909, - -0.0010630878684409367, - 6.196931215447108e-05, - 0.00026608653793414147, - 0.00045096629890946214, - 0.001414108451954919, - 0.00018483475519180518, - -0.002002897491224868, - -0.0004509178949781823, - 0.0006629891795862403, - -0.0003078377817845097, - -0.001567161286627393, - -0.0004978760926414897, - 0.0007569147505966891, - 0.001070009903976791, - -0.0003712160842059673, - 0.00018684409001309157, - -0.0006336110382974539, - 0.0011004190471000904, - -0.0016739928882195598, - -0.00034703788002232115, - 0.00019871353899854436, - -0.0005468132970981666, - -0.000249205178927374, - 0.0017233362891174273, - 0.0005472001855544726, - 0.0012685029433823654, - -0.0009097811292589578, - -0.0017114287863480508, - -0.00101898702723107, - 0.00011982019108519567, - -0.00019359811928305618, - 0.0006768536962535475, - 0.0006123563454089686, - -9.018929529091749e-05, - -0.0010212149839001078, - -0.0004676323796079595, - -0.0005066529809368607, - -0.0003338072701387057, - 0.0017523254105596246, - 0.0007690972474130011, - 0.0011201990185337287, - 0.0018850516438518612, - 8.334444946398031e-05, - -0.0028401848322393325, - -0.00011999140933778583, - 0.0006844020995328622, - -0.00019272650499091792, - 0.002936425377206464, - 0.0008670290252309245, - 0.00038211229365440466, - -0.0013498569691882286, - 0.0004799976662060204, - 0.001828967440935169, - 0.001914132765174544, - -0.0016478157303258278, - -0.0012530665724742268, - -0.0005653292526978639, - -2.5349085679602093e-05, - -0.0005993533047246497, - 0.001649989264464849, - -0.0012528023834720437, - 0.0017834144539955509, - -0.001371745798100629, - -0.002734462051293549, - 2.3204426337626257e-05, - 0.0009141313033954536, - 4.660129193926474e-05, - 0.0002144790066795692, - -0.0009319137471683911, - 0.00025984436479200017, - 0.00010308788274394013, - -0.00031749837196479733, - -0.0017828246008499075, - 0.0012526903125452476, - 2.1771538000902446e-05, - 0.001088260448894503, - 0.0003677828035028675, - -0.000558747391115069, - 0.0005041394602016987, - -0.001138033053844944, - -6.23150902407085e-05, - 0.0018783646449274068, - -0.00014494498759946357, - -0.00011696864003333216, - 0.00026284299270724643, - -0.0002073399855087799, - 0.0014852881110754685, - 3.192402723965778e-05, - 0.0011040818227787993, - 0.0009887957247828392, - -0.00034822704306298476, - 0.0003905003605618267, - 7.330666920743814e-05, - -0.0016833845777142432, - -0.0017390243198330544, - -0.0007162157679018235, - 0.00019865775919477687, - -0.00023642356711129646, - -0.0024441893837757384, - 0.0017955115893068144, - 0.000741909064140193, - 0.0008349012955597332, - -0.002026955013157408, - -1.581815416314698e-05, - -0.0015218203411315383, - 0.0007687622804029824, - 0.00029391503443699233, - 3.4122025292181594e-05, - -2.560331040589045e-05, - 0.0019007020871942882, - -0.00034544129001194354, - 0.003557835077478187, - -0.0002795439610740551, - 0.0007514285415800593, - -0.00030795271361549505, - 0.0003372709182163526, - 0.0004626901169909172, - -0.0003851582197672319, - -0.0030279236599633228, - -0.000286526900467021, - 0.0003803282182809005, - -0.0010225610682635209, - 0.0012919327417925135, - -0.0011330578281085653, - -0.0009836523010256515, - 0.0017395092869649045, - 0.0001849486531105705, - -0.00029150321747448284, - 0.001027387773071351, - 0.00017527713481810248, - -0.0004108014034116368, - 0.00020858272046883722, - -0.0007317583729402373, - -0.00035975249514288185, - -0.0009393629378463398, - -0.0009844456050515245, - -0.0005402659092349822, - -0.000141922689109883, - -0.0014455034619169401, - 0.00015626401036542386, - -0.0006304560249768649, - -0.0002677096213974779, - 0.0005867537810346726, - 0.0018096788981932777, - 0.0006850803813493349, - 0.000516616189326046, - -0.0002942678046703701, - 0.000417289759649822, - 0.0004760850562627093, - -0.0003948012123376384, - -0.0013264691544975027, - 0.0010073958191313221, - 0.0006306625726465239, - 3.496987040924595e-05, - -0.0026268353900620856, - 6.548202615851645e-05, - 0.0002028025640440027, - 0.0012990100406530798, - -0.0003954179757786647, - -0.0002440076354471901, - -0.001233914100780611, - -0.0006424922828602943, - 0.0010382335142582189, - -0.00012119170311751802, - -0.0005858541740403283, - -7.322736432990516e-05, - 0.0007375099014723533, - -0.0003305917169705829, - 0.000584448551558744, - -0.0008376522313478504, - -0.0007251303185604539, - -0.0003567672658000261, - -0.0014355605147025813, - -0.00026181343124394264, - 0.000320712739834777, - 0.0006760181541346304, - -0.0016535602552355377, - -0.001572905155083836, - 0.0010961919870006818, - -0.001115395085767427, - -0.00042064826550643284, - 0.0006702826598838646, - 0.00034509633955101993, - -0.002122015601178394, - -0.0006064478222700618, - -0.0012652499804975481, - 0.0006219810806378105, - 0.001142048313904458, - -0.0006314944707305318, - -0.0009540737378551243, - 0.0005794579293618401, - -0.00026120169211103273, - -0.0008315633884495717, - -0.00019748029512572235, - -0.000953566735161883, - -0.0021116170644907757, - -0.001728216866839024, - 0.0001582406241708997, - -0.0017409591587196644, - 0.0010969194722740222, - -9.461381203448883e-05, - 0.0009582897630927376, - 0.0016830736269277113, - -0.0008157697100017447, - 0.0003670753350875375, - -0.0012191129809339754, - 0.0007658808399851639, - 0.0003796681875339566, - -0.0013770655824550972, - -0.0005267742917370929, - -0.0005584685906499217, - -0.0007822176494629672, - -0.0005196715942298276, - 0.0009997384834065056, - -0.00017504821640420992, - 0.0006352121347851666, - 0.00026817863382142557, - -5.502241969132733e-05, - -0.00038418125925261, - -0.00035883269857816744, - 0.0007925172983948271, - -0.0002344323496084963, - 0.00019497413741875855, - 0.000144331118737367, - -0.0013355294543028835, - 0.0017604377739360959, - 0.000275950071211116, - 0.0003179461327165811, - 0.0003843412015255869, - 2.753648599225288e-05, - -0.0021047398875741826, - 0.00026337705467750387, - 0.0005361866137628879, - 0.000998040095302974, - -0.0008450338193509184, - 0.0011862797743129494, - -0.0005860964029664875, - 0.001634453455502039, - -0.0003421695391271015, - -0.0013785514072309445, - -4.4412493499724654e-05, - -0.00010023983801042895, - -0.0009540176214967126, - -0.0013307338580113017, - 0.00014917414756980806, - 5.30939216761763e-05, - -0.0008104581113308546, - 0.00024922492433364753, - -0.0019035431765627006, - -0.0018843588268179772, - -0.0004360183333796188, - -0.0007873496261828522, - 6.626202295858627e-05, - -0.00040416012062166156, - -0.0018754145206709037, - 0.0006963869066665488, - 0.0013928182454410088, - 0.0001780503333831502, - -0.00086077840351334, - -0.0001843109905023953, - 0.0004268470877057779, - -0.0006788353782538826, - -0.0007513373810255713, - -0.000772816932977752, - -0.0010087297466834949, - 0.0009809960460268117, - 0.0006157824620774759, - 0.0005989219302314738, - 0.0007358455393352784, - 3.649620538141509e-05, - 0.0004218081906971112, - 0.00038146608576598227, - 0.0015046603990252045, - -0.0004499315568817043, - 0.0012244792855013416, - -0.0003297198082633805, - 0.0017208278675342173, - 0.0022854617022098917, - 0.00019694598005794348, - 0.0009169036569568076, - -0.00129459010403295, - -0.0005551433881706311, - 0.0015978407142861763, - -0.0008433435397222343, - 2.8591511899297312e-05, - 0.0010458383507140458, - 0.0010092691676554676, - -0.0001812610838982912, - 0.0016161272547695945, - 0.0008596084153549631, - -0.0003545759397259728, - 0.0010462017580410426, - 0.0014219934233993083, - 0.00237335905856123, - 0.00046065982292397455, - 0.0010805252354400725, - 6.507528527669609e-05, - -0.000626304921701766, - -0.001794774233010495, - 0.0007267554417711085, - 0.0009126654246274499, - 0.0010559260038011677, - 0.0009230436710758591, - -0.001902581540530775, - 0.0003654557801602491, - 0.0005800799988011512, - -0.0033340756450773766, - 0.0008726941896723444, - 0.000538059714702815, - -0.0006718117416287521, - -0.00035864880280347294, - 0.0010030572396837263, - 0.0006439276569690846, - -0.00026421482554970594, - -0.002004466079034058, - 0.0010270548604495882, - -6.765372456779415e-05, - -0.0006749849938722388, - 7.365076942221301e-05, - -0.0006742999818953278, - 0.0011963057304072002, - 0.000851641348910192, - -0.0005753600383772655, - -0.0016614572573830219, - -6.763618444797049e-05, - -0.0029285495258218825, - 0.0015505038425327076, - -0.0024716565958539435, - 0.0004190533486815135, - -0.001072948286014181, - 0.00015903624686190411, - 0.0004726727036552604, - -0.000641322305402358, - 0.00015990120406461368, - -0.0003429141195161341, - 0.0004363224664492928, - 0.0011012843707588875, - -0.00035424518074134143, - -3.428635678915166e-05, - -0.0015050166383300523, - 0.0007148761153111705, - 0.0008708883068277364, - -0.0010591745876791982, - 0.0006857203752685349, - -0.0009343209699367675, - 0.0010786965664631707, - 0.0004811161242079709, - -0.0003960314965092296, - 0.0010798478617578733, - -0.0004894696922184365, - 0.0010648684081689147, - 0.0021116065868851982, - -0.00034902216750604424, - 0.0005688491561788352, - -0.0011392708319514278, - -0.0009246739987052115, - 0.0004906323365061174, - 0.0001016020541439463, - 0.0009709881718169685, - 0.0002733172068755977, - -0.0005723257129124503, - -0.0010712989215100758, - -8.353123380830579e-05, - 0.00024520964899673437, - 0.00037962861059987976, - -0.0011179272175123323, - 0.00010370286483887437, - -0.0012466594270231436, - -0.0011984746780518223, - -0.0009055953263519949, - 0.000698919431213246, - -0.0001949282016705857, - -0.0008323143308226142, - -0.0006310377617045073, - 0.0010261658141385856, - -0.001270323789347878, - 0.0007249904855817779, - 7.618922055742729e-05, - -0.0010662899796454754, - 0.0024290245264099604, - 0.00019724861278483128, - -0.0008197180503462248, - 0.000541986864411404, - 0.0008762052698665123, - -0.0020367836220982617, - -0.0006983091560407313, - 0.0007907111481241515, - -8.051741177478234e-05, - 6.904764075846977e-05, - -0.0012671994324011237, - 0.0006261275629279884, - -0.0003100646968289137, - 0.0014755812457022182, - 0.0003704308381445851, - -0.0004738234704678045, - 0.00018578099988906627, - 0.0002510021075090419, - -0.00011898655734953685, - 0.0008731152714027092, - -0.0001370960934079376, - 0.0005670356351413834, - 0.00033477045408995023, - -0.0004810817849481285, - -0.0011628942752404693, - -0.00010622937193330902, - 0.00015353102339531855, - -0.001065581106855093, - 3.145056111827852e-05, - 0.0010830773295431079, - -0.001416813350807714, - 0.00041086804580690465, - 0.001984227573184978, - -0.001025142958872697, - 0.0002759973818029427, - 0.00012705958610982108, - 0.0004898418907996751, - -0.0017048211908945576, - 0.00015637811587208448, - 0.001134339477398398, - -0.0011775904112617274, - 0.0004126463946632433, - -0.00038039185532152264, - 0.001328324380046137, - 0.0009524970309257773, - 0.0006688682403231115, - -0.00022446811234982404, - 0.00046218689003712984, - -4.154578449739491e-05, - -0.0007188113078850507, - -0.0006079033512233554, - 0.0002126148980862491, - -0.0014419632902723696, - -0.000573182229045245, - -0.00010310009062434848, - -6.496437203388216e-05, - 0.0011841397537095191, - -0.0004972337389560333, - 0.00030230754208484184, - 0.0020026443947031313, - 0.0008305116587609503, - -0.0010213663377505204, - 0.002053620047567983, - -0.0004724859170421962, - 0.0006625199515041684, - -0.00043025358649050234, - -0.0013395520237662966, - -0.0018059270770898212, - -0.0006187606804874967, - -0.0014877717799980502, - -0.0009253735974744888, - -0.00015244728767588425, - -0.0005706760168874745, - 0.0008031287420463456, - 0.0002666311245734936, - -0.0006414778638364167, - -0.0012763142437378296, - 0.0019280971527940458, - 0.0015709477665830584, - 0.002112479800926662, - 0.0002927665417095457, - 0.0012613941274041132, - 2.8953279176245414e-05, - 0.0002163104880467424, - -9.634920860143502e-06, - 0.0005092474323463634, - -0.001522392030728911, - 0.0007823580744418865, - 0.0007853940649910969, - -0.0003516817490771846, - -0.001534158001762932, - 0.0007757677344664486, - 3.829104249979957e-05, - 0.0008454174176234744, - 0.0014083553179271738, - -0.0002770894802909225, - 0.0008903489619454017, - -0.00024916844919485045, - -0.0014103286216258992, - 0.0005198043240507232, - 0.0005315762730975564, - 0.000880217684120804, - 0.0010884193849485598, - -0.001467230472780465, - -0.0002739573140116297, - -0.00035417492827115803, - 0.00018876181115181392, - -0.0020381939070593124, - -0.00016905016354514898, - -0.0008025930951161389, - 0.0002728767526497198, - 0.0004791407122928107, - -0.0004649430133933861, - 0.0017378780676155377, - -0.0010310376203248525, - -0.0017777865095276494, - 0.00036914608335901695, - 0.00019595872056319444, - -0.0006291051739577331, - 0.0014065075042974107, - 0.0006125603032584132, - -0.0008017662975304168, - -0.0009110324444558224, - -0.0008492925176916579, - 0.0017037152568377568, - -0.0008964391219258213, - 0.00016070108870437684, - 0.0009781719005479107, - 0.0003628500227465482, - -6.638166636980288e-05, - -0.00108944537060748, - 0.0015687966487523742, - -0.00027366942915733465, - 0.00013568435754192953, - -0.000814938493846736, - -0.001536632583560098, - 0.0009505000332500374, - 0.0003496309088835152, - -0.0001151284419426169, - 0.0009080642453158739, - 0.0011365033243411439, - 0.0006379316210148564, - 0.002393642545932737, - 0.00011142776439769224, - 0.0005780531677954321, - -0.0008858907408472109, - -0.0007541006911148596, - 0.0008385244833476419, - -0.0006087183626857443, - 0.001593472510514978, - -0.0013487166781078223, - -0.0008354280720872926, - -0.00041012410719375885, - 0.0003619113287072999, - -0.001369150844074662, - 0.0005024264234958163, - -0.0008359507467170995, - 0.00028265050940293445, - -0.0008705168209695201, - 0.00023144904881944192, - -0.0014771969275321276, - -0.0012848059163578069, - -0.0003834748775178319, - 0.0011288218827225085, - 0.000771870501998759, - -0.000974746817954589, - -0.0002614400422415277, - -0.001750032779343996, - 0.0007265733903706631, - 0.0015595570563578553, - 0.00020935657422601646, - 0.0003463556094909756, - 0.0016663121931271214, - 0.0006751526297328739, - 0.00032118702019758846, - 0.0005928602585107664, - 0.0020137512841064235, - 0.0003892015830727995, - -0.0004137011109170637, - -0.00032006244533247616, - -0.0019336663868592177, - 0.0010071750074663781, - 0.0009355789057167713, - -2.6453637922158415e-05, - -0.0013145249646509412, - 0.00028971519256880786, - -0.00012339448513946482, - 0.00010890002579121937, - -0.0004899491528714729, - -0.0006791811560789372, - -0.0003173426505060313, - 0.0004192425934119667, - 0.0007488812178221671, - 9.839980122605308e-06, - -0.00016853991478161268, - -0.0014226414191464058, - -0.00036786087460593164, - 0.0015296996753292969, - 0.0005740549455921472, - -0.0005709752733770841, - 0.00025722593937081614, - -0.0016442590340357973, - 0.0004783684540635529, - 0.0003173849225475298, - -0.0006230908881111472, - -0.0004486601374990159, - -0.00045078908563134993, - 0.001173426840750734, - 0.00017385931397010564, - -0.0011858945913997133, - 0.00038086403550019216, - 0.0010359728335621642, - -0.0012502403045321939, - -0.0006589310508533715, - 0.0002243837865310579, - 0.0007776086006743119, - -0.001426519429810563, - 0.00047783021719439425, - -0.0013775283152041864, - 0.0016443823265672392, - -0.0019648451690640967, - 0.0007649191894161946, - -0.0018324635586461008, - 0.0002968092515632492, - 0.0007922926955653667, - -0.0013209250104351756, - -0.00025764329289975013, - 0.0010829925098395754, - 0.00032484510118147903, - 0.000876592489434139, - -0.0018881155975042424, - 0.001024464429173137, - 0.0010352609134045168, - 0.000582293571980844, - -0.0004980386705196973, - 0.0006688697166515269, - 0.00071067981633595, - 0.0015297684930416942, - 0.0028500624040536256, - 0.0016324572106880618, - -0.0011947692976863279, - -0.00027579123607741565, - -0.0011700573756989014, - 0.0006396704606969145, - -0.0014225841977521896, - 3.1262845648401456e-05, - -0.0001518918899035438, - 0.0008662344685436856, - 0.0012405824981236288, - -0.001340788905713784, - -0.0006697389528440285, - -0.0012256764069272473, - 0.00022661477437968763, - -0.0007334348839099476, - 0.00037617279885977307, - 0.0011611581896679233, - -3.711190712947173e-05, - -0.0012300577152468085, - -0.001602539812974489, - -0.0005039473321363119, - 0.002036777448203969, - 0.0013606934821015222, - -0.0009535968166324098, - -0.0005753655028315853, - 0.00014785241652355896, - 6.532689365845346e-05, - -0.0018083243495166132, - 0.0002049520122105015, - 0.0005310537777235337, - -0.0007166997119444433, - -0.00022963360696144863, - 0.0011577199123444211, - -0.001198863992518308, - -5.625308778107079e-05, - 0.00017382782408746763, - -1.662601135153637e-05, - -0.0010883056756355578, - -0.0025706092227455635, - -0.00010065298992105619, - 0.0004444180105185181, - -0.0017488897251078906, - 0.00019136687112542909, - -0.0019452598941475917, - 0.0009520137217587165, - -0.001456679505526382, - 7.038873176476714e-05, - 0.0007419165797440983, - 0.0002322955015251731, - -0.0008473023319302635, - -0.0005423889130233687, - -0.001061218462374725, - 6.934503658956778e-05, - 0.0011329308831260973, - -0.0003628591840198675, - -0.00044820820330055105, - 0.001802354307914952, - -0.00024865985010664174, - 0.0016961650513849641, - 0.0016870124455915768, - -0.0005577427042654316, - -0.0005183648759356831, - 0.0010162220015493277, - 0.0011659923126931418, - -0.0016292770025841403, - -0.00031693263683612753, - 0.0009640302493103153, - 0.00019872073468382503, - 0.00034132094858594676, - -8.025435537974985e-05, - 0.000861598032787511, - 6.359121410902768e-05, - 0.0005254149134516767, - -0.0003548331846325563, - 0.0013207677976448176, - -0.00155672974143273, - -0.001521156831991042, - 0.00018412495274440483, - 0.00011476890661674105, - -0.0001165482935132758, - 3.133345225163991e-05, - -0.0006949036322876056, - -0.00019485850643860151, - -0.0006674011032870338, - 0.0014749788525805455, - -0.0005540621675291889, - 0.00019326768954522946, - -0.0007179508581458386, - -0.00018939253488784184, - 0.00024307012094107154, - 0.00015181890071486442, - -0.0011233870240056779, - 0.00033911100604657444, - 0.0005090287350265855, - 0.0007730230637399151, - 0.0014333886959244273, - 0.0004088554461736817, - 0.0007612808696967785, - -0.0006155656793882077, - -0.0003009157948908619, - -0.0007512553543005915, - -0.0008413620581407833, - 0.0007541044015561399, - 0.0002461140728944589, - -0.0006122142182654429, - 0.001154308587538255, - -0.0012127220724463877, - -0.001088088555849265, - -0.0008390001570542734, - -0.0011000553293955505, - -0.00014003650462086884, - 0.00036765117823609654, - 0.0020704518587099465, - 0.0005406643664980289, - -0.0003733928510357078, - -0.0008883757779070555, - -0.0006289700423084354, - 0.0007298872403729086, - 0.0003864248034544588, - -0.0006586464541991777, - 0.0013473437642778916, - -0.00027885315259040924, - -0.002018548621039416, - 0.001384909547548247, - 0.00040578507608652286, - -0.001354530462666709, - 0.0012513472604702327, - 0.001056888710379289, - -0.000701814665041014, - -0.0003155459329550304, - -0.0023964493499505097, - -0.0005415371192886857, - -0.00029473945463360737, - 0.0005487969960457738, - -0.0009825356243672958, - 0.0005074818813275231, - 0.0013391180313152937, - -0.0019551278245614097, - -0.00041694492756562293, - -0.0010176623847202781, - 0.0016980301516164433, - 0.0012782710676808424, - -0.0017919123655144758, - -0.0007817193686920176, - 0.0014440552623852302, - -0.00019436497804306988, - 0.0009291360868545506, - -0.0007080463254550232, - 0.0003612551231689631, - 0.0004254117689453218, - -0.0027551777114055856, - -0.0010908163041354537, - 0.001443851845598292, - -0.001527597423290753, - -0.0001782809117614939, - 0.000703877457596425, - -0.0017319711775847881, - -6.302808930339479e-05, - -0.0010494912232362637, - -0.001574813902758041, - 8.125511974679707e-05, - -0.002048575187814052, - -0.001264670302206216, - 0.0027085830963085, - 0.0003428038403636121, - 0.00110896449360817, - -0.0011564006905771635, - 0.0012119363287262015, - 0.0004163038600218388, - 0.0004399678242225722, - 0.00047275133724984934, - -8.614494204530001e-05, - 0.002451461865302492, - -0.0009126210660967014, - -0.0009508056945302507, - 0.0004463685543200681, - 0.0001824736283397573, - 0.00021767378540348304, - 3.915963205380529e-05, - -0.0002283211471239302, - 0.0008610714152712176, - 0.001018073952330058, - -6.812155952890626e-05, - -0.0006693286141424676, - -8.973357473661749e-05, - -0.001177594016520772, - 9.166396430729097e-05, - 0.00025609519477545067, - -0.00022628369182960391, - -0.0007111219280199763, - -0.0010464460347779103, - 0.0018081058995989521, - 0.0005419205651023522, - -0.0007754269603658753, - -0.00016198029050177004, - -0.0007931971727846166, - -0.0002085619552547213, - 3.6813245034070116e-05, - 0.0001931475361933464, - 0.00038061120422494695, - 0.001447932437549385, - 0.0006600009205976433, - -0.00036387303167379034, - 0.000906492234093854, - -0.0006033077913853598, - -0.0019359720723728835, - 0.00045231980122347804, - 0.0007840964352239444, - -0.0014113514947951614, - -0.00040844497304239004, - 0.0007878781858692721, - -7.198995784322966e-05, - -0.0020151712411230183, - -0.0003147848442016908, - 0.0001601645655844682, - 0.0011543278713577328, - -0.00040080180009349764, - 0.0007094177096093364, - -0.0004230323698486641, - 0.002617299904179692, - 0.0004394294936563145, - 0.00010630370427490435, - -0.0003974531511473615, - 0.0007826634626139081, - -5.861231369911958e-05, - 0.00017280709714499195, - 0.0006976885841032597, - -0.000896315690664997, - 9.359656165988183e-05, - -0.0007388077597697595, - -0.0006912494182246327, - -0.0004962482385722195, - 0.0013685233025896048, - 2.5610853915704135e-05, - -0.0013438661942063127, - 0.0006560186517041166, - -0.0011161073001387245, - 0.00018664732565078248, - -0.0016198718808310584, - 0.0003315070337847953, - -0.001045454655341231, - -0.0011588678518335454, - 0.00035768627914696175, - 0.0009966377276639587, - 0.00030977751444383455, - 4.630637214051347e-05, - 0.0010452540909216467, - 0.0007250719367156122, - -0.0005952455200512156, - -0.0002806418474033419, - 0.0008595709778568632, - -0.0011125282422603643, - 0.001012659561542045, - 0.00046863715163080014, - -0.00018059658450282422, - -0.0003039522441279611, - 0.001796803922454952, - 0.0011989842008038208, - 0.0011191510673456025, - 0.0013215417133164323, - -0.0009632400066918309, - -0.0002127826168528242, - -0.000702179510879195, - -0.0008217711369770713, - -4.302308568191473e-05, - 0.002100191325661988, - -0.0010448438614768887, - 0.002363095840501933, - 0.00035950064131795345, - 0.0009599591301855114, - -0.000289391005460689, - -0.0006613301709076088, - -0.0012420480152291156, - -0.0009304003595808666, - 0.00032159399620205266, - -0.0008417128030874001, - -0.0002926033188077826, - -0.00013538772837540204, - 0.0007089798124670901, - -0.0018879122528927927, - 0.0004927812177975456, - 0.0003727892321154164, - 0.0014873989922146583, - -0.0001197500807007658, - -0.0010280432846177525, - 0.0004706175569911269, - 0.0006965459110793581, - 0.0010238224951821214, - -2.8729990888315717e-05, - -0.000333081080938718, - 0.0016018703902058856, - 0.001660155127613086, - 0.0006471528747097445, - 0.001165618076147417, - 0.0018939332416813967, - 0.001532212556758808, - 0.0001329932569723505, - 0.001152399718184035, - -0.0020751582207858606, - -0.00017419293576059443, - -0.00013854015400111005, - -0.0019573221468361674, - 0.00041600652910179006, - 8.961369937502463e-05, - -0.0004681320776940685, - 0.0006332794087324736, - -0.0015372656381396634, - -0.001094589460855294, - -0.00016637710660003834, - -0.0003778789090790658, - 0.0013515501902470076, - -0.0016922007454362113, - 0.0009684838226576352, - -0.00013378805549828275, - 0.00034117233052194563, - -0.0005592631823954061, - -9.295182833524892e-05, - -0.0008986826450659008, - 0.0007287349564529254, - -0.0010691375257190282, - -0.0019999954353964486, - -0.00022575830664931293, - -0.000255288095097036, - 0.0015603489013670676, - 0.001364213578932329, - 0.00041380938498613196, - 0.001752693564614695, - 0.0011966653405817878, - -0.0006786664411609745, - -0.002047029808962588, - 0.0004648501570511676, - -0.0015124057405897086, - -0.0002739673171021624, - 0.0005999617349878457, - -0.0024397238208253447, - -0.0011125280411501384, - 0.0014761349977725267, - 0.0015142996349756233, - -0.0009265841353997555, - 0.0004045579547325952, - 0.00015113901232740996, - -0.0019705246289893645, - 0.001000373100957598, - 0.0007436972854924302, - -0.0009837146315436584, - -0.0007071004453367717, - -0.0003867622680904984, - 7.657530786988585e-05, - 0.0004433727997343322, - -9.079291148882644e-05, - 0.0004627834401409007, - 0.0009478766262763546, - 0.00258377762861029, - -0.0013753649630472169, - 0.0006682752064332866, - -0.0004221170870720839, - 0.00025175510708288525, - 0.0009543042429410243, - -0.0007041491060518844, - 0.0012307693022459785, - -0.0012422499743505679, - -0.0008530184525521483, - 9.72451047189493e-05, - -0.0001390034217173857, - -0.00048104012181447714, - 0.0016482360594985178, - 0.0005295103705406325, - 0.00013094270173467573, - -0.0009539486275726986, - 0.0014865050100100036, - 0.0005111380364258881, - 0.0006078004278594967, - 0.0005850862225710898, - -0.0001528535220817575, - -0.0011507670084295928, - 0.0013504118233021016, - 0.0015351538776242775, - 0.00020531355592425405, - 0.0007614330156160973, - -0.00024286150800976132, - -0.0016653979670013131, - -0.00015864244293614869, - -0.0005426302330473944, - 5.9064044631579407e-05, - 0.0015523778533128123, - -0.0011527330456006955, - -0.0010001539474503982, - 0.000724420212412111, - -0.0004837630082385407, - -0.00036344065038509694, - 0.0007718872527551972, - 0.001128957000996732, - -0.0001456649295266359, - 0.0016086184494662023, - -0.0008996102314984345, - -0.0013040989961051169, - 0.0022170798314928145, - -0.0018612679495345736, - 0.0024593869370725424, - -0.0020737029720620742, - 7.788590419284744e-05, - -0.0024386117128866744, - 0.0005211559355315133, - -0.0005229606420129444, - 0.0019852748534696534, - -8.586495358463097e-05, - -0.0006424848469075644, - -0.00026106707254420635, - -0.001193582432638701, - 6.782070917251915e-05, - 0.00047554235542452035, - -0.0014073608373334563, - -0.00022933826567233764, - -8.54395478166468e-05, - -0.00023136876496587601, - 0.0003738763035443888, - 0.0008825320461507265, - 0.0006825762823653178, - 0.0005032107999024213, - 4.9326443481572275e-05, - 0.0008266632114562513, - -0.000978940860757041, - -0.00018265926371648536, - 0.00017571583810081377, - -0.000726447250868847, - -0.00025418781097224006, - -0.0002963071433530984, - -0.0006131586277026258, - -0.0016851670069397912, - -0.00045528595470490805, - -0.0007781811297920229, - -0.0006436495939243147, - 0.0004783227284742935, - 0.001252069115614168, - 0.0003942105487946167, - -0.00036941508555099847, - 0.0006025148702540255, - 0.00031832410376531333, - -0.0015067317837104382, - -0.0010466731167431487, - -0.0008226852550625451, - -0.0002268653005854956, - -0.0007906630288133775, - 0.002079433366420755, - -0.0011376719476259747, - -0.00020955218403079733, - -0.0004479076963242605, - -0.001071773655354379, - -0.0009005346866991613, - 0.000986922921217492, - 0.001159123043739503, - 0.001456921674032751, - -0.0007829667998357393, - -0.001594470500420748, - 0.0006870689174539302, - 0.00055320175407545, - 0.0007642142728202214, - 5.376549404896665e-05, - 0.0013441245212873836, - -0.0017044603716034508, - -0.0014498090662959148, - -0.00027181340847180476, - 0.0018909796824393616, - -0.0012734685635313573, - -0.0015823083004680315, - 0.0018161895334893176, - -0.0021803143572518085, - 0.00048242408707148697, - 8.57036053017308e-06, - -0.0002085326936527721, - -0.0013075165001846124, - -0.00046765002388701325, - 0.001022459995412957, - 0.001380661075354185, - -0.0023140158987776135, - 0.001189317750876463, - -0.0007722038023140344, - 0.0011920251817480465, - 0.000987894261006111, - -0.0008124349412666742, - 0.00022134009723489921, - -0.0011054869937097028, - 0.0009681801049489388, - 0.0006539128808143757, - -0.0006013827857176004, - 0.0003075327002348927, - 0.00024373739886298333, - 0.0008302990679250575, - -0.0003753011272084131, - 0.0005109520323251899, - -0.0013817977711579844, - -0.00018974928911658098, - -0.001183605507971301, - 0.0008074341944103269, - -0.0006826030559427618, - -0.0006263508592719514, - -9.258622033382968e-06, - -0.0006209314191103898, - -0.000186575578496411, - 0.0010804686845015837, - -0.0012086215354043645, - -0.00026248335980286056, - -0.0011135516572875364, - 0.0015548419414046746, - 0.0018782516683678073, - 0.0022240718550316143, - 0.0031565068514551172, - -0.001183113381690507, - -0.000544335667309328, - -0.0010403736815884131, - 0.0010757616766869397, - 0.001838940788284405, - 0.00018814445730822905, - 0.00013308931275764834, - -0.0005074968069464272, - -0.0011734766611657002, - 0.0016224131536529802, - 0.00022731179189549333, - -0.0002676578685703246, - 0.0005794738418400066, - 0.0010573810547626849, - -0.0003794623443386546, - -0.0002245221804859095, - -0.0014002501349662014, - 0.00039899802088371437, - -0.0010685112698148687, - 0.000147053301863462, - 0.0011459493859173144, - -0.0007650413608488012, - 0.0016247222392791454, - -0.00032261016657270103, - 0.0002688734904483511, - -0.0001424215857826061, - -0.0003420492602592397, - -0.00011857987234067023, - 0.0001058503748305937, - -0.0003490618861828058, - -0.0002545247389864329, - -0.0014716626360516184, - -0.0008580920342083349, - -0.0003742543185174886, - -0.0013441260009760063, - 0.0004238063706353973, - 0.0012662848398706274, - -0.0001688963239219816, - 0.002332797535718786, - 0.0009451828179396805, - 8.013162396622268e-05, - -0.00045187352814132856, - -0.0013237622151474429, - -0.0005627440677723121, - -0.000676066678618679, - -0.0007157647566082273, - 0.0013455739994148654, - -0.0006496450271913398, - -0.0010220454865914864, - -0.0003345249756591392, - -0.00032598073010156413, - -0.0009584278061355389, - -0.0006660983443757227, - -0.00012267341552801218, - -0.00155183220757393, - 0.0005575677585302541, - -0.0013088248113695767, - 0.00026942117460407035, - 0.00051170614706913, - -0.0004627630556479523, - 0.003080955339508296, - 0.0006305518237531682, - 5.255861301299282e-05, - 0.00029440313586262605, - -0.00011747009619393397, - 0.0009601918492969042, - 0.00035653759822097203, - -0.00020678524325737035, - 0.0009479009940505297, - 5.164913655104396e-05, - 0.00021551036498827718, - -0.0015736786451705414, - -0.00016287913338867375, - 0.0011516618337436778, - 0.0009662773567151769, - -0.0010373527621515527, - 0.00013570271646885874, - 9.320125019033231e-05, - -0.0004445539804408568, - -3.320883889040561e-06, - -0.0009202371848223119, - 0.0008432461430553284, - -0.00012143106633595341, - 0.0007717402346202905, - 0.0018352153202608277, - 0.0005537473905609891, - -0.0009230921694098213, - 0.0011049175387017984, - -0.0005281354295117535, - 0.0009206061549980967, - -0.0005291083229256553, - 0.00025956671268724475, - -0.0007655848237809394, - -0.00023825102697096654, - -0.0009035835907770976, - -0.00013716830779151432, - -0.0005240137202249759, - -0.00021329493235026242, - 0.0018499252487215031, - -0.00030744490485622346, - 0.0010217139307060516, - -0.00017451278650555666, - -0.0002913084336596014, - 0.00027953546089362846, - -0.001030612905533342, - 0.0008085156167829031, - -0.0009138833924032083, - 0.0011228063569840385, - -0.0006728360035748534, - -0.0014329803829520379, - 8.46780302693856e-05, - -0.0012679494449958988, - -0.000509734699394406, - 0.0004979073601621889, - 0.0003237360763997573, - 0.0001677960044384647, - -0.0011801767499055905, - -0.0008802083130489896, - -0.00018350002692807066, - -6.22607831232506e-06, - -0.0007108837586555458, - -0.0007156719619109391, - -0.0017033477235185457, - 0.0005929393259397905, - 0.0011002715883978557, - -2.7070194972690123e-05, - -0.0007926395911593567, - 0.0003831877604446749, - -0.0010282870858502689, - -0.0001195559618167497, - 0.0007591493978948484, - 0.0005697816954507284, - 0.0002754913631332623, - -0.0027777111145190466, - -0.00043187354964714864, - 0.001985210171421646, - 0.0007185145324203643, - 0.001670540368259076, - 0.0004506170281232193, - 0.0002965715158643806, - -0.0008111251351336212, - 0.00033878976707213035, - 0.001262192669711168, - -0.0007601678593962906, - 0.0010214689507571965, - -0.0005423141093926622, - 0.000581504066715571, - 0.0005032185817370482, - -0.0004136236975598597, - 7.124350955889892e-05, - 0.0007593535256108686, - -0.0010583787609269766, - 0.0003022574679926746, - 0.0009206562351031318, - -6.535694473973532e-05, - -0.001558334799133563, - -0.0014233740091728888, - 0.001461812350965739, - -0.00022814603102701086, - 0.00042684972147299775, - -0.0002453308205314363, - -0.00034688779819956367, - 0.0007170802359644606, - -0.0003789683481162647, - 0.0004698804251982203, - 0.0008638138292805104, - 0.0003485969352622669, - -0.0003297888696724047, - -0.00037160337973840367, - -9.946195272870229e-05, - 0.002060195372199494, - -0.0006070512516272921, - -0.0012372146680853023, - 6.770005674804357e-05, - 0.002608351444917248, - -0.0005309371375061322, - 0.0005761838496097993, - 0.00032175324417468794, - 0.002802344244896149, - -0.0011742723188937043, - -0.0019769423095364435, - 0.0004471099443485736, - 0.00010571914290857492, - 0.0019903998878682072, - -0.0010053132471082688, - -0.002864162640812851, - 0.000609184084168474, - -0.0007337258248123324, - 0.00030122079125624146, - -0.0020480567253461828, - 0.0011792868896510643, - 0.0010391560981358233, - 0.001359754154752723, - -0.0001182329516691866, - -0.001079803510397864, - -0.0015544089399187099, - -0.00030198664613400163, - -0.0022755011194045644, - -0.0015535312596843094, - -0.0009718299776438958, - -0.00012045922744787513, - -0.0012472337731358556, - -0.0010896305659641257, - -0.00046649947201468623, - -4.1682925322373085e-05, - -0.0007211805585872805, - -0.0006406932051308384, - 0.0009988203445831015, - -0.00042764835007217793, - -0.0012928035986501363, - 0.0004687638519027501, - -0.0002266459416114011, - 0.00029206834095334405, - 0.00019899428065742184, - -0.0005753004373494108, - -0.0006987357048746107, - -0.0034692730077841667, - 0.00030697272262116985, - 0.0006251690162397335, - -0.0007784141282825941, - 0.0004195744197333686, - -0.00011719126432659384, - -0.0014161616417048058, - -0.0008074354654179327, - -0.0008783066560004434, - -0.0005004684269458661, - 0.001235689278435729, - 4.391704416259733e-05, - 0.002220906032178774, - -0.00035719472115491754, - -0.0012771766520437231, - -0.0006602258621008399, - 0.0006091317896811618, - 0.00043514918077230524, - 0.0019517273136516345, - 0.0014670756861295024, - 0.0008344699333116092, - -0.0002657134417767466, - -0.0023335110583119793, - -0.0013163778153809454, - -0.0010444418456525312, - -0.0010726224907823543, - 0.00026511568887380106, - -0.0005107025657778317, - -0.0004005029525549348, - 0.0001099196211472485, - -0.002331819494313685, - 0.0003256410936996321, - -0.0007139839996178086, - 0.000648147271965264, - -0.00034413200626611277, - -0.0006604362107016407, - 0.00022600727997866573, - -0.0015172936990234375, - -0.00030107508562141115, - -0.0007847989095364538, - -0.0002336018315060915, - 0.0006166421720157154, - 9.468353018521304e-05, - -0.0007233794958996789, - 0.001880113451483197, - -0.002063128225196618, - -0.0011770546720425911, - -0.0016138136579460082, - 0.00010200693065554252, - -0.0012961415811450635, - 0.001336124884859521, - -0.0006220679036800858, - 2.5680702624603734e-05, - 0.0009873181188727103, - 0.0006996490712181962, - 4.983499150118195e-05, - -0.00017986537002832818, - -0.0004950443464237102, - 0.0016931654205746833, - -0.0005308193096023618, - -0.0013632306644051078, - -0.0001660959598918989, - -0.0009597349024640581, - -0.00041168369322948476, - -0.0005621760279119143, - -0.0012932446412184848, - -9.194888321917136e-05, - -0.00037756266819120545, - -0.0009653742377443291, - -4.6697193748493496e-05, - -0.0008707144868391217, - 0.0001889610224317508, - -0.0010897556290158095, - 0.0021260193534135786, - 0.0005089263905169784, - 0.0006592261195676585, - -0.0006424789497865379, - 0.0011361965002610822, - 0.00047490223251035095, - -0.000976653446061763, - -0.001746809907474428, - 0.0001803946580580679, - 0.00126243618696519, - -0.00032316656485398536, - -3.572528832808377e-05, - -0.002104193845245404, - -0.0002977284357668375, - 0.0013001628557653528, - 0.00021136754853135585, - 0.0023913660332199214, - 0.0009119840716275228, - 0.0006517780717412527, - 0.0005628608963902324, - 0.00019982873572453177, - -0.0015315773453236437, - 0.000878672802232242, - 0.0004447791436563503, - -0.00038173046306797485, - 0.00036386893743969205, - 0.0016336194116616186, - 0.0006557197501895471, - 6.830331707647158e-05, - -0.0014084098470089706, - -0.000572288517582246, - -0.0017409650683158685, - 0.0005233228238131777, - 0.0008007667867791893, - -0.0008712098797778491, - 0.0007344606219315424, - 0.001408220458186559, - 0.001023775602349374, - -0.001201142125835015, - -0.0010519543423458952, - -0.0004121614390430572, - -0.0010112745977988718, - -0.00046365178508041424, - -0.0009115832066351721, - 0.000657704053250026, - 0.0010357615321403503, - 0.00037972993921673556, - -0.000410258253137175, - 0.0006470887230564782, - 0.0011761247594136103, - -0.003424219295664522, - -0.0004889337524517556, - 0.001106705995790295, - 0.0007559081655517533, - -0.0006550420688263116, - 0.0003225673036814578, - 0.0015417448843029352, - -0.00034509326165891755, - 0.0016211121622767388, - 3.766436333303854e-05, - -3.124013828198199e-05, - 0.001067348818029985, - 3.578596336685506e-06, - 0.0005555074614820373, - 0.001450746102309227, - -0.0007396788616690379, - -0.0008897922031082732, - 0.002688973897478119, - -0.0004631112267165844, - -0.0006796253672268016, - -0.0013140755244596116, - 0.00021877573254397846, - 0.0009937394561225262, - -0.0012899992407447978, - -0.0002871274481063209, - 0.00017417697846407938, - -9.739571089665385e-05, - -0.0022727728118505748, - -0.0007288248421349671, - -0.0012636900326079147, - 8.722152959657765e-05, - -3.8739786893369444e-05, - 0.0008894104252434351, - 0.00042332384139670315, - -0.0006198488154987104, - -0.00039846115269295633, - -0.0009885738984275368, - 0.00013489184889357804, - -0.0004142710349633778, - 0.0004055039590159102, - -0.0005199750218848322, - 0.0007838667468765293, - -0.0005132842565453143, - -8.316346875410097e-05, - 0.0013420080864496142, - -0.0005031396229072068, - 0.0009061291443036533, - -9.654512418230382e-05, - -0.0008646344216846185, - -0.0006210629692049451, - -0.00014046712984914223, - 0.0008557345344040985, - -0.00015734659326429283, - 0.00027182383333330614, - 0.0011354924445927236, - -7.054488014462387e-05, - 0.00013501791798158254, - -0.00035905919746354053, - -0.0008599113386225905, - 0.0012089439742939316, - 0.00011971931738091358, - 0.0013918558614402544, - 0.0006104055709859901, - 0.000803598024969401, - -0.0005108285184772382, - -0.001679856836063439, - -0.00042377076492844303, - 0.0007453185198676538, - -0.0003410322760572163, - -0.0014337272302809055, - -0.0007388794785772293, - -0.0005319896929011458, - 0.00030414337931318003, - 0.00030592548788574593, - -0.0001657230546983293, - -0.0012380297452205726, - 5.265871304660524e-05, - -0.00043792249868181116, - -0.000645498221652276, - 0.0005827224537247542, - -0.0006445820153918616, - 0.0003098943335212848, - 0.0006536451217670151, - -0.0001891412857169579, - 0.000728875246244769, - 0.0009175279221132473, - 0.0016904558797875536, - 0.0004791129267598225, - 0.001674270624749641, - -0.0017480790774720646, - -0.0016804064257480548, - -0.000455178421218037, - 0.0007207024543280489, - 0.00028343746089278996, - -0.0010662517192957404, - -0.00015062770837972548, - -0.0006782604315337522, - -0.0015799722660680097, - -0.0015827214337972594, - 0.00012618741620403217, - 0.00019940707314612698, - -0.0008216592505899698, - 0.0005882730943077643, - -0.0012147202245430455, - -0.0009879425711637887, - -0.0002445164769030832, - 0.000873745226854559, - -0.0013574281421159205, - 0.0007246434360054919, - -0.00023996976129911682, - -0.0006333575832866417, - -0.00051982556756536, - 0.0002804455305600656, - -0.0002894678001380708, - -0.0006446602298442408, - -0.0009986559528179907, - -0.0002927077968917345, - -0.0007820853307127719, - -0.00024453398020265934, - -0.00034626810637039567, - -0.0004091936107483485, - -0.00042845723851188996, - 0.000541245140109995, - 0.0004754827754367739, - 0.0012660545033800126, - -0.0006710108488288963, - -0.0003595747296855654, - -0.0005007750914624058, - 0.0007441627973388086, - -0.0006179056939899734, - 0.0002693901257705288, - 0.0004997279539502166, - 0.001071238810759061, - 0.0007660940708769345, - -1.8835996325920188e-06, - 3.2345559794118954e-05, - -0.0005842344921063585, - -0.00021698673523280794, - 0.0002473469420383359, - -0.0004184861596124886, - 0.0011351664565308788, - 1.96661563827779e-05, - -0.0018931052815205718, - 0.0012987062007067214, - -0.0005102413931990617, - 2.0144414019072243e-06, - -0.0007769496289455365, - 0.0011743506117766278, - -0.0008126064386111251, - 0.0006536730265362789, - 0.0011354501703560616, - -0.00023344548304108205, - 0.0003777374495660597, - 0.0031588444667913977, - 0.0018337162931296538, - -0.000972227257711783, - -0.001148706780809101, - -0.00031147614745973223, - -0.0010423909383941654, - 0.00011538031252625418, - -0.00036346606981099564, - 0.001146838933590245, - -0.0002829802714776374, - -0.000693865917584732, - 0.0012878295029957432, - -0.0030949160075525554, - -0.001097714923003788, - -0.001504749783595392, - -0.0001798457793551102, - -1.5351720711619523e-05, - 0.0005510197624010406, - 0.00030383103395813027, - -0.0012212440374171937, - -0.0014265307766954686, - -0.0013237895043297638, - 0.0012447342625592818, - 0.0017378763243150446, - -0.0008981545619859277, - 0.0021957450810403457, - -0.0001549686868879726, - -0.0010319125207945653, - -0.0004066950248048364, - 0.0014955234590860618, - 0.00016854535413197554, - -0.00020695489379563415, - 0.0007392231282312651, - 0.000769920381726385, - 0.002471105942562716, - -0.00012822655258183077, - -0.00022215675475327154, - -0.00036601604645808807, - -0.0001732737849465924, - -0.0007620019468430265, - -0.0009944787208302002, - 0.00048233527292673137, - -0.00029735466365488566, - -0.0014352300785371998, - 0.0005141555480328656, - -0.0010517829423798328, - -0.0008957303988823225, - -0.001624697152105041, - 0.00052180537309285, - -0.0009414772564394274, - -0.0006722128278665128, - 0.0007764394962161059, - -2.7565385003651774e-05, - -0.0010730793149797916, - 0.0017006690909062165, - 2.7494641244978433e-05, - -0.00035567988998815183, - 0.000751798736424647, - -0.0010951922878401777, - 0.0007123045660396841, - 2.4712747711410565e-05, - -0.0014637873925980609, - -0.0001571050774361707, - -0.0016119016172263672, - -0.0005733379050241759, - 0.0009615924495816305, - 5.31209374029018e-05, - 0.0008374361365073411, - 0.00028452333820044574, - 0.000693076968537557, - -0.0007446954603803065, - -0.0001172204981713922, - -0.0008311734628633209, - 0.00036768765310675515, - -0.000646857839730778, - -0.000613979811642949, - 0.0011438499329748998, - -0.0016122818261782561, - -0.0009437833631765623, - 0.000920894101357385, - 0.0002421229674028909, - -0.0002724290604621721, - 0.0006233408496247436, - -0.0002983813202844854, - -0.00048615966426590585, - -0.0004168469843142726, - 8.597351009412595e-05, - 0.00020722534332272966, - -0.0014606481076358578, - -0.0003841405305784256, - -0.0005611798367683908, - -0.0007479375934353052, - -0.0001369379488085168, - 7.656810667384587e-05 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgb(248, 156, 116)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 2", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 7.656810667384587e-05, - 0.0001256778022451755, - 0.0006803383513394059, - 0.0005913748726034556, - -0.00046198254944434375, - 0.0012410920223214878, - -0.00040138166517459853, - -0.0002800044166297697, - -0.0004106074250724932, - -0.0016568538165286453, - -0.001575294446057357, - 8.784789930013175e-05, - -0.001021966993939227, - -0.0011198557417276065, - -0.0004899717050034798, - -0.00019820659639728616, - 0.0006230428769635692, - -0.0006312910478055595, - 0.0019445098312711275, - -7.339481524944843e-05, - 0.0009022775825106951, - 0.0005165427235979671, - -0.0003866495086094546, - -0.0005167627928576664, - 0.00013126327335612295, - -0.00011229893031209793, - 0.0010297976104828453, - 0.0005217088817497572, - -0.0004106299826263494, - 0.00024264324076145395, - -0.0002545909615866985, - 0.0014519905837697869, - -0.0008574807674147787, - 4.142391672583503e-05, - -7.693694681016428e-05, - 0.001930290513228398, - -0.0010514723901097417, - 0.0012093500123567852, - 0.0007050291526787955, - -0.00023193918713375458, - -0.001298117239233432, - 0.0011997566277297522, - -0.0016381090925030775, - -0.0004574536787650868, - -9.523630682031805e-05, - -0.0003819370809435414, - 0.0019598043150892306, - -0.0012574415071627137, - -0.0005232501062589213, - -0.0008985188367688316, - 0.0006296303945132072, - 0.0003313602426791109, - -0.000712179299388236, - 0.0022772999520417375, - -2.8714496974101e-05, - -0.0006203607578209316, - 0.0021790190421467604, - 0.0002515466351341073, - 0.0017802315076032333, - -0.0004335458075040455, - -0.001509239868055148, - 0.0007989291109843954, - 0.0010832258803820834, - 0.0008299548457119785, - 0.00048366295097322827, - -0.0004127819245310625, - 0.0002044777874548027, - 0.0006593402633857175, - -6.339931410250175e-05, - -0.0003419831832560999, - 0.0001822028826325183, - -0.0014586056722016216, - 7.311320300336662e-05, - 0.0003933645668108879, - 7.333316629242988e-05, - 0.0006415136661925926, - -0.00043693353565740935, - 0.002169723919694998, - -0.00048411041561265285, - -0.0010434666490311195, - -0.0006417965592222072, - 0.000917363654582779, - 0.0015603730916762984, - 0.00025381226452547294, - -0.001444162731765251, - -0.0001424324083090046, - 0.002164392889446073, - 0.0005331385048497212, - -0.0006791239565219688, - 0.0003482804575702447, - 0.0004898560480680788, - -0.0016670309407238433, - -0.00023420350003576515, - -0.00022511593831405893, - 0.0002911285330302844, - -9.728054697610982e-06, - -0.0012367010289177885, - 0.0010065752338042511, - 0.0012921996607867287, - 0.0004630303489263868, - 0.0008360674053848421, - -2.4464388383966096e-05, - 0.0007521987517516874, - 9.929576869310043e-05, - 0.0002231912338237039, - -0.0004939322200450301, - 0.0006492609832046414, - -0.0010933070829457097, - 0.00044328764585801393, - -0.0019024809358814743, - -0.0006110359806541519, - -0.0009663675358201398, - -0.0014433489277816411, - 0.0007731577446759787, - 0.0007285816021498828, - -0.0003859034841851037, - 0.00038100303379425476, - -0.0005062521720210321, - -0.0011819526446204807, - -0.0008651084442082644, - -0.0011860042973092018, - 0.0008971149853369809, - 0.00091511732075445, - 0.0016146242319610422, - -0.0003414335139811339, - -0.0015902351413743523, - -0.002090656237246091, - 0.0025966765067673117, - -0.0007633201122500201, - 0.0017964433923448205, - -0.0005880579388441268, - 0.00021295755401424128, - 5.950350469623563e-06, - -0.0026121912367479483, - -0.00041275738944371955, - -4.303541233569487e-05, - -0.0003796279763034086, - 0.00033940182475835756, - 0.0002405161717219509, - -0.00047779148096005426, - 0.0007618692567594534, - -0.0024004280644209066, - 8.409445000637571e-05, - 0.0014546531384872516, - 0.001279913401986711, - -0.0025306762429573243, - -0.0001652962749854122, - -0.0012396498783174628, - -0.0008900953505076999, - 0.0014699298167008198, - 0.00041543477452937885, - 0.0017279951616540178, - 0.0009387473750906241, - -0.0007308345090737305, - -0.0008775635686911344, - 0.0013656745533087052, - 0.0006769974920156209, - -0.00022178022371391185, - 0.0009379351352966593, - 0.0005754718774719712, - 0.0018449481110084838, - -0.002495744620302533, - 0.0002832495805457348, - -0.000911212078544719, - -0.00027859826186327983, - 0.0007858469485473108, - 0.002562329056475527, - 0.0005536343773912894, - -4.979122779059024e-05, - -0.0005123210955463594, - 0.0002909388123919796, - 0.0009712318245413129, - 0.0011245948905022696, - 0.0002693657959982866, - 0.0004220197797298344, - 0.00023061917939314546, - 0.0002646287748336065, - -0.0002597588590502653, - 0.0009642260885560972, - 0.0006662879055731158, - -0.00018814743906531717, - 0.0012185343930607379, - 5.1348515880526696e-05, - 0.00035661334004022464, - 0.0002597941131424154, - 0.0014988490846613647, - 0.00018457602231675466, - -0.0024881659101287854, - 0.0010775592174517977, - -2.926453420716347e-05, - -0.0022653591750177817, - -0.0024384204921957604, - 0.00039694209646267645, - -0.0004066038774147856, - -0.0008058468424243844, - -0.0005106168570948902, - 0.0013057416619176223, - 0.0002491886356428618, - 0.00017485923534036406, - -0.00015831161604490932, - 0.0017895801512216123, - -0.00048821750753410187, - -0.001372925227030343, - 6.16798747403428e-05, - 0.0007273075467913353, - 0.0005256027386211588, - 0.0005336295442531012, - 0.0017069790730582458, - 0.0002004222974359483, - -0.001000884434248139, - 0.0022413590638423603, - 0.00013775927765809166, - -0.0008896690754834542, - -0.00047862230609269806, - -0.00014079599922373184, - -7.986194385217831e-05, - 8.597201457294862e-05, - 0.001155624247421614, - 0.0005742490253098929, - 0.0007007874558009597, - 0.00021897481469138736, - -0.0006865264641133674, - 0.0017598979011100113, - 0.0009188943761541144, - 0.0009128316037874819, - 0.0020195297471148456, - 0.0005990614171478886, - -0.001092958281347565, - 0.0002610174053430764, - 0.00030129335276857504, - -0.001156035008833989, - 0.0008161984109847374, - -0.0012663327722824231, - 0.0008124856969300245, - 0.0006236131752623091, - -0.0003637674682128274, - -0.0023162752175557564, - 0.000277008578838728, - -0.0002255277656063046, - -0.0019458005302910816, - -4.8328519458773246e-05, - 0.000497277029697064, - 0.00031891609930624615, - 0.0006503769135425756, - 0.0010910698808943705, - 0.0021664846411657, - 6.043496163095584e-05, - -0.00041625892971193214, - 0.0006461144990224931, - -0.0012222272766978285, - 0.0020555733714601007, - -0.0005141025051228614, - -0.00024613728136080245, - -0.0014003512257620904, - 0.00017287680330570603, - -0.00046912819885271026, - -4.914163039153718e-05, - -0.0019851412623615064, - 0.003015022651360246, - 0.00030495269277895393, - -0.000788672472246912, - -0.0015920723429650777, - -0.001682611304676194, - -0.0022241498207114835, - 0.0003098032283633992, - 0.0006694751711510025, - -0.00010009338192901343, - -0.0009104225746528711, - 0.001721486002883049, - -0.0001246647221755968, - 0.0005245299374259847, - -0.0010346925491329694, - 0.0011678694962924236, - -0.0010790005702792556, - 0.00019482555355903951, - -0.0007371293863957622, - 0.0014136253482511876, - 0.0009508284056432728, - 0.00016922568616981667, - 0.001961784546556514, - -0.00039760782151291603, - -5.79313972587264e-05, - 0.000141142631336062, - 0.00010240686203960431, - 0.00186382668057399, - -0.000782192103676854, - -0.001327746704691137, - -0.0004930588592163732, - -0.0009279487690603255, - 0.00027707273978354183, - -0.0009003757501213505, - 0.0005606940164143682, - 0.0015153573704626288, - -0.0005261242108606947, - 0.0011673561590171081, - 0.00047286247859146767, - 0.0006999532538937268, - -0.00014304499222049082, - 0.00024838122622449795, - -0.0016064420583193904, - -0.0007034912817409548, - 0.0010446359935622723, - 0.0008915366304369096, - -0.00046720874871117237, - 0.0015530928065914705, - -0.0006344795432080147, - 0.0005423277625345727, - 0.0001901017281567245, - -0.0007933464678237682, - -0.000889711410170383, - -0.00017709209690889956, - 0.0011756242912645955, - 0.001328869345415833, - -0.000331314588091063, - -0.000522610145379927, - 8.268232544945186e-06, - 0.0023119921722877814, - 0.0010009935241784998, - 0.0013453570478506947, - 0.0012923744245959036, - -0.0003293477848174495, - 0.00031251024948496145, - -0.0007648390221323798, - -0.0011288096027664784, - -0.0017379789521631127, - 0.00039042558742397976, - 0.0003891332441938658, - -1.6909608973275856e-05, - 0.0002931386950514126, - 0.0025838488985807616, - 0.000138023220235142, - 9.174168507933326e-07, - 0.0010396858522528842, - -0.0003287024990613856, - 0.00034997926552376106, - 0.0004196220201370197, - -0.0018569014743020187, - 0.0004974543011606329, - 0.0005593814797620915, - 0.0009393119495851943, - -0.0004987278654006886, - 0.0022173436423840657, - 0.0002832411735820875, - -0.00036842863783054225, - -0.0009157995036543642, - 6.534964496955823e-05, - -0.00010073484533912367, - -0.0010398958864292396, - 0.0002773683796138288, - -0.0001910611479985523, - 8.74175958719328e-05, - -0.0009362435542332598, - 0.0009606977680647401, - 0.00030517946056540763, - 0.00157129556000269, - 0.0005894564853408592, - 0.0005312287747137559, - -0.0010446449730483263, - -0.00013255936994009766, - -0.0004649476418798705, - -0.0007769287559563996, - -0.0016535770539318566, - -0.0004796528739675703, - 0.0004666426708757414, - 0.0003861706701556473, - 0.0004169082456481669, - 0.0017745173139152334, - 0.0006104007010054861, - 0.0005913540071494191, - 0.0007750192821092731, - -0.0003136712427539865, - -0.0013270803496100655, - 0.0003202700655071269, - 0.0008098401941082809, - -0.0006989981320712459, - 0.00038913593367489893, - 0.000845818406851873, - -9.542848067790744e-05, - 0.0013879125562539264, - -0.0008272544930317306, - 0.0006168671032644434, - -0.0008166866151760641, - 0.0011319201905270685, - 0.0005629132827121433, - 0.000703204080880013, - 0.0010963790923262738, - -0.0004735344615684247, - -0.0011605136622136654, - 0.00046075923474681317, - -0.0012032685837064536, - 0.0009445506842183625, - 0.00033993566119163473, - -0.0007824086252408686, - 0.0012413216723488583, - -0.0009395094395431245, - -0.00018660508364277373, - -0.0002850592640570084, - -0.000728203456889436, - -0.0004020646666655352, - 0.001040649279828233, - 0.0015776083902998232, - 0.0003247876525104651, - 0.0005162552348196342, - -0.0014753464323529974, - 0.0008167924494942172, - 0.0002514859946837411, - 0.000461088602395402, - -0.0007282489454601424, - -0.0008091480405252856, - -0.0021072462548547242, - 0.001254862927192882, - 2.4353936970571817e-05, - 0.0008805206469146094, - 0.00030407130285250766, - -0.00025851382569795883, - -0.0008098050196918451, - -0.00045060702403185214, - -0.0012215153865736913, - -0.000510432340385013, - 0.0011743585982175154, - 0.0013607741535355496, - 0.00019559728444057381, - -0.00039218134282061696, - 0.0009194346348626505, - -0.0009608628134851246, - 0.0011151100304853192, - 0.0010584264142533839, - 7.951160546544137e-05, - -0.00017219615071221775, - 0.0010642757544033108, - 0.001363423026633646, - -0.0005373750536942919, - -2.5122683896552736e-05, - -3.0194235636172747e-05, - -0.0003877772963214069, - 0.0017447528381280212, - 0.0013203198769163647, - -0.0010500536207065409, - -0.001974839892724997, - -0.0006635927728094529, - -0.0013697723326030827, - -0.00036819431521866955, - -0.00022885108265983012, - -0.0012124276528123143, - 0.0018741395993203379, - -0.00018429501379276476, - -0.0012061807101650397, - -0.0007114303885674934, - -0.0001704281639173684, - -0.0002902647480552818, - -0.0021316579653950477, - 0.000840724040309528, - -0.002270283285063283, - 0.00014579352740310333, - -4.2617012540697825e-05, - 0.0009994480867402031, - -0.0013028464197692403, - 0.0003476503997589411, - -5.4253320728446165e-05, - -2.753708998585495e-05, - 0.0016047490373884295, - -0.0002697242636728243, - -0.0007666917396651779, - -0.00047582373249751946, - 0.00023884397870724012, - 0.0009308469270305214, - 0.0008123458074812748, - -0.0009328950563823488, - -0.0011177703499250307, - 0.00037143009613781083, - -0.00020726367059795643, - -0.002303393615214204, - -0.002793721756849554, - -2.5728449402468657e-05, - 0.0011468744660400928, - -0.001571695501781529, - 0.00020145568389266203, - -0.002149464823230124, - 0.0006239363550951761, - -0.0005867817236052229, - -0.0008612183249308038, - -0.0031817658641994906, - -0.0004407992339830858, - 0.00014339844705015691, - 0.00017267518793793272, - -0.0014912839126622866, - 0.0010009928456718481, - 0.00017022772330617692, - -3.6247996846902e-05, - 4.237990065729516e-05, - -0.0013477832162152358, - 0.0010344149590962176, - -0.0004369057018921014, - 0.0006383823089301994, - -4.403657223125046e-05, - -0.0009344663533514067, - -0.0007010930300830766, - -0.0017570004109139887, - 0.000277845759728913, - 0.00043327178141536616, - -0.0010580386754333955, - 0.0012430936163134636, - -0.0003675026486269816, - -0.0001511328050503158, - 0.0018941164767350646, - 0.001266271677166076, - -0.0010592884443769207, - -0.00011452560268288247, - 0.0007146810343947118, - 1.5756075773200387e-05, - -0.0004745457694690946, - -0.0003522081954843037, - 0.0006675934501205533, - -0.0010433595785623103, - -0.0003834979385608979, - -0.002501801860598904, - -0.0018136865475181926, - 0.0009300804530495134, - -0.0005297465294748548, - 0.0018508840844826148, - 0.0008380550931781602, - -5.501046629709679e-06, - -0.00020345070015758757, - 0.0019934048672262416, - 0.0003925708268564418, - -0.0017617039401661195, - -0.0003819298469448349, - 0.0016469739173229148, - -0.0002852405698555429, - 0.00031787198339223175, - -0.002803203054383214, - 0.000595845301372, - 0.00015929045828726724, - -0.0009499384605075085, - 0.00013877363328001506, - -3.6797718475834335e-05, - -0.0005314015111995258, - -0.0018909207661100991, - 0.0011014078077046033, - 0.0005922003260568318, - -0.00045403529533698565, - 0.00014247653245925247, - 0.0008570031246436952, - 0.0006470883643467999, - 0.00021100605180033306, - -0.00025459353458318073, - 0.0011466348457035973, - -0.0003796967233145412, - -0.001089158038852652, - -0.0002341372257283146, - 0.00012156407306893055, - -0.00014126183503740752, - 0.0014084609923506817, - 0.001053930469377752, - -0.0008035612890979618, - 0.00040566623715225714, - -0.0009450281806155571, - -0.001155656202499346, - 0.0016704528152892452, - -0.000749954306779651, - 0.0001246089277976504, - 0.0006259169758657284, - -0.00029483216122053554, - 0.00020291000484258976, - 0.0008188085134657201, - -0.0006860392486118361, - -0.00036482522563124545, - -0.00027150492510474367, - -0.001283420540156794, - 6.239095523909898e-05, - -0.0019288652746448768, - -8.94958188347466e-05, - 0.0008485096956863327, - 0.0012221465407332172, - 0.0007202533278187952, - 0.0002100253294332832, - 0.00032556592270938556, - 0.0015641394680157071, - -0.000295167170202217, - -0.0005746162733151228, - -0.0005267537754201669, - 0.0010486295606297782, - -0.0003563399286307688, - -0.0005150274012289881, - 0.001460478869421561, - -0.00010706928115644342, - -0.001610593853087558, - 0.00012731286283294027, - 0.0009197967181578887, - -7.716137494461068e-05, - 3.2978023688373916e-05, - 0.00052580595995742, - 6.713737647407029e-06, - 1.985824372119015e-05, - -5.324105312324413e-05, - -0.0003004230410000078, - -0.0016708783410769497, - 9.485231676994294e-05, - -0.0008400710015779521, - -0.00013190405896179008, - -0.0011528536352223338, - -0.0016908033781673276, - 0.0005996773116794083, - 0.0006888858993406239, - 0.0004394505031924274, - -0.0019564399847518967, - -0.0014281397512002293, - -0.00022150089909260925, - -0.0012110803924512737, - 5.04310846367052e-05, - 0.0009015187757675187, - -0.000943932152890365, - 0.0003551971721559812, - -0.001419783753010987, - 0.0007653143809036742, - -6.0266383168315045e-05, - -9.836482918994821e-05, - 0.0010795982849539267, - 0.00019854117429511469, - 0.001789751916052169, - -0.0007594400827912356, - 0.000773563937524272, - 0.0008961239562376637, - -0.0004602401357350056, - -0.0010122124628173814, - -0.0005113088200393357, - 0.0006065362689693768, - -0.00022444950823412605, - 0.000752998145266807, - 0.001229427322759726, - -0.00022665862521176704, - 0.0005984100703677375, - -0.0007472576395503315, - -0.000881498808480848, - -0.00038328424587436005, - -0.00035184486797430596, - 0.0017862753837829108, - 0.0004567545293852018, - 0.0002619756186426928, - 0.0006495138868335868, - 0.0002445922905642797, - 0.0003787820390551562, - -0.001008786479454329, - 0.00034096953550406486, - -0.0007840650142016289, - 0.00021494762590105966, - 0.0003641293469847391, - -0.0008041390306453059, - -0.00042868523651311594, - -0.0005303941584919906, - -0.00028581501303200573, - 0.0014960742763090234, - 0.0005367550359833152, - 0.0010417299070879522, - -0.0011044544007497148, - -0.0006065346924526825, - 0.00016587905807490422, - -0.0006210309057767814, - 0.000597319547961875, - 0.00013471708428275928, - 0.0017206276058143294, - -0.0011510461111533565, - -0.0002485366535156265, - 0.00020983621810322895, - -0.0005423729614942041, - -0.002158828291913015, - 0.00044002101156295005, - -0.00035977119675304457, - 0.001904887448916243, - 0.0008296219098086778, - -0.001707066574412792, - -0.0014904466181882457, - -0.0006014675358503941, - -0.00010179176065810389, - -0.00030874887170816205, - -0.0008639215149397838, - -0.002244468309832077, - 0.0019349041284327756, - 0.001191479887085305, - -0.0008683429714424665, - 0.00031075384003832057, - 0.00017812236124244396, - 0.0007791059842557649, - 0.0007245244368670253, - 0.0017605533717406328, - -0.0008096801079058605, - -0.0006992789241611811, - -0.00024535911953812246, - 2.633323516875053e-06, - 0.0003812623870828303, - 0.0005863003736609306, - -0.0009867110269935987, - -0.0007648865384620152, - 0.0010780352020335418, - -0.0002789455866623805, - -0.0004914221293336151, - -0.0007587016180505357, - 0.00035613213827447634, - 0.0014964679278022634, - 0.0008231185025089593, - -0.0005939936458498039, - 0.0006272094390813142, - -0.000398160950235131, - -0.00012254117866166892, - 0.00014987917150937786, - -0.0010290723853311997, - -0.0020408741209716657, - 0.00046823692148837597, - 0.0002721883294276684, - -0.0008070948042842753, - -0.0007176311861785703, - 0.0013166170970188816, - -0.0009952787444930877, - 0.0008223542288445742, - -0.001089325812991741, - 0.0007043280008889586, - 0.0005715792761183837, - 0.0009096120756983156, - 0.0005336907277170804, - 0.00036727992844107313, - -0.0002799026694320279, - -0.0007172428722121905, - -0.0007345327674635754, - 0.00048522152651575307, - 0.00010195684599415958, - -0.0007111014461936245, - 0.0013705466901287853, - -0.0010291196205530948, - 0.0015104060154639998, - -7.28223225644797e-05, - -0.002213914845081422, - 0.00191118314223775, - 7.431065095257667e-05, - 0.000392653677461934, - 0.0016864957798449092, - 0.0018111238290088752, - -0.0011266727596784636, - 0.0016348506242050776, - -0.0008502771507828571, - 6.915849312201183e-05, - -0.000776488604783856, - -0.0008389171491044452, - -0.00018767712166534772, - 3.375526632793528e-05, - -0.001963722906934987, - 0.0002847409331890699, - -0.00026167410661947436, - -0.000902841807637602, - 0.0014977529702436853, - 0.0018889554126777011, - 0.0017935949740477946, - -0.0007068339801629388, - 0.0005219413042715401, - -0.0002551518982338158, - -0.0010188565323870737, - 0.0025073067624296974, - -0.00014560191243280984, - -0.0007221651315943252, - -0.0018812867341764777, - 0.0013835999655679135, - -0.0012266959334664644, - -0.0007955733975550133, - -0.0005780694640991179, - 0.0002303939949118471, - 0.0013171042191918272, - 0.00033510962049424387, - 0.0004233644661454179, - -0.0013893491055372415, - -0.0012053766259647687, - -0.00024083890779543252, - -0.0004755312216196075, - -0.0006087591665366053, - -0.0001331325388253756, - 0.0007797191144816566, - -0.00014752978636978768, - -0.000337732119516129, - 0.001042051058375504, - 0.0008704887441414064, - 0.0012754415639450955, - -0.0020588672815765583, - 0.0003007684233623938, - 0.00013513231597938078, - 0.00038878803486611075, - -0.00094106056671009, - -0.0011130685806486202, - -0.0007320589029872756, - 3.742374637671408e-05, - 0.0016924645427456213, - -0.001509926096401841, - -0.0007586238447456048, - 0.0020926437588967123, - 0.0020046722325913085, - -0.0001956850766341046, - -0.0003572337252814789, - 0.000795240175474334, - -0.000207674690406096, - 0.001715335255982106, - -0.0014133791441005442, - -4.73467651082631e-05, - -0.0001434092810568783, - 0.0008668149937825248, - 0.0003772407610208521, - 8.927969130562437e-05, - -0.0004075688576260636, - -0.0007562716627201976, - 0.00017263859815034766, - -0.0002727618160032937, - 0.0003634311264587644, - -0.0003969001479080198, - 0.0005750488117243685, - 0.0014028399000779281, - 0.0009523583326846977, - 0.00011937457416130827, - -0.000867827387308768, - 0.0013895796641168639, - -0.0005384693199435318, - -0.00022170236639162185, - 0.0012688204920828267, - -0.0005155087553797865, - -0.0016171781154221683, - 0.00019273043840492785, - 6.05400905724785e-05, - 0.001526590622714586, - 0.001321230554870473, - -3.125407937410362e-05, - 0.0006530708414912342, - -0.0004244221699182637, - 6.5093144041870094e-06, - -0.0009249519711157076, - 0.0005951550970643876, - -0.0010087620059996286, - 0.0011416375998841346, - 0.0004215224742540853, - -0.00014150044343647257, - 0.0004091571942092952, - -0.001642656693183743, - 0.0015323464881712386, - 0.0001649383252042196, - -0.0008735941940370457, - 0.00010994249033523816, - -0.00032416820076257475, - 0.0018146398762113644, - 0.0026226609140734543, - 0.001513095449298825, - -0.0010674531460475277, - -0.0013893384511894074, - -5.9886539118880244e-05, - -0.0007817190922656954, - 0.0003976203199105395, - -0.0015897165903643548, - -0.0005319040181826537, - 0.0020255983690700727, - -0.0015619109599287694, - -0.0006674739203056095, - -0.0012459172832557824, - 9.558099039910073e-05, - 0.00019841863918110695, - 0.0013149064409836999, - 0.0012453298882578003, - -0.0011728191449651485, - 0.00030955916486962706, - 0.00014938778318738293, - -0.001770822610332583, - -0.0004674120226858995, - 0.0003193903887486289, - 0.0015826576019005235, - -0.0002145507413838174, - 0.00016956563761580788, - -0.0015821786109463274, - 4.636934764081868e-07, - -6.5529624539878546e-06, - -0.000910545809920793, - 0.00026363200852265207, - -0.0006352783850071999, - 0.0007430346508666614, - -0.0007584574500557427, - -0.000350836628007373, - 0.001826069643479992, - 0.00038883931640081514, - 0.0012151748174372983, - 0.00023075605410517188, - -0.00037719802965800926, - -0.0012142793071346157, - -0.0006622683539599716, - 0.0006803262959615222, - 0.00043146077720037507, - 0.0008270472834066952, - 0.0012893162931136583, - -0.0015554794788822063, - 0.00038089480382909845, - 0.00046535342722879287, - 0.0010582636704176923, - -0.0013047075227688714, - 0.0008924509361585241, - -0.00011672046286511743, - 0.0016466957932452753, - 0.0004694514717989001, - 0.00021618799396451094, - 7.233795385160803e-05, - -0.00033410306948384677, - -0.0004856951891653224, - 0.0002490498322420274, - 0.0002291288341693471, - -0.0011763817398184036, - 0.000995101256672553, - -0.00036662664710421266, - 0.00014247916095569632, - 0.0002764575284355977, - 0.0004712936494350812, - -0.0011953046531295716, - -0.0001932853205817861, - 0.0003231879670319909, - -0.00021712522024175355, - 0.0013671008907419186, - -4.9926934284278275e-05, - -0.0015689521191738372, - 0.002270482679311869, - -0.0002983722233201883, - -0.0005019507446934675, - -0.0005751016111442322, - 0.0015159117492781619, - 0.0007610841109799923, - -0.0006855190423934663, - 0.0012723173671336018, - 0.002230525312155088, - -0.00025335638705477565, - 0.0018564796552419896, - 0.0012340652878858802, - -0.00141562598334178, - -0.0006079785008845521, - 0.00033674605114971854, - -0.00044062808674288234, - 0.00040264828284959994, - 0.0016390898517184443, - 0.00026665026546064305, - -0.0002503483251249077, - 0.0014159714732116134, - 0.00023803736151676024, - -0.0004084707525186938, - -0.0007376759738016058, - -0.0011879263586698676, - 1.9928701650405975e-05, - -0.0006637427961113709, - -0.0010768025137168717, - -0.00021630615103722473, - -0.0008244831301827721, - -0.00022617012035002848, - 0.0010285696260966246, - -0.001151272308031289, - 0.001133194587036383, - 0.0006973062187150196, - 0.00020579794856829116, - -0.0007120345800856968, - 0.00047700639147278223, - 0.0011561715167156144, - -0.0001424799668470613, - 0.0010306005723754146, - -4.837838060842088e-05, - -0.0006971168957809865, - -0.0009108044724800979, - -4.752089877120043e-05, - 0.0003249859213228721, - 3.942521212270479e-05, - -0.00019715315962356525, - -0.001984900595475657, - -6.379011696598591e-05, - -0.0006458139732965269, - 0.0016282179565458937, - -0.00126005336464622, - -7.428535359632794e-05, - -0.0006567022295510357, - 0.0012463292031156838, - -0.00022024605413766978, - 0.0011030068598674716, - 1.380375021493714e-05, - 0.0008355692721740414, - 0.0008804907679214166, - 0.0009940532392220325, - 0.00015370657372750854, - -0.00024228088418645443, - -9.432797788890617e-05, - 0.00031518129739299775, - -0.0007905716527070723, - 0.0008675511971248253, - 0.0005692618701240886, - -0.001270431048964984, - 0.00038064402825383365, - 0.002945002101068528, - -0.0001700091171736281, - -0.000126576666676782, - 0.0006601026952044155, - 0.0006355245484148813, - -0.0002202738853410731, - 0.0004768919494026339, - -5.159020528141428e-05, - -0.0005251087951984706, - -0.0023972890644364006, - -6.208082513425858e-05, - -0.0006621435540546064, - -0.0005903211386581622 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgb(238, 216, 248)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 3", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - -0.0009303180558804877, - -0.00010777824184881921, - 0.002088586455366441, - 0.0005298002565262404, - 0.0005486359207586131, - -0.0015590340703278119, - 0.001207376823757164, - -0.0005500853108815796, - -0.0004017032438708017, - 0.0004594716679103444, - 0.0011209984725097666, - 0.0006566245302667959, - 0.00048265616511703423, - 0.0009289901000581074, - 0.0007197996002403641, - 7.006381042143934e-05, - -0.0006286893836198714, - 0.00021207612493974364, - 0.0009178910294273088, - 0.0010418552019964764, - -0.0016030076241167986, - -0.0003276377161755113, - -0.001361505878970405, - 0.0012586369960036858, - -5.120375628176304e-05, - 5.3610632965588096e-05, - 0.0014339350300816176, - -0.000413366381937992, - -0.0004925197441239827, - 0.00022847249767117664, - 0.00012158304961439929, - -0.0012804331447590855, - -0.0010493893753050648, - -0.0013653106770466906, - -0.0005240928782199498, - 0.0001822550226436166, - -0.0003270040593190999, - 0.0015536459715715174, - -0.00042030224431097423, - -0.00042665275353291924, - -0.0006277189300611389, - -0.001045658779814822, - 0.00010525670680057828, - -2.754596887335696e-05, - -0.0008693916422722983, - -0.00030959581164974526, - -0.0005176499652143422, - 8.279983085659218e-06, - 0.0005172508214161392, - 0.0012031091218396713, - -0.0011032456483729143, - 0.0002571070961482405, - 0.0011240065861725112, - -0.0007600007209792286, - 0.0014422456686905966, - -0.0012393822280376099, - -0.0006305030557590789, - -0.0013388853076231853, - 0.0010043459531090576, - 0.0005111564687418996, - -0.00119026282868673, - -0.0012053237808103327, - -0.0005778342668652701, - 0.0003380393623795088, - -0.0007081172406666013, - -0.0003757705198031928, - -0.001219560803528857, - -0.000194210343808353, - 0.0011551638149023533, - -0.0017982968670574508, - -0.0012411058924412933, - 0.0012402802915267295, - -0.0018189692980517807, - -0.002834433006904448, - 0.0025252512574025594, - -0.0005147546316660863, - 0.0011986168188525626, - 0.0007705497202776568, - -0.001606742109088356, - -0.0008135402604437834, - -0.0006820126163255293, - 0.0013884682263370616, - 0.0008289898472654356, - -0.000735820053175518, - -0.0012383359600533499, - 0.0009507881492658572, - -0.0004184732703508317, - -0.0005385231478858465, - 0.0002722859636715835, - -8.618129526353917e-05, - -0.0027162126857230864, - 0.001525253766317808, - 0.0003965965415435172, - 7.309963048669821e-05, - 0.0007706895042472312, - 0.0008625540947894295, - -0.0003743177596015043, - 0.0009156657872001082, - 0.001329853651399565, - -0.001681477444920888, - 0.00028000572096539275, - 0.0005890224477154986, - -0.0015461410232074835, - -1.2100788940112515e-05, - 0.002212328903234944, - 0.0016067848573834936, - -0.001132437118764622, - 0.000747374472488397, - -0.000800692033127989, - -0.00013874644853377943, - -0.0008562940749357428, - 0.00029741768753507376, - 0.00041454718995205867, - -0.0007404855664196614, - 0.0003852564290078629, - -0.0002462704457778775, - -0.0008308412136477593, - -0.0007171211442121159, - 0.0008966939201617819, - 0.0009323917909237469, - 0.0005078595720212184, - -0.00034827991811443013, - -0.0012158378539805976, - 3.779829571454994e-05, - -0.0004293392051896029, - 0.0015581181637979672, - 0.0004037747314374897, - -0.00045101458970950027, - 0.0016462748677710543, - -0.0006396442714663818, - 0.0005058503125598632, - -0.0005082889211766824, - 0.001683368698978231, - -0.00012607214364646811, - 9.188089093396847e-05, - 0.002680930611742657, - -0.0007614335756274767, - 0.0005814753409697263, - -0.0010599442185599457, - 0.0020518647847024485, - 0.0005251400791293062, - -0.0004217790551772758, - 0.00041475001778251024, - 2.1670068631583758e-05, - 0.0006637849931919919, - -0.0013491304793733327, - 0.00047488575026966213, - -0.001081389567113599, - 0.002581265134846775, - -0.000801645717679328, - -0.0006715888656564353, - 0.000404366039744133, - 0.00046132435415073705, - 0.0005348750452881974, - 7.033599538939998e-05, - -0.0016792162677044917, - -0.00192671792396413, - -0.0009623576082025432, - 2.4859013071592786e-06, - -0.0007342249523544865, - -0.0007629755040791412, - -0.0009698836132735155, - -0.0013088833650793572, - 0.0005271282163901081, - 0.0014443703832852212, - 0.001434234703546221, - -0.000355613396114928, - -0.0017780583173621944, - 0.00047875820340226137, - -0.0018821081024611543, - 0.0003419860828810924, - 0.001585833010780949, - -0.0014959943822632357, - -2.258476421203373e-05, - -0.0006980322812536892, - 0.0006070969473333436, - 0.0011394322718128419, - -0.0008064361144026648, - 0.0011322507375026599, - -0.0005081042855349789, - 0.00042448926326200937, - 0.0005734190696056041, - 0.0007266764118390618, - -4.1970288128080225e-05, - 0.0013644598560458093, - -0.00023958041246408858, - 0.0012705349020651052, - -0.00042619741233528935, - 0.0005579116896774008, - -0.00014401188683053722, - -7.517966699438416e-05, - -0.0014831540573658252, - 0.00212083835758936, - -0.0004631371921509906, - 0.0013235931509471793, - -0.0006439991446930393, - -0.00027410478730495935, - -0.0008667511636217903, - 0.0008330558766406501, - 0.0006866720997202363, - 0.0007946410044779253, - -0.0006070423386848846, - 0.0011359418910959168, - -0.0008078662626106906, - 0.00014972730561417998, - -0.0003341534066397852, - 0.00011442678087343258, - 0.0005567655308577781, - 0.0012614159012590983, - -0.0010328536640539804, - 0.0008393960855060801, - 0.0010403672550445082, - 0.002311284760906602, - -2.1317877156588093e-05, - 0.0006957448114635563, - -0.00033555960204448504, - -0.0006541762660787926, - -0.0010448834140259333, - -0.0001764942228716736, - 0.0003560879328678843, - -0.0007339872747510199, - 0.001251495543889825, - 0.00013266774943251867, - 0.0004787143072178658, - 0.00016049674511350357, - -5.060484556363128e-05, - 0.0014672508316391313, - 0.0005973753529329272, - -0.0026711253226962225, - 0.0006314292210398358, - -0.00011555270719097799, - -0.0005971939197898639, - 0.0007611186760933938, - -0.00033288102271468683, - 0.0020582384415706034, - 0.0005287398166842755, - 0.000702813863639905, - -0.0006677349723898797, - -0.00010004890344280557, - 0.0006801840506364844, - -0.000989468908567757, - -0.0005365376635559763, - 0.00044172397545401843, - -0.0007641533269126465, - -0.0019280220451004166, - 0.0009381592583407436, - 0.00037617411709424213, - 0.0007789347594479946, - 0.0011472132738133327, - -0.0012105555511180278, - -0.00012348589385708416, - 0.0015377702119803997, - 0.0008981202006352735, - 0.0003504102399756909, - -0.0009268333048512982, - 0.0012252443328266047, - -0.0024352170603734757, - -8.389746677320169e-05, - -0.00015993924404936123, - 0.0018205587667313177, - -0.0005212788762898849, - 5.884481117874953e-05, - -0.00039729581309635076, - -0.003069235277901448, - 0.0006592649082636372, - 0.00019571923556045205, - 0.0004446669181611707, - -0.001797795852312073, - -0.0004298016515255425, - 0.0016391738233578928, - 0.0004118844330514097, - 0.0009027784886589327, - 0.0008849190676926189, - -0.0017397630516676474, - -0.0004484369104234251, - -0.0004790835861238543, - 0.0001837631652449188, - 0.0013085243560706813, - 5.193251766466635e-05, - -0.00039879002693516514, - 0.0007990390650648944, - 0.001790928287916429, - -0.0007539436567172821, - -0.0003549783132044163, - -0.0004815721939455998, - -0.00023476210411107172, - 0.0016617992269471757, - -0.00033506031570276616, - 0.00030906586427068635, - -0.0009782291552757802, - -0.00042678448652716034, - -0.00011307279552671651, - 5.9982630731210786e-05, - 0.0008979729691165904, - 0.0002346408297663058, - -0.0007958276742147831, - 0.001695889298899769, - -0.00013896061956306381, - 0.00026886521567377427, - 0.00027170355418763343, - -0.00011706314743764918, - -0.00024013787512426707, - -0.0014128657659196772, - -0.0007353519535565584, - -0.00038787375425060994, - 0.0009849241649961186, - 0.000760905896191089, - 0.0006735802991134132, - -0.00128190719451602, - -0.00042022691466976777, - 0.00123652382104401, - -0.0008243954681723068, - -0.0009432212463069586, - 0.0016542041668594235, - -0.0016772543456659592, - 0.0003341665142336454, - -0.0007279969217685552, - 0.00016325030319240926, - -0.0004904252869229817, - -3.6280845693388065e-05, - -0.0006813007134820431, - -0.0013156696691612388, - -0.0003216564547836021, - -0.0011177598464857607, - 0.0021008306207029627, - 0.0008909197310504763, - 0.001232995495083748, - 0.00012199274118418513, - 0.00022576580193611566, - -0.000349208717252375, - 0.0009935947973655965, - -0.0013735219464305437, - 8.10406124658522e-05, - 0.0002370984925314595, - -0.0016267232094759505, - 0.0003523086559274265, - -2.1037061171434263e-06, - 0.0005796438795616851, - -0.00019854632505087144, - 0.001944874183174392, - 0.00045421824809940484, - 0.0009401285021983766, - -0.0006224196001054178, - 0.0001954490851015107, - 0.0018716544274630063, - -0.0011305146494378251, - 7.455128312441425e-05, - -0.00044371881656180944, - -2.7378766656625046e-05, - -0.0003037276326432362, - -0.0014420851081470545, - -0.000983857503502445, - 0.0005969392835893443, - -0.0004230295863909593, - 0.0002899640922082274, - -0.0012256164610864044, - 4.9559346696907014e-05, - 0.00025769721684813665, - -0.0005613642297889525, - -0.0013316189595609259, - 0.00011510917313886183, - 0.0005871262433242583, - 0.0007234132534584827, - 8.20028032426036e-05, - -0.00013864734698634752, - -0.001945717303656023, - -0.0009897594888779464, - -0.0007847709062024574, - -0.00020830629359322466, - -0.0013533258209926775, - 0.001442388990994019, - -0.002136901955884838, - 0.0002501238189915611, - -0.0005275268475585895, - 0.0006961923132632882, - -0.0012605641838596827, - 0.000194171095121369, - 0.0016259323197247062, - -0.001476075931450764, - 0.0002812551455151873, - 0.0013378687487488256, - -0.0007295501343777081, - -0.0003447398050779333, - 0.00016430317633202754, - 0.00023771051197248868, - -0.0018052072165714627, - 0.000503576657584097, - -0.0006688770789994125, - -0.0013749536749936122, - -0.001035994546151461, - 0.0017327034925443243, - -0.0005211637834242671, - 0.000357841817849526, - -0.0012796752725740016, - 0.0018200486542749067, - 0.0002890143723996947, - 0.0010233110205555495, - -0.000806539546970521, - 0.0003891125114938746, - 0.001904234952358271, - -0.000160367120978465, - 0.0008592145391111167, - 0.0005115970506404234, - -0.0004655799876257063, - -0.0005908575716444449, - -5.988975372881486e-06, - 0.0001083413960534439, - 0.0011849265252636269, - 0.0008636001839513722, - 0.0005224426938894332, - 0.0006821861466950063, - -0.0005703499880555987, - 0.0014161137401237738, - -0.0005493832367918067, - 6.740870039431691e-05, - 0.0008921848043262228, - -0.0003786679381189822, - 0.0004314308097919339, - 0.001410642505789544, - -0.00115106015601303, - -0.0017400268648448728, - -0.00041251324384283724, - -0.00033074558601235384, - -0.00029944956777411947, - 0.0009255754245574897, - -0.0019769081805974774, - 0.0011606803198226645, - 0.0003574964638226974, - -0.0006292488201924427, - 0.0004691649734750036, - 0.00012193142030874805, - -0.0002483637229166602, - 0.0011236206107471485, - 0.0006093000988976268, - 0.0004241193675992493, - -0.000558958999839737, - 0.0008844409065286887, - 0.001022548714090623, - 0.0004575684801073614, - -0.0002162028806142064, - -0.00143331236324647, - 0.0002913845927970428, - 9.407702417516475e-05, - -0.0013806798908275518, - -0.000922044295027247, - -0.001284117506210439, - -0.0012110474884195115, - -4.729913620070103e-05, - 0.0001161629722260717, - 0.0008756375975669809, - -0.001213587732524296, - 0.0008959106596381707, - -0.0018643078308040902, - 0.00211531037867053, - -0.0017645666169974767, - -0.0001877622911088491, - 0.000677445121512379, - 0.0009122109502897481, - 0.00045912834030890795, - 0.00018821715123047548, - 0.0010625807234733602, - 4.2455938626148986e-05, - -0.00044620228990695037, - 0.0005475427986331929, - 0.0012996269390391179, - 0.0016710874151155534, - 0.0009599709966488876, - -8.226206725341317e-05, - 0.00020811669678760483, - -4.491132896083069e-06, - -0.00019371873877980497, - 0.0009138938456414224, - 0.0002375635918839766, - -0.00022756442681356223, - 0.0004233527652890151, - -0.0019500545982865424, - 9.20871913918934e-05, - 5.9915104297489195e-05, - 0.00011368955336014124, - 0.00022028647779218967, - 0.0006453286735953592, - -0.00026117453207689825, - -0.0016705083897134321, - -0.0010404571954528527, - 0.0006749185866072668, - 0.000588039230915149, - 0.000571112247342972, - 0.0018516828452045024, - 0.0003315915876839677, - 0.0012225433136588385, - -0.0015610730776793027, - -0.0008098520484834332, - 0.001755612027582988, - 0.0011480925385896612, - 0.00016690417979251754, - -0.00042601629983010506, - 0.0003465709336449733, - -0.0009543624239769994, - 1.922220480948149e-05, - 0.0005637874953348935, - 0.00038944113992280243, - 0.001314427546658777, - 0.00045184499357690084, - 0.000264098327857061, - -0.0004855782633826739, - -0.001006926670266169, - 0.0005507411022677279, - -0.00014061014477277815, - -0.0015885481605515317, - -0.0009623177447799416, - -0.0009430006944492593, - 0.0008601627968222319, - -0.0009659510221302378, - -0.0009950254613130054, - 0.0017929852682232385, - -0.0015410952645494094, - -5.112483769285881e-05, - 0.00015605261918068419, - -0.00016446131595257546, - -2.8491031165893212e-05, - 0.0002578303277806609, - -0.0006210837212270851, - 2.3473628847417834e-07, - -0.00017613013782797113, - -0.0005719421332458475, - 0.0004356694316838061, - -0.001512800330596525, - 0.0004979591422476178, - 0.001461586749963096, - 0.0008429246940114652, - 0.0003256808125031199, - -0.0004206789638834836, - -0.0016086743260031082, - -0.0002371855274463296, - -0.0008101884905998697, - 0.0013809734420410086, - 0.001342274996546509, - 0.0010842690361499436, - -3.799865686101451e-05, - -3.0733734600971826e-06, - 0.0007326923331233237, - -0.0014207834744494766, - -0.0016475387684717455, - -0.0006592420085849514, - -0.001662793313522587, - 0.000888396584728998, - -9.393301796810294e-05, - -0.0009321487190289748, - -0.0001346769321906459, - -0.0011351353047785683, - 0.001612065989961944, - -0.00012049271182203897, - -0.0003208668819571889, - -0.0005518112953999528, - -0.0002889191461603554, - 0.0009854269768276467, - 0.0008042305364449915, - 0.0005956712393510096, - -0.0006846566502680413, - -9.284576134070327e-05, - -0.0007752373360914583, - -0.0008521041858867439, - -0.0006251199148116966, - 0.0012331489454291977, - -6.9262936274731195e-06, - 0.002077686433545488, - -0.0013031467680759826, - 6.192336982877715e-05, - -0.0008128552055207014, - 0.0003477818874621076, - 0.00021383731811284415, - -0.0005131021909236212, - -0.00030657942626655506, - 0.0009735291903079762, - 0.0006032056301560099, - -0.0016143534429789352, - 0.00027820577783485616, - -0.0013583738052702799, - -0.0016748961873443483, - 0.0003894501124223052, - -0.0007973428594318589, - 0.0010233688621676916, - 0.0012457365922382729, - 0.0002588275125361696, - -0.00020834268417370627, - 0.00015645519629192695, - 0.0002227583408968344, - -0.001855040925719069, - -0.0004254105152154962, - 0.002167686664152822, - 6.29643649913323e-05, - 0.00018976128013824156, - 0.0005493649529416855, - 0.0004902770991126039, - 0.000323425542021392, - -0.0009059191177727292, - -0.001220788826742381, - -0.0011428251242127719, - -0.0005717433469563279, - 0.0009860185356092364, - 0.0013111026100791879, - -0.0010890284549386687, - -0.0015845347757002348, - -0.0019479207781568993, - -7.44212446461903e-05, - 0.0005712642315552406, - 0.0001842303520964912, - -0.000710576302002897, - 0.002563391298191524, - -0.000681580935309953, - 0.0013066324697706628, - 6.647791838070363e-05, - 0.0016379752672207016, - -3.791935184739626e-05, - 0.0016612998155143446, - 0.0022031906293870467, - -0.0019298214958296635, - 0.00034262522885756934, - -0.0014191935714222069, - 0.0003377486096500906, - -0.0009931553506756377, - -0.0005156742839491313, - 8.449444307079133e-05, - 0.0007822560431886654, - -0.0005074029133078654, - -0.0012401362343599945, - 0.00022120959949320623, - 0.00023235798582692935, - 0.0012735341293862315, - -0.0011887682947962922, - 0.0006033909369591345, - -0.0006194849874239789, - 0.0007847765690349227, - 3.1398938847827565e-05, - 0.00026083523295287336, - -0.0011789294714741583, - -0.0004440407508986455, - 0.0004721056350300587, - -0.0006228769717259079, - 0.0020458105700758224, - -0.00010406269939206562, - 0.0024664456534604935, - 0.002184192357692285, - 0.000967774783308341, - -0.0014531430809925957, - -8.914587532459596e-05, - -0.000700943861506826, - 0.0006687169683231345, - -0.002898327111071698, - -0.0005007676155727121, - -0.00020009886917855455, - 0.0005826958587454231, - -7.394898875723966e-05, - -0.0013107460804846628, - -4.776188409714072e-05, - -0.0005831037340111692, - -0.0013627945703657575, - 0.0005462828518223436, - -0.0015023934232286516, - 0.000369672850650793, - -0.0001544508793758788, - -0.0004916695468319349, - 0.0011121438928644463, - 0.001044227423161726, - -0.00039737154165286626, - 0.00018511607172595296, - -0.0002446444195365002, - -0.0008110584086387556, - -0.0004529429661049197, - 0.0008860529025694042, - 0.00019192351785673795, - -5.3487810119705997e-05, - 0.0009592337045553618, - -0.00015265944687976472, - 0.0009820325091422586, - 1.879979627182896e-05, - 0.0010564177210690073, - -0.0007555102679391707, - -0.0006355320891536338, - 0.0013442622375881067, - 0.0009543279445381679, - 0.001211578522290413, - 0.0005469604243064617, - -9.548107041529305e-05, - -0.000651371607134226, - 0.0014085796504796394, - 0.0012159927402428511, - -0.0013590471467936618, - -0.00038248075825545954, - -0.00020561531320163664, - -0.00025444362148901545, - -0.0011796946712992096, - 0.0016754492354202515, - 0.0005808064684614668, - -0.0009723960471276554, - -0.0005967292689959973, - 0.00015005255765686957, - -0.0004407436504638262, - 0.0006139475268282666, - 0.0005113575013888743, - 0.0011398167290974808, - -0.0004754311397895311, - -0.0003056362406266341, - 0.00031711381773365596, - 0.0006564298586238526, - 0.0010351065202142838, - -0.0006852406244954358, - -0.0007911802644676832, - 0.001513780428861238, - 0.0007491865742775635, - 0.0005724061619111724, - 0.0004994040827876237, - 0.000507198869715837, - -0.00034063112144513383, - 0.000937216155535552, - 0.0003967969716874739, - 4.6047839764064454e-05, - 0.0009637730451095652, - 0.0007828519485420294, - 0.0005159964860139635, - 0.001419078669517883, - 0.001465136831404672, - 0.002716542460906816, - 0.0006256629626247992, - -0.00035146729220043773, - -0.000149057099995725, - -0.00035044874556389665, - -0.0002729052811887125, - -0.0003011605702015898, - 0.0005076078210006155, - 0.00027707628467503394, - 0.0003273862447007097, - 0.0008252815504944652, - 0.000437817562607573, - 0.0003095039649053467, - -0.00011129061936432125, - 0.00045268716680407046, - 0.00011098238614762637, - 0.001437323898802565, - 0.0009501985593845442, - -0.0009325910133725674, - 0.0010855170504324376, - -0.0006874028579548875, - 6.768031930624743e-06, - 0.0011808156642576062, - -0.0005858623818468077, - -0.0017304502538527996, - -0.00015671805624702884, - -0.0011621206869633235, - -2.9722455725288186e-05, - -0.0010573619364649244, - 0.0014224020413878403, - -0.00028111437399719357, - -0.0003780024089991388, - -0.002084259258611678, - 0.0004499460162377185, - -0.0011344754100559458, - 0.0027528052687315575, - -0.0009616211013117027, - 8.989321117606036e-05, - -0.001934434061731797, - -0.000929706373399455, - 0.00047951763673658365, - 0.00023702557402088302, - -0.0003940496906167559, - 0.0009259717215942139, - -0.0006550732782087338, - 0.0020252835864960433, - 0.0005679211371655726, - 0.0009415546815432594, - -0.000817918151048495, - 0.0008849861103025461, - 0.0012911377621096622, - 0.0009920511858599597, - -0.0005295152835416106, - 0.0003924003091358153, - -0.00016604222216691343, - -5.625046977503586e-05, - -0.0005868476262407639, - -0.0012608402140471284, - -0.001886659402837631, - -0.00030138275243957093, - -0.000578407795930812, - -0.00010497994591168149, - 0.00042907639948802434, - -0.0009651138483986885, - 0.0004047232525180603, - 0.0004455790421586485, - -0.00015552574344563963, - 0.00038003758665985216, - -0.000909062014085509, - 0.0008264256811092232, - 0.0014605425676038181, - 0.000957907650759181, - 0.0012560589772496807, - -0.0006761034674696751, - -0.0003063665844561069, - 0.001025837497952354, - 0.0010559044263517246, - -0.002016134648161382, - -0.00025370804500766004, - -0.0011903440304644331, - 0.00011763471539772888, - -0.00025586811439329944, - -0.0013140684586468887, - 0.001063949587033997, - 0.0016079417339154478, - -0.00027005962066605356, - -4.9896021782858596e-05, - 0.0018036085177014086, - -1.3242863039352379e-05, - -0.000370464883608831, - 0.0005253795010233804, - -0.0010550720368660877, - 0.0009843615508388882, - 0.0005052587059935999, - -7.200427847089098e-05, - 0.00021656067551668835, - -0.0005298952611377647, - -0.0013510329858606577, - 0.00047166107037202067, - -2.2753490566765213e-05, - -0.0017243380887106562, - 0.0001282609503282018, - -0.0009644207247127198, - -0.000632905115181153, - -0.001222822177394733, - 0.00014230809666259276, - -0.0006171638393577757, - -0.00038568134333437, - 0.0006816674619532226, - 0.0019250076234702818, - -0.0008162558636945553, - -0.00014091711454136246, - 0.0007450824936787381, - 0.00013701540525450843, - -0.0002675713461458645, - 0.0019803736969557857, - 0.00023770333562425996, - 0.0006539491887226954, - -0.000845662108372465, - -0.001798211892267436, - 0.0006551382762578841, - 0.0005860413078789611, - 0.0013212609432497408, - 0.0009662582389440316, - 0.0016667192033221184, - 0.0002957497936395337, - -0.0008842531763227118, - -0.0003867554707469004, - 0.00016455514092908019, - -0.0017343526338858511, - 0.00043167015353904725, - -0.00037510866801545776, - 0.001349440718643087, - -0.0007356792527564557, - 0.0002796539713056939, - -0.00010456958582257037, - 0.000759838603805453, - -0.00066765429789457, - 0.0005464200389038203, - 0.0005472907665275242, - 0.000917075996920265, - 0.0002104375297198613, - -0.0005377981890269889, - -0.0009425217515400545, - -0.0006350964413461594, - 0.0015435676501087726, - -0.0014248763349409368, - -0.0016178697574167594, - 0.0015746318317727966, - 0.0016452027520921326, - 0.0018980507027746923, - -0.00045514766780039944, - -0.00019829983428500255, - 0.000391290896198773, - -0.00013529991030940765, - -0.00017395504074974475, - 0.0013129539003466357, - 0.0021163539602083318, - 0.001727104704058241, - 0.000130199394754533, - -0.00026279976102937225, - 0.0016505051722020716, - 0.0024775334563633252, - 0.000398993231902493, - 0.00150816041326375, - 0.001899483832103008, - -0.0011138685265515333, - 0.0010339031106784138, - -0.0011843654098404152, - -0.0023989768329784307, - -0.00019579606398153142, - -0.00044906199043559004, - 0.0006898708870543896, - -0.0007317734730881999, - -0.00025441209579075096, - -0.001079743111894744, - 0.0006035693567079875, - -0.0005020316232734204, - -0.000779146076403621, - 0.0005309279186043163, - 0.0007042963632496575, - 0.0009648155685061311, - -0.0007477694294407668, - -0.00044712525873204223, - 0.0005965694560973031, - -0.0016242981463805645, - 0.0020862627891011813, - 0.001650212485463628, - 0.0016929245275113637, - -0.0008103811964044548, - 0.0003241115551760189, - -0.0003634194995033641, - -0.0011456834423111805, - -0.00019721521505089657, - 1.0967191289876136e-05, - -0.0003055158185716143, - -0.0005561654401731239, - 0.002524556628928737, - -0.0007621392164932619, - -0.0007154933741599451, - 0.0019613820511164464, - 0.0007095141599296029, - -0.0011243194086522862, - 0.0015398842717804606, - -8.754013655881813e-05, - -0.0006967254773693353, - 0.0002430751386562385, - 0.0006139167136733713, - 0.0010916823559315519, - -0.0010534043934812476, - -0.0015976961525587508, - -0.0011529635965258982, - -5.3212934335729044e-05, - -0.0005053639720839684, - 0.0007747805386346093, - 0.0009775445870755786, - 0.000739325192601155, - -0.0004659263064994246, - 0.00046818202153427717, - 0.00011278178957539778, - 9.044886752954747e-05, - 0.0006141892367734302, - -0.0004918597541847818, - -0.0005154175906562858, - -0.0009140236781779287, - 0.0006552776463507936, - 0.00039227157202345055, - 0.0006214742822698792, - 0.0007898365620953958, - -0.0002876640509141676, - 0.00015868171674336513, - 4.531587315562329e-05, - -0.0010470341848768442, - 0.000433712237236632, - 0.0012425190920630738, - -0.0010495395055907348, - 0.0011171822841987975, - 0.0005772581756745686, - 0.0007517035996516376, - -0.0004898365548998053, - 0.0001526366791706129, - 0.0008200725241807773, - -0.0010752387593821189, - -0.0018421875997318101, - -0.0006217430011401663, - 0.0007809722990515992, - 0.0006971165056352466, - 0.001926189538865788, - 0.0007194954872232737, - -0.00038847414472279997, - -0.0001247792364874643, - 0.0010357379985849577, - -0.0015062205098017288, - 5.154112472895782e-05, - 0.0002792134021063016, - -0.0004207857235323415, - -0.0004332498243307635, - 0.000558103041767236, - 0.0001706723468752833, - -0.00035743967246674633, - 0.0009108597694364666, - 0.0007168907274739526, - 0.000694039208092905, - -0.00034496316196781996, - -0.0011746568240667934, - 0.00010227257192664283, - 0.0005614917532907717, - -0.0014467073420850105, - -5.376165560446483e-05, - -0.0007498916368970831, - -0.0002177398391874587, - 0.001749657777600733, - 0.00014736369086120927, - 0.00024734204186359793, - -0.0009265937930020519, - 7.3489970699699e-05, - 0.00013611061361601466, - -0.001959995849180806, - -0.0027380704979124127, - 0.0010616021021082583, - -0.0002563762484970965, - 0.00010486315469053979, - -0.0007952412795700076, - -6.690455543943946e-05, - -0.0006607923406144933, - 2.577474202006856e-05, - -0.0009152448558570436, - 0.0012315132173716368, - -0.0016777913228968348, - -0.0006494825208743727, - 0.0003641046129585107, - 0.0014768433211970577, - -0.0011236323118523, - -0.0007270841484337412, - -0.000391515167838633, - -0.00047894182114546785, - 0.0009445917597344016, - 0.001230196646020817, - 0.0006763431875355542, - -0.00017022201413473625, - 0.0013102892850428867, - -0.0008782934710158001, - -0.001161803736768837, - 0.0013685319935039222, - 0.0004955186727972875, - -0.0013318226412301654, - -0.00013128237544820793, - -9.864455739871006e-05, - 0.0007586172690062041, - -0.00047942758193542193, - 0.0016109468297748738, - -0.00037840688966552796, - -0.0009650743085479088, - 0.0004105674151323433, - -0.0006740933893210565, - 0.001252607980886482, - 1.533349462681608e-05, - 0.0015100770136416799, - 0.0013235363416770228, - 0.0005270688742155176, - 0.0016851758832662276, - 0.0015043125800109469, - -0.00020837410573395522, - -0.000771085049757031, - -3.924844886700266e-05, - -0.0019024551880538075, - -0.001069645213625228, - 0.0005117881366391125, - -0.000651962977351271, - -0.0016293180648297254, - -0.000449129254085856, - -0.0003294565475094636, - 0.0019218159642947, - -0.0017059027762724528, - 0.0018983987889937008, - 0.0008452161871526266, - 0.0018281414144059637, - -0.0006927346877134435, - 0.00045511213899072396, - 0.0023821126279983448, - 0.0017102526206593154, - 0.0016761481081322147, - 0.0018077506358179017, - 7.229202435976942e-05, - 3.089775979146892e-05, - 8.861206836619377e-05, - 0.00025147902792452183, - -0.002042886035811616, - -0.0003657568361135069, - 0.0019475809478604752, - -0.0002346465345692403, - -0.0010562342729524673, - 0.0013378439701146234, - -0.00011074030231299862, - -0.00013228117835065016, - 0.0004798890185091307, - -0.0002171696656070822, - 8.470284458469685e-05, - 0.0008407877304882137, - -0.0005807993422908525, - 0.00191272454441652, - 0.0025484784089813257, - 3.0198457454401878e-05, - 0.0019161633886140407, - 0.0005353880646184057, - 0.0002675351161951421, - 0.0017348923931165912, - 0.0002826295370601012, - -0.0006706191628614198, - -0.0002299071360605032, - -0.0004174977503835835, - -0.0019899615879023906, - 0.0007175781644509222, - 0.0006634886871893825, - -0.0009377413218355679, - -0.0008426342064217005, - -0.0015930991777660707, - 0.000997048573844018, - 0.00041889517175919743, - 0.0023189964181158785, - 0.001469186081343138, - 0.001898313059492254, - -0.0006373932975935738, - -0.0006628396364094008, - 0.0007872471670567636, - 0.0005161228394654283, - -0.0005802395121652618, - 0.002006830655831874, - -0.0009604110618613619, - -5.513067713430552e-06, - -0.0004733265298251218, - -0.0005589745558545933, - 0.0008023064408789781, - 3.993171599777218e-05, - 0.0004772479479955048, - 0.0006314969163536722, - -0.0007622424979829893, - 0.001365708430296562, - 2.3387620921907445e-05, - -0.00017600999529904986, - -0.0008215368682622261, - 0.0024740228510553445, - 0.0014087275999687043, - 0.0003567297884790639, - -0.0018268463985575956, - -0.0012093633195378666, - -0.0005065994113875369, - 0.0012753343203818239, - 0.00040446478152861265, - -0.0013797312935964392, - 0.00032363427623288314, - -0.00039257664297489176, - 0.0012650970976389685, - -0.000923717192094478, - 0.0009556804831880311, - 0.0011760880956437037, - 0.0011013768356549821, - -0.0009539574959954805, - -0.0011361698306031438, - -0.001330675160174049, - 0.0011490297050380164, - 0.0007508766761579114, - 0.0006192641348561043, - -8.892098672517606e-05, - -0.00108908845127698, - 9.240695477762782e-05, - 0.0004332074330305459, - 0.0010141527475428138, - -0.0005460676685000871, - 0.0007682457155028315, - -0.0003390036706974749, - 0.00021556935447541455, - -3.060649381372825e-05, - 0.0016988264164007369, - -0.0004113841701025839, - -0.0009482353432319253, - 0.00037811204440629776, - 0.0008388913313451541, - 0.001169014426356206, - 0.0007055976294812209, - 0.0006588510418357543, - 0.0012595387695809755, - 0.000400207950198758, - -0.00033890682643714564, - -0.0001222751886738986, - -0.0006325612529045625, - -0.00043459544415624344, - -0.0026306494643976923, - 0.00033471648554814676, - 0.00026047335706009855, - -0.0003843877865149501, - 0.0005324044717094304, - 0.00035005526121856446, - 9.878874070057976e-05, - -0.001969678152592698, - 0.0012556979259426033, - 0.0006094730497087756, - 0.0008495614373679341, - -0.0002372839168725829, - 0.0006731613445334488, - 0.00044161601451060933, - -0.001015256328667752, - -4.9912639959951405e-05, - -0.0001675489229602686, - 0.0008763275094262327, - 0.0013554752362407434, - -0.00040488511946781055, - -0.0011023068036507934, - -0.0012723228477627138, - 0.001184889942986137, - -0.0022070180318332143, - 0.001742768587308996, - 8.318452337768087e-05, - 0.00021438453718295656, - 8.416680601290794e-05, - 0.002064456378700187, - -0.001206504915118086, - -0.0004938231429530905, - 0.001816992541711524, - 0.001493433243146369, - 0.0007548946432659059, - 0.00012190587908655743, - -0.0001529620140125664, - -0.0002277455747249631, - 0.0019637358940780727, - 0.00118461558389221, - -0.0012730519608369574, - -0.0004205222328779663, - 0.0006757621110418169, - -0.000397812878990069, - -0.0018617809704919261, - 0.001230904591092523, - 9.120264383357667e-05, - -0.0008132031080813665, - -0.0008768791476131614, - 0.00046185682147335144, - -0.0007020372462348266, - 0.0005031785891036465, - -0.0005750520950148612, - -0.00048357615970212847, - -0.001442714405992387, - -0.00034472891598246824, - 0.00012683970866482323, - -0.00015999204701650405, - 0.000250033111682561, - 0.0017767509309878778, - 0.0010834621805325814, - 0.0011463154921412958, - -0.00017949046611190773, - 0.001239272285167846, - -0.0008980055866871449, - 0.0010731712867402077, - 0.0005791722441821183, - -0.00160478431920395, - -0.0011831350303927817, - -0.001930250172676784, - 4.6355013928170275e-05, - 0.0016506979659834556, - -0.0006021647741795181, - 0.0001950894883487943, - -0.00019849666382507614, - 0.0007444518798552362, - -0.00013834590766928774, - -0.000981059809504268, - -0.0006244475967116386, - 4.9894988239295606e-05, - -0.00013569285909377672, - -0.0008557182063186092, - 0.0008095369565191392, - -0.0013406582293886927, - 0.001997544581789637, - 0.0015023671009247767, - 0.00017987153470589877, - -0.0006065965542365139, - -0.00064873045846562, - 6.32014938724188e-05, - -0.00042019435867433414, - 0.0010565741873882705, - 0.0005292279919301688, - 0.0009221998891740037, - -0.0017298401806531043, - 5.1639441775207336e-05, - 1.829658805076752e-05, - -0.0015885136632400989, - 0.0008550758241499487, - 0.0005007594794835651, - 0.002756469885109962, - -0.000810124015040431, - 6.416430270202283e-05, - -0.001559830158816268, - 0.0005680949699386236, - 0.0010006571158879239, - 0.0014309630279937707, - 0.0002953710190814225, - -0.0013338353321664706, - -0.0011709041541787615, - -6.451375776795136e-05, - -1.992347285616994e-05, - 0.0004965891310653275, - -0.0009099934280729914, - 0.000764980409602487, - -0.001074138238558374, - 0.00014430673878274814, - -8.131472673301386e-05, - -0.0001456026419653014, - 4.1487716027278286e-05, - -0.0008164690786023857, - 0.00015321335523945065, - 0.0008352910044425946, - -0.0011394435488351943, - -0.0013005529065059384, - 0.0006325367749826957, - 0.0011054378264147469, - 0.0005000268042923545, - 0.00018779744458085614, - -0.0008675667951673914, - -0.0011767081893848997, - -0.0007921883262470515, - -0.0003640366039997947, - -0.0004152424532324004, - -1.992360403483695e-05, - -0.0006952712530768802, - 0.0007995303336122397, - 4.985105618613579e-05, - 7.350646755830514e-05, - 0.00211525707619069, - -0.0003374023810236057, - -0.0005915778897160394, - -0.0006991899311200821, - 0.002384999561688205, - 0.0008073704692499521, - -0.0003153718920969853, - 0.0008631423053992839, - -0.0006536856676270326, - 0.0001308411524544501, - -0.0005990241410834699, - 0.0021144390989202783, - 0.0009762520934799912, - -0.0008716637069129974, - 0.00030659104693444477, - 0.0010606091820671674, - -0.00026629324254801734, - -0.0007921609275321596, - -0.0011112578011463917, - -0.0007499979442201426, - 0.0004610330261336065, - -6.70412807957202e-05, - -0.00020665600208794662, - 0.0020685173604460282, - 0.0003222528797995473, - -0.0013097278044493536, - 0.0016880702554601902, - 0.0014381835200060116, - 3.822020987664266e-05, - -0.0005497842484271919, - 0.0008198429467682942, - 4.064222997131295e-05, - -0.0014573430616352018, - -0.00020675798559879096, - -0.0007166517390622442, - -0.001447266261230775, - -0.00013088013601808058, - -0.00026029683255667977, - -0.0009099155308393169, - 0.0010760225674248355, - -0.0007214743860542588, - 0.0006100106007747412, - -0.00039117050460846155, - -4.249999426412418e-05, - -0.00027488431234823726, - -0.000961686051321507, - -6.145482194724853e-05, - -0.0025715905532133487, - 0.0007578399094670952, - 4.232591140432224e-05, - -0.0010790639729080116, - 0.00032126379433442795, - 0.0002782944646885457, - -0.001187081752471195, - 0.0009434094025455687, - 0.0004491943569962825, - -2.0096642339629883e-05, - 0.0016069634589923765, - -0.0017806818784833153, - 7.563542054786712e-05, - -0.0005944899699850278, - 0.0003552987064186936, - 0.00010007420171131737, - 0.0003668047595627205, - -0.001016696940467383, - -0.0006039067348816122, - -0.0012648432293641519, - 0.0002878269885324598, - -0.0002550713814871874, - 0.0017094906479371524, - 0.001478389561343857, - 0.0011378593495203664, - 0.0015713268561144155, - 0.0020105571215585346, - -0.0012176640251628488, - -0.0008537939836814534, - 9.773333983537124e-05, - -0.0021187195967467595, - 8.076637510502418e-05, - 0.0005005338717450431, - 0.001113254624821905, - 0.00046964713202598033, - -0.00028311235194612586, - 0.0004814001301197522, - 0.0012607612793599505, - -0.000535726262298499, - 0.0006102140578899146, - 5.06871555659608e-05, - -0.0011922008634399034, - -9.267582278214082e-05, - 0.0003473450178442978, - -0.0010569534477273092, - 0.001550963737174649, - -0.0003492027935451607, - 0.00017297559794453152, - -0.0003204649824830752, - -0.0009743598301450292, - -0.00083766082015091, - -0.0004464260794383419, - 0.0005705384904062833, - -0.00010515423490803239, - 0.00030534462408318333, - 0.00015395207518025108, - -0.0010657854382375217, - 0.00013876192838468943, - -0.00030626778402942194, - 0.0026518901498859067, - -0.0004370625026077131, - -0.0018146641169740649, - -0.00011346601811004057, - -0.00013979314592486814, - 0.0014919279999856005, - 0.0007709361280709893, - 0.00122378839626141, - 0.0023156387399364113, - 0.00046195501540024223, - 0.001150981690521675, - 0.001797160417661795, - -0.0015489911364238126, - 0.000678285270074863, - -0.0002885924677747516, - -0.0007857987977117786, - 0.0010007384616462429, - 0.0007756853861417109, - -0.0004280892848076514, - 0.001111585629339907, - 2.6949054280969512e-05, - -0.00019605548836299072, - 0.0003041871522418706, - 0.0009412624328200805, - 0.0014036891711410803, - 0.0007553957555529882, - 0.0010001484815469407, - 0.0002697203510076846, - -4.2762716125927e-05, - -0.0015125455742582945, - -0.0009534060870377649, - -0.000976194786672257, - -0.0006870510220565474, - -0.0008925080363086, - 0.0016612523800189078, - -0.001322452459588795, - -0.0005485679667470788, - -0.0009437515173584295, - -0.00038368523360741, - 0.0017068209764914842, - -0.0010864679395628137, - 0.0005717737106405327, - -0.0007399763953869933, - 0.0013416689165641701, - 0.0006015031330369105, - 0.000544975686447945, - -0.0022036398464190866, - 0.00038810991641795485, - -0.0013342519420334144, - 0.00033921987217814544, - 0.00032689631520558355, - -0.0004925546478395807, - 0.0009802809994681392, - -0.0004514897012284418, - -0.001334388955237637, - 0.0010309679488576206, - 0.0007157629336326758, - -0.001798233212964768, - -0.0016032016022219863, - -0.00029696172566167424, - 0.000570910881902866, - -0.0005865315983503076, - 0.0009698536860330889, - 0.002193970378940868, - -0.0003234646934001343, - 0.0013902962459850312, - -0.001864460244956055, - 0.0005876394588249941, - -3.8772219433925506e-05, - -0.0011023567892121443, - -0.00022339235143950195, - 0.0003976347781947588, - 0.001796720449285344, - 0.0003780280891824962, - 3.906949260984868e-06, - 0.000133485840747398, - -0.00015771751759292233, - 0.0010280231293337532, - 0.000584705355778401, - -0.00019188415904585265, - 0.00042607245845565825, - 0.0007358923815094354, - -0.0002076262477330948, - -0.000670515724109988, - 0.001157918615871617, - -0.0004607264503548885, - -0.00010461711905705616, - 0.00046783687509210865, - 0.0009471643933631665, - 0.0005495328016866186, - -0.002484423491294987, - 6.105687017135073e-05, - -0.00022651032502450855, - 0.0008887424580984958, - -0.0006664937426369872, - -0.000640473260960489, - -0.0015013456174385847, - 0.0014510873321040083, - -0.001190511030271455, - 0.001994342999162736, - 0.0004453866598114827, - -0.00020843443397400608, - 0.0003674121350397877, - -0.0009744239303578073, - -5.3706833647987126e-06, - 0.0014049759284517432, - -0.0007552745590733897, - 0.00035448730954559555, - 0.0002909190601975046, - -0.0014614176472380878, - -6.70028607011355e-05, - -0.0008002561556322402, - 0.0008301750997052984, - 0.00017528589253389706, - -0.0004003451130818483, - -0.0015859964352441087, - 0.0018287717464551677, - 0.0023397235298993797, - -0.00024290407273608024, - 4.1770818190105275e-05, - -0.0008080442794796474, - 9.947274342375154e-05, - 0.00048385633741903895, - -0.00029723894286428184, - -0.0001972951993316202, - -0.0016880584110921888, - 0.0009151525978770975, - -0.001021205428766413, - -0.00020588373509252675, - -0.0007827273540250648, - -0.0018006942576633373, - 0.0007018268026796126, - -0.001052902199097359, - 0.00052984168724511, - 0.00106575112657017, - -0.002281925712009188, - 1.2762516459512977e-05, - 0.0018713901630945664, - -0.00035963432122916697, - -0.0009759462766142736, - 0.001294555861841064, - 0.0008482684709366014, - -0.0009123762156264765, - 0.0013120395792246583, - 0.0005321547154240227, - -0.0010929113415594376, - 0.0019157652649077173, - 0.00019791187361884068, - -0.002326194692083678, - -0.00114468973615779, - -0.0025078175652571283, - 0.0009473246864057908, - 2.4216220760984674e-06, - -0.0011796505291225762, - -0.0017708187903297508, - -0.0010419344044262664, - -0.0006009441454786792, - 0.0007142941714543716, - 0.0008528877168511911, - -0.0006371885619108479, - -1.0638515695732826e-05, - 0.0001289157477399098, - 0.00020449170929643507, - 0.001603976899296821, - 0.0008995301430895128, - 0.0005484579890655215, - 0.0001221762830639653, - -0.0013514028489319447, - -0.0007360833808620107, - -0.00024440374548781826, - -0.0008715867286279012, - -0.00018886288947739938, - 0.0012503611580790652, - 0.0001682329466786142, - 0.001649732414584317, - 0.00024748212070604486, - -0.0010729772780704156, - 0.0004167484313764093, - 0.00011823621394526965, - -0.0008544912651046137, - 0.0018490096086763938, - -0.0006461733817404494, - 0.00043435012686105764, - 0.0006880564329347361, - 0.00037375916250563556, - -0.0011945854942792486, - -0.0011995908772441492, - -0.00029613599316109964, - 0.0005800191319515308, - 0.00016718301616394106, - 0.0026294517341341615, - 0.0015443425432065004, - 0.000244654056121409, - 0.0016502129026897917, - 0.0007682041619056254, - -0.0005180864091665706, - -0.0017217850837873477, - -0.0005825429018127021, - 0.0015657238623302285, - -0.001062330322112029, - 0.0002613927053560573, - -0.0005646781616035993, - -0.0009041310101541067, - -0.0021305254995616814, - 0.00020981300491252846, - -0.00020872878987205796, - -0.00017327929729006266, - -0.0004645627680139781, - 5.2860784287443744e-05, - 6.474553051276422e-05, - -0.0015124783743978175, - -0.00024181181032403707, - -0.0006467091425430259, - -0.00031082906941381567, - 0.00015185522958817925, - -0.0002604792640641457, - -0.00012367702571700824, - 0.0016039812940240805, - -0.0017213505501223428, - 0.0015297429903428255, - 0.00010039601872642981, - 0.0001256162175516639, - 0.0015324927577362105, - 0.0005456831164746019, - -0.001438351844269319, - -0.001611638511364475, - 0.0014726785362738158, - 0.0006347712633022035, - 0.0005800352229904098, - 0.0011451868285747495, - 0.0010266390852198112, - -0.0003667335035955541, - 0.0009338490317186204, - -0.0016658435197123799, - -0.0005767264127018752, - 0.001158165624102872, - 0.0007364870042694904, - -0.000795136454381588, - -0.0014128338790569774, - 0.0005830665239967298, - -0.0002653577319609347, - 0.0010287206768751468, - -0.0012476728918531424, - -0.002132004030946236, - -0.0004145088530900429, - 0.0011134070599395018, - -6.875922576252214e-05, - 0.0008444404778924495, - 0.00021564565144513252, - -0.0002580713757344136, - -0.002294290749876739, - -0.00018682251704947253, - -0.0005313587419874803, - -0.00102422193769517, - -0.00019012496524300863, - -0.0012235612649773005, - -0.000715539382866668, - -0.0012616577346273436, - 0.000808909767628437, - 6.035029331326409e-05, - -0.0003388636237408945, - -0.0010419149690275241, - 0.0019313733927669085, - 0.00038176854872780115, - 0.0005567086015386071, - -0.0010924437494492934, - -0.000420356657639819, - 0.0003691891602111207, - 0.0006792531573617034, - -0.001379217330189695, - 0.0005485714616325317, - 0.0014079625775858117, - -0.00045950549235473394, - -0.0015862990963964809, - -0.0013107929964476619, - -0.0013862735372958917, - -0.0002506381859214882, - 0.00038078737360679654, - 0.0013381140337826271, - 2.4399631039768272e-05, - 0.0001492702935098749, - 0.0024288961735486323, - 0.0018677662119966543, - -0.0001789138932231335, - 0.00025727574056601016, - -0.0021953118895842406, - 0.00038931445500987925, - 0.0006612230854057046, - 0.00010852260042373469, - 0.00024280996028534123, - 0.0008757086829970045, - 0.0008764376487981017, - -0.0009740978045741453, - 0.0007219815800849244, - -0.0003565364278229531, - 6.5777507688912405e-06, - 0.0005415593445459046, - 0.0006730769282630538, - -1.4800366656133674e-05, - -0.00021746743654477296, - -0.0015638887715287181, - -0.0007303962220105879, - -0.00045943831459683865, - 0.0003511054966896977, - 0.0005876947967273032, - -0.0013297600241490698, - 0.002739503586257773, - 0.0009026488159153461, - 0.0008781275789229018, - -0.0017859958794654862, - -0.00033273349494432846, - -0.0012674601192469393, - -0.0004366288164434769, - 0.0008174802292239769, - -0.0018246249040768615, - -0.002072325106807602, - 0.0007153371940350976, - -0.00019347565623278675, - -0.0008982184431837382, - 0.000900172085032128, - 0.0005183592285662534, - 0.000844267804530251, - 0.0014768446662064795, - -0.0008199892653648114, - 0.0013990714029320805, - 0.0018516331502291736, - 0.000691848568435418, - 9.36441498095554e-05, - -9.414571092320103e-05, - 0.00016261560781658332, - -0.001481588834923151, - -0.001132825055051839, - 0.001149691181368136, - -0.000347068262111772, - -0.0008113525401705261, - 0.001725464990660541, - 0.0005482236786694601, - 0.002176818028802421, - -1.0348319753822381e-05, - -0.0019484352835653456, - 8.40037035222399e-06, - 0.0004392607473551884, - 0.0023643970950279316, - 0.0005047481908008856, - 0.0012863289159799269, - 3.206985165688043e-05, - -0.00036099180085173103, - 0.001371698246399203, - -0.0003058675851685187, - -0.0005636883840480614, - -7.264840267754672e-05, - 0.0002589576987828703, - 0.0003294097977184119, - 0.0014879105687874222, - 0.00044246526939843223, - -8.106780635062195e-05, - 0.0005936328806399314, - 0.00014341032448242965, - 0.0006435231877281845, - -0.0020374198979289213, - -0.0007472609030710821, - 0.0013005286700999775, - -0.001319983568593352, - 0.0004890579668972191, - -0.0003256855785789255, - -0.0005731602718053551, - 0.0004079325875176317, - 0.00031362722776067406, - -0.00041699085151184774, - 0.0009618420508906433, - 0.0002829776880295858, - -8.22578447729986e-05, - 0.0011276461632798436, - -0.0011872068534876797, - 0.0009693929691085639, - 0.0003574681559604581, - 0.00052483354443982, - 0.0008295556060055934, - 0.0007989969380302463, - -3.057644724228015e-05, - 0.0014954956130620446, - 0.00023882558298174918, - -0.00036524560560813004, - 0.0005772403146000475, - 7.18349967930384e-05, - -0.0002191542569050168, - -0.0006774232941072857, - 0.002358352440821882, - -5.203260532876893e-05, - 0.000978177656275709, - 0.00038004195832186757, - -0.001894902836053963, - -0.0003881159656061031, - -0.00010448366786267404, - 0.0011212617873285738, - 0.0005742005573031785, - 0.0019852510200126655, - -0.0004831996489606564, - 0.00041678822680290433, - -0.0006493152862719049, - -0.0005040557336816799, - 0.0008703535476496683, - -0.00037433251607775795, - 0.0001788591887870375, - 0.0015583689263962632, - 0.0022691900278381813, - 0.0024460690107249213, - 0.0012153688026639699, - -0.0007565533358773605, - -0.00034724152818839567, - 0.0021866652196375264, - 0.0003178627181977002, - -0.001040014930841016, - 0.00022794085411448, - 0.001035300294460343, - 0.0009678319656295303, - -3.821103153336623e-05, - 0.0017561103304614477, - -0.0003770997453407404, - 0.0006693314888024147, - -0.00028488778733563375, - -0.00016197890302748096, - 0.0004362133392306338, - -0.0006253301613473778, - 0.0012283433593406777, - 0.0005364213097002379, - -0.0016083930740757486, - 0.0003508654383284587, - 0.0009817986466880472, - -0.0009353661695944533, - -0.0005056772118382318, - -0.0011454414883550503, - -0.00018132192991428907, - 0.00042501896747568777, - -0.0015482339835533462, - -0.0016820470190745725, - 0.0015755677866380593, - -0.00015212549850185858, - -0.0021415068199211467, - 7.337303373816661e-06, - -0.0002544795092830162, - -0.0019376797170542394, - 0.0009977172354901558, - 0.0022775278845615188, - -0.0008650391218262108, - -6.939981265004886e-05, - 0.0015286636625700414, - 5.5376951196799053e-05, - 0.0002759675516396233, - -0.00041279527987986156, - -0.00039405884733543725, - 0.0003074446875210117, - -0.001274154185189459, - 0.0007934001217655187, - 0.000388678033450612, - -0.0007590533083510694, - 0.0016374194359920781, - 0.0005207427022680483, - -0.0014094838487586049, - 0.00043521285875973035, - -0.001640973181606086, - -0.00040367084817069217, - -0.0009127741788614218, - -0.00037879787569832147, - -0.00046872906354013347, - 1.6395307981247914e-05, - -0.0003039854226801893, - -0.0016044932684108066, - 0.0006604291202095097, - 0.0008611592581350415, - 0.0014445143850206697, - -0.0005320821870426885, - 0.0010240601868046744, - 0.0010375513759635637, - 0.00023633201404891818, - -0.0008448620440687195, - -0.0008247279353218095, - -0.0011686249877825695, - 0.0009110899334799681, - -0.0020158089805177477, - -0.00034002212930956007, - 0.0009820784337922104, - 0.0009561366292991226, - -0.0015394622428511141, - -0.0004901224687856475, - -0.00016083727190332081, - 0.001656002234259759, - -0.000603771229916215, - -0.00023437281847174226, - 4.595702612780961e-05, - -2.3408530959864837e-05, - 0.00042840740155110287, - -0.00035670898412634765, - 0.000517792239566865, - -0.0003134412761339907, - 7.847605076981748e-05, - -0.0006312950550881476, - 0.0011094879522909006, - 0.00023458743345106703, - -0.0004078328109789182, - -0.00033436577242555065, - -0.00014529477761373636, - -0.0009366016835406493, - -0.0007652970161557303, - 0.0009311456489675788, - 0.0008059978714946721, - -0.0017416193443506227, - 0.00038815752859720396, - -0.0006275473591685718, - 0.001340379447825876, - 8.158577844872169e-05, - 0.0014059303585521132, - 0.0020999772813337786, - 0.0003201854343205137, - -0.00023507289596440004, - 0.0007343836920452807, - -0.0006617607019832121, - 0.0019551921742684904, - 0.0017444496741423473, - 0.0007786465008634028, - 0.0007433830735005559, - -0.0001567636533883078, - 0.0005596499524565984, - 0.0007692393322582541, - 0.0015419855641159276, - -1.6640502999188237e-05, - -0.0006780374383531493, - 0.000225897762562542, - -0.0005605902409894806, - -0.0014765609673162191, - 0.0003927002682821529, - 0.0002824427819414027, - -0.0005762832727944636, - 0.0002994414302936243, - 0.000758271649876609, - -0.00023158210627132288, - 0.00034907542288914434, - -0.0008723918828609225, - -0.0019983737651810963, - -0.001171495442710779, - 0.0014711527320150702, - 0.0017397842971038936, - -0.0001473580900082856, - 0.0003009903072086094, - 0.000445754490410219, - 0.001413429978515736, - -0.000666108558128693, - -0.0008753775965786972, - 0.001620924791704102, - -0.000690110809500927, - -0.00048308025075216067, - 0.0007469677372406923, - -0.0007764501025383416, - 0.0011956066972339376, - -4.857603191335111e-05, - 0.0009614519827580292, - -0.0009311590678032966, - 0.00028353924367816193, - 0.00014068675750580786, - 0.00080152029402705, - 0.00030638827121942945, - -0.0017033546804785728, - 0.00118902661119735, - -0.0008388612214059104, - 0.000653550650989027, - -0.000473047233296401, - 0.001599228130621545, - -0.00032954528118571647, - 0.0010967859367472187, - -0.000614454677647616, - -0.0011595859349145168, - -0.0014359484966068386, - -9.353597414935486e-05, - 0.0011176161139497503, - -0.0009386848199470825, - 0.0011942524987620922, - -0.0010843201716985035, - -0.0010042304631491083, - -0.0005333890660609552, - 0.0011160191099241746, - -0.0014099989678995491, - -0.0005052725180936423, - 0.00039940763566592767, - 0.0004812514284449609, - 8.79127356556091e-05, - 0.0005412594998735391, - 0.0006480066557071756, - 4.372303477437694e-05, - 0.0006108667296467113, - -3.1757960668116076e-05, - 0.000232851129627199, - 0.001793598597615017, - -0.00020245920938489229, - 0.00037182797391540885, - -0.00019165513725215077, - 0.0010472230439782203, - 0.000651623058754857, - 0.0012488260436242181, - -0.0014133828445971309, - -0.0015832651756844671, - 0.000427192796472418, - -0.000682495844145374, - -0.0009492752205371592, - -0.0008510432566546802, - -0.00029264472565930586, - 0.0005428072282675176, - 0.0011420187351353726, - -0.0001371340829746204, - -6.574558541507293e-05, - -0.00021521810964083313, - -0.0005584816534837364, - -1.2481808179721978e-05, - 4.328910560301671e-05, - 0.001551473818107546, - -1.7370728272810145e-05, - -0.00011147449210261918, - -0.0020966128167920336, - -0.0016478578104100296, - -0.00023836399280338769, - -0.0003934709179434244, - -0.0001954177683805187, - 0.00024006629855098763, - 0.0019437947950467574, - 0.001147509538672602, - -0.0010445820417658662, - -0.0004661507557717149, - -0.0012121742830700044, - 0.0007408636729030401, - 0.0013813684123607508, - 0.002428579594729068, - 0.0004566702009323177, - -0.0011579827327128846, - -0.001516658429315572, - -0.0006296233199129155, - -0.0013389301998944488, - -0.0001938101457804074, - 0.000372569402242443, - -0.0013580042054341147, - -0.0009365202580051406, - 0.0014330546496883658, - 0.0008111422336097238, - -0.0012462601199678327, - 0.002343495096694586, - 0.0015308739867676187, - 0.0003027784658183141, - -0.0015685522647677188, - -0.0007477888097463911, - -0.001415656009527933, - 0.0006339637061140557, - 0.0016428737773384412, - -9.340981497572807e-05, - -0.0004071413471978307, - 0.001096445330979068, - 0.0006228768951962169, - -0.0007328570612140096, - -0.0012421590589496287, - 0.0002381978580383397, - 0.00021353883458689738, - 0.0006127000602263917, - -0.0015957430878166898, - -0.0008214800593939335, - -0.00032298667879754176, - 0.000561719937809558, - -0.0010958448924416786, - -0.0014305136353833091, - 0.00018791998201281104, - -0.0010313158361834518, - -0.0011424037467276055, - 0.0016102639719487387, - -0.0009084545399730611, - -0.0006254188171753298, - 0.0010311327835071582, - 0.000576440408162209, - -0.001298499580328168, - 0.00023826537048987832, - 0.0007244267217093179, - -0.0007905610422155467, - -0.0007636209070405859, - 0.000439069470931857, - -0.0004585768566687382, - 0.0015524542136690017, - -0.000869387509673273, - 0.0009414511165836013, - -0.0013076041848999777, - -0.0013714966967809056, - -0.00039472660810975664, - -0.00040518645701625295, - 0.0023961546429754716, - -0.00040300257861724327, - -2.744042078628406e-05, - -0.00042133721435594346, - 0.00034458608126861084, - -0.0004091525666152333, - 0.002114258938370696, - -0.00011945181239147124, - 6.622478926699147e-05, - 0.0006234533119170626, - -4.3528473954350295e-06, - -0.0012408460912243706, - -0.0013178770668568539, - 0.0007101501645054546, - -5.165950302788903e-05, - -0.0016902412408299602, - 0.0015126571825348188, - 0.0004765787935339555, - -0.00047958016845813466, - 0.0008770907205263376, - 0.0008147965698337045, - 0.00019181855749259745, - -0.0016380714558549797, - -0.0003642822927037895, - -0.0007709197795052632, - 0.0003665899239151067, - 0.0002744808032335426, - -0.002359521901536031, - -0.000605417869186165, - 0.0002983097016812514, - -0.0005202483812447768, - 0.0015308855383594827, - -0.00025662426758649073, - -0.0007565947696268481, - -0.0005202254559876444, - 0.00018344596920064144, - -0.0006721454835467306, - 0.001796356102570537, - 0.0005502038425917774, - 0.001010939076285576, - 0.0003063168287288142, - -0.0004577960017273686, - 0.0002656676652578654, - -7.717256443780281e-05, - 0.0002294197257954555, - -0.00020026021711493281, - -0.0004259732863904414, - 0.0006751085792519777, - 9.620506385120056e-05, - 0.0001564052633383125, - 0.0010224247487476525, - -2.8332988332357916e-05, - 0.0017443318620064606, - 0.0008604280922685426, - 0.0003680317998976993, - -0.0010927240001162622, - -0.0006473370211537532, - 0.0002308602863378496, - 0.0023527563584418852, - -0.00032386454680245855, - -0.000373038206558341, - 0.0007404101448320426, - 0.0015816206383512054, - 9.856684112150799e-05, - 0.0008142677221394199, - -0.0005789552686308254, - -0.0007375801404057064, - -0.0020245422015812945, - -0.00021462856963585576, - 0.0015323412818560212, - -0.0008850126990845662, - 0.0007805625780603216, - 0.001263440710242871, - -0.00018418685669543302, - 0.00033253105774079625, - -0.0021207894367698942, - 0.0001130844007594011, - 0.0007260981013613283, - -0.00010660751370841694, - -0.0009316707105626264, - -0.0018027342356164095, - -0.0009632477245917985, - -0.0005680591055207315, - 0.0013534265741852094, - -0.0024381121160576094, - 0.0003107748233309092, - -0.0011207199541883425, - -0.0016807989484303688, - -0.0003479534596051985, - 0.0013434228571147443, - 0.0017718810502717903, - -0.0005273632953546887, - -0.0021002239470003688, - 0.0006976018798512707, - 0.00013817511286227352, - 0.0005087504631851684, - 4.986998955428451e-06, - -1.6769798607543676e-05, - -0.0009083002392748948, - -0.0001124508676429066, - 0.0004634226859396735, - -1.4654450493455364e-05, - 0.0006582972648173997, - 0.00023221882602789167, - 0.0016677070032594856, - -0.0005063444925018134, - 0.0006313961303253775, - 5.553100170373969e-05, - -0.0010494155163897829, - -0.0004976029545324535, - -0.0006946410625583721, - -0.001027870877329655, - 0.0008288342815816306, - 0.00012750891552571947, - 0.0005075815392947252, - 0.0029929230392071768, - -0.0010230827237102259, - -0.0016938763509311736, - -0.0003281411837005315, - 0.00021541999726197347, - 0.0005379771134872255, - 0.0007081351870514423, - 0.001659922005327155, - -0.00038780736911781427, - -0.0017596973354063988, - -0.0006844945840320447, - -0.001653046357771775, - 0.0005323126887893464, - -0.0012149967376942155, - 0.0001514282608900639, - -0.00034088522294773533, - -9.413523238307255e-05, - 0.0002552742372601219, - 0.0011184875781187443, - -0.0006338201853201165, - 0.0003136007036807697, - -0.0006831159293839686, - 0.001197593887295791, - -2.652016841440732e-06, - -0.00035091420708202175, - 0.0006530141083300361, - -0.00024831250640292983, - 0.000837677314191885, - 0.0004700443797853085, - 0.0004563831672439356, - -0.0007839912058107035, - 0.0007292869852568323, - 0.0011614529441879328, - -0.0021861405824484584, - 0.0003593046735249144, - -0.00043435827580903265, - -0.0011043268084642472, - -0.0002162932808999981, - 0.0008380108791029238, - -0.0003106804391430424, - 0.001997794841562154, - -0.0006191916912678759, - 0.001488761618392644, - 0.00048229331191524365, - 0.0009721390361737995, - -0.0003172808379678208, - 0.001061574013792161, - 0.001280560046998281, - -0.0012309576209725921, - 0.0010425573231177111, - 0.0007907561617477984, - -0.001539651755983461, - 0.0005410159692292031, - -0.00034973845889793733, - 0.00015778227587578383, - 0.0009829688824269716, - 6.720642501832303e-05, - 0.000956278278232665, - 0.0013525758285242253, - 0.00026970715503013006, - 0.00014643045994850118, - -0.0003322551319262843, - -0.00025224300735307125, - 0.0004650344645347146, - -0.0021020122553705362, - -0.0013245779462011118, - -0.0008207770772314271, - 0.00032808480929532333, - -0.0006099907176648594, - -0.00016380633175211586, - -0.0014209029072682145, - -0.0009326612599706788, - 0.00036820725088570344, - -0.000852493713703593, - -0.0005328229600329452, - -2.590346704774944e-05, - 0.0009784547506208933, - 0.00022851084354357442, - 0.0010916737952472927, - -0.0006529665159508432, - -0.001149807412999239, - -2.9824471036258966e-05, - -0.001493967247069508, - -0.0008028615862079691, - -0.0023305867799424903, - -0.00027557709897148617, - -0.0007792528371648686, - -0.0005301829178054355, - 0.0001896319401948172, - 0.0025539006417058395, - 0.0009689238401690807, - 0.0014652597683576444, - -0.0002962575124882185, - 0.0017802207594098834, - -0.0005326519505361227, - 0.0018593470629078778, - 0.0007798298687501769, - -0.0011633402248087286, - -3.200720841161789e-05, - -0.0010482906744838892, - -0.000529454189980235, - -0.0004028380905605427, - 0.0014698825382554062, - 0.0010967830400649434, - 0.001383405393396269, - 0.00071517220356453, - 0.0002164159809077532, - 0.0006860057172816111, - 0.0001937452665944256, - 0.00044624472933121005, - -0.0005497903247697625, - 0.0017820743101841015, - 0.0007658552929929637, - 0.0006946789215544942, - -0.0029027985251905398, - 0.0013616156344715778, - 0.0012594256295004175, - 0.00039668794023958384, - 0.0009923127565245624, - 0.001241760326257789, - 0.0013152261508327012, - -0.00028536480674967247, - 0.0005436779071710193, - 1.4110662120598704e-05, - -0.0002958531007693781, - 4.974725480681015e-05, - 0.00048145508494389804, - -0.0016431726343815501, - 0.0019006266734170837, - -0.0006151280752536081, - 0.0002543731357222648, - -0.0005035798991182117, - 0.0007071128760432465, - -0.0011469767569602346, - 0.0003144054011359, - -0.0005519822641978431, - 0.0026472443169182104, - -0.0007687217125820219, - 0.0027809844888395992, - -0.0004608914678239658, - -0.0016026508736615395, - -0.0004680928374706901, - -0.0007445600507236087, - 0.00179601481167981, - -0.0007914858962458186, - 0.0005177487252302804, - 0.00014701134561610895, - 6.724804362754077e-05, - 0.0009515561170750569, - 0.0013087233838390664, - 0.0003598821238845363, - -0.0007567899728660463, - 0.0008730898585230936, - -0.0010510292778822031, - 0.001056433954255969, - 0.0012089031897267331, - 0.0021748169533757715, - 0.0013940095050185908, - -3.755353399572295e-06, - -0.000743635378239424, - 0.0015028021425313282, - -0.00045208412849344744, - 0.0019567295997602965, - -0.0007176163918530209, - -0.0007333555258956035, - -0.0016804592047878245, - 0.0010698908081462467, - -0.0011157748952318417, - -0.0008413385224357131, - 0.0003148666437249423, - 3.36039164150578e-05, - 0.0008542998869617265, - 0.0006772410517818126, - -8.286482819870939e-06, - -9.088682747321022e-06, - -0.00010877091133263642, - 0.0011212614418390197, - 0.000581673437909349, - -0.0012872410840232941, - -0.0002103042425140582, - -0.001370963678759745, - 0.0017497008852365196, - -8.172156599624899e-05, - -0.0007442142324287842, - 0.0015659493716710569, - 0.000583544698531086, - -0.000744600011270551, - 0.0008930709505492132, - -0.0014969740101942444, - 0.0007660519509459178, - 5.191640936217562e-05, - -0.0007841162010920703, - -7.820149309890382e-05, - -0.0005682525818117385, - 0.00042670036718965977, - 0.0006162666076533955, - 0.0013915041378351482, - -0.0001299445680523206, - -0.0006452950454907389, - 0.00023451803863765587, - 0.0009972249996829745, - -0.0011070075366425734, - 0.00039904424848144856, - -0.0007234984961317467, - -0.0010251002879321444, - 0.0014836090167731112, - 5.0749145606860836e-05, - 0.00012599315223669626, - 0.0016438410489306244, - -0.0021645573613187584, - -0.0017919148232956492, - -0.0006871455222614308, - 0.0017730849732513322, - -0.00016491547114193806, - -0.0006441148421911325, - -0.00020346001695570543, - 0.00020091924693323163, - 0.0009509211485534581, - -0.0001377762789400114, - -0.0014343362508586644, - 0.001708565364034798, - 0.0005219718294641379, - -0.000219510958703988, - 8.811664645978053e-05, - -0.0006224514851772229, - -0.00021889469686123145, - -0.0007046019130069077, - -0.0002677065925271808, - -8.052218880969025e-05, - -0.0006270260281342212, - -0.0005154109567344631, - 0.0008246984344477578, - -0.001241331788699384, - 0.0006449239882889491, - -0.00016318281917491561, - -0.00010466346567318506, - 0.0013193783655602643, - -0.0005577119576392916, - -0.00040992084838934443, - -0.002130147074458596, - -0.0005607572800872515, - 0.001252194681247076, - 0.0017056498496639972, - -0.00017398035720431863, - -3.09480322770399e-05, - -0.0017432514169185304, - -0.0002516520545283721, - 0.001469312635573621, - -0.0005068776648076448, - 0.0011442734561974263, - 0.002469021311323047, - -0.0015852264920188722, - 0.0005714982812081057, - -0.00020642589099394943, - 0.0007274858648080288, - 0.0006740322192353804, - 0.0015155604741075867, - 0.00043184914895475044, - -0.0006654642739315751, - 2.3506528716795705e-05, - 0.0017425615270847436, - 0.0016105667003940534, - -0.00023761247279870947, - -0.0014898497514368267, - 3.342772233501411e-05, - 0.0006116911883412261, - -0.0008078196150099095, - 0.0001486032975515706, - 0.002005173277654884, - -0.0004672528703311903, - 0.00011822126847900848, - -0.0009942220047291048, - 0.0013255309340289621, - -0.0010631021566857256, - 0.0009986895012279932, - 0.0002971917553769897, - 6.861591029133491e-05, - -0.001145552669175372, - -0.0015996811894263604, - -0.0013371814203603759, - -0.0007202625849105015, - -0.0002804183078662832, - -0.001379848497834437, - 0.0007017581404995034, - -0.0006343646249618208, - -0.0005741915218229991, - -0.0009605145502981141, - -0.0026381553278220344, - -0.0011047103264691205, - -8.955979883021483e-06, - 0.00016483358349963438, - -0.0014368633863314966, - 0.0004723380284056077, - 0.0013648540833220604, - -0.0009618842671725112, - -0.0003175828910587935, - -0.0001780716658013684, - 0.002115744401349556, - 0.0004951022924753676, - -6.462602875363752e-05, - 0.0014607965806438215, - -0.0022264253337576185, - -0.0012099443992618197, - 0.0010908101632765208, - -0.0013328479307470817, - -0.0003749703356691381, - -0.00021374331916564936, - 0.0003631531729115999, - 0.0005124450011267749, - 0.0011157275350498705, - 0.0020477702828844545, - -0.00044221606468976607, - 0.0007828433553943128, - 0.00021284728734052976, - -0.0001715141835143652, - -0.0008107279981388699, - -0.00024386364625176782, - -0.0002510237745329659, - 0.0006841842596602454, - -0.0005103279524930366, - -0.00011484946645998171, - -0.0010878029481469677, - -0.0007797374386003012, - 0.0011819022247989003, - -0.0015129934637353475, - -0.001344956937557258, - -0.0005764428320890134, - 0.0016359574168386187, - 9.496067141946617e-05, - -0.0009406475275030333, - -0.0013192548699302834, - 0.00025784717801298593, - 6.748123568565018e-05, - 0.00021002495155283732, - -0.0005566997977772358, - -0.00012283612156649675, - 0.0008088470445154607, - 0.0006518824531068353, - 2.660196830914297e-05, - 0.0014350155845991917, - 0.0004541786246193126, - 4.737002204397086e-05, - -0.0005620732610432, - 0.0005932670130890925, - 0.0013074866071071832, - -0.0020152940881511617, - 9.135104062793096e-05, - 0.0021324812103577745, - 4.753217813507073e-05, - -0.00018516038574835732, - -0.0012798961916182148, - 0.0008139177416209319, - -0.0003760436792389282, - -0.0020011081899446405, - -0.00018223427390190824, - 0.0005233730240659236, - 0.0007848304141595025, - -7.075536977044539e-05, - 5.770152099407607e-05, - -7.129153466372259e-05, - 0.0010261380131196944, - 0.0010394056080418972, - -0.0008754421003046428, - -0.0012835347253098055, - -0.0008215343586256087, - 0.0007505126139505294, - -0.0004565096642046009, - 0.000748589200576165, - 0.0008322353332105189, - 0.0006240110232674391, - -0.0009842905655170076, - -0.0008901882198597405, - -0.0001777386088922019, - 9.455280845114019e-05, - -0.0005494075133046489, - -0.000668043731156558, - -7.136203590880902e-05, - 0.000216098745731402, - -0.0015139396072893284, - 9.213042232536501e-05, - -0.00023591283781976947, - -0.0011025792107634024, - -0.00033631954927111434, - 0.0012250750343095502, - 0.0010035768561202341, - 0.0017796572712545603, - -0.0006400070288697731, - 0.0003733074243449724, - 0.00044263906627598664, - 0.0012994355069348895, - 0.0006125426126993235, - 0.0012253301771817362, - 0.0007101262202350554, - -0.00028982185324827466, - 0.0007854062275590555, - 0.00032066946306256474, - -0.0006680290815226875, - -0.0021199144324107557, - 0.0027652527668606684, - -0.00019814041738051315, - -0.0002339112862153793, - 0.0010344652545786308, - -0.0009959558922682406, - -0.0003806195770104112, - -0.0007193969573155002, - -0.0014889449944887824, - -0.0001936503395513231, - 0.0009729326564787799, - -0.0008940251765100235, - 0.0018967022158037365, - 0.0005106567226462211, - -0.00038498214555283673, - -0.0004897212478125266, - 0.00047326645784367694, - -0.0006274919385717124, - 0.0013503102225105605, - -0.0008277517152341265, - 0.001674721980662918, - 0.001342509879342613, - 0.0010756351156762662, - 0.0008440392875917248, - 0.000126524456574246, - 0.00011805927114429647, - -0.0013493783292458702, - -0.0006931847830813489, - -0.00019464294604736336, - 0.0003290663465072499, - 0.0002922721721879952, - -0.0012486828539472212, - 0.000544918877771488, - 0.00041605985608636763, - 0.002558458759383894, - -0.0017020232213625422, - 0.0019766196189253933, - 0.000516099454455516, - 7.077975886555157e-05, - 0.000540910829684167, - -0.0024177365003361, - -0.0005142360303994665, - -0.000912953400436699, - -0.00027125780376538764, - -0.0001194106326688135, - -0.001351229145931053, - 0.00029959448167192785, - 0.0006088856315177854, - 0.00022084779252099873, - 0.0001917226115585177, - -0.0005325600851576792, - -0.00014764823589880495, - -0.0008966781048891506, - -0.0008020836728280206, - 0.0013728365233776547, - 0.0005479594683074377, - 0.0017424089057755832, - 0.0009503511165308097, - -0.0004475175666625027, - -0.0006995975636744822, - -8.28842103242846e-05, - 0.00027112026331650713, - 8.442830497189238e-05, - -0.0008358938049392275, - -0.0006368560244861885, - 0.0012125687926267527, - 0.001561900701990395, - -0.0003889949592719235, - -0.0021486149782155525, - 0.0006026579385508468, - 0.0008930173105332963, - 0.0004163448028542012, - 4.335736011406367e-05, - 0.0003807001606099618, - 0.0009605183371911605, - 0.0019962168064455604, - -0.0006306654336877232, - 0.0011650453186353193, - 0.0002694382566677372, - 0.001480843532659203, - 0.00038011431781949904, - -0.0004728712295562272, - 0.0002531691636017218, - 0.0018458345276755434, - -0.0007291842470513029, - -0.00020454686028267686, - 0.0011944215894808732, - -0.0005960668183699625, - -0.0005010992206357415, - 0.00020701148196729003, - -0.000503547489312463, - 0.000528740096995221, - 0.00015272834287833364, - -0.0019066158326731266, - 0.0002871919855110456, - 0.0012108132645593532, - 4.4834924827932346e-05, - -0.0012363400870938463, - 0.0002671636067103153, - 0.002162983949433178, - 0.0004623840141864275, - 0.00017469956551333338, - 0.0010309358379078243, - -0.0006599015291042261, - 0.0009518827381440358, - 0.00015333299289808767, - -0.0003996915558282059, - -0.0013791387385498348, - 0.0006504256278597551, - 0.0008424377782038722, - 0.00359589092348068, - 0.0004250242438632512, - -0.00036928336137009594, - 9.208873525465912e-05, - 0.0009692386041386471, - 0.0007078103122500692, - 0.0014782836153955318, - -0.0003347408792310767, - 0.00035049081702197564, - -0.000920370486758462, - -0.000505175199857332, - 0.001439731063638546, - 0.0017590786247109278, - -0.0006349564096096598, - -0.0006591719673532025, - 0.0003499138862514602, - 0.0014016517763536479, - -0.0007613271964025961, - -0.0003042939299990055, - 0.0009931741037792795, - 0.0013110843190967656, - 0.0004039405514366386, - -0.00032968801383516974, - 0.0007134165156761852, - 0.0005585119941361237, - 0.0005017975485484282, - -0.0005603451334525485, - -0.0010650194710708806, - -0.00018083036279163917, - 0.00030002717829923976, - 0.0007192008579033225, - 0.0007343976700407872, - 0.0014658023310651213, - 0.0002728685095595683, - -0.0021980286830938327, - 0.00081795757749025, - -0.0007738193069210928, - 0.00038206733953491325, - 0.00025616003563193584, - -0.000155034049522874, - 0.0008355795592422431, - 0.0005702791776794262, - 0.0009168364914096187, - 0.0009721651275992492, - 0.00030640268551714413, - -0.001351487207282347, - -0.00011649487258778523, - 0.001957442898589568, - 0.0009775816609704643, - 0.0009410895371097052, - -0.0009733294978599081, - -0.00036005433223396197, - 6.0246199849393225e-05, - -4.69967405320962e-05, - -0.0016256514406905742, - -0.0002984562839716131, - 7.427480544061279e-05, - 0.0013132118333200092, - 0.00024911243003528755, - -0.0014494735937355444, - -0.0005916763886415848, - -0.0006303826722378856, - -0.00017092760738026688, - 0.0005301498066974993, - 0.001887505380426441, - -0.0004957447249259827, - 0.0005288332325675463, - 0.00010065282460434193, - -0.0011228745655016297, - 0.001715111012994252, - 0.00020248510175037917, - 0.0014439722918324605, - 0.00041488400316413006, - -0.00015533705407354685, - 0.002499335418177656, - -0.001704981765175746, - 0.0013992784626082827, - 0.0013222058544507707, - 0.0006914176990885747, - 0.0004991538410737026, - -0.0003336561032035131, - 0.0007158132561365173, - -0.0016087713045979581, - -0.0014151922610548076, - -0.0007481464610372649, - -0.0008399363605646913, - -0.0002836353906178976, - -0.0014293210441319551, - 0.000522482698317965, - -0.0005281666017045822, - -8.189952457471703e-05, - 0.0012890296984659644, - -0.00039823755319617356, - -0.0004168134771345332, - 1.8650543511110676e-05, - 0.001957134334557882, - -9.592174717962777e-05, - -0.00014705020074459567, - -0.0009803180817926282, - -0.0013351882497214293, - 0.0008401118130149297, - -0.0014383712722480192, - -0.0009988946963033324, - -0.0008425084629347056, - -0.0011095490162978125, - -0.00014316928707833843, - 0.0006148296656101154, - -0.0009274914552852472, - 0.0006106346164522902, - 0.0007237434031094965, - 0.0008673404169977046, - -0.002880795841944561, - 0.0003963029283435807, - 0.00026162888002909595, - 0.00012579557827932628, - -0.0007939375943254024, - -0.00026330864655339114, - -0.00042600645256668236, - -0.0003397327423342759, - 0.0013043733003764316, - 0.0009962656828378356, - 0.000781114019129351, - -0.0007025740587056526, - 0.0010175301659552144, - 0.00015305580453279724, - 0.0017274490683275422, - 0.0017940428724999558, - -0.0005457543014472437, - -0.0016249911171704516, - 4.091644451802143e-06, - -0.0011844455754496175, - -0.0005551847737911608, - -0.0005277632903330206, - 0.0007600844770796664, - -0.001573582571747452, - 0.0013104114238422435, - -5.3630336949633356e-05, - -6.415298148966338e-05, - -0.001061730425902835, - 0.002808480853425946, - 0.0004392202782263637, - 0.0005868643901906399, - -0.00034991171525736815, - -0.0007437429008840212, - -0.00016029300169717654, - -0.0002625240367903201, - 0.00025573628217535926, - 0.0011793733224952927, - 0.0015356594810722638, - 0.0019787147265058523, - -0.0002982619137195132, - 0.0005077139537845828, - -0.0004740268945027693, - 0.0007430151620314687, - -0.00032862159947583217, - -0.00016324587333142078, - -2.9530014196455016e-05, - 0.0015292968989686357, - 0.0012364191879786982, - -0.0020840753092336347, - 0.001299799832377028, - 0.0005416037873350683, - -0.0014882639388038848, - 0.0012626490376774233, - 0.00127941200884351, - 0.0006940028587990467, - -0.0018017037608480274, - 0.00022445377137645506, - 0.0002474042129336027, - 0.002224491563468685, - 0.0009005387384173672, - -0.00033707884669867497, - 0.000377873247096031, - -0.00012112911408293145, - -0.00020497701065300957, - 0.00018281107538239128, - 0.0003702737440431677, - 0.0008265114346697118, - -0.00023087949548472348, - -0.0008895338970722097, - -7.233039359985714e-05, - -9.695482324701157e-05, - 0.001079196633520655, - 0.0007281923780977198, - 8.438588602469563e-05, - 0.0006969450641857704, - 0.002012715522015295, - 0.00038551239878984264, - -0.001605013199221039, - -0.0004271562890902593, - 0.00016299317818572884, - -0.0008684497882191369, - 0.001806632112654166, - -0.0006508531198880682, - 0.001029099831892873, - 0.0015230004051628473, - 0.0012302455376744918, - 0.0003522526737123412, - -0.0008710514188605598, - 0.0005255948341094381, - -0.0027065749350163775, - -0.0013273020004516166, - -0.00040362946415291345, - 0.0019809341085995215, - -0.00043641283122201744, - -0.0003948579160228597, - -0.0009019466793328684, - 0.0006506136227106263, - 0.0014894487214036959, - 0.0008344697315164984, - 0.00022797532919476476, - 0.0010602151764064506, - -0.0015716372689556616, - 0.00020588628234275265, - 0.000631786991398417, - 0.0020239261933032086, - -0.0012462555584498859, - 1.3817466668687861e-05, - -0.00018046749668087413, - -2.2534239119913694e-05, - 0.0021333000683835886, - 0.0008999232234480257, - -0.0014834037677984864, - 0.00025267440879150687, - -0.000726567222091647, - -0.0004462472968754703, - -0.0006611588165190096, - 0.00123102631572915, - -0.00035299897419923694, - -9.630765381110325e-05, - -0.0006695637144469044, - 0.00044883762738695277, - -0.0006149202101783155, - 0.0008512124562648426, - -0.0009738297844662396, - 0.0008102203596492935, - 0.0008541970722178353, - 0.001230955671094133, - 0.00158010406957959, - 0.00024338370232563302, - 0.0006015063244248749, - 0.0005995838677216508, - -0.0004662017605350482, - -0.0008314769853798176, - -0.00039934038375279114, - 0.0004120279829709584, - -0.00037019454777104045, - 0.000854762654147967, - -0.0016027510337066784, - 0.0007506644608232443, - 0.00254121570021943, - 0.00044651238548845635, - 0.0005182890870842424, - 0.0012042321748079018, - -0.0005914372919221114, - -0.0012741910861909865, - 0.001665450081415484, - 0.0007246427313059104, - -6.504308212842903e-06, - 0.0008238044143953896, - -0.00044557023613054275, - -0.0008485268457649295, - -0.0010350732923208818, - 0.0028417768815095458, - 0.0001313867349150801, - 0.0015148918718029146, - -0.003882809138476061, - 0.0004862058117387321, - 0.0008684282285372168, - -0.0002375613307508695, - -0.0007018283249407599, - 0.00031318606504553853, - 0.0009034155818544703, - -0.0002829266206144352, - -0.0006456152742325461, - -0.00024640646265026544, - 0.00018626047742683263, - 0.0006535651130010384, - 0.00013253005129367222, - -0.00037745927670790856, - -1.0283587736500456e-05, - -0.00041339769579246507, - -0.0008347984885536537, - -0.0012623641316704818, - 0.003198565504009603, - -0.0021565978830661767, - 0.0008118512945633643, - -0.0008100701754180479, - 0.00012439979841866484, - -0.001732756595978752, - 0.0012654279441859449, - 4.105005089553503e-06, - -0.00031373511652144504, - -8.901231796338797e-05, - 0.001087625535320535, - -0.0008623642655136073, - -0.0008372245985592571, - 0.0003900373690626107, - -4.0617873051241186e-05, - 0.0027164610125039908, - 0.0009064593629970404, - 0.0009201957097455264, - -9.014163320803264e-05, - 0.000482377486146999, - 0.0005383095647131007, - -0.0006239059951280696, - -0.00022650837223111984, - 0.00047508514371761077, - -0.00044052854907114416, - 0.0014202223183027475, - 9.615906909280023e-05, - 0.0009400582085216473, - -0.0011335991835765794, - 0.0009348805698369181, - 0.0006814731604012816, - 0.00029881714881217314, - 0.0014176547757752305, - -6.093780768167312e-05, - -0.0014162846216166304, - -0.0008717941774186094, - 0.00020693391878619125, - 0.0004017131283972428, - 0.00026322864292926696, - 0.0005363398163580454, - 0.0008586336983615606, - 1.9737554331540527e-05, - 0.00046909218062612165, - -0.00020407565815967892, - 0.00030924020072817444, - -0.0001750055789586507, - -0.00040047967313308895, - 0.0004889194630347263, - 0.0003807877723634319, - -0.0002273903571626278, - -0.0008029964239537614, - -6.188837580838829e-05, - 1.9029064646817546e-06, - -0.0007232017945920786, - 0.0006508255585086683, - -0.0014538432789055157, - -0.0033698569839623327, - -0.00017777528700414953, - -0.0007715567746102573, - 0.0004393140972587318, - -4.393917288344568e-05, - -0.0007552427982265755, - -0.0004056972957881511, - -0.0001603278862755604, - 0.0011393388622767736, - 0.0018126993502013734, - 0.0009134765511756367, - -0.0006966552839788413, - 0.00014082821402552513, - 0.000690390481275387, - 0.0019043725883880263, - 7.891094591967981e-05, - -0.00022185121989130594, - 8.131768067417644e-05, - -3.90501210078499e-05, - -0.0013512533591511302, - -0.00039735135881990814, - -0.0006082009170923563, - 0.00020488542451141943, - 0.0008696528408042559, - 0.00041548140015184324, - 0.00041668733590919727, - -0.00114183849728229, - -0.0017046138649099948, - -0.0018640063985242829, - -6.186591099418663e-05, - -4.732943675997501e-05, - 1.2872485873498104e-05, - -0.0004783898028773713, - -0.0002923862538404533, - 0.0009843623794713338, - 0.00020549816863464133, - -0.0010299345552360212, - -0.0010547284695133314, - -0.0012226429292873588, - 0.001385232915377796, - -0.00012329144726607672, - -0.0001566688913889467, - -0.002419984116694407, - -0.0010854703942341506, - 0.00031282763086883553, - -0.00033978392224494477, - -0.000919196612431654, - -0.0007506129345695922, - -0.0007316899725001453, - 0.0007896825261314592, - 0.0013264360966085901, - 0.0008177002449256801, - 0.0008545419579151467, - 0.0003729878608991719, - -0.00042809503597289163, - 0.0008904294570492014, - -0.0010787326065935974, - -0.00016538802465809968, - -0.00024800256077800854, - -0.00041957556381877996, - 0.0010328390113968971, - -0.0009603886669770956, - -0.0007348457672694507, - 0.000915743041458313, - 0.00031503151310605375, - 0.00012298349867736067, - -0.00010601470283550478, - 1.3550927441332368e-05, - 0.003093165095283135, - -0.0016830000106511428, - 0.002847877870750326, - 0.0006063264475426826, - -0.0013386419098185309, - 0.00029378298061518283, - -0.00027142623955094187, - 0.0012721942654849202, - -0.0003243472169759716, - -3.862124282040416e-05, - 0.0005578710478072369, - -0.0012270978585922647, - -0.000660612161998056, - 0.0009811671701857887, - 0.0011110925257387463, - -0.0002756855339495337, - -0.0008883550861992307, - 0.0002686126987125112, - -0.0013617178740533186, - 0.0005234166341375377, - -0.0004618215999313075, - -0.0008335656035469502, - 0.0003990780352607424, - -0.001042035574527573, - -0.00044846057178022714, - -0.00039967321751272026, - 0.0007365273487516362, - -0.0005604324649248837, - 0.0012576920398567973, - -1.9080378662064053e-05, - 0.0014895504961676292, - -0.001408142899708975, - -0.00019354892402107573, - 0.0005868020881535755, - -0.0009527643213672623, - -0.0013236871518075813, - 0.0008047862563435627, - -0.0016146432327098813, - -0.0001486444193615148, - -0.0006325250638503229, - -0.0005789198928273141, - -8.676510064612114e-05, - -1.0070230778204862e-05, - 8.220687153147742e-05, - -0.0022812788845162284, - 0.0006089324110030306, - -0.00022242229498952945, - 0.00024711491074784546, - 0.0002594707034469208, - 0.0005415727496284126, - -0.0011523833279632792, - -0.0008559824248876613, - -0.00023703287988943437, - -4.852097913605096e-05, - 0.0024262149804167884, - -0.0014782658626248243, - 3.342560123643753e-05, - 0.00032549776339988465, - 0.0001536015239032428, - -0.0004010068299898637, - 0.00074512008270632, - 0.0018027778283845487, - 7.394780405829557e-05, - 0.0020400237790667002, - -0.0011981147096202696, - 0.00047277300878238515, - 0.0006848855570845431, - 0.00051216264900692, - -0.000653578223830173, - -0.0001559092315238754, - 0.00027682462750829294, - -0.0011622460673250312, - -0.0001517411635020831, - 0.0010854646875826663, - -5.891024504243822e-05, - -0.0014514283065740672, - 0.0005104873848902136, - 0.0007583611985331998, - -0.0019253617322511887, - 0.0006708605873806126, - -0.0003085286668635589, - -0.0016796197731153433, - -0.0011502011915689534, - -0.00016406232315483406, - -8.284354360364667e-05, - 1.5851511109504784e-05, - -6.474248823768487e-05, - 0.0007861618167828177, - -0.0005627877000523511, - -0.0005815398016683855, - 0.001284128040598037, - 0.0011194491926147358, - -0.001603236658480143, - -0.00027609058150616017, - 0.002165793974074465, - 0.0008518025923223041, - 0.00020654576018870634, - 0.00035863307289465946, - 0.00013562090646288469, - 0.0003373725725708917, - -0.0005158064034471784, - -0.0002484318245770268, - 0.0003598108267413451, - 0.0014471437236881592, - -0.0006623223314848838, - -0.0005772360993915072, - -0.0008650400998671263, - -0.001886920857463405, - 0.0005671676991361365, - 6.003598597985565e-05, - -5.111600839022779e-05, - -7.188172126914119e-05, - -0.0003351699834309307, - 4.352736179306453e-05, - -0.00015144743483892062, - 0.000453588867882997, - -0.0004256907876332319, - -0.0018884055677558715, - -0.0005913711819079907, - -0.0011944727581674603, - 0.0008322723744668733, - -0.0014460153168294858, - 0.0014357265550351162, - 0.0004918439739645979, - -0.00010863575397043672, - -0.0009807506098928253, - -0.00019507945805671107, - -0.000423736130160426, - 0.0004471187417536688, - -0.00014648648057167664, - -0.001152917583385986, - 1.1556862298495e-05, - -0.0008768402849708667, - 0.0008229281153344315, - -0.0003225551818547284, - -0.0013841928186533346, - 0.0005181348261610761, - 0.00048775358905497966, - 0.0009358459095280013, - 0.0009204457684420559, - 0.0010815965225041521, - -0.0015499366436078083, - -0.0010323616082665544, - -0.0006152553940905548, - 0.0009177064500724013, - 0.0005486548962079097, - 0.0008212703809765041, - -4.89166226639001e-05, - -0.0013636850881096946, - 0.0013811400092565622, - 0.0013967383663765064, - 0.0001786228375392266, - 0.0011846945606219493, - -0.00016629791245207146, - 0.000829836664680761, - 0.0003691613299289007, - -0.00021433939215416504, - 0.0003063895550980921, - -0.00017114634455798013, - -0.0003218406203784842, - -0.0006482909702307245, - -0.00020714952215862827, - -0.000506296710766811, - -0.0002456394644720231, - 0.0003097853139876022, - -0.0013662613894363284, - 0.000635756695776062, - -0.0002805100986807595, - -0.001116733522344486, - -0.0006954986817822579, - 0.00033724780792680726, - -0.0006581230951055712, - -0.0002215808252077568, - -0.0004512295358660859, - 0.0008592449196989094, - -0.0006651681739575212, - 0.0005331114270578802, - -0.00022716133653138883, - 0.00044798665312514277, - 4.840412135873119e-05, - 0.0016087962089940454, - -0.0002842673390260694, - -0.001816064757595224, - 0.001121420296572009, - 0.00048749018168651564, - 0.001151587599810429, - 0.0004990323757458156, - -0.0006484623411776956, - 0.00013787103571810254, - -0.000242658624280929, - -0.001421627258140475, - -0.0008167813549340438, - 0.00034904800598009546, - 0.0006220221819684887, - -0.0005640865193557756, - 0.0003190662812718171, - 0.002206721476930736, - 0.0007365928042976959, - -0.0013213056832381512, - -0.0016033082731433087, - -0.0019129550932310117, - -0.000273717581111457, - 5.245087924400654e-05, - -0.00033537594161124314, - 0.0007171947792873556, - -3.487817277352202e-05, - -0.0007188989123434209, - 0.0003224096543873004, - 0.0007662404667502308, - -0.0008349499159151645, - -3.8849957170544065e-05, - 0.0012234483651600452, - -0.002478283237703946, - 0.00168801323597241, - 0.0008259514708961593, - -0.0004984340433380717, - -0.0006924598211645983, - 0.00044328613651542644, - 0.00020167758475095446, - 0.000496467565818422, - 0.0007063966719003885, - -0.0006204174242077555, - -0.0014301228087017991, - -0.0026234317067067208, - 0.0004816697568408415, - -0.00015967190665229738, - 0.0018745739820610712, - 0.00010842714243400586, - -0.0011197224062763078, - -0.0014206806097236703, - -0.0005989830914093382, - 0.0002556257024482322, - 0.001332981271218962, - -0.0006057020049746593, - -0.0010514545922812465, - 0.0019475012018238887, - 0.00042465587985546964, - 0.00020833238919879186, - -0.0002751285652501693, - 0.0008267623188739203, - -0.0004040159264615945, - -0.0005340841993495568, - -0.0019257448925993979, - -0.0021435432549450867, - 0.0003757323892519585, - -0.00025882421728230576, - 0.0009896889777688909, - 0.00104678161557469, - -0.00012837558650582765, - -0.001236305416557364, - 0.0008327238486467903, - -0.0003879736461293409, - -0.000379159597438043, - 0.0010559992730584892, - 0.0016185774627953179, - 0.00048417558350294886, - -0.0016766017538999156, - 0.0008743703760019925, - 0.001862377579052536, - -0.001977645274405627, - -0.0005884461199387966, - -0.000567478527907414, - -0.0005799708214407659, - 0.0002185456180693989, - 0.0005199627954071387, - 6.442163459540464e-05, - 0.0010830320723623419, - -0.0010918680530115398, - -0.00026673500400430057, - 0.00123362846192931, - 0.002436701741763233, - -0.000787313631587485, - -0.00017241377860115317, - -0.0011892818448458059, - 0.0002845683362634208, - -0.0007960894017363236, - -0.0004400193302154929, - 0.0003905935704397181, - -0.0010015641860458544, - -0.0008135449734252002, - -0.0001457549798515913, - -0.0013549234836304274, - 3.514835860662146e-05, - 0.0002841643418933622, - -0.0002408503269707159, - 0.0005585681577735125, - -0.0007639542539279791, - 0.0003019127364803162, - 0.0010042084297101456, - -0.0005014814740446781, - -6.036333591691319e-05, - -0.000725741294198608, - 0.001534891935295563, - -0.0008064288266645432, - 0.0006160517841404059, - -0.0006667970478533964, - 0.0008848030135536917, - 3.8606434084422015e-05, - 0.0007498238826240229, - 7.02719048692325e-05, - 0.0011174017299647111, - 0.000560521531678369, - 0.00014627546563599533, - 0.0006812777037958677, - -0.0016207723872071324, - -0.0003544710378489807, - 0.0001307002839148772, - -0.0003465601148240904, - 0.0004754054441682656, - -0.000758368383089291, - -0.0021615891251426625, - 0.0007411174671755877, - -0.0004231837484136033, - 0.0022030634575773765, - 0.0006417200744654985, - 0.0005571130010231662, - -0.00016312922694492594, - 0.0010712212439888912, - -0.0012757753286105132, - -0.0009896739895494872, - -0.0001046082440486584, - 0.0021429919373376527, - 0.001110013829746581, - 0.0005061765738488312, - -0.00106325526229832, - 0.0005977753839526987, - 0.00036706656210657167, - -0.00020449067027971407, - -0.000743078267886058, - -0.0009224673445646103, - -0.000308523930115392, - -0.0021174765362231293, - 0.0005646345328769474, - -0.0020011157184402356, - 0.00033867088930172585, - 0.0012946261534088164, - 0.0006203897347835873, - -0.0010308964408502503, - 0.0008337171806602768, - -0.0019288499659682078, - 0.0001674536658004238, - 0.0010696727764201593, - -0.000454299780286957, - 0.00033062480976981355, - -0.002465139494189151, - 0.0014160852402069699, - 0.0009759094955850585, - 0.00028720133108568, - 0.0010429197290613597, - 0.0024974909138242947, - -0.000601817234426543, - -0.0008230487659452904, - -0.0022269916594953422, - -0.0016400116680298008, - 0.0020509907683300436, - 0.0009540552561496183, - 0.0005748465880884964, - -0.00045525339329050983, - 0.0003445480497648954, - 0.00016395656346035028, - -0.00045861894869365894, - 0.0011631045492326794, - -0.0008045584476961722, - -0.00034092588572599115, - 0.001850418122906537, - 0.00228739319576137, - 0.0010368952608175522, - 0.00010760644139527237, - 0.0013814102199189101, - 0.0017439150622343145, - -0.0019226743104948608, - 0.0020362452737475137, - -0.0008648066334482254, - -0.0012318205383298688, - -0.00040392865036647943, - -0.0007327517285148139, - -0.0008126496523691004, - -0.00023498056466663114, - -4.1610538067866524e-05, - 0.0005670191229093787, - 0.0011799206290233227, - -0.0011788993996905328, - -0.000672156023725853, - 0.0009153893705932475, - -0.0008493148234958069, - 0.00022194915851187744, - -0.0014487204233154074, - 0.0013540915084576633, - -0.0008176033113674228, - -0.0011665186166627877, - 0.00014176447575836286, - 8.374471476993355e-05, - -0.002461651853910593, - 0.0018802010106362711, - 0.0014683806652027213, - 0.00021132126904394746, - -0.0005325310940829865, - 0.00014364235004742348, - 0.0002428474187113311, - 0.0021190966796334142, - -0.00012759210634297896, - 0.0003788583989145702, - 0.0006822072102348468, - -0.0008939521449940554, - -2.6066844241565793e-06, - 0.0002872607398839556, - 0.00012276801155143726, - 0.00022211905128194555, - -0.0014730419328023738, - 0.00022257376462732134, - -0.00026351175480372063, - -0.0018696247513397797, - -0.0008663539676869117, - -0.0009484848953238499, - -0.0005088172241830954, - 0.0007009085179490633, - -0.0007886743950273725, - 0.00022576838720346398, - 0.0001674683234712702, - -0.0008222935852854178, - 5.628196891506392e-06, - 0.0012262772831698385, - -0.000654904781410701, - -0.0011541718040989995, - -0.0006733906245252385, - -0.001125244397459283, - 4.124994515223607e-05, - -0.0005181058922957913, - 0.0001385578656422105, - -0.0006167820478066201, - 0.00011804864603426763, - 0.001976147041494728, - -0.0012389348978482553, - -4.567471173643025e-06, - -0.0010358018795193474, - -0.00040198409453266694, - -0.00022813982236908988, - 0.0008048173579807625, - -0.0007807304641213796, - -0.0015223802204750619, - 0.0003117025093194575, - 0.00034902896881372687, - -0.002265119329297484, - 0.002006802938723157, - 0.0023018995350625004, - -0.0002851701843516549, - 0.0023375493710745994, - 0.0009375961514604932, - 0.0012520233058393997, - -0.00022600333210942203, - -0.0005990655976114411, - -0.0001437279820689161, - -0.0008626448715888855, - 0.0002740565803004274, - -0.0009816526366928566, - -0.0005450370621256152, - 0.0009237657698407558, - 0.0006179738289859525, - 0.0001937808772818176, - -0.0002972212159249236, - 6.587747550287687e-06, - 5.503069099021156e-05, - 0.0006856532150265749, - -0.0012603519138339916, - 0.0002334530302558209, - -0.0004140613520645428, - 0.0002365538332223839, - -0.000341247839018576, - -0.0007079490152603809, - 0.00011260566780909727, - 0.001448922576488141, - 0.00025658839126089963, - 0.0008111184629851472, - -5.723973941342476e-05, - -0.0011481554814266525, - -0.00044502162166221496, - -0.0003557933722147034, - -9.39847935478315e-05, - 4.631412869492393e-05, - 0.00019940778808060617, - 0.0002617053662860541, - -0.00020865140156721545, - -0.0012088898362131943, - 0.0010842214062673134, - -0.00046114183788773146, - 0.00032283186602135433, - -0.0011452382363233925, - 0.0002812638158647765, - -0.0010520354891151338, - -0.0005047317808650112, - -0.00014542832537011425, - -0.0011435755655259281, - 0.002394118983254886, - 0.0012290058740228973, - -5.792612755789201e-05, - -0.0007734132387633606, - -0.00043423085302548225, - 0.0004481720696858633, - 0.000338411808253392, - -0.0005250160797128224, - 4.787234205301903e-05, - 0.0012880004082762358, - 0.00041716333399734683, - -0.0003609285742299479, - 0.0003791136400628284, - -0.00011033155932926275, - -0.00042368966016396423, - 0.0006718102086449794, - -0.0003185838093470073, - 0.0006426552984865948, - 0.0006769147501108709, - -0.00024020679836134678, - -0.000648233362376601, - 0.001284541417771413, - 0.00010958408202171051, - -0.000601932545530757, - 5.986335404643548e-05, - -0.0011959222345728326, - 0.0008886021504291367, - 0.0007705587146058073, - -0.0022369151205815043, - 0.00024847865384409855, - -0.0009658315899904338, - 0.0010936493823156686, - -0.0009836266706682647, - 0.0002841910623406032, - -0.0005650412265953714, - -4.8373076961627764e-05, - -0.0013564949382723944, - -0.0013657552231730041, - -0.0008708825137819511, - -0.00024588369291775244, - 0.0007071743382980713, - -0.0009440543584465435, - -0.0009428309937201595, - 0.0008228966917440034, - 0.001235524894305022, - 0.000389297789063711, - 0.00022863868009271413, - -0.0018985711727970674, - -0.0010096785285141606, - -0.0023799277234212, - -0.0004773348313252322, - 0.0005203324855606704, - -0.001253387300471353, - 0.0009707319445859415, - -0.0005441272226412773, - 0.0007097383790492345, - 0.0016737220799141548, - -0.0014637324483796998, - -0.0003863731462711662, - -0.001993532139187593, - 0.0009683092338756639, - -0.0012366733053724365, - 9.175619470745371e-05, - 0.0017318879305757465, - 0.0008403509076948859, - -0.00011481497058055613, - 0.002652229683316656, - 9.22545200987718e-05, - -0.0014647417545261192, - 1.8914238193339055e-05, - -0.0005686698812389322, - 0.0004868017536366425, - -0.00015814442438484775, - -0.00033028988800296076, - 6.095056031805079e-05, - 0.0012371381336408749, - -0.00019194670688352846, - -0.0016794868716364874, - -0.0010656607889357379, - 0.00031860459063425353, - 0.000981636224613313, - -0.0013751817107984698, - -0.00113900466668359, - 0.00048629395747663563, - -0.00020202751433457877, - 0.001298060557719582, - 0.0005364020184371262, - -0.0014532395610463854, - -0.0007847986924487358, - 0.0003272418640333137, - 2.617614614407895e-05, - 0.0005667940063745422, - 0.0009810177621875583, - -0.00029416117808267266, - 2.7094453331332205e-05, - 0.00034280384595009234, - 0.0008608122783333185, - -0.000655250075802904, - 0.0004557456214505912, - 0.0009430150865601365, - 0.0013255357980613686, - 0.0001741212250382969, - -0.0010043933279160365, - -0.001620197610392219, - -0.0014476194478147575, - 0.0007871356166719997, - -0.0010301523995945845, - 0.00026422261359938836, - 0.0005132275123416069, - -0.001863885214343323, - 0.001199838593113465, - 0.0002040230755290785, - -0.0009373161354638515, - -0.0008677951118924944, - -0.0008838293876886029, - -0.0001496420511699912, - -0.0007309579606825403, - 0.0016179665344073259, - -9.512836398153415e-05, - -0.0008370197497091482, - -0.00045124659262564743, - 0.0007654730191447597, - 0.000652875586962387, - -0.000572115033127332, - -0.00016920181718666605, - -0.001153385090565984, - 7.747340539171638e-05, - 0.00019787485509900222, - -0.00017325911645637898, - -0.0001295227958582967, - -0.0006928733801940873, - 0.0008890883718044577, - 7.458990908830023e-05, - -0.0010816437795086891, - 0.0009451338772618682, - -0.0002690234944038079, - 0.0008583242469898168, - -0.0021828988715177446, - -0.0002588811977784322, - -0.00013183900787409338, - 0.0002385468333945656, - 0.0004011331520533043, - -0.0010888985956560699, - 0.000641585119347045, - 0.0008763167679253412, - -0.0012414058812921223, - -0.0011520932675319808, - -0.0012649167419784267, - 0.0027464342170573646, - 0.0005170822144189109, - -0.0008168659315525608, - -8.703512966490588e-05, - 0.00036438689170603287, - 0.0011498763317880415, - 0.0023414393023389823, - -0.002003850212197018, - 0.0014493789401555774, - -2.205421910861787e-05, - 0.000342658639142131, - 0.0010820005700430066, - -0.0004151543370323254, - -0.0017900844643711355, - 0.00019219862664420612, - -0.0006950183643426634, - -0.001557007414533963, - 0.0005970964193272384, - 0.00047767964218115223, - 0.0006727549124685024, - 0.0011255781987608068, - -0.00085593307293505, - 0.00018441134644261992, - -0.00039351803554526897, - 0.0009800172329456258, - 0.0002582268586205242, - -5.539773653240881e-05, - 0.0010774337278560329, - -0.00046209862621862923, - 0.00010011508452694337, - -0.001425035522870046, - 0.0008443083276845958, - -2.6498866609427614e-06, - -1.564279624750313e-05, - 0.0006911659028570937, - 9.90493039600962e-05, - 0.0007146980551293364, - 0.0018973865226947935, - -0.0009496102145444029, - 0.000574344896437039, - -0.0005284909367476707, - -0.002120712400918996, - 0.0014515207034766274, - 5.2860419327090776e-05, - -0.0004542135118660421, - -0.0006172437897907282, - 0.001215372733199387, - -0.0008531598985234254, - -0.00148630133477965, - -8.598356617185222e-05, - 0.0009037115904868927, - 0.0012703482830987971, - -0.0008564605442509851, - -0.0010568145541721356, - -0.0011760571870155939, - -0.0007468338883563968, - 0.0002775086674859024, - 0.00020107422868034645, - -0.00132588653159671, - -0.0009696377183151774, - -7.074650724462693e-05, - -0.0010280909061548727, - -0.0007286787246399955, - 0.0004310649489202204, - -0.00040312227226349035, - -0.00021931130541270777, - -0.0011778909483695275, - 0.0011936933238930968, - 0.0017089398514418895, - -2.4862033999108996e-05, - 0.0015028783030374255, - -0.0008860720991187263, - 0.000518807255151107, - -0.0011928473780159934, - 0.00021505585352974926, - 0.0010046339803532838, - 0.0011740602548738909, - 0.002099093778812176, - 0.00022627483157963533, - 0.0006942389506503637, - 8.074821588255002e-05, - 0.001524127360557513, - 0.0001762070231677272, - 2.804048603008681e-05, - -0.0016078043723066083, - 0.000728621693897913, - -0.0013538578374767598, - 0.00011431258784097979, - 0.000497756443045607, - 0.0012928002941907655, - 0.0005479590034154506, - -9.195930617359488e-05, - -0.00043459027521448277, - 0.0010892038741085973, - 0.0008884443625756734, - -2.3679832776050875e-05, - -0.0013365349417105465, - 0.0011127188328922085, - -0.0011261509922059992, - 0.00045169151615794917, - 0.0003296720268932217, - -7.502345902581194e-05, - -0.00022361825975265382, - -0.0009933904046691556, - -0.0001961699270783188, - -0.0001704910905083032, - 6.560045224795558e-05, - -0.000839075129995869, - -0.000602458512590548, - -0.00043110147030840683, - 0.0005386446244938, - 0.0014534268291830391, - -0.0007131895048170271, - 0.0006134425171185099, - -0.00025925243804215975, - -0.0002730524188580887, - -0.0011506183481426538, - -0.0012073150595091394, - -0.00029954656245283337, - -0.0012141586648917178, - -8.551406591944897e-05, - 0.0009348071153585697, - -0.00020999076397294324, - -0.00020782777446837772, - -0.00032958973459154295, - 0.0006586285318528036, - 0.0003798650939169778, - -0.0006230141624516979, - 0.0008467762376429045, - 0.00035541541809611734, - 0.000978269421056936, - -0.001021248017436795, - -0.001544616654858942, - 0.001549369928273804, - 0.0019093611083588423, - 0.0010411610739986137, - 0.0001155587857479226, - 0.0003102568899433588, - -0.0006826724815324467, - -0.0009787277863079619, - 0.0003158411309710181, - -0.0005344774853959588, - 0.0017113696894091874, - 0.00036937331639225527, - 0.002193885073956533, - 0.0006200567305916849, - -0.0002898727567682886, - -0.0006535551034384504, - -8.228816497070651e-05, - 0.0011022655314822838, - -0.0008015478777396991, - -0.0017217501759068834, - -0.0010300767191685108, - -0.0005490129101086225, - -0.0006149643034976803, - -0.0010662210435196434, - 0.0010329979623313866, - 0.0008896145810628759, - 0.0005316421212484445, - -0.00032145087630628424, - 0.0010647140484811054, - 2.1824047919203155e-05, - -0.0003544779876704582, - -0.0005265920212594604, - -0.0007746763532102374, - 0.0013422348227651486, - -0.000938657261024299, - -0.001916343635025589, - -0.0017661783869117778, - -0.0005398813621431448, - 0.0008733738877869919, - -4.723713789368796e-05, - -0.0019521463318326116, - 0.0010513201292424942, - 0.0011555451848804554, - -0.0011375541653575027, - -0.0008744524784028045, - 0.0008793679626290667, - 0.0005246040496906279, - -0.0011860678933141647, - 0.00022744467807361162, - 0.00010474980370907795, - 0.0006349428777894739, - -0.0018738111625433713, - -2.8502596554474804e-05, - -0.0019431073132711403, - -0.0006580927300100538, - 0.001142708533014749, - 0.00021708616974232508, - 0.001045328520699578, - -0.0008172815079565423, - 0.00021416887416483184, - 0.0008208121949366847, - -0.0007549216636065386, - 6.924300578171804e-05, - 8.196826829172628e-06, - -0.0006309202982365785, - 0.00014505255632849532, - 0.0017807506108151539, - 0.0013255943810613728, - 0.0005078804582418213, - 5.082281617810799e-05, - 0.0008813697889075644, - -0.0005041775068115163, - -0.0014727781400161572, - -0.00019610923435184837, - 0.0009295253626784055, - -0.001044554631747051, - 0.0009976722582213209, - -0.0013734732486260482, - -0.00029298428501352714, - 8.125889592854728e-05, - -0.0014077600989814637, - -0.00014251508379840115, - -0.0010329434479462193, - -0.000421842426941728, - 0.0005377994703911128, - 3.0122435422378804e-05, - -0.00035493573458627746, - -0.00042761735859269794, - -0.00044286411435337747, - 0.0007842457991552392, - -0.00037135872017233276, - -0.001666788226563419, - -0.0005938015035094075, - -0.00039875495872406495, - 0.0014582186166326085, - -0.00011161384190868506, - 0.0009064364076999367, - 0.0002873881540392017, - -0.0011345968091148282 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgb(220, 176, 242)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 3", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - -0.0011345968091148282, - -0.0011352936311848575, - 0.0028328654530108736, - 0.0004879792374491136, - 4.044460349473798e-05, - -0.000127024213727682, - 0.00045476088002346324, - -0.0012211675696379382, - -0.00011974218605859685, - -0.0020490534715780348, - 0.0005109818512646753, - 0.0005709890655565807, - 0.0024773239962690347, - 0.0009275672240579495, - 0.001483106026917013, - 0.001065697959813219, - -0.0001777374061820118, - -0.0012802361856831034, - 0.0009778803903601222, - -0.0008106720782795153, - 0.0010007861637401393, - 0.0010001071383940988, - -0.0010772350791259826, - 0.0012144530550111906, - -0.0005832952625162228, - 0.0007268548592657051, - -0.0008895099481190926, - -0.0012450355530321522, - -0.0008010949337078925, - -0.0002798613765556619, - 0.0001361522328628964, - -0.0007248909945125654, - 4.836622184365765e-05, - -0.0009574665873282719, - -0.0010408745703901275, - 0.0002250622818528657, - -0.00011288205646415053, - 0.0005146509741145163, - 0.001199356830995025, - 7.575759606194611e-05, - 0.0009542320287106569, - 0.0015587115315622124, - 0.0011912987978374284, - -0.0002718920955558488, - 0.0010601514889376597, - -0.0009664841556979419, - 0.0005754750161452957, - -0.00046165570247116343, - -0.00041544166415550637, - -0.0006390470640601244, - 0.0013193209868507098, - -0.0006826203984999722, - 0.00029761463633055165, - -0.00031200383948995497, - -0.0016446567688536055, - -0.001474697918977142, - 3.6263816911584685e-05, - 0.0012688064251157173, - -0.0009305801847842945, - -5.350030748910838e-05, - -0.0010212735786975854, - 0.000539504668544406, - 0.00038898118025718634, - -0.0013130280738549798, - 0.0013100087712851166, - 1.1244280102980323e-05, - -0.0010959183394442195, - 0.0005332505668320032, - -0.0002813473151631482, - -0.0010647916641325504, - 0.0016245896021100479, - -0.0018681752338797783, - -0.0011956001883669971, - -0.0010058659495776657, - -0.001265084866708506, - 0.00020279176175484395, - 0.0018086886849504986, - 0.0002758530187399426, - -0.0002022923386035081, - 0.0006124948267689698, - 0.0013306522949087512, - 0.0015136656997164536, - -0.0019413402343945558, - -4.8979014726842636e-05, - -0.001454986233769379, - 0.0010107076566254413, - 0.001125062636377078, - 0.000941849011636438, - -8.97082235330034e-05, - 0.0007180331247360254, - 0.0010060730057458599, - -0.0006177553035232674, - 0.0010039118617475654, - -0.0004312943573880039, - -7.589444368285517e-05, - -0.0007262214634066759, - 0.0007755209410635437, - 0.001440006175956381, - 8.343612230715664e-05, - 0.0007100446548468068, - -0.0010963600859929903, - -0.0005252891031523452, - 0.00015037367034779876, - -0.0015971340517660602, - 6.92561780242854e-05, - -0.0005362437280591875, - 0.0027905631090967224, - 0.0012827354429079476, - -0.0021885029821244392, - -0.001495256725521392, - -0.0005522427283879441, - -0.0004965733434344765, - -0.0009457902598834847, - 0.0005531949132181978, - 0.0005734509163622726, - -0.00039893314310810303, - -0.0015846158698905517, - -0.001106425120259252, - -0.0012229378552278377, - 0.0002519420669607126, - -0.00019732449427532807, - 0.000949005520969708, - 0.0007685771364653657, - 0.0016099126512225468, - 0.00046410769603777327, - -0.0013097655517501279, - 1.06309692800162e-05, - 0.0021040909756712433, - 0.0019807637514269, - -0.0015417882219040597, - 0.00133931486547842, - -0.00011268296094524505, - 0.00038167527200736026, - 0.0004028607419002884, - -0.001708534419116063, - 0.002178671897879258, - 9.468608085864894e-05, - 0.0002454519863121095, - 0.0012356759123159226, - 0.0007737819818650233, - 0.00044283676892914806, - -0.0013933309194666137, - -0.0005064794287235709, - -0.000652464086105222, - -0.0016979351008982073, - 0.000490115320472407, - -0.0018038831140816788, - 0.0004272723877042774, - 0.0011876036772151633, - -0.0004830815285979303, - 0.0005096456900355905, - 0.0008116620941809843, - -0.0004796475550768617, - 0.000597520409584973, - -0.00019472570598395497, - 0.0009515977367932915, - -0.000814525457353689, - -9.736976554874296e-05, - 4.451430275606397e-05, - -0.0004569046490416888, - 0.00037934614610915426, - 0.0005300449324398648, - 0.0008450663611804558, - 0.0005741961988702703, - 0.0010432032551690674, - -1.6198680854391295e-06, - 0.001359194274257276, - -0.000452595794775603, - 0.0003238894945032673, - -0.0007699750749031704, - 6.345480322392064e-05, - -6.895493843732327e-05, - -0.0002183240739830803, - 0.0002719452324609611, - 0.0001496333317363556, - 0.0012121880933086118, - 0.0006909553162944506, - -0.0007264513416435122, - 0.00016610390638039328, - -0.0008555619051827072, - -0.00023161127451981685, - 7.148587066608686e-05, - -0.0007454556738085146, - 6.94502742815314e-05, - -0.0013290818568350764, - 0.0006808265930835034, - -0.00017090296908973664, - 0.00032731285979431556, - -5.6677534908868894e-05, - -5.921941072414389e-05, - -0.00036122312852166215, - 8.660024888453834e-05, - 0.0013394924227384324, - 0.0009934541427356377, - 0.0019427272737212327, - -0.0009781988940933365, - -0.002027672737402089, - 2.4590016862560146e-05, - 0.0012411816679957935, - 0.0012074968444073437, - 0.0003485653576033737, - -0.0014690220082438192, - -0.0014105758737259586, - 0.0004232877192014573, - 0.0004818847380598733, - -1.2745732278720125e-05, - -0.0007527174563961734, - -0.0004367090692852843, - -0.0011006941248931867, - 0.0012972937421712868, - -0.0009180123036620576, - 0.00042313151735648945, - -8.830587102373205e-05, - -0.0004796979432232879, - -3.633179256286271e-05, - -0.001009228467705239, - 0.0004169300071092582, - -0.0006575982307071125, - 0.0006386238039471845, - 0.0007906213403935528, - -0.0010661250843305174, - 0.0006750587386434607, - -0.0006031429163394463, - 0.0013396451621591084, - 0.0001942633916700468, - -0.0004614257689462302, - -0.0006059847363278554, - -0.0017241175436280918, - 0.000428828205761167, - -0.0014811806208219432, - -0.0006259995157831877, - -0.00033515231851087525, - 8.561888821753586e-05, - 2.217697442436953e-05, - -0.0003451408079282578, - -0.00015931141596598044, - 0.00010408023445775976, - 0.0011296541744060164, - 6.5082676488161785e-06, - -0.002213793526125386, - -0.0005124387493542128, - -9.74342661083846e-05, - -0.0006502245724262296, - 0.0004065283816015984, - 0.00018789822866408613, - 0.0005318710827390783, - -0.0011244862225080303, - -9.843867685430494e-05, - 0.001530578363598788, - 0.00032806301255962307, - -0.0012500560318800518, - 0.0008068535170515787, - 0.0009104872609724457, - 4.5469424395942774e-05, - 0.0023740347649895605, - 0.000808668049793506, - 0.0004928392830175658, - 0.00036282020729605936, - -0.0005524993862106005, - -0.0009004506022524439, - -0.0001250406103524139, - -0.001132081279354095, - 0.00033765340628494236, - -2.0385983862998595e-05, - 0.0012105265009422499, - -0.0020373000881307116, - 0.0002330683472575695, - -0.0010529757001541188, - -0.0026684211409163526, - 0.0017837340388172662, - -0.0006555067325563043, - 0.0007018839180394053, - -0.0009795527855606522, - 0.0007034602113248666, - 0.00226468431482109, - -0.0006196427684462601, - 0.0010388827064113037, - 0.0008790003448427491, - -0.0018724238767776986, - 0.0016835980623994202, - -0.0007557311381780848, - 0.0017174341153960138, - -0.0001881720358849571, - -0.0012363629429438553, - 0.00014724502464770795, - -0.0005967817793340999, - -0.0017690030600592207, - -0.0010033430408388838, - 0.0014116750978680089, - -0.0008679416415689682, - 0.0011102427816870905, - 0.0011196579120122112, - 0.0005735173995920985, - -0.0008472981879152819, - -0.0008366165194399446, - -0.0006424422249765185, - -0.00024393908707101393, - -0.0001244679606409823, - 0.0020060891322725696, - -0.00021233762708132285, - 0.0017815620684137484, - -0.00042609231321134324, - 0.0006141798569623964, - -0.0006639168510015933, - 0.0005467071772141366, - -0.0004797275964051827, - 0.0009101579633162192, - -0.0006459894048675645, - -0.00037257640647661366, - -0.0003029245721316128, - 0.0006414437406629035, - 0.0005880670278052728, - 0.0007873821198368815, - 0.002139348000008852, - 0.0014643621439594976, - 7.25703850454027e-05, - -0.00013206124440462164, - 0.00012848470989729012, - -0.0004227263296856066, - -0.0006564034300115121, - 0.0006031371206176275, - 0.0013395663674214146, - -1.8473315681659582e-05, - 0.0009454796827907408, - 0.000795034839371586, - 0.0005643113614296862, - 1.1458998504919546e-05, - 0.0009528550990933012, - 0.0006466961520689234, - -0.0013769496057708937, - -0.0008019950587967705, - -0.0002006855607800146, - -0.00044402564548780927, - 0.002553896724513826, - 0.001429597043467394, - 0.0012504938792266625, - -0.00030417639049298866, - -0.0001503833150617484, - -0.00019187105150454058, - -0.00031794159988367043, - 0.0004046005361619549, - -0.0008689957643267143, - -0.0007751860995803515, - 0.0002573228404323334, - 0.00131585440767996, - 0.00035637370640458283, - -0.0014062150903479055, - -0.00021506721000441855, - 0.0009129303531423193, - -0.00019802366824420224, - 0.0007287289173733798, - 0.0003664255923884009, - -0.0015908006078683204, - 0.0012812824203924944, - 0.0004762362276968797, - -0.0006175223670872605, - 0.0017171547873418385, - 0.0013177849965086861, - 0.0004609201509669587, - -0.000636275462447756, - -0.00022181272891956522, - -0.0004860835867272129, - -0.0015431552900779164, - 0.0010157155186157555, - 8.384874913364913e-06, - -0.0022003358247471953, - 0.0017516822857354156, - -0.0007296985270800716, - -0.0018544526066314614, - 0.0008413972474362151, - -0.0010121533334243712, - 0.0008977089127787828, - 0.00043695845526902526, - -0.0001270331939564472, - -0.00024952127985397913, - 0.0013929189423087264, - -0.000632739572583471, - 0.0012262815675275584, - -0.0014463762941345942, - 0.0011969387859215135, - 0.0010139566388496202, - -0.0011095346460981233, - -0.00022750706571733324, - -0.00018804975859120957, - -0.0010788918407297027, - 0.0006163301261866656, - -0.0001634685808988138, - 0.001209912805722195, - -0.002659324913627653, - 0.0010507187176326432, - 0.0008706167946335917, - -0.0012477960773050122, - 0.0002424210081173168, - -0.0005516303680711787, - -0.0018026047855402314, - -0.0009691210993947504, - -0.0002498870275022445, - -5.225427835150992e-06, - 0.0001320395790238926, - -0.0018242067548793102, - -4.5445615357434126e-05, - -0.00020079617830415708, - -0.0005067514816701942, - 0.0006805749171862209, - -0.0011467334430734816, - -0.00134818535826861, - -4.000701296655254e-05, - 9.510494960404052e-05, - -0.0016987921224142799, - -0.0011212671687610574, - 0.00016182424071245239, - 0.00030180751415431013, - -0.0008738618905945097, - -0.00042051130417933335, - 0.00013399475130515282, - 0.0014269538988957576, - -0.00028563566146197673, - -0.001538114270770824, - 0.0002452656409936184, - 0.0001091361615895872, - -0.0006352989534583433, - -0.00019709482580536477, - 0.001815829284812415, - 0.0014863776606531438, - 0.00021304097616593732, - -0.00045688655891213786, - 0.000519119094484015, - 0.0011073516133247247, - 0.0002459726577723135, - 0.0012992759395594384, - -0.00018608907784751873, - 0.0008206178486815109, - -0.0014393305725788593, - -0.0009420952782408943, - -0.000106406300381771, - 0.0001659087729265652, - 0.0003684643520026587, - 0.00018854580467610687, - 0.000447384404010978, - -0.0007250239822652038, - 0.000300500596909111, - 0.0014951456119357278, - 0.0007693855266453203, - 0.000608130386694872, - -0.0009419099401658967, - 0.000394142050196356, - -0.0003264144042109948, - 0.001089928430658076, - -0.00018227778630054117, - 0.0002595073859460528, - 0.0006896995950358722, - -0.00021177396222842775, - 0.00030330160250243023, - -0.0015813716870943647, - -0.0025346419449633257, - -0.0010378914828373027, - 0.00017991429068617797, - -0.0005024356961743526, - -0.000902908299434763, - -0.00043253292393898886, - 3.2593550461452554e-05, - -0.000971916358668886, - -0.002143200283407482, - 0.00026902995997568017, - 0.0009635269121446957, - -0.002142119684467751, - 0.0004366557976927534, - 0.0014166644537028257, - -0.0009804896281190088, - 0.0004019973178546629, - -0.00062610341845985, - 0.0005664872941845794, - 0.0005244804239627989, - -0.0014023341804215166, - -0.00016385225247000243, - 0.00031276897627344235, - -0.000841468560202266, - 0.00110103810290347, - 0.0005585548643618402, - 0.00042209482154667127, - -0.002047456498875736, - -0.0003612053413314929, - -1.4698225197797151e-05, - -0.0016003376690670373, - -0.0001004612092075541, - -0.00021035022219686268, - -0.0005540795409281844, - 0.0007138512478584124, - 0.0013979698108285662, - -0.0009816673630147455, - -0.0002041292777044633, - -0.0004722998892000093, - 0.0007050343318152107, - 0.000190877241034586, - 0.00018188175515734353, - -0.00012720771745731115, - -0.0008774489980259871, - -0.00044148988806275196, - 0.0006080097570423206, - -0.000188537914342244, - -0.0013352329910822037, - -0.0003642186433746423, - 0.00013332762497934598, - 0.0002728867696818614, - -0.0005192926661142978, - -0.0001767379170440732, - -0.0016779718694135111, - -0.0005710950524476865, - -0.0012001994674361218, - 0.0017816108535161175, - 0.0003423409244141015, - -0.0009978646060915313, - -0.0008018981015234798, - -0.0009962965167995407, - -0.0007473291423762364, - -0.0011219228596356034, - -0.0014986596190155526, - -0.001722050141701561, - 0.00229429217430404, - 0.0008929038775621137, - -0.00029180959223305754, - 0.00015880396942555554, - 0.0007104386982989371, - 0.00028673228454150824, - -0.0020923916342179215, - 0.0002885054409565847, - 0.0011707143940313267, - -0.0006849704355735021, - 0.0009264501714133015, - 0.00022653708991198616, - 0.000663767012498146, - 0.002610117530449907, - -0.0008236331565103872, - 0.0022387351668442827, - 7.31514849939929e-05, - 3.2798513680106555e-05, - 0.0004382462774872855, - 0.0003169342627248736, - -0.0003370164733668951, - 0.00101621756588477, - 0.0002858144313756998, - -3.752067645479931e-05, - -0.001160829140767746, - -0.0004095177348319679, - 0.00019440443049001326, - 4.1557081050137774e-05, - 0.0006712621337085641, - -0.0009697774385234184, - 0.0014417764493191972, - 0.0003004624964337338, - 0.002118595502012883, - 0.001117361603141845, - 0.0018565230772310602, - 0.0007284352116729267, - -0.0013099641927609125, - -0.0026904739881791206, - 1.1328378760481472e-06, - 3.3896878948003236e-05, - -0.0013561268734602686, - 0.0007943263331190525, - 0.00033454048948213726, - 0.0004563082149416879, - -0.00127680514158798, - -0.00041506774359991073, - -0.0012407359099361334, - 0.001927909604047435, - -0.0006093975883320961, - 0.00035673302718777235, - 0.0003574668193792334, - 0.00024366743528909723, - -0.0018216790046960175, - -0.0005882207147303211, - 0.00020664584549704888, - -0.00013057660642231403, - -0.0003579240437848589, - -0.00015671131056324477, - -0.0019667630241909234, - 0.0007173069156390745, - 0.0012176240064491572, - 0.0011699032667580123, - -0.00022475969857516619, - -0.0003319038053953, - 0.0009157692692667857, - 0.00010511589853770866, - 0.0019154683254815556, - -0.0007084240858907752, - 0.0011126529128677842, - 0.0009208214591908968, - 0.002726152373971731, - -0.0008435360133112632, - 0.0010647642248646338, - -0.00011588845565872413, - 0.00040190928346350494, - -0.0007110817976363628, - 0.000989527522272785, - 0.0006342489366676532, - 0.0018792755603577356, - 0.00028024915527671336, - 0.0004304511397844444, - 0.00040824507531053245, - -0.0009857646731250005, - -0.0009771961987549468, - 0.0010189298735427434, - -0.001340224950216132, - 0.00026021684041570466, - 0.0002750377319240482, - 0.00035363101951111357, - -0.0007017643610869721, - -0.0002530116980056903, - 0.0007561661946889019, - 0.001284217466325744, - -0.0024554125740775716, - 0.0006064276606196361, - -0.0026595958021479412, - 0.0008008000091089038, - -0.0011009800860320843, - -0.0007533383015586599, - 0.0015140518443298413, - 0.0004999647056944941, - -0.0016417008877083242, - -0.00043145994758721174, - -7.210441075043162e-08, - 0.001794692240922303, - -0.00045031932532312886, - -0.0001126120382376579, - -0.00018618730597959245, - 0.0004687882019564298, - -0.0012683289218580246, - -0.00010249444862500662, - -0.0004277369121565318, - -0.001101842377782821, - 0.0001479834050216282, - 0.0003915418841186371, - 0.0005136470747143289, - 0.0014027990267728072, - -0.0009294513277130409, - 0.0006235823655864837, - 0.001548331139671327, - -0.00036053240687628125, - -0.0005021760293711275, - -0.002001948890619978, - -6.509045742854899e-06, - -0.00024250929454369577, - 0.0015782509765314544, - 0.0011995418607585089, - -0.0008745727022865683, - -0.00014879176311513524, - -0.0011799232069409024, - -0.0016960676860857643, - -0.0011374961419333824, - -0.0005344576353282002, - 0.001095821176795178, - -0.0017820916683385453, - 0.0005108777504676928, - -0.0008735429769146127, - -7.151070896104539e-05, - 0.0011565230389116768, - 0.00036072099820840225, - 0.001243282441963039, - -0.00031813845416906654, - 1.9951062827124287e-05, - 0.001318381572826376, - -3.982012297092679e-06, - -3.7978166371625076e-05, - 0.0007779329756749063, - 0.0018803720404833345, - -0.00037768898665115584, - 0.00023724523704473112, - 0.0002642366064965282, - 0.001243004777867005, - -0.002168612715485521, - 0.001322006257457387, - 0.0004896220885760361, - 0.0009170410683236268, - -0.0014947382586198018, - -0.0009649186989794586, - 0.0009205624160361918, - 0.0004388894431166028, - 0.0020410052564639627, - 0.0007715372877425752, - 0.0007627900847671227, - 0.0013142425766801183, - -0.00038755736546448443, - 0.000629458468688454, - -0.0003662344336885999, - -0.0003379377961187284, - 0.0014643445023604677, - -0.000702482554368167, - -0.0010372845106553924, - 0.0015284460008341066, - 0.0004103096430424406, - -0.001032550657460313, - -0.00010424370219662623, - 5.2630077858666565e-05, - -0.00014460863240206006, - -0.0011504344573038487, - 0.0007494388957368272, - 0.00036398297585981516, - 0.0008181195360469584, - 0.0009214888073520355, - -0.000162120057957732, - -0.0004680976448359527, - 0.001946096443749578, - -0.0003061940480984437, - 0.0015799973756416988, - 0.00044919507653670384, - -0.00025382745461145285, - 0.00040211111049425163, - 0.00256388650806712, - -0.0007961903952110704, - -0.00042465060673956484, - -9.14787582963835e-05, - 0.0004084272880433602, - 0.0009174841009083313, - 0.0014944804831477014, - 0.0010505667060865531, - -0.0006502684171805022, - -0.000977144386611978, - 0.0016196069760195286, - -0.0018410410735274422, - 0.000494148510818571, - 0.0009262769053095737, - 0.0006684638750611176, - 0.000903348848294256, - 7.046734308056385e-05, - -0.0008421684537428144, - 0.00015938506939302833, - 0.0009640211079311771, - -0.0033688255974265863, - -0.0014604249420422455, - 0.0015843509342613807, - 0.0021358104007634555, - 0.0016193262267935888, - -0.0016058040398684843, - 0.00039604966472115257, - -0.0010184829289109241, - -8.693590722064546e-05, - 0.0009692071555424253, - -2.4011683258587696e-05, - -0.0004812936682533527, - 0.002425669833196007, - -0.0009620417659678435, - -0.0010695178355759436, - 0.0008206602033884932, - 0.0010836542829876705, - -0.00030904890517557466, - 0.0018741912697991952, - -0.00055203950151789, - -0.00043811399059244185, - -0.0009099924441403068, - 0.0007292759191767654, - -0.00012132492171632567, - 6.479312557396114e-05, - -0.0016390961420922842, - 6.460453215590736e-05, - 0.00032656535945330324, - 0.0012106729559742467, - 0.001421436033211804, - -0.0008130254497262692, - 0.00014887359577358674, - -0.0008417501377520041, - 0.0010648599528403579, - 0.0007904612163497468, - 0.00019477188877853416, - 0.0020946396237429728, - 0.00023427141035955936, - -0.0017854377301372748, - -0.0001694239500986536, - 0.0016898956112690754, - 0.0008735066079788168, - -0.0009436969466938487, - 0.0009728439917390306, - -0.0005821528817903685, - -0.0005619546204267358, - 0.0017727699273255638, - -0.0009510655691568182, - -0.0019963812718179898, - -0.0025959292126753485, - -0.00013363958663705107, - 0.0013978044850930433, - 0.0005989992456943917, - 0.00034393131849056103, - 0.000699929837541098, - -0.002025791955696721, - 0.000265949614604873, - -0.0014333621060770609, - 0.0025866320539738048, - -3.244184637110185e-06, - 0.00036094081892434795, - -0.0004061598769303685, - -0.00025851844382351896, - -0.00016978676024106227, - 0.0024812720759203196, - -0.0010018723388130763, - 0.0005469083651309429, - 0.0015821397926420924, - 0.0007168800191633259, - -0.0007282550197280762, - -0.0006328328073742619, - -0.0005150809168622914, - 0.002750086707148638, - -0.0008517682352144598, - -0.00010251578654149366, - 0.0010436010237911497, - -0.0015185957443393963, - -0.0009360527966580038, - -0.0003110853126526294, - -2.8573111628070583e-06, - 0.0013997945593994254, - -2.9364939617452094e-05, - 0.00038761184818510386, - -0.00010470173259512821, - 0.0004290696430128744, - -0.001642914690294761, - -0.0014642762560815965, - 0.0015546232833970701, - -0.0007796415523304567, - -0.0008679688796976734, - 0.0022103810341161955, - 0.000348228837332411, - 0.0013125092853495174, - 6.842625450198349e-05, - -0.00047436899567570255, - -0.00022013026715939988, - -0.0012535339671352935, - -0.001523348167082572, - -0.00038390868156241374, - 0.0007945285322293532, - 0.0007574062344048908, - 0.003558615983102008, - -0.00020495425482590216, - -0.0013471978669995456, - -0.0007405599391066903, - 0.000601828913886717, - -7.480013020725228e-05, - -0.0013290040217790828, - -0.0005268637794223627, - -0.0006956400993031179, - 0.0002471855663032847, - 0.00015750516962478812, - 0.0005507801174011429, - -0.001112716950819593, - 0.0023897249774593593, - -0.0002441502269873142, - 0.0004906291981679835, - -0.0008381856620964735, - 0.0007151802192318778, - 0.0007263047801777168, - 1.422302077920859e-05, - 0.000926060514637613, - -0.0021364630604466836, - -8.761210904137463e-05, - -1.7578715648135922e-05, - -0.00022614331186997184, - -0.0012287159029206766, - -1.3697848361134341e-05, - 0.0001665437859012434, - -2.533731592928888e-05, - -0.00035124042946494625, - -0.00088444214884431, - -0.001112510622298578, - -0.001237640451052715, - -2.1384672245810295e-05, - 0.0006785048799702278, - 0.0015184610392780975, - -0.0003490026288515567, - -0.00029303010968627894, - 0.0012587515782349166, - 0.0016864473879033787, - -0.001830944515002053, - -0.00029313309936785113, - -0.0026227352497161568, - 0.0006257910181674272, - -0.0011245533313200828, - 0.0018911708850953008, - -0.0013793426651233281, - -0.0004882183311235666, - -0.0006763973331321345, - -0.0015617738241589887, - 0.0006369599586626845, - -0.000703576088449516, - -0.0011166938725041412, - 0.0001293279182177053, - 0.0012397632442762558, - 0.0010928733658864638, - 0.0009507446808617388, - -0.0010321512100305908, - -0.0006561887562055445, - -0.001406136494026578, - -0.00041547553507592514, - 0.0003644299477297355, - 0.0005272766182353227, - 0.0010970762553978704, - 0.00024908944826814274, - -0.0012397826325983591, - 0.002263610595893462, - 0.0007878709752757361, - 0.0003323172147487219, - 0.00022745210295737673, - 0.0005259134910468897, - -0.0014802013992577165, - 0.0007272164097654218, - 0.0005431338903763188, - -0.0014373654363627184, - 0.00030226624761275716, - 0.0001503210945554013, - 0.0007971140393302223, - -0.00015714479114096596, - 0.0014296022095218333, - 0.0005178739029175293, - -6.35737333337981e-05, - -0.0011913470770732713, - -0.00036508363735917037, - -0.0008328121211277351, - 0.0002905738622381344, - -0.002294277921377389, - -0.0006050820622869966, - 0.0007753362560085412, - 0.0009700984451353674, - -0.0015797108130679509, - -0.0007442289717301771, - 0.002063464540310377, - -0.0008337894220568002, - -0.0015476249231817978, - 0.0005372341925509786, - -9.712554399021475e-05, - -0.0003341543389786581, - -0.00033092163518090437, - -0.0010899119388314152, - 0.0002946178821005206, - 0.0005443151717781717, - 0.0004371398937166027, - -0.00018762491706623952, - -0.0005242334056786565, - 0.0003266238235419937, - -0.002785172041174267, - 0.00180091139906357, - 0.0013355943111254798, - 0.0005756242772627214, - -0.0014411748827808872, - 0.0006759566571140188, - -0.0010757949943180085, - -0.0007844969999729613, - -1.4894248011527565e-05, - 0.0009871792821941406, - 0.0005942629228431432, - -0.0007842303549069994, - -0.0012780179339363326, - 0.0012454517616857896, - 0.00022626782005085705, - -0.0012035643913628526, - -0.002299194041254451, - 0.0018992060280718932, - 0.0006766476658442874, - -0.0006235920661509385, - 0.0013850135250791213, - 0.0004273604485846383, - -0.00041503441127226266, - 0.0005069186323071284, - 0.0007089174457376794, - -0.0013494906203273106, - -0.0005542763920650677, - 5.529110926166521e-06, - 0.0009517870304450625, - 0.0011180583377635622, - -0.0016437173428224434, - -0.0003553552491446512, - -0.0003873033474879661, - 0.0004468932779563405, - -1.5785521211141177e-05, - -0.0002954998560332294, - 0.0008441554357716528, - 0.0005139200534167576, - 0.00013043788416063304, - 0.00015828331880827985, - -0.00048578337987950187, - 0.0006074329411101697, - -0.0001712983129469019, - 0.0007119848497950082, - -0.00019678961298235964, - -0.0013273428492823166, - -0.0007936769685683391, - -0.0008008326435273383, - -0.0011886270040316217, - 0.0015532868080178873, - -0.00037194595043182525, - -0.0011748135827589754, - -0.0006186901420122532, - -0.0005000678205576992, - 0.0014517360606727198, - 0.0006869629047726866, - -0.0016860258541409438, - -5.2686920761236336e-05, - 0.0004862760530018516, - 0.00016294281976048629, - 0.0007401543615424505, - 0.0009573169181252603, - -0.0005780097081434316, - 0.000312743779477393, - 0.001506859963045649 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgb(195, 226, 175)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 4", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 0.0012878708550621623, - -0.00023553883548678057, - 0.0006301217354896346, - 0.0006581773739279949, - -0.00010408068832771299, - -0.0009961720087409962, - 0.002429056670076534, - -0.0001527356982634971, - -0.00096472758108272, - -0.00045403769850273516, - -0.00027807015576871097, - -0.000479809118805495, - -0.0010466830336601893, - 0.0004453378772602189, - 0.0011116654669481466, - -0.0004021272115980826, - -0.0005102808848130889, - 3.8729245910954646e-05, - 0.0008090427211161428, - -0.001152263392248982, - -0.00039309925612592456, - -0.0009997374072779114, - -0.00020593274705657264, - 0.000886301406569014, - -0.0014795696648299344, - 0.0012586277336107594, - 4.92797065797839e-05, - 0.0008606607742101411, - -0.0015381744740838538, - -0.001670410742464297, - -0.00032692506255555746, - 0.0007127762923279004, - 0.00017634978187253288, - 0.0009590427687236406, - 0.0010637571829405375, - -0.0002591970607177648, - -0.001238392703039846, - -0.0005524674454384371, - -0.002103126812936375, - 0.00043437071690760945, - -0.0025458164119843527, - 0.0004452708511651977, - -0.0011990854623461192, - 0.0007130409778771179, - -0.0020756638014171, - -0.00021954069013129405, - 0.0007436265267447969, - -0.00045101433604896563, - -0.0009635573111624574, - -0.0008646934869589775, - -0.0008414737687750631, - -2.622661740645562e-05, - 0.00043138846533062245, - 0.0003358169165795232, - 0.002431288051388599, - 0.00014439948337751095, - 0.0005830291749347385, - 8.811840345960062e-06, - 0.0008792023820543079, - -0.0007248332021901991, - 0.0005067398360960875, - 0.0005375074538891046, - -0.0010782461686508775, - -0.0009208063239873013, - 0.0015612721893987764, - 0.0018599787701800137, - 0.0009051441720629666, - 0.0010781368356236772, - 0.0011344970338296864, - -0.00041593278118266016, - -0.00026725934802732495, - 0.00020200521611095005, - -3.3309230850119215e-05, - -0.0009414001616593578, - -0.0007034824089111627, - 0.00183570072668198, - 0.0005546484968992316, - -0.00012329932045471845, - 0.0009935186099753, - 0.0011071498551810987, - 0.00145827915487664, - 0.0006163497803207301, - -0.0006029109467392122, - 0.0007335455144676831, - -0.0006016891512100516, - -0.0007536928242391953, - 0.001034274246120894, - -9.847404072477428e-05, - -0.0004952031432672744, - -0.0007032789610249371, - 0.0020033989972201836, - 0.0018027233165007575, - -0.0004703139763408286, - 0.0005107084306554323, - 0.0006783917721465291, - -0.00043492128987989104, - -0.0013465935418635181, - -0.0006697598293782964, - 0.001885007568681777, - -0.0008567800825666809, - -0.0004412564490479909, - 0.0005874344161016193, - -0.00025876662087807737, - -0.0016014688365223954, - -0.00014460215471540848, - -9.314459729404634e-05, - 0.00022513894158274518, - -0.0017878211657053986, - -0.0009168966134520208, - -0.0017600757419590015, - 0.00013192916283445073, - -0.0009284457857198227, - -0.00028703694692601694, - 4.7941274631079936e-05, - -0.0010747705899739823, - -0.0012403800803368209, - 0.000325628564376494, - -0.0003009328901546366, - -0.0011063035921074294, - 0.00011634438591849621, - 0.0012177363457942254, - -6.37285885574961e-05, - -0.00047205939188254404, - 0.000489552807010757, - -0.0013551513448665726, - -0.0009648781436929963, - 0.0005982965894519597, - -0.00029987222895760653, - 0.0010016793430685114, - 0.00048600270200829576, - 0.0006731850881073815, - -0.0012187768831101251, - -0.0013260311552568665, - 0.000712916967638754, - 0.0003540604549967532, - 0.0011190645177278809, - -0.0006565225421198949, - -0.0004332627224416748, - -0.0004336532221724074, - 0.0001759995409931512, - 0.00016282831449272877, - -4.82052996998581e-05, - 0.0007337228363513918, - -0.00048098559399616954, - -0.0017015862176158816, - -0.0007112757037700716, - 0.0010774924172320488, - -0.0007163453084956914, - 0.0009118025949580965, - -0.0005516024200256813, - -0.0004897780527135632, - 0.0004960777834246843, - -0.0014177244289713894, - -0.00031616756215594117, - -0.0004615145002152928, - 0.0001658992374252505, - 0.0008270709240004526, - -0.0008596819055119962, - 0.0005201990034490325, - 0.00086380949570854, - 0.001286624200341268, - 0.0014610884634395412, - -0.0004771145138305547, - 0.0013611938945454704, - 0.0028954293466169, - 0.0010588212508869865, - -0.0002287950962048081, - 0.001823694930651885, - 0.0007969261620054423, - -0.001466630225871133, - -0.0009360355799338392, - -0.00019352525429207758, - -3.130041482947412e-05, - -0.0003922539569893617, - 0.0011473257630216834, - -0.0007336716913909644, - 0.0005909208923741926, - -0.0007469709454790513, - -0.0009108409705733749, - 0.0013218323482735337, - -0.0008377113124485712, - -0.0005594173631240241, - -0.001317735073990341, - -0.0004045603331335792, - 0.00019962485911930117, - -0.0007164562212385623, - -0.0016356228232130747, - 0.0005385439258487966, - 0.0009514330850892421, - 0.0020892076379961785, - 0.0002928154512609477, - -0.00010938447470601166, - 0.0005292879028626604, - -0.0011840306654061154, - -0.0011198176325283107, - -0.0004967363013218721, - -0.0001297358799606129, - 0.0017682523640977306, - -8.259793904396017e-05, - -0.0006162708672588068, - -0.002349709923467164, - -0.0003283502096264909, - -0.0003764598005480321, - 0.00046228380920140615, - 0.0022064905271713645, - 0.0006040573470710259, - 0.00016406381062359382, - 0.0008944522889243882, - 0.0003097589233567878, - -0.0018446390630957863, - -0.0016498240426646366, - -3.9478346707820863e-05, - 0.0013706855209197285, - -0.001110495371705376, - -0.0007597232243316893, - -0.002114961666162835, - -0.00021129612914939724, - -0.0006701486646377057, - 0.0017357919468778782, - -0.00014286035535863602, - -0.0001941326208367354, - 0.0007055248750207862, - 0.000628364971816922, - -0.00043522016146611104, - -0.0010750895664690225, - 0.002370922802868075, - 0.0009168630132704377, - -0.0017103030487787998, - 0.0011726360671172208, - 0.0009358128513327413, - 0.0013310025286831526, - 0.0006499933652641418, - -0.0015727421442042406, - 0.0008911627157963145, - -0.001199659098321034, - -0.0013389809540536404, - 0.0013048674384298021, - 0.0017739385770932587, - -0.00027720555636384506, - 9.105376164983135e-05, - 3.070347461936159e-08, - -0.0010400132263376314, - 0.0004521742735943701, - -0.00021375833314154802, - -0.0004099961199407572, - 0.00019705424703920165, - 0.0004945709643297021, - -0.0007287820504051012, - -0.0011776686884175539, - 0.0014027540591486547, - -0.0005575521399101861, - -0.0006308019301559071, - 0.0004641632544563311, - 3.5399256101034725e-05, - 0.0005627763999764253, - 0.0007634254464243802, - -1.3595277314050962e-05, - -0.0007439111845906854, - 8.816121937232552e-05, - -0.0001812757612646976, - -0.001041632006180606, - 0.0005203105959162994, - 0.00018767896622872186, - 0.0016230055428327222, - 0.0008015848960590511, - -0.0012140008686465382, - 0.001700373973132311, - 0.0013323867183892607, - -0.001977565551000603, - 0.0007399552086123678, - -0.0014928657054647393, - 0.002007696044706234, - -0.0007818466741344095, - -0.0010601693014754211, - -0.0006594221612887145, - 0.00030551512567590134, - 0.000503805814560758, - 0.0006837497053619444, - -0.0003384390791744818, - 0.0005672321473590791, - -0.0007188581858162268, - 0.0009448180307553944, - 0.0007850419647429863, - 0.001106263612036253, - 0.0010031286242651457, - 0.0012913556909718822, - 0.0016019329981475277, - 0.0022621632762958575, - 0.0012980642819339588, - -0.0005581741526697436, - 0.0005512229187863764, - 9.478267691989174e-05, - -4.131423310975255e-05, - -0.0008192467814128695, - 0.0012043884736228608, - -0.0001904683832498971, - 0.001046926488941517, - 6.857889113952901e-05, - 0.0007338000174284328, - 0.0011194548378557947, - -0.00014313557848210994, - -0.0002258373101364591, - 0.0020925943639353056, - -0.0002663466871554782, - -0.0007102218685214928, - -0.0004791270704207863, - 0.0009921976590797524, - 0.0002818578521200952, - 0.0015882384353110666, - -0.00010031780889372135, - -0.00033973070303563476, - -0.0010939506371176703, - 0.0004066448239398994, - 0.0006677314234326458, - -0.0017322024467548666, - -0.0008648084174550805, - 0.001459255449089184, - -0.002284865974997087, - 0.0013186801182572616, - 0.0001673667718362454, - 0.0012888024710358582, - 0.0007161723850013357, - 0.0009165417171918123, - 0.0013198329640604959, - 0.0006255308850887003, - 0.0006203378953340489, - 0.0021669159442043243, - 0.0015161554414575883, - -0.0007935645140422894, - -0.0008704048527287751, - 0.0006620136888235554, - 0.00044050217543701014, - 0.000597814342151944, - 2.8445364792651398e-05, - 0.0017646237324615622, - -0.001210730619887219, - -0.000945710374194555, - -0.0019003616869349795, - -0.0006208825259135344, - 0.00044909568880005583, - -0.0010843108463033688, - 0.0007644975582601552, - 0.0015285600419655922, - 0.0016936831059927296, - -0.001280925629988473, - 0.0010997080393767454, - 0.0006271178632484579, - 0.000686063853520915, - 0.0007851226433271477, - -0.0009021141808139226, - -0.0029976200849362736, - 0.0011339583797109946, - 0.0009790593048100889, - 0.0015141524269431596, - -0.0006494009655833657, - -0.0004476735224352178, - -7.827703130446978e-05, - -1.2788599268928372e-05, - -0.0018871543950064302, - 0.0002622218326208135, - -0.0003368278497428632, - 0.0011220457353459143, - 0.00026330939403762505, - -0.0022163768902724143, - -0.00045702270107443344, - 0.0016851510665843504, - 0.0009590572839504747, - -0.0007858762362365375, - -0.0006146422444084721, - 0.0017001867049526152, - -0.0008302230317367154, - -0.0007374978324849495, - 0.001297379498654708, - 0.000991778446000834, - -0.0006077001688193396, - -9.890010595922272e-05, - 0.00021724715911378611, - 0.0005669004478371888, - 3.6641020349633617e-06, - 0.0003994609294269563, - -0.0009706562322706952, - 0.0006431667256392795, - -0.0006360877141200923, - 0.0012329252325825942, - -4.861211305484579e-05, - -0.000258091801670109, - 0.00047484529617237026, - -0.00013171858096616056, - 0.00081320798754314, - -0.000794317939941006, - -0.0008473226007513052, - -0.0007636262509750155, - -0.00019990527105205187, - -0.00024574820159940574, - -0.0004696611002852865, - 0.002189963355343948, - 0.0004573595915713723, - 0.00037970736537077206, - -0.0005254325253980276, - 0.0017347235470892416, - 0.00011053288142797739, - 0.0024115826133777724, - -0.00013512186416943795, - 0.00044043277436920606, - -0.0012854736310377022, - -0.0008589068350108631, - 0.0007836777571593483, - -0.0005224562361390182, - -0.0009762640618591924, - 0.0018511841224838966, - 0.0014829748739124383, - 4.307675570564577e-05, - -0.000447667801646377, - 0.00022546566700132917, - -0.0004943563443865985, - 0.001465471719980036, - 0.0004043673004655593, - 0.0015295288950871375, - 0.00016258504464271173, - 9.582449447066233e-05, - 0.001775277990821866, - -0.00016952543753811543, - 0.0002188523923323898, - -0.0015695061723704734, - -0.0013015848341578478, - 0.0002750426009911152, - 0.0026138466130763943, - 0.0011840276159607067, - -0.001222779572165061, - -8.138709631429611e-05, - 0.000146326767731438, - 0.001180236457568625, - 0.0001634060189054248, - -0.0004916992725586822, - -5.608449475525742e-05, - 0.00038356210100409175, - -0.00034000981582668567, - -4.73824639152646e-05, - -0.00022031439714189927, - 0.000711023090409523, - -0.0008234195817024331, - 5.835724246894757e-06, - 0.0007315220926503276, - 0.0018799342036781373, - -0.0013219716716238279, - 8.985953262276535e-05, - 0.0018669198721084758, - -0.0005616694276612879, - 0.0005541517141775604, - 0.0002357984108958094, - -0.000264676167490081, - 0.001824357237597088, - 0.0005377577371938236, - 0.00043617136554066616, - 0.0002526996681055445, - -0.0005367104363290852, - 0.0006976374623303231, - -0.00040148904344593597, - 0.001408902271738122, - 4.024705775008776e-05, - 0.0006825381299268356, - -0.0008488499628440257, - 0.001735293682084476, - 0.00034724609869632016, - -0.00015246710377954696, - -0.0006372346535192302, - 6.230995813855048e-05, - 0.0010875627516810347, - -0.00034558094619665657, - 0.0009160444041575683, - 0.00042651127640002556, - 0.00016600561248474824, - 0.00044951293265609027, - 0.0017467546751208636, - -0.0009529896790622664, - -0.0001999063898242386, - 0.00026490234662655734, - 0.00022268300509123196, - 0.001751221244660234, - 5.7287841194742696e-05, - 0.0015275945977415368, - 0.00031180348347226747, - 0.0007986359336255709, - 0.001473751112505277, - -0.002388227112994923, - -0.0011157320711927608, - -0.0007087274669940443, - -0.0003383703554487519, - -0.0019038089943586402, - -0.002500859571352878, - 0.00020498306086958867, - -0.0010894521724985444, - 0.0007848339134206778, - -0.000558924664546561, - -0.0018829309518665733, - 0.0013552821362307575, - 0.00045017276353310673, - 0.002799477058571264, - -2.2401381900184912e-05, - -0.0006096727841614047, - 0.0014446533861797839, - -0.0003517869049482088, - 0.0009901502099169163, - 0.000803933263642373, - 0.00035055571853534424, - -0.00019862992869541676, - 0.0010672274860094163, - -0.00037257754875217024, - 0.0005144655616613156, - 0.0012402105755638915, - 0.0005008938205444017, - -7.792330635764407e-05, - -0.00010839349658342635, - 0.00208515214621542, - -0.0021237494336259727, - -0.0008574151719533416, - 0.00021226751605842026, - -0.0004729349343294125, - -0.001158136943021616, - -0.0008591334399384162, - -0.0009576505287624858, - 0.0002481051472971234, - 0.0016044318247322579, - 0.0012036477730156512, - 0.0006308303847769788, - -0.0007646157884609637, - 0.0008947054629303918, - 0.00023596435203404218, - 0.00020114929449959278, - -0.0005079209437758916, - -0.0005505500730898483, - -0.0007632777716099217, - 0.0002837429460710391, - -0.0007128364305835564, - 0.0009985893051040423, - -0.0013561244019526229, - -0.0008187566580431728, - -0.00031392748156983667, - -0.0012896245224471733, - -0.0009302712819810691, - 5.198238076531303e-05, - 0.0011669431587386539, - -0.002313376446932083, - -0.0012050175176738826, - -0.0016240857961008662, - 0.0019589782255866168, - 0.00019731152834787625, - -4.778142849759379e-06, - 4.0239137489979056e-05, - -0.00034801756148153135, - -8.707809328110106e-05, - 0.0005161122874204271, - -0.0001341343527968926, - 0.0009750051378516223, - 0.001746813818526088, - 0.00018382270841079217, - 1.0313615159348985e-05, - -0.00024412569746786874, - 9.906149808230815e-05, - -0.0015901381949925946, - -0.0007304690172874376, - -0.0014294123244128012, - 0.0008282269193405005, - 0.00017348383717334174, - -0.00045351135080374866, - 0.0005106566884621601, - -0.0007954467910813436, - -0.0018004907769546292, - 0.001454540172034186, - -0.0003609196328329495, - -0.0005366487357471766, - 0.00017697187754589177, - 0.0015259166745355379, - -0.001380194295203564, - 0.000836322687722781, - -0.00045451048637786104, - 3.4055697176501044e-05, - -0.00012549616534756743, - -0.002165301434302016, - 0.0005251187988807266, - 7.104472028609634e-05, - -0.0008402099443658276, - 0.0007924742350810699, - 0.0011332132367920724, - -0.0021237572540878076, - 0.0009789785941072182, - -0.0007172297591851824, - 0.0022947888016745764, - -0.0009972787322558884, - 0.0013590657238524595, - -0.001835198556376015, - -0.0003411562984083007, - -0.00033290954158546684, - -0.00037751508092104345, - -0.0009360494219451836, - -0.0005102621241437836, - 0.0008969084661393195, - -0.0010827825409004323, - -0.0010948139557954968, - 0.001106222650112146, - -0.002259461730621677, - -0.00019602554192515501, - 0.001077751874245976, - 7.23064807285131e-05, - 0.000770234732552195, - 0.0022944771574407914, - 0.0009347457786095843, - -0.0011412091107356442, - -0.0013078555006109912, - -0.0006939918084305964, - -0.0011932879354346947, - 0.00024879971619787744, - 0.0018259060890569302, - 8.584913116893095e-05, - 0.0016676581031464172, - -0.0016744629657189844, - -0.00041172388888034494, - -0.0007522424571024164, - -0.00022857558858684998, - 0.00028784245003787357, - -0.001242347103672217, - -0.000530276565346576, - -0.001059304741788426, - -0.00030288338548587954, - 0.00027944502833164087, - -0.0006794015179506659, - 0.00048360729149951435, - -0.0018230363052461431, - 0.0005625878562578372, - 0.001048015952301071, - -0.0001280098347078686, - -0.0004435389105461859, - -0.0005390412809013602, - 0.0006764964257336964, - 0.0006372235585843647, - -0.0002039493851529559, - -0.0008393743671029615, - -0.0008888874311433045, - 0.0006892194250191137, - 0.0006949744404903518, - -0.001357050918027894, - 7.597048466024466e-05, - -0.0002947851007435244, - 0.0002773095877969067, - 0.0005816553637087922, - 0.0008474052242508299, - 0.0004430939779207069, - -5.332058583252575e-05, - 0.00022298497656419796, - 0.00014793482316082223, - 0.0015911643348360824, - 0.0012719280933258636, - -0.0008833225722606744, - 0.0014215091807425482, - -0.0014481066847127602, - 8.384295014870986e-05, - 0.0003388394659963385, - -0.002420659955805056, - 0.0005936603116793061, - -0.0007393322795299497, - -0.00028778247465139695, - 0.0011625162788207507, - -0.0005436069972848431, - 0.0007500129711187916, - -0.000984496828556229, - -0.001430640379376776, - -0.0018889644118454845, - -0.0005921577113108498, - 0.0009446244055671232, - 0.0012003079039186078, - -0.0003406598317767691, - -9.755372284824685e-05, - 0.00025904198417875537, - 0.001338619461837988, - 0.00014974211832802424, - 0.0009017747405131102, - -0.00040659719127117183, - -0.0013547652625349052, - -0.0003814212047376245, - -4.147320396326139e-05, - 0.0021917199493884532, - 0.000999366392190595, - 0.0004944455574166059, - 0.00037781375214701184, - 0.0012367136187183966, - -0.000248944897811168, - -0.0005395271792621838, - -0.0024510765001865883, - -0.0002645200986854951, - 0.0009391573448988839, - 0.000850807021763682, - -0.0006826307121110404, - 0.00012557313594749176, - 0.002417651594719624, - 0.00024853160595727136, - 0.0010620358213619169, - 0.0006224245980328946, - -0.0012015539721645801, - 0.0007517860700532928, - 0.001091252831408061, - 0.00031317866031868585, - -0.0005866242518609716, - -0.0013323087728870984, - -0.0013158780169076208, - 0.00034115754844111807, - -0.0007726185316091444, - 0.000573477405217463, - 3.628552140468834e-05, - 0.0009386485759178219, - 0.0015423225304524067, - -0.0009312273104883704, - -0.0005719539817821105, - -0.0001946234660713176, - -0.002700738164704372, - -0.0011097299575452755, - -0.0008705051809392853, - 0.001458526897060889, - -0.0018459709893641563, - -0.00027654590998296366, - -9.013150552348276e-05, - 0.00012291222340480182, - -0.00014457971801976754, - -0.0020471870473098923, - 0.00038680824250356284, - -0.0008107818801461474, - 0.0020654703412531514, - 0.00013710755902259652, - -0.00012635378344705715, - -2.9380576077717003e-05, - -0.0015243323001517596, - 0.0021632241477184885, - -0.0007640850588632237, - 0.00011526194064316508, - 0.0017506045823123052, - -0.001040758579411985, - -0.0014778793308839592, - -0.0015704937219603954, - 0.002454874857528938, - 0.0005156294968423725, - -0.0019299133363175492, - -0.0007973401938002536, - -0.0007848002581573397, - -0.0005286332888998958, - -0.0008630848148277135, - -0.0002438159901143498, - -0.0011319522353099645, - 0.00040568117125295536, - -0.0020877923741222113, - -0.0015029787016075968, - 0.0003386887103806255, - -0.001830072243798838, - -0.0014351386925662392, - -0.0005009445879730589, - -0.00039548396648733355, - -0.0009612539861704981, - -0.0011958542904645312, - -0.00039663053817207296, - 0.0012486900028530782, - -0.0015506665899602974, - -0.00031948046371855555, - -0.00017472115566614875, - -5.773680522507365e-05, - 0.0009000587214912585, - -0.0007348308942339279, - 4.3293194493553255e-05, - 0.0008364516514317515, - -0.001018670105662579, - 0.0004211970805239683, - -0.0011376351345513704, - -0.0002604283587985751, - -0.0002865641017552107, - -0.0004474641901811294, - 4.531043669634324e-05, - -0.0004848521411243678, - 0.0007292514801735331, - 5.591444447191203e-06, - -0.00022630420347331917, - 0.0004428679125191053, - 0.0002615975914505055, - 0.0009234047948222785, - -0.0012950322394224979, - 0.0011895694830036084, - -9.675361303620975e-05, - 0.0014590816559473458, - -0.00021798419593116821, - -0.00045653604218182553, - -0.0008743930432221623, - -0.0013952389904491442, - -0.0009456457003168316, - -0.0013816359842592828, - 0.00036382448772204526, - 0.0006462266339139255, - 0.0021174262234186815, - -0.00012400133193361693, - 0.0004374174642854989, - 0.0009999709862665903, - 0.00019167583565264106, - -0.0021596481280874843, - 0.0017069823200832636, - 0.0005728389370582372, - -0.0005343141009287104, - 0.0008240343141526063, - 0.0008190575096673245, - -0.00015267826017124976, - -0.00016252217782686314, - -2.9893928291338512e-05, - 0.002041132396645942, - 0.0006115824237366483, - 2.7921515344025828e-06, - 0.0019234101776023041, - -0.00040420681893744, - -0.00015191007607646512, - -0.000705226341444568, - 0.0010273681138929175, - -0.0008283352181775228, - -1.2033705826132057e-05, - 0.0003283169668616083, - -0.0011089892098373186, - -0.0011358769989559267, - 0.0005612942986917985, - -0.00029556073625959766, - 0.00126935533120291, - -1.1755523685290646e-05, - -0.0013855244982603487, - 0.0015021051362840373, - 0.0010376499512765303, - 6.671101682262111e-05, - 0.000579396968058827, - 0.001186241133278756, - -0.0006715872869941845, - -0.00035686934180123765, - 0.000555114289819549, - -0.0014531744293434983, - -0.00045462575288233927, - -0.00013856462032130562, - 0.0013106733944181115, - -0.00036074368733307973, - 0.0001858251811257562, - -0.00010190735563578209, - -0.0001889786089074041, - -0.0014856523499486953, - -0.0007082544009093847, - -0.0013160159112737188, - -0.001681369525872486, - -0.0024293655252879197, - 0.0005984110943000845, - 0.0012009193900176796, - 0.001628878005532657, - 0.0010737168853255665, - 6.137056257027121e-05, - 0.00016365132107071243, - -0.00019624533859061795, - -0.0008776519535825512, - -2.2870789910266763e-05, - -0.0010492166326976022, - -0.00036022767831738275, - 0.001982782681800143, - 4.83276523798441e-05, - -0.0007590449030128929, - 0.0010239821755862507, - -0.00010331542257191708, - -9.132391572626972e-05, - 0.0008709298101432465, - 0.00047972221961090013, - -0.0008304856458332383, - -0.0008493435411264115, - 0.0006320842830438867, - -0.0017608658700366344, - -0.0004853750982836261, - 0.0009412498705111185, - 0.0004657232629277594, - -0.0009037265898754147, - -0.0012647861557463205, - 0.0009409596747493593, - -0.0007482097435011809, - -0.0003226835237489455, - 0.0003802374421523083, - 0.0015483189209599484, - -0.0008647699301155481, - -0.0009914442223296692, - 0.0008046923126154411, - 0.0014843067953221232, - 0.001410452313234094, - -0.00044037342839865946, - -0.000806475303628691, - 0.0004467646609489609, - 0.0007751417547428704, - -0.000731627637524538, - -6.835389678925786e-05, - 0.001405010222788636, - -0.0005264174794474843, - 1.9936769042516006e-05, - 0.0007169355547207401, - 0.0008687136211738575, - -0.0011945343031240627, - -0.0006718530177851445, - 0.0011293578449579032, - -0.00039948716629170737, - 0.0007118314247655964, - 0.0022313554680750305, - 0.000465246382652829, - -0.002358636981397455, - -0.0007975243896194346, - -0.000920023652128667, - -0.00034014761837665095, - 0.0023908550249342425, - -0.0003519757450740095, - 0.0010233442126364944, - 0.0012082195104204344, - -0.00183821941184843, - 0.0004952676734348817, - -0.0001323742735906722, - -0.0009431956669701153, - -0.000914588519723022, - 0.0007305817250934797, - -0.0004662142561587467, - -0.0004976468389823085, - 0.0007609597579593194, - 2.128587966872874e-05, - 0.00016525315839730252, - -0.0011064917028908241, - 0.0010837438901587916, - 0.0005146373023782714, - 0.00017230020568405677, - 0.00042959351582677743, - 0.0005048643669154112, - -0.0006168847457455151, - 0.0005344636388787669, - 0.00122282389056016, - 0.0005889218118815208, - 0.0011150504650950567, - -5.2223983158897506e-05, - 0.0001319706378673401, - 0.00020312065515131955, - 0.00043888195626288253, - -0.00028083022595374815, - -0.0003251204931730723, - 0.00011136015053805559, - -0.0016397580604273522, - 0.0002324517198912364, - 0.0002808657444093635, - 0.0015334930183137211, - -0.0009355387376591987, - 0.000893324237492613, - -0.0009238907509713382, - 0.00124310860959242, - 0.0016514180310683705, - 0.00026693523416265773, - 0.00017687617038784193, - -7.26714055804118e-05, - 0.001541330599080581, - 0.0005841790269881369, - 0.0019806233897562264, - -0.0012406861598198093, - 0.0009549761131583321, - -6.534560174479572e-05, - -0.0006175957166927147, - 0.0010379501880727925, - -0.000730192172290413, - 0.00153538350305216, - 0.0009534870384671429, - 0.00047143587730778477, - 7.491109460011381e-06, - 0.0008195544833584766, - -0.0007882196383744557, - -0.00028358165329655534, - 0.000766793816189472, - -0.0007233946510001359, - -0.0021064584115060504, - -0.0011689971548469104, - -0.0001766120879350402, - -5.5159449471943997e-05, - 0.0007701010389310204, - 0.0009709692543210449, - 0.0007183197441855779, - 6.18439910280167e-05, - 0.002282277340730401, - 0.0009335293567560545, - -0.0009749981554539909, - 0.0008453462972586921, - 0.0005958226131253581, - -0.0004033556397155943, - -0.0012132454270161516, - -1.7382106265461522e-05, - -0.0006242184889469245, - -0.00016551170676190456, - -8.14165267706583e-05, - -0.0011765038481001894, - 0.0005081723585925627, - -0.0010779691393508885, - 0.0025050879209342325, - -0.0007782156601813777, - -0.0017889665646459642, - -0.0005026521424005973, - 0.00016589117859486954, - -0.0009809032676799771, - 0.0006340085375115262, - -0.0004639798241964138, - -9.866809204316012e-05, - 0.0018592934816004632, - -0.0004112695841125286, - 0.0011203831899861147, - 0.0006414731004285953, - 0.0014245010037976012, - -0.0014529773601122615, - -0.0017987374680565006, - -0.00033783259952824436, - 0.00013410990625536918, - 0.0013609510035921721, - -0.0008014360149565566, - 0.0017037021656526447, - -0.0009003848900151005, - -0.0002802187699289738, - 0.00038963565648648024, - 0.0009019753388567136, - -0.0003040684630249747, - -0.0006587252531709641, - 0.0005635978690678343, - 0.0009429259210338645, - 0.00038826831752047984, - 0.00043054684073762396, - 0.00014477868930336352, - 0.0011890484898402299, - 0.0010388987301424863, - 0.002313342319873869, - -0.001134302231574355, - -0.00015097073362008937, - 0.0006992634902959924, - 0.0020145373101550876, - -0.0004167850331253428, - -0.0010674799914575676, - -0.0008014302386266293, - 0.0005610601419880047, - -0.0002743190063780945, - 0.0004140148830036848, - 0.001020964190258762, - 0.0017074092720775651, - -0.0003135920316336197, - 0.0018364002468503028, - -0.00015607296111617037, - 0.00034117102080231346, - 0.0013279154552949808, - 9.136930738720031e-05, - 0.0005785873040491905, - 0.0009511735034821304, - 2.761459103488848e-05, - 0.0005548150443704557, - 0.00029041591955009485, - 0.0006493167164043868, - 0.0006881848628087305, - -0.0011859143898144769, - -0.00038767372187038264, - -0.00032747755773665407, - -0.0002650776012161945, - 0.0009681781476617453, - 0.00029893281675413185, - 0.00047034220821275975, - -0.0001917000692344949, - 0.0007567457246011726, - -0.0011139439941947485, - -0.0020077884477892986, - 0.0004278241861882905, - -0.0004570140856845621, - -2.3929300783253377e-05, - -0.0013367078217559694, - -0.0014649243541808967, - 0.0006032587444130442, - -7.471692786929013e-05, - 0.0010215854099624715, - 0.0009862033819462465, - -0.00035666691400653957, - -0.0003622222427913829, - -0.001237726777174816, - -0.0008228915602373104, - 0.00035198160548658054, - 0.0010564389849066333, - 0.00017273633767120723, - 0.00015260134994813542, - 0.0004285648698123567, - -0.000326238616815912, - 0.0012955928491479652, - -0.0029705984703266514, - 0.0004125396359568002, - 0.00013242703039263807, - 0.000849653152847197, - -9.223962566949607e-05, - -0.0012736103150230494, - -0.0016526578994689044, - -0.0016811731798656415, - -0.0005456168262187439, - -0.001426176288165137, - 0.0015176518538013823, - -0.0006757359045290039, - -0.00022526331749210743, - 0.0003564969827015156, - 0.00037242391917335747, - 0.0004173632137727465, - -0.0005472545791527467, - 0.002108324920477683, - 0.0006418958262402657, - 3.628406279194874e-05, - 0.0008480612438377028, - 5.18906844084182e-05, - -0.0022042370511177233, - -0.0008535666100540209, - -0.00038185209734992897, - 0.0012768735805081081, - -0.0004997113362365213, - -0.0012240899357091964, - 0.0006986789946743762, - 0.0005814825101834095, - -0.0007441462748465636, - -0.0012205442400458442, - -0.0007278738308896556, - 0.0003243507988882179, - 0.00010353471008652235, - 0.003052480590301398, - 0.0003701978570782784, - -0.0011641107348104483, - 0.000569915906611676, - -0.0002528433207035878, - 0.0007608144565147929, - -0.0011211533593713074, - 0.0003777754056269379, - -0.0001651282061044216, - -0.0005741753959555545, - -0.0001130401387712723, - -0.000514549534673166, - 0.00035943099232545195, - -0.00048262887463514055, - -0.0005166350814629309, - -0.001679402106274306, - 0.00038951547047101474, - -0.0008213495102861475, - 0.0003667035636789426, - -0.0009031578989076328, - 0.0004355152640528551, - 0.0004396034765773414, - 0.0002841768993654472, - -0.0005753570891499391, - -1.6092513177801612e-05, - -0.00024979300282926075, - 0.0018182163572443234, - -0.001291148778648523, - -0.0015192950991530405, - 0.0004800097919629742, - 0.00019062045241325152, - 0.0011565044167162566, - 3.7741672305892574e-05, - 0.00033795168335612176, - -0.000640503666681213, - 0.0009385117573167581, - -0.00199848053788627, - -7.088990205317846e-05, - -0.00016450453998163717, - -0.00014054920145090623, - -0.0005811081663282071, - 0.002166579625459635, - -0.00039118287006192735, - 9.301806250606672e-05, - -0.0006033705577140463, - -0.0007933472054699645, - 6.653195284759739e-05, - 0.0001392536538791336, - -0.0011729946195312838, - 0.0003593080216590934, - 0.0008294213774772169, - -0.0017252728575906271, - 0.0005179768693870729, - -0.0013272991752507136, - -0.0006178236833662258, - -0.000730912513518537, - -0.00043094685044922887, - -0.0003279716413835768, - -0.00011873514879510241, - 0.0004912709287400554, - 0.001743108278303608, - -0.00012996788579032432, - 0.0004348090865548823, - 0.00013989424389303822, - 0.00016207229213893026, - 0.0005271451877002643, - -0.0002003496757770858, - 0.00020745832143755744, - 0.0006762615299525364, - -0.0021266696834329898, - 0.0016407783021133544, - 0.0026405941730587904, - 9.786754462351824e-05, - -0.0004985970026028056, - -0.00012032871061891262, - 0.0013855549493025203, - -0.00039887095802504374, - -0.0021815613895344106, - 0.0018227010240098255, - -0.0006901027489592224, - -0.0011631303010353215, - 0.00039654516203022164, - -0.0005543445682006566, - -0.00010603294481355507, - 0.0011080070211361953, - -0.0012212154116763828, - 0.0010443321555957661, - 0.0006486180634792124, - -0.001059869695555227, - 0.0020147660967333825, - -5.713136268499473e-05, - -0.00022591945763149264, - 0.0009490988592058512, - 9.487088078914181e-05, - 0.0022326194608021607, - 0.0009336786820719994, - 2.146747582416044e-05, - 0.0016397831130401494, - 6.082346456202405e-08, - -0.001490522313261468, - 0.0019287750540325703, - 0.0012769370385611308, - 1.4554229679737668e-05, - 0.0002804887001643633, - -9.673446542930523e-05, - -0.0017123394072204106, - 0.00029307982391016505, - 0.00024564020169194796, - -0.0014440453671915466, - 0.0008460427871661132, - 0.0010627001791076176, - 0.0004103930400740631, - 0.0016033725844874368, - 8.408286011970564e-05, - 0.000279265894507296, - -0.0003461708837352291, - 0.0015118843781492977, - -0.0001559325628309097, - 8.525136042881716e-06, - -0.0009134472450330669, - -0.00017956841260219082, - -0.0015237148785826552, - 0.0004155504355133786, - 0.0007970826341351755, - 0.0019941813889628114, - -0.0007346933497275374, - 0.0013014792877882359, - 0.0019125746842347038, - 0.0014651939402909448, - 0.0015674157293866092, - 0.0005907188131709521, - -0.0008737372249517258, - -0.0005001301076269519, - -0.0006436574661139145, - 0.00044564388784009047, - 0.0009619418741547083, - -0.0011525593516118486, - -0.00029635739224682706, - -0.001202512868388681, - 0.0011918161192297754, - 0.0009289544583406312, - 0.0001784812168356638, - 0.00034233664745351983, - 0.00039157482030684567, - 0.0005775209088116946, - -0.0015198103858270566, - 0.0003520687391028243, - -0.00032453529740622794, - 0.00020596157195023744, - 0.0014318686544236856, - -0.00029013231028376745, - 0.0002018707258997992, - 0.0003097340826878729, - 0.002140305508636821, - 3.699026918734806e-05, - 6.874873528701258e-05, - 0.0019554231974936824, - 0.00024071772866135043, - 0.0025284879543177475, - 0.0011641919550779425, - -0.0020595432611778598, - 0.000891716291021828, - -0.0007946859128901019, - -0.001507435585757026, - -0.00019799894235210071, - -0.0005862252456197279, - 0.0019324885453846903, - 8.684223048108423e-05, - 0.0019510300452152004, - -0.001236687422281942, - 3.349812954802527e-06, - -0.0010270355915634884, - -0.0011796015403083243, - -0.00038468445854859297, - -0.0005209321447850946, - 0.0007490277522416925, - 0.00028285657527032265, - -7.782079893020491e-05, - -0.00099691421708157, - -0.0010489178973846758, - -0.0007668128315678887, - -0.0003282215410536555, - 0.0002317376494425151, - -0.000632018026105997, - 0.0006431944755951307, - 0.0001538517964516919, - 0.0013705220552673013, - -0.0007512793191464536, - 0.0004921093890289518, - 0.0006267259145556641, - -0.001236904841153024, - 0.0007003904370608272, - -0.00013050553060296282, - -0.00036454481966518605, - -0.00012391798301091927, - 0.0012614406864767007, - -0.0019651848918708493, - -0.001066452912231608, - -0.000420927569047054, - 0.00081246847887626, - 0.0002629759202901745, - 0.00044469716172683437, - 0.001269611297706237, - 0.0007115235776344875, - 0.0005427805587787298, - -0.001615216165402733, - 0.0003079506754934271, - -0.0014020827894141023, - -0.0018903672365799251, - 0.0002947368231772709, - -0.0005194169973690803, - 2.0443775883277745e-06, - -0.0005773247977025149, - 7.262636618133411e-05, - -3.957099883248893e-05, - 0.00011615610637832746, - 0.0003986564766680241, - 0.0004304202431456032, - 0.001639583057528353, - 0.0013392546017216445, - 0.0002133286916936441, - 0.0005771561631307241, - -0.0006917064952434115, - 0.0001517600346324265, - 0.0009774651732716065, - -0.000267398897883614, - -0.0004751798544889752, - 0.0008565161778537148, - -0.0003784133696760469, - -0.000851296134215468, - 0.0009243630964946243, - -0.00017073180869199827, - -0.0008428802366639031, - -0.0008330302222155142, - 0.0008040290047267671, - -7.15495170024769e-05, - -0.0010396308525499722, - -8.395421048131099e-05, - 0.00014962607438535352, - -0.0005779781883200332, - 0.0011907171899151572, - -0.0015712012106431192, - -0.00060958514727428, - 0.002176110993676498, - -0.00022300369221068172, - 0.0001130995488451244, - -0.0006672250773911878, - -0.0005392712357626733, - -0.0023605160067329163, - -0.0020090262291101216, - 0.00017553730736549576, - 0.0006973740328678243, - 0.0008884162351001439, - 0.000579011440645177, - -0.0002285221062009376, - 0.0006972918985489604, - -0.00012834164316563026, - -0.0017156056312168852, - -0.0016401432771004428, - -0.0010734574848231108, - -0.0007620526527132837, - 5.633827502602297e-05, - 0.0016724125513445066, - 0.0001288216583450889, - 0.0004627005152091788, - 0.000720981078381373, - -3.593082844634285e-05, - -0.0005476232896976551, - -0.0009310500592957817, - 0.000398846821178556, - -0.0002780792077918966, - 0.0009170063810255206, - -0.0014174663594748763, - -0.0008712408580731147, - 0.00010542528755803315, - 0.0017190536630029593, - -0.0009941170772507608, - 0.000720492531001457, - -0.00030298907553244004, - 9.028807118249002e-05, - 0.0017727608716047347, - 0.0014247293457695864, - 0.00026583044860158757, - 0.0010691034759723556, - 0.0006653358889128366, - -6.0289296643990396e-05, - 0.0007170246810325555, - -0.0001772635598047155, - 0.0010242516622548034, - -0.00012754571146043577, - 0.0006986279905977467, - -0.0004662650323473371, - -0.00027148621617442063, - -0.0011332946950846745, - 0.0004857604291582493, - 1.8392686292690045e-05, - 0.0010263561289250132, - 0.0006692695934926536, - -0.0010917229972155738, - 0.00010642375730265514, - 0.0001505600506550884, - -5.315643550322299e-05, - -0.0013117349253805252, - 0.0018266968300293695, - -0.0010168981355759142, - -2.090707796501901e-05, - 0.0006117082758057074, - -0.00043141510065777843, - -0.000675200630714386, - -0.0011100276013735176, - 0.000834122124232128, - 0.0017647333675279873, - 0.0005721938341880505, - 0.0010308241783285909, - -0.0020950842859250715, - -0.0007996268702325485, - -0.00046331539785424744, - 0.0007802610319530841, - -0.0022111436864162178, - -0.00020413724446541792, - 0.0002194445735454737, - -0.0005886538904392968, - -0.0008299263059211461, - -0.0004315881162397551, - -0.0018701744885482184, - 5.5827611433751075e-05, - -0.002287758541656858, - -0.0009916221663198493, - -0.00032620677079856083, - 5.524510685156676e-05, - 0.001036636705146271, - -0.001140519087703874, - -0.0002223606434355412, - 0.0003755719699740441, - 0.0006439801923375267, - -0.00011404258335382189, - 0.00251371480468376, - -0.0010295836417316135, - 0.0025031384622400256, - -0.00020629320280083464, - -0.00048640218694303466, - 0.00018256192264430552, - 0.0010684305265089731, - -0.00015727076155438118, - -0.00043371371051356016, - 0.0005092366110206641, - 0.0005978656964138574, - -0.00034364105792880335, - 0.001711346594461766, - -0.00028734994303640575, - -0.0010657257417652373, - 0.0006282300231981693, - -0.0006077072570183182, - 8.968189831397167e-05, - 0.0010740825577277863, - 0.0014993333093505743, - 0.00017409649045377676, - -0.0003643123592104899, - 0.0006136205565031417, - -0.0029550171038326043, - -5.4422216105728935e-05, - 0.0013334226592108664, - -0.0007508246072583765, - -0.0013941854304582574, - -0.0005905774425539237, - 0.00200543907885873, - 0.0008953891803911723, - -0.0007023162375861102, - 0.0004101627964129163, - -0.0011165800878538035, - 0.00034119427998366913, - 0.0012934921467422352, - -4.288524458159203e-06, - -0.0004095056802531749, - 0.00048760404975068024, - 5.1164780209833805e-05, - 0.0007519032045682428, - 0.001781119325887321, - 0.0012969307176218903, - -0.0010432538081608423, - -0.0003483401881634771, - 0.0003655288151099536, - 4.81401746414276e-05, - -0.0007372116627143661, - 0.0007437951092335851, - 0.000487167755924309, - 0.0005571561703812941, - -0.0002960969924137321, - 0.0016637409412377094, - -0.00023609044206923685, - -0.0005446138714709309, - -0.0029271161822800366, - -1.3876279745288146e-05, - 0.0015258308340250657, - 0.0027876124340834698, - 0.002130312712877964, - 0.0006166464591757542, - -0.0003635459677533737, - -0.0004373975549256638, - -0.0013170560900721343, - 0.0014706391137113337, - 0.0006858719923126346, - 4.1998200664075186e-05, - 0.00026241022251566434, - 0.00043421005330608956, - 0.0005955818331820132, - 0.0007160714201264933, - -0.001585259016945055, - 0.00187655245215351, - 0.0007449409036323872, - 0.0005880868914384926, - -0.0001490101263906837, - 0.00026433441986556866, - 0.0006024004540044645, - -0.0004030963456187832, - 0.0007100875424710137, - 0.0009490935119439741, - 0.0001806102354244134, - 0.0013206049333546444, - 0.0015819488914603141, - 0.00025593206588251174, - -0.0001919860395079832, - -0.00023196856346891957, - 0.0002736004728982768, - -0.000562476952793028, - 0.00024701479391206943, - -0.0006739696086320152, - 0.0003793219485343968, - -0.0007104914248624755, - 0.00047225099829307506, - 0.0011568018022847645, - -0.00037444032683480073, - 0.00024999861797823616, - -0.0007180845329182011, - 0.0015698682165246373, - 0.002350223835353602, - -0.0003610708012757299, - -0.0018486320042065774, - 0.0006501071635946506, - 0.0007269120126822176, - -0.00021292263099631685, - -0.000929171541346941, - -0.0010174648098872177, - -0.000434706191714284, - 6.468686654172092e-05, - -0.0007280274933216658, - -0.0002626831112414394, - 0.0006355756289539638, - 0.0005895551054632018, - -0.0013304046548541083, - 0.0005695062646713414, - 0.0003761493522762651, - -0.0012764377802444431, - -0.0013261958649585437, - -6.625994567448741e-05, - -0.0010284251515546778, - 9.483091526032493e-05, - 0.001237628522379248, - -0.00033832999864816504, - -0.0015563350603975223, - 0.0016573568742981944, - -0.001606688356168757, - 0.0009224999569706538, - 0.0006178164039575342, - 0.0009762236637908839, - 0.00086687627244328, - 0.0001379004826568866, - 0.00045705122626727297, - -0.0001579479306644462, - -0.0008365160930007844, - 0.0005762875441957301, - -0.001167512950292, - -0.0008983706160349432, - -0.001689038337171571, - 0.00028142285708987897, - 0.0013178926535026417, - 0.0004503473720088592, - 0.0014146533701613552, - 0.0013253162380101186, - 0.0004998232644834583, - 5.290342500448878e-05, - -0.0005012035274449386, - -0.00020088647731621861, - -0.0006707777446907511, - 0.0005071506396508677, - 0.0009239287990547452, - 0.0007545217951357074, - -0.000389014536252052, - -0.0010449636370830507, - 0.0010879145775940435, - 0.0003784889243694282, - -0.0001665967578268188, - 0.0004892879765644296, - -0.0001657206701506488, - -0.00024494191731663925, - 0.00036197834305822565, - 0.001223592408571795, - -0.0004523189159419235, - -0.0005376116294582162, - -0.0006206248471504681, - 0.00013909918755704905, - -0.00044896287863415113, - -0.0005627232648196806, - 0.000772123331121406, - 0.00010249726726378705, - 0.0009153971960275898, - -0.0009197282894971401, - -0.00045519562034976476, - 0.00016669430066948145, - -0.0003746876952879202, - -0.00040777272743272846, - -0.0011217160001924327, - -0.0007578837130124816, - -0.00020118211088882826, - 0.0005477454997083084, - 0.0015266859083543495, - -0.0007267286701718553, - 0.00031333267545393995, - -0.0003905004531857886, - -0.0002626409148692156, - 0.0006210975738909206, - 0.0005692053176784493, - 0.0002471904187534572, - 0.0004202334071888203, - -0.0008758805062718748, - -0.0008755113860840459, - 0.0005199381127051587, - 0.0004228147553757501, - 0.00046525874764905066, - -0.0003406667184536375, - 0.0010832769880539037, - -0.00020571028975966148, - 0.0017154072136917069, - 0.00046214639320422794, - 0.002296137800467784, - -0.000536557949295023, - -0.001363228464168958, - -0.0008845396748552836, - 0.0004523567416136685, - -0.0011675735141674787, - -0.0014157376609192404, - -2.1309482088694813e-05, - 0.0009819289953206152, - -0.0011217166984518376, - 0.0016886939708782495, - -0.0008606007177433313, - 0.0012413990173761869, - 0.0019678041325869784, - 0.0006577588725285937, - -0.00033212293355130306, - 0.00034161268359059497, - 0.0006357620049501744, - 0.0002684146348073688, - 0.0006768422271464937, - 0.0004255999739123123, - -0.00012083520404429209, - 0.0009282216996406468, - -0.0012642781564152301, - 9.636499595830557e-05, - 0.0011269621707507994, - -0.0013002593754769718, - -0.00041480480993879535, - -0.0007438234429205293, - -0.0004576224653695943, - -2.3006913923526054e-06, - 0.0004155419225138681, - 0.0005637195920429009, - 0.0018109672268161008, - -0.0006803468160840597, - -0.000978668247340769, - -0.0010457457607455367, - 0.0014532824324067525, - 0.00031428302620476503, - 0.0008473864881522489, - -0.0004038502249465877, - -0.00035168664208942344, - 0.0012497321081667272, - -0.0011779391596057173, - 0.0014459931863595066, - -0.0006917240395299719, - 0.0007826872417370597, - -0.001983922726816535, - 0.00031211658236380966, - -0.0016642731928292992, - 0.0006457684399964211, - -0.0008840307031810044, - 0.0002575626278183798, - -0.0007976613000731452, - -0.0017378999773860868, - 0.0006917324697463624, - -0.00042994369663791767, - 0.000646213143650333, - 0.0005808223879659657, - -0.0004837317110888426, - 7.006022750460564e-05, - 0.0010701231116745057, - 0.0001860455972480184, - 0.0010069395296796895, - 0.00037300559762443495, - 0.0004718674311970173, - 0.00026747394699864075, - 0.002056035210732013, - -0.00038258935503495556, - 0.0023023584826631664, - -0.0005729251626906213, - 0.0017414142876610909, - -0.00036285436448906016, - 0.00013914574695984334, - 8.537061468300811e-05, - -0.0006507929974028419, - -0.0009902075049961097, - -0.00014534835187156339, - 0.0008011601243841169, - 0.0006536570948133596, - 0.0010755835620837903, - 0.0027051487492524592, - -0.0010759480275824805, - -0.0006679509166157534, - -0.00035877333150166634, - 0.0009405242917487607, - -0.00047363856406517664, - 0.000746024185244431, - 0.0008578505689944092, - -0.0004050758003578346, - -9.191442198925878e-05, - 0.00039385712397631604, - 0.0007704332824512292, - -0.0010329516951823766, - -0.0008999030191037841, - -0.00022237595150884768, - -0.0006170706387995061, - 0.0012438346958089717, - 0.000694946855991502, - 0.0005006325292872363, - 0.0001946121960917966, - -4.925005804333845e-06, - -0.0004474654396015772, - 7.930547007301549e-05, - 0.0003868642891328513, - -0.0009500511580074082, - -0.0006867173363567777, - -0.0008464713881161284, - 0.0031039730624192858, - 4.886044059518839e-05, - 0.0005644991336594874, - -0.0013859159103341893, - -0.0005929312802932834, - 0.00026685278155860704, - -0.0002111085569876581, - 0.0014970386430557432, - -0.0017712281597664162, - 0.0014216532617942934, - -0.0021174234994814386, - 0.00041958815376622554, - -0.0010927797635086863, - 0.0011985900513689618, - -0.0014686443008694553, - 0.0002379946533815922, - 0.0018487841207025942, - 0.0009082972406576487, - 4.4636113454160615e-05, - 0.00043704650823309354, - 0.00021469217473028617, - 0.0009534277182634642, - 0.001220541186762788, - 0.0011204789244905668, - -0.0004430560544479446, - -0.00031927684284348783, - 0.0015054097103833221, - 0.00038278633429526983, - -0.0017937210931580892, - 0.0011230607620261348, - 0.0008848318830002251, - 0.00022407916705654885, - -0.001133343717793609, - 0.0004974920119606922, - 0.0006487392330315712, - 0.000959920496905682, - -0.00032528761024580994, - 0.0002954286334577505, - 0.0002356698530428147, - 0.0015135392704725607, - 8.582654792625309e-05, - 0.001731359287360543, - 0.00043657912063054026, - -0.00043448799756485104, - 0.0010832101711840533, - 0.0004469977825550753, - 0.0016393022211248422, - 0.0012508822087971571, - 0.0009069994169907739, - -0.0009854903871732567, - -6.738491853782431e-05, - -0.0008438089736984706, - 0.003040511913836118, - -0.00020127738260005096, - -0.0003268878345488779, - -0.0002638169084476959, - -0.0002654262262502875, - 0.0004553221851271461, - 0.00029780787837211943, - -0.0006797406250546596, - 0.0020352535359487007, - 0.00207371634853183, - -0.00034204153665693456, - -0.0014920248441876879, - -0.0001087936968271581, - -0.0011033652470752765, - -0.0004292118095880727, - 0.0022066913761092087, - -0.0009977770975421578, - -0.00016760414304673965, - -0.0007344645837178269, - -0.002090213893778146, - 0.001499253059072946, - -0.0018573102785715578, - 0.002444001168088495, - -0.00031095665778576616, - -0.0004933070493622671, - -0.0014633181920125245, - 0.0007661037672903099, - -7.562673989100029e-05, - 0.0004145956404444759, - 0.0011247962234635118, - -0.0006032649252224925, - 0.0015355817505588215, - -0.0005018120953866782, - -0.00040655889522591055, - -0.0006871751346987695, - -0.0005702592909882783, - -0.0007564936623216378, - -0.0004767695067898735, - -0.0004355374775725016, - 0.0010664629232728518, - 0.0007325651494028702, - -0.00041646303270053114, - -0.0012683802713499206, - 0.00035127573024596863, - 3.2498725038979416e-05, - -0.00025078749935329936, - -0.0016744168730469255, - 0.0009255207928369723, - 0.0022102186685992306, - 1.7559510323701414e-05, - -0.0007867432401042623, - -0.0019566281182925496, - -0.0005903922836065611, - 0.0005282682418484356, - 0.0009146066046952404, - 0.001518324171575518, - 0.0016983749134160187, - -0.0020420516925946904, - -0.00041014957257958873, - -0.002737283500868878, - 0.001050402802014528, - 0.0009813011138617368, - -0.0006465867017089623, - -0.001113692821570002, - -0.0023273432857858455, - 0.001242523924259801, - 0.0005133350231876415, - -0.00035948389691077066, - 0.0006515730282112115, - -0.001728159143126945, - 0.0015730412393557597, - -0.0003952895969778639, - -0.00022544452258179464, - -0.0006116980549704186, - -0.0018924072223298865, - -0.00041037608515875917, - -0.00048583050295111893, - 0.0006155232371486295, - 0.0016007363362547484, - 0.0007785983086166559, - -0.00024409210665449888, - 0.0007679124570879911, - -0.00028679009121127387, - -0.0003687245510402493, - -0.001666690539968886, - -0.00018626118816316038, - -0.00016162809430291967, - 0.0007524840790413286, - 0.0012899803383710563, - 0.002167000543415662, - -0.0006591150440894533, - -0.0005442472354968654, - -0.0011542360052475855, - 0.0006360180030806232, - -0.0007078695065471899, - 0.0001015864423232246, - -0.00018682020137399943, - 0.0008134969224366926, - -0.00014432568811629972, - -3.8203024611328e-06, - 0.000516772990578648, - -2.5487452561308505e-05, - 0.00083602622239238, - -0.0006928794062869177, - -0.0006527701063132219, - -0.0015461305740111695, - 0.0010056830973898855, - -0.0020942666082410274, - 0.0005385419780381823, - 0.0010671923788050913, - 0.0011852530484686764, - -0.00035331939919131807, - 0.00019502549202917677, - -0.0016562110631784346, - 0.0013191888226484689, - 0.0017196229565636806, - -0.0009416772335146618, - 0.0002568802988165745, - 0.0008464086249796074, - 0.0007409224982430108, - 0.0012315952276362762, - 4.3949033480048265e-05, - -0.0013702230270855355, - -0.0006792919640733166, - -0.0011108179604585986, - -0.0024027807087709224, - 0.0004960119102958906, - -0.001813473753139475, - -0.0002349185288989846, - 0.00034660169007418615, - -0.0007941480409042476, - 0.0014229509722838386, - 0.00019518810847198728, - -0.0007949942375118666, - 0.001400807976513943, - -8.12842648015443e-05, - 0.00013508436683492086, - 0.0014417808708860522, - 0.000378772462137583, - -0.0011046895738008025, - -0.0008882611913874892, - 0.00025669799672491415, - 0.0025933173863521607, - -0.0008459702665513126, - 5.149761488883737e-05, - 0.0011487586694216981, - -0.0014860015005643402, - 8.517123748599697e-05, - -0.0004998891593126572, - -0.0007976438989824416, - 4.3896401291477005e-05, - 0.00010758435413238098, - 0.0016518298141300863, - -0.0010196530598296837, - 0.0007091379536569979, - -0.0007133069535816812, - -0.0018742165286075784, - -0.0004045769528929075, - 0.0006748904542124681, - 0.001757745601615578, - -0.00011890960633063712, - -0.00010271534615162307, - 0.0013032470840092921, - 0.00041125377855313487, - -0.001305166998534857, - -0.0005521453893417717, - 0.0008062233654258206, - 0.0030786504471115293, - -2.2861534178959065e-05, - 0.0017366995810142699, - 0.0006920702948833313, - 5.4103632099657786e-05, - 0.001198834844659814, - -3.573000031922003e-06, - -8.09237760861293e-05, - -0.000371506005848875, - -0.00014198028653675325, - 0.00020757243036667098, - -0.0001422792297794209, - -0.0016796565172008152, - -0.0004916482754442175, - 0.0011471023341559571, - 0.0012413236314681197, - -0.0004509543834026801, - -6.219990317515942e-05, - 0.00033176940192359753, - -0.001928704497830712, - -0.0005887296276708093, - -0.0009144337161338149, - 7.978748570077073e-05, - -0.0022026527155974696, - 6.527982076363355e-05, - 0.0015753277972892492, - 0.0003632395022228636, - -0.0003234424517184052, - -0.0008067346032315295, - 2.729896681615207e-05, - 0.0004030638238344673, - -0.00031401947235481007, - 0.0008495230127960287, - 0.00011412395243138208, - 0.0004932191187614227, - -0.00048582959683132905, - 0.0009816623379415481, - 0.0006756043183105817, - 0.00045270975436274353, - -0.000751830261741521, - -0.00044365543690873445, - -0.0011341815010785347, - 0.0023070519466879976, - -0.0004382719866488848, - -0.001018960679058511, - -8.727789364469362e-05, - -0.0011897991745239186, - 0.0011074828446653495, - 0.0013159136833457712, - 0.0010715309699888946, - -0.0009656014397601501, - 0.0008265005774812823, - -9.948915980828967e-06, - -0.00033330749039548325, - 0.0006325785485342117, - 8.214343605144887e-05, - 0.001068509430054195, - -0.0014894665253088056, - 0.0012736805247660088, - 0.0005219867044718438, - -0.00038872129621062175, - 0.0014001965214772555, - -0.0011490483821123773, - 0.0002996616515409758, - 0.000798672100637385, - -0.000309945323523887, - -0.0006244892309762365, - 0.0029802559417434218, - 0.0004434365986832532, - 0.0004889718968611389, - -0.0018729053156029969, - 0.001405573175253757, - 0.0014950520016731293, - 0.0016948008408618784, - -0.0014062865248524585, - -0.0020750680309280876, - 0.0005003537335061857, - 0.000669087057778642, - -0.001221038371129248, - 0.00043851974913572845, - -0.0006706250709762307, - 3.408044118043779e-05, - 0.000710618220207835, - 0.0011333451938229102, - -0.0007215777035157556, - 0.0005174433316260862, - -0.0010775659650933368, - -0.000589899040965068, - -6.61543181639095e-05, - 0.0009415776541288087, - -0.0002478892596428069, - -0.00014002197462386647, - 0.00023240762640711738, - -0.000175911923955305, - 0.0006057491272360183, - 0.0019387024608126383, - 0.0005681285965741367, - 0.0001280259036012815, - 0.0014426374700978795, - -0.0009101578783801592, - 0.0013910525179000965, - -0.0007614481524008041, - 0.0011648967381662552, - 0.0010454252824402283, - -0.000736716459810265, - -0.00019292592143259644, - -0.001502062442450998, - 0.0002933201581719788, - 5.823887536861321e-05, - -0.0017683269634040592, - 0.0008538313129892646, - -0.0001943212420804147, - -0.00035487040279335284, - 0.0011929436548053214, - -0.0002867754136660252, - 0.0006044729136736709, - -0.0009790250126811343, - 0.0002746713059972119, - 0.00024813891652056025, - -0.0001899764023408396, - 0.0006373214233755371, - -0.0005732337301033437, - -9.90755234826322e-05, - 0.0014524586681033992, - 0.000536638073594778, - -0.000553913834347903, - -0.00035892586899493933, - -0.0005530194516179637, - -0.000829032213394943, - -0.002319130947440106, - 0.0003092128170312275, - 0.0008860303316466758, - -0.0002715697771111552, - -9.558299736645202e-05, - 0.0005731428695824436, - -0.0012859663704473294, - -0.0009412372594540031, - -0.0004331174717290989, - 0.0013721106522304606, - 0.00016026915342325524, - -0.0021434973483585055, - -0.00036432185084437274, - 0.0012556045901478642, - -0.0012505347063499217, - -0.0019212228420040765, - -0.0009134406481040899, - -0.0002714900681015126, - 0.0003280597479885204, - 0.0008508357178301739, - 0.0010146665950453283, - 0.002080346969960871, - -0.0009705249761286089, - 0.0003837489794637984, - -0.0007804417617474581, - 0.00034978718527047686, - -4.7698372572765956e-05, - 0.0006500836515209771, - -0.00010850800379972724, - 1.4287371117127996e-05, - 0.001076252256231218, - 0.0006961822319767089, - -0.00013953710589188938, - 0.0006823888816105162, - -0.0004177527461523892, - 0.0011732523821572222, - 0.0007599494480286087, - 0.001565661512484428, - 0.00029546790315511314, - -0.00023699817130997568, - 0.00044278431226628775, - -0.0016274662174556877, - -0.0001607435703807978, - -0.0005833446590773067, - -0.000968037081439408, - -0.0025648118211459496, - 0.0012110043619535413, - 0.0007193025823097549, - -0.0005776771800597406, - 0.0017964715008824594, - 0.0003941662104688755, - 0.00021568150565389084, - -0.00018222369448689136, - -0.0007546495124508482, - 0.0006997574701818913, - -0.0013680805865911372, - -0.0011211941871729486, - -0.0011560316609825095, - -0.00039225412975455164, - -0.0013585645377528763, - -0.0008219556581984715, - -0.00029066909806836985, - 0.0007628010491761821, - -0.0007281410603627487, - 0.0005615522635028695, - -0.0015042037383958776, - -0.0008364892437008077, - 0.0019681793040294457, - -6.254677510887135e-05, - 0.0002700986902573726, - 0.0001523863545947569, - 0.0013376051431337218, - -0.0013703642212491145, - 0.00021529675540306345, - -7.486027515047502e-05, - -0.0014293032594004957, - -0.0005514362418977993, - 0.0005726705981698307, - -0.0012479850434206176, - 0.00043136315817428393, - 0.0025378553037492596, - 0.0009757100993807986, - -9.472691353754364e-05, - 0.0015055684653727407, - 3.931134618955226e-05, - -0.00043851541858065337, - -4.1036544429463254e-05, - -3.842682783960564e-05, - -4.3250524568643224e-05, - 0.00129018671022347, - -0.0030086459643550193, - 0.0009217567354945855, - 0.000785018368149809, - 0.0012670415718882414, - 0.0007875895508526483, - 0.00018181705798076206, - -3.6991064192091853e-06, - 0.0006155158449542591, - 0.0012336471397443615, - 7.715513542238357e-05, - 0.0002197941329175255, - -0.0005864492104574435, - 0.0004598454588440684, - -0.00019190294029785708, - -0.00048807294422192004, - -0.0017370360648190698, - 0.0009771986608078664, - -0.001439525802027698, - 0.00018313138745092744, - -0.0010580568907313508, - -0.0007345220164723862, - 0.0011793979858195126, - -0.0008878739886988248, - -0.00010858477586699596, - 0.0013029622304863622, - 0.000659987991213686, - -0.0003326499335729999, - -7.969150181176944e-05, - 7.526777628483276e-05, - -0.0007202656987057851, - 0.001396569784280414, - -0.00045292822647700714, - -0.000438831497481421, - 8.429208031479423e-06, - 0.0006383311018976789, - 0.0001432219954091256, - -0.0008794825372134586, - 0.0006356437781460733, - 0.0001849379184373617, - 0.00036404414270894156, - 7.940992140712138e-05, - 0.00040063692561626815, - 0.0006308509681774953, - -0.0006189503860329371, - -0.0005427685317731339, - 0.0005697084461804421, - 0.0014045859584337723, - -0.0009759173240037042, - -0.0010088193758311772, - 0.0018960303312117782, - -5.825188009073909e-05, - 0.0004678371079239552, - 0.0003115902347709542, - 0.0012377277411283584, - -0.0001954128625998719, - 0.00016674869624721465, - -0.001464923011013419, - -9.736108605695745e-05, - -0.0005409635506695504, - -0.00026075421199933245, - 0.00016096688388816865, - -0.00042451795611181343, - -0.0006719611019264551, - 0.0006827369692636345, - 0.00032284673326642187, - -0.00013391479299982754, - -0.000923597796163585, - -0.0002885386957590647, - -0.0009566975376257862, - 0.0005367450047287716, - -0.0006880047740640894, - -0.0002378971837485898, - -0.0015241866204656156, - -0.000545716856755515, - 0.0010057484522171093, - -0.0020405865595726153, - 0.0010849099221871704, - 0.0007596157681280694, - -0.001475639601416342, - 0.0024409919578312683, - -0.0010725390801587045, - 0.001121313014246824, - 0.00011382948932185048, - 0.0003930158232060277, - 0.0006721417364515884, - 0.002066659348854288, - 0.0007439015243084137, - 3.2116050196290005e-05, - -0.0009743639273392011, - -0.002314148908537225, - -0.0017315444396056757, - 0.0005290868289741774, - 0.0005757463143595294, - 0.0018203972349010022, - -0.0002048093492187653, - -0.0019882929509317474, - -0.0008051745842583483, - 0.000832873909829012, - 0.0002707089169512266, - -0.0016738672762943898, - 0.00181378256735303, - 0.002171695296025117, - 0.0017116837232992938, - -0.0007005322861866137, - -0.0007602267247068059, - 0.001598379083539657, - -0.0007713503122972662, - -0.0006595661917908693, - 1.6036303371571794e-05, - 1.549850894058341e-05, - 0.0006672458076368972, - 0.0010804159695939042, - -0.0011418647317475927, - 0.0003029538501656355, - -0.00029534863945953526, - -0.0015144798233418825, - 0.002749099277906878, - -0.000593562259860837, - -9.586465421105964e-05, - -0.0001308329103076589, - -0.00026133845082829495, - 0.0017877580543388951, - -0.0005506448073121118, - 0.0015190768116289755, - 0.002100607435512208, - 0.00039743454180640573, - 0.0002512293169214053, - 0.0011621611089851565, - 0.00042094742591658745, - 0.0005506990120583307, - 0.00045787215691683717, - 6.804005600364113e-05, - -0.0014721573633570079, - -3.3944070767212564e-05, - 0.0003353836778454074, - 0.00027540062822130703, - 0.000250570568427631, - 0.0001798875976213458, - 0.0017844812405691407, - 0.00015924514126987131, - 0.0006126033519844281, - 0.0021033643754724014, - -0.0010171233042226332, - 0.0012198673242134973, - 0.00030762808453295545, - -0.0005548400853897163, - -0.0003517005064024618, - -0.0017413860287663827, - -6.928546327441635e-05, - -0.0007134837633368578, - 0.0009267204354751437, - -0.001651013245699486, - -0.0015276134426585868, - -1.6227946546363065e-05, - 0.0006875569735571034, - -3.3157322824918105e-06, - -0.0019693129615744793, - 0.002199326494282608, - -0.00020603700785601966, - 0.0017720283254745123, - -0.0003313242891641789, - 0.000910195352676802, - 0.00045651095055703974, - 0.0008351033175933645, - -0.0004410152193419628, - -0.00012630723574614196, - -0.0013370727921135708, - -0.00035396990670544335, - 0.0014176571114269795, - 0.0013930930072078268, - 0.0004722999905004119, - 0.0014693965610438101, - -0.00042916566158147056, - 0.0005621070573505573, - -0.0005760705201069183, - -0.00012765475829311097, - 0.00038530765737376885, - -0.0007569419445913848, - 0.00020815713453087162, - 0.000593612351822954, - -0.0011531119791245213, - -0.000883389500892818, - 0.00011686364426042724, - 2.3673254115118476e-05, - -0.0008844460157940021, - -0.00030931797186430266, - -0.0002779891107953262, - -0.0007716662785516295, - 0.0018545762446522227, - 0.000316836916696387, - -0.0003817881651234466, - -0.0001454040015674206, - -0.00035183984571986887, - -0.0004290109731034398, - 0.001012284142362051, - 0.0007692591856941546, - -0.000687650724839588, - -0.0026482058689647663, - -6.620087198019601e-05, - 0.0007500136834095814, - 0.0003013815005643659, - 0.00014018763822672812, - 0.0009765105663566904, - -0.0006457958098827655, - 0.0003213169300759794, - -0.0006857899393825612, - 0.000877418202770739, - -0.000340835937923241, - 0.0009405984659241509, - 0.0008593863184912461, - 0.0015163770417988287, - -0.0018680747556735528, - -0.0007108099134894574, - 0.0008207114588319146, - -0.0006471453896947527, - 0.0016795494512058472, - -0.000871317424449607, - -0.00029658255814511464, - -0.0021662644178583393, - -0.0007183544710262316, - -0.0005958413043207557, - 0.00022023592952792235, - 8.854591715185243e-05, - 0.0006983350367500724, - -0.0013536435118818363, - 0.0013810568670779466, - 0.0013859067562158982, - 0.0010408008940697975, - 0.0016900175124781353, - -0.0002070896407100607, - 0.0011103312209492554, - -0.0009650876023872913, - 0.0012419614021689966, - -0.0010232246406937794, - 0.001179009535007403, - -0.0003813577468799026, - -0.0012825709386096778, - -9.638405421328937e-05, - -0.0019554313415493336, - 0.00013140597729061765, - -5.097658841204586e-05, - 0.001005563615664396, - -0.00015404432844152858, - -7.984771933036345e-05, - 0.0005847826459754031, - 0.0005803540257620482, - -0.0012039092358176959, - 0.001943794825560436, - -0.001298709004960633, - 0.00022102287352781906, - -0.0004605530350079147, - -0.00040311441637874733, - -0.0012324306643413851, - 0.00027626060798294737, - -0.0019480613053157977, - -0.0007578344766677275, - -4.919317638848016e-06, - 0.0011750387735194538, - -0.00022775763637681863, - -0.0006968743817363835, - -0.0013608140825012661, - 0.001538411887195385, - -0.0006622705826679073, - -0.001430241988332547, - -0.00012891324724551364, - 0.001539519513499533, - 0.0010948380766810809, - 0.001435236552428577, - -0.0005571121424959591, - -0.0006625731777781629, - -0.0012629909096832225, - 2.3327593382480507e-05, - -0.0008104408638140252, - 0.00022597474343200578, - -0.0006141172315833714, - -0.00035722733313017774, - -0.0008927313917654462, - 0.0016834575713991743, - 4.323180551106156e-05, - 0.0006399888089239227, - 0.000590283612262646, - -0.0005242379431548588, - 1.2442091154998977e-05, - 0.0008773026250528369, - 0.0003897574990135616, - 0.0012367960521980643, - 0.0008830816356103413, - -0.0013937208976184787, - 9.992860244225209e-05, - 0.0004821984082841701, - -0.0006407203277833426, - 0.0003861569765001049, - -0.0011653931248765438, - -0.0012932758707489235, - 0.001985031298876247, - 0.0007281592514124627, - 7.06413428931995e-05, - -0.00022228017011346844, - 0.00017485888263265204, - 0.00023878577267823903, - -0.0006312652688841843, - 0.00036606681444763744, - 0.0004819158369644572, - 0.0008091567020647278, - 0.001992337648651008, - 0.00028859014704786496, - -0.001207332305332751, - 0.0015792193633917518, - 0.001091840982151092, - 0.00016349956238119064, - -0.0004798322088795257, - 0.0014695431890058275, - -0.0001535008056017357, - -0.0007214202085622899, - -0.0002147096547969971, - 0.00148579236969923, - -0.00014908980750034473, - 0.0014681073436739768, - -0.0013933247638389754, - 0.0012175610428330392, - 0.00029115959242036264, - 8.104951358990204e-05, - 0.0028104310783185985, - 0.000898470216779737, - 0.0012963957581133621, - 1.2019094277023316e-05, - 0.00039887871028306145, - 0.001309997965690429, - -0.00022122351124894242, - 0.0008978620494293635, - 0.0008541264207681861, - -6.8169192989617265e-06, - -0.0005571453387280054, - -0.0004650500919993806, - 0.00044222048345225355, - 0.0001595742609433113, - 0.00033519405513611017, - 4.749395621650464e-05, - 0.0006688627350544909, - -0.0015422503864247553, - 0.0006767265424793942, - -0.0008118605281472501, - 0.002006351735427475, - 0.0020662311498204373, - 0.00016357777131296384, - 7.431175808237243e-05, - -0.00010938858781290496, - -0.0004487566207156841, - 0.0006384256053243702, - 9.00385980318124e-05, - -0.0023556046452070925, - 0.0009902928179931162, - -0.0007606926969610341, - 0.00044011964973954005, - 0.0013069778268202626, - -0.0012291331815587204, - -0.0007886872939892976, - 0.0015630567199437883, - -0.0006901481203194408, - -6.60580581846627e-05, - -0.0005819410191630573, - -0.0002916292450572172, - 0.0002772901938584163, - -8.867307947547425e-05, - -0.0002527194436678395, - -0.0017204153789815548, - -0.001344668107065351, - 0.0022833800725550395, - -0.0008509720303107863, - 0.0006584706121308343, - 6.327340506566827e-05, - 0.0016672313491822883, - 0.00037494968258890843, - 0.0008581673536921159, - 0.001156813185160631, - 0.0004062012108067546, - 0.001038448968650109, - -0.0009974712506253729, - -2.9385059134662164e-05, - 0.0005410553163273259, - 0.00012183518434963797, - 0.00010943509901799401, - -0.00010668994133985704, - -0.0010874529402470187, - 0.00013646520524175887, - 0.0007760833278297478, - 0.0006848954139354455, - -0.001933390486571139, - 0.000260622828014281, - 0.0004792762321968903, - -0.0018138343663319163, - -0.0009329712043942731, - -4.51569582223556e-05, - -0.00021169619188264108, - 0.0010489437225182211, - 0.0012008862000079561, - -0.000312915003465908, - 0.00037461686640326806, - 0.0004205562522097855, - -0.00023727106450829503, - 0.0002047945211978479, - -0.00030018605516235025, - -0.0013056300574065174, - 6.219385908185171e-05, - -0.0007152668617116499, - -0.0003704201860074468, - 0.0006454258722790297, - -0.0015019765193197189, - 0.0017652426051855425, - -0.0011089293777632792, - -0.00017641662971626447, - -0.00019787717893354358, - 0.000446075578841597, - 0.0010517376334796735, - -0.0027345529434203574, - 0.002830595714471801, - 0.0010436067828545601, - 0.00014119047278579724, - -0.0006494054680286921, - 0.0008059543272682357, - -0.0013022544367229589, - -0.0027568357514884253, - -0.000999063600721828, - -8.092567417104514e-05, - -0.00018948229364000493, - -0.001008010800876659, - 0.0007093274976979958, - -0.001097593389980581, - -0.0012032788805165031, - 0.000996410983161391, - -0.001084331129040611, - -0.0006486564434120376, - 7.749600202462334e-05, - -0.000519892893298179, - 0.000770090721626396, - -0.00017712598998314354, - 0.0007853768196128087, - -3.723864404557582e-05, - 0.00010672381062945289, - -0.0006392821447555979, - -0.0013840959668740107, - -0.0007827623699292418, - -0.00064565096628055, - -0.0003038016294392106, - -0.0003085340538149838, - -6.545078923184556e-05, - -0.0014843906290062465, - 0.0008099704258801589, - -0.00011058626504548319, - -3.52107276460381e-05, - 0.0001233792612752766, - 0.0009734262288108894, - 0.001190439093721866, - 0.00200238079563318, - -0.000352856905338311, - 0.00013355927962910804, - -0.0018521983737970228, - 0.0006739920799319837, - 0.0015451208442081733, - 0.00012016087670518232, - 0.0003466269705591849, - -9.331855818914755e-06, - -0.0006675925661375055, - 0.001396899830058125, - -0.0013217084338070437, - 0.00030270569088602386, - -0.0009049907602717835, - -0.00047428374232107146, - -0.00035594918478441687, - 0.0012604706574826838, - 0.0004819111486879655, - 0.000721213933054072, - -0.0008841751579305574, - 0.0009867943844729826, - 5.3591694187782475e-05, - -0.0006503995971833765, - 0.00032018135984425184, - -0.00015658406172815766, - 5.274765699579021e-06, - -0.0003813955892497758, - -0.0005702573062830622, - 0.0003063129220168738, - -0.00012470784135123122, - 0.0015074951693353801, - 3.2956844287557335e-05, - 0.0007703881715423223, - 0.0005565166632115152, - 0.0009069669888606224, - -0.0005340631838705842, - -9.71086494564866e-05, - 0.00016652079361663112, - -0.0015799570286807122, - -0.0002884746231072969, - -0.0006598026902722472, - 0.0010472793796788287, - -0.00016708077269041494, - 0.0009891234097519127, - 0.0005629287024826008, - -0.00044307396566573313, - -0.0009241807060414775, - 0.001375373042533029, - -0.0021265349535770153, - 0.0021107496131213353, - 0.0007719403773804556, - -0.0005331586280111576, - -0.0010636817943743477, - 0.002462566299862286, - 0.0008938947351640246, - 0.0010627000649178276, - 0.001264546835758891, - -0.0001430858931953322, - -0.00036333342739231086, - 0.0005040245009697238, - -0.0001657490271643572, - 0.0005943250000740832, - -0.0011163144041981543, - -0.0023129192597369304, - -0.001018267891353, - 0.00014820162110645876, - -0.0005583849245924568, - -0.00047931505440228846, - -0.00020901810646028872, - -0.0017153210125288138, - 0.0008326892046802803, - 0.00018450631814322745, - 0.0003650591614258385, - 0.0002455432461715907, - -0.0004775697497831601, - 0.0004549189215217869, - 4.560445862393727e-05, - -0.0006338920505529785, - -7.676650303415136e-05, - -0.0003725774131224557, - -0.0003205813375107155, - 0.0006280853967677863, - 0.00036530633296881596, - 0.00036084427800279237, - -0.0001294021487431137, - 0.000100207698751301, - 0.0008087889406538822, - 0.001404077664948341, - 0.0019018798626143597, - 0.0013792029266607479, - -0.0001526639747023215, - 0.00041283921970686763, - 0.00046422962351989417, - -0.0005104283314696025, - 0.00038607079785322345, - -0.0007511255379117103, - 0.0008621065434974189, - -0.0004611526217625331, - 0.0005648230247355937, - -0.0011962694983664924, - 0.0018317378643445993, - 0.0006587652582732003, - 0.0005683552828845131, - -0.0007476340817783222, - 0.0006784715543033694, - -0.00011928311977084635, - 0.0004529250809870564, - -0.0007584978568720618, - -7.658070559971969e-06, - -0.00011671086515769958, - 0.0012369427525197704, - -0.0005404387253565102, - -0.0008124561469710079, - -0.00015304847390923008, - -0.0010156961470841066, - 0.0013298970276790026, - 0.0002231541244948696, - -1.3462130786837939e-05, - -0.00035242305041531004, - 0.0006638166200322713, - 0.0005659504131768599, - -3.047163638927281e-05, - -0.00019106159638284666, - 0.0013720749355996275, - 0.00042009049684750023, - 0.0016424822614117954, - 0.0021197761232213197, - -0.0016124078738751213, - -0.001398324269453354, - 0.0001821631011831432, - -7.375389461739364e-06, - 8.420805337012609e-05, - 0.0015729260749026983, - 0.00026738231564163114, - 0.001648581914360777, - 0.0006055461292191359, - 0.0010381967636624947, - -0.00036761735443377203, - -0.00019155750650971798, - 0.0014578260758855038, - -0.0006223361727098365, - 0.0007224914858226252, - 0.0018644796243158213, - 0.001900130755250011, - 0.00036264849217318434, - -0.0006740589492760133, - 0.0015356820770237164, - 0.0007538969924013435, - 0.0001294022712607404, - 0.0021185224162859236, - 0.0007320685122835652, - -0.000141467806247334, - 0.00028818726991109957, - 0.00165403976812858, - -0.00027974356980997107, - 0.0016134808552933074, - 0.001315613028755425, - -0.0005801713619779085, - 0.0009928718024778515, - 0.000740592570745679, - 0.00022712367043525153, - -0.0029820960693425235, - 0.0005127886575992882, - -0.00012351000050377943, - -0.0007740001319371513, - 0.0008146894923544536, - 0.0003791825567533454, - 0.0008024431903472268, - -0.0002988165368458108, - -0.0007016097914847886, - 0.000960494361703853, - 5.745467271583534e-06, - -0.0006064962338265246, - -0.0007749093917073794, - 5.812509395079399e-05, - -0.0003015799757455017, - -0.0004343040603262557, - 0.0012569020810587216, - 0.0008212758881515393, - -0.0015369041005230174, - -0.0008937881601016068, - -0.0006667049269385028, - 0.00015628758589804836, - 0.0003046012963000835, - 0.0008900693095916173, - -0.0006355254709604693, - -0.0004791741848140483, - -0.0001867974147068191, - 0.00044975074610199015, - -0.001558047114961829, - -0.0003927966255019036, - 0.00043911117332175425, - 0.0011510192305397315, - -0.0011655148850895467, - 0.0008259301027769745, - 0.00030510505559930116, - 0.0018062937432003342, - 3.266022489856901e-05, - 0.0027685168528206435, - 0.001263168567567731, - 0.0010128646260335872, - 0.0006096697754274106, - 0.0008774814171748672, - -0.0003035558895437319, - -0.0006323418543268308, - 0.0008004404952062423, - 6.073945907961291e-05, - 0.0014649346433702657, - -0.0017316338874490687, - -0.0023839398496435047, - -0.0012586088455320964, - -0.000675038306247472, - 0.0013014414553251964, - -0.0008987417837579903, - -0.00022979314158411723, - -0.002341210675058874, - 0.0018209672743265987, - -0.00034704990382788877, - 0.0006816005139529054, - -0.0009545384722810892, - 0.0011829126481316136, - 0.0008448633529478066, - 0.0006834785579906926, - -0.0011255190714471708, - 0.0009860539519203036, - 0.00129221420163543, - -0.0004333702377567157, - 0.001374108443474598, - 4.0891589195290036e-05, - -0.0007882041523231869, - 0.00035807843192393055, - 0.0004146917353638658, - -0.0003463545985046798, - 0.0009262233291460144, - 0.0020915458598948986, - 0.00055490823842391, - -0.00010627884440286202, - 0.0008983072059073778, - -0.001569258664130797, - -0.0003535345078239857, - -0.0017171349275280335, - -0.0012913349954850493, - 0.0005275304106180892, - -0.0005713489413040826, - -0.00010442510717678319, - 0.0006731654399770024, - -5.559900706479052e-05, - -0.000504718061321424, - -0.0021613442162916646, - -1.5034044998885225e-05, - -0.00017666931560125987, - 0.0011314715894343017, - -0.00012371401684781592, - -0.0007271516757476716, - -0.0007372420110550401, - -0.0003674216773570187, - 0.0002131547541037959, - 0.0009435780413051167, - -0.0003724031262548714, - 0.0002049337505649494, - -0.0006243878927061638, - -0.0021065399292045364, - -0.0005689898056789802, - 0.000704293147096235, - 0.0008813327997456342, - -0.00012061595677987811, - 0.0009312070824045463, - -1.765606063651974e-05, - 0.0012780133226575072, - 0.0005204442292887271, - 0.0011474200794531952, - -0.00041621200804822865, - -0.0015805307866735498, - 0.0010057884867938002, - -0.0006059174242274861, - 0.000286930284700429, - 0.0015204572068002228, - -0.00025314108279485693, - -0.0015085137834595014, - -0.00046865316538870455, - -8.575425305343696e-05, - 0.0002419280509264832, - -0.0005489155240746355, - 0.0006897614569735156, - -5.817290565096332e-05, - -0.0008639039320284633, - 0.0003012434101337055, - 0.001910285450887686, - 0.0012341646656101454, - 0.0006708313733210764, - -0.0006361162926521117, - -0.0011728032535918474, - -0.001085696727318442, - 0.00045847047473448186, - 0.001085930676619312, - -6.370910885503792e-06, - 0.0012372114959275737, - 0.0005047289079242608, - 0.0005737151501188827, - 0.0028815326314919005, - -0.0007441299613699944, - -0.00034779174968042594, - -0.0010459151057719647, - 0.0009572686009381193, - -0.0008725029572376223, - -0.0008407691693181039, - 0.000785758279820467, - 0.00021580686027619045, - -0.0014373080386645754, - 0.0009342673678004001, - -0.0007398400180719713, - 0.0012709732228900316, - -0.0009633667854724939, - 0.0006547509762885522, - 0.00030350005785710935, - -0.0015698748931531868, - 0.0007908546499953723, - -0.0009170197532010201, - -0.0013804624294256936, - -0.0008374945720185393, - 0.00020845531380985548, - -0.0005940499733472185, - 0.001017179004519859, - -0.0009137713101204024, - 7.23257555934599e-05, - -0.00025667727755224624, - 0.0011121305152187633, - 2.2086090273904608e-05, - -0.002052398675441633, - -0.001233132615892488, - 0.002225298202510878, - -0.0016442880897690458, - -0.0007776496519613316, - -0.00038132271982335285, - -0.0002736082523018861, - 0.0013850880228224707, - -0.000954373053228605, - -0.000344626040972683, - -0.0013009563643818747, - -0.0002682891846515424, - 0.00044040139245718577, - -0.00022072710879601133, - 0.0005984263861333195, - 0.00045058654034326124, - -0.0011226761328185886, - -0.0001886760355273112, - -0.0006784636400990673, - -0.0005113206747991932, - -0.0011657250423925335, - 0.0007564614774283806, - 0.0005747119853019108, - 0.0007052961557858465, - -7.262454066611447e-05, - 0.001379571725721846, - 0.0005174879112237471, - 0.0007455821066278115, - -0.0008289127854025178, - -0.0005559465392837373, - -0.00045444896739837905, - -0.0005555639934270691, - -0.0015066789242312443, - 0.001271488138509423, - 0.0005789957212842685, - 0.00041893954765033015, - 0.00010309088159067172, - -0.00016800982025347256, - -0.0009976674939514945, - 0.001322259283358313, - -2.133247115727495e-05, - 0.0010808419310738401, - -0.0006473855602846022, - 0.0008490652337747972, - -0.0004069179491366801, - -4.301617474317167e-05, - 0.0007251701752127196, - -0.0005169782856819848, - 0.0007891467531570009, - -0.0005415107647100884, - 0.00013821533580995343, - 0.0001613517856085241, - -0.0015276745433027662, - -0.00017353730625796073, - -0.00012942859050214955, - 0.00045996900571050386, - -0.00033996833932050275, - 0.0014336865661513922, - -0.0010793475691574818, - -0.00018064946826454147, - -0.0002284578399010279, - 0.000580237899144713, - -9.939613431216424e-05, - -0.0018999844596687267, - -0.0009242090091976372, - -0.00012889902961934083, - -0.0007847254171736298, - 0.0007645874196133213, - -0.0007776366739492627, - -0.001997921842760315, - -0.0009661289839358805, - -0.001907379698348613, - -0.0003290008726985339, - 0.0018375281566994502, - 9.284633718707302e-05, - -0.0011067084258972158, - 0.0005707627468747322, - -0.0009435290736901443, - 0.001056675845438622, - -0.0009624524797040145, - -2.9038375368966652e-05, - -0.0013692277948142311, - 0.000687909714226233, - 0.0003536750492214561, - 0.0005990842057032548, - 0.0006937764915826994, - 0.0011280496554336402, - 0.00023695031052286983, - 0.0005922655029230238, - 0.0011614708287032822, - -0.0006379844612434566, - 0.0006827870817342388, - 0.0007837321292354232, - 0.00020394160788245262, - -0.0012543613818481578, - -0.00015742781985569987, - 0.0019240300725466514, - 0.0004826953334055798, - -0.0008357745561007433, - 0.00035419435694117573, - -0.0001492668018588858, - 0.0010180531654346361, - -0.001464518177212288, - -5.944639479073495e-06, - 6.123342907189341e-05, - 0.00038128210468592533, - -0.0013967673410015776, - -0.00032106555534843634, - 0.0001363131165875804, - -0.0028865869954809967, - -0.003069112374332812, - 8.747108767560167e-05, - 4.514278323509476e-05, - 0.0018173218614659361, - 0.0009109741305486393, - -0.0011539013046932757, - -0.00017561605372201687, - -0.0010490148784501163, - -0.0022891327249201614, - 0.00146145489387484, - -9.235263004765601e-05, - -0.00018764560890713965, - -0.0004025182437396315, - -0.0014559242043898273, - 0.0016969971900553217, - -0.00018139876143843735, - -0.00024956228263626546, - 0.0005452001563935614, - 0.0007474841013352802, - 0.000903803036592932, - 0.0004255984973357533, - -0.0012102413715973088, - 0.00010054167142227073, - -0.00042241143834747044, - -0.0007714339177291637, - -0.0002763064564506665, - 0.0008230525403967591, - 0.0004956932486556874, - -0.000378839878300373, - 0.00036422584546897123, - 0.00023627457334910086, - -0.0008614779302974015, - 0.00023039958489818953, - -0.00039973956155930614, - -3.217906984726433e-05, - 0.002181804340768052, - -0.00011168696363116616, - 0.0012846955216863022, - 0.0006299367908550638, - 0.00011248155433745011, - -0.0008675732885425608, - 0.0015451056419572443, - -0.0002717955172875594, - 0.0002900186817213372, - 0.0006981545236841696, - -0.0005245648014066315, - 0.0003834688778261519, - 0.00027329187591182554, - 0.0012203785856395833, - 0.0015223096617153038, - -0.0010758109800474225, - -0.001118888697518165, - 0.00021300294054700853, - 0.0018327808631657411, - -0.0003004879883883407, - 0.000492974639727383, - 0.0006186790288642404, - 0.00011696263175439479, - -0.0001676618399622593, - -0.0006026524548352391, - 0.0012793192023180678, - -2.900683830165719e-05, - 0.0007915966879860432, - 0.0007460638762196012, - -0.0010458243610375617, - 0.00010801973861389212, - -0.000160300032203106, - 0.0022722227193146156, - -0.00032238125385517825, - -2.2975237142478942e-05, - 6.572255079473413e-05, - 0.0004068483439680207, - 0.0006697321846439483, - 0.00036538768894314353, - -0.0013861741624145547, - 0.0009888470930235114, - -0.0016210841043350014, - 0.0003079318121003775, - 0.0013927530941640425, - 0.0013675414225718806, - 0.0007026058218836241, - -0.0014521923733552917, - 0.0001516424490589538, - 0.0008868622816129256, - 0.00036524000388769043, - -0.0005513601116523767, - -0.00017332739728552512, - 0.0004586727175568812, - 0.0009727756315207189, - -0.0002107938447581968, - -0.0010464566306728684, - 0.0011469218455477184, - -0.0012367127790049372, - -0.0009133124706330814, - -0.0013753207336532863, - -4.059268006678023e-05, - -0.00027899395611897284, - -0.00017659262520673504, - 0.00017187313387308288, - -0.000791175482562765, - -0.0010135284058649637, - 0.001156603879301105, - -0.0012550013778332657, - 5.827622044832795e-06, - -0.00031936377922566373, - -0.00012100672259030037, - 6.770791745249864e-05, - 0.00034501104683366346, - 0.0007024375742827453, - -0.0010781246546052942, - -0.0013327521174273781, - -0.0002522487214066025, - -0.00031674854419124415, - 0.0004518443278984192, - 0.0007994470910198431, - 0.00028071776558417363, - 0.0010912849258078727, - 0.0012787216917935086, - 0.0005052691238139361, - -0.0005650942844142371, - -0.00042337616494530334, - 0.0003781576079423613, - 9.530974164260686e-05, - -0.00030849313229667683, - -0.0031193006694185924, - 0.0022670183509380802, - 0.001171731469832165, - 9.78740268990622e-05, - -9.469832479739484e-05, - 0.00026000201824837965, - -0.00012016905994308218, - -0.0007264522440204367, - -0.0017493971121007184, - -9.275394081801747e-05, - -0.0007740114448425237, - -0.00037218466114239117, - -0.0007099099685143693, - -0.0004662791257595807, - 0.0012088168540454803, - 0.00036189236544825884, - 0.000945381153148393, - 0.0004873998008445885, - 0.0012196068903705577, - -0.0010329130710450077, - 0.0009337782485492911, - -3.249364179456047e-05, - -0.000480332755355327, - 0.0009730184014662231, - 1.0794772629874513e-05, - -0.00015094334165906747, - -0.0005566047029352928, - -0.0014509390039299174, - 0.0005844538732315639, - -0.001731464265206915, - -0.0002322093929408984, - -0.0008502900821467868, - -0.0005965804607999747, - 0.00048585299823799514, - 0.0016606984731025068, - 0.0004036125680252273, - 0.0005645416293388164, - -6.0915338370214344e-05, - 0.00028925972678313524, - -5.928988887419615e-05, - -0.0006695047369765151, - -6.288520186713555e-05, - -0.001145361270955996, - 0.0010781282177699508, - -0.0002667026693390698, - -0.0013511685975223856, - 0.001072841347066111, - -8.53072444596456e-05, - -0.00017636702106662005, - 0.0002529512864936384, - -0.0006066750673669247, - 7.195050436201358e-05, - 7.205691244194004e-05, - 0.00020241442368761545, - 0.0003865243506242979, - -0.001144155089446211, - 0.0012340283779316175, - 0.00017839984309292375, - -0.0006953951237933033, - 0.0002943467941384806, - -0.0009325858399700468, - 0.0017878754643828457, - -0.00036275254137774167, - 0.0006705964938302992, - -0.0003256406318857619, - -0.00021700042922214195, - 0.00033859416442820153, - -0.00029878804219833144, - 0.0009561660927068722, - 0.0004839506528245555, - -3.347803005555503e-05, - -0.0015309930839908811, - 0.00042513035565039283, - -0.001407226442408588, - 0.0014557266045541646, - -0.0008763999872252436, - -0.0011642044672046036, - -4.2692937590323675e-06, - 0.0012722961365951575, - 0.0007151111767318214, - -0.0007657161491250387, - 0.00039891336720112387, - 0.0003526843011982683, - 0.0011834087275479441, - -0.0005429703242998836, - 0.00018929231814812978, - 0.0013089055591673174, - 0.0011133023445265807, - 0.0013044492785735228, - 0.0005559659183861474, - 0.0002493728594338802, - 0.001215887105295827, - 0.00040847813634229573, - -0.0013083525782002392, - 0.001393953010563807, - -0.001046547628184329, - -0.0011398421182698076, - -0.0020518082843693003, - 0.00101083501947976, - -0.0009945379699844614, - -0.001705497496733492, - 0.0006481762029014484, - -0.001096873374413694, - -0.00022974115474106604, - 0.0010813327126114377, - -0.00028580559093805503, - -0.0006930083163540488, - -0.0005509472625360788, - 0.0009220746923431427, - -0.0008784565314563749, - 0.0013750857362360184, - -0.0008599370599289504, - 0.0008187052579896375, - 0.0008793477199501586, - -0.001030190664103411, - 0.00012128476976114286, - 9.897516607732003e-05, - -0.0006455539441480903, - -0.002606419515530739, - 0.001849383332403368, - 0.00041303951364004844, - -0.0006652641016396568, - 0.00042012591497674116, - 0.00011752344091581606, - 0.0005770913640969064, - -0.00040530482334281856, - 0.00027527090831395117, - 0.000124020907821278, - -0.00025660565270397103, - -0.0006000213306560186, - -0.002172674502320714, - 0.0004901704119207538, - 0.0009492001666231187, - -0.0017485835969971697, - 7.820110565129307e-05, - -0.0013987317335643575, - 0.000642688717042095, - -0.0007319515442575774, - -0.00013931380771413257, - 0.0017924826929539282, - 0.00038145086877561897, - 0.0008529921851633036, - 0.00023270517499609692, - -0.0002252757268348084, - -0.001039793228757711, - 0.0003867669846047163, - 0.000293320836545468, - 0.0007253447830198973, - 0.0007074429219376353, - 0.0010309800646244934, - 0.0008363069614534241, - -0.0008784069211487612, - 0.0006638113365307767, - 0.0012895976582658257, - 8.012938776622725e-05, - 0.0006302323825378951, - -0.0017031237912514322, - -0.00011834497746140974, - 0.0003569037873912115, - 2.8407475669371426e-05, - 0.00037386443371246916, - 0.0007458843626708402, - -0.0007978966357362804, - -0.0007560381507562723, - 0.0017032663011070596, - 0.0003243134616326503, - -0.0012621412712968461, - 0.0005022188777911228, - 0.0006680046770605018, - -0.0016612286575032635, - -0.0002509421001519416, - -0.0010493135609273866, - -0.0019582418541716443, - 0.0009935517363179709, - -0.0001847446963092433, - -0.0012776711063967664, - 0.001132613593539543, - 7.471334272933672e-05, - 0.0014282791344222715, - 0.0026731260893816428, - -0.0017602831994593237, - -0.000863509290085142, - 0.0005411528900271204, - 0.0013666200250392025, - 0.0006864238049012312, - 0.0014902113998566775, - 0.00031069870222786314, - 0.0002658616236408342, - -0.0015183725026183923, - -0.0008932667210413511, - -7.902994354951748e-05, - 0.00023153271529064015, - 0.0009436611366154065, - 0.0007599006899286002, - 0.00036136575193623896, - 0.001429273622321123, - 0.00029991155123661677, - -0.0023318945469842246, - 0.001034084497938634, - 9.713637982826677e-05, - 0.0007035939657444041, - -5.2273230518242006e-05, - 0.0009931522013438981, - 0.0012731465027181522, - -3.705811902204158e-05, - -0.0009170008955705402, - -0.0009345276070096028, - 0.0005189986526606422, - -2.788937641492472e-05, - 0.00105126517293376, - 0.0011195716360412672, - 0.0009226004959339502, - 0.0008445182369853631, - 0.0001948278003838094, - 0.0024711288744978465, - 0.0003571532699398032, - -0.000891398976567102, - 0.0007252732814270581, - -0.00016616827886418807, - 0.0009555595595198485, - 0.001730252295622138, - 0.0010286174370766805, - 0.0010408179019181312, - 0.0011369804321080543, - -0.00017513488902484112, - -0.0008914466634123699, - -0.0018795665249371203, - 0.00029083796441283904, - 3.9307936948265455e-05, - 0.00211821035644391, - -0.0012757043406768458, - -0.0002532984402214004, - 0.0011731440168927774, - -0.000434988550634534, - -0.0006583912519959606, - -2.1075169257345956e-05, - -0.0009107068080433441, - -0.0003157868295047266, - -0.0002792229637028134, - -0.000501434958041948, - -0.0010556147724089511, - -0.0012729807937543055, - 0.0005019392697199367, - -0.0009334713014208503, - 0.0016730187616781128, - 0.0009892529472505728, - -0.001081398133277029, - 0.00020036077597873018, - 0.0004204525010970422, - -0.0005953749177081265, - 0.0015672240142157049, - 0.0006830651662875261, - 0.0002314222437041839, - 0.0009217428917507767, - 0.001338940861234259, - 0.0001826618948247333, - -0.00046369743806065736, - 0.0005186436260405081, - 0.0007625373410986454, - -0.001148025600911879, - -0.0008306300632965355, - 0.00021445082558180418, - -0.0008458195378108467, - -0.0012246053352938575, - -0.0008557196807022703, - -0.000788751871556342, - 0.0007594308427977214, - -0.0005561522534591551, - 0.0006268617667178364, - 0.0002107231480426548, - -0.001031389724811933, - 0.0010274292545086312, - 0.002016801072846163, - 0.00039289103336574086, - -0.0008979060955231924, - -8.520140882858459e-05, - -0.0013911094172084457, - -0.001712006508084265, - 0.00132529148598315, - -0.0009274908958889814, - 0.0005011153800411763, - -0.0006546402795995341, - -0.0003612259793739466, - -0.0014230681997067054, - 0.0001806363785780675, - -0.001259672502809567, - -0.0012270201013427386, - 0.0007991570646689219, - -0.001704049574303474, - 0.0013798640213348891, - -4.065404848090592e-05, - 0.0006750965493779593, - -0.0012100866576516638, - 0.0009179674929640301, - -0.000129834974578113, - -0.0015184514882516465, - -0.0007109946437924488, - -1.0458893809534151e-05, - 0.0002450787722332609, - 0.0006909714625212448, - -1.7479370026661343e-05, - -0.0019221756985645115, - 0.00031449570330787475, - -0.0007203851420038508, - -0.00013559393310120984, - -0.000554308471381656, - 0.0002835678065080654, - 0.00036766406162612935, - 0.0021886489608623524, - -0.001428867334888325, - 0.0005597566287027072, - 0.00024633450548789364, - -0.00046650651645918314, - 0.0009581440712927568, - -0.0005531704216184058, - -0.00147474435813375, - 5.310055945501704e-05, - -0.000906424115174042, - 0.0003954249610864393, - 0.00017526057366341871, - -0.0009814181518538214, - 0.001056006661013063, - -0.0005658961074841252, - 0.0015446047189861527, - -0.0006058262141727731, - -0.00018436154480208446, - 0.00021106054354502851, - 0.0005487543398050155, - -0.0004027749829825196, - -0.0001260023712031468, - 0.00031835909451197154, - 0.0008111861612069974, - 0.0012099482816517399, - 6.770704940902962e-05, - -0.0017151255860038603, - 1.2688769444306485e-06, - -0.0011554766846750136, - -0.00028765034754541717, - 0.0010566690111154546, - -0.0005896936490856625, - -0.0014617085581096613, - -0.0010685765097562918, - -0.0003309451405907886, - -0.0009565208873112466, - 0.0015002401078423138, - 0.0008204291371259255, - 3.484946107186812e-06, - 0.00030069778334070496, - 0.0008425880074580234, - 0.0003781367799368045, - 0.0009909072440766275, - -0.001204015890637245, - -0.0010127787955564577, - 0.000353592061438816, - 0.0006029178497056445, - 0.0013523826709406907, - 0.0003779767200044062, - -0.0019137039469091493, - 0.0006263910895225357, - 0.0006180123554949662, - 8.233429355312255e-05, - 0.0009035658662609571, - 0.00022703540891756696, - -0.0008985469459485363, - -0.0015357486204413335, - 9.636230121341928e-06, - 0.0006548353004207411, - 0.0024194905535851606, - 0.00036827961348361916, - 0.0007853866607990034, - -0.0003802369809299363, - 0.0007955074942843988, - -0.0006118004174908111, - 0.000889815702786573, - -0.0008739336856675587, - -0.00022061502147397105, - 0.0007580734637105235, - -0.0018249712322521334, - -3.3609321815204594e-06, - 0.001169005441544025, - -0.00010121589814147313, - 0.0001065708387711936, - 4.332959677821074e-05, - 0.0009987436800995666, - 2.378759613430569e-05, - 0.0006624211023016326, - 0.0004877246268687347, - -2.3509017143947606e-05, - -0.001373895156295282, - 0.0005092578384081933, - -4.476236490337331e-05, - -3.8268248052877494e-05, - -0.0003472081580304894, - -0.0011185876145193814, - -0.00021860821317851625, - -0.0004681516159747666, - -0.0006804252503649867, - -7.632476514533848e-05, - 0.0005432977573736055, - 0.000518576236152502, - 0.0014209956980831499, - -0.00026394126031994427, - 0.00028550463928226385, - -0.00025768472193059765, - -0.0013612217082030129, - -0.00039098566555599253, - -0.0016644879386733804, - 5.729712525789581e-05, - 0.0013253975584584324, - -0.0008288136024754328, - -0.00019562398376782818, - -0.00019069323822708034, - -0.0006483329104501894, - -0.0016408954406616002, - 0.00020843560931864397, - -0.001421048803340618, - -0.0014504835578725626, - 0.0010780343441499317, - -0.0003719393733407415, - -0.0016552153587296426, - -0.0017106754040280725, - 6.351282760921883e-05, - -0.00015812206436359504, - -0.00035506478611046805, - -0.0006624532008132749, - 0.00030902024365176664, - -0.0007666284174588485, - 0.0013807912685058128, - 0.000208725918700736, - -5.884329201639733e-05, - -0.001238244811469316, - -0.0010027280088346488, - 0.0009516409181583483, - -0.0005161361555515103, - -0.0013125259747473084, - 0.0012350520545319596, - -0.0009556477178373873, - 0.00013132373104429783, - -0.0001495877906603141, - 0.0005676862261436723, - 0.0006201339728011202, - -0.0001811764185464995, - 0.0010252642555266327, - 0.0003968855059199518, - 0.0007706064080626111, - 0.0004781755053493437, - 0.00031844207741618257, - -0.000670459572112164, - -0.00014082554674420934, - -0.0006235783598592863, - -0.0013133319257630494, - 0.0007614550543689095, - -0.0013279664591175104, - 0.00058605112468763, - 0.0023659217057520675, - 0.0018587861968062075, - 0.004053859069800638, - 0.0011351324999930414, - -0.00016349553418869406, - 0.002988013336174016, - -0.0010893144538369098, - -0.000150958749880181, - 0.0011478177424046308, - -1.5944622060213014e-05, - -0.0009007910571289181, - -0.0010734488159294155, - 0.0021624633104431732, - 0.0017048381221182892, - 0.001604674385895456, - -0.000396543489646672, - 0.00023724717755289036, - -0.0005847699892269919, - 0.0005207709238720604, - 0.0006853468806079614, - -0.00011719493029776882, - 0.00042098243798168914, - 0.0012252118188043981, - 0.0010091965604128903, - 0.0006787457629735124, - 0.0003999172882258536, - -5.6430656866952e-05, - -9.55421412378436e-05, - -4.4309068146795904e-07, - -0.00015488916693739583, - -4.346316837245464e-05, - -0.00012058698503706327, - -0.0008118627128823576, - -0.0010423249993214245, - -0.001824001853610297, - 0.0016250075434855362, - 0.0010161552784193665, - -0.0005250671952258366, - -0.0005299900279766179, - 0.0005421763545526803, - -0.0018676600818868714, - -4.4458210020727765e-05, - -2.5335678199900008e-05, - -0.0008975112774775045, - 0.001066511578150333, - 0.0003054623150820819, - -0.0004177769378117926, - 0.0007874218265441745, - -0.0005064115953624905, - -0.0011281961423091644, - -0.000762641008421995, - -0.0007724664447736208, - 0.0014608151894001937, - 0.0013221127722438779, - -0.001056067337650343, - 0.0013030614900052505, - -0.00018577944874536046, - 0.00014187820251897315, - 0.0022343522344852023, - -0.0006834009339310948, - -0.0008140572080033072, - 0.0018812665448868727, - -0.00035454921477747023, - 0.0016858470247194043, - -0.0007665109299426587, - 0.00039617481992435227, - 7.809802737750534e-05, - 0.0009192118213225211, - -5.556182234060053e-05, - -0.00081838842198566, - 0.0006529038738071222, - -9.530634387464414e-05, - 0.0024778850895648525, - -0.0016404444068672758, - 0.000488608917904257, - -0.0001330675098081428, - 0.0013599429681204875, - -0.001010456949815215, - -0.0011222321013174448, - 0.0007838095091696564, - 0.0006210817607305527, - 0.0004977534478895724, - -0.0006251811448079138, - -0.00038775466919386056, - 0.00018588704084686924, - 0.001486521271250069, - 0.00047474188977217807, - 0.0009744390096818211, - 0.0005946373210468743, - 0.0018407514587017474, - -0.0018401327134862848, - 0.0004799836461585638, - -0.0009509236157977105, - 0.0014475529128894027, - 0.000751490480467199, - 0.0002785551661067298, - -0.0017504506582099592, - -0.002837564619525817, - -0.0007243189792870314, - -0.0010641511166764352, - -0.0013013374592708632, - -0.0005407672736049354, - -0.002363354616941829, - 0.00046198338814549655, - 0.00024600510251613863, - -0.0002520037465374319, - -0.00019859431468975135, - -0.0006657692426234993, - 0.0010706908309473947, - 0.00045988146270105226, - 8.70341303520509e-05, - 0.0002526049536571788, - 0.0004965910806198618, - -0.00032613843605969417, - 0.0009483953219807891, - 0.0008326441933796528, - 0.0010971544615796416, - -0.001357304213424669, - -0.0005457583734637598, - 0.0007274998347870842, - 0.001336599113024565, - -0.0005432860294104365, - -0.00018920187166619463, - -0.00036861942897709315, - -0.0002963543274790792, - 0.0007678472251214362, - 0.0006542918528289093, - 0.0006060654684385878, - 0.0010374531551956196, - -0.0030534741562593705, - 0.0006370165991894991, - -0.0008990089388630766, - 0.0006767333829114776, - 0.0009789125071537966, - 0.0007034291522853036, - 0.0005907228161291241, - 0.000801657121399884, - -0.0009126082749561348, - 0.0012594552954873087, - 0.00043249666605088566, - -3.202709893601301e-05, - -0.0003321121945996936, - -0.0008781791160216426, - -0.00022565216252684494, - 0.0003059179048585839, - -0.0011162246366463622, - -8.648809826695695e-05, - 0.0004356848442482429, - -0.0006502948265924521, - -0.00044381626722528566, - 0.0006490805092599286, - 0.0001894265643466127, - -0.00012362733886400566, - 0.0008677873746835471, - -0.0014008552869335857, - 0.0004890214410738804, - -0.0006883915224825168, - -0.0007498726977340367, - 0.0032717084968604286, - -0.0011980838402885518, - 0.000436417143800905, - 0.00019956725554547128, - -0.0009286622832890046, - 0.0013220260180247933, - 0.00018347894805179087, - -0.0011536240340918671, - -4.9292063270163944e-05, - 0.0017018065333003834, - 0.0010192031287435, - -0.001194320995856422, - 0.002050686185096398, - -7.246549295257667e-05, - -0.000779490124762468, - 0.00048744181443425823, - -0.002919593899363083, - -0.0010407691191183339, - 0.00033651537675285885, - -0.0012899452004851467, - 0.001257989458543878, - -0.0016276793518423087, - 0.0008521401832289169, - 0.0005476530878631524, - -0.00023754333284196, - -0.00039702733834291455, - 0.0006477865604007427, - -0.0013995956467179177, - 0.0010880740975831758, - 0.00014907232468746424, - -0.0009530021719219938, - -0.0012274909848342742, - -0.001374606912073654, - -0.00018623707113019634, - -0.0007937790256283197, - 0.001080883699436845, - 0.0013200865198072667, - -0.0003312619519139035, - 0.0005972845165148676, - 0.0008463886787063459, - 0.0003939052666734153, - 0.0010346065662859274, - 0.0011744071191602619, - 6.386019150577145e-05, - 0.0003985983062481252, - 0.0003679311147497924, - -0.001035169918125309, - 0.0016598660697269203, - 6.124820636583758e-05, - 0.0009051273460843331, - 6.677542505361687e-05, - 0.0004958929234359646, - -0.0008887015061008706, - -0.00047236390273872357, - -0.00026469325513072187, - 0.00019640139635483995, - 0.0018565372273628262, - -0.0002905248626799059, - -0.0015310116453125583, - -0.0008629472331507179, - 0.001101988249061705, - 0.0009955349092346192, - 7.732722888070046e-05, - -0.00037609558638052325, - 0.0003369242391248067, - -3.6783315013010235e-05, - -0.0002707172126899546, - -0.00029615942739123676, - 0.0024794938712129227, - 0.00034871145084924875, - -0.00047278411568818453, - -0.0012459238686367208, - -0.0007674091362382995, - 0.0007222777485386288, - -0.0011230319656972568, - -0.0008764374707034428, - 8.299919163112581e-05, - 0.0002033791607997887, - 0.0007072270561358003, - -0.0006396628945814968, - -0.001072290958636228, - -0.001423467877886089, - 0.0018519388092291518, - -0.000259248198503193, - 0.0004556979370242538, - 0.0007404293878452907, - -0.00023791358669612912, - -0.00032357082296696337, - 0.0006059039568328373, - -7.641548242042805e-06, - -0.0007719301574001275, - 3.4870253894984555e-05, - 6.929953511135991e-05, - 0.0008781208114843097, - -0.00020293452944665833, - -7.808531185393946e-05, - -0.0005029808623441501, - 0.0006805494887429794, - 0.00020524602316267094, - 0.001686793354963515, - 0.0011280526146853172, - 0.0001495947896767982, - -0.0008829443164750599, - -0.0003638527892343552, - -0.0005137750058121068, - -7.42907114167757e-05, - 0.00029533409612306634, - 0.0008663357864162398, - -0.0014060994108004128, - -0.0003151226063291366, - 0.0013434820144553386, - 0.0003955905062394066, - -0.002057055821004725, - -0.0013509207028255775, - -0.0004382900014593153, - 0.0012246241601256455, - 0.0004956368361490642, - 0.00034782438806598315, - -6.878977405662981e-05, - -0.00011038684292155188, - 0.0007882875676297338, - 0.0004989426519785498, - 0.0003119186432382632, - 9.854573490964021e-05, - 0.0013889213263407931, - 0.0011517460123658307, - -0.00041493031009473606, - -0.0015405766806927432, - -4.241639160843216e-05, - 0.0029827594111169592, - -0.00020423549442950289, - -0.0015510160307961858, - -0.0011142570286062853, - 0.0010566093266476209, - -0.0012537520289973177, - 0.0012310642416683976, - -0.00014442081654550371, - 4.0064722177269735e-05, - -0.0009679443721978172, - -0.0006930917774293382, - 0.0001404948073181892, - 0.0004994392192029685, - 0.001023560270414444, - -5.2979174966054566e-05, - 0.0012694096284795566, - -0.0007919189373367649, - 3.6440839531206926e-05, - -0.00047523200306348406, - -0.00019765897541452752, - -0.0002318900083980701, - 0.0003840059544152134, - 0.0011554610855485706, - 0.0015844493871051818, - -0.0003793980611573789, - 0.0017374233276633416, - 0.0017076873490052085, - -0.0001363502751318, - -0.0010968894072466095, - -0.001108688675760321, - 0.0007953146756818954, - 0.0022984821723956625, - 0.0005798972867437477, - 6.965824426681858e-05, - 0.0011577687267947296, - -0.00015480874557697064, - -8.205521418318235e-05, - 0.00015404964256291047, - 0.0004914376293001344, - -0.0006598744047788542, - 0.0007573312724167332, - 0.0013529399793313676, - 0.002011944710797308, - 0.0009519811977249128, - 0.0012171656366099732, - 0.0004129223801181352, - 3.211546434418508e-05, - -0.0004940322211578196, - -0.0007238365611321691 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgb(135, 197, 95)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 4", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - -0.0007238365611321691, - 0.001422208145662363, - -0.00046182355799379504, - 0.0011620804712767657, - -0.0011408612997585931, - 0.001416304506282927, - -0.0005659085706556084, - 0.0001279477549734417, - 0.0005288093017844829, - -7.251451285450602e-05, - 0.00045612085557627234, - 0.0005023209150001255, - 0.00037729300341992657, - 7.33261630105511e-05, - 0.001711878951579515, - -0.0004614795592223112, - -0.0014604621689125314, - -0.00019991528134689888, - 0.0002152418887634345, - -6.332086292248451e-05, - -0.0014599654520228763, - -0.00038911644994872726, - -0.00048637414143617227, - -0.0005029427731240875, - 0.0012092957729230012, - -0.00013680124753370204, - 0.0005475455595027821, - -0.0008247179835368995, - -0.0009121884399465949, - 7.89074459792849e-05, - 0.0008469150504367454, - 0.0011956782931071945, - 0.00045930601164634636, - -0.0004756841452093029, - -0.0011948769064725464, - -4.7636800009693e-05, - -0.0006461712640670269, - 0.0007807839617459063, - -0.0031971252373712714, - -0.0006601904427072654, - 0.0011028378647499363, - 0.0005652695771979489, - -2.4077873402667376e-05, - -0.0005456862901858016, - 3.222265692706238e-05, - -1.1343049574277019e-05, - 0.0022080098251223658, - 0.0015982953501356776, - 0.0007063552764253195, - -8.838082280356033e-05, - -0.0018587902917707913, - 0.0011673166812714453, - 0.00024631659100155315, - 0.0006297080955478578, - -0.00028172616903434863, - -0.0004660523469458749, - 0.0006930429209739539, - -4.64471896188143e-05, - 0.0018177773434797408, - -6.695781545775592e-05, - 0.0010765548533736703, - 0.0023931967426326127, - -0.00041348899256754605, - 0.00016411288070877268, - -0.0004547910245910287, - 0.0021714070080258844, - 0.00048652843827208194, - 0.00010614905418559258, - 0.00037477353856155414, - -0.0003970630951097627, - 0.0009508715946501343, - 0.0003769956772366626, - -0.0009909075997357993, - 0.0009195967988910253, - -0.0016141095207942036, - 0.0009252312917785455, - 4.810858811047034e-05, - -0.000939877612565175, - 0.0010913569032763432, - -0.00046463148820169225, - 0.001125429279106306, - -6.390788196614326e-05, - 0.0008527642048399472, - 0.0004829632237732729, - 0.0004514643453100141, - 0.0001666458461478224, - -0.00013914174208523583, - -2.9942483670795166e-05, - -0.0004481041740533328, - -0.0017172174610491826, - 0.0013657041823595022, - 0.0011210337366774129, - 0.0003793011290843295, - 0.0006251331114176253, - -0.0001433961806182851, - 0.00015787326770752157, - -0.0014841095792207184, - 0.0002952184639200647, - 0.00028585681069920576, - -4.420390560267052e-05, - 0.0014718495318283454, - 0.0001364292489354064, - -0.0009322689612773639, - 0.001577087710576127, - 0.0011213507610268372, - -0.0012822591116111205, - -0.0004059135096327446, - -0.0008561709537986574, - -0.0008206977855334642, - -0.0007679666214122866, - -0.0006065823452661657, - 0.0001208630623800935, - -0.0011072881590551734, - 0.0006126003303089226, - -0.000325829051594793, - 0.0004916982979405825, - 0.0010193954202890507, - -0.0014336513505836441, - 0.0010067007065290095, - 0.0005252646665343508, - -5.6387705996322954e-05, - 0.001367915533191685, - 0.0004220612744915387, - -0.0012114679028643555, - 0.00032144316048838715, - 0.0008489953918027776, - -0.0003590760157824851, - 0.0008105274441405817, - -0.000714528876752989, - -0.0007893960625268588, - -0.0005021055772081865, - 0.00035224763423704995, - -1.5337935856080523e-05, - -0.0005786436030457609, - 0.0006296202061855066, - -0.00018616576825935757, - -0.001165222064088171, - -0.00046995560245363763, - -0.0007629959564891876, - -0.0009632136304821064, - 1.5526622864127612e-05, - -0.00040537424428572393, - 0.00045305010340137143, - 0.001108450507505691, - -0.0008712541546862861, - -0.0007103010216942613, - -0.000513692054770527, - -0.00037807655570159165, - -0.00042780619139920587, - -0.00026773087464870577, - -0.0002581650218683429, - -0.00018848704220397508, - 0.0016823112230514017, - -0.0007579074769087805, - -0.000648233333056778, - -0.000256786914237066, - 0.001715521051064902, - -0.00036816232571808716, - -0.000340039749341688, - -0.0013220440746121692, - -0.00019591750929088986, - -0.0008222357370946239, - -0.00023690297596095776, - -0.001697925172351127, - 0.0005254831696373273, - 0.000271230068150164, - 0.0008995975641467532, - 0.0004248535349361467, - 0.0012727324575987878, - -0.000726373066329425, - -0.0017572341468704814, - 0.00020628353875646493, - -0.00161419531904653, - -0.00013955592798595124, - 0.0008376331145086771, - -0.0007507449613305766, - 9.898356729787462e-05, - 0.0011941052830030698, - -0.0006343473578655406, - -0.0012372455666982236, - -0.0004152989708004281, - -0.0007588321804300718, - 0.0004325148036016525, - -0.000600219954311918, - -9.275670182372171e-05, - -0.0017143738269025342, - 0.001510548834102675, - -0.0008035028902209076, - 1.2708905779949893e-05, - -0.0006489971367776926, - 0.0006990204489041703, - 0.0008926057381214938, - -0.00016347359283302597, - 0.0004106808802412155, - 0.00040227311994521373, - -0.0018850813852388261, - 0.001142660958671691, - 0.0006307064027069697, - -0.0008989785165685945, - 0.000364483399707008, - 0.0016340115145942417, - -0.0004389516995922807, - -0.00027196910174533253, - -7.761062184878678e-05, - -0.00019938732051917363, - 0.0003651572884900039, - -7.627618869108697e-05, - -0.000724253106644665, - -0.000669758785357515, - -0.00011487640651810057, - 0.001175815214667405, - -0.0015339062186388124, - 0.0005961684018592823, - -0.000390703909434209, - -0.0004850007496444813, - 0.00039124329037329333, - 0.0010086915101876325, - -5.80699852345969e-05, - 0.0013344223040084482, - -1.0907823391804279e-05, - 0.0003368875830162695, - 0.0005781871328787241, - 0.002184504290940195, - 0.0002649936476800098, - 0.000926401546344197, - -0.000378422519455473, - -0.0002254115438635363, - 0.00038436155393561537, - -0.0003271915088285945, - 0.0009124631615701811, - -0.0009833709506648937, - -0.0001501127948525052, - -0.0008357181305968722, - -0.00038128728122640096, - -0.0004718984977272366, - -0.000819225740681075, - -0.0017786949437522174, - -0.0007901514553305185, - 0.0005638426134811152, - -0.0006759404166608696, - -0.00036336984065795904, - -0.0008849148990369064, - -0.0015478726858738395, - -0.002453229088108021, - -0.0006498686523118619, - -0.0002147680186552147, - 0.001288810546661206, - 0.0020435877975585235, - -0.00044063502653045485, - -5.775566602854738e-05, - -0.0012089430489153712, - 0.0015136623093321296, - 0.001045212585032999, - -0.00040485433400219543, - -0.000285290514070837, - -0.0013679719746415473, - 0.0010477524592620452, - 0.000743242537428548, - -0.0014748717587624118, - -0.0013227933857136356, - -0.0009688135607361184, - 0.0003112829038999454, - 0.0007902808125112518, - 0.00019759481909771548, - 0.0003432972171380161, - 0.0008921357715696713, - -0.00046245411053831814, - -0.0004703983085095954, - 0.0013721030268556257, - -0.0025184847152837793, - -0.0003340167890080206, - 0.0011820477927572076, - -0.001199016760903875, - 0.00100698146108661, - -0.0010128930892239496, - -0.000167106546398138, - 0.001357342300144174, - -1.9571293084940424e-05, - -0.00041720652675691444, - 1.2939743502707458e-05, - -0.0007664524543223647, - 0.0010858392164519663, - 0.001662305538785085, - -0.0008089054492150511, - -0.0005899814193597277, - -0.0005335394676817513, - 0.001360623628490032, - -0.0011431742513734495, - -0.00034395498656340524, - 0.00015510305106545012, - 0.00015143038800854565, - 0.0013230369085794162, - -0.00017375166442134944, - -0.002653803142705925, - -0.0004262521171834654, - 0.00029853558924274113, - 0.0014000888992237095, - 0.001063202183479995, - -0.0005423356138541092, - 0.00015087342569985963, - 0.0004553718839223916, - 0.0002450898265932137, - -0.0003762180077407949, - 0.0016504195784577463, - 0.0010319182996547107, - 0.0008556322080491087, - 0.0002856770479979268, - -0.0022891118108569423, - -0.00015547823304119313, - -0.00023081562888186503, - -0.00065173769730832, - -0.00042521337135338817, - 0.002205599704953996, - -0.00043303352940165715, - -0.0008717371266828727, - -0.0006627860166022061, - -0.00043791242548280127, - -0.0005911576251195973, - -0.0009286538287877216, - 0.002949361149666518, - 0.0010930264207674283, - -0.0024112221003779995, - 0.00025162143084730504, - -0.00016078809913564574, - 0.0008352226392735363, - -5.763535746452858e-05, - 0.0004447098246362991, - -0.00034378702580607377, - -0.00045876068337602125, - -0.001615326379187349, - 0.00010156574922523782, - 0.0007484700101767971, - 0.0012247210558484587, - -0.00014755826189157714, - 0.0014110709594243088, - -5.146627170490106e-05, - 0.00046207508490231597, - 0.0017375038848491604, - 0.001165350561270629, - -0.000991959050113435, - -0.0015986306560700468, - 6.42698060081221e-05, - 0.0006192679364016078, - -0.00036133421250225727, - -7.935251548523534e-05, - -0.0013097084381533085, - -0.00031729858415355104, - -0.0006062469449475171, - -0.0014123239098951118, - 0.0002978963859549895, - 0.0015420898569655289, - 0.00020502223617775464, - 0.0004229418198999238, - -0.0018278807787927584, - 0.001524318505405761, - 0.0011376210940991344, - -0.0008100526094624113, - 0.00016119579459366123, - -0.0001331142378005871, - -0.0009006579712072171, - -1.4564702179709903e-05, - -0.0009686876664416143, - -1.883990067719327e-05, - -0.00024123046384144482, - -0.0018191211036702158, - 0.0012567332566025748, - -8.97218355739255e-05, - -0.0010059519338432186, - -0.000494322027031096, - 0.0024622466437733605, - 0.0011315897263767386, - -0.0007907101493628186, - 0.0001367519215813352, - 0.00010842726680522751, - 0.0004432846153434119, - -0.001328661977608437, - -0.00028511266771717204, - 0.00032529855760680666, - 0.0007718936080112677, - -0.0004001351761146059, - 0.001491470617006801, - -0.00012240413221891608, - 0.00033354948995761743, - 7.713578172131934e-05, - 0.0006812119139887892, - -0.00115112360244216, - -1.7236674174519937e-05, - -9.885211120216027e-05, - 0.0014452852235678495, - 0.0006115414327961086, - 0.0005211946286289098, - -0.0012734766524451304, - -0.0005234382478110564, - -0.0008351299906608991, - 0.0015974891302450117, - 0.001224263012737884, - 0.00049278357141085, - 0.003346971752693694, - 0.0008487614258890781, - -0.0009705891489852981, - 0.00035407310634192235, - 4.1676220430103816e-05, - 0.001466982051464213, - 0.0013722113012781074, - -0.0003287838910881543, - 0.00043697666735823394, - 5.945820106607565e-05, - 0.0004000621130078526, - 0.00032160906007513133, - -0.000773186768488416, - -0.0013610972396548085, - -2.1557723276585736e-05, - 0.0010502022222916426, - -0.001531064958006946, - 0.00170986723044179, - 0.0005241328046616948, - -0.002007323254688498, - -0.00015331737609274105, - -0.0001593485208753324, - 8.658037310236487e-05, - 0.00088231311226219, - -0.0006801281008300223, - 0.0017040494517913424, - 0.0026100565922349828, - 0.00011009421065398535, - 6.317715102023021e-06, - -0.0021384725013907442, - -0.0014752975294774642, - 0.0021008091543584413, - 0.0003787150500437275, - -0.0023983346930032704, - -0.0003998185366157188, - 0.003188246893459123, - -0.0015089765403111103, - -0.00043411878655987777, - 0.0012757102353140536, - 0.0013836891078196534, - -0.00018344064651495192, - -0.0003309450075536727, - -0.00011270757529273602, - 0.00010519669933031635, - 0.00039261927570263745, - 0.0020648875745154383, - 0.000723662697837917, - -0.00048065053628505, - 0.00030960715466952094, - -0.0010881660858897018, - 0.0004029387893334566, - -0.0008167473398209687, - -0.00044895488135305905, - 3.2119153246386415e-06, - -0.00021170454080080155, - -0.0001295772673231328, - 9.516573552006665e-06, - 0.0007037112137984183, - 4.2995397551150254e-05, - 0.0004839699447218462, - -0.0006679233159645124, - -0.0014647440058847357, - 8.80069927893211e-05, - -0.0003175702388435268, - -0.00027441959956426117, - 0.00023124328787579195, - -0.00024744367483302255, - -0.0011757279548115676, - 0.00014112757389588742, - 0.00017702936398504392, - -0.0010440386681471454, - 0.00017836419650207424, - 0.00020522760586237285, - -0.0008506195183065297, - 0.0009612393862779437, - 0.00018783208133828526, - -0.0016615863570391075, - 8.311016166010579e-05, - -0.00011630541270614028, - -0.0006295587025951466, - -0.001085654538136273, - -0.0007552605110128703, - -0.0004910550713411064, - -0.0005437057917675124, - -0.0013891719431200246, - 0.0006109381061598482, - -0.0007152431628770143, - 9.902868048215504e-05, - -0.00012621717132294734, - -0.0008513811053565613, - -0.0012452067183734566, - 0.0005606463003541551, - 3.68323467491883e-05, - -0.00021415758181421522, - -0.0005038447296894682, - -0.000573204836737336, - -0.0007251323057947369, - 0.001970950172595187, - 0.001963468259072027, - -0.0006591567783317644, - -0.0009292275791368456, - 0.0007759193887822151, - -0.00045679521797735944, - 0.0012379198284648073, - 0.00040184604674859596, - 0.0009036914103188085, - 0.0019266563407728684, - 0.00033683872685270845, - 0.00094612322141669, - -0.0006180256345187389, - -0.00026583958812155707, - 0.0001399099407603922, - 0.0005568381199359748, - 0.001632479162481636, - -0.001299976563456823, - 0.001013114132002727, - -0.0011980593143740223, - 0.0013865685929376132, - -0.0005462097448166678, - -0.0002812158849421047, - 5.7418581110528104e-05, - 0.0002650675912443683, - -0.0003034362922177684, - -0.0003821142302607046, - 0.0022459816973009533, - -0.0007232282486911239, - -0.0006689346095781845, - -2.7733044776806273e-05, - -0.0015452022423842848, - -0.0008755771114483511, - 1.2993860390524749e-05, - -0.00023974336786903146, - 0.0006123347460271954, - 0.0008872547535505915, - 6.406397000764738e-05, - -6.431479537221966e-05, - 0.00018270886680164222, - -0.0002997080008497201, - 0.0005364521026656822, - 1.6254228030522237e-05, - 0.0003009144623393353, - 0.000634526095710903, - 0.0005016020067073444, - -0.001957347814112462, - 0.00012709405060673063, - -0.0005825789454200212, - -0.0003958031501202634, - 0.0012344284620282007, - -0.0003063092575515519, - 0.00111757350859361, - -0.00012076172630020362, - 0.00017960335472195783, - -0.0010636615169906595, - 0.001552258142746394, - -0.0011905442864170324, - -0.0007758608775009365, - -0.0008687502020424402, - -7.616752354641545e-05, - -0.0008404453864246696, - -0.001017767640100169, - -0.0008256073290495635, - -0.00016628004727607229, - 0.0004779393235048397, - 0.00024606438122612575, - 0.0009347658372985729, - -0.0009581932208877167, - 7.495319451072588e-05, - -4.780089336655041e-05, - 0.0010856258421815717, - 0.0010912164296719793, - -0.0005318873105469881, - 0.0005489670909048778, - 0.0010700350163257478, - 0.0003243710464227528, - -0.00017787217626488922, - 0.0006246837255503776, - 3.6757292634335574e-06, - -0.0002102784942757932, - 0.0011265180483430702, - 0.0003851552898195938, - 0.00023077037807121636, - 0.00017543552903838576, - 0.0006349513913741242, - -0.0014960358095413371, - -0.0005111395546019087, - 0.0009200811382933227, - -0.0007712218373275806, - -0.00048119665770077625, - -0.00031070126511941696, - 0.0018406134362704918, - 0.0006337665228903924, - 0.0020908036501096515, - 0.0013355035924873964, - 0.00019857588708616943, - 0.0008343889394385137, - -0.00037559915245597634, - 0.0010998814339937219, - 0.00077462049370484, - -0.0007788265441138704, - 0.0013546234743782816, - 0.0017214964338923909, - 0.00022937929310751738, - 0.0015951295780263707, - 0.00034392879052559335, - -4.359902964342122e-05, - -0.0008781632942955398, - -0.0015682769262077285, - -0.0005590435482558116, - -0.0005460135620964128, - 0.0016154914618236422, - 0.0009101233895410567, - -0.0006435120284352115, - 0.0012874421159774529, - -0.002614593817786214, - 0.0006040516376992328, - 0.0003394320622833906, - 0.0005289387730919442, - -0.0010410386654589043, - -0.000659746222258844, - -0.0010660858344503097, - 0.0007941841167202154, - -0.0010380862098687438, - 0.0013239224454106309, - 0.0016145131774186652, - -0.0017637192147740865, - 0.00029915518030899853, - -0.0012974445027922508, - 0.0005461507181240203, - 0.0005398078700133772, - 6.054725891239001e-05, - -0.0013696252521094728, - -0.0009851983279995456, - -0.0018605354991156524, - 0.0007495071328595978, - -0.0002679483166377749, - 0.0007486684311735171, - 0.0003340287055921791, - 0.0020146701789841254, - -0.0005276618400795759, - 1.0286104745398921e-05, - 0.000788194463253015, - 0.00043016328377743456, - 0.000468253114361496, - 0.0001792887447255863, - 0.0010992467363449866, - -0.0012004559476363383, - 0.0006364207869134482, - 0.0011492670258776447, - -0.0008769982332771887, - -0.0004199599737627579, - 0.001673962801733359, - 0.0005056045186734605, - 0.0007776894717784241, - 0.0008980380927862944, - -7.155605173659064e-05, - 0.000555701607956322, - -0.0005792802323171866, - -0.0007034845964765793, - 0.0013780691541659118, - 0.0003153361921941404, - -7.604190504850099e-06, - -0.0006111598599960297, - -0.0007952625085795436, - 0.0016242591627966157, - -0.0019647170476768524, - -0.00040712239338599045, - 0.0009729259647410259, - 0.0013770700351839228, - 0.0004905016361399547, - -0.0008206996205607982, - -0.0004429642160752262, - 0.0004507777726777126, - 0.00016613937629348616, - -0.0004259234293151949, - -0.0023797849376673862, - -0.0001336016418498702, - -0.0006112555817461645, - 0.0014062413028096525, - 0.00036929652826374516, - 0.0023432928214458955, - -0.0023748252904396837, - 0.001490409680097558, - -0.002190075164713981, - -0.0004492064011518462, - 0.0013756802785433798, - -0.0007621168956519408, - -0.0005321087518156795, - -0.0005353382980096994, - -0.0005307376031690108, - -0.0008632313709779676, - -0.00045871924146127167, - -0.001483409351279098, - 0.0017975738868545536, - -0.0003588037565447153, - -0.0011498533964625934, - 0.0001522041006744905, - -0.0004941328296139519, - 0.0002297212766880021, - 0.0003511090135370736, - -0.0013037919233471944, - -0.0010542766880271847, - 0.0013221841823288162, - 0.0007078081973218092, - -0.0013440971630171675, - -0.00032935695087707797, - 0.0004239449295254006, - 9.523884240560027e-05, - 0.0006724684645119475, - 8.861735275614632e-05, - 0.0010163584729922914, - -0.0007119348493207103, - -0.00013872117928633625, - -0.0008916194319646577, - -4.45318806680887e-05, - 0.0006332695732981366, - -0.00019007643812849747, - 6.434364578461794e-05, - -0.0014604079248171497, - 0.0007896900499986713, - -0.0006714053372930869, - 0.0010151801684065358, - 0.00025498867785931625, - 0.0012914120114307876, - -0.0009162523132757735, - -0.001322012713796777, - 0.0008191204811466476, - 0.0006723249055115289, - -0.00020900338728610003, - 0.0011289938638934962, - -0.0006538701015629086, - -0.0012765264189969804, - 0.001083659512966029, - 0.0002952738702534643, - -0.0004602025337262946, - -8.103192129590953e-05, - -0.0008969667023343441, - 0.0008117089696100372, - -9.769399695185435e-05, - 0.0010531905624631551, - 0.0002977086873459602, - 0.0011235354312997764, - 9.434636126851466e-05, - -0.0006497667648771048, - -0.0027810497762467347, - -0.0005540470572392248, - 0.00035727370381484654, - 0.0012045245656987446, - 0.0023320764981077883, - 0.0009955241560718467, - 0.0004768194280954253, - -0.0010214431576724338, - 0.0007636504916737487, - -0.0010514625563676906, - -0.0007706576014277622, - 0.000316044643441275, - -0.0005573213085070858, - 0.0002630757795269662, - -0.0006648747277195213, - -0.00013556900985660361, - 0.0007905640498806209, - 0.0004426462982015968, - -0.00229846926324013, - 0.00015152476202965985, - 0.0008363125371629512, - 0.00012708833740708675, - -0.0007544709467359782, - -0.0013527157135673252, - 0.0011777733220507142, - -0.00015766991987597545, - 0.0004383091532579459, - -0.0017856731144353425, - -0.0006613255526893334, - 0.000685832276029459, - 7.271660895234633e-05, - 0.0011711553587968031, - 0.00021607329288691354, - -0.00012144065326816751, - -0.0016095813022596877, - -0.0002564332986784003, - -0.0004073988883325421, - 0.0011211937939208019, - 0.0004969347688462875, - -0.0001843415958645364, - -2.2287496425896388e-05, - 0.00115464019331488, - 0.00023055693964400787, - 0.000686532157911574, - -0.0002833880074800904, - -0.0010843357740837397, - 0.0014301529305135677, - 0.0007442567474705815, - 1.0624402870961714e-05, - -0.0011109894480185822, - -0.00020133351470009292, - 0.0017709382582731976, - 4.728519291513384e-05, - -0.0014232168121446269, - 0.00016218771129781028, - -0.00033632016893614966, - -0.0003482536313586384, - 0.00038472972157577254, - -0.0004742319096869395, - -0.0003485546527758369, - 0.0011072264971884573, - 0.0006655657132380085, - -7.186237457386876e-05, - 5.232084673894177e-05, - -0.0003642263367411763, - 0.0005682500086202813, - -0.00015777323371741713, - 0.0007570702390019906, - 0.0011531968537553698, - 0.0011225155162283183, - -0.0004208972852554439, - 0.0012921118939538889, - 0.0006021868150946911, - -0.003072255944013091, - 0.002150456016400565, - -0.001983812471625505, - -0.0005580646583528594, - 0.0017421924197424145, - -0.000935691861521009, - -0.0005187944048144685, - -9.472331487206306e-05, - 0.0021896322444351756, - 0.00021686853077183447, - 0.0014145688745353239, - -0.0011909284042162587, - -0.0021461988391582, - 0.000372809510794301, - 2.200617922757347e-05, - -0.0003784593707531899, - -0.0009569936231183275, - -0.0005576046870325851, - 0.00030120486972245574, - -0.0015690630874381402, - 0.000668356725256216, - -0.001043381564703055, - -0.0015345191211776346, - -0.0010347675700382295, - 1.3830850912866665e-05, - 0.0008794922151196486, - 5.746661672894043e-06, - -0.001462558698066981, - -0.0005470104227108711, - -1.4770236830331587e-05, - 0.0001688332100768854, - 0.0008598487757289594, - -0.0015328412475415808, - -0.0016081592733622452, - -0.0011774931222778842, - -0.000997385759441901, - -0.002969046195251004, - 0.00033927907144973085, - 0.0017105881895072479, - 0.0001757839888251729, - 0.0013577411727607209, - -0.00042495034547297683, - 0.00010198405607027103, - -0.00107634232444726, - 0.0001221766975861962, - 0.000743388390688408, - -0.0005301075475979998, - -0.0012558231406793153, - -0.0008225885864900694, - -3.564187950956459e-05, - 0.000908755787945808, - -0.00027808024036125173, - -0.0033879464295087916, - -0.0012064584404954779, - 0.0018030805211043273, - 0.002592018223280558, - 5.7696735812046206e-05, - -0.0009365256732370843, - -0.0003982002645639484, - 0.0007416541505397477, - -0.0005947261615294452, - -0.00038659344150184985, - -0.0007807322107632247, - -0.0006394461888985372, - -0.0009955499151535455, - -0.00024519264581849003, - 0.0005980067677151872, - -0.0004857096416333224, - -0.0011050460322296848, - 0.0006613412106464309, - -0.00013784861479275, - -0.0003798426286631207, - 0.0008153297609344905, - 0.00044969637190695025, - -0.0017166973388478795, - 0.0013378297788796578, - -0.0013415338068376397, - 0.0001342498970824885, - -0.0003637746374411413, - 0.00022765365873110593, - 0.0009338171621699764, - -0.0015715515053374548, - -8.85280182747584e-05, - 0.0005985542336447197, - 0.0018539668953761288, - 0.00263143198296604, - -0.0008828655482656072, - 0.0010259761846601442, - -0.0019524672181921365, - -0.0007468369430596157, - -0.0007040680496744861, - 0.00024298058246243734, - 0.00024645105903755405, - -0.0009493287818192987, - -0.0005655475588869529, - -0.0013430493838073986, - -0.00018989672319441595, - -0.0005062566342539206, - 0.0010799449852211633, - 4.7074386458403e-05, - -0.0007517640800298653, - 0.0007556471183069093, - 0.000861398800893826, - 0.0008343793914534104, - -0.0020053660136698957, - -7.873207628875093e-05, - 0.0009224387129456842, - 0.0009703608645603651, - -0.0003599546196541329, - 0.00046026792914965624, - -0.0011784642996144775, - 0.00036832348485371115, - 0.00011358780178188562, - 0.0005778654046965261, - -0.0008516290081619637, - 0.00025613750931190437, - -1.4120298816577826e-05, - -0.0007775692549802584, - 0.0006003600906583129, - 0.0019884019600072676, - 0.0009811759398147878, - 0.0006171102367326794, - -0.00039880750790190526, - -0.0006991613435029897, - 0.0008658139101821944, - 7.303919471758216e-05, - 0.0020613643172815127, - -0.0009673931838452871, - -0.002377239872857705, - 0.0007925821559617899, - 0.00016976092234818007, - -0.0005221853997889041, - 0.0011913482619466981, - -2.939881712615536e-05, - -0.0006090283801624698, - -3.954436479760143e-05, - -0.0001817985272956997, - -0.0012043680178022377, - 0.0006397349376885931, - 0.0014776101746117268, - -0.0009180386739747606, - -0.00026445576861175077, - -0.0005461841797474845, - 0.000538110578847551, - -9.761321069716105e-06, - 0.00022879620623738705, - 0.0008297276862322028, - 0.00033878437217689863, - 0.0007023323179537419, - 0.0007487092933553971, - 0.0012044067939321246, - 0.0012469358405186412, - 0.0004720178085473363, - -0.0003730924980369895, - 0.00035317321624182027, - -0.0008074095519903419, - 1.0120908367325834e-05, - 0.0005813152421634613, - -0.0021084580832184383, - 0.0008288018348197844, - 0.0014841721814225642, - -0.0006828795206993835, - 0.0024569724104001336, - -0.0018878233037531317, - 0.0012253057265853072, - -0.0012577695709598022, - -0.0019735900583964924, - 0.0009569201056478602, - 0.0005625144782727089, - 0.0004907471455850584, - 0.00026489811915886985, - -0.0008643510573893862, - -0.0006360259212254687, - 5.4698924388043315e-05, - 0.0011572896469576482, - -0.0013115502696920583, - 0.0006549425139459206, - -0.0013506451096913555, - -0.0007247214820359092, - -0.0007714820837054951, - 0.0025926897935431474, - 0.0004430275791750872, - -0.00019987460901114447, - -0.00046638656277430963, - 0.002144517379305736, - 0.0017020398474777733, - 0.0004277844683805462 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgb(206, 220, 249)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 0.00026074825497593207, - 0.00043786470728437164, - -0.00016353344663857665, - 0.0009540978047292491, - 0.0015356667264795178, - -0.000334404341190529, - -0.0007940840289983011, - 0.00047133154238722516, - -0.0008928752571540099, - 0.0015305401387753638, - 0.0004677349047857996, - 0.000961295697216432, - -3.703246172284138e-07, - 0.0020264825268103597, - 0.0001868794952014119, - 5.9168838250670957e-05, - 8.378989483645195e-05, - 0.0008426501528011827, - -0.0025493346236219513, - -0.0011758854044988346, - -0.00046030255195458387, - 0.000149948978987752, - -0.0003902746978965827, - -0.0004595332802675642, - 0.00015238477626142565, - 0.0005860904929684942, - 0.00010624093647989302, - 0.00040478154666438677, - 0.000961809678365172, - -0.0020901397889015526, - 0.00028218265491215485, - 0.0006876661552023372, - 0.00043797240362398565, - -0.0006438489005672756, - 0.0016845199828930853, - -0.00031678479196742634, - 0.0002777027448523781, - -0.0003420727133744269, - -0.0020590962855586417, - 0.00047176279814764674, - -0.0002637728513498152, - 3.764434320719515e-05, - 0.00022337232571449108, - -0.0008413274446842841, - -0.0005526052376058184, - 0.000797277551903889, - 0.0016551422576397677, - -0.0017607676006218837, - -0.0015640762136635879, - 0.0006418881284846274, - 0.0008451148980582373, - 0.0008290183281051366, - 0.0011254626786853536, - -0.00023653307312937466, - -0.00103261239197174, - -0.0006928151979443517, - -0.000594586024586499, - -5.2415784310728795e-05, - -0.001081564214461471, - 0.0002111973083745355, - 0.0011984158390346536, - -0.0014197076621521405, - -0.00047352948655283143, - -0.0006079206754357277, - 0.0007145812946923709, - -2.957006140716809e-07, - 0.00029223113852220293, - -0.002111661483138153, - -0.00021935013284135813, - 0.00030332116257872626, - 0.0004706604102355576, - 0.0021220616173072623, - -0.0009681411113502878, - 0.0011501363262812103, - -0.0011946788004190498, - 0.002032547698991146, - 0.0002858130686416318, - 0.0012315070526718707, - 0.0005426033857705643, - 5.087070261118262e-05, - -0.0008091564062000354, - -0.0007185108206841581, - -0.00024111708203528048, - -5.075850968149898e-05, - -0.0015897065011863396, - 7.810671336664878e-05, - -0.0012284214920108129, - 0.0003281329191085481, - 0.0007005510477914971, - 0.000645256509478472, - 0.0007557099893288612, - -0.0008921477389145321, - 0.0009704704992735462, - 0.0005724238426442129, - -0.00035470815938423955, - -9.145213909400089e-05, - -0.001388819644578388, - 0.0002538204661271025, - 0.00042963501624427653, - 0.0005153938621340041, - -0.0018841851819872718, - 0.0006725904287193875, - 0.0005920197210193166, - -0.00046471681008577423, - 0.00046284322966451684, - -0.0007712633096208235, - 0.0008059193521931213, - -0.0006819714252867165, - 0.00014482948698606429, - 0.00017465596458313728, - -0.001216601162752407, - 0.0002926427941137309, - -0.0005645781305142236, - -0.0003976324156299406, - -0.00043167368228757945, - -4.2779673171537236e-05, - -0.0001854111750743031, - -0.0016334343119489103, - 0.0013252011941363327, - -0.00012104696759230006, - -0.00027251590557574235, - -0.0002459640497978384, - -0.00034647240075949597, - -0.0010009161162650216, - -0.0017535266069109439, - -0.0008812352198381019, - 0.0011981273152303908, - 0.00017484084058187678, - -0.001265233741646761, - -0.0007256125181855901, - -0.00033286541009788133, - 0.0007075982684356508, - 0.001995159012400541, - -0.00020788991207423184, - 0.0009629384047305069, - -0.00024185553071128085, - -0.001818751978143259, - -0.0017165391535874416, - -0.001051270337024126, - -0.0007090198602242294, - 0.0008976249475935647, - -0.0016287017834125778, - 0.00047067995997681006, - -3.73260075381568e-05, - -0.0001488410712409123, - 0.0008488016720630152, - -0.0005397762052360288, - -0.001140175084797778, - -0.0010821377101877068, - -0.0005357698972158947, - 6.387117636194649e-05, - -0.00170377227814941, - 0.0014151656860796078, - -0.0005674461136353067, - 6.160224637056895e-05, - -0.0019322563700312852, - -0.0012100201686595356, - -0.00014431380077109115, - -0.0014800308153126603, - -0.0005022363360584263, - -0.0007395207270002624, - -0.0003175405321816116, - -0.0009859559935696534, - 0.0009092590838902287, - -3.5298049910194006e-05, - 0.0013050016748227186, - 0.0003759230659988603, - 0.0012700172727081347, - 0.0010697413012524535, - 0.0009718211412146674, - 0.0005014985224662614, - -0.0013449834292336795, - -0.0007720243776426818, - -0.0013061043099754264, - 0.0004003184381113444, - 0.0014464984364076935, - -0.00032776654060134814, - 0.0011838682818579717, - -0.0008464648390424688, - 9.917011755501303e-05, - 0.0004558710894732222, - 0.0006797737540613134, - 0.0002788655054543009, - 0.0012848801290790792, - -0.00011515172711270706, - 0.0018382580652758036, - -0.0005823077676533508, - 0.0008902121408339736, - -0.0004850863714593787, - 0.0008013145346660905, - 0.0008294287963628738, - -0.0007465480695348742, - -0.0006683378577577736, - -7.905737776835794e-05, - 0.0015116334424616496, - 0.001246098405414887, - 0.00025753836199600346, - -0.0005804429879187298, - -0.0009496817873819714, - 0.002573783494942757, - -0.0003983934533377413, - -0.001185056524278888, - -0.00016682359840237791, - 0.0010118398379333287, - -0.0018817190501189706, - -0.0014376931544674795, - 0.0005511970863387027, - 0.0006629864496490189, - 0.00020765156954700832, - -0.000972945274043485, - -0.0007190698611448766, - 0.0027949217611375945, - 0.0013557351024080337, - -0.0022820103987233518, - 7.869083879122175e-05, - -2.1759667202504176e-05, - -0.001862340601150541, - 0.0003616652128968629, - -0.0009040425500021162, - -0.0002830328337428453, - 0.0006032357477397071, - -0.0002503043690709899, - 0.0008064803258206025, - -0.00022238691474077332, - -0.0004969294727703486, - 0.00012127674256472124, - -0.0011665109290263675, - -0.0008114225054201728, - 1.2357712542422178e-06, - 0.0022017272672762225, - -0.0008076351457061505, - 0.00045473420622565264, - 0.00055546223369008, - 0.0009935536047961868, - -2.2016378200412882e-05, - 0.0016688117010253034, - 0.00012284777603730227, - -0.000850448379249597, - -0.000473668541689733, - -0.001166205477097483, - -1.133752195682725e-05, - 4.949985765680897e-05, - 0.0010285958235324826, - 0.0007490705142834429, - 0.0012493314009230539, - -0.0005531621573881454, - 0.0016974652455400952, - 0.0009702095696325187, - -0.00045083021611477727, - 0.0007951875174136917, - -0.0003600001738688269, - 0.000273847861274408, - -0.0004170382737159634, - 0.0006856992389437341, - 4.8258382161019326e-05, - -0.00024828105541891223, - 0.00126425448538951, - -0.0023403602140173647, - -0.0005084125051990258, - -0.00014002232923275757, - -0.001111345565736703, - 4.541438603146399e-05, - -0.00018349837750024247, - 0.0007377542586056762, - -0.000461256785372628, - -0.0011442078436011444, - -0.00020558964082968302, - -0.001313751956876986, - 0.00019644362020675534, - 0.0014008018102915911, - -0.0012713400674629217, - 0.0005507911407015706, - -0.00012111239724278716, - -0.0013000084912160184, - 0.00010258250126716875, - -0.0013366361143595015, - 0.0006060590951300587, - 0.0019667258716224716, - 0.002085352327047821, - -0.0011669913474864249, - 0.0001704435775541555, - -0.000470770724850965, - -0.0006395411217294097, - -0.00013869849865695417, - -0.0002554183070688959, - 0.0008916680454933593, - 0.00048633050790804775, - -0.00198793181618576, - 0.0004003656885436565, - -0.00023206751190514902, - 0.0006039974974319576, - 0.0018442792613836308, - 0.0005538904451151193, - -0.0006023036639014254, - 0.00041162085573544, - -0.0011316233546041759, - -0.0016556453806326297, - -0.0012355308477676288, - -0.00241915496312795, - 0.0008328422066480375, - 0.0016371743855092809, - 0.0010706709713199272, - 0.001186870223421534, - 0.0013730972874655611, - 0.0010047570635808452, - -0.0014527634464739166, - -0.0002512700457869587, - 0.0007685037863858007, - -0.0018249981127539158, - 0.0001522889470344231, - -0.0012846562860712417, - -0.0004172265806479241, - 0.0002389330167739199, - 0.0007295327736375567, - -0.0014168416001278036, - -0.0006626082586573222, - -0.0002948455045694453, - 6.110015362805328e-05, - 0.0011610891691950342, - -0.0010731421671482735, - 0.0006204862774235848, - -0.0005511470284290225, - -0.0009662557807866334, - 0.0003982723259630793, - -0.0009233935830652126, - -0.0002745013307088319, - -3.499121492831391e-05, - 0.0009496786237179098, - 0.000273516163906474, - -0.0010250840131831504, - -0.000367052107612439, - -0.0005284374568188793, - -0.000990361415124244, - -0.0011075624519298985, - -0.0006130349649796815, - 0.0012579391401308486, - 0.0008512876362642477, - -0.000604083176412863, - -0.0013587442988978718, - 0.000848664171939314, - 0.0006418714612420052, - 0.00042807255663877174, - 0.0008151882025780629, - 0.0008740910440841431, - -0.00041737412592504793, - -0.0021965861788827232, - 0.0006054609432573632, - -0.0013598591655825957, - 0.0005311392680995492, - -0.0007461743331075465, - 0.0003132828630140483, - 0.0002291374897444239, - 0.00046466978127445205, - -0.0007164392942758438, - 0.0016684925398429103, - 0.0003707590821351537, - -0.0001419391568242266, - 0.0014661517157017853, - -0.0015743665490040213, - 0.0009902106387093094, - 0.0008503924545835413, - -0.0016232019476696566, - -0.0013813222924108097, - -0.0003900465271230719, - 0.0005695703723620751, - -0.0004542187310289362, - 0.0011699923088801633, - 0.0005695979691112044, - 0.002289360438818631, - -0.0002320131092537814, - -0.0020557712326814853, - -0.0007275025436667193, - -0.0011869527384367508, - -0.0006783590047973211, - 0.0004181177343446547, - -7.803832861731431e-05, - 0.00014259143494909976, - 0.00014144094659853854, - 0.000657062673174435, - 0.0025118384221039366, - -0.0010411737812096166, - -0.0008286212371263535, - 0.00027587145844005855, - 0.0014013751802344852, - -0.0007716593437237581, - 0.0011408861265586447, - 0.0010935729343722587, - 0.0006028666078600827, - 9.90306043637145e-05, - 0.0007091611791105321, - 0.0018936086128750992, - 0.0015773238499111244, - 7.97752773678456e-05, - -0.0007566332427803809, - 9.320443276871764e-05, - -0.00045245844741497826, - -0.0011115590485595635, - 0.0004718444282825323, - 0.00018894863136665544, - -0.00024509402234944495, - -0.00023625239622295248, - -0.000788245231428212, - -0.0018158612462880839, - -0.0006753262519509994, - -0.0006584759877075526, - -0.0008210748610504293, - -1.6038389298229027e-05, - 0.0010058786523099088, - -0.002804663137196348, - 4.6083832154624436e-05, - -0.0010279304347548751, - -0.000861523422511304, - -0.000923756364885975, - 0.001258196225389135, - -0.00010756439398247071, - 0.0005949983814966525, - -0.0005260653362618614, - -0.0011769346887755337, - 0.00019644678990862855, - -0.0015007926431246914, - 0.0009655012190384177, - 0.00035410939805708254, - -0.0017942079282110936, - 0.0003910522316119045, - 0.0010350726158982666, - 0.0011809144062356932, - 0.0006371346046043438, - -0.0008844102694799303, - -0.001400303861058635, - -0.00022556001898284828, - 0.002281741315883073, - 0.0012836272228193297, - -0.000993062416983482, - 0.00030717898754058383, - -0.0008283195573599538, - 0.00022926674991314273, - 0.0005852033863420282, - 0.00011158658385838823, - 0.0012570394899794493, - 0.0009254023404772235, - -0.0009532311455138227, - 0.0003477960792841218, - -0.00037983814290513794, - 0.0020600747941197837, - 0.0008839071434775227, - -0.0012211242811163954, - -0.0012882449290621872, - 0.0005751135508002176, - -0.0005229153963688458, - 0.0006411631470444265, - -0.00046983758404841707, - 0.0006560102202978332, - -0.0003233232480027269, - -0.0005956763372148415, - 0.0001537936166980211, - 0.00047939434123666074, - -0.0017865072851596963, - -0.0001394184686762036, - 0.0006695184138911742, - 0.0004421338655044377, - 0.0012519906866303569, - 0.0008488693185785131, - 0.00014487364760620123, - -0.00017605165764500978, - -0.0007703200430307326, - 0.0012377393452624392, - 0.0009281596310554711, - -0.0003755756113475325, - -0.00013937826283202286, - -0.00045479346868586155, - 0.0010836074001727126, - -0.000370639001605122, - 0.0008836756102626164, - -0.0008253044882265733, - -0.00043231090370436794, - -0.0005887097629625804, - -0.0009090664658824295, - 0.0005434186715312378, - -0.0006037932846321064, - -8.49172806883554e-05, - -0.0008510967243236434, - -0.00056803664865564, - 0.000804136024192495, - 0.0013400693833429615, - 0.0011854772371144562, - -0.0008681588101459271, - -0.0002895491623305969, - 0.0005252585012689237, - 0.0009898392861721877, - 0.00047423851341840104, - -0.0021528978822424193, - -0.000881788500150431, - -9.590375690010893e-05, - 0.001288999347667436, - -0.0005198418011624396, - 0.0004390031258354239, - -0.00021551267025932794, - 8.42176710930648e-05, - -0.0023257132760846518, - -0.0014528219078068052, - -0.001346230038628489, - -0.0003454005425121264, - -0.00023780795237144287, - 5.630576199574398e-05, - 0.0009591402574458808, - -0.000974011070717332, - -0.00017721319279485987, - -0.0021935990444144488, - -0.0005498451964495439, - 0.0013032971690729275, - 0.0007808880819836085, - 0.001077418348818, - 0.00038787285597497774, - 0.00035126987863895584, - -0.0002420701802648156, - -0.00039939712391031485, - -7.734259376626657e-05, - 0.000776575422476568, - 0.000546847408366647, - 0.00015249298700638545, - -0.00033606759197178166, - 0.00047071440386112115, - 0.0002738753504798068, - -0.0018869663671056507, - -0.0005971374620916024, - 0.0011747304764669303, - 0.0017886033396086044, - 0.0007064427340371217, - 0.0006546345315396921, - 0.0008700475665382865, - 0.0009272719091569144, - -0.001985446651842067, - -0.0010143150029357888, - -0.0010192662363510527, - 0.0005805702232148208, - 0.001657204409059489, - -0.0004751201880360219, - -2.9685200569170008e-05, - 0.0006047580294052148, - 0.0002098742438069941, - 0.00016923833900880426, - 0.0019862679524747817, - 0.0008880292185983528, - -0.001022457372290891, - -0.0010174395589564666, - 0.0004140747136789646, - -0.0009424057739917178, - -0.0005320830098550704, - -0.001892527178740062, - 0.0004927404952430863, - 0.0005452043652381865, - 0.000611211189655407, - 0.001135555690230214, - -0.0008574300103283309, - -0.0010856374782473033, - -0.0005250949617425049, - 0.0013361627875726205, - -0.0005775196145264953, - -0.0007469326219090861, - 0.0006270393573782202, - -0.0008431456136861951, - 0.00012365193822307842, - 0.001394326738654133, - -0.0003483465098639043, - 0.0004699506477035538, - 0.002034356498109025, - 0.0026840991136781794, - -0.0007703621159367766, - -0.0013073305842521163, - 0.0006884238967715122, - 0.0010373530009723632, - -0.0006205004111556378, - -0.0004680962215183174, - 0.001503815626188523, - 0.0020977424446532813, - 0.0006066909453152869, - -0.001782007819435275, - 9.830230140254329e-05, - -0.0010801344388880153, - 0.0006012879343343288, - 0.00046946720714396365, - 0.0009161021180541273, - 9.765492135838948e-05, - 0.000739369929154352, - 0.002206595083680164, - 6.697063395693902e-05, - -0.0005051645348876266, - 0.0016435078026663234, - -0.0003514807097833861, - -8.088743944119157e-05, - 0.00016624062018540702, - 0.001083412193643537, - -0.0007363970502113671, - -0.0005600084197934018, - 0.00261866949149773, - -0.0009476091995026907, - 0.00225737830488681, - 0.0005112868284124115, - 0.0017305411202099845, - 0.0007374692072241539, - 0.0007985657904148742, - 0.002683492645785201, - -0.0005817866056233203, - 0.0008010478777942592, - 0.0008493278950375116, - -0.000131586175810261, - 0.000830188661174459, - -0.0005368958310417891, - 0.0008983059529881366, - -8.111102418425528e-05, - 0.001048504232466868, - -0.000411663388932615, - 0.0010710733587017264, - 0.0013562620025853822, - 0.0005394309183138915, - -0.003314172692765406, - -0.0017041674258889623, - 1.2170229562391625e-05, - -0.002480438633050976, - 0.0016230364302719617, - 9.65733879135511e-06, - -0.0009216677351830137, - 0.0006014421463655531, - 0.0005211459141323079, - -0.0015978574348146982, - -4.599697838315126e-06, - 0.0006098441145435748, - -0.001965059770434839, - -0.00015484419558918863, - 0.0007238161987252679, - 0.0011938848542444919, - 0.0016700232699921494, - 0.0005030471801214791, - -0.0005908091199266707, - 0.0005518613898952959, - 0.0010940782694951643, - 0.0005951073441343049, - 0.000743145705310708, - 0.00210675832024904, - 0.000871239235068985, - -0.00034888560179885885, - -0.0017449055732838975, - 0.001068720876044692, - -0.0018411202944211365, - 0.001535171482972436, - -0.0006750020942024394, - -0.0010560832961864356, - 0.001315422396160994, - 0.0002962911399735451, - 0.0011890997491999626, - -0.0011620925857084388, - -0.0019447019039472387, - 0.0005529657284848353, - 0.0009401942898092884, - 0.0011493458757242218, - -0.00021266109988215482, - 0.00235926248143098, - -0.0012293923758548901, - -0.0006028952064697336, - 0.00026125808686061364, - 0.0016159173411086354, - 0.002280386011459549, - 0.0010650561629682472, - -0.0013630438226679262, - -0.0008807377545629174, - -0.00015440735033958285, - -0.00031927079476377375, - 0.0006895566413241967, - -0.0002913824278697022, - -0.0011289738888671296, - 0.00015097870586717538, - 2.524050402373038e-05, - 7.420284806740373e-05, - 0.00024449053368135875, - 0.0008294007984864793, - 0.00025292845168428126, - 0.0008216475644184779, - 0.0010993141681821408, - -0.00027382335244195916, - 0.00011435416783111551, - 0.000544889844991507, - 0.0002599076363763611, - -0.0009584534875462486, - -0.00018814030033040746, - -0.0004905718168140415, - -0.001220040226507474, - 0.0003800081661201053, - -0.0007851200250805112, - 0.0005919946018299638, - -0.0010782839251206617, - -0.0006742843544999144, - -0.0006477470237910159, - 0.0021153047466545864, - -0.000680558298218911, - 0.0010590503914186943, - -0.0005467839425608074, - -0.0012670743646043875, - 0.0005918211670503614, - 0.00044066133166978567, - 4.1259856509715914e-05, - -0.00010009366297374569, - 0.0009185698015976391, - -0.0003395678486669952, - -0.0001627351719039492, - -0.0005965117691926947, - 0.0003325034702222143, - 0.00032179230566566053, - -0.0017223472113372547, - -0.00038731761973141357, - 0.0009319354212549651, - 0.0009213806873753638, - -8.206455647330857e-05, - 0.0018584142980721011, - -0.0007575903863516104, - 0.0005658635849837821, - -0.0002682048352080327, - 0.0012615455554843174, - 0.0005900851585490552, - 4.017023292051166e-05, - -8.04375400509896e-05, - 0.0010416708649265143, - 0.00012587327760331217, - -0.0005446106637594888, - -0.0010283367509870468, - -0.0020652934980180896, - 0.0010492606439295822, - -0.0024637415909223794, - -0.0005679872134912439, - -0.00010864161433538216, - -0.0008010528776575352, - -0.0001409818952152164, - -0.00037098223370387283, - 0.00013778787381891225, - -0.00044904901763711494, - -0.00011200983344791937, - -0.0003720261021943552, - 2.773092098541336e-05, - 0.0005871721356499883, - 0.002125663662551348, - -0.0008976985029108347, - -0.0006369713752997791, - -3.290260321370531e-05, - -0.0014669383694995454, - 0.0005901081693299035, - 0.00029241999002175574, - 0.0019392756121596696, - -0.0007839288373711077, - 0.0017674071696910313, - -0.0004888431821088326, - -0.000147164905031259, - -0.00020325992659570713, - 0.000266380452451967, - -0.00035935413943672447, - -0.00016625400989214636, - -0.001048279398167707, - -0.0017992311703060157, - 0.0005332264374436018, - -0.00047342557400087697, - 0.0007537428950003614, - -0.0007276320062981694, - 0.0012587251346360875, - -0.0013507069488336869, - 9.517390156301431e-05, - 0.0008868974550728262, - -3.186209334524896e-05, - -0.0008332826270392177, - -0.001726767489999449, - 0.0007176169538380304, - -0.0011263420403317698, - 0.00025720049900155293, - 0.0008341680533605993, - 0.00020188868701597487, - -2.1132820776765578e-05, - 0.0004078419836116959, - -0.001392346971107948, - -0.001403634806413093, - -0.0014081078206575734, - -0.0015489494798161957, - 0.00025788914561739176, - -0.001109871091202612, - -0.00041390236097047384, - 0.00018948620782237036, - 0.0001888155854229897, - -0.0005130574509815886, - 0.0005100459389216181, - 0.0011995659024188088, - -6.5350265799066e-05, - 7.488726681247307e-05, - -0.0013086163183329994, - -0.0005525474513888189, - -0.0015811446967128626, - 0.00029008854375110564, - -0.0005375845489266323, - 0.0008281206820049867, - -0.0014716610615702038, - 0.0003545298060704352, - -0.0008838122614034907, - -0.0010547084692821525, - -0.00039874157598006934, - 0.0009479806836740894, - 5.250256315447605e-05, - 0.00030233992337431374, - -0.0004864246389362549, - 0.00018057600897518057, - -0.00017467704162217894, - -0.00012835642706477343, - 0.0008114257985528475, - -0.0005448202484212697, - -0.0011783919491375864, - -0.0011279511656978527, - -0.001150674780198691, - -8.318006892949971e-05, - 0.0006249158512258152, - 0.00042979163065178124, - -0.0012688587281309248, - 0.0002736692958153045, - 0.00038892719688834884, - 0.000519879066294838, - -0.0006784118597441738, - -0.0008534831617338515, - -0.0020287705352912883, - -0.0011615864735728173, - 0.001438257481196342, - -0.0015944304983788048, - 6.028806522380562e-05, - 0.0001413921380618839, - 0.0009711788076163963, - 0.0028025327800875626, - 0.0005295044764736799, - 0.0008080292088372437, - 0.002780047178874589, - -0.00029783450483772725, - 0.0016667053994251812, - -0.00013770042587624547, - -0.001992806300857909, - 6.00972544847621e-07, - 0.0003041233002791822, - 0.001279249257551985, - 0.0019001856452872294, - -0.0005003968386922142, - 0.0008558144005534708, - 0.0004435753886185813, - 0.000801331077184924, - 0.0006552941820050049, - 0.0007195934801920143, - 0.0007583305663677116, - -0.0001372809751295039, - -0.0003043087798964713, - 0.0009623263207158982, - -0.0003505416563648018, - 0.0009663994726778032, - 0.001002740094025693, - -0.0009540514440514853, - -0.001491600504667927, - 0.00024160840405758018, - 0.0016042653794747241, - 0.0005090878912441829, - 0.001410129755398295, - 0.00048090941816463574, - -0.0003207637764132416, - 0.0006032006988280051, - -0.0008934921240285835, - 0.00038124947439242775, - -0.0015911418870639643, - -0.00034291482993900244, - 0.0003308114046235202, - 9.899071398701406e-05, - -0.0003899885815572532, - 0.0005506213014751052, - -6.915549778087674e-05, - -0.00015874686482065953, - -0.001562801188915166, - -0.0024326244927761025, - -0.00048564187733265047, - 0.0002999361887748924, - 0.0007175737074864592, - 0.00025839865325741676, - 0.0010386956498715204, - 0.0010300845089105967, - 0.0008877335247930677, - 0.0009153332407808467, - 0.0004483549872643937, - -8.22109272626941e-05, - -0.002331545776187096, - -0.0006691633248852477, - 8.838361989614669e-05, - 0.001003831047064805, - -0.0012970742102415438, - -0.00030634703054389174, - 0.0010567375980656973, - 0.0009164627371168663, - -5.588020936498549e-06, - 0.000839171480447556, - -6.162259612518374e-05, - -0.0004159481305155471, - 0.0007766929227479429, - -0.0002935555586979207, - -0.0014047322852113221, - -0.00042427749745367393, - 0.00021998271667081663, - -0.0010806970854739216, - 0.0001664035399436784, - -0.000926479150556392, - 0.0003609573772157139, - -0.001397670499763587, - -0.00033784816956651954, - 0.0009827314885947945, - 0.0017634609332568961, - -0.0001660068361410769, - -0.0003196402560593736, - 0.0004885455193620375, - 0.0002666247351789592, - -0.00013315026033416602, - 7.064302282489934e-05, - 0.0003928697604741463, - 0.0004975901157410482, - 0.0005067097166436126, - -0.000503016191310159, - 0.0003595585244750453, - 0.0016083764228973661, - -0.0006940358650660625, - 0.00039171030300676516, - -0.0003871869932269575, - -0.0011324476817833437, - -0.0013738380217006257, - 0.0007581243777364632, - 0.00041287947416167596, - -0.0016406006505154966, - 0.0011685569719606967, - -0.001932268065361946, - -0.0014745247732347038, - -0.0004874910835926606, - -6.30118066862096e-05, - -0.0015270159299257196, - 0.0006857433667550247, - 0.0007323786623280249, - -2.4999466008865186e-05, - -0.0019185598082263602, - -0.0005069752397727518, - 0.0002890868062702814, - 0.0005162581761000195, - -0.00011586893259780132, - -0.0012571101125134528, - 0.0009452615152888528, - -0.0009206350365435561, - -0.0013093606228851713, - -7.909213112529035e-05, - 0.0010066338371386957, - 0.0004387001356691175, - 0.0005507388060688841, - 0.0003248509687632261, - 0.0006452004093331609, - -0.0023803743453187317, - 0.0009511967778090182, - -0.0029272976328545905, - 0.00042424147480009145, - -0.0005857754148372415, - 0.0007335374266072532, - -0.0010009270359942464, - 0.00025782933813261295, - 0.0015682885811400455, - -0.0011548653276898294, - -0.00038073059005243445, - 8.318188309219554e-06, - -0.00037371506621301337, - 0.0008745266831811059, - 0.0006383432560851278, - -0.0007314158712630233, - -0.0009509677337097485, - -0.0012043498532280823, - -0.001289349652781952, - -0.0006140725871039447, - 0.000480721615929204, - -0.0012879900911316304, - -0.0009659819058580652, - 5.740425446200722e-05, - -0.00011027509354901718, - 0.00043336293978316884, - 0.00033027738295277585, - -0.00014606166564253166, - -0.001337988671928727, - 0.0012658103175145507, - 1.3668872661110497e-05, - 8.101704926955243e-05, - 0.0008467783894956569, - -0.000531789928210527, - 0.0012647999424688897, - -0.0005902183917738951, - -0.0004725395032129933, - 0.0007903434363974282, - 0.0004461988301413895, - 0.002351882639100626, - 0.001377830964754509, - -0.0012179268421697396, - -0.001227319795541897, - 0.0012198082315095062, - 0.0008730070490560794, - 0.0006068365445641423, - 0.0007946141646259139, - -0.00026335182695306743, - -0.0006253442215826157, - -0.0017276867919623522, - -0.0011033520490369856, - -0.000977471261018238, - -0.00016058363969462738, - 0.0010071182603168909, - -0.0016436019179064502, - -0.0007701301021613294, - 0.0003899397553056678, - 0.0010173197151352065, - -0.00045198439931016724, - 0.0012237558530434234, - 1.0883781241956198e-05, - 0.00012323412647940264, - 0.0001260355032881855, - -0.0009297541079876743, - -4.33097949308707e-06, - -0.000542698680661903, - 0.0006867462740530835, - -0.0002353785838209618, - -0.001077357714891856, - -0.0022928095218385453, - 0.0001609559239683983, - -0.00025603433151131073, - -0.0008588251553425499, - -0.0008127009136887102, - 0.00017956346621502518, - 0.001233837156174947, - 0.000991434215853774, - -0.0003234473773978024, - 0.0021873800166716767, - -5.5940510849396296e-05, - 0.0002617571069784721, - -0.0005911583684228095, - 0.0008890844834016781, - 0.0005596176396429372, - -0.0004709451958861166, - -0.0013883438696238185, - 6.393187605083861e-05, - 0.00032720146111720426, - 0.0009839747755482563, - -4.6409490130750977e-07, - 0.0027168359008024447, - 0.000899594917061271, - 0.00029129436734675517, - 0.0009064776026806061, - 0.001110133155595373, - 0.0006715728738467932, - 0.0002792875929323569, - -0.0003431089187408314, - -0.0012733178290640066, - 0.001750324544996587, - -0.00011363632479263523, - -0.0011003555586875193, - 0.0010554206533746066, - -0.000511052936939654, - 0.001090841806287997, - 0.0010989252546990643, - -0.0006349435404090625, - 0.0008736235729645512, - 0.0004980270095942764, - -0.0006093901358915836, - 0.0008906934528360664, - 0.0008560231846574065, - 0.0020253285020856147, - 0.0006104958683274085, - 0.0004978210839991157, - 0.0011390558085112034, - 0.00022886481790233569, - 0.00012787055354145847, - -0.0012394115581366252, - 0.00019644721834212296, - 0.00011904007629873056, - -0.00010440985538749677, - -0.0003029588794726922, - 0.00048100636881796404, - 0.0009946610739816643, - 0.0005037071935247829, - 0.00014445557640497088, - 7.923905706904203e-05, - 0.0007441039254984929, - -0.0013665255089948404, - -0.002483652823101948, - -4.875004494250917e-05, - -0.001080836090919664, - 0.0005891406011406585, - 0.0010864067683071742, - -0.0004095091357713202, - -0.0004693603878016251, - 0.0009856647113023161, - -0.0017057920877921815, - 0.0018401747477436294, - 0.002611424464296575, - -0.00019002387271629294, - 0.0002228673058426058, - 0.0002689235545542153, - -0.0004978730148322813, - -0.001063600961483807, - 0.00012633105386641378, - -0.002343599447329161, - -0.002082683666438487, - 0.0006360037709290307, - -0.0002811660396331736, - 0.001224251183258506, - 0.0003475160293856512, - 0.0007068000533031835, - -0.0008770407736775661, - -0.0004343715086147099, - 0.0003888230009467231, - -0.0003822558822547912, - -0.000993386348767932, - -0.0020194107536365582, - 0.0005357837512105723, - -0.002911012433734214, - -0.0016170688065570843, - -0.0015563444228361843, - -0.0015769902117541534, - -0.0009162120754311898, - -0.0005918790502920378, - -0.0011953232530831134, - 0.0005605143204393976, - -0.0008599228503991868, - -0.0003931221946021755, - -0.0007494577128208009, - -0.00111012139510722, - -5.898112777271764e-06, - 0.0035422007670121514, - 0.0009476275023654472, - -0.0012487935326615305, - 0.0006294533375358118, - -0.0006995028837772912, - 0.000855823258021239, - 0.0003205436861839593, - -0.0013439864973206995, - 0.000365240145841325, - 0.00022743560677479085, - 0.00017470634345791307, - -0.0014719457671304443, - 0.0007722844576927412, - 0.0001764845612196122, - 2.5442129892154085e-05, - 0.00043202430044732515, - 0.0010665957806917912, - 0.00018668709153743144, - -0.00041686990763140053, - 0.0010791269155337822, - -0.000333173099401764, - -0.000719634171831092, - 0.0005186291409645239, - 0.0005057541853220684, - -0.0008473844104167033, - 0.0014065152861109339, - -0.000548642700080185, - 0.0023109465980042463, - -0.0009378864569380572, - -0.0006935437258549359, - 0.0008520623414247158, - -0.0008423670526673636, - -0.0006188159179610974, - -0.0009467037945128585, - -0.0019206018579787096, - -0.0010842532759778208, - 0.00031477855063928215, - -0.0005300252706276011, - 2.783526984907933e-05, - 0.00022826929204834606, - -0.0006175227085129718, - -0.0010913035338271434, - 0.001065618670333013, - -0.0005955671070965918, - -0.0008315605394007454, - -0.001714487576308789, - -0.0003748408382780242, - -0.00038451417496312046, - -0.0005963807284135246, - 0.001212466695725966, - -0.0005170384099724883, - -0.0021417653168325666, - -0.0011474931212809602, - 0.0013240041013663495, - -3.8787213664371006e-05, - 0.0009414633779417857, - -0.0002307923843382866, - 0.00038612641506054744, - 0.0008244236148472269, - -0.0005223650957435268, - 0.0006707153484019655, - -0.0007715769176576111, - 0.0006037031024516172, - 0.00044884206705970265, - 7.137968964199649e-05, - 0.0016582487930403708, - -0.0012225760060134109, - 0.0014555907848599094, - -0.00021666719000300246, - -0.0014219642997711347, - -0.00018034319311363017, - 0.0008245157682404528, - 0.0013382272792405489, - -0.0012178863080609646, - -5.137089444807403e-05, - -0.0013303756253474244, - -0.00035157571221675906, - -0.0002286943088461679, - 0.00023186601960840329, - 0.001035470106964414, - 0.001020298726690383, - -0.0021723382115726463, - -0.0003938075092432584, - -2.266212068179527e-05, - 0.00114642209688495, - -2.35852901151092e-05, - 8.161168843515627e-05, - -0.0005952892297162325, - 0.00012655156425028812, - -0.0004919090161970985, - -0.00018813631039281777, - -0.0005873190354269569, - -0.0018877701393794732, - -0.00012407007086853844, - 0.000554667812846068, - -4.4326410199528155e-05, - 0.0010752504775920315, - -0.0016469066597938884, - 0.0006445704538974419, - 0.0007795504106198557, - 0.0011774583806958678, - 0.0010358949582659357, - -0.0006121488903080726, - 0.0001212713596521115, - 0.0008679544129527769, - -0.00033319667384300474, - 0.0010731407700463264, - 0.0003499241233224939, - 0.00031673572744905294, - 0.0005300713962859494, - -0.0017136707190596723, - 0.0014311890970794719, - 0.0007628118421898396, - 0.0006615868791637344, - 0.0002688338455092237, - -0.00016114330595114914, - 0.00019709200819086054, - 0.0003327065371010457, - -0.000814737962036055, - -0.00062421946106519, - -6.719114671205505e-05, - 0.00019623180200003227, - 0.0002664774506508726, - -0.00016604675625265562, - -0.0010873026586098499, - -0.0007592967846395574, - -0.0006906243373310912, - 0.0003260281593502313, - 3.0217232714399528e-05, - 0.0005963578220192446, - -0.0002470328639291143, - 0.00048531635557954363, - -0.001153204200063859, - -0.0005006204611586649, - 0.0006664097768193643, - 0.00032712869765003035, - -0.0010700205393335013, - 0.0014534232085966128, - -0.0004478711293649646, - -0.0009484947538087433, - -0.00038113483790741065, - 0.00010213597738686202, - 0.00027636023461368185, - -0.0025303660548717925, - -0.0005223207236732299, - 0.001206992060227668, - -6.613956821078208e-05, - -0.00030371652882549657, - -6.390443658009585e-05, - 0.000582720513456561, - -0.0009364651692644022, - 0.0007326345167447062, - -0.0016994709437195919, - -3.170296067324137e-05, - 3.5017595233803118e-06, - -0.0011126359598553459, - 0.0006656235211167638, - 0.0007478719340118298, - -0.001866863018126851, - -0.00033742262990643727, - 0.0005511471020748174, - 0.0004729035282319602, - 8.898412382027742e-05, - 0.000411246740217658, - 1.885418884576093e-05, - 0.0006669920290011137, - 0.00034995697059108874, - -2.253722184389915e-05, - -0.0005485471742502213, - -7.709598383473598e-05, - 0.0003663154306885707, - -0.001255475568262609, - 0.00020896658366221293, - 0.0008065008250941468, - -0.0011425001433814591, - -0.00033589345378667526, - 0.0013547918949819511, - -0.0002929320388013729, - 0.0003411724213304036, - -0.0010749859218644197, - -0.001310362802522499, - 0.0017807008909497117, - -0.0002511610760394316, - 0.0006178431109671789, - 0.0016915149059616409, - 0.0016741548946791907, - -0.0007392536051671045, - 0.0011810944082827379, - 0.00024127985602289404, - -0.0005680592282323782, - 9.575135902640064e-05, - -0.0004196876764414938, - 0.0013189361278944248, - 0.0017270727086587106, - 0.0011179346859670578, - -0.0007516760482670026, - -0.0021437150484349605, - -0.0029223206367818234, - 0.0011809639630113256, - 0.0010808138085992985, - -0.002082912751766748, - 0.0017845749240998111, - 0.0008287330252159776, - -9.406571178897218e-05, - 0.0010996149985667458, - -0.0009011730461825852, - -0.0009152457937238982, - 0.0002850321578312071, - 0.0007308841281437219, - 0.0005012801041448546, - -0.000999952834509625, - -0.0013806630401753674, - 0.0010928356732245288, - -0.0006389272037987038, - 0.0006817684888949976, - -0.00012588319114115767, - -0.0010021835188818906, - 0.0014549293965708295, - 0.0009066369797943553, - -0.0001570461472848086, - -0.0009085948286405866, - 0.0009962740514062062, - 0.0005451694382410784, - 0.00123047886098377, - 0.0005275069264500518, - 0.0011132117543538858, - 0.0005960841478596676, - 0.0004428320704815466, - -3.996372630858914e-05, - 0.00022954508174240364, - 0.0007916220304607185, - 0.00159535662943411, - -0.0003187704537475713, - 0.000519268591655902, - -0.0008635969595575264, - -3.721424566214258e-06, - 0.002398523076143591, - -0.0010683378750533585, - -0.0004673466783922786, - -0.00030486795846337194, - -0.0032330079832658307, - 0.000295642130445215, - 0.0006040828969539611, - 0.00013380705429148835, - 0.00013661941137656718, - 0.0003504328477420739, - -0.00035967072086235004, - -0.0002575274401190704, - -0.0019999401819952543, - -0.0009857388296214229, - -0.0011535969462931896, - -0.00026340113836352547, - -0.0006992409885086626, - -0.00140977060113016, - 0.0007441080502916683, - 0.0003310247544200444, - -6.55503010259585e-05, - 0.002638947297089823, - -0.0008680677512878721, - 0.0006640167797764707, - 0.0006521331954376349, - -0.0011232856632296894, - -0.001407305035230953, - -0.0009208520672763145, - 0.0010143782899501457, - 0.00025661222886842955, - -0.0019213931568669922, - 0.00046588477050940814, - 0.00037979692014511804, - -0.001178494704727536, - -0.0007426720749451897, - 0.00035244729589521364, - 0.0009148328875129036, - 0.0006475392271107265, - -0.0011088489359737266, - 0.0007979278200797045, - -0.0015359853994207089, - -0.0008319739727559577, - -0.0003857061151385044, - 0.0003424252171432842, - -0.00020798211177086795, - 0.0005821114000255751, - -0.0006752087708052583, - -0.0004685670253176094, - -0.00042060288889455346, - 0.0015032397052025782, - -0.00021591443460466944, - 0.00026227822490864597, - -0.0004993570008078628, - 0.0007206259438005208, - 0.0019629137229960534, - -0.001322130188576797, - -0.0013506977797525489, - 0.0008999064879338775, - -0.0006930063016921635, - -0.00032807071319863385, - -3.724547690228119e-05, - 0.0015277130680854106, - 0.0007320595931487144, - -0.0004524584614943479, - -0.0007111963437842468, - -0.0007693400113246525, - -0.00031560528479501846, - 0.0016795515461713166, - -0.0035369860326698774, - 0.001634580213117284, - 0.001691961644841958, - -0.0003883967475599598, - 0.0012720312740341368, - -0.0016028435419697651, - -0.00035996247780623714, - -0.0003272691522820384, - 0.0003336783903004546, - 0.00019656037080421996, - -0.0006105519723773964, - 0.0002982808359413793, - -0.00032691078222181675, - 0.0006467168324483273, - -0.00026392120330017386, - 0.00011041064570940353, - 8.448895330610232e-05, - -0.00031357011072842745, - -0.00033562951889145476, - 0.00010553930364784806, - -0.0006966633451033236, - 0.00015067333878440557, - -0.0003331678422529707, - 0.0010983017224869018, - 0.0012285428978690632, - -0.0009983525308654986, - -0.0009476267055474691, - 0.000266347220014817, - 0.00156919426101508, - 0.00043587459383136255, - 2.6657326137083444e-05, - 0.0007679596063732189, - -0.0003582788216934352, - -0.0012651787142096713, - -0.0023636259901191167, - 0.0009000993201349861, - -0.0012573050982631186, - 0.00016487774064207617, - 0.0007183775527685425, - -0.0014596324867913347, - 0.0001439315850485988, - 0.0007777405654151467, - 0.0012150047729006257, - -0.00047046146322168956, - 0.0002611072069032055, - 0.0005485958990610743, - -0.0010381162134582556, - 0.00033847638372658034, - 0.00037385015634496964, - -0.00039130532239593763, - -0.0005125706629553018, - -0.0019021759752171287, - 0.000422126501991074, - 0.0013189866813687822, - -0.0007878544311154853, - 0.0006116025363653018, - -0.0006341655179368497, - -0.0002561770109954604, - 0.0004538214504272212, - 6.661551612557922e-05, - 0.0011432482269402365, - -0.0012604753630508386, - -0.0016474179630384528, - 0.0001603260641947138, - -0.0001893845330141064, - 4.799991962797949e-05, - -0.00041351664395761407, - -0.0003061387912563817, - -7.859516446087251e-05, - 0.00030632029538249744, - -0.0006939191219247784, - 0.0011192180723698303, - -0.00014091254933462904, - -0.0005176751210278609, - 0.0014402604901214125, - 0.0021375074753001203, - 6.689575108868623e-05, - 0.0007279834918209673, - -0.0008277274100100897, - 0.0003430810892325677, - 0.0004596498655881797, - 0.0009376107225524442, - 0.001221962828470341, - 0.0001637869573184842, - 0.00035434225236977764, - 0.00032647587295909255, - 0.0004424573908621379, - -0.0009781961086975529, - 0.0011405263134305528, - -0.0008125821704024521, - 0.0011592552118091144, - 0.0003283017476317557, - -0.0017678696184089085, - 0.0005341842337016609, - 0.00038802078949537575, - 0.00040399158867312444, - 0.0006063374849346458, - -0.0003332215795153476, - -0.00031125019761356733, - 0.0013200472757272609, - -0.0002632532114549716, - 0.001954197403902229, - 0.0008247988825105892, - 5.793727940223237e-05, - -0.00149770204361208, - -0.000600439027803505, - -0.0017080316528288043, - 0.0009836663638405781, - 0.00010717600248141628, - -0.00031450948494237785, - -0.0004268553375812572, - 0.0002652914669892009, - 0.00010122194528859039, - 0.0020917618133662374, - -0.00028543932021537946, - -0.00044271594546916714, - 0.0010416379801776116, - -0.00012853305872950158, - 0.0003815434382546712, - -0.001018505261528692, - 0.0008930224270012574, - 0.0037461600660538643, - -0.0001750920366830304, - 0.00037080667566637, - 0.00045284217104759705, - 0.0006842400587289538, - 0.0013320851393038432, - -0.0004589379898874274, - -0.003355507326809006, - -0.0022512833982866994, - 0.0005181862120003484, - 5.5537144973192936e-06, - 0.00013984410482469536, - 0.0010073895982000832, - -0.0003822315506225614, - -0.0012538448795482678, - -0.0010794263111983241, - -0.00037999569342966384, - -1.4740218276441278e-05, - 0.0012278842001350282, - -0.00039781301143004897, - -0.001655322071887964, - 0.00011012541394520989, - 0.0007856754231249778, - -0.0008592354085253508, - 0.001175264446851405, - -0.0024274024761671833, - 0.0003102391873736355, - -0.0013323128302122425, - 0.0005246140752052339, - -0.0005455364622472343, - -8.66562797261922e-05, - -0.0001639059071995659, - 0.0024424696648794285, - -0.0005762148698909832, - -0.0014936558150795147, - -0.0004669444134278518, - 0.0004954160394841183, - 0.0003535657282127433, - -0.00045648713214178243, - -0.0007889258418415782, - 0.0006442317198257458, - -0.0002842958766205202, - -0.00014706636226001078, - -4.353043598147094e-05, - 0.002260445247744689, - -0.0005464889647028946, - 0.00013632426267576214, - 0.000759069166972365, - -0.0003075453034012938, - -0.00041636130737988713, - 0.001193054014148553, - 1.3923184906987815e-05, - 0.0016611090395108343, - -0.00018921455792321836, - -0.00011809674341815152, - -0.0022986228796692556, - 0.00029023861888239586, - -5.336699603369001e-05, - 0.0015803800842614643, - 0.0012918666087414824, - -0.0009604794300063645, - 0.0013397630760727916, - -0.0004853173024374224, - -0.0011580379439667433, - -0.0009711386622074095, - 6.961379648142241e-05, - -0.00046469404445930774, - -0.0006385354903714772, - 0.0010118469811028366, - -0.001131430569337877, - -0.0012913868716924795, - 0.0008469704456183046, - 0.0005093465328938946, - -0.00038349617359934084, - -0.000889079260216298, - 0.00015432573651774992, - -0.0017644979596542715, - 0.00030303436211040003, - -0.0016397583545307967, - -9.6429342768009e-05, - 0.000983269349927758, - 0.0010527595102537946, - -0.0006040123229908015, - -9.905637627426967e-05, - -0.0006105420345654572, - -0.0009311116997096486, - -0.00011919784283248813, - -0.00025494823987904383, - -0.0004470432751406579, - 0.000456384892635661, - -0.00019146974435193956, - -0.0019703621989907243, - -0.0005486696617090406, - -0.00031936313574793825, - -0.002537017809638198, - 0.001507184488647017, - 0.00023319514650509525, - 0.0002431374546048892, - 4.2251428499835494e-05, - -0.0005900772436104839, - -0.0008637766497201027, - -0.0001297733624990393, - -0.0005475766576336602, - 0.00020206115572609734, - 1.3609761410281353e-05, - -0.002109651900216476, - 0.0010259569297857405, - 0.0007662976240661819, - -0.00044055344678645207, - 0.001040373424341014, - -0.00038495517247920375, - -0.0011062304622439427, - 9.269966007447795e-05, - -0.0004076433867492888, - 2.7031570156424304e-05, - 0.001211942683815763, - 0.0010923890962854517, - 0.00040279592722407666, - 0.0002613686539585081, - -0.00016393914864867523, - 0.0007232227449645376, - 0.00010103419238298574, - -0.0006545993799637784, - 0.0014591606746762915, - 0.00010445519625752926, - -0.0011184258247982203, - 0.0008970711673504655, - -0.0012743679008390503, - -0.0004905905269659158, - 0.00032898282766123075, - 0.0004780428078451813, - -0.000713905703398433, - 0.0011015463426088865, - -0.00043442819831541254, - 0.0005603759017289685, - 0.0007162207218599233, - -0.0008009606454275961, - -0.00012868578904904108, - -0.00037306879301151306, - 0.00045328244314980597, - 0.0004657391437685617, - -0.0003519426730922869, - -0.00040461845190072786, - -0.0015660053423261126, - -0.0005542096092325536, - 0.0013750564505314658, - 0.0004331969847871111, - 0.00032849328883141307, - 0.0009802026311597897, - 0.0013861161475754215, - -5.455863180479244e-05, - 0.00030059278281525877, - 0.0004290078172985336, - 0.0002323895159753583, - -0.0005879552560517864, - -0.000335738548445782, - -0.0006965752055936106, - -0.0002846978869100832, - 0.0005894054519634782, - 0.00010201926016769892, - 0.0002636850477940534, - -0.0014144482445750894, - 0.00018833330363494786, - -0.000256043938635182, - -0.001994055898461129, - -0.0005022682906933017, - -0.00012750356360906353, - 0.00043969629071227375, - -0.0010065153329152164, - -0.0014848422660349936, - 0.0007103471317960819, - 0.001395167912176152, - 0.0012632671913906134, - 0.0002790451228742056, - -0.00028704350947258, - 0.0012520560922648519, - 0.0003602087460790615, - -0.0011328734981755017, - -0.0019321236003410145, - -0.0005082939431077308, - -0.00030290423553761166, - -0.0015874546845470793, - 0.0005728954425412373, - 0.0007071705761719296, - 0.00014203381848731738, - 0.0006828117637631351, - 0.00027260180937288124, - -0.0007019257603835499, - -0.0006232630801593039, - 0.0004472040679914996, - 0.0016138173948071486, - -0.0014236022842988897, - 0.0010018051486199895, - -0.0015968967213557223, - 8.82960630871843e-05, - -0.0006811710843155816, - -0.001924300949055567, - -0.0006369226680089443, - -0.00012611458779457786, - 0.0009420890781714963, - -0.0007272201565654175, - -0.001173784742116088, - -0.0008157057410594224, - 0.0008737521300444885, - 0.0003066504950512141, - -0.0014725894641075782, - -3.9999477322966445e-05, - -0.0014165502827496682, - -0.0006405056204220425, - 0.0011591815147022684, - 0.00023891758067360832, - 1.4946538363850159e-05, - -0.0016514268527117932, - -0.0023888258974317047, - -0.0005837675273178713, - -0.00015727418444824287, - -0.00022281500263700798, - 0.0008969376710875734, - -0.0010309113305451763, - 0.00027428385908578076, - 0.0011305799838339306, - 2.912718453769835e-06, - -0.00023872021852227432, - 4.443169739715903e-05, - 9.824988245393663e-05, - 0.0005293288317334587, - -0.0015000660451510513, - -0.0007588384700667409, - -0.0003170801685256561, - -0.0017033729153955084, - -0.0002676249201055363, - -0.001019636053221109, - -2.4170191097250333e-05, - -0.000698276067000585, - -0.0005731000312922935, - 0.0012577113697435978, - -0.0020195884849629414, - 0.0006025286611919327, - 0.0007764936011257414, - -2.3988343434667178e-05, - 0.0008332305908724942, - 0.00035166642830153263, - 0.001626921606031914, - 0.0004122432471701007, - 0.0002873420273614081, - 0.0019738574000820303, - 0.0002818967378226958, - -5.307070900448696e-05, - 0.0007284990718963735, - 0.0017815504483176415, - -0.00097582923528872, - 0.0008852231950764047, - -8.887922500428556e-05, - 0.0006599071355168132, - -0.0007185955705893803, - 0.001876728333248415, - -1.6669575718483736e-06, - 0.00037235048850849404, - -0.0015441462082950274, - -0.001330529520760666, - -0.0003189678207130931, - 0.0016545523466544177, - 0.0006924608433523576, - -0.00036071804656274324, - -0.000995172382567184, - 0.0007235228462470531, - -0.00043516909151721677, - -0.00016005961950106814, - -0.0002805016105580159, - 0.00015503370462487356, - -0.0010568028938595327, - 0.0002489640136303887, - 0.0006374236051045036, - -0.000853365168806077, - 9.647483724096074e-05, - 0.0018031637904824683, - -0.00025022757283944504, - -2.690753614171714e-05, - -0.0003724869578789001, - -0.0016915804942099846, - -0.0009321221862495551, - 0.00033408677815103025, - -0.001813956318659664, - -0.001959686456821611, - 0.0005179510507306106, - 0.000965953778024409, - -0.0018270005719466028, - 0.0001642940862728893, - -0.000902178771319691, - 5.4668896151752265e-05, - -0.0006585117080188745, - 1.0686821211831893e-05, - -0.0008572746406212352, - -6.365416145195372e-05, - -0.0018072333454768, - 0.0003083527897038205, - 0.0003894914814364947, - 0.0007073591563056009, - -0.0007501086935285541, - -0.0002609229169625354, - -1.4835273233632567e-05, - 0.0005740728197414814, - 0.002077697842838812, - 0.0012203704040703101, - -0.00025230731479087426, - 7.1187993533351735e-06, - -0.000751743691629907, - 0.0003024585421054673, - 0.00044278348569028804, - -0.0007216678074421343, - 0.0003445807188183718, - 3.965415852581499e-05, - 0.0003267273604271273, - -0.0009953979712680014, - -0.0006971643906352648, - -0.0007314834257055148, - 0.0007892938269904767, - 0.00023537923028700667, - -0.000704674370920875, - -0.0005562161557151552, - -0.001330150794465287, - -0.0008488348827584847, - 0.0015768963302527897, - -0.0003838943430412023, - 3.611263931999234e-05, - -0.0001260424763000191, - 0.0017582857508070162, - 0.001071168663333574, - -0.0015261726152582939, - 0.00033703775004307, - 0.0001612404181029848, - -0.0007867119902440749, - -0.00010373067417347048, - 0.0005388929955048158, - -0.0002500250276929538, - 0.0005598393569517635, - 0.0001873889557930239, - 0.000447866712015982, - 0.00032874803980375504, - 0.001789567955440124, - -0.0010400848181370973, - 0.0006531295981980971, - -0.0016729612143603194, - 0.00039716815898635104, - -0.001098277477818257, - 4.8004111882857894e-05, - 0.0011745661299262984, - 0.0006399002228892056, - -0.0016341393754232608, - -0.001306117633136951, - -0.0004648921061139214, - 0.0006286305566295303, - 0.0031727735695123824, - 0.0007587445975422176, - 0.0007410942592693386, - 0.00019719280324311005, - -0.0009721044614893103, - -0.0014471192209551894, - 0.0009020049063068945, - -0.00048817314438659735, - 0.0016514438869164854, - -0.0025541281707809225, - -0.0006055022906130284, - 0.00019063046169014427, - 2.81125864648669e-05, - 0.0008200280329799085, - -0.0011246953946596524, - -0.0007966921587427032, - -3.324047831105439e-05, - -0.0008353476548316341, - 0.0006949719724906518, - 0.0002516673021725742, - -0.0010506907961213635, - 0.0008895218677068831, - -0.0004386753012703439, - -0.00015910683644254715, - 0.0007180978657044953, - -0.00031866256401943336, - -0.0007293874740831913, - 0.0003770054192870846, - 0.002547156230695377, - 0.0017419642564596874, - -0.0009870312243733862, - 0.0005641442941789649, - 0.0014526826279348108, - 1.4468795637402341e-06, - 0.0011623108081206877, - 0.0006149992193399584, - 0.0009642544343278944, - 0.0010163807087535887, - -0.0008365427601332698, - -0.0005877125621158661, - -0.00022384486858442035, - -0.001303595926012986, - 0.001619532746114095, - -0.00034600267311039434, - 0.000867498054589249, - -0.000522107194959992, - 0.0007617948291518375, - 0.0003557980722421122, - -0.0014057984533157935, - 0.0002447609302420466, - 0.0008120368267197639, - -0.0008580093772690194, - -3.75763294096475e-05, - -2.80583919367345e-05, - 0.00033008983783906943, - 0.0010103872539010304, - 0.00011789098944362097, - -0.00013457370218809497, - 0.000961028890351726, - -0.00024758542331453526, - 0.00020762218586999157, - -0.0005542545304559909, - 0.0010809288609173677, - -0.0010364077673805036, - -0.000893236024200162, - 0.0005284828596615792, - 0.0005617977224637446, - -0.0006124188074343136, - -0.00028782117954886087, - 0.0009521512706990542, - 0.001116643868585938, - 0.00030967045116280347, - 0.0011047297776586907, - -0.0009364725121086886, - 0.0005880802926890266, - -0.0005824815481756558, - 6.240920732332302e-05, - 5.258567347245372e-06, - -0.0011677844375703077, - -0.0008542514114272211, - -0.0006227895689829041, - -0.0012652039952201126, - -0.0010724705290043458, - 0.0001478368258170029, - -0.0005496296275690209, - 0.0024810237919678335, - 0.001481469335885232, - -0.0015287664519309176, - 0.0008932598255385408, - -0.0006593238645745055, - -4.9962671545459534e-05, - -0.001448908511882577, - -0.0007170074001757937, - 0.0008571007191241069, - -0.0015819478077406432, - -0.00035056502478729055, - 0.0005737007786529236, - -0.0021758453546395274, - 0.0015556794190314015, - -0.0016060759161292642, - 0.0004143787301738753, - 0.0010440157519906038, - -0.002665158520197707, - 0.0009533266131541892, - 0.002772532254348607, - -0.0014585495492420082, - -0.0001904112621321398, - -0.001434124481085377, - -0.0019770492863622775, - -0.00025316981373132356, - -0.0010909097029942571, - 0.00021243419663101042, - -0.0010702134197809463, - 0.0007537863743975452, - -0.00020563354117201198, - 0.0014851946684146476, - 0.000256982796860948, - -0.002403046133681582, - 0.0010300756333014155, - 0.0023526001003678354, - 0.001960682854224633, - 0.0002496200738676397, - -0.0007877185889363118, - -0.0007634497425333959, - 0.0003959417070802775, - -0.0014869655329087233, - -0.0006567763135808856, - -0.0018466138692343206, - 0.0005112049082698658, - -0.00022145847692509274, - -0.00012293869644261217, - 0.00029359626404022087, - -0.0013563126368588262, - 0.0012871505847472974, - 0.002380433164408898, - -0.001091663799005, - 0.0012845931920368275, - -0.0004025439098423579, - 0.0019385144504410776, - 0.0006594072267624246, - 0.00018481030418081626, - 0.001013506700027407, - 0.0001658138782409508, - 0.0019390661884301757, - -0.0006854029114524664, - -0.000505208086194094, - -0.0006162261322101594, - 0.0007315095396016244, - -0.00011916415149292946, - -0.0014114472032291225, - -5.624011320305899e-05, - 9.484413501425137e-06, - 8.797034237295681e-05, - 0.0002344473853369159, - -0.0012688165661441366, - -0.0008339152792872977, - -0.00013716502134772658, - 1.448200842215224e-05, - 2.4556626861001597e-05, - 0.0004102329682189159, - -5.0772848268931206e-05, - 0.0006679450936362935, - 0.00044268369120851325, - 0.000906981686990175, - -0.0001815520391751198, - -0.0014370618552912854, - -0.0023748595386895326, - -0.0004699730469347708, - 0.00041912283127308977, - 0.0004801871677066957, - -0.0005175813675389903, - -0.001776530047914468, - -0.0002962333005998304, - -0.0005385018052123836, - -0.0016907958673039137, - -0.0008205600941354202, - 0.0002771563893219728, - -0.0001803125116029841, - 0.0011680118215806354, - 0.001672988991982122, - 8.19614009055548e-05, - 0.0008890022034468664, - 2.1457720219397994e-05, - 0.00031392053119959264, - -0.0016315182898970968, - -0.0016543764469773151, - 0.0013076141408030046, - -0.001637809697334801, - 0.0016122544782497781, - 0.0014219906569143332, - -4.084994332607433e-05, - -0.00015728093934794192, - 0.0018241794585491331, - -0.00045058448440066874, - 0.0005566819099668585, - 0.0005207760845236255, - -0.0001319243611849681, - -0.00020192939067732453, - 0.0009672724481229011, - -0.0003664095146629166, - -0.0001536168043625131, - 0.0005162969179861717, - 0.0006017021693697598, - -0.0015580016971622544, - 0.0009798667031883565, - 0.0005910733445300461, - -0.00010104819336304431, - -0.001158515946783768, - 0.00023604300258502498, - 0.0012610307936557793, - 0.0015426617211115057, - 0.00018256979283765766, - -0.0008472144368345928, - -0.0003429253321656165, - 0.0013157830989619437, - -0.000374440466882313, - 0.0006923686667196066, - -0.0010885750168397874, - -0.0014178805603492514, - -0.001141275498422987, - 0.0011464895016500473, - 0.00023613360562621045, - -0.0014251331124846647, - -0.001474516828667751, - 0.0004092469248811746, - 0.00024005966166633938, - -0.0010902708981049268, - -0.0005344666598894138, - 0.0001491119877781404, - 0.001658364100021527, - -0.001186595448475922, - 0.0006468691388529613, - -0.0006737320784718535, - -2.3292465239387644e-05, - 0.0005813275875006548, - 0.0006832838013035567, - 0.0003639069340991734, - -4.712799098345064e-05, - 2.698460468939152e-05, - -0.0004049997983958916, - -0.0005484434377935604, - 0.0022137561066784893, - 0.00012375256193496745, - -0.0016372371477768226, - -0.0006112285703965118, - -0.0002651058837194071, - 0.0005987500736116729, - 0.0010424046515384163, - -0.000784020230344142, - 0.0015861295341924487, - 0.0019481931529681442, - 2.5696214017541176e-07, - 0.0011025420577071056, - 0.0030181272028262968, - -0.00012692698808013667, - 0.00010039942965230409, - -0.0004848553458117953, - 0.0005468473717734156, - -5.792120452587164e-05, - 0.001004565241781515, - -0.001171201852923452, - 0.00031353870648016824, - -0.000142054876162477, - 0.0014364436105352423, - -0.0005942531949831742, - 0.0007383054820684372, - -0.0008258622692305238, - 0.0005074792816763258, - -0.00033228178549301273, - 0.0009476808284773026, - 0.0008630923032444637, - -0.0015487845713241437, - 0.0009500481366374247, - 0.0012225944965430164, - -0.0006554745240809801, - 0.0006345274653465379, - 0.00047850667602796236, - -0.00017387967133008602, - -8.835045582693195e-05, - 0.002150146917573786, - 0.001354302122008305, - 0.0008496316231871746, - 0.0015502891738547531, - 0.0002915702318269332, - -0.00018441747406311673, - -0.0019123177170127807, - 1.3567396967397898e-05, - -0.0006607288467805343, - 0.0002716278192331916, - 0.00019370984172820645, - -0.0017304121010248987, - -0.0007767943115912327, - -0.0007364857284229032, - -0.0001870335652011522, - 7.85244958953736e-05, - 0.0011697935149731478, - -0.00031467442542823857, - -0.0013357892554899306, - -0.0012641149836873063, - 0.0004043100496369065, - -0.0009479615510079421, - 0.00018042402435639824, - 0.0014207376357059558, - -0.0010425561811817983, - 0.0006463172839028844, - -0.0010979644389502669, - 0.000855753101040635, - -0.0018865707956130212, - -0.00028227312414865337, - 0.001547149594648159, - 0.000160735663014812, - 0.00012020454319712801, - -0.001682207070976337, - 0.0006562161702503879, - -3.1177347911130098e-06, - -0.0006255310273245945, - -0.0010671429449617647, - 2.5278894509800128e-05, - -1.6651623082980597e-06, - -0.002086322349514762, - -0.0006555476969934208, - 0.0021992529948187574, - -0.0027177453343102927, - -0.0009034430323488792, - -0.0012037910627310455, - -5.599399463343527e-06, - 0.0004749640278065876, - -0.0008172122214950942, - -0.0005999715247237702, - -0.001088669854251393, - -0.0004705311471091777, - -0.00021611472331880884, - 0.0006927827463326292, - 0.001430404669867916, - 0.00057330130486296, - -0.0008751738201584596, - 0.0004175576394620772, - -0.001900418532286306, - -0.0008103618115861961, - -0.0009793395293266835, - 0.0003539132420584908, - -0.0005777879622313562, - 0.0006141339658833766, - -0.000240336191196481, - 7.437856416085227e-05, - -0.00033755495129747536, - 0.0010620144140437052, - -0.00015760388415684168, - -0.0011831553745031145, - -0.0011925208281155521, - 0.001650145989491095, - 0.0011829895745983727, - -0.0006728379730732499, - 0.0001369460652544547, - 0.0012588764456868042, - -0.0005794532446594633, - -0.0010025049039670455, - 0.00015397654306747375, - 0.0006592667613444243, - -0.00026755243220410573, - -5.563789274422466e-05, - -0.0016470800323307552, - 0.00014623254671652735, - 0.0004348119183352214, - -0.0007454134284529246, - 0.00028991624456086015, - 0.0015473456262929863, - 0.0011257909849672425, - 0.00025281778752811695, - -0.0010111249799300654, - 0.0008911928377342726, - 0.00014456369675139042, - -0.000798559814048301, - -0.000692900125831832, - 0.00012526894298311832, - 2.4882378307213365e-05, - 0.00016611894840313682, - -0.0015274716347559885, - -8.404554262003691e-05, - -0.0009291402307032318, - -0.0010963279871902569, - -0.00030243519794928493, - -4.957543892983852e-05, - 0.001529209944125255, - 0.0001157854094981443, - -0.0005783180940223024, - 0.0002310832408460832, - 0.0010908181984174837, - -0.0010430649772189824, - 6.355122776843886e-05, - -0.00016455635111790315, - 8.381296873380344e-05, - -0.0015888791762248586, - 0.0004806976575513951, - 0.0006781498858284241, - 0.0006441444564837381, - 0.00025144286041579254, - 0.0013825259617482656, - -0.0011847188334043186, - 0.0009625860837755454, - 0.0010719022732914884, - 4.805145276874381e-05, - -0.0015704976298872404, - 0.001325397707354256, - 0.002135537016122035, - 0.0012822072868108325, - 0.0011765751888041462, - -0.0004648084441948953, - -0.0002217863918006349, - -0.0005331944681527866, - -0.0019032967467063262, - 0.00010902277013109427, - 0.001496080198656126, - 0.0016654003994523504, - 0.0002313322871801874, - -0.00022117280816378023, - 0.0013103539620758526, - -0.0005264415218833457, - -0.0005504994628791847, - 0.0002457359049764978, - -0.0006850777483362633, - -0.0001459302471127175, - 0.00040307849292898053, - -0.0011180259141148248, - 0.00023394015239622815, - 0.0012303737391716311, - -1.2149183493714074e-05, - 0.0007040303743574398, - -0.001626886170739079, - -0.0003377078942578626, - 0.00047587581597615135, - 0.00016545896903222098, - -0.00036480719594204046, - -0.0008439801638439339, - -0.0013249863289287154, - -0.0002534282328287153, - -0.0016896165320101023, - 0.0008376726428598944, - 0.001261336067440653, - 0.001936086546024351, - -0.0011210555510453553, - -1.538900725373617e-05, - -0.0020528042890322305, - -0.00014833582911947027, - -0.0008781847889501599, - -0.00037858224086783737, - 0.0017211503994519293, - -0.0008336025312035582, - 9.75311542186527e-05, - -0.0003987337425757559, - 0.00016348925133519463, - -0.0011020054022630825, - -0.000206115686633026, - 0.0008260077190342445, - 0.001350054014041434, - -0.00042633957447809094, - -3.527331926816326e-05, - 0.0005416031119649582, - -0.001138932813726988, - 0.0006423799437722455, - -7.820184499891437e-05, - -0.00015626386634799575, - 0.00013550837021683522, - -0.0009333516208465299, - -0.00010486258967385587, - 0.00031976167388316054, - 0.0007321540133987095, - 0.0016327999956257343, - 0.000562150998990523, - 0.0001089862789755358, - -0.00012730588998917383, - -0.00016222464592100487, - -0.0004592538336560184, - -0.0005926329148154975, - -0.00034355038784010587, - -0.0015805624388261638, - -4.245636787448969e-05, - -1.4659393635466084e-05, - 0.0014518953416300898, - -0.002439218322765055, - -1.949140508686804e-05, - 0.0010670055644881732, - 0.0008159990650206499, - -0.0018268444841171559, - 0.0010960307253002782, - 0.001206237705011351, - 0.0001808746163074575, - -2.398782464250953e-05, - -0.0002163490000896907, - -0.0007345722932271609, - -0.0011035336246805376, - -0.0001559287681544979, - -0.0015386580276604655, - -0.0006158288727749718, - -0.0009854396632202162, - -0.00048277563258059, - -0.0009721697435214294, - 0.0003094329995047272, - -0.0014774435994053387, - -0.0025109721790843756, - 0.00025328685619526435, - -0.00028684250015814655, - 0.0005805831845094999, - -0.00028537842506869924, - 0.0022353438056218703, - -0.0011536670434838193, - 0.0016600640711300699, - 0.0017758653843128833, - -0.0011115122105932243, - 0.00010275026814756332, - -0.0004230369432695475, - -0.0007610805602586127, - -0.0004406665623422719, - -0.0003622162662930237, - -0.0009246368403840884, - 0.0016052124943075105, - -0.0006539949529824238, - 0.00010914501197928367, - 0.00163438645157222, - -0.0016270217165128777, - -0.0008197991619707772, - 0.0007467312266886071, - 0.000982649833951593, - 0.0012435991019419475, - -0.0003760730666740471, - 0.00028418376674390104, - 0.000894966668055774, - 0.000490842847977702, - -0.0016119257162850664, - 0.0018079609159422484, - -0.0006060055658303217, - 0.002344851066166329, - -0.00018830211178596373, - -0.00042505402748014003, - 0.0006353976517289774, - -0.0017198416789581538, - 0.0005036407058540301, - 0.0008324323619922341, - 0.0004981649073855974, - 0.0009154144578296057, - 0.0005691328670518681, - -0.0016045560026134644, - 0.0005548258496218266, - -0.0007402750364893461, - 3.977293448849753e-05, - 4.151803148333948e-05, - 0.0008829214536642902, - -0.0010077972230612864, - -0.0005577121515379509, - 0.0018530937916659703, - 0.0012436038766820581, - -0.0013097008238032821, - 0.0004735359244929781, - 0.001746009741895817, - 0.0013191201892887308, - -0.0005857259318531701, - 0.0016787857480206755, - -0.000603212030510093, - -0.0003972809179191779, - 0.0011730828595175986, - 0.00010279595412288143, - 0.0007819259975634963, - 0.0014224134496718726, - -0.0016672334015267092, - -0.0011448374535940745, - 9.700236040593373e-05, - -0.0007246128631048685, - -0.0025255237075374262, - 0.000877843192368149, - 0.001605260881246336, - 0.0007706980226788243, - -0.0018140039265401007, - 0.0005454436786870319, - -0.0015827145037246274, - 0.00015323869599896217, - 0.0005455777638543308, - 0.0025793356546270096, - -0.0018511916088023263, - -0.0010349395369841836, - -0.0001517005824073916, - 0.00047977443469415066, - 0.0005413637955355438, - -3.274666864007506e-05, - -0.0010332295944850533, - -0.00018808174608791076, - -0.00014849089474385603, - -0.0016336550638849374, - 0.0007864824015099038, - -0.0020825091868988416, - 0.0003670030816663319, - -0.000609193034546759, - -0.0009790506165998298, - -0.0016277701331310025, - 0.0014930151339894106, - 0.0007590103218115521, - 0.00040413933314130407, - -0.0022708177337032657, - -0.00011133174885162724, - 3.719965662469476e-05, - 0.0011992970482043314, - -0.0010661050457607124, - 0.0017214962998457622, - -0.0001645677966585647, - -0.0004141198785175022, - 0.0013545251182772822, - -0.0014635884974343327, - 0.001074524457340383, - 0.0013036949364758474, - -0.0018982055743139376, - 0.0005630343457266964, - -0.001036549985527638, - -0.0003457276917093368, - -0.001319373276484906, - -0.0015100260621323468, - -0.0006233875700632095, - -0.0005723297904912169, - 0.0017425948210509532, - -0.00010085990838268403, - 0.000868737471770221, - 0.003293644161033569, - 0.00101203005798917, - 0.0005058275680575152, - -0.000620440360422692, - -0.000833714339404004, - -0.0006566300739805024, - -0.0004263878151687804, - 0.0001663947146034304, - 0.0002244152785197859, - -0.000160134897238329, - 0.00013286746294610964, - -0.0009905574952668611, - 0.0007331100107058365, - -0.0006378707956737736, - -0.0007387578157324465, - 0.0011633230487730938, - 0.0005867795526364373, - -2.4401127545975015e-05, - 8.574377080285737e-05, - -0.0010235170969227518, - -0.0003179135483097467, - 0.001643733899753187, - 0.00125157144796705, - -0.0002648916642199934, - -5.625650538512597e-05, - 0.0006592771697221224, - 0.00041871947448766353, - 0.0007353923274521356, - 0.0017432273074172806, - 1.4875597407173612e-05, - 3.968835092698253e-05, - 0.001044996196247387, - -0.002153218382971864, - -0.0013324983566032648, - 0.0010228743602764285, - 0.0015875256981478633, - -0.0014621773889153906, - -0.00040730604078863703, - 0.002986443007961602, - 0.001119672297917992, - 0.00015170797671242915, - 0.0008303780036627607, - 0.0011281155809507535, - -0.0008304923497289497, - 0.0016320220685730742, - -0.0009782680768167617, - -7.75856867746698e-05, - 0.0014190676438314604, - 0.00028880509549744973, - -0.0014632544855500136, - -0.0005208236543235981, - 0.0013040173696224958, - -0.00023937377893608948, - -0.0015735963710755978, - 0.0016734949518057841, - -0.0019001219615450173, - 0.0009469972740205879, - -0.0007302199596468209, - -0.0015877470181261794, - -0.001010501469079768, - -0.0013693235082568565, - -0.0004549403951140949, - 0.00040875768102941054, - 0.0012646454975974006, - -0.0009807116347805578, - 0.001998200096808863, - -0.0005653003926473382, - -0.0016837446649114898, - -0.0005466410034001785, - 0.0005833586775608557, - 0.0017328720277730812, - 0.002078825275230735, - -0.0010395247360338994, - 8.272661036229335e-05, - -0.0005770990655927649, - 0.00023253562943239425, - -0.0007591832094936029, - -0.0024401356586443916, - 5.926672712361886e-05, - -0.0004814029907938116, - 0.0005414047595165707, - -0.0007280244422834166, - -8.548497521454685e-07, - 1.0107094671994545e-05, - -0.0010563947567406146, - -0.001038981068564002, - -0.0002619774316245837, - 1.3097756778472916e-05, - 0.0004884716945360798, - -0.0010114309959833557, - -0.0006580753281660647, - 0.0006613378469469018, - 0.0005867301944289969, - -0.0008073850146476702, - 0.0022643642273210683, - 0.0004749215886636004, - 0.0011812749128962028, - -0.0007839089284766292, - -0.001715848207301751, - 0.002110375467053945, - -0.00152490264785653, - 0.00233738831200478, - 0.00034254371106183626, - 0.0006809616491187205, - 0.00018497659085751575, - -0.0005993143293241138, - 0.0012131373405850163, - -0.0004026678820253278, - 0.001134521503903058, - -0.000971119735218645, - 0.0010403271181125022, - 0.0013911376184881047, - -0.0003060981802103165, - 0.0012300593828351765, - -0.0016268184720338059, - -0.00012048264857498274, - 0.0009011282963333893, - 0.00045914741596239823, - 4.38515896317539e-05, - 0.00024529873497346183, - 0.0017297456026739277, - 0.001095679029835278, - 0.0011604619420280127, - -0.00038965054608525905, - 0.001540311799702505, - -0.0008175430772616165, - -8.891422826438081e-05, - 0.00025021303605903564, - -0.0006359117491833918, - 0.001096137707436761, - -0.0008601278598654972, - 0.0011437976174754846, - 0.0014646561981137877, - -0.0002541816241358719, - 0.000568476591374841, - -0.00038890123743872584, - -9.276833215012215e-06, - 0.0018800406087135632, - 0.0014498728418474184, - -0.0002275906605572785, - 0.0005873495738806051, - 0.0010335955836218206, - -3.0020260299354032e-05, - -0.0011057913314036314, - -0.0011810868578207869, - -4.245984311184383e-05, - 0.0009499578352422013, - 0.0013808645938340322, - 0.0011456691165344082, - -0.0008042911811080372, - -0.0004972936192405143, - -0.0008776538681872345, - -0.0007742528412830242, - 4.1420437543337546e-05, - -0.002819719671075868, - -0.0008117222268328335, - -0.00025937198963300515, - 0.0006064209687825058, - -0.002424717769379707, - 0.0005866121192017816, - 0.001323957757963034, - 0.000643150593395662, - 0.0006219052492420551, - -0.0012050018435226287, - 0.00041770336044434723, - 0.0018760929568289483, - -7.672626401732428e-05, - -0.0006553552173918328, - 0.0006236629721372552, - 0.0014329482786429228, - 0.00039480142738968676, - -0.00029583234391163745, - 0.001700769702897795, - -0.00028890404304081444, - 0.00013646124274781539, - 0.0014378271539333466, - 0.000760738894878575, - -4.7448879366260585e-05, - 0.0004969635848222215, - 0.0005827788744074798, - -0.00021876221513694388, - -0.00027250204525048087, - -4.974020720725661e-05, - -0.0004329317959375334, - -0.00010155883600995375, - 0.0007586864706714131, - -0.0007935538005722276, - -0.00032661781150726104, - -0.000702979425677645, - -0.0004730022630207904, - -0.0011541777927499331, - -0.00041547875642293356, - 0.0006089527517880547, - -0.0012126080133031353, - 0.0019063911260771634, - 0.0006055628290092493, - -0.0006832136205085627, - 0.00024080278204937304, - 0.0007105683513681616, - 0.0009472102561870884, - 0.0002980151348107187, - -0.0007516436918409659, - 0.00233312713015607, - -0.0003386567709674158, - 0.00026124734397524096, - -0.0013622501485624841, - -6.850564984342502e-05, - 0.00019087534445678196, - -0.001565010873149167, - 0.0006752032568975682, - 6.60539026479063e-06, - -0.0015202397543301995, - -0.00022474925233306772, - 0.00013523029706856513, - -0.0017684063623060855, - -0.001051057706419662, - -0.0009934697656451771, - 0.001928545027515247, - 0.000398564987716419, - -0.0007949193209190599, - 0.0010385017438358608, - 0.0013978505342190203, - 0.0013807444234136491, - -0.0022718288177614935, - 0.0005077354017107449, - -0.0007218309965931025, - 0.0011119643356710337, - -0.0021879279948680765, - 0.0007702249923290021, - -0.0014919773437096387, - -0.0011822335036050765, - 5.8349255610363964e-05, - 0.001024617322729329, - 0.0003113520713852567, - 0.000885615749878637, - -0.0016805715732620581, - -0.00014622324068192514, - -0.001279905890132065, - 0.0009258166305100967, - -0.0009357806550536668, - 0.0018993029087495449, - 0.0003225392043505221, - 0.00040322133382025014, - 0.00019218141346129424, - 0.00014840917538423476, - 0.0007646191177538719, - -0.001816848214549391, - 0.00013339977345346558, - 0.00202777332706798, - 0.001162204188085254, - 0.0013503182442670134, - 0.0012123469103669376, - 0.001494699582252614, - -0.0016678133485567926, - -0.0005367434382036139, - 0.0016912391009687715, - -0.0007850825422330811, - 0.0007446136417464697, - 0.0007526110389498113, - -0.0006292640489350457, - -0.0007951177284280849, - -0.0004277585264377335, - -0.0004014599865443637, - -0.00042191595093972543, - 0.00042223198898399053, - -0.00020453428011895714, - -0.0003208790762834819, - 0.0018628349069599872, - -0.0008560321840962076, - 0.000448694515081657, - 0.0004901279201146958, - -0.00011230078295190134, - -0.0011722921697129999, - -0.0007800636298355707, - -5.382563603417069e-05, - -1.3726905038374563e-05, - 5.570902500243746e-05, - 0.0016971629588615413, - 0.0015008170636600393, - 0.0005512750251012554, - -0.00056540377868097, - -6.64500340275274e-05, - 8.293469005302506e-05, - 0.00013430642648793576, - 0.0003270184040422273, - -0.001889035381433925, - 0.0009264223533739211, - -0.0018045367558890669, - -0.00010963525531458354, - 0.0008447185179423906, - 0.0008007009469734468, - 0.0003419887506233467, - 0.0007872970742025662, - -0.0015895621057725243, - 0.0006801595226203007, - -0.00039782441149764875, - 0.0002860354302349893, - 0.0008091382029346587, - 0.0003790177382361049, - -0.00045057813801578574, - -0.0005042328972983368, - 0.0003580942389770401, - 0.0019623166754277896, - 0.0009220001154312892, - -0.00010606965515680011, - 0.0010731574598582903, - 4.0407596734770777e-05, - 0.0010003844737745233, - 0.0015161837781757336, - 0.0005744521786929277, - 0.00044920646153082913, - 0.00043804093064631186, - 5.5816670480912166e-05, - -0.00046656560874121694, - -0.0009894656319171173, - 0.0007854616857161167, - 0.0006988061167793521, - -0.0005934246716719783, - 6.425304552920664e-05, - 0.000738253966893278, - 0.00039640216311228607, - -0.0006329025541468999, - 0.00014193537568230893, - -0.00010737258246777088, - 0.00018589089393675938, - 0.00022185948307273937, - -0.0013727238615049262, - -0.0009309026535914773, - 0.0002681168530809502, - 0.0008000316340007529, - 0.0009145523265737229, - 7.331226825103706e-05, - 0.0013021906571761338, - -0.00032919594470420094, - 0.0012566967504777046, - 0.0013135132002258167, - 0.0007648076908530151, - 0.0015164562206999022, - 0.0006263665361965139, - -0.001510536801544088, - -0.0004071793512931338, - 0.00020701038776646435, - -0.0008324499963614032, - 0.0021935178202438215, - -0.0002462946315889376, - -0.0014729608968068685, - 0.0007444201039743261, - 0.0002674930112343863, - 0.00011479498896802627, - 1.2954720923063486e-05, - 0.0014867240392014397, - -0.0017288589350519983, - -0.0006713113555540806, - 0.0003069372713840764, - -0.0013533085062408788, - -0.0007028619389214309, - 0.0014080893030921423, - -4.312207759715159e-05, - -0.000741344345222879, - 0.0009016995226117713, - -0.0008265182003759208, - 0.0001344676180733581, - 0.0007408446784643881, - 0.0009188983083398244, - -0.0005995819284290267, - -0.001087315462514306, - 0.000849775725573821, - 6.856071319123028e-05, - 0.0006504026845715122, - -0.0004089059328373837, - -0.0007468693282559611, - -0.0005374345957068721, - 0.00010717876291961332, - -0.001176647632023005, - -0.00016855823599952393, - -0.00015849611262254675, - -0.001593799199704548, - 0.0009456118473294635, - 0.00016875977174013175, - -0.0003725553559341039, - -0.00010685010103544135, - 0.001611452367634237, - 0.0008540143730552912, - 0.0006429647052928752, - 0.0003258897132635603, - -0.0006391144323084517, - 0.000869470107354407, - 8.138855371182497e-05, - -0.00261582569799633, - 0.0003892568760202307, - 0.000598466147931222, - -8.745876291263018e-05, - -0.0015879399074488346, - -0.0010355478432587267, - 0.0002928788265258973, - 0.0006844855310369002, - 0.0005650018317093447, - 0.0009993182807189064, - 0.0006119605337098465, - -0.0004675845532471947, - -7.375605562005178e-05, - -0.0017053693064788293, - 0.00015802746126928092, - -0.0006005511712106536, - -0.00036300636904476434, - 9.030108549626522e-06, - -0.000454261735523812, - -0.0003966797420223209, - 0.0013784569369797563, - 0.0008596466745711464, - 0.0005877848233573408, - 0.0014353734588697384, - 2.5745355132155703e-05, - 6.211608116952077e-05, - -0.0006086078686390972, - -0.0008060195536855975, - 0.0005226142335539427, - 0.0006501985870180247, - -0.0016345813762771015, - 0.0007739354477548973, - 0.0001135207961486732, - -0.0006812288462300262, - -0.0009087893577617039, - -0.0006272173410591626, - 0.0008201493607163514, - 0.000472748504920887, - -0.0008989780544374056, - 0.002624613407350229, - 0.0007668791164559025, - 0.0003075060190283964, - -0.0019030516309876313, - -0.0005243143702161905, - -0.0005816701039431551, - 0.0003076886690159439, - -0.0005433460394921727, - -0.0006935816121251972, - 0.00016939821068309924, - 0.0005704892982415238, - -9.367331481854483e-05, - -0.00016962935606393655, - -0.002264333612650369, - -0.0016082319138386691, - 9.970965302561654e-05, - -0.00026619152589893886, - 0.0005410351313604791, - 7.718989031150212e-05, - -0.0003685191957595213, - 0.0011374170164063124, - 0.0010695705571530803, - -0.00038616979732759816, - 0.0013772726419430917, - -0.0008006462406124778, - -0.00041649912613095277, - 0.0017756876322803582, - 0.0002689329520571033, - 0.0009070564859672568, - -0.00034903633639572535, - -0.0009392257527651113, - -0.0007719647272393997, - -0.0005459846180066178, - -0.002400044012995811, - -0.00016922984321116112, - -0.0001875318002173207, - -0.0005461610432518851, - 0.00024401292438502574, - 0.0016161462246314412, - 0.00017911583279989196, - 0.0012645895710176398, - -0.0005848363849589562, - -0.0014193598848426933, - 0.00012493338137065972, - 0.00030962651874964493, - -0.0013266249835775029, - -0.00014314337728712784, - 0.00010161800097702116, - -1.0803649925506503e-05, - 0.0016212612269689841, - -0.0009060988231402168, - -0.0003130014770824051, - -0.001957151481078927, - -0.0013515685835192432, - -0.001459929309795476, - 0.001941022197036956, - 0.0008426725742890454, - -0.001087076473016094, - 0.00019461885096563238, - 0.0011745263521525707, - 0.0013029403181070906, - -0.0004181466955775131, - -0.00035221568035110647, - 0.0015000974168222299, - -0.0008712789435459557, - -0.00043456477987878684, - 0.0004983262740427383, - -0.0017717464122469057, - -0.0015603068505908025, - 0.00041513659721498437, - 0.000619672276657838, - -0.0019520023954979373, - -0.0003872510205625608, - -0.0010311060259720409, - 0.0011011427407477408, - 0.0027623866158271427, - -0.0012314000624652863, - 0.001187109024716335, - -0.0018290263912945273, - 0.0006259751000752999, - -0.00023952391202934344, - 0.00104747836744805, - 0.00100723329372156, - 0.0006156611347290401, - -0.0016675300768009297, - -0.000422334850807956, - 0.0003730570582516973, - -0.00041667260953296586, - -0.0010462185528425992, - -0.001670229431846565, - -0.001808861886442905, - 0.0004500412975577404, - 8.596515188910707e-05, - -0.000899995452081451, - -0.0004853144153625611, - 0.0004229628784392962, - 0.0012263712200462542, - -0.001247743947937384, - -0.0007024626064465928, - -0.0012660562661111396, - 0.0008536286393486289, - 0.0009326344008617773, - -0.0019016349810757453, - 0.0016534929225997792, - 0.0016545694329851508, - 0.0005030707108360294, - 0.000940845952318756, - 0.0003078765411335385, - 8.554570280492994e-05, - -0.0004894171586833554, - -0.0003327840545559597, - 0.00023978511095592555, - -0.00028237806858204804, - -0.0007123164893619617, - 0.0003702944404731062, - 0.0021016539261326586, - 0.0009098673310324291, - -0.0001496552551222263, - -7.88327706701128e-05, - -0.0016018083861367308, - 0.00021784171604784908, - 0.0007824001420912508, - 0.000684402100459873, - -0.0004850054623667917, - 0.0006826119407597128, - -0.0013100401665205339, - -0.00020155155184482682, - 0.0006296440137766046, - -0.0008001955346898002, - 0.0009691108475552881, - -0.0008861881005519097, - 0.000415351353124124, - -0.0008089084807922473, - -0.002294793050146177, - -0.0001345944299050266, - 0.0001283017707266283, - -0.00013177947877909477, - -0.0016930259040951253, - -0.0009904289562532025, - -0.000244932804270607, - -0.00016222164919363428, - 0.00040274047534686344, - 0.000598213838722801, - -0.001074759800560601, - -0.0009677246753234445, - -0.00058773239170727, - 0.002097222802776815, - -0.00018406227789219333, - -0.000830910349576269, - 0.00013359960129559915, - 0.00046655183739174205, - 0.0010204225902213392, - -0.00034152062485021264, - -0.0008047392967582838, - 0.0003989606462163318, - 4.017588442878485e-05, - -0.0026626220224808764, - 0.00106371990260751, - -0.0012718493219779857, - -0.0012723474319878188, - -0.0006092428826397512, - 0.000734794522359628, - 0.0014363381024659193, - 4.989460048343756e-06, - -0.0005098012814326217, - 0.0004927408929909503, - 0.0006912500905709848, - -0.0025864717145242765, - -0.001556277641143251, - -0.00037133345062463055, - -6.525372122185034e-05, - 0.000774163750715577, - -0.0002080497621486101, - -7.274206258116824e-05, - -0.0002154720935891646, - -0.0010692567616791893, - -0.0012996650283605533, - 0.0007599485809435028, - -0.0003184043917720714, - 0.001044690711425597, - -0.0012584471740321366, - 0.0008927935600648462, - 0.00046090338075842986, - 0.0008732735325894846, - -0.001301583915864931, - -0.00022033494543845973, - -2.8419169071757232e-05, - -0.001198657706959808, - 0.00017509612140087765, - -0.002436824580487709, - 0.001360392143669821, - -0.002265797319254913, - -0.0010121215021970697, - 0.0001813257089990062, - 0.001103037240687943, - 0.0001201901414186439, - 8.644438453551561e-05, - 0.0011548711939277393, - -0.000994233758812108, - -0.0015036703368981844, - 0.0010270510165047314, - 0.00021463229861635997, - -0.0004588911311775097, - 0.0015649322693109553, - 0.0013678699114344924, - 0.00034050970683654927, - -0.000945008592440337, - -0.0003074259455936668, - 0.0005605423345101637, - 0.002831299754990107, - 0.0012417199174466836, - -7.358110330835993e-06, - 0.00023369662660782507, - 0.0027230184151253514, - -0.0007807168236270232, - -0.002711289534673384, - -7.220253124261154e-05, - -0.000559591602266844, - -0.00022638316965808023, - 0.0006790087612077598, - 0.0009296302945848027, - -0.0020441949077127522, - -0.001576742826648877, - 0.0002624199537695634, - -0.00020474524558216004, - 0.00048798373028050186, - -7.72936254116961e-05, - 0.000338685777527133, - 0.00030121972163127424, - -0.00014430910634238012, - -0.0016962456082636023, - 0.0010313142721559176, - 0.0016852920290876623, - 0.00033492833906522594, - -0.0009544419610757728, - 0.00029477060414135725, - -0.0007249836176587483, - -0.001473616998865097, - -0.0009897065185945318, - -0.0008725223456955386, - -0.0008357301658114533, - -0.0005209559791246928, - -0.0011915457296208067, - 0.0018293249932489783, - 0.0006153838805825675, - -0.000539144828567533, - 0.00010254006616164028, - 0.002013600752202868, - 0.0005985346182172172, - -0.000469130604344584, - 0.0011305701053390869, - 0.0008763015163946748, - -0.000782372447324652, - -0.0005896346488551648, - 0.0017742570345031913, - 0.0023437655709054937, - 0.0006800526077582415, - -0.00011980023552982363, - -0.0012617296738186867, - 2.563715078374746e-05, - -0.0007778192817008884, - 0.0011788467870317073, - -7.402925247405287e-05, - -0.0003645126640018979, - 0.00041938707712359344, - -0.00013528468071883175, - -0.00044986306931449284, - -0.0001667758063253148, - -0.00039237251533032994, - 7.861801635220972e-05, - 0.0015907969838200276, - -0.00013813090699444595, - -0.0010550426358223377, - -0.002279731443550845, - 0.00047434954319639953, - -0.0005875554133960236, - 6.692988865711669e-05, - -0.00046817032210742657, - 0.0007930606717810244, - -0.00014734744218707378, - -0.00040289079327182105, - 0.0010669654949589896, - -0.00048252700148369236, - -0.00047662967282103235, - 4.794914476779364e-05, - -0.0013331044709344391, - 8.015590282488208e-05, - -0.001196080871385867, - -0.0001624108835292294, - 0.001305821735609387, - 0.0012193713819395834, - -0.00013393195230254433, - 0.0006522450319159222, - 0.0009322543648250273, - -0.00017795848063953764, - -0.00019580776652485974, - 0.0003597476396307763, - -1.2160329838530246e-05, - -0.001080305149126416, - 6.465082758690448e-05, - -0.0008880680022983007, - -0.00015801751123247268, - 0.00043062277662077455, - 0.0011668092756239943, - 0.0006296838782734975, - -0.0015458047647352406, - -9.136238570327964e-05, - -0.0001406124594826843, - -0.000253061196225764, - 0.0007927159540944517, - 0.0009363611955703842, - 0.0005605802774036994, - 0.0016688956954678644, - -0.0006622331271929354, - -0.0010922432661736455, - 0.0008668049861015908, - 0.000719140659690918, - 0.0007250635410236694, - 0.0009418824019962725, - -0.0004522154977870501, - -0.00041109740722126016, - 0.00029656234146877144, - -0.00021550133181152817, - -0.0014073089854191494, - -0.00032130613550441296, - -0.0009524309183224274, - 0.0013615671341829932, - 0.0016237941948035969, - -0.0018126792905992463, - 0.0009216294790194941, - 0.0006995538160850612, - -0.002040899344348998, - -0.0004945810617892406, - -0.0003886474939558314, - -0.00081459768157557, - 0.0006726712642419097, - 1.8252965936562277e-05, - 0.0007213823404153247, - 0.0008144664831514887, - 0.0006666720678048975, - -0.00031209179905620534, - -0.00015620889579400014, - 0.00032952942748695356, - -0.00015999836331395125, - -1.2749877841181903e-05, - 0.00048024360733999827, - 0.0004752744476051535, - -0.0012744731013314906, - -0.0013399464747298846, - -3.104054396447363e-05, - 0.0008725846995592092, - -0.0016037839369160702, - 0.00023111395468605614, - -0.0006201787163722802, - -0.00039613346253085185, - 4.340280950779029e-05, - -5.049209651044267e-05, - -0.0010421652270518028, - -0.0003228075246650854, - 0.0010672601363056037, - 0.0014674909233016666, - -0.0012663288756733463, - 0.00032792383824949405, - 0.0004112696110734758, - -0.0009227483841442334, - 0.0012590657123923064, - -0.00010528994077142382, - -0.0008353084257290165, - 0.0017950880915397639, - 0.0017452382875168468, - 0.0014437618151101606, - -0.0008388628024620562, - -0.0010873704909217848, - -0.0008224647463268383, - 0.0009414512641731085, - -0.0006959757352823402, - -0.00025006154155984795, - -0.0013639117986281556, - -0.00039060579407413455, - -0.0005562005645799693, - 0.00013363820039481153, - 0.00048553565531800233, - -0.0004710925262214684, - -0.0007726646799366239, - -0.00036784417107801816, - -2.371371386210051e-05, - 0.0006000481905409375, - 0.0006192237194482757, - 0.0018783545291772064, - -0.00044236075942309476, - 0.0008975821141783837, - -0.0007009995765282314, - -0.0005590391650704787, - 0.0003279821783257526, - -0.00013680682495681334, - -0.00023930764446998602, - 0.0011112064620654673, - -0.002138445128310681, - 0.0003890774112607849, - -8.203853853697973e-05, - -0.0006224640248738441, - 8.62459765266072e-05, - -0.0011326020565950146, - -0.0013635862519084008, - -9.099808877713184e-05, - 0.0011765026343492084, - 0.00023847640775797354, - -0.0008374535848114997, - -0.000156639670388116, - -0.0029443264046014775, - 0.001647435112807364, - 0.0014306888481172666, - 5.8075177214494316e-06, - 0.0011638324667488254, - 0.0002628058662456766, - -0.0005360767021456634, - -0.00012762726155167526, - 0.0001769068820847746, - 9.112324658990776e-05, - -0.0006912586543416633, - -0.0010150257305735044, - -1.607440730850464e-05, - 0.0012497856013524364, - -0.0007742704937465741, - 0.0002710366280208569, - 0.0013756511371128034, - 0.0008451179795945569, - -0.0020912755930725425, - -6.958903437624088e-05, - 0.001599583169458093, - 0.0008667182582443299, - 0.00033400523019186634, - 0.000830624427772563, - -0.0012875012868680466, - 0.00025482156505773147, - -0.00188243350296544, - 0.00046230465033232464, - 3.725758201843655e-05, - 0.00119261530382043, - -8.949762157541008e-05, - 0.0012853653630921212, - 0.001366790575570569, - 0.0008966013484251389, - -0.0020876838752846346, - -0.000563314668214821, - -0.00013210171956399403, - 0.0006923307976182647, - -0.000660626782781688, - -0.0001269487616105957, - -0.00048610865454806084, - -0.002177517782603365, - -0.0010799038945324185, - -0.0009502221214956921, - 0.0006888106207898407, - -0.0007263613311958725, - 0.0018101916785316086, - -0.00025528985004361326, - -0.000469310478663278, - -0.001639198430229493, - 4.833507476056287e-05, - 0.0008376582347430477, - 0.0015503309402489288, - 0.0007180888150903803, - 0.0005309957399962134, - -0.0015434527667475325, - -0.0013153206047143344, - 0.0006073261080996567, - 0.001592953779886881, - -0.0011974297557125594, - -0.00011260018549746457, - 0.0026598851067635965, - 0.0016541217054049512, - 0.00037870817317023104, - -0.00028435707210406914, - 9.670537232971818e-05, - 0.00039752392799910366, - -0.0025444522148937955, - 0.0010272014029458008, - 0.0011018140559947464, - 0.0005973071161763586, - 0.00043709368230502297, - 0.0007756466702164122, - -0.0018625303107609858, - -0.0015763712429839928, - -0.0022719766539980473, - 0.00020584603293332185, - 0.000380883589051982, - -0.0008910343417394171, - 0.0011906656183147714, - -0.00021450874883492883, - 0.0008718795127964197, - 0.00038997063393912874, - -0.0011466498390457342, - -0.000586327862327357, - 0.0010754251451571954, - 1.574399032813433e-05, - 0.000535721683454758, - 0.000787273775586849, - -0.000188061936674122, - 0.0013320114049746163, - -0.0008149783231668407, - -0.0008653265429197413, - 0.0014688965610034298, - 0.0003426203824268262, - -0.0008931814998426442, - 0.0011999086360441932, - -0.0011006982935246057, - -0.0019235055913787524, - 0.0006112069069920718, - -0.0004508062981421521, - 0.000508587284336931, - -0.0011082488775241161, - -0.0007161724644282281, - -0.00015272528664146971, - -0.0016804803300009292, - 0.0006106257125254019, - 0.0005849488849436729, - -0.0006815669448339755, - -0.002987742553955231, - -0.0017921962329755098, - 0.000842666816031957, - 0.0006674566618440407, - -0.0009561262414194557, - 0.0007980486751032189, - 0.0011481236888310812, - -0.0014866326210471405, - 0.00027775481719136233, - 0.0007830735683763365, - 0.00044340362368477357, - -0.00044982005819153175, - -0.00021781529351383243, - 0.0008210435878531503, - -0.00022316346641233556, - -0.00021976165123657585, - -0.0011349333671877662, - -0.000945854355923387, - -0.0005758332706546582, - -0.0002914879971409894, - 0.0010083068283386707, - -0.0015833331110403556, - 0.0007209517916917884, - 0.0013903396328054161, - -0.000720178955236112, - 0.0005744482242765386, - 0.0008250561933469247, - 0.0004476149176147663, - 0.00030163845477014864, - 0.0006931507853830295, - 0.0006768747836416666, - -0.0005159940638418264, - -0.0010775687436509335, - 0.0002866702229626694, - -0.0002578448771730185, - -0.0004127733855966834, - -0.00024805595708671295, - -0.0001662273265987866, - 0.0005084767512478295, - -0.0003095598563579807, - -0.0005608235669509896, - -0.00015371048095859675, - 0.0010949086169442582, - 0.00033600140204259767, - 0.00033964784957764835, - 0.0005230052625211245, - -0.0004281814036023057, - -0.0005187770844806677, - 0.0009587401168313275, - -0.000520265594349766, - -0.0018475399987857508, - 0.0008642638319587382, - 0.0005510283524304409, - -0.0006059462814161299, - -0.0013585106799835966, - -0.0017958465709822056, - 0.00045709820457670434, - 0.0005423214623445105, - -0.0026533745453541993, - -0.0019379339491960507, - 0.001605279680469043, - 0.0006886599657935468, - 0.0001761306306397296, - 0.0004221056357283937, - -0.0006634193173257764, - -0.0009147219982037507, - -0.001710447563228852, - 0.00023753150183308602, - 0.0013368725811925672, - 0.0014825980818912957, - 0.0010360725547872757, - -0.0015168525132670438, - -0.0003985483114373833, - -0.00031034098498893594, - -0.0008602466021395124, - 9.554999705041629e-05, - 0.0010871539882752336, - 0.00019968783483155747, - 0.0004275155628557289, - -5.797755977104658e-05, - -4.7613916639716746e-05, - 0.0011642312232499814, - 0.000813557954503969, - 0.0006390714262326802, - -0.0005835960679453123, - -0.001074562874020485, - -0.0012284737129604367, - 0.0006245686557961657, - -0.0014322006748948369, - -0.0007297388694126512, - -0.0008399706278537416, - 0.0012018095985110626, - -0.0011418019430650453, - -0.0006888351922664637, - 0.000428437988935823, - -0.0007169253562926331, - -0.0007690539436494552, - 0.0012773109075348316, - -0.0008564775886352706, - 0.00038303490566732426, - -0.0009903027187964063, - -0.0006452071827848448, - 4.0278729104409154e-05, - -0.000631069739862338, - -0.0006557879017637262, - -0.000279847338608308, - 0.0005807286509732811, - 0.0011848162163314276, - 2.42396951278138e-05, - -0.0012504581790960844, - -0.0003974988328570082, - -0.0015169983061931074, - -0.0010438394033274317, - -0.0006913794425604269, - 0.0008858651853675014, - 7.004252431430658e-05, - 0.0016306766088102864, - -0.0008600329628667724, - 0.0005808958576535829, - -3.189550145292248e-05, - -0.0006503211638508767, - 0.00040453417965539474, - 0.0002736111650493057, - 0.00033123630170412425, - 0.000343263408109526, - 2.305626629750866e-05, - 0.0007115117164631498, - 0.0006826691573051388, - -0.0012515885317529783, - 0.000129243976134904, - 0.0005074652533240492, - 1.9674904982575655e-05, - 0.00030879527783674667, - -0.002582063640486932, - -0.001132866345179847, - -0.0002814099077898005, - -0.000719805279307028, - 0.0012109245312984709, - -4.213655343412836e-05, - -0.0007650775674775187, - -0.001087286872841773, - -0.0011604990353977541, - -0.0007492214431983384, - 3.224636877710213e-05, - -1.7880270045195608e-05, - 0.001043609094711084, - -0.00030706896172867713, - -9.217442187558173e-05, - 0.00043339394410740056, - -0.0003550598019049946, - -0.0005599478008653962, - -0.000331775838553181, - -0.0008833559143706706, - -7.153371278275298e-05, - -0.000601987589670987, - 0.0008732429531777454, - -0.0022258519885303162, - -0.0005880681960768581, - 0.001550001391802022, - -0.0007148130552177162, - 0.001142220263824887, - 0.0002457068807472749, - 0.0002070326074950573, - -0.0013594344682716845, - 0.0008984007405605184, - 0.0008327440367563867, - 0.00030211081634376236, - 0.0015263258134007723, - 0.0016095466519894114, - 0.0016073569672485802, - -0.0008448999541258843, - -0.000390819202165657, - -0.0010646016744553213, - 0.0014448916557380938, - -0.0004670225394846245, - -0.001115636256672639, - -0.002005513588433385, - 0.00039270127185644997, - -0.0004907440940206402, - -0.0011054520633056314, - -0.0002535610984972891, - 0.001155039714196731, - 0.0008954389383411526, - 0.0005651499288846714, - 0.003036960984551188, - 0.0010267305316758737, - 0.0016298011785418685, - 3.1524948534096217e-05, - 0.0011203725330788902, - -0.0009596189279196308, - 0.00039012706973336984, - -0.0011321880399774952, - 0.0005333219156807156, - 1.7800825050258296e-05, - -0.002020271398524025, - 0.0013537576171894997, - 0.00013397500870956905, - -0.0002018655426704341, - 0.0002765977633710746, - -0.00014497890343134106, - -0.0020308156398710134, - -0.0017214539782346395, - 0.0006111457757719294, - 0.001129441343831775, - 0.0013801352211383075, - -0.0027776774174405184, - -0.00024251054277064482, - -0.00018774971213040745, - 0.0017157133412195372, - 0.0014320819500028789, - 0.0007533406796338049, - 0.000203244068123352, - -8.110691834803478e-06, - -0.0018487420340388737, - 0.0010211013838179424, - 0.0013918198891502281, - 0.0026977115733228226, - 0.00025720179254836454, - -0.0007927687481402811, - 0.0013708892896251812, - -0.0014352665935150235, - 0.0011666588916060207, - 0.0005554868880587335, - 0.0018518325317240449, - -0.0011873271883857328, - 5.095080492826864e-05, - -0.00034165993451383667, - 0.0005526118518499487, - 9.054311783321435e-05, - -0.001861056805331971, - 0.0011199498984964943, - 0.0003516459822837198, - 0.0022539684488941136, - 0.0011257472397304665, - -0.00021600803416812927, - -5.204369487921137e-05, - -0.001455236103594677, - 0.00021862423549215377, - 0.002157081272060709, - -0.00016292362902878323, - 4.603121041277822e-05, - -0.0003582451723914217, - -0.00045490453488124743, - -0.0009718018547144211, - -0.0004607357535872013, - -0.0004016907473745015, - -0.0002392700280099901, - -0.0006424772033559815, - -0.001271336990554926, - 0.00027145573436800633, - 0.0007491535931367728, - -0.0009832105290954515, - -0.0014558034891175055, - -0.00015289160008198106, - 0.0005330513455014251, - -0.00037028874708818773, - 0.0004113467361376484, - -0.0009510596101105666, - -0.0010850305781060989, - -0.0008188291836904585, - -0.0013450222456291789, - 0.0005907090997635183, - 0.0014045754287002584, - -0.00037499649347511537, - -0.001174947659662368, - 0.0018112453205675863, - 0.0014605136933056088, - 0.0003708240342006658, - -0.00013382552947586025, - 0.0004134078720743808, - -0.0018124997694693341, - 0.0005354010479184691, - 0.0019356114827141127, - 4.865505006369982e-05, - 0.00021895196432505083, - -0.0009398452995497748, - -0.0015949150872445624, - -0.0012097631295277535, - -0.0003448594507379039, - -0.00033908914826150127, - -0.0011260847003930587, - -2.7050888532222896e-05, - -0.0015524992013723775, - 0.00017399407028983844, - -0.0008872605202460813, - 0.0020260392542245952, - 0.00048067299488506595, - 0.0007742353293972335, - -0.0015634331360213577, - -0.0005476559448243608, - -5.774993863771026e-05, - -7.38213973514671e-05, - 0.0010094726352725735, - 0.0007518635106259424, - -0.0010745424186059706, - -0.0005402724377652174, - 0.00041336166632386203, - 0.000104043118632419, - -0.00195993865291375, - -0.0016346813888148634, - 0.0006647584378079223, - -0.00015819674173766666, - 0.0007328941599591536, - -0.00031449629519792523, - -0.00034404169165286346, - -0.00014924861034660723, - -0.0005012495672249001, - 0.0008689640381603605, - 0.00012505766674439432, - -0.0009422843219166361, - -0.0025690283011900574, - 0.0004906539672383652, - -0.0008537177429337906, - 0.00023151573231775796, - -0.0002846446263129895, - -0.0008190934806520248, - 0.0006059163692820594, - 0.00019568536518322634, - -0.0016864214738751084, - 0.0003388158242341656, - -0.0002463680532482553, - 7.217107901876549e-05, - -0.002386181107618575, - -0.00023152665807533597, - 0.00017239372710976133, - -0.0010662810900168515, - 0.0008297524542180439, - 0.0003022410193389193, - 0.00017650733983342332, - -0.0005590336970816622, - 0.0003327580896883812, - 0.0012286329062923082, - -0.00012484948470949212, - -0.00031192399449335125, - -0.0009971477221993729, - 0.0002473360824070094, - 0.000889338663277805, - -0.00036221616317238034, - 0.0012921407682216226, - -0.00045657434168797816, - 0.0003642879425876388, - -0.0006818481919301539, - -0.0005190508828897789, - 3.687235913156994e-05, - 0.0018484637323034285, - -0.0003752546579167901, - -0.0009271002171507064, - -0.0016125230376444148, - 0.002345232659799877, - 0.0015814324656047085, - -0.0002871081258992671, - -0.001136631589899866, - -0.0005891079810504885, - 0.0010244026644526945, - 0.0010405423794256404, - -0.0008166671905421414, - 0.0008450511325492879, - -0.0003532425622732568, - 0.0005608947248848487, - -0.002923073378898719, - -0.0002032227865955457, - -0.0006702120347075819, - 0.0005316096317878195, - 0.0005015280478727395, - -0.00038340913668737786, - 0.0009576644706048075, - -0.0009796338247166337, - -0.000703079842440788, - 0.0005435675146195636, - -0.00023035914229371264, - 0.00016273225897315606, - -0.000498609275060969, - -9.307133377931149e-05, - 0.0012247825044153027, - -0.0007849609878586677, - -0.0012924965522684165, - 0.00021593066372748836, - -0.0005302904409969987, - 0.0003886964542995496, - -0.0007827600780218589, - -0.000688377966643455, - -0.0006343675197024356, - -0.0012241643256516465, - -0.0005414858196952953, - 0.00026486765281577806, - -0.0014609420266778403, - -0.0005213370293692709, - -0.0005792264126252101, - -0.0006268998273804336, - 5.974955130527162e-05, - -0.0008584339407256828, - 0.0012750301261420908, - 0.00032936264626443816, - 5.2110593781916974e-05, - -0.001806280331787783, - -0.0002731451273070753, - 0.0004637068323424019, - -0.0008056229673622817, - 0.0019735134871365773, - -0.00033955546513620295, - -0.0009902922381427044, - -0.00024277806872582172, - 0.0005143359143402803, - 0.0007043004250861235, - 0.0009549029570370487, - 0.00043802599937685165, - -0.00028704792368108666, - -0.0011811090891204574, - 0.0005569551668393909, - -2.432080014905408e-05, - 0.0004835398260226184, - 3.781284169685312e-05, - -0.0011809654460976057, - -0.0005092456592835726, - 0.0010812993146931222, - -0.0007123926283855844, - 0.001007392884344534, - -0.002037128325086095, - -6.548910840147552e-05, - 0.0006189400287024856, - -0.00021683500903186322, - 0.0007718425455183807, - -0.0005904370810871912, - 0.0018251723873032814, - 0.0018029015519571265, - -0.0015570971317812614, - -7.4220538096941944e-06, - 0.00025070979801691297, - -0.0009771997438097959, - -8.993637079931916e-05, - 0.0011804240490656606, - -0.0018585604712702901, - -2.1009317171842936e-05, - -3.7334601600206994e-05, - -0.0013125518791413493, - -0.001342084800419995, - -0.0003440429401943696, - 0.0006024384348785237, - 0.0012022419642871314, - 0.00038353629769746176, - 0.00033846560638205414, - -0.00032511676716958813, - 0.0015827516548313004, - -0.00032549766237517137, - -0.0009089479062767297, - -0.0004136014731715178, - -6.811979775046478e-05, - 0.00041580230585833085, - 0.001060941710487044, - 0.00039667565154232886, - 0.001541838403670291, - -0.00010103421209775812, - -0.0018853683677027891, - 0.00019740907335369425, - -0.0014277092551380664, - 0.0006881346665267837, - -0.0006275275166173955, - 9.504467664524468e-05, - -0.001384680677316409, - 0.00033569181220470025, - -0.0020678427114361447, - 0.0008907205677795105, - 0.0002022341014591687, - 0.0003244852556399462, - 0.002252165990547561, - -0.0006041903410143618, - 9.424618142747403e-05, - 0.0013152512044734242, - 0.0014791614531462246, - -0.0006774526141812157, - -7.505269699990282e-05, - 0.00011985200426944424, - 0.001223516187522875, - -0.003382250432349363, - 0.001780131121148279, - -0.0009139369177962241, - -0.0012272345428119631, - -0.00010079321741784139, - -0.0004777363090165646, - -0.0008303737789694355, - 0.0019321760241058335, - 0.0011528021525807185, - 0.00015516395933933285, - 0.0006301464766406144, - 0.0010836429915249885, - -0.00069601330478506, - 0.0006042975750227198, - 0.00297583163404588, - 0.0015678131818419826, - 0.0015716182973293542, - 0.0004423060142874364, - 9.335886421477457e-05, - -0.0014065414353580709, - 0.0009925827871242628, - -0.0019137554051236864, - -0.001271157283829081, - 9.08992029351058e-05, - -0.00047570233611145203, - 0.0007418159497538977, - -0.000322803203342676, - -0.0003024550262348077, - -0.0008473878973184063, - -0.002100720250104288, - -0.0011484488714030728, - 0.0020048511573311566, - -0.00030253781230317424, - -9.739211512302566e-05, - -0.0005209451475018892, - 0.0011347742131881363, - -0.0009067342798006412, - 0.0006048285112821425, - -0.0007298085597594981, - 0.0007691512770094672, - -0.0013612463939561637, - -0.0010996886491328032, - -0.0005628064611235954, - -0.0008195689975996503, - 0.0006914779120834731, - 0.0011453564160100183, - 5.098198466001652e-05, - 0.0006246026637496932, - -0.0019288677682472225, - -0.0006455290102291776, - 0.001781655183320648, - -0.001012275163417276, - -0.0006203160986689156, - 0.001131113851746613, - -0.0005802222436648439, - 0.00012431770990377062, - 0.0011281550412618364, - -0.0009829354909295085, - -0.0002771959584650414, - -0.00045264614177289303, - -0.0003600056313206796 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgb(158, 185, 243)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 0", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - -0.0003600056313206796, - -0.0022376161827409174, - -0.0003239883664223597, - 0.0007795064473581263, - -0.00019149460827509962, - 0.0005873319145449502, - 0.0008537294488119257, - 0.000354685311577803, - 0.0004811853506423076, - 0.001020540250371666, - 0.0013812337257254452, - -0.00024061309851150815, - -0.0014271115993691281, - 0.0022895821053731513, - -0.0021053255203823834, - 0.002316811703913331, - 0.0011603753782384208, - -0.0012809071725912423, - 0.0015011097630470756, - 0.00029631320522625334, - -0.0004678306812556965, - -0.001042767997695331, - -0.0018838274167167425, - 0.00047081617552889436, - 0.0015344303021453504, - 0.0013218916289673987, - -0.0007356828218973723, - 0.0006827390961667328, - -0.0005871426851231597, - -0.00015396744590045143, - 0.00038036284617771874, - 0.0016295337073070348, - 0.00041253410698003593, - 0.0011854007651908767, - 0.0005504518053893278, - -0.0009146782089848197, - 0.0004068769762766199, - -0.0005022669905908081, - -0.0003100400209997478, - 0.001785972013486428, - 0.0004863846815540824, - -0.00035431494356076614, - -0.0006524107687465099, - -0.0005209513781042603, - 0.0012877553301216124, - -8.311983301110197e-05, - -0.0005558779983525451, - -0.00022587799041465803, - 0.0003989786448736178, - 9.491758916716925e-05, - -0.0004156132248598566, - 0.0002858969009681396, - -0.0003949514239917289, - -0.0005883883835675724, - -0.0012190229041253628, - 0.0005592090542360681, - 0.0018912567177629288, - 0.0002741098670199802, - -1.000695635564947e-05, - 0.0002943257918370779, - 0.0019250525247345696, - -0.0006332397463970472, - 0.00042652907976556816, - 0.00020360190079048819, - -0.00017715783802180145, - -0.0002812126005439917, - -0.0010825777963711565, - 0.0010378823170687295, - 0.0011342274314365731, - -0.0015478772005641619, - 0.000453755902648438, - 0.0020610079236990826, - -6.45618835686357e-05, - -0.001752210778029666, - 0.0011576837020735487, - -0.0024270373285581563, - 0.0004995021774773119, - -0.00030708504508603806, - -0.0011469276481517441, - -0.0005268326469401958, - 0.0002125870095729565, - -0.0005424913535701224, - 0.0011657221969322911, - 0.00041762272714036304, - 0.0014218895915628464, - 0.0005775927687447573, - 0.0009475631469542279, - 0.0011647890401543495, - 0.0014110506235720914, - -1.6234480609016622e-06, - -0.0003814558521529806, - 0.0007196516529464495, - -0.0014939426377439512, - 0.00030045287917848467, - -0.0015023753489866423, - 0.0001370071931371505, - -0.0013489287723459855, - 0.0005778908359580099, - -0.0004106927526280511, - 0.0013273274018962566, - 0.001104244089811709, - 0.0014448192588662674, - 0.001076875009624835, - 0.0003241213269176058, - 0.00016342653067393117, - -0.0003446349876483546, - 0.0023479441771989255, - 0.0008330759234414444, - -0.001826185884992091, - -0.0001864007167889037, - 0.0006765459063037477, - -0.00019509478493636543, - -0.0004840525349715553, - 0.00032032816779688824, - 0.001770047338523015, - -7.655240998844561e-05, - -0.0005959397855544837, - 0.0002700349038637809, - 0.0013355054081476655, - -0.0019815608068822505, - -9.62647624321206e-05, - -0.00016943160441352476, - 0.00027564224685477234, - -0.0009258187465384921, - 0.0001971008157859625, - 0.0007855097019863237, - 5.153313291670587e-05, - 0.0008042163486363528, - 0.0010392113590027975, - -0.000966591324135085, - 0.0008670754524676523, - 0.0011360840499546436, - 0.0011257166363056697, - -0.001952988189270282, - -0.0014674784349027734, - -0.00016741058644258741, - 0.0009033458273482169, - 0.000337710286251343, - 0.0002855436002947684, - -0.0013953857675084826, - -2.859722397249336e-05, - -0.0003324269097765379, - 6.009878710633729e-05, - -0.0016190042458051092, - 0.0005468621667026004, - -0.0009752522487250845, - -0.0007193104402739503, - 0.0011321798624639356, - 0.000361699894352652, - -0.0011018511509706687, - -0.0008618967307050186, - 0.00021719767521925854, - 0.00010352823137933399, - -0.003440687810719208, - -1.5459590430799205e-05, - 0.0003875807321719255, - 0.0001569093415503807, - -0.001114598679363669, - 0.0024631640565099546, - 0.0010668447477286973, - 0.0021305042442346933, - -0.00038846003927588255, - 0.00047832825661193394, - -0.0001808191863905442, - 0.000820071481701599, - 0.0005743195138758154, - 0.00030168197652863247, - -0.0006614195975030301, - 5.2480657088395765e-05, - 0.0007854839026416392, - -0.0010584699395149273, - 0.00039892999488840475, - -0.0010699618836191882, - -0.0008264028487108678, - -0.0018059970646749153, - 0.00011828450036697895, - 0.00022350832384581177, - -0.0010871654269793889, - 0.0017286524233259552, - 0.0001619378140654603, - 0.00039833237811396396, - 0.00038355137303476897, - 0.0007559466576601185, - -0.00024409835871412158, - 0.00041545303696414787, - -6.160899019301872e-05, - 0.0005232275339625138, - -0.0015568580152945527, - 0.0008388255832230734, - -0.0017126298754144402, - 0.001665344365810577, - 0.000192532916258249, - -0.0001371250145926128, - -0.001065933121781824, - -0.0009450938155973906, - -0.0013017537970360946, - 0.0016747483209313507, - 0.0001965272027104117, - -2.5489768110293048e-05, - 0.0008093917190436369, - -0.0005776392126589495, - 0.0024888122361310465, - -0.0005796030671353864, - -0.0019155343418345082, - -0.0008613702074855801, - 4.0414823543636324e-05, - 0.00031850018696670654, - 0.0013009690788327493, - -0.0003695144882406033, - -0.0014990920449641791, - 0.0003698302914779741, - 0.001150592845436876, - -0.0027858992170146733, - 0.0001556155595426729, - -0.001941137927656011, - -0.0011094135005187595, - 0.000218942421277643, - 0.0005101421004467176, - 0.0004153410163478498, - 0.0012493194441427155, - -0.00028743509765277134, - 0.000579632321264677, - -0.0001729473362070223, - -0.0005200987153299033, - -0.0006037804861281159, - 0.0009596880139596149, - -0.000326163910285462, - -0.0020159178664859584, - -0.000435527289485951, - 9.460685811346406e-05, - 0.0018552019698126474, - -0.0005504408226320362, - 7.583259753914281e-05, - 0.00035784412737688634, - 0.0016220564579271196, - 0.0012597621268509273, - 0.002022108441572551, - 0.000272038370154079, - 0.0003197583637045051, - 0.0014571300322657047, - -0.0008030444794433472, - -0.0004889879775779467, - 0.0018988570322234376, - -0.002188069624200228, - -0.0003791440589655677, - -0.002151612881050605, - 0.0009132764692729627, - 0.0011412833019272565, - 0.00022471995699072306, - 0.0003361991429250494, - 0.0022137663465841445, - -6.494771074434401e-06, - -0.0011477444970830874, - 0.000260259226485224, - 0.0002115703644511477, - -0.001357688301733303, - 0.0026984167741596512, - -0.0003028982196396188, - -0.00016086276574650067, - 0.0005430995882351442, - 0.00038709216326423103, - 0.0008390161407218388, - 0.0004896518799192016, - 0.0005071758404353149, - 0.0003497649473390643, - -0.0016090210217245512, - 0.0017955891818151712, - -0.00029963821510007015, - -0.0003484904972933803, - -0.0009699205377554686, - 0.0008570775909427182, - 0.0009627000223666783, - 0.0004217766363433692, - -0.001180944526445741, - -0.0009602591326727981, - -0.000260781185078276, - -0.0004838709165702062, - 0.0008299309863659015, - -0.000812648580717301, - 0.001046521183947027, - -9.123470485224985e-06, - 0.00010769320079239886, - 0.00044273496126482975, - 0.001335793413533788, - -0.0008783645199333435, - 5.182815714376813e-05, - 0.0002113927161082471, - -0.00036186760640345223, - 0.002041328997988123, - 0.0011729846642642015, - 0.0010546063283069695, - 0.0017839220310032545, - 0.001018606849326025, - 0.0012494879865189029, - -0.000135218231756787, - -0.0005091424267202847, - -0.0009445503940660408, - -0.0002962512400073694, - 0.00022939846043804198, - -0.0008341791148968449, - -0.0006337807347759505, - 0.00011855897865795147, - 3.4779293992903834e-05, - -0.0007309098070264815, - -0.00019488522014695525, - -0.00015679925427465233, - 0.0013963672611808846, - 0.0001242971523284012, - 5.2765831410148756e-05, - 0.0006304400140139851, - -0.0006505659738841403, - -4.7354462218992926e-05, - -0.00033159690361607723, - -0.00027554158228587357, - 0.0001305000799849306, - -0.0001702352379354666, - -0.0006112441739000174, - -0.0017499431831446907, - -0.0005512481612562708, - -0.0007998725203843068, - 0.0001798774896570515, - 5.967873689186205e-05, - 3.0870612682467404e-05, - 0.0015631446235694383, - 0.0007256312252710414, - 0.0003297314928877874, - -0.0013083143259213597, - 0.00019882949198379266, - -0.002173415765006371, - -0.00036574427238591654, - 0.00042269237090719055, - 0.00042375201516391863, - 0.001449430678268491, - -0.0005584561887125707, - 1.9045047399842357e-05, - -0.0021243338400363364, - 0.0007758509454167738, - -0.0016180656741088032, - 9.466007251466019e-05, - -0.0014130523345199353, - 2.8606549304581032e-05, - 0.00019742311833702704, - -0.0005160573310171702, - -0.0006341983219706676, - -0.0007389989485665704, - -5.045275743191538e-05, - -0.000888879986031673, - -0.002879151993297651, - -0.0012427331432102908, - 0.00029146254527841095, - 0.0008985359079177154, - -0.00042913262578470084, - -0.0009637777581393331, - -0.00019657421092516726, - 2.268835886860608e-05, - 0.0025639697186195486, - -0.000862757836680683, - 0.0007945853983494008, - -0.001332716690967703, - 0.0010018843114910528, - 0.0007103793581577754, - -0.0011285095745285586, - -0.0019601047262434177, - -0.0013322567503707234, - -0.0006721503082685467, - -0.0021939192618531662, - 0.0001709955706878276, - -0.002606239180174804, - -0.0011973834779650675, - -0.00033634913200616414, - 0.0017026774589099284, - -0.0006736946500392617, - -0.0004733549114959714, - -0.000803944749047834, - -0.001556407835352881, - 0.00014853024232130133, - -0.0001414571356954592, - 0.0017202937135741335, - 0.0026031223858298627, - 1.658550100973935e-05, - 0.0007269568425303363, - -0.00014860200115960465, - 0.0013289702341960775, - 0.0002439181003555188, - 0.0002735398787368362, - 3.326479345047335e-05, - -0.000370692171803757, - 0.00010377748679889933, - -9.279391688802594e-05, - 0.00065058628072985, - -0.0001960886465748361, - 0.0020801955328350686, - -0.00233678387073734, - 0.0002378162080610561, - -0.0007001364587853112, - -0.0009480318438696401, - 0.0012461872789589986, - -0.0016780684430309377, - -0.00019901828512767844, - -0.0017616347456407852, - -0.00016088046812585898, - 0.0008711064653813554, - 0.0012907357320324198, - -0.0013296537965825854, - -0.0003397805625092757, - 0.0018924914388186284, - -0.0010480178113585427, - 0.0010944059650529127, - -0.0017257983703860983, - -0.0006626497330326008, - -1.5364312226268803e-05, - 0.0020746180235588817, - 0.0005959034210196766, - 0.000762304471948367, - 0.001006404255734906, - -0.0010376984455870964, - 0.0014160307464346946, - 0.00036180388620616667, - -0.0008538925109952192, - 0.0019055038897478648, - 0.00045566187218202154, - 0.0011772583930259827, - 0.00011551094989461413, - -0.001163977211536099, - -0.000687052672104663, - 0.0007217812219967061, - 0.000479060354972676, - -0.00018978887619355514, - 0.0008171163169169229, - -0.001030223850813934, - 0.001810834163632201, - -0.0004563972790504883, - 0.001009198413537696, - -0.00027078003386847414, - -0.0010629194700682767, - 0.002102137597686633, - 0.00046900331790226523, - 0.001130821517424969, - -0.00013579721178926552, - -0.00038807764672447597, - 0.00018836492260898335, - -0.0005911877876220972, - -0.0005079991354780657, - 0.0013874686696352695, - 0.000756206947119433, - 0.000335007139309753, - 0.00037937489158726515, - -0.0007919476821466437, - 0.0005103950462660496, - 0.0018956001789914593, - -0.001284759471116855, - -0.0014948790915070447, - -0.00026895685371003, - -0.0015650469355630524, - 0.0004989811080112293, - 0.00048040987047703285, - 0.0001093753314851798, - -1.9493636609643417e-05, - -0.001592997803682376, - 0.0007274646389513138, - 2.4539308697203077e-05, - 0.0007511151291257697, - -0.0010470804467026338, - 0.00016360622153228086, - -0.000901244543767123, - -6.123942613940768e-05, - 0.0014982365348887839, - -0.0007919978549801509, - 0.001058437126718306, - 0.0004091716725988962, - -0.0008869135577923645, - -0.0017099912139415395, - -0.00013416415010985061, - 0.0005454730377009069, - -0.00042197110875783606, - -0.0011774592343006096, - 4.0562345397962776e-05, - -0.0015031266417176508, - -0.0013153134718998664, - -0.00023045315404608582, - 0.0015428542927846337, - -0.0006414692060598367, - -0.0012910688459984014, - 0.0017176226444161576, - -0.0012541539521117207, - -6.589044460330717e-05, - 0.0007113692510558959, - -0.001481742521408498, - 3.375084950377015e-05, - -0.0002854935624477503, - 0.0011587674779156578, - 4.4490926694857396e-05, - 0.0004545584525081919, - -0.00016393970393749208, - 6.873277068051748e-05, - -0.0006068064117211813, - 0.0005239794836523485, - -0.0007086410105775755, - 0.001164730471935021, - -0.000423072126236121, - -0.0016218208317885967, - 4.721934839051034e-05, - -0.0003014630454091225, - 0.0002933174507829652, - 0.0012494701752864647, - 0.0008376615335229556, - 0.00227166515256899, - -0.0004544258481978746, - 0.001232067963812119, - 0.00020078804407640553, - 0.00034719294794498425, - 0.0009539190308658666, - -0.000321845029843129, - 0.0013129863639787926, - 0.00035367138578151606, - 0.00015715432607683627, - -0.0007634072713058934, - 0.0019085287344125154, - 0.0009836689363769888, - 0.0007080343534541455, - 0.0007413385211547893, - 0.001667850004166128, - -0.0011151320278017217, - 0.0003783971944250205, - -0.00047345809974729404, - -0.00045419953398503595, - -0.00017176524180345263, - 0.0019541041561184883, - 0.0009737944107666436, - -0.00021189934625563203, - 0.0020795903131488073, - -7.306221818264723e-05, - -0.00014955508977261174, - -0.0006670850235897559, - 0.00032977371427197225, - -0.001470609512098292, - 0.0008593254104246168, - -0.00019231375390304237, - 8.601287008638272e-06, - 0.0004766859272733263, - -0.001055582135173426, - 0.000598969917045108, - -0.0009026881853642778, - -6.922007482907273e-05, - 0.0012992817888996897, - -0.0007938216334330654, - 0.001404940857635229, - -0.0009361574685101907, - 0.0016378283565150155, - -6.356964467273317e-06, - 0.00016607617545494934, - 0.0014884685446877443, - -0.0006491039355987426, - 0.0012795408153190016, - -0.0004689199359858802, - -0.0032619607642223637, - -0.0012993429245917857, - -0.001487095242613941, - 0.0013763816328224618, - 0.0011252355405579407, - 0.0018532690918740392, - -0.0006955789767185061, - -0.0006851246865993891, - -0.00011734649516116261, - -0.0015689568548748795, - 0.000607253514790963, - -0.0004887673773168842, - -0.0006263736009578169, - -0.0012378721943534779, - 0.0003312452034162974, - -0.0001334364862250377, - 0.0013481856698959154, - -0.0008687731255685475, - 0.0009295063010425302, - 0.000357003435226562, - 0.0004226907734083755, - 0.0005762460055640471, - -0.00021672568500676455, - 0.0005976643459980246, - 0.0009444871444235776, - 0.0009111816001948598, - 0.00036265001046681096, - -0.0007729304304823369, - -0.0010493035294757258, - -0.0014489069051852196, - 0.0005456346892599763, - 0.000793957985118671, - -0.0008435294902209759, - -0.0008797048361691306, - -0.00029556125963480987, - -0.0015476516476657352, - -0.0015017890143792785, - -0.00025401538201122524, - -0.0013399919913298299, - 0.0020468915027834476, - 7.265455689494357e-05, - 0.0008380673679829837, - 0.001116870272488333, - 0.0007910918839752242, - -0.00029804102699079466, - 3.596035981601387e-05, - -0.0011481544184016976, - 0.0021866676507227775, - -0.0010298519151152317, - -0.0005209477146222563, - -0.0011234711553339627, - 0.000305014773962405, - 0.00120290668447916, - -0.0014816812067061638, - 0.0007763949910457263, - -0.0010578604937229086, - -0.0009903840567936496, - -0.00102413683817178, - 0.002437195143903496, - 0.0004823720264332536, - -0.0004606806621509578, - 0.0015585480389082838, - 0.0007776534306982811, - 0.0002741644088145881, - 0.0010175942162166233, - -0.0005376586992929439, - -0.0006097782847302361, - -0.0005138311294027762, - 5.988986617187292e-05, - -0.0009913870573940778, - -0.0014266226098804792, - 0.001215706771629729, - 0.0012439553895282366, - 0.000977134720838625, - 0.000303959337236935, - -0.002069779886985198, - -0.0011725179454967485, - 0.0012806145248903465, - -0.0002951052535802039, - 0.001334155463138202, - 0.0008933692970317906, - 0.0008526383491282539, - -0.00025188514468033345, - -2.8417037355280296e-05, - -0.0006537516028503625, - 0.0008739722412561527, - -0.0014437253033506127, - 0.001154967094614979, - -0.0006008518280721005, - -0.0009659479395905254, - -0.00045243358020566956, - 0.0012226569518599861, - 0.00022046323252381848, - -5.147545883531347e-05, - -0.00045916511593440225, - 5.0951897495849456e-05, - -0.0010483771938605455, - -0.0016500709552277014, - -0.00020925706242819387, - -0.0018906009902995924, - -0.000925077926708346, - 0.0026616649974730644, - 0.0004395087897445048, - 0.0016510377467552641, - -0.001642439432400038, - 0.0008724483909075411, - 0.0009146768706237643, - -0.0007599203537110291, - -0.0006186717952186312, - -0.0018521655994417254, - -0.00015927618331154693, - 4.5084815787424705e-05, - 0.0005867924121808674, - -0.0009482391916939898, - 0.0011999972323401009, - 0.0024452702802838524, - -0.0010636075045239238, - -0.00025903326870703355, - 0.0013199586012850684, - -0.00010031359900396954, - 0.0025582133587220735, - 0.0019163546724441458, - 0.0013494600693919078, - 0.0016462387691095195, - 2.024088893396576e-05, - -0.0011812132889142308, - -0.00014576210790313902, - -0.0002753101913454937, - -0.001807037203224767, - 0.00047614249672062116, - 0.0006146144839967324, - 0.0008185359151576492, - -7.32447332626219e-05, - 0.00017404267952494506, - 0.001628858077594667, - -0.0005856434131473901, - 0.0014055377594074327, - 0.000723867326510397, - -0.00010925846889238648, - -0.00016410401722188647, - 0.00030445944853481983, - -0.0003622912938861375, - -0.001128749654840532, - 0.00043708782811936297, - 0.0005435514957532483, - 0.00043285457037709564, - 0.0014266159608988806, - 0.00044298318689965687, - 0.0013958884734817938, - 0.0019469208990904978, - 0.0011775531088221646, - -0.0005885450733499118, - -0.00021504257472151276, - 0.0009226076973398678, - -0.0013757689834344704, - -5.892285913710641e-05, - 1.4776834050849458e-05, - 0.0005296162691122053, - -0.00043462127196863256, - -0.0010105814297098725, - -0.0016768650558771734, - -0.001144265258375753, - 0.0008898932166174281, - 0.00039715785459416825, - 0.0010551056412306506, - 0.00043110351877669175, - -0.0010069498416522991, - -0.0010788195665389728, - -0.0023283788374596, - 0.0012489536339583569, - -0.00040800835691522146, - -0.00018808505089363298, - 0.0006460041293024817, - -0.0004045537746589318, - 0.0023113316755708838, - 0.00114779454995901, - -0.00029393415695368804, - -0.0006626999410634909, - -0.001073140155593228, - -0.002010211556627263, - 0.001970081895024713, - 0.0006385112423848565, - -0.001307774881577846, - 0.0010159914454135693, - 0.0005181237662172371, - 2.6341153577902102e-05, - 0.0015880763935080594, - -0.0007785764274326322, - 0.001074211900950993, - 0.0007073922918166674, - 0.0003635265083067911, - -0.0001450701831488849, - -0.0006002244627797656, - -0.0013803509535818157, - 0.0001263658661588761, - 0.0014594268230028915, - 0.0015582458100377808, - 0.00225031789436134, - 0.0012736301026735472, - 0.0005438616514428804, - 6.245200924822314e-05, - 3.341284224733031e-05, - 0.0009378013015590219, - 0.0007656243575445513, - 0.00032237777379739643, - 0.0019250461936264542, - -0.000357658572808337, - 0.0012044304544536906, - 0.0009028586911298266, - -0.0010901824243214992, - -0.0015229409405849502, - -0.001381337634041682, - -0.0004328469313793082, - 0.0011038279110688741, - -0.0004393928902462331, - -0.0009408611573713835, - -0.0007786735349247643, - -0.00045136144468830767, - 0.00012698157922101354, - 0.0010905873030274999, - 0.000304165507579288, - -0.0009498916740655877, - 0.0020175107828064387, - -0.0007098749942667579, - 0.0012139964471052668, - -0.00030067824666276944, - 0.0004924709776800078, - 7.245364527191345e-05, - 0.001508786108143105, - -8.44842142800359e-05, - 0.0016786237511728387, - 1.1204164399512487e-05, - -0.0012573795508234442, - 0.0008607690389731867, - -0.0008049859299581092, - -0.0002514364371188041, - 0.00027480100942036447, - -0.0008865781712453468, - -4.434801857121277e-05, - 0.0008482026981631125, - -0.0005312366943138442, - -0.0011196656416421632, - -0.000675688908303147, - -0.0008442757739314018, - -0.00028349665632799537, - 0.0007788713666241348, - 0.0005897911793616283, - -0.0010857460109452769, - -0.0012723408421807941, - -0.0003894040715560278, - 0.000570792239586046, - -0.00029272119750560455, - 0.0004795216701213832, - 0.0007933730117280933, - -0.0002588923294579247, - -0.00021841310038990403, - 0.001758988128140634, - 0.001148503804090505, - 0.0001902537770826488, - -0.0004531444826026928, - 0.0007611498799121262, - -0.00131668179709097, - 0.000982500691135371, - 0.001998362581013869, - -0.0009987872284027335, - -0.001158103019695009, - 0.000463559196195411, - 0.0006433401331076894, - -0.0014679464564955036, - -0.000762313197678845, - 0.00029265348700232603, - -0.00018841730628714855, - -0.0009616902938412798, - 0.0003500583965963407, - 0.000993631124945856, - 0.00016265027817064052, - -0.00025728881203711674, - -0.0008585839043596369, - 0.0016039682658074506, - -0.0007382146472602185, - -0.000675085498315647, - -6.236381320274956e-08, - -0.0002716118778847194, - -0.0005213605909179034, - -0.001054374890362793, - -0.0009651295473142792, - -0.0015961471063137523, - -0.00033905225135428353, - 0.0011085778084131718, - 0.0018777544713022229, - 0.0003035862321773275, - 0.000793128547141583, - 0.0014190281365035534, - 5.628104539045047e-05, - 0.0012470118969573252, - -0.0013766576840721402, - -0.00029905126695348524, - 0.00035637542896592775, - 0.000795750831556729, - -0.0005712703815986941, - 0.00033179531428674937, - 4.579209430090838e-05, - 0.0014882749305579616, - 0.00017365712396976053, - -0.000244805895703939, - 0.001280632770358438, - 3.643723523602103e-05, - -0.0007641852353736851, - 0.0018301440070631237, - 0.0012086799013736086, - -0.0016786574424754134, - 0.0002044278207168625, - 0.0015493624339487813, - 0.0005534209564269947, - 0.0008819347238347969, - -0.0012468168921509772, - -0.0009098840340514171, - -0.0010267556530409341, - -0.0008968389489972733, - -0.0007246483349306938, - 0.0009537991241934454, - 0.001508913981293045, - 0.0010879013844783242, - 0.0006853871678901585, - -0.001710723492131594, - -0.00040300600613238027, - 0.0008713463668148519, - 3.263790972242191e-06, - -0.00019033241867538443, - 0.0006036989313644939, - 0.000653659383891052, - 0.0007778278891040502, - 0.0026851365463386435, - 0.0016274315875167463, - -0.0003530650764760374, - 0.0006868432694487502, - 0.0001795764715866688, - -0.0005794129777825833, - -0.001617265428761814, - -0.0008056816790681295, - -0.0006806964250888275, - 0.0003078361026554748, - 0.0013403772986760813, - 0.0003076660870262976, - -0.0011249373339728, - -0.0014490077326637864, - 0.0013301604981351318, - 0.00013764782607148654, - -0.0006671819513463702, - -0.000624292521976169, - 0.0018067179265904908, - 0.0005674774129443829, - -0.001317105409627363, - -0.0005516670001376773, - 0.00042234179001810206, - -0.0017668909492902975, - -0.0001162881587384952, - -0.0017185921300405982, - -0.001387755100643745, - -0.0005517741391588709, - 0.00012065283421683395, - 0.0013631651255593099, - -0.0011290232718808902, - 0.0005615693154638933, - 0.0006551422039926208, - 6.254180417526598e-05, - 0.0012162445401049347, - 0.0014897147508024485, - 0.0018979156109715162, - 0.0008278795942863002, - 0.0016709172795479259, - 6.552613570536331e-05, - -0.002268839298288393, - 0.0001182931452040495, - 0.0002099355161435836, - 0.0005630869604959698, - 0.0007509259746303399, - 0.0002753269190802024, - 0.0002449954233398701, - -0.0008166079873114575, - 0.00020295605984574773, - 0.00033879418682900995, - 0.0007205839697275071, - 0.0007953524406212684, - -0.0007619718374865396, - 0.0001334664356530962, - 8.628825983300847e-05, - 0.00011866394199900012, - 0.0007208689077847103, - 0.0001557166342463532, - 0.0011605696039186997, - -0.0005969486335912622, - -0.0007653988029903052, - -0.0018882273646243291, - -0.00040776848098682267, - 0.00026693848464171536, - -0.0014955487693392561, - -8.78919074330568e-05, - -0.0001381925694993762, - -0.0009069314150661414, - 0.0008078474487118959, - -0.00019253654508679532, - -0.0002177696606660187, - -0.0007448961034754032, - -0.0011121084619067994, - 0.0010419012464654741, - 0.00016984816633941086, - -0.0009881360671502506, - -0.0008760247987300478, - -9.17357964351188e-05, - 0.0011502688379596642, - -2.9360108626403384e-05, - 0.0012561853602880936, - 0.0005513747478366195, - -0.002113177864428946, - -0.000454925689565556, - -0.0005071825803594967, - -0.00015290966794694646, - -0.0002927383496827896, - -0.000596868518605734, - -0.001071013825714676, - -0.001092358679676457, - -0.0010294854899197898, - -0.0006839444339783127, - -0.0003925862869372659, - -0.0014621409767116348, - 0.0006513400374065412, - -0.0010732348162592607, - -0.002082067069762051, - 0.000292246433221165, - 0.00044564642107745986, - 0.00042869812170682434, - 0.00102224841515829, - 0.000477050446927711, - 0.0009248957418170293, - 0.000506336040083146, - -0.0009510468939738244, - -0.0007406046082629666, - 0.00022693085399123393, - 0.00028824964390600927, - 0.00030437406607444707, - -0.00012138825135749925, - 0.00012309962423739888, - 0.0005185395879948174, - -0.0007620128845929218 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgb(254, 196, 216)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 0.00036612281681027076, - 0.00011739690058039563, - 0.0015183451710499445, - 0.0011849238418069992, - -0.0006283770445237846, - -0.0007273280062637452, - -0.0006231320707844031, - 0.0012789809186175526, - -0.0005156996526098488, - -0.0009215767372117987, - 0.0003664113788593924, - -0.000293939003143635, - -0.0011985791628526578, - -0.00024684251653493244, - -0.0011161236761377837, - 0.0014116027620015104, - -0.0010052942564306236, - -6.194417151496472e-05, - 0.0006110888840511975, - 0.0001595764909368046, - -0.0007499069719523766, - -0.0012139603558557093, - 0.00044249191069820347, - -0.00010953388496094225, - 0.0016177681554732299, - 0.0003929520865353156, - 0.001025511117371874, - -0.00044870889375095023, - 0.0010923237505190359, - 0.00043664452810123736, - 0.00026021893877977803, - -5.6354897614355534e-05, - 0.00021495163111827638, - -0.0008309565841788409, - -0.0003777993250762434, - 0.00017000936604198865, - -0.00020868725469821336, - -0.00028450880450393113, - -0.0010607408904884468, - 0.00038226244611024474, - 0.0003131925455173159, - -0.0006238939166360296, - 0.0009255112489959491, - -0.000916197523279025, - 0.00013054874660713722, - 9.19669749859499e-05, - -0.0008578754564481514, - 0.00025176135057234706, - -0.0005866396513096286, - 0.0002805247828839425, - 0.00035722133157556823, - -0.0005789219840232861, - -0.0011617815906709887, - -0.0009579298721299528, - 0.0010894171909396786, - -0.00014033199602682598, - -0.0019578445001795647, - 0.0005451535089374535, - 0.00031899641234162926, - -0.0009485891634929912, - 0.0010153581902373886, - -0.0012797244257169728, - -0.0001743004810305498, - 0.002425156204720079, - 0.0014753719685258774, - -0.0005169100060466093, - 0.00016286787276417188, - 0.00013974015046167425, - -0.0022858860740597145, - 0.00019256765627990747, - 0.00037986830424680635, - -0.0003615627038659728, - 0.00027350803695146115, - -0.0002208779029500703, - 0.0017669237676738749, - -0.00020649447357978104, - -0.0007008956702875245, - 9.195515988690208e-05, - -0.0014012276148207296, - -0.00015057138384107362, - -0.00029937200357980085, - 0.00046068342569423863, - -0.0012295532059075386, - 0.0010714530598039907, - -0.001050911791641285, - -0.0008417806615466016, - 0.00010805619740400201, - -0.0006237004326410125, - 0.0016032377825520618, - -0.00048146700414600897, - 0.0023014336180922526, - -0.0007247014645550957, - -0.00042889884998041986, - -0.0011156298283418807, - -0.0005566269692276946, - 0.0008752545895330115, - 0.0005574420106880978, - 0.0009683510173577139, - 0.0005211494770867164, - 0.000984128398729014, - -0.0018436097008075053, - 0.00029846776195780605, - 0.0009757902055329719, - 0.0005705946317811647, - 0.0007855057976133282, - -0.00026171246324909614, - 0.0007447093822773902, - 0.0010977018744469786, - 0.001716001250136103, - 3.0023386813608834e-05, - 0.0002955554032256239, - 0.00026719042378089215, - 0.0002528222331241944, - -0.0007074906036230738, - 0.002276392700346063, - 0.0005474403759654907, - -0.0006188826875022758, - 0.0005740554486301852, - 0.000670301334349916, - 0.0002830238924459594, - 0.0010762776445962588, - 0.000540480456700434, - -0.0015168836395516023, - -0.00026161295475797547, - -0.0003554453116785739, - -0.0010046014335737795, - 0.0013881895536915702, - -0.001171984838272963, - -0.002341238122899679, - -0.001368664069607295, - 0.0007047140370948029, - -0.0008462143759876482, - -0.0007509887805235117, - 0.0004395734949682882, - -0.0004329614953633473, - -0.001891361209474271, - -0.00020382057728744225, - 0.001805299763193749, - -0.0011280346662925899, - -4.7166945266181656e-05, - -0.0005933652341191324, - -0.0015009485413900099, - -3.5830017372822406e-05, - -0.0019869745634254923, - -0.001067531134408332, - -0.001287622021990754, - 0.0012516723510108184, - 8.377417902186037e-05, - -0.001962610638320397, - 0.0002279640899350311, - -0.00022065609429395113, - 0.0007398239946201409, - -0.0003607755744792249, - -0.00017453424019963309, - 0.0005475202405479749, - -0.000822254048981266, - -0.0015980402442724404, - -0.0001908650557478107, - 0.001773865838464826, - -0.00020708504482167884, - -0.0009818617328471813, - 0.0013888323487259674, - 0.0005326738501993658, - 0.000849521267726828, - -0.00018758752211941735, - 0.0012267963212798632, - 0.00015927174884760654, - 0.00024847586880136875, - 0.002016985656496904, - -0.0009423034221376831, - -0.0015221422245460213, - -0.0010874994503446964, - -0.0003111946682448233, - 0.00011162351931645687, - -0.0005538220952311834, - -0.001449538265234768, - -0.003545727675752721, - -0.0007241850972276891, - 0.0003545900820569753, - -0.0003413154797395065, - -0.0018290817663129658, - -0.001113538162448429, - 0.0011820633909819305, - 0.00011583628369193948, - 0.0015666901412307796, - -0.00036962610442641756, - 0.0010288424834463679, - -0.0017306838248399398, - 0.0013324916411519272, - -0.00016240880901690415, - -0.0005351931939492242, - 7.924920704761064e-05, - -0.0013364918764164184, - -0.00039063867355014124, - -0.00040210199835377105, - 0.0004653899867632287, - 0.00011897911021750457, - 0.0003681028023605838, - -0.0010160001801190325, - 0.0001389990341171138, - -3.869703258651428e-05, - -0.00021523340765766316, - -0.0013801961571811342, - 0.0004109189403644252, - -0.0007861285905584858, - 0.0006267685170735691, - -0.0009081450631847818, - 0.000676947251975991, - 0.0009101441889079165, - -0.0012825163779484475, - -0.0006525108162783241, - 0.0025447462970311, - 0.00013659006458561677, - -0.0028821601245438287, - 0.0014457805071084798, - -0.001300635696823102, - 0.0003914771735604333, - -0.0005414704936524666, - -0.0008789185514783426, - -0.0016679605043351956, - 6.747505520827908e-05, - -0.0006237032774438116, - -0.0003082228906869694, - -0.0006194683527682872, - 0.0007027812495026529, - 0.0018418294330670897, - -0.0008102064351250373, - 0.000999351619254558, - 0.0005907158476560412, - 0.00015736266041303614, - 0.0012678380402861532, - -0.0014230191501581509, - 0.000873954081865486, - 0.0001290285624386913, - 0.00015127329840325493, - -0.0004977139708824392, - 0.0006540040810837437, - 0.0002624256116770493, - -0.0008463555372116447, - -0.0007821658046411621, - 0.0014201308283741298, - -0.0015721767013420647, - 0.000403523011823581, - 0.0004587259788373577, - 0.0017229554051785914, - 0.0013780977954510093, - 0.0016148014195135963, - 7.74200141041824e-05, - -0.0009258351860148719, - -0.00024792896639337913, - -0.00021174074756143702, - -0.00022058629156561328, - -0.00041431815865766887, - 0.0010428780012817806, - 0.0007211798336709249, - 0.00030894870828830086, - 0.0014687654964428314, - -0.002864506388707368, - 0.0007046048864644733, - -0.0003615040112125642, - 0.00024733303764210734, - -0.00180504003556143, - -0.00020693569507285848, - -0.0005150342173064134, - 0.0008376704179782969, - 0.00010241523633467527, - 0.0010577809792738971, - -0.0005640146805035753, - 0.0006776813082580612, - 0.0004845576648966612, - -0.00010145855473809532, - -0.000413395077922229, - -0.0009418159557947067, - 0.0007636990013971555, - 0.0002977285517293632, - 0.0002845384785346919, - 0.0004683782471257715, - -0.0004234990161337974, - -0.0006167606904907024, - 0.0009231051885846343, - -0.0006181416545433119, - 0.0007480004578805338, - 0.0013893846540125531, - -0.0005222612272491148, - -0.00019870995231195877, - -0.00031633426273228773, - 0.00044446962792510304, - 0.0002320481189896041, - 0.0024739105208248314, - -0.00010698806572836919, - -0.00031233912497226075, - -9.976078185923161e-05, - -0.00016613884517543005, - 0.0002058553934691888, - 0.00017074252245496795, - 0.00022779059621329264, - -0.0008566040926113146, - -0.0007138837834029353, - 0.0009520127016336362, - 0.0006380125008586668, - 0.0017162684256634448, - -0.0006754748605994959, - -0.0009659171118816551, - 0.00037215648667304703, - 6.736499282429307e-05, - 0.0018600883014664262, - -0.0002751948827434598, - 0.0005812322669459919, - -0.0011144529861831782, - -3.8055131956636645e-05, - -0.0004145494847601925, - -0.0006695066329065367, - 1.2674507597194679e-05, - 0.0019165154812115584, - -0.0005004578218638831, - -0.0005321023495379291, - 0.000760178414049948, - -0.0005727086633082704, - -0.0008288497152696204, - 0.0014566476103563927, - -0.00020710768988183638, - 0.0006474385811840397, - -0.0008928798091892384, - -0.001882844339756374, - -0.0005864757253950802, - -0.0012293829063138365, - 1.2530914790106137e-05, - 0.0009442200715545148, - -0.0013812815008315761, - 0.0005840874224313871, - -8.227918148621312e-05, - -0.000613669940700267, - 0.0004945141368229483, - 0.000525534763827386, - 0.0008386531044195854, - -0.0002964725697614188, - 0.00022921692249968834, - 0.001810007115164901, - 0.00021529222783745055, - 0.0014176626994298165, - 0.0006391746451266885, - 0.0005348754837692593, - 0.0006026800633653075, - -0.0014474469923925926, - 0.001502158254718586, - 0.00021880956072902892, - 0.0011062303091342433, - 0.0005632078317589614, - 6.505243585523024e-05, - 0.00032148685068421443, - 0.0013139144038004744, - 0.0014161117817892864, - 0.001399884829646949, - -0.0009890719330718392, - -0.000664457432123029, - -0.0011353878059163157, - 0.001033281275371522, - 0.0010776587361777457, - -0.0004355272640374032, - -0.0006340827196311564, - 0.0016409110114721554, - -0.0012163073891567336, - -0.0010111496183583136, - 0.0008396413160779432, - -0.0014908428101313637, - 0.0004894388257092481, - 1.4358515956285245e-05, - 0.0008777009141966007, - 0.000948718745789028, - 0.0003856846086630238, - 0.0008024632089885707, - 0.0020936022031093388, - 0.0012096939967488605, - -0.001059878942541886, - 0.000389814997098784, - 0.0005411313455523186, - -0.00010257997571833295, - 0.0009450695013500234, - -0.0009619384885202751, - 0.000514557384513272, - 0.0008664365712072985, - 8.154676565907459e-05, - 4.247534119542092e-05, - 0.0009208292268712086, - 0.000865311291955188, - -0.0013123720773686874, - -0.0020942371079020238, - -0.0016542069880875988, - 0.00025708082166185197, - 0.001224464755041662, - 0.0009532117466898947, - -0.0013718593918260879, - 0.00017243335355282162, - -0.0013269359271620173, - 0.0004956102693006117, - -0.001446438213399904, - 0.0009197801912611673, - 3.70415855406505e-07, - -0.0010527409717898375, - -0.0007085603910970848, - -0.0003523892194010461, - -0.001978871517130332, - 0.0009212616928260744, - 0.0009532017860635436, - 0.00044692580566818124, - 0.002561537603610329, - -0.0016681885971751953, - 0.00024264834391062858, - 0.0006011006714622597, - 0.00017732601643848003, - 0.0010008873496135224, - 0.0009077384260684413, - -0.0006889075323247118, - -9.657945135384899e-05, - 0.0011129048512978751, - 0.001363879397095739, - -0.00021455311519753337, - -0.0009803942107315404, - 0.0007984954562976468, - 0.0012819139587567246, - -0.0009318538255879058, - -0.00012477219435565393, - -0.0004247446678649057, - 0.0010130433668617005, - 0.000472889610481713, - -0.0001389309205022686, - 0.0012357784492698322, - 0.0001826112546360214, - -9.758111528063108e-06, - -0.001479156271413119, - -0.0010893166352001187, - -0.0011336766956836347, - -0.0007571536786154829, - 0.0011436982874930071, - 0.0012248964594143348, - -0.0011409177450635883, - -0.0020520782506316046, - -0.0003803460198413826, - -0.00040177607867631526, - -0.0012354467390488708, - -0.0008791239122314325, - 0.0007105411041058694, - -0.0015741782349424603, - 0.0008912426923738256, - 0.000427411380124055, - 0.00016165257720629446, - 0.001758138775194579, - 0.0009717005465504388, - -0.0014154693971028599, - 0.0013902461536574057, - 0.0020799145227774927, - 0.0008506678084935578, - -0.0003235412248024215, - -0.0009673584601514319, - -0.0005227013699375437, - -0.0006127472324320944, - -0.0005397854528707753, - 0.0010954014756612675, - 0.001016017235544879, - -0.00035328307918739793, - 0.0003007253953261667, - 0.0012780337267638778, - 6.687218539216742e-05, - -0.0006879165622219539, - -0.00023880761761304616, - 0.00038128050113799385, - 5.530999689269751e-05, - -0.001484976737393008, - -0.0009937269820500935, - 0.0008655305928743476, - 0.0011687681974419223, - 0.0008665010244259374, - 0.0003709538299322575, - 0.0006751566622594455, - -0.0015710292775438295, - -0.00021775909420619557, - -0.0002517415189736915, - 0.0004220078841635317, - 8.620412074791731e-05, - -0.0006946014788553058, - 0.00037506693813153184, - 0.00021011082477752571, - -0.0009767504981973644, - -0.0009353266466976422, - -0.00034930858641822295, - 0.000151683012161972, - -0.0003592214842223616, - 0.0010010907182840124, - -5.105489168233348e-06, - 0.0016995541538258989, - -0.00024208055255591532, - -0.0002940484550922979, - 0.0005379169181147179, - 0.0003443880397353351, - -0.0002827093922379334, - 0.00034687614810771737, - 0.0014564018657983037, - -0.0005230704006752247, - 0.0018244317334621743, - 0.00025680913721691783, - -0.00034768941732733153, - -0.0005596034937410068, - 0.0004026477817161484, - -0.0001874965252294012, - 0.00048026828269566533, - -0.001288433991009139, - -0.00020149159044149118, - -0.001089339675679886, - -0.0004999931840838115, - 0.0013656017262997572, - -0.0002592329146378001, - 0.0006390256074401437, - -1.2224376760308487e-05, - 0.001529096485138177, - 0.0008933713188353231, - -8.439093123395228e-05, - 0.0010065190255610864, - -0.0009235460681419541, - -0.00020385406438247605, - -0.0004651988712383926, - -0.00041961959377145505, - 0.0002618337889041024, - 1.8091478902569785e-05, - -0.0003747815918755035, - -0.0010086085412347977, - 0.001156840427868828, - 0.0009630905644233471, - -7.392121999839432e-05, - -0.00022726421290418893, - -0.0011554934802149675, - -0.00012613874869230572, - -0.0009370417899004655, - -0.00043187914437179103, - 0.001217237116635101, - -0.00038521244438528834, - 0.0017849844588951002, - 0.0003652440288479201, - -0.0008914053134112543, - 0.0008318423977947427, - 0.0009311499563832287, - -0.0002757768062513613, - -0.0005925788115893019, - 0.0004079930109308257, - -0.0012345477075988876, - -0.0007274167569920357, - 0.0019464595790479305, - 0.00045685961070795686, - 0.0017150197773950146, - 0.0012903375759766435, - -0.000566037591995992, - -0.0012461844534416271, - -0.0006657802341691324, - 0.000805707730635954, - 0.00017510960751142006, - -0.0006921276137089193, - 0.0003949476842376588, - 0.001582414003122257, - 0.0005606612070593154, - -0.00010408213847024631, - -0.00045485193840799594, - -0.001236532865934199, - 0.0005993138961278879, - 0.000980876609710807, - 0.0002492017828718157, - -0.0007555790839035505, - 0.000597555538368926, - 0.00031899886542596513, - 0.001526703375932843, - 0.0011940482535492253, - -3.209721560444878e-05, - -3.451085288711905e-05, - 0.0011489263921285477, - 0.0007406654643360075, - -0.0001563222133315592, - -0.00027489010495571964, - -0.001104074565097084, - 7.727940902091165e-05, - 0.0009036622791628744, - -0.0004887798207807845, - 0.0007409077576090907, - -0.0021652285188513113, - -0.0002892011642623632, - -0.0004325828244557643, - 0.0008736461287017457, - 9.475496154888238e-05, - 0.00010782797385748151, - -0.00025571208671977644, - 0.001117493150558796, - 0.0014483393799718544, - -0.0003001637172967364, - 0.0004814909697336671, - 0.0015395276980601225, - 0.0005570142228943365, - -0.0008609201093234673, - 0.0003005900015433246, - -0.00030312663416762393, - -0.0013109673133838956, - -0.000964929041598966, - 0.001614990995388713, - -0.0006831794029607918, - -0.0010934145337397347, - -0.002074640307908198, - 0.0002522830075215064, - -0.0018215140929857816, - 0.0010356468203883945, - -0.001410646464750131, - -0.001121201833707101, - 0.001945610910200762, - 7.201362051751387e-06, - 0.00010316109489715109, - 0.00020875592364778383, - -6.180715732920561e-05, - -9.267744985983166e-05, - -0.0005813426747148784, - 0.0004965155607962418, - 0.0003756510494432828, - -0.00035204062360966133, - -7.862502466115291e-05, - -0.0003949708610089839, - 0.0004389896362548781, - 0.00048399387101219764, - -0.001009309942800417, - 0.002778266535387228, - 0.0011747462539367524, - 0.0008726565230337619, - 0.0007553215324436407, - -0.0005651304864517521, - -0.0013992153856670312, - 0.0022885934235779477, - 0.0008767258639804066, - 0.0010874891080400724, - -0.0013987679682498952, - 0.0003521854389452888, - -1.2831673861333636e-05, - 0.00015053142814139847, - -0.0007997014455252249, - 0.0014809128242934948, - -0.00015477121359702998, - -0.00015253071921105885, - 0.0009349288932693852, - -0.00018412400913321702, - 0.0009159411566040095, - -8.24003735223108e-05, - -0.0002903300182128211, - 8.278353339024913e-05, - 0.0010053215438164832, - -0.00031736451311137494, - 0.000834503489552361, - 0.0010343023622545282, - -0.0013573430484855086, - 0.0007447261750628056, - -0.0002287622930659862, - -0.0012064924996054653, - -0.0014686231837130771, - 0.0016490242018821172, - 0.0002486666946600552, - 0.00046821479037507827, - -0.0007238617398451907, - 0.00038490482569396306, - -0.00016344653093887208, - -0.000565212189488689, - 0.001971515095299745, - -0.0016696654909756233, - -0.0012080195327860473, - -0.0007858802871249936, - -0.000992605812000385, - -0.00041944662973441026, - -0.00032275439291516906, - 0.00015379445234969068, - 0.0015058510217650742, - 8.778605024203588e-05, - -0.0002733260599203808, - -0.0002805715690670842, - 0.0007091977358637266, - -0.0008435767113039001, - 0.0014602116645021914, - -0.0003219144656745266, - 0.0006680001072448965, - -4.086293767001706e-05, - 0.001062966109904066, - -0.0010182801870447665, - 0.0008846101539299083, - -0.00012421389944457595, - -0.0020805566313855843, - 8.328061366643034e-05, - 0.00014048268550356335, - -0.0003899412782919984, - 0.0003396201389263233, - -0.000854903765212859, - -0.0024026523946124984, - -0.0012719820085427562, - 0.0016095454648913216, - 0.001341314741964285, - 9.53570856391753e-05, - -0.0007889373652118118, - -0.0001354371644918564, - -0.0015009336091562863, - -0.001621116697543219, - 0.0011484363357181805, - -0.00014186416178264198, - 0.0015250828393703114, - 0.0017386537750592366, - 0.0004601516513785297, - -0.0003804524299052977, - -1.8942984562533053e-05, - 0.0014377663721442135, - -0.00015896866423655758, - -0.0010779241192364754, - -0.00037408236854596146, - 0.0006833159826529107, - 0.0016295286119166954, - 0.00020670450937918176, - 0.00046779245184697956, - -0.0019559744667322974, - -0.00011776903557378099, - 0.00028662401384072406, - -0.0013528238411730253, - 0.00029757175697799293, - -4.0949596501613176e-05, - 0.0010388991732982998, - 0.0009762934919315949, - 0.0015947850691991343, - 0.0005458668833539048, - -8.64691075357529e-05, - -0.0025803766609939984, - 0.001265343515218188, - -0.0005922557929456724, - -0.0011663201168900504, - -0.0008355540070019956, - -0.0014746483173293766, - -0.00042343907554412126, - 0.00031309154126239064, - -0.000361488441518417, - 0.0007121154438353874, - -0.0017260236558208392, - -0.00081076182441535, - -0.0014492817157685284, - 0.001492331184897059, - -0.00024932095649764024, - 0.0013015389610281335, - -0.0013448648155848307, - 0.00022190136024599958, - -8.995023273372296e-05, - 0.0012056608518727094, - 0.0006684143880848285, - 0.0004696883895736357, - -0.0006521263422910654, - -2.5073370883786487e-06, - -4.637666219726697e-05, - -3.0023208622767127e-07, - -0.0003401646423835064, - -0.0006946188203868303, - -0.0013461393766538718, - 0.0004303170931346649, - 0.0013858127367712169, - 5.469521881887494e-05, - 0.0006643686904318131, - 0.000702004223359119, - 0.0011267259748802873, - -0.0012819237561170294, - -0.0008924726053621756, - 0.000399162242716666, - 0.0011356049357318112, - -0.0009453843378431427, - 0.00024093577660411046, - -0.002196538171710874, - 0.0005737677256607607, - -0.00015973286053872233, - 0.0002778273525189784, - -0.0017728839914313258, - 0.0011822802782995893, - -0.0003884148166792389, - -0.0003645276470197328, - -0.000415822396548022, - -0.0009663760455686842, - -0.0007406830490068885, - 0.00035875111028714664, - -0.0010346698589128642, - -0.00019702208318479053, - -0.000656273276968887, - -0.0005558479925398332, - -0.00023469939250596927, - -3.056718223131452e-05, - 0.0008346023683975848, - 0.00039134963201894606, - -0.00017577530786963013, - -0.0021474135717272293, - 0.0005537820671359326, - 0.0020388238482441185, - 0.0016573379902373542, - -0.001098834031960651, - 0.0011497842574267072, - 0.0001666301092242473, - 0.0002669291427549359, - -0.000658284147972654, - 0.0006999622141370575, - 0.0007457571472023819, - -0.00012986014583071196, - 0.00024062656062348416, - -0.0001944167458729149, - -0.003802415380706385, - -0.0009037222973301339, - 0.0006142513967598964, - 0.0010203748494779675, - -0.000984977728927588, - 0.0006897729773692176, - -0.0003719505078839836, - -0.0014713513920533434, - -0.0019038334897843456, - -0.000562688150426306, - 0.00015703595248408247, - -0.0015196307902702528, - 0.00139216492839739, - -0.0007676649341658848, - -0.00037151360291395863, - -0.00022042938604597198, - 0.0006047051957630507, - 0.0015919058773078269, - -0.0004271566361775125, - 5.0839573448552836e-05, - 9.692137397584433e-05, - 0.0005153563205199618, - -0.00023210706962883038, - 0.000930413833247954, - 8.810357286776032e-05, - -0.00016618773021465373, - -0.00042927688634019495, - -0.0008469047911425521, - 0.0009662439795493121, - 0.003314685289027251, - -0.00027320570874276705, - 0.0013910325102398933, - 0.001533952265577832, - -9.910499162204716e-05, - 7.25886950768114e-05, - 0.00035904414356930715, - 0.0010390083426157568, - -0.0022011670189239804, - 0.0007784531426684974, - -0.00045796855891065474, - -0.0001177497329150132, - -0.0018605875667876207, - -0.0007408642850828807, - 0.0016903745817314552, - -0.0006631945332848504, - -0.0001389049084583563, - -0.0006607481081921581, - 0.00016826616962408993, - 0.0011121941352786298, - -0.0008228377159038493, - -0.0006804260509409269, - -0.00091454851028416, - -0.00043135514860346587, - -0.0005603373275208269, - 0.0005439823500406769, - -0.0014058554663794584, - 0.002351262893830917, - 0.0001365306201902414, - -0.0013054674388135459, - 0.0003530038673156456, - -0.0007722116517980843, - -0.0001224040575482948, - 0.0013488094330780384, - -0.00039393738025004377, - -0.00022547884598980166, - 0.00029759267710485055, - -0.0011521488508150876, - 0.0019368093645001313, - 0.0005047363380110781, - 0.0006918903685957642, - 0.0009786925860513214, - -0.0005506075937136278, - 0.0014317274237337588, - 0.0001023324921413834, - -0.0003518061644868432, - -0.00020533284256242013, - -0.0010999993655815997, - 0.0013986754255725846, - 0.0015800909824873644, - -0.00026855378244205265, - 0.0001541477445203056, - 0.00041975687771847003, - -0.00017136950387758703, - 0.00013123581152395226, - -0.0006273094084314944, - 0.0002720044729804245, - -0.0008952649507308407, - 0.0006153279109073842, - -0.0012467944352094634, - -0.0008369020981990742, - 1.631333454709715e-05, - 0.00036444645123532524, - 0.0006690393456945052, - 0.00015208428259772428, - -0.00012634898934667702, - 0.0001532309965172029, - 0.0007519216829006202, - 0.00017057880367965912, - -0.0018796893080971738, - -0.0013428066503593998, - -0.0009494561320953055, - 0.000252150667372266, - -0.0004950736984676123, - -0.0005263976590107746, - 0.0002662330986233788, - 0.001024640265851866, - -0.0024471049209324252, - 0.0011503682597704596, - -0.0004534255549780525, - 0.0011146322556650097, - 0.00011540308006808745, - -0.0001234954879100842, - -0.0011646619187838545, - 0.00012391584576071723, - -0.0010078839754863217, - -0.0011956551080470686, - -0.0005625155695802522, - -0.00020739324259491833, - -0.0002895098722759737, - -0.0005997381609670287, - 0.00044460557716450677, - 0.0005166726213246078, - 0.00026517664249271956, - -0.002214022105053266, - 0.00024132662100331365, - 2.858939751180755e-05, - -0.0004436102223075558, - 0.00027450703798703074, - 0.00011287425702938418, - -0.0010159379067191995, - -0.0009594723361591882, - -0.0007710015197661521, - 0.00025544039492182317, - 0.000904330366859514, - -0.0006679625206925816, - 0.0005288358410162659, - 0.0006986937830006517, - -0.0005892314651026097, - 0.001480545833601097, - -0.000715021899658113, - 0.0018591071599225416, - -0.0011438665069706496, - -0.001020997034617041, - 0.00011047521586911592, - 0.0003771147732821518, - 0.00038769531808820223, - 0.0006124854546954554, - -0.0006022462038468545, - -0.001486430531539112, - -0.0005376974554687342, - -0.0014752019076631976, - 0.0014605190353175657, - -0.0017219104485125887, - -2.8754277769661252e-05, - 0.0004719343515692761, - 0.0003695237925189483, - 0.0012632108909459564, - -0.00026150310716522885, - 0.0023026266682660305, - -0.0010097448832436767, - 0.001015794634336169, - -0.0007476137604805718, - -0.0001333242138938949, - 0.0013676367489149825, - -0.0006584489863473935, - -0.0010387859410922236, - 0.00023042484595372747, - 0.00013335806890445913, - 0.0011301261576768375, - 0.0004225294544465916, - -0.0002486156463775011, - -0.0009856294260129723, - 0.0016205515245380313, - 0.0003782441510935469, - -0.0003098123028003262, - 0.001155576939807107, - 0.0004482015354991754, - 0.0009656489576898766, - -0.002306650110577672, - -0.00013089062731572355, - 0.00020818668116355502, - -0.0005089318016919629, - 0.00023976005969535155, - -0.001963212180568377, - -0.0017317361456686744, - -0.001446949327674462, - -0.002531591418076156, - -0.0003864097182464936, - 0.0011670733186113394, - 0.001207199118269091, - -0.001556551165577771, - 0.001045480417369772, - 0.0005832098233485572, - 8.312775545612876e-05, - -0.0008888534558489821, - -0.001767267843007529, - 0.00011162154695010189, - 0.0008056430848451691, - 0.0007438645889997125, - -0.0009783612010867025, - 0.0008510394900701634, - -0.0012299412498671582, - -0.001400532353761403, - -0.00114266435478569, - 0.0006467142016788791, - 0.0007597706570500956, - 0.0016412283594697573, - -0.0013596138085762806, - 0.0008308146178834331, - -2.6482042602533217e-05, - 0.00044366248889939096, - 2.0408367057556833e-05, - 0.0008559670672236788, - 0.0015846040644041028, - -0.0005482817949689959, - 0.0008700407324279802, - -0.0009449548335335751, - -0.00027750761763281184, - 0.00026116389180919867, - -0.001112078087413855, - -0.0015542318057538292, - -0.0003545357952640416, - 0.0020201082858084846, - -5.345027116210045e-05, - 0.00015869362045646096, - -0.0004921296020412533, - -0.0021275373920142627, - 0.0004213923292937446, - -0.0017118702292091142, - 0.0010177468104600395, - 5.938601129211577e-05, - 0.00030250425482151154, - -0.0001601674052599309, - 0.0004962860367870459, - 0.0017484621477880558, - 0.0007931874331285432, - 0.00034601021040149603, - 0.0008137925244482465, - -0.0018539242624563425, - -5.147631273785514e-05, - -0.00128165451645469, - 5.8489012331394615e-05, - 0.00069741974229593, - 0.0004742462434276779, - -0.001379714032304304, - 0.000394999692150932, - 0.0001347496498791914, - -0.0009993567548173272, - 0.00048178584279887906, - 0.0001309268231708735, - 0.002131578428801004, - -0.0005496350396453988, - -0.0005465510102897559, - 0.001126017898940246, - -2.7242720736448843e-05, - 0.00026359455865942826, - -0.0004406442050238486, - 0.0006475672252129098, - 0.0002929641703610347, - -0.0005262169061563443, - -0.0010189021260149408, - 0.00097334187538312, - 1.1713272297204534e-05, - 0.00016801842780532695, - 0.00014442304441898753, - -0.0001914997009489338, - 0.00047827785037080084, - 0.0009565638068624254, - -0.00037572934688003874, - 0.0006373739060454754, - 0.0001485568778846641, - 0.00045784227801091466, - 0.0017560107244036847, - 0.001062112757075371, - -0.00012307597315559424, - 0.0013700503038048973, - -0.0010338739858235795, - -0.0016064489152291797, - -0.0015214986246180288, - -0.0004516796074377677, - -0.001406311117635537, - 0.00017171558678154107, - -0.0011953640848637644, - -0.001162798514219899, - -0.0013175857638151915, - 0.000589039155345977, - -0.001078160024663273, - -0.0010325631585195705, - 0.001037398004138611, - 0.001006268919898633, - -0.0006620019691272174, - -0.000755584454685015, - -0.0012121411566341645, - -0.0011792863602358337, - 0.0011510442578840565, - -0.00016001085375047058, - -0.0020086205694999247, - 0.0005756590769975332, - -0.00047461326576962466, - 0.0003424871584379799, - -5.068509659808261e-05, - -0.002750446014535362, - 0.0004476669594509096, - -0.0011686585206789463, - 8.527795542095167e-05, - -0.000725035311685311, - -0.0006858502039205468, - -0.0005402299456086002, - 0.0015197782413391182, - -0.0016037470109849172, - 0.001228971033576755, - 0.0009784159135238033, - -0.0003730797581958307, - 0.001392952589024076, - -0.0013402296194790226, - 0.00023724176597592493, - -0.002548025696733544, - 0.0004990743269902598, - -0.0009306014688013388, - 0.0012490537256493464, - 0.0009391759758446267, - -0.0009269324968686817, - 0.0018910561699153922, - -0.0011685690581602186, - 0.001305763192443835, - 0.0011686562660375226, - 0.0005264572229459067, - -0.0009318227844787764, - 0.0025935043444918642, - -0.0005903062417527573, - -0.0005055207890601952, - -0.0013784797006071176, - -0.0003176910348217487, - -0.0002915913049609428, - 0.00023167100820991075, - -0.0009238454675503367, - 0.00020016162088905748, - 0.0009089278469927627, - -0.0001998603378291044, - -0.0008500445552444845, - 0.0009384615021167631, - -0.0003198651770531752, - -0.001513480488603884, - 0.0005430012738547329, - -0.0012975245496212656, - 0.00039906751476756524, - 0.00010906446782566544, - -0.001085592815453122, - 9.240047626576687e-07, - 0.0011321558717148244, - 0.00022973709993356534, - 0.0007380054442810125, - -0.0007105225857775492, - 0.00043655614897642196, - 0.001325047991682632, - -7.23190048685577e-05, - -0.0013807128902086538, - 0.0013782597818985246, - -0.0017592544058794195, - 0.00013246961620239442, - 0.00014835908410363815, - -9.320980173765385e-05, - 0.00026608738160467454, - 4.2060850780039125e-05, - 0.0007699428859252895, - -0.0007969145269672707, - -0.0005811811560706365, - -0.00036221173280415967, - 6.195895327673465e-05, - -0.0011746292661636564, - 0.0007395487996252559, - -0.00046155124436674606, - -0.0008692261101036026, - 0.00027684214400039187, - 0.000831656675159484, - 0.0003210437998208572, - -0.0009001533796827543, - 0.0003119040400805529, - -0.0010214049146049892, - -0.0007178402967970125, - 0.0008470213943201136, - -0.0010739678707690626, - -0.000632027381111631, - -0.001695849070878682, - -0.0011424210551945141, - 0.0010036353018308298, - -0.0009576455405852643, - 0.0011982106242567144, - -0.00012922205697599902, - -0.0005423830980146663, - 4.4410763432636786e-05, - -0.0016128495381276331, - 0.00021356979043925565, - 0.00012361067964964317, - -0.0004963803702842605, - -0.000286870419047933, - -0.0010153440292058873, - 0.0005784581011129553, - -0.0004862306228852396, - 7.115023792372913e-07, - -0.0007951769038633916, - -2.5234679689045223e-05, - -0.000789200106090274, - 0.0004744874878444661, - -0.0001469807680934007, - 0.0003337864187597869, - 0.0013455816202122657, - 0.00013328651269603475, - 0.0012208799999477143, - -0.0017552244437362965, - -0.0003635504432689686, - -0.00017218618477370004, - -0.0008979179727904772, - -0.0002835783846637198, - -0.0005455045393132228, - 0.0013607076997141105, - -0.002082369558957544, - 5.6526739563027796e-05, - -0.001311775774062648, - -0.0004237989249253054, - 0.0014254703456476928, - -0.001041540214614958, - -0.00018747660187978855, - -0.001659373295399059, - -0.0013648824114578636, - -0.000539199303293694, - -1.5716490660180112e-05, - -0.001571424984657331, - 0.0004557650825819907, - 0.0023047728985041717, - -0.0011915360908559454, - 0.0011284384384281222, - -0.0021974896232193155, - -0.00012190655306812161, - -0.0009609683626024671, - 0.0008861113907159418, - -0.00039439596094624534, - -0.0004035392259458014, - 9.77249410374711e-05, - 0.001171097638678426, - -0.0014614866416847827, - -0.0023706305505425953, - 0.000616538819811949, - 0.0006559934867000289, - 0.0009056443280160541, - 0.0005289300331050287, - 0.0005238446662181229, - -0.001167729582094568, - 0.0016646103145116407, - -0.0009242242120828282, - 0.0020063833023554935, - 0.0001958679927672027, - 0.000897435524820335, - -0.0013502600169854125, - 0.00022733894529760977, - -3.597081583303907e-05, - 0.0005389707654722979, - -0.001335750150059105, - 0.0014830355887469205, - 0.0006987424668797729, - -0.0016395926168627877, - -0.00017104390300926183, - -0.002105125109145218, - -0.0015862353409883344, - -0.0003336318116117689, - 0.0004592975013382164, - -0.0005769226134702296, - 0.0015366298094548877, - 0.00046599474232226427, - 9.108355284667814e-05, - -0.0006497549205896137, - -0.0017077538536295724, - -0.0005603847867407426, - 0.00107526646437577, - -0.0005157303797856112, - 0.001233473284580852, - 0.001068540123740629, - 0.0002299589067252797, - 0.00037042942494562814, - -0.0021274096652023028, - 0.00029504949264294903, - 0.001252515017511428, - 0.0005249322868945624, - -0.00012563844419058483, - -6.420361661204412e-06, - 0.00041156014461400756, - -0.0014266332937460523, - 0.0004571885931243682, - 0.00031600550870203813, - -0.001091737595238863, - -0.0011610954582798449, - -4.7789316591188e-05, - 3.264031254290533e-05, - -0.0015472204792091977, - -0.00026798783170150597, - -0.0001511284790345306, - 0.0005873694436950379, - -0.0015221440555692608, - -0.0004640380991045212, - 0.0002018951776379652, - -0.0009584782911787327, - -0.0004270648759612692, - 0.0002248408079108852, - 0.002403878979641503, - -0.001077835119795829, - 0.00033466322549883875, - -0.0006772999796775448, - -0.0016451813119650201, - 0.0010688589602941942, - -5.8705727848928603e-05, - 0.00027651453156628475, - -0.0005284925060082134, - 0.0011275113997189837, - -8.820382970785442e-07, - 0.00015318953168689376, - -0.0005910299176724624, - -0.00026906875117145655, - -9.550465395255359e-05, - -0.0007535153066987837, - -0.0011768408612542584, - 0.0001405050242092658, - -0.0004668281591479319, - 0.0002613579655953443, - 0.00016336373586865158, - -0.002201284636553629, - -0.001369919996967805, - 6.923343245565902e-05, - -0.001057787920061804, - 0.002658746642786994, - -0.00034985397579641834, - 0.0018569354480476611, - -0.0002995593876160338, - 0.0018883819152842576, - 0.0007286239706533124, - -0.00033155631107808717, - 0.0016669146126955538, - 0.0007411471092744235, - 0.0008199931751627794, - -0.0005167650227370157, - 0.0003228992238740413, - -0.0001689186911352006, - -0.0010428917224091906, - 0.0004317727476374062, - 4.8997884449605736e-06, - -0.0002609245237032913, - 0.0008475299731133343, - 0.00034696059444721525, - -0.0008165663259754706, - -0.0010307684311865511, - 0.0006632018182826605, - -0.0012064784351589876, - -0.0003380962117681935, - -0.0008167856736801236, - -0.0012550419551473656, - -0.00036349894946342755, - -0.0002709479433666242, - 4.570564870644525e-05, - 0.001119173644135882, - -0.00019706955373418532, - 0.0008942151813988654, - 0.0006092889364625752, - -0.0018518604359785268, - -0.0007801363215062589, - -0.0012109217780648463, - -0.0006675869972260108, - 0.00026937402512163086, - 0.0009707895788387451, - -0.0014152393635116064, - -0.0020646402425024543, - 0.0008224055849669529, - 5.809409901989981e-05, - -0.0009722533329097157, - -9.051000496810481e-05, - -0.0014140268750280982, - 0.0008445609080483868, - -0.0001404591864991749, - 0.0016932112053133774, - -0.0006736347957710686, - 0.0016444281737490285, - -0.0006318485406677922, - -0.00014320403129918118, - -0.001464832258889826, - -0.0008724890015361249, - -0.0011792488170112607, - -0.00046810335594260773, - -0.0013929460614931948, - -0.0020002362863349612, - -0.00035337126146897066, - 0.0014485578029318547, - -0.0010872606941081395, - 0.00022557844018416753, - -0.0003898358990301285, - 0.0009505175998131124, - -0.00044665394265089433, - 0.0006465619997771321, - -0.00018648989703152786, - -0.0014601770135696226, - -0.001832502726619807, - 0.00027153725886987977, - -0.00010118404023778225, - 0.0003346950141289312, - 0.00032289877074206784, - -0.0009570337259351765, - -0.0013172003099148647, - -0.0018116962882870913, - -9.815791676509704e-05, - 0.00158944665474074, - 0.00030043456821168477, - 0.0005225421542748357, - -0.00022201695182268107, - -5.8988648605874845e-05, - 5.05070902545005e-05, - 0.001973750389563704, - -7.907633933446141e-05, - 0.00020167516790068767, - -0.00038319431601139067, - -0.0005177885028191602, - 0.000707680427895486, - -0.001738574855986939, - -0.0007824473592890375, - 0.0010024383173027165, - -0.002385790602041235, - 0.000675163629704404, - -0.0018712456037061473, - 0.002508883528826264, - 0.0005911686341312642, - 0.0008455487761158251, - -0.0014438251927986312, - 0.00020860355088301566, - -0.0011447860280231086, - -0.0015333279718919449, - 0.0011915658858355105, - 0.0020782393083390127, - 0.00011198051084271635, - 0.0011373859028379779, - -0.001350125376407686, - -0.0012346986874262305, - 0.0010812287084859629, - -0.0007984440382699052, - 0.0005796686717404558, - -0.00015542099709495708, - -0.0006894703207805119, - -0.0009686192870839592, - 0.000322710798846816, - 0.0018272411983339153, - -0.0004954017712864569, - 0.000354697283456541, - -0.0013251738096943314, - 0.0010222304936301715, - -0.00030425588626439783, - 0.0013080447345485196, - 0.00014619797143304006, - -0.0004456149905167759, - 0.0011901745108431063, - 0.00012405812804903383, - 0.0015244088215721349, - 0.0005129690978546193, - 0.0008341323077625305, - -0.001348453112524988, - -0.00031805142730989555, - 0.0010549127667823304, - 0.0014958883848090621, - 0.0015330681100243024, - -0.00011207005630427747, - -0.001566530101635654, - -0.0018032818725209627, - 0.0009332880130416344, - -0.0009359593052546122, - -0.00044542641225763934, - -0.00039961875835402614, - -0.00025876738330229217, - -0.0006203186986090553, - 0.0003133987574947002, - -0.0006001650734256458, - -0.00023292998559040122, - 0.0007517074742714523, - -0.0016908965194552135, - 0.00019306259453549942, - -0.0008845730737573351, - -0.00013299503411031753, - -0.00031198125756343886, - -0.0014249573467262613, - -0.0006266068752766201, - -0.0016198418858858561, - 0.0003840127419975501, - 0.001057940865859032, - 5.1478213882934486e-05, - -0.0011220839439484544, - -0.0004435585070002041, - -0.0006918242001480291, - -1.7004773725305866e-05, - 0.00030821930144848107, - -0.0002254453480261391, - -0.0008317810736491877, - 0.0011032962638832194, - -0.00023160908083700283, - 0.0008561260131982691, - -0.0015236301375053036, - 0.0010905949251312802, - -0.001183017949769774, - -0.0009320376875815263, - 0.0014156143417732565, - 0.0005893830720484922, - 6.138838155621459e-05, - -0.0019346820562860237, - 0.0007014826671400803, - 0.0003142415324478897, - -0.001049833537697902, - 0.0012568474167563928, - 0.001666839021458411, - -5.55645460463762e-05, - 0.000511088521037937, - 0.0010741120051289764, - -0.00047751246949819486, - 0.0014336666034677182, - 5.923597755860424e-05, - -0.0004405371058588181, - 0.0017631698255019545, - 0.0014891991246543657, - 0.000671191768862472, - -0.0013768087236412192, - 0.00044194027544696904, - 0.0011087062404376948, - -0.0006617205399438123, - -0.0005311266477076879, - -1.4996067300701094e-05, - -0.0009059976141463964, - -0.001697208978300556, - 0.0002571255365437881, - -0.0007563077048614842, - 0.0005251901410253771, - 0.00015843597181181435, - -0.00041975911011112385, - -0.0010119247280206346, - -0.0009788134151498939, - 0.0003002542369643881, - -0.0006004217760403492, - -0.001322194068736953, - -0.0016357716433220298, - -0.0020944561216662194, - 0.0011782934671131615, - -0.0008386192699885863, - 0.0006735374852592861, - 0.0005884669937860998, - 3.7973194342348296e-05, - 7.117212881652593e-07, - 0.00016565560073791299, - 0.0013172166782534564, - 0.0004828849490980924, - 0.0006443152277012953, - -0.0011757814373769347, - -0.001172420673157601, - 0.0019944738118227623, - -0.0008966838027759502, - -0.00048462329303075943, - 0.0012424374347900365, - -0.0012552472624906303, - -0.0019435381009096685, - 0.00015618842931389504, - -0.001766275266508783, - 0.0006462315546167404, - 0.0011244167157799987, - -0.00010972614068870336, - 0.002689896303314174, - -0.0006111322157397351, - -0.0007667858107365548, - -0.0016712692168179182, - 5.412004690470506e-05, - 0.00046254325272930276, - -0.0015618210516999875, - 0.0013799549736921415, - 0.0013499693966829535, - 0.00010776512621007392, - -0.0014609955710615284, - 0.0003524331909124885, - -0.0009240720388424352, - -0.0016434613799638548, - 0.00019584342132907662, - -4.38857144838545e-06, - 0.0006766348669831565, - 0.0003563004450227359, - -0.00047206845200139234, - -0.0004696357761601226, - -0.0018393950089603953, - 0.00123827055173226, - -0.0002031529053108017, - -0.0010798129105231526, - -0.00039317131138190333, - 0.0011350454094995529, - -0.001302587845271164, - 6.852703710809603e-06, - 0.00028599188693672695, - 0.000496444256361345, - -0.0007069822185089001, - 0.0016743712804906088, - -0.0008684759481687485, - -0.0008487427740093168, - 0.0005226580902180344, - 4.391170854505993e-06, - -0.0019579663980877045, - -0.0005479062742152434, - -0.0014804589948013325, - 0.000492854054238702, - -0.001107963592576512, - 0.0004672043009378741, - -0.0002536590748337664, - 0.0004300698933806486, - -0.0012037545401560293, - -0.0005216421321872415, - 0.0007107390938022441, - 0.0011650987779034843, - -0.0005898107988298821, - -1.546014333512314e-05, - 0.000491099596698784, - -9.044799892249706e-05, - 0.0002155201432376369, - -0.0002912952251665199, - -0.0006751539904622633, - 0.0007496193535651406, - 0.00043642139320566333, - -0.0005830702489728463, - -0.0007402481769946396, - -0.0006037169602275561, - 0.0011124784548930393, - 0.00022890261732756652, - 0.00029024741899935126, - -0.0003985717216598178, - 0.0002471379513616251, - -0.0008049910072398091, - -0.0009991471057449394, - -0.0014977096870326999, - 0.0014043464039021375, - 0.0009845219031630757, - -0.0014267340230817121, - -0.00045968884808276946, - -5.045417489848357e-05, - -0.0007532787735143627, - 0.0002659439901625059, - 0.0007403594089500878, - -0.0007367601563325071, - -0.000500166617324631, - 0.0007530986724185119, - 0.0009624794291061736, - -0.0002547156451752992, - -0.00011422097232914301, - -0.0010916335859901046, - -0.0012802106239173999, - 0.001165612137315427, - -6.302690335409387e-05, - 0.00010988916278396325, - 0.0007541613187882303, - -0.0007225612179109085, - 0.000459511858165469, - -0.0005313219785328127, - 0.00021631909751409302, - -0.0007955847276842439, - -0.000555320124196391, - 0.0002581645629910318, - 0.00016013951836795832, - -0.0007778341559656935, - -0.0009402763161423552, - -0.0011685462744526467, - -0.000616943810623162, - 0.001163096746993999, - -0.0015057824883664553, - 0.0010838046633638606, - -0.0010761022627330558, - 0.00017932261577161443, - 0.0004510332056420507, - 0.00024191529015483017, - 0.0007314747240102491, - 0.0004890489282863995, - -0.0011889162174414298, - -0.002965319366728545, - -0.00031687492080809403, - -0.0005202039428569608, - -0.0008427315548480283, - -0.0004953038189363389, - 0.0008097799897668093, - -0.0013182942716431414, - 0.0008678921204563456, - -0.0011946207923934859, - 0.0004251998549652721, - 0.0007222151399180059, - -0.0007574790987053129, - -0.0013278899768822872, - 3.532147375241495e-05, - -0.0008189876046946244, - -0.0005471567319399351, - 0.0009404475330195687, - -0.0010698242290125945, - -0.0007713429431731621, - -0.001924075197783002, - 0.0011107473863522681, - 0.001628015888067412, - 0.0013219094781650369, - -0.0010415631520210268, - 0.00103874397275156, - 0.0012896609446942642, - -0.00013710953793715153, - 0.0011434486665764625, - -0.0009638637046775056, - -0.0016486853654534713, - 0.001847073710908596, - -3.5381648849352e-05, - -0.0005076868059552453, - -0.0008864426394391305, - -0.0005502917849373413, - -0.0019855824430706583, - 0.0013504809352575663, - -0.0017884792094615303, - -0.00010435687249831936, - -0.00032579282122069246, - -0.000552264809557111, - -0.0009713777214944953, - 0.0015012588623681297, - 0.0024085241520523984, - -0.0010755773656379941, - 5.240585023874854e-05, - -0.0016746593612316492, - -0.001998330919051664, - 0.00039333922783239936, - 0.00035543508230013814, - 0.00016786928594646102, - 8.365318813166225e-05, - 0.00017574861522526628, - -0.002128025646423551, - -0.0011139824425133286, - 0.001346710338149051, - -0.0011867300745318694, - 6.901131251748193e-05, - -0.0013560633863496374, - 0.0007152631887604502, - -8.19257708468745e-05, - -7.764265927996423e-06, - -0.0006242763970061982, - -0.0014123228361725816, - 0.0021352543108219347, - 0.0019018584823056778, - -0.0012257536257845333, - -0.0002787380014172321, - 0.0013784302490347073, - 0.0007933316535222377, - 0.0005536851349475697, - 0.0012667545658074835, - -0.0008542980214454717, - 0.0014164550270460868, - -8.188825359748137e-05, - 0.0011057937317037218, - -0.0004579972833305266, - 0.0019759396169832457, - 0.00023671444173836836, - -0.0006479110742040659, - -0.0006952906546346137, - -0.001242958459277651, - -0.0006196164620035157, - 0.000748917044095482, - -0.0031402749215855104, - 0.002328968315448374, - 0.0005585528429711661, - -0.0007680522557402593, - -0.001118001057733254, - 0.00027289131522390247, - -0.00011677828613901981, - 0.0006402823312548736, - -2.6314947756920998e-05, - -0.00031814112622779306, - 0.001026274418624827, - -0.0005360442989257233, - 0.0007743501736481109, - -0.0006400233727228167, - 0.001389845692397863, - 0.0016977714120310309, - -0.0011522537079529337, - 0.0007427360597758131, - -0.00019431262121114208, - -0.002307925400791318, - -9.691835984777359e-05, - 0.00038945554492841785, - -0.0011252677639962889, - 0.0006382854531880133, - -0.00022986049947354566, - -0.0017681468695916074, - 0.0008584653455235649, - -0.00027977674309138955, - -0.00013494582176214998, - 0.0017717883008355785, - 0.0004243804161196588, - -0.001758410296256517, - -5.3531292522205595e-05, - -0.0011455348154217548, - -0.0015195333116349188, - -0.0008112428345943193, - 0.0006458445908162844, - -0.0001297110278383502, - -0.00025862597376599293, - 0.0016470619274790627, - -8.799641812265091e-05, - 0.0010255015336604124, - -0.0007819608301250447, - -0.00046706433198085914, - -0.0006210114805287431, - -0.0001171121680949095, - -0.0019996192681773317, - -0.0009903875110455333, - -0.0006291255228541546, - -0.0011702326383388436, - 0.0005133691535410086, - 0.0011293983358915507, - -0.00022538337732269566, - -0.002690322788307109, - -0.00046118753310527694, - 0.0011067970384685349, - 0.0006909616188318791, - -8.586330315653197e-05, - 0.0005319489100457861, - 0.0008795096728694587, - 0.0008983058442672547, - -0.0009010508059654201, - -0.0009324818457325723, - -0.000251426437422946, - 0.0005540798231922045, - 0.001394302239686504, - -0.0004327494835712973, - 8.359533246959716e-05, - -0.000486994030819492, - -0.0007721033313263157, - 0.0010892392609620374, - -1.8470284889007138e-05, - -6.832867752449534e-05, - 0.0003078030390902178, - 0.00044943451259510305, - 0.00140143811426749, - 0.00030222863290916955, - -0.000997041552465023, - -4.860330256771821e-05, - -0.00038629806006626455, - -0.0009820533350101766, - -0.0019795056298089362, - 0.002039766299613987, - 0.0016971535992292672, - 0.0006144577850902023, - -0.0015287127347879835, - -0.00022435771980391846, - 0.0013726842261446548, - 0.001205868116234113, - 0.0003882971779328859, - -0.0003630642731265101, - -0.00018005760589443062, - -0.0005171882436995135, - 0.0002623427186700689, - 0.0006547922304915759, - 0.0010279574274200869, - -0.0007474879250976028, - -0.0011887268323717219, - 0.0002235814303979105, - -0.0002989861623901509, - 0.0001687795035112568, - -3.7750192468377386e-05, - -0.0004748175011862668, - -0.0009202889145062557, - -0.000576366234471941, - -0.00044854254666175267, - 0.0008145100068508442, - -0.00043862640010279477, - 0.000489371155589858, - 0.000632495624228503, - -0.0009568580938756118, - -0.001655362177090999, - 0.000368884614327432, - 0.001031914734284947, - -0.0008786961181983635, - 0.0007901092932825599, - 0.0013008038187761392, - -0.0006476034497598987, - 0.0010662309781318347, - -0.00048618875553453324, - 0.0006761675252363892, - 0.0014899672210504714, - 0.0009321772417872197, - -0.001115265370118991, - -0.0007370221328420697, - 0.0001939951520200955, - 0.0007228322527472319, - -0.0004740801872685909, - 0.0016669414245763469, - 0.000532545147209847, - -0.000866486420978933, - -0.0015220370379534877, - -0.000915875288708371, - -0.00017230063986769834, - 0.00033455375418458655, - 1.2761504127108089e-05, - -0.0011050110854828928, - -0.0006529608899428967, - -0.000977261063889561, - -0.0004085850165719011, - 0.0006219732246737598, - -0.0010300453244521711, - -0.00014346721977731005, - 0.0025458158220622337, - -0.00015818915418817453, - -0.0001512925993058257, - -0.0006710647389127765, - -1.4226634584470552e-05, - 0.0007627241057327817, - -1.7539687447882808e-07, - -0.000407848536001868, - 0.00033322543010855704, - -0.0003975417324531681, - -0.0008214387093193976, - -0.00026438726092081744, - -0.0008954512206935648, - -0.0005560222612452921, - 0.0005641009739520319, - -0.00013973183254269205, - 0.00024118603026133, - -0.0005242886993868193, - 0.00024927661502503875, - -0.0012350384831943987, - -0.00012031105955556779, - -0.0008105179111736715, - -0.0005438602420451438, - 0.0003585624187137639, - -1.9691734576183008e-05, - -0.0003401623079695742, - 0.0004356913448987959, - 0.00025310744888208767, - -1.8154820022515673e-05, - -0.0012357696690306035, - -0.0024398542529178373, - 0.0007458427386755208, - 0.0029723656102093794, - 0.00101439404079384, - -0.0003045898323480946, - -0.0008817913680220056, - -0.000536473657472427, - 0.0012848589221460091, - -0.000631958462277217, - -0.0015712609162657765, - -0.0005581566819470527, - 0.000909524620891231, - -0.00010571232719469245, - -0.000577906310315079, - -0.0005050886304045097, - 0.0007739515161671086, - 0.0007019731498433864, - -0.0012257595718126247, - 0.001040102145570094, - -7.132864470471066e-05, - -0.002758638332768898, - -6.2504945612647e-05, - -0.0002886221599925432, - 4.879132228719396e-05, - -0.0005410216892228016, - 5.664755187332765e-05, - -0.0021177263298933027, - -0.000521446732006969, - -0.0015433877994169476, - 0.0006652640079534236, - 0.0004721524019371097, - 2.446417750308e-05, - -0.0005704795152158806, - -0.0002644258103095601, - 0.0003348501453778205, - -0.0003537296248326911, - -0.0002473408330888895, - -0.0011463062403944287, - -0.0007639471557978623, - -0.0020397066823447567, - -0.0006667208534576593, - -6.538346035961254e-05, - 0.0010349463792220937, - -0.0005913513642882803, - -0.00050064845788181, - 0.00034680525828895397, - 0.0003713233169020859, - -0.0007287311952701942, - 0.0008264618157772361, - 0.0012579130792901854, - -0.0016768842933148303, - 0.00010215243782378773, - -0.00025933023512819887, - 0.0004476739865515094, - -3.2452358798958874e-05, - 0.0017364984832123494, - -0.0003088355844351299, - 0.0007165548851401546, - 0.0006794030372685565, - -0.00026830016449912164, - 0.00035520767232145086, - 0.0004505205038463487, - 0.0013878662851799426, - -0.0009651157074446609, - 0.00027927603629623974, - -0.0005729824208083198, - 0.0020865089850299326, - 0.0013954334153267328, - -0.000747235338967755, - -0.00019147083839164377, - -0.0011481556998546453, - 0.00011203530489975672, - 0.000507098995987054, - 0.0014074689877881432, - 0.000495921734864832, - 0.0003940880244665157, - -0.00045438665924027954, - -0.00141110570850031, - -0.0011548982231149349, - 0.0011936163281967747, - -4.438079535081007e-05, - 0.00024818846772494416, - -0.001204365483479111, - -0.00027291496179941964, - -0.0022840302044554333, - -0.0008207277214153418, - -0.0002588929487683512, - 0.00080013465119487, - -1.3846329697904505e-05, - 0.00020832423473967523, - 0.0014061138364044174, - 0.00015924115071744733, - 0.002884935230978148, - 0.00022627948393795424, - 0.0006374881990595433, - -0.0008387825144091459, - -7.311121192961104e-05, - -6.242347707448968e-05, - 0.00187282658576988, - -0.0010807191225005125, - -0.0010443086196210755, - 0.00034365972348360637, - 0.0007201857046996036, - -0.0006638601479759013, - 0.0005162198508624283, - -0.0021000372978128346, - 0.0018539067616853418, - -0.002418173358118292, - -0.0006210816432453734, - -0.0012484086617352626, - -0.0013720971957333417, - -0.001057004628036244, - 0.001327150731455201, - -0.0005304783336887162, - -0.00030294247320435623, - -0.00020775413648740687, - -0.00123532933376389, - 0.0006181749131966237, - 1.2286215596652995e-05, - -0.0008758611348415729, - -0.0009523019512271607, - -0.0008272361663481894, - -0.00032239126201635566, - 0.00031593713971486063, - -0.0007263497184945018, - -0.00047883713212109246, - -0.0007077196404737339, - 0.00042964453905918105, - 0.0031008313239819806, - 0.0018291344018613166, - 0.0009715658672340735, - 0.00044050371032138956, - -3.8120568019577426e-05, - 9.467382583228402e-05, - -0.0011715405050488003, - -0.0002642225073554886, - -0.0002831413601170628, - 0.0006656107974820398, - 2.4192526951252247e-05, - 0.0010860825939263046, - 0.0009483557603021193, - 0.0007245005182939123, - -0.0009869217076845143, - 0.0010054061375570252, - 0.00043122159710921333, - 0.00047258518018910515, - -0.0001144953843722841, - 0.0006976968864413928, - -0.0013180263281403583, - -0.0017904384630684183, - 0.00044778143662402216, - -0.0005438390940910225, - 0.00017739596046723998, - -0.0011931757509599456, - -0.0016015154378919137, - -0.0009319551520763031, - -0.001118244600562477, - -0.0010283494823786397, - -9.045040216802558e-05, - -0.0009566864611492281, - 0.0004645781372134462, - 0.0011961128039126266, - 0.0010004435137459004, - 0.0012509637965393396, - 0.0014548078527630505, - 0.000562111846858328, - 0.0011666056721754171, - -0.0010309369400074264, - -0.0003096840944356611, - -3.4813601704399434e-06, - 0.0019052472787834016, - -0.0002469811362834423, - -0.000710838190454529, - 0.001700521580540212, - 0.0008450706687185288, - -0.0013512785028660262, - 3.490364291156124e-05, - 0.0006848933787302693, - 0.0006019313208543064, - -0.0006442433770438197, - 0.0003420217430089088, - -0.00022939885264627166, - 0.0005858189575156193, - 0.001684057622844703, - 0.0004132382412010695, - -1.5663711606303616e-05, - -0.0009937458268765372, - 0.0003878496838505497, - 0.0007302171344655446, - -0.0017223767735327156, - 2.35860590376005e-05, - -0.0009672493551744433, - -0.0009728699196573109, - -0.0012461806956669832, - 0.00027631030570416564, - 0.0007535391281555478, - 0.0003064647323669487, - -2.371461674781566e-05, - -0.0008179021287712594, - 0.0015052117093500063, - 0.00035307185074147287, - 0.0019068211411674067, - 0.0018304851244056119, - 0.0004390829683127113, - 0.001246509079045788, - -0.00011179198670677987, - -0.0006746889166787881, - -0.0013747116916544798, - -0.0001699529428937045, - 0.0005526892350798526, - -0.00034164957478359894, - -0.0004160807500944538, - -0.0002511811055325934, - 7.4438320058676935e-06, - 0.000829250898337689, - 0.0008120322085116644, - -0.0005222226503834796, - 3.0563374265920256e-05, - -0.0013505192760733882, - -0.000555428259352187, - -0.0004906533223385204, - 0.0005778874298634359, - -0.0014970317558225593, - 0.00041906239979695937, - -0.00012904471852950202, - -0.00045165116843887923, - 0.00025275058524172465, - -0.000343884340262746, - 0.0006737763581805524, - 0.0004422038178064417, - 0.001008002621978233, - -0.0003267082383243184, - -0.0012032263328795479, - -0.001271063882510187, - 0.002430761546054565, - -0.0018830802825295803, - 0.0011142514575106328, - -0.0007574048074896078, - -0.00221250755772597, - -0.0013942629529973547, - -0.0021914600876275, - -0.0006573091561946921, - -0.0004008952375032805, - 0.0010450832353813707, - -0.0006146360345595191, - -0.0008217956598149591, - 0.00020763432560873973, - -0.002099365132781551, - -0.0007864878809446949, - 0.00024623799223369046, - 0.0014945673401221239, - -0.0010582210703269249, - -0.00057334760547793, - -0.00023723912688727186, - -0.0006029282540685396, - -0.00013325664115564014, - 0.0011849030762590771, - 0.0007053193767115062, - 0.0008511437503467388, - -0.0001556050527987345, - 0.0011807022751065019, - -0.000711785478305072, - 0.0002079385426378204, - 0.0006447065141516566, - 0.001728717506922432, - -3.459140567273596e-06, - -0.0012886644303519133, - 0.0006204140007165756, - 0.0011097806524510586, - -0.0008394106385837031, - -0.0010896771406601901, - 0.0002055042380243907, - -0.0005710275973330049, - 0.0005374544144143466, - 0.00023675512432205849, - 0.0019131333248153491, - 0.00016764968323277615, - 0.0014180598641240715, - 0.0013555636793632286, - -0.0005658080741394293, - -6.680359083227791e-05, - -0.0006006714659604499, - 0.0007977781586338788, - -0.0008916351395330824, - -8.480493192849597e-05, - -0.0004057182018990518, - 0.0007794366152221268, - 0.0011404025144028792, - -0.0001318210520623253, - 0.001358737930298102, - 1.7504903525627167e-05, - -0.00028313270356661465, - -0.000823715337935335, - -0.000980475533201444, - 0.0009722839333808718, - -0.0006368447357311601, - 0.00037776869883101894, - 0.0004932772008330653, - 0.00027640988985264895, - -0.0012657047463981485, - 0.001460021760934621, - -0.00079956039598664, - 0.0019518164359710864, - -0.0020480882871616026, - -0.00033867558820782466, - 0.0016593361793408872, - -0.00017032072424391173, - 0.0011099035948262848, - -0.00040478884766906634, - -0.00042925069130216606, - -0.0004544425002505395, - 0.0013145294845159578, - 0.0004323044462771728, - -0.00029044783146173924, - -0.00031975802503067074, - 0.0008568639387178843, - -0.0009396116788249674, - -0.0019517932513357914, - 0.0013338828263989976, - -0.00023042796714734426, - 0.00046499224656381375, - -0.0008181541839364678, - 0.0012392364601870975, - -9.250858551511815e-05, - -0.001354262921125492, - 0.0014315238312597775, - 0.0011686593960728057, - 2.92800741107468e-06, - -9.882016747069505e-05, - 0.0012682246245151482, - 0.0013874658171789977, - -0.0003053403822609683, - 0.0009423707737846188, - 0.00018668255752798778, - -0.0013726886299704139, - 0.00038373247896907953, - 0.0008984315462396426, - 0.0003177606925937664, - -0.0006344770182986663, - -0.0018955736178803858, - 0.0009261032286954861, - 0.0010838256417539903, - 0.0007936787358744954, - 0.00104140945097737, - -2.8608086928746788e-05, - 4.8551350259810986e-06, - -0.00024396898038086978, - -0.0017820204968956156, - 0.0015272065609673608, - 0.0006213820869624447, - 0.0007807446802621588, - -0.0015750601504556806, - -0.0013532779738164547, - -0.00132217881760164, - -0.001167085291857752, - -0.0003332727167782955, - -0.000819656427118478, - -0.0011985923180974118, - 0.0009193504105977689, - 1.657482204134852e-05, - -0.001030185335354717, - -0.0003603099346665549, - -0.0004277217041900134, - 0.00046857910970713053, - 0.000948302832277769, - 0.0006889060335972895, - 0.00038545638340238845, - 0.0006000758458547098, - 0.00029780817635434616, - 0.0015511382596874244, - -0.0012242847452293628, - 0.00041339455009258767, - -0.0016907408322776347, - -0.00020229622856363924, - -0.0005562920958496149, - -0.00024178111753815713, - -0.00026909895243535986, - -0.000153229828093041, - -0.0019971539638854803, - -2.8111990717636553e-06, - -0.00041129388026663884, - -0.0007798247838042773, - -0.000964381070741032, - -0.001708771508768478, - 0.000209956523523064, - 0.0003684710928003263, - 0.000778444978932481, - -0.0007174744293298933, - -0.00021238117121722175, - 0.0001803376294919729, - -0.00020582555333386842, - -0.0009012011269616304, - -0.000504098023273374, - 0.00031501237047599145, - -7.689198181080844e-05, - -3.7671562256939526e-05, - -0.00026764163274383226, - 0.0006005133567684967, - 0.0004853241095290779, - -0.0012029957704080164, - -0.0014325485145697844, - 0.002993949472235, - -0.0003620032805957703, - -0.0006297362646579567, - -0.0009118735023631236, - -6.852359655089681e-05, - -0.0007468341861482618, - 0.0008210491632307305, - -0.0002647986742171915, - -0.0006177438498283164, - -0.0016049293050332555, - 0.0009190512212611904, - 0.0008581676697718174, - 0.0017292515423096451, - 0.0017149808737023035, - 0.0006360929223596432, - 0.0007161801502839405, - 0.0007626784523145233, - -0.001095467083851264, - 0.00012435786648691172, - -0.00011555614306440314, - -0.0006166284049651818, - 0.0011827806805636402, - 0.0022164559578443815, - -0.0005915989914627318, - 0.000829007106436571, - -0.0010957797201085696, - -0.0006051559417198262, - 0.00045095740208995946, - 3.531384611455947e-05, - -9.094145938269104e-05, - 0.0014000534236708266, - 0.0007521188384626358, - 0.0007153253792659444, - -0.0002648118480983928, - 6.003881622610324e-05, - -0.0005529104277095967, - 0.0005874355369324088, - -0.0009511266695491797, - -0.00035777284342688575, - -0.0015854167289693682, - 0.00018698956663336494, - -0.0007328418298526353, - 0.0001316048829696246, - 0.000757184987446719, - -0.000805889374782225, - -0.002138861826812011, - 0.0007473215081800059, - -0.00022213994331634148, - -0.001881820645853862, - -0.00027789272736654293, - -0.0017801221342786118, - -0.0005720447911934632, - -0.00167769196408522, - 0.0003690656134487389, - 0.00017418473571693269, - 0.00041663377767827445, - 0.0001869017337028043, - -0.002241155152121093, - -0.00011844274426203282, - 0.0010222855913072516, - 0.0004641563026056224, - -0.0015096243547540055, - -0.003447759915576986, - -0.0006620961305787232, - 0.00012451943923283933, - -0.0011706718145618313, - -0.002063040607077128, - 0.0015990614266221696, - 0.00016601817815171458, - 0.0017210202108421725, - 4.165654665882768e-06, - -0.0009766469042327582, - -0.0003661357585704758, - 0.0002744758136995018, - 0.0007937883987289522, - 0.0001488567203626288, - 0.0013133640886428015, - -0.00034962518397016267, - -2.9988108540480638e-05, - 0.00017983350917084352, - -0.0006530537475441375, - 0.0005246066947443484, - 0.0017828861018231894, - 0.0006306377641917642, - 0.0004410945389217925, - -0.0003175077485103441, - 0.0006306685632973827, - -0.0008191679294877645, - 0.0009229936922969941, - 0.0005807470385558711, - -0.0013674878817095352, - -1.3241727281946652e-05, - -0.00015762195738423175, - -0.00015177243655661334, - -0.00064058185089437, - -0.004547389312335607, - 0.0007483399988261184, - 0.0005702969147107015, - 0.0009773588867529627, - 0.0003423435128766432, - -0.0002625653155174575, - -0.00031482826164163437, - 0.00018526295955415087, - 4.239177129258917e-05, - 0.00011185787215649282, - -6.885744602211436e-05, - 0.0002811009342160298, - -0.000804364591477443, - 0.0018630706627101748, - -0.00028024854737444046, - -0.0009483964962285911, - -0.0002828223957102227, - 0.0003290542536610035, - 0.0001974099710675222, - 0.0005063060939168833, - -2.6629373095468588e-05, - -4.258160118863519e-05, - -0.00037247415090136093, - 0.000666586717517507, - 0.0006489790477709541, - 0.0002518701052772884, - 0.0005870773418430393, - -0.00015285316184242121, - -0.0014685496390975218, - 0.0008082221103455287, - -5.215585301251372e-05, - 0.0002276062942326051, - 0.0007653660309594947, - -0.0003989208678090116, - -0.001429519348042239, - 0.0004610127079624122, - 0.001734449572528896, - 0.000304871671794506, - 0.0006869272074524876, - 0.0005772569209955939, - -0.0003944398243737907, - 0.00028464599079496233, - -0.0010547335089142913, - -0.0023715965829538116, - -0.0001672198280360264, - 1.2438302759605925e-05, - -0.00016848873451173155, - -0.001100879771389765, - -0.00037933077084595444, - 0.0016048184466224166, - 0.00062519031971132, - 0.0006887066806539144, - 0.0014222309135546883, - 0.001367158064927426, - 2.2464771107335388e-06, - -0.001156238229405535, - 0.0004664611736097933, - 0.0015112294240859434, - -9.674611327244016e-05, - 6.201769588524527e-05, - 0.00022150424455040336, - 0.0003942278250397631, - -0.0008422575742815428, - 0.0005089614644644557, - -7.924981931127684e-05, - -0.0006159637200847403, - -0.0027172534566329877, - -3.3843155513904916e-05, - 0.0006460772871898708, - -0.0003321922196960838, - -0.000579955326101305, - 0.0003598417910546424, - -4.141032074335977e-05, - 0.0007971651520136431, - -0.000406211122847416, - -0.0005858982782360223, - -0.00045030513649173536, - -0.000430953659531443, - -0.002054196270823806, - -0.0015815285271087577, - 0.00032900694013256415, - 0.003252524700226193, - 0.0011329673382795673, - 0.00039364852270839206, - -0.0009277289852963542, - -0.0006828062522035569, - 0.0003690436359098137, - 3.9836740669592434e-05, - 0.0006220310741713028, - 0.001733126766472183, - 0.0017008345638592041, - -0.0009834894412350797, - 0.00085521417015129, - 0.0001754892847305609, - 0.0008873397952794168, - -0.0010656788634051814, - -0.000717185276741641, - -6.519952605162523e-05, - 0.00013701233517089207, - -0.0004687934379587716, - 0.001452526405902049, - 0.0004823373203801662, - 0.0001456236392246434, - -4.111853528292024e-05, - -0.0009841656763098774, - 0.0010335062113527003, - -0.0002236724476115369, - 0.00020040403930375608, - -0.0017338516692131651, - -0.00032447662631117683, - -0.0006301821164014605, - -0.0002186845396009933, - -0.000666736286609068, - 5.849895999841235e-05, - 0.0014955893918558458, - 0.0009779585571321294, - 0.0017323312784542249, - 0.0006026469149096864, - 0.0006926850688333936, - 0.0009021144114599754, - 0.0011434475429341932, - -0.00010271254954466379, - 0.0015438993313507776, - -0.0006227680106420487, - -0.0008931380869621708, - 0.00012162653385611421, - -0.0013277150379399768, - -0.00033027373165638637, - -0.0014017175548458373, - -0.0016133176547854094, - -0.0002589788939610518, - -0.0013900136704975052, - -0.0004668571276084065, - 0.0006449589718860964, - -0.002570339635791466, - 0.00010798327481404098, - 0.0008080484054208714, - 0.00017373826262635526, - -0.000906993478312204, - -0.00027358730220838635, - -0.0013705670544977013, - 0.00013279966847072825, - 0.0008882534125636689, - -0.0011219798696030705, - -0.0003365369821848104, - -0.001430323947185702, - -0.000236776771244099, - 0.00018219975898133014, - -0.0010543627729059954, - -0.0006003153461869849, - -0.0013972510351201518, - -0.00015295349263200748, - 0.0010268535254597166, - 0.0004229237871274475, - -0.0001231706446278738, - 0.00028696324119712634, - 8.074617669703743e-05, - 0.00027510250790876344, - 0.00023347526053902115, - 0.0011141515375826623, - -6.13114214716939e-05, - 0.0004416537823150252, - 0.0003279250627716459, - -0.001593889065862533, - 0.0004152035435089171, - -0.0022019557015416566, - -0.00035739787185864373, - 0.0007910067633969737, - -0.00039120093805608287, - -0.00016700429193521488, - 0.0013558242942374888, - -0.001043592859883629, - -0.0007715039469392828, - -0.001281244524365697, - -0.0017096151487134893, - -0.001989919635802587, - 0.0005934217065845377, - 0.0001514219543865642, - 0.0006050138796212148, - -0.002563805250812938, - -0.0004994638900801665, - 0.00010685764599246785, - -0.000859358968158293, - -0.00011295588227022859, - 0.0012798599336092638, - -0.000619900740170971, - 0.0008693447382966856, - -0.0010118200181964915, - -0.00020113863703193516, - 0.00036309004572915315, - 0.00042733378885638387, - 0.0006769410162165005, - 0.0007510296476993637, - 0.0001071251641358932, - 0.0012213731416612032, - 0.0005818578460489729, - -8.53196079457028e-05, - 2.7779285542452333e-05, - 0.0010644177034033091, - 0.0009223366953778967, - 0.0011684023886592365, - 7.126389089478694e-05, - 0.0006248172328380034, - -0.0009776543716751552, - -0.00017514322134316325, - -0.00044566784546037013, - -0.0003016868587015706, - 0.0001496265788837886, - -0.0021272756998965536, - -0.0011498467527416532, - -0.0005479691797041497, - 0.0004640064489772062, - -0.000775772333316248, - -0.0017336751300126834, - 0.0010703382420402246, - -0.001613709215918669, - 0.001364559262666928, - -0.00018448345213026656, - -0.0011365513296986494, - -0.0004453747421833298, - -0.0015405207074921255, - -0.0006492551297850991, - 0.0012282168291311035, - 0.00249779521827404, - 0.00035644517447722655, - -0.0005873805898332673, - 0.0015715519651690745, - -0.001827179018176316, - -0.0021803448184230076, - 0.0017527578661582343, - 0.0014886389477435944, - 0.0018068688440196876, - 0.0009944774026927196, - 0.0006519427848099123, - 0.0001130913169944083, - 0.0007420962959602082, - -0.001192009477345209, - -0.00014038874499314706, - 0.0007961022123805551, - 0.0015804954775178902, - -0.0013597682613170387, - 0.00012146775744695528, - 0.0011955486238995664, - -0.00023688814360054905, - 0.0015411716602728412, - -0.0013504531475712024, - -0.0016576864876076149, - 0.00032804475116345337, - 9.609720152156147e-05, - -0.0014791323485253492, - 0.001130928963676504, - 0.0009008933201425466, - -0.001069943990533748, - 0.00035109135430534536, - 0.0001617409369071414, - 0.0009929283750696734, - -0.0019933216485601988, - 0.0011544310277613464, - -8.216207000587378e-05, - 0.00040407399536012496, - -0.0005613945225975695, - 0.0004084654850045068, - 0.0005274568304290489, - 0.0004048471137085154, - -0.0016231135383607755, - -0.0009240666234638355, - 0.001528498765175012, - -0.00014261181485929387, - 0.0007158690694575806, - 0.0002222657898971746, - -0.0005560101045635813, - -0.0003300251149412593, - 0.0005641877760495651, - 0.00011283859964093985, - -6.750553146935031e-05, - 0.0007386728231566968, - -0.0005078415591956666, - 8.66042827128872e-05, - -0.0001960055618761679, - -0.000581764560596353, - 4.618566628245116e-05, - -0.0002856222025395172, - -0.0003695396642949839, - 0.0005864310168160723, - 0.00037029795360115226, - 0.00042826787548423835, - -6.696540430557126e-05, - -0.0010113299382498758, - -2.6437134525464727e-05, - 0.000475570107639907, - -0.00015417812601764162, - 6.955047329896958e-05, - -0.00024019941443156306, - 0.002155839115552876, - -0.00047865206050905603, - 0.00025506567820752, - -0.0006886489541706588, - 0.0001049616756503368, - -0.0009057669259777711, - -0.001745639037248259, - -0.0007583494784633564, - -0.0014854832364669416, - 0.00042741060615999246, - 0.0011210656862417781, - 0.0010771680571965542, - -0.0005940601898440773, - 0.00023282470626169043, - -0.0004939378446396081, - -0.00012206277611932301, - -0.00028822221269659187, - 0.0007450446891551752, - 0.0005455189361281334, - 0.001686559950288782, - -0.0005415553475114997, - 0.00013359418969895152, - -0.0014805558210369918, - -3.607852321302212e-05, - 0.0003517592314170008, - 0.0005450132805093073, - 1.6123367224758727e-05, - 0.00167721826039969, - 5.1838547219759565e-05, - 0.00032243969520022334, - -0.0015422787095107152, - -0.0008429555972484439, - 0.00031045718349575487, - 0.00043597371473418404, - -0.0008395039695238422, - 0.000846524103037253, - 0.00015568755979893727, - 0.0016138130961674067, - 0.00046490611570457137, - 0.0008466788719332901, - -0.0001546043319834549, - 0.0012170951215115392, - -0.002203396340548084, - 0.0005676951823225534, - -6.973416218935e-05, - -0.0001279190157580554, - 0.0002298584339599869, - -0.0006407569623242853, - -0.00021392615975133328, - -0.001452790718613639, - 0.0006866708482776632, - 0.00020071099789308717, - 0.00011545871238762509, - 0.0005407236614474292, - 0.0010621199107637893, - 0.0005372005812556246, - 0.0008867661943879163, - 0.000606133293793353, - 0.0005067894064325072, - 6.427250815460962e-05, - 1.686076649652803e-05, - -0.0003891341116978222, - 0.0001306411013463997, - -0.00026270334688524604, - 0.0008189155399351536, - 0.00028224294638544157, - -0.001980808995634932, - -0.00028248762447578623, - 0.0029837361308594225, - 0.0007606144087202671, - -0.0001905036279393007, - 0.0005037394601424129, - -0.00026318983622332544, - -0.0008174732544828832, - -0.0015172712126609866, - 0.0012357238634332626, - -0.001059711398871884, - 0.0011125834809440208, - 0.0017886868911540289, - -0.000406072695871923, - 0.0019010136596766646, - -0.0005359693801552957, - 0.0006643590620696347, - 0.000738804488196115, - -0.00013763282495980145, - -0.0010207810416890722, - 0.0018681911183042498, - 0.0008236210280173357, - -0.0007924841475395541, - 0.0006827458685385655, - -6.766705778297985e-05, - -0.00024049959455518254, - -0.002099108448635207, - 0.0006538766842983337, - 0.0009205568733248322, - -0.0008426851305738472, - 0.001329205882519235, - -0.0012003098486521513, - -0.000247430543716899, - 0.0007764234365333308, - 0.0012313004152442494, - -0.00011275303616507373, - 0.0004916123698238203, - 0.00017304233589874078, - 0.0014563260521059816, - 0.00020613278948085646, - -0.00024736637640601893, - -0.001282626540373717, - 0.000575568561767707, - -0.0005476221348777163, - 0.00045996151200531656, - -0.0014020958360612798, - 0.0006022476204569445, - 0.0004844432333161336, - -0.0021511003248460944, - 0.0017234132614931997, - 0.0004114070897078273, - -0.002137122566736849, - -0.0001997268312265673, - -0.0013671461817303134, - -0.001487682713358485, - 0.0010777912789505214, - -0.00023850310382043973, - -0.00042031331974865877, - 0.00030354165781029967, - 0.0016833847077107234, - 0.0003570563723658346, - -0.0017591840546856334, - 0.000343504174356244, - -0.0006003728511955347, - -0.00011565534368863006, - 0.0011346378483738265, - 0.00030088765368152466, - -0.0018698823666565706, - 0.0006519593674524669, - -0.0016291023334860481, - 0.0008090533336898635, - 0.0004519011149652621, - 0.00042561510614540926, - -0.0003425744328363681, - -0.0017437822666203288, - 0.000655707045200793, - -7.98693332223755e-05, - 0.0002740200417408572, - 0.00024031904843052637, - 0.0012125903535460643, - 0.000509882787731211, - -0.00019815534727524048, - -0.0001874458317888694, - -3.8693776245946e-05, - 0.0007939903982271179, - -1.1166617544868962e-05, - 0.0010748473032866734, - 0.00033614034323485635, - 0.0003219714583667302, - 0.0008782834466916261, - 0.00014408012245444276, - -0.0020816718276324394, - 0.0009017646153014543, - -0.00034155348642914005, - -0.0001979996699972824, - 0.00026478491989228263, - 0.00016389838902736636, - -2.3636965356704543e-05, - 0.0006562774514530538, - -0.0002478456481626174, - 0.0009518499481216962, - -0.0004904260292678337, - -0.000816578800785645, - 0.0003545288221264898, - -0.0006514491359825207, - -0.0024486104622912226, - 0.0005599528491975854, - -0.0011072122342328328, - 0.00014837309811687897, - -0.002612606251736258, - -0.0005197079846079872, - -0.0013050687875456957, - -0.001751544812966111, - 0.00017469664247108703, - 0.000631738094026399, - 0.0006283761248935814, - -0.00016914387698662803, - 0.0020091342374582745, - -0.00046582031755441883, - 0.0005349499896444884, - -0.0005958905269353753, - -0.003049906741742745, - 0.0001334577410457911, - -0.0013776278642091677, - -0.0007525448825075829, - 0.0010637697143727818, - -0.0007311650868396014, - 0.001533744157617771, - -0.0021307628959736586, - -0.00024184144310329648, - 0.00046028159943768275, - 0.0016714313746068658, - -0.0004600033053147848, - 0.0024618577087883206, - 0.0005746897227176416, - 0.0012321156579321781, - 0.0008022042267077748, - -0.00136916135318692, - -0.0011590507931122488, - -0.00014425345732665425, - 3.811326918273558e-05, - 0.0010042135400547955, - 0.0003950783985002049, - -0.0007038476189176773, - 0.0005172405093414469, - -0.0022216452141212923, - -0.0013795945669780253, - -0.0003168946711747425, - 0.00041218411258851686, - -0.0010332735112023091, - -0.00035286470791737396, - -0.0012130047434862456, - -0.0002861845544779194, - 0.0011333803732407409, - -0.0009126956195560145, - 0.001449556252227297, - -0.0012609217747168958, - 0.0014488875747643106, - -0.0006013758182214256, - 0.000534855117806083, - -0.0009934747511912976, - 0.0008127041880463721, - -0.0002512758983296455, - 0.0006052555084016666, - -0.001299095689675388, - -0.0004243573610106627, - 0.00044200526339648006, - -0.0004477170747311761, - 0.0023022530525180743, - 0.002230631258046834, - 0.0012111484481848887, - -0.0007800183263891477, - -0.0008935087837518506, - -0.001551166176289365, - -0.000531294977189869, - -0.0010983712194166143, - 0.00037017729851600815, - -0.0011301158236181313, - -0.0003785102798099967, - -0.0003504252819181578, - 0.0004040212431861572, - -7.936413196008992e-05, - -0.0010094699319665376, - 0.0002591652942173808, - -0.0014350439532396142, - -0.0013811415451450042, - -0.00012766156708075738, - -0.0010126363019048732, - -0.0010987252329668967, - 0.00031106469674046643, - -0.0006711729898131733, - 0.000379591375000637, - 7.781577156908354e-05, - -0.0018183459872836776, - 0.0003841310558223759, - -0.0006040178373487814, - -0.0011043909844607224, - -0.0021909902441164136, - -0.00047501790340125, - 0.0006675579823143807, - 0.0019021043528006816, - 3.714033228643715e-05, - 0.0014479954380779445, - -0.00012710726733887679, - -0.0015715960298662692, - 0.00032137292773294515, - 0.000531462207406494, - -0.00031848246876399385, - -0.0002768749898248883, - 0.0005165899754396742, - -0.00034438606218021705, - -0.0006064995492828774, - -0.0008909382560297477, - 0.00026117705129498494, - 0.0007273303455388274, - 0.00022401310240307185, - 0.0006394408299721596, - -0.0015935904891197232, - 0.0009110305263326627, - -0.0005700784828760384, - -0.0002715900086608603, - -0.0005887172576238642, - -0.0011232300797108432, - 0.00020636861601958684, - -0.0009616010008257574, - -0.0012669958053551657, - -0.0005885582043357294, - 0.00020897182243324267, - -0.000959397115475028, - 0.00010856466701062642, - 0.00028398995255557696, - -0.00041303439041869114, - 0.0005411052873780142, - -0.0002765820044968376, - 0.0006704440613260332, - 8.781339184784648e-05, - 0.0005662543011338334, - -0.00031646200949022235, - -0.00024343369845137482, - 0.0010878610421228637, - -0.0004588775863622431, - -0.00011985719883461266, - 0.0008442654397340134, - -0.0012315705359153583, - -0.0010311115913504475, - -0.0007069052316196097, - 2.8181203533652585e-05, - -0.00043571494967194294, - 0.0024560073619745233, - -0.0010783261348484665, - 0.002278037214508487, - -0.0009707431735311975, - 0.0006146042958471991, - 0.0002913545089495576, - -0.0005637156128290234, - 0.001103539125851487, - -0.0013232382860023735, - -0.00107247175960313, - -0.000326188912131149, - 0.0003988818470742366, - 0.0009492046869981389, - -0.0002672947769531955, - -0.0004434213966256988, - -0.0008090265799608669, - -0.0017172047027175935, - 0.0005943575267253121, - -0.0010944240165823337, - 0.0008950168515578611, - -0.0018083026578711932, - 0.0007735266881726227, - 0.00045661347095717216, - -0.00031787266236213234, - 0.00037684661855323415, - 7.8211370199443e-05, - 0.0014426651491485016, - 0.0009302344521396411, - -0.0006831411918080222, - -0.0010592310402334206, - 0.0010625566420073018, - 0.00022438221642632594, - -0.002545182893545276, - -0.0010298512312053947, - 0.0007309410435894754, - 0.0020586323043840188, - 0.0014407376641822993, - -0.0009250274475067165, - 0.0017235811590777933, - -0.000980372000310425, - 0.0006149283374008959, - -0.0011730140904961826, - -0.000691382236281441, - -0.0009043836287041543, - -0.0006189638959515517, - -0.0018165777805601992, - -0.0006746725462277243, - 0.0005497729761078417, - -0.0007541038312810712, - -0.000539171554323943, - -0.0008261239939366896, - 0.0007037953950250393, - -0.0015012993776178005, - -0.001148218820618905, - -0.00015380580826987195, - -0.00014825677376547935, - 4.234503408834257e-05, - -0.001033971231316211, - -0.0005993886200943695, - 0.0006043462715699102, - 0.0013671610172109648, - -0.0010622262383214573, - 0.00039376776592710624, - 0.0007169442751615891, - -0.00134623861057806, - 0.0006170969771756024, - -0.0016994899801992252, - -0.000551988149443333, - -0.0004504963532371277, - -0.0017453677260756365, - -1.049747499597115e-06, - 0.00010388558741759114, - 0.0009273977589611254, - -0.0013938367341308085, - 0.0006153732621742716, - 0.0006892820684216541, - 0.0005203805117182435, - 0.0010046298614107899, - 7.934612278123255e-05, - 0.0007500172776441808, - -0.0007673636281878511, - 0.0016497175049025006, - 0.0005044231037262375, - -0.0006738386694832616, - -0.0010590183143952916, - 0.0011117508887432753, - 0.0007287784762530187, - 0.0007814715340947253, - -0.0003614136596108838, - 0.0010188945481752634, - -0.0001285338743120592, - -0.0015864968524403, - 0.0005471134959944974, - 0.00034556200741898984, - 0.00013371407754651744, - 0.0007108917338260236, - -0.0010783543757390877, - -0.001819093978649623, - 0.0010936756727600873, - -0.0011136479257820272, - 8.345712079500453e-05, - -0.00040865865204954923, - -0.0015390495936283908, - -0.0005559765337531427, - 0.0010855557955597236, - 0.0009711229331284171, - -0.0006542785420845351, - -0.0003316037812930179, - -0.00041241101860674674, - -0.0014223153437623991, - -0.0005328118950163661, - 0.00023996073824376676, - 0.0009448414636823834, - -0.00011166050143105062, - -0.0003052556288133003, - -0.0023554733683203103, - 0.0014312547680234637, - 0.0006000350565746711, - -3.714085943671918e-05, - -0.0011525487336037708, - 0.0006537875139123856, - -0.0003828410781647132, - 0.00030181527583802526, - 0.0004669966117612081, - 0.0007329643941865413, - 9.232419392843498e-05, - 0.0002921762426024057, - 0.0011236527287117294, - -7.504088357427533e-06, - 0.002184067200951576, - -0.0010912405656912654, - -0.0008801687008501962, - 0.00014500703434205427, - 0.0008952627573685951, - -0.00019349390362763099, - -0.0016415708802948905, - 0.0002787535161206335, - 4.8893543842009527e-05, - 0.0004337946379415611, - -0.0005093494281348633, - -0.00032740111832116445, - 0.00024318101632667187, - -0.00020522484641150485, - 0.0016706269360230112, - 0.00028524331100041966, - 0.000762239534173977, - 0.0004977990062561232, - 0.0006699845072259462, - 0.0007304235162479322, - -0.0006735113759303084, - -0.00021840317007459562, - 0.0008883172587778841, - -0.0015856199409986882, - -0.002313223074195752, - -0.0014317800451241203, - -0.0005957049986428703, - 0.0009290270167330444, - -0.0005671517247736687, - -0.0005070730726779524, - 0.0003501207286971073, - 0.00027570082148266394, - -0.001917081821673035, - -0.0015175440083162403, - 0.0010236138374225844, - 0.0002157179638319508, - 0.0007975587742064623, - 0.0004736134780106358, - -0.00010063345919316556, - -0.0008684771374499277, - 0.0009332960924079928, - 1.9705343517436354e-05, - 0.00025856590797286973, - 0.0009376588607121297, - -9.731547134326642e-05, - 0.000273094204911284, - -0.00200708973035301, - 0.00038798614642155283, - -0.0007212004696336145, - 0.0006584934356844576, - 0.0006157839087523275, - 0.00027924079134863174, - -0.0013090960681031612, - -0.0007539681523178859, - 0.001346808947943065, - -5.807300278962847e-05, - -0.001677938160364311, - 0.0012061346959519254, - -0.0013524472630156443, - -0.00013598285758982005, - -0.001816486502685255, - 0.0009688060336675568, - 0.001152108141096894, - 0.00031858405222606387, - 0.00019286365112279776, - 0.0004995921134417835, - 0.000266645942669966, - -0.0010728618198342337, - 0.0011236010522233818, - 0.0011840254266434738, - -0.000903209440091496, - 0.0007691465115700385, - 0.0006120190918389613, - -4.83737616484442e-05, - 0.0009537955186751425, - -0.0006314559857536174, - -0.0003862553527579608, - 0.0011060465378146666, - -0.0014592666309134411, - 0.0004097247169181922, - -0.002146546048780558, - -0.002024885959424289, - 8.00970818962127e-05, - -0.0006282530962399216, - 0.00018639352655002995, - 0.0003493978034192079, - 0.00101272559057608, - -0.0007603956846124231, - -0.0015988664442959238, - 0.0018641995007130882, - -8.227787940312691e-05, - 0.0012373453604435543, - 0.00010368505709737686, - 0.002160305630963913, - -0.0016378342693188792, - 0.00029554223818679937, - 0.0012575603936735519, - 0.0007935452949030279, - 0.0005595736564499334, - 0.0001408234206890574, - -0.001049758082408689, - 0.0007086111728409778, - 0.001086095069066735, - -1.912313813340791e-05, - 4.846729844376743e-05, - 0.002226658219879339, - -0.001226939979571586, - -0.000591517678879841, - -0.000898470016045559, - -0.001424125898789372, - -2.0235861632433783e-05, - -0.0003615780252837717, - -0.0005992772808241735, - 0.0004949700312295773, - -0.0011608779406833926, - 0.00010193779697329936, - 0.00012528739595648588, - -0.00011796153549797688, - 0.001449545990659129, - 0.001303393050657159, - 0.0008647739752813645, - 0.0001940923506920736, - -7.047647107844528e-05, - -0.00016949725406650227, - 0.0016632065472568986, - -0.0019691936381747792, - 0.0006221848477745029, - -6.430528758893468e-05, - -0.0010989414927665162, - 0.0001382726984540817, - -0.0002463098980138465, - -3.269177328653423e-05, - 0.0008517995745124425, - 0.0005799453986748508, - -0.0014760539754785447, - 0.00020957247833652172, - 0.0004155634886693338, - 0.0009522947305731926, - 0.0011811297609686455, - -0.00017203909368591433, - 0.0010563054787376966, - -0.0015856986802793508, - -0.00024029211513475454, - -0.0008717826882013514, - -0.0007113213441722768, - 0.0005374444766668242, - -0.0011559206150949393, - -0.0011091809298442354, - -0.0005130394261504754, - -0.0012509338867295503, - -4.354159063450881e-05, - -0.0004059141536198144, - -0.0003188107789645607, - 0.0005741775545525925, - -0.001586122135119042, - 0.001016426630938794, - -0.0001715125292731326, - -0.0005162067721361833, - 0.0013326833961365076, - -0.0007370631348900469, - -0.0012693648393348525, - 0.0013457161941120232, - -0.0006546746891893021, - -0.0017823126012295259, - 0.0006614073870575257, - -0.0005954213809106909, - 0.0011692451291164202, - 0.0008857647534221197, - -0.0011256943908085734, - 0.00253684466588295, - -0.0005127455443453754, - -0.0012390799271174977, - 0.0007286513798194811, - -0.00045726064667404604, - -0.0006404012347334183, - 0.0007867712041132871, - -0.0015682890408613098, - 0.0003342702318860321, - 0.000959934371591248, - 0.0012214126186122654, - -0.0005333712515278673, - 0.00015670423285520037, - -0.0006852177303000547, - 0.00045833666354656497, - 0.0013490534003401593, - 0.0004497115704185581, - 0.0012794529670471513, - -0.0006831004839149335, - 0.0010763029670125394, - -0.002003090529785092, - -0.001972565284389185, - 0.0022109763329381253, - -0.0007277539164857785, - 0.0006493605170702112, - 9.751820621608334e-05, - -0.00176760550214289, - -4.805537993639445e-05, - 0.0016253893611017616, - 0.001542800997507203, - -0.001061936344294227, - -0.000538229573678584, - 0.0008134996211707989, - -0.0012831164612752853, - -0.0012314583388263, - 0.00020052682270937548, - -0.0006367425351834367, - 0.00046331767140706827, - 0.0010953614960336911, - 0.00043856825815655946, - 0.00016983234964070088, - -0.0023590510048182986, - 0.0012680255418721946, - -0.0010519638133685524, - -0.0007310751425278649, - -0.0008500095976224457, - -0.0003279255759259657, - -0.0001520106551935983, - 0.00026922541968878015, - 0.0018417732289140237, - -0.000590114318468109, - -0.0006895355214027695, - -0.0015171529979924733, - 0.0012177512538282744, - -0.0002048507438641906, - -0.000837561136534395, - -0.00047593715589718276, - -0.0003769837888447702, - -4.15790674743496e-05, - -2.746798711340584e-05, - -0.00023050908960812238, - 0.001152225762938084, - 0.001330644906041611, - 0.00045499938623426813, - -0.0006645729391854426, - -2.4510028036832822e-05, - -0.0023133269592188416, - 0.0010513694925151998, - 0.001960194258493659, - -0.0003006996968604196, - -0.0001340629335289844, - 0.00027504241689183174, - -0.0005757223001211398, - -0.0010000179413233504, - -0.000269359636456583, - -0.0025566378654682314, - 0.00020311567548393064, - -0.0009520802301893675, - 0.00091346180722026, - -0.002728638945147101, - 0.001659030991528509, - 0.0003608253426696592, - -2.3183258135948e-05, - 4.898302728711422e-05, - -0.000592903178898857, - 7.594510234918741e-05, - -0.0014848037759142793, - 0.0008309020916853096, - -0.0005503200821727074, - -0.0007256092617832602, - -0.001042540312738802, - 0.0005408527162992019, - 8.135897605951341e-05, - -0.0007676695023392224, - 0.00021619844035195834, - 0.001081418360277642, - -0.0005056879094873555, - -0.0005065230230159975, - -0.0009783060536165385, - -0.00034606329714175074, - 0.00034453514133459483, - 0.000631827781670494, - 0.001155031672142027, - -0.0009305839547579488, - 0.00025335727885596014, - 4.0377267404075536e-05, - 0.0015139310700016742, - 0.0013610202489048606, - 0.0002613614219628752, - 0.00026347808398768686, - -0.0007520808021056345, - -0.0018719160228465273, - 0.00046081757781927455, - -4.382308252876994e-05, - 0.001935315758549927, - -0.0008610719405288899, - 0.0006334843941009305, - 0.0009112900174027468, - 0.000237305918081366, - 0.0014113386793673556, - 0.0006337871217297471, - 9.723642689626736e-05, - 0.00022505578817568205, - 0.0008587626288939044, - -0.00034336068021921805, - -0.0010211449802340845, - 0.0011794181189482462, - -0.000307885149088745, - -0.000427279509721794, - -0.0006830262861744778, - 0.001120353588665601, - 0.0010910608013641881, - -0.0007805752404631611, - 0.0015760333291658139, - 0.0002264151158317352, - -0.000840850935262704, - -0.0011586798105622206, - -0.0009993477589473174, - 0.00022454397644143667, - -0.00011032891835502057, - 0.0003493378757067005, - 0.0009158184013718476, - 0.00012348682067707647, - -6.136262118902349e-05, - 0.0020450937002055216, - 0.0014242657219001413, - -0.00032602733727631555, - -0.00048366466643622806, - -8.936874733622924e-05, - -0.0003711309164710934, - 4.2677835847925106e-05, - 0.0017781930178112212, - -0.0034747120883937897, - -0.0011996686242932999, - 0.0005935750322782286, - -0.0005288559406421054, - -0.00042880115496412153, - 0.00025614467953322215, - -0.0002806688896058584, - -0.0003834592398251119, - -0.000573381427001699, - -0.000585894267371827, - 0.0010909465445918586, - -0.0002347970161630998, - 0.0012304946277531573, - 0.000831490702584569, - -9.200877304476446e-05, - -0.0008031735436470373, - 0.0008372604285887107, - -0.0008994323243275481, - 0.00029232477687027205, - -0.0001191578599549998, - -0.0017335790580350699, - -0.0008803270602253543, - -0.0003940526242064919, - -0.0003841725086290891, - -0.0008652716422450647, - -5.525756931832605e-05, - -0.0016928201790060487, - 0.0007045187476586616, - 0.0023690533015426466, - 0.0007395667171679087, - -1.4028885061536289e-05, - -0.00045731441166091305, - -0.0006078558178312632, - -0.0011337967101892306, - 0.0006586581620196115, - -0.0026136439700403863, - -0.0007980106615010204, - -0.0010560901596518828, - -0.0005600789199825149, - 0.0004813140075402474, - -0.0004426557247136856, - 0.00013816615938043233, - 0.0018331044070773958, - 0.0005115779652243729, - -0.0006118967307363083, - 0.0011584944864240004, - 0.0005803018918793878, - -0.0009176950388792741, - 0.0002667071480934744, - 0.0004496285136612584, - 0.000550969130300518, - 0.00121844365585021, - -1.2021129515054279e-05, - 0.0006747737565560572, - -0.0001958290991639267, - -0.0017101153907033246, - -0.0005227943638375226, - -0.0010190162712033289, - 0.0009465910740975674, - -8.781286640119083e-05, - -0.00018395944079190892, - 0.0002570142698789913, - 0.0007221610675127081, - -0.0007952101808450782, - 0.0006521220798537616, - 0.0002048741105700094, - -0.00038660268129238687, - 0.001064207943115222, - -0.0004567624394002929, - 0.0001608431983596309, - 0.00036352607223537206, - -8.717833707364772e-05, - -3.628426535675712e-05, - -3.871645405159979e-05, - -0.0007537429781059173, - 1.9545904955226562e-05, - 0.0004336413888737104, - -0.0009952177624909869, - -0.0015304183906546293, - -0.0002948477058899425, - -0.0011707401689588968, - 0.0009235949763391369, - 0.0023722113077105146, - 0.0010901938636137627, - -7.293333512362258e-05, - -0.0012516708628009915, - -0.00016802826646823845, - -0.0014658806945767142, - -0.0006026308329307465, - 0.0013515909115678192, - 0.00016927629190887264, - -0.0007175933274891, - -0.0018160235651589064, - -0.000477223776212163, - -0.001168230093925634, - -0.0018046277493926574, - -0.0008366864141333572, - 0.0002488971775600016, - 0.0008942722556017799, - 0.0011919165043188756, - 0.0003808440124426021, - -0.0007027960195572641, - 0.000446751429096308, - -0.0008462790725847131, - -0.0002048350317558525, - 0.00046527544100597823, - -0.00011112363019412319, - 0.0005981544037460236, - -0.0022116819360997768, - 0.0003120712851092953, - 0.0009349051093858172, - 0.000787716060132309, - 0.00047682493670638535, - 0.00015683416440033567, - 0.0018010061111312099, - -0.0006255681329364607, - -0.001452459082626599, - 0.0013411140399686738, - -0.0004944023534573247, - -0.0016787424808352499, - 0.0006693420585489734, - -0.0020548464344609524, - 2.0113373669331346e-05, - 5.035237672263807e-05, - 0.0018748319267677188, - -0.00041578161099474633, - 0.00017970597055292628, - 7.497641716911025e-05, - 0.001355134670709201, - -0.0011629447050409377, - -0.0016272191717866737, - 0.001064911273818664, - 0.0024808641800939356, - -0.0006377132004545661, - 0.0009415031571961602, - -0.0005851259317556476, - 0.0008506908125812424, - -0.0009391537529063928, - 0.0007033876546996382, - 0.0001201930915019986, - 0.0004137087540110736, - 0.0010797977134361255, - -0.00021719449595254025, - -0.0009209983317059063, - 0.0018510587581476114, - 0.00012056652348687623, - 6.117342611799615e-05, - -0.0009800425093194134, - -0.0003976307993212384, - 0.0015194285910953315, - -3.8079863289407353e-06, - 0.0009387966672142542, - 0.0010813476407368287, - 0.0025246013337191895, - 0.0014565825113664883, - 0.0010079934752215618, - 5.316424318462576e-05, - 0.0008142974893370764, - 0.0011008431001307015, - 0.000527333212176511, - -0.0011351520143851404, - 0.0006778720727099893, - -0.0004129622491510881, - -0.00022856277221356325, - -0.0009474103353080657, - 0.0015584714869922313, - 0.0009312861457003048, - 0.0010257803963131446, - 0.0007263776818453958, - 0.0021965589704787784, - -0.0007951659318485058, - -0.0005626109117468297, - 8.656550518206519e-05, - 8.808684384710504e-05, - 1.873914587278547e-05, - 0.00039311355980824376, - 0.0010511620183069172, - -7.184093372496557e-05, - 0.0005435214226402547, - 2.7702027638887503e-06, - 0.000385113083597162, - -0.0019618279172473993, - 0.0013449378487121904, - 0.0004148774488527753, - 0.00015268048555235492, - 0.0006152455169203681, - -0.0015860046563486655, - -0.0006631681292440099, - -0.0005542066096283973, - -0.00043548569050369263, - 0.00018603117465500603, - 0.0011133858363708516, - 0.0018504907300397465, - -0.001308254522302284, - -0.00010829534847176733, - -0.003148715741833091, - 0.0006393074430734248, - -0.0007050764949982873, - 7.704859941095072e-05, - 0.0005864255660535929, - -0.00012947658430551497, - -0.0009977005903520479, - 0.001131455928617302, - 0.0007885353603397802, - -0.0010857094785844685, - -0.0026627997500901788, - -0.0005696878178732568, - 0.00035764345433374087, - 0.0015915599846960701, - 0.000510296530658758, - -0.0005253322302650972, - 0.0016453034129850137, - -0.00024111268506233046, - -0.0010499946972519461, - -0.0015812320286931563, - -0.0007093576726065546, - 0.0019370207806690615, - 0.0009521526982231388, - 0.00020510787241595813, - 0.0017145086347510677, - 0.0008069769660475786, - -0.0011407501667922214, - -0.0019681746496315387, - -0.00034539801915373525, - -0.0009438939206420977, - -0.0019434644023164245, - 0.0008031483334006379, - -0.0028790405433495696, - 0.0012613415310001122, - 0.001266447027048037, - 0.0005697981119376612, - -0.0006494966460634803, - -0.002056914368752438, - 0.000396924960906446, - 0.00043176586021018273, - -0.001662513825325913, - -0.00010146677696938807, - 0.002504518159892135, - -0.0003499622405371701, - 0.0007018890320583, - -0.0002436525316026921, - 0.0001995069111966175, - 0.0013062942934832162, - 0.0018102343053165181, - -0.0004457999143377569, - 0.000856952537029856, - 0.00016425088094414484, - -0.00044746914866868894, - 0.000535307750246082, - -0.00019813223545635207, - 0.00043309097467334265, - 0.0010342430527347617, - -0.0015207962830890503, - -0.0009053420724796635, - -0.000445755662322697, - 0.0015143736434699892, - 0.0011398038921323294, - -0.0005887572167342294, - -0.0016969864018818784, - -0.0005446921052573943, - 0.0006641323321720732, - -0.0016684664336135812, - -0.0016122922267998462, - -0.0009796781618467364, - 0.001423914153254285, - -0.000979142672487141, - -0.0011798542925476223, - -0.000870418154345828, - 0.000565094818129064, - 0.0016439783729612811, - 0.001477070302064432, - -0.0017714111823539836, - 0.0022207585482021445, - -0.0008369239596589356, - -6.940408104021275e-05, - -0.0009670321681660359, - -0.00039198827770972345, - 0.00040945351405882236, - -0.0009557908045750542, - 0.0002878539824634515, - 0.0002958059444640573, - 0.000427853609603842, - -0.0024531032806652405, - -0.0007022807538653332, - -0.0004987264931276447, - 0.0006531570043808601, - -0.0004143109179089981, - 0.0010331476074285325, - -0.0007738628494422653, - -0.0004525061873718077, - -1.2718339713694508e-05, - -8.143042831187727e-06, - 0.001417856349893535, - 0.0011326888207441133, - -0.0006738169785012334, - 0.0011681427063209202, - -0.0010998619722301015, - 0.0018074702061461779, - 0.0010233175562598792, - 0.00025591505905983255, - 0.0011968881569105825, - 0.0006651067134681976, - -0.00016368428856948134, - -0.00011430356206461288, - -0.0015811799988782386, - 0.0009576008759831418, - -0.0006231971819834693, - -0.0007024197000961728, - 0.0004108680741800166, - -0.0022846983015683132, - 5.219317534714939e-05, - 2.0429424210293836e-05, - 0.0008193755661082934, - 3.7788832331195555e-05, - -0.0016945955452083543, - -0.001368732265401415, - 0.00038500738137013765, - 0.0005194927590466605, - 0.0014637953318117614, - 4.400085226084796e-05, - -0.002562286547713907, - 0.00045492643746324524, - -0.0005056773921079062, - -0.00036716280540630787, - -0.0005224721263475805, - -0.00026405461748438036, - 0.00014951932162374028, - -0.00020146961797244635, - 0.0005810291887633867, - -0.0010706492577344474, - 0.0006728778335119537, - -0.00045595954671923827, - 0.00027944707520463077, - 0.0012522691151935408, - 0.00026320164767012447, - 0.0006377380169217105, - 0.000706053354162877, - 0.0007036335946868277, - -0.001307417806168762, - -0.0004847470715053864, - 0.0004879906475357601, - 0.0013283761569412651, - -0.0005742523350588405, - 0.0006476715486039147, - -0.00020849914575834773, - -0.00043631900206304045, - -0.0009344228736736172, - 3.090392641340244e-05, - -0.0006926139104166157, - 0.00045867805974276706, - 0.00014566040642167204, - -0.0013931403345094834, - 0.0004897381552463009, - -0.0013788551780939313, - -0.00026217171557524403, - -0.00206064722483447, - -0.0007393836354033851, - 0.00020693286660792833, - -8.237803254578228e-05, - -0.00037740546924257094, - 0.001518207697705862, - 5.1857321526684036e-05, - -0.0015072740147092647, - 0.000912197662752378, - 1.04578739271307e-05, - 0.0005349718119259968, - -0.0015313017306024445, - -0.0009391852916367808, - -0.000946423866890516, - 0.0014044707306822715, - 0.0022547131616968193, - -0.00040190050726401666, - -0.0005178116211136751, - 0.00014643818177080507, - 0.0005324962749822092, - -0.0009483523194745817, - 0.0011319283042091409, - -0.0007088697124007873, - 0.0004237120012812373, - -0.002120352050012705, - -0.0017573151018700918, - 0.0006373604832732441, - 0.0008038102194255575, - 0.00041505141658853233, - -0.0003082989967952577, - 0.002043643616499862, - -0.0005958602338952231, - 0.0011326487363801342, - 0.001176658764366878, - 0.001944366847690375, - -0.00033980238195080995, - 0.0010461681295483754, - 0.0008960182899407579, - -0.0014151809336162757, - -0.00018218837534083953, - -0.0012768805423684962, - -0.0005419092382441152, - -0.0018160528585695406, - -0.0003794228539844454, - -0.001978508893646519, - 0.0002162861029242056, - -0.0005992180667127309, - 0.002092766583851222, - 0.0014058782550482954, - 0.0013590272785361079, - -0.0003008957097401343, - -0.0009104738231326298, - 0.0009350013550426243, - -0.000498217765764299, - 0.0010314362695533945, - -0.00182799264275149, - 0.0023936144924541305, - -0.0006802042985585916, - 0.000986308226938966, - 0.000757543952401869, - -0.0004990174431243036, - 0.0002687072970253132, - 0.0003890382523897193, - 0.0002180448166142243, - -0.00025300617054540805, - -0.0010770347390862457, - -0.00047981122003388295, - 0.00047623827651523674, - -0.0008702470776044562, - 0.00022573751833526032, - -0.00014435631749972266, - -0.0013437399322630474, - -0.0012238343391969657, - -7.705865413321738e-05, - -0.001077951323212567, - -0.00021934433541999457, - -0.0010738363538276559, - -0.0006170406944526975, - 0.0005142116706846737, - -0.0004576688904974189, - -0.0024567288460872827, - 0.0005785924505311291, - 0.0006655044309015612, - 8.029862285924643e-05, - 0.00021438167094982319, - 0.0011245065035656646, - -0.002104721220001483, - 0.000931344965206009, - 0.0005407239573857951, - 0.0007746853264228772, - -0.0002906158782019886, - -0.001529360030749495, - 0.0013505125976677186, - -0.0014200662454715164, - -0.0005742854034276499, - -0.0020851554522560685, - -0.00046949059143281817, - 0.001328219330942615, - -0.0004059638097555444, - 0.00046321306539227685, - -0.0012089471458029703, - 0.0018798856296212106, - -0.0011409596502319711, - 6.598384472985929e-05, - 0.0005521483786390596, - -0.0008925984980607547, - 0.0008896686428535112, - -7.282039170141886e-05, - -0.0007439115193411754, - -0.0009854492323214325, - 0.00014934449487720474, - -0.0006979952337548319, - -0.0020350450730527406, - 0.0003433130961956592, - 0.00037998720032044787, - -0.0014204596262268065, - 0.0019709342586892663, - -0.0008539398110215291, - -0.0003051044708239151, - 0.0023128447324265917, - 3.294194237397625e-05, - -0.0006398552023639415, - -0.0005931447754430407, - -3.245317169969697e-05, - 0.0003131301764199937, - -0.0005488102804105514, - -6.430110081785306e-05, - 0.0010107050608978354, - 0.000413859292146772, - 0.0006939941506169904, - 0.0006589004876627043, - 0.0009488405592471941, - 0.0006046762705763088, - 0.0010858299383652609, - 0.00043195261200508684, - -0.0008529437071970864, - -9.307659920374268e-05, - -0.0002006051383274784, - 0.000270391066633176, - -0.0001420673384500405, - -0.0007178100250478709, - 0.000511215469488565, - 0.0003053130680110649, - 0.0007331345333250406, - -0.0003317552449698658, - 0.0006152015372365845, - 0.00013983621495365707, - 0.0006011325766696337, - 0.0008485774086009443, - -0.00014376529246248827, - 0.0001435807440816865, - -0.0011587815906702803, - 0.001196981978042114, - -0.0018350196469249565, - 0.0016275647254860805, - -0.0007688406528838722, - -0.0006995611353721991, - -0.0008311928407513901, - 0.0005724996473952343, - -0.000646019943492922, - -0.00025087693390499574, - 0.0016903606826214669, - 0.0006887591006467885 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgb(254, 136, 177)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 1", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.0006887591006467885, - -0.0011058161763843205, - 2.6109221126024897e-05, - -0.0001390300052987482, - 8.546119607340698e-05, - 0.00011136458998685435, - 0.00023991595986993947, - 0.001828039458787699, - 0.00022023425895074537, - -5.2290598065305744e-05, - -0.00021891859025958686, - 0.00046887091647313266, - -0.0006846872455111006, - -0.0012222627054356064, - 0.001181465692494554, - 0.0003749595081520784, - 0.0003526073351356686, - -0.0007022591707157542, - -0.0020916780707977093, - -0.0007305294383171488, - -0.0003920163327411029, - 0.0007088163203119509, - 0.000704385437454551, - -0.0010357939037395137, - -0.00046431043924451127, - -0.0014035861038804737, - -0.0016832368128961292, - -3.8630232227414356e-05, - 0.0005905440017652009, - -5.2118227510938425e-05, - 0.001719560304893979, - 0.001561461438381759, - 0.00025205720725469114, - 0.001763408408085375, - 0.0007221821060739849, - -0.0009719985847591629, - -0.0021123318421986375, - 0.001817623123137843, - -0.0010611604657695102, - -0.0008562064784112798, - -0.0012304176076835909, - 6.293152216392149e-05, - 0.002212399981579101, - 0.00010652549074311468, - 0.0008469018514976932, - -0.0009128546294313096, - -0.0006830828456034586, - 0.0015652451383773114, - -0.0005011611750392774, - 0.001757832611090426, - -0.001181582683865845, - -0.00121056434757796, - -0.0005337655494285235, - -0.001717403682544067, - -0.0007408136843975779, - -0.00027721097406305456, - -0.001314794201400178, - 0.00011952201698201898, - -0.001482907938938074, - -0.0028391234957543202, - 0.0018367431177566053, - -0.0004792297246101688, - -0.00014300734554818307, - -0.00032596659343862264, - 0.0011064891695107045, - 0.0010389955998214608, - -0.0004619849476998397, - 0.0007983762349096428, - -0.0010604984136962366, - -0.0001282125298550891, - 0.001318585836532794, - 0.000814565151301671, - -1.6467674650606454e-05, - -0.0011705015340110413, - -0.0020625214146961167, - -0.0006347499538072725, - -0.0007879481790594521, - -0.0009041255605997439, - -0.001146980778965213, - -0.0006732067020140864, - 0.0005947686824684459, - 0.0010934317688459968, - -0.00028716910090332263, - 0.0006821223674612194, - -0.00037570441762113145, - 8.598529650645392e-07, - 0.0010471053851254626, - -0.000431487384172255, - 0.0002556636513862575, - -9.609139681336129e-05, - -0.0006177402265568398, - 0.0009393099127451725, - -0.000908408135385842, - 0.0005665039405200598, - -0.0009604822251764828, - -8.133104536688364e-05, - 0.0007355372890523703, - 0.0003470055868085911, - 0.0018843959846446313, - 0.00022086750466867542, - -0.0009065600966912437, - -0.001433703575768761, - -0.00034096316523416436, - -0.002044549583102611, - 0.0009977976106372783, - -0.0008421754227121942, - -0.0001369818053447785, - -0.00030108280630892326, - 0.000979886607247647, - -0.001737922072358667, - -0.0012344504870354937, - -0.0010066302354428637, - 0.0004479956548980749, - -0.0019370998280541383, - -0.001654962679037751, - 0.0012199121125534165, - 0.000410971663376646, - 3.142622108681595e-05, - 0.0008894448445178767, - 0.00020854686895445604, - 0.0014256145680130942, - 0.0003253710966270027, - -0.0012922092263377152, - -0.00012522540455053085, - -0.0001589117726220959, - 0.002056504865531357, - -0.0015540964696775762, - -0.0004524211264601215, - -0.0010425428456208561, - -0.00039906385008350013, - -0.0002276437824881732, - -0.0024782971261014387, - -0.0014102760428990168, - -0.0006192606420478606, - 0.0001387774518862511, - 0.0021812297080462625, - 0.0001425596435313416, - -0.0004262004528677132, - 0.002142338398636383, - -0.0013937896609897483, - -0.00039096383987960063, - 0.0015932673042809732, - 0.0007066368854968903, - -0.00034757134244072153, - 0.0003121748867034803, - -0.0007519196916785607, - -0.0003839390529577581, - -0.0012465526732651747, - -0.0012396822105925245, - 0.0002528660865610383, - -0.0004789139961242268, - -0.00011876246473120422, - 0.00012697796523258533, - -0.0006198072827077355, - 2.110988925419539e-05, - -0.001447366706630948, - -0.00036602219270604337, - 0.0008363600006297419, - -0.0004724997888814941, - 0.00014368446888075382, - -0.0013191195466935642, - 0.0005613862168692938, - -0.00015946890582976573, - -0.001165735304201534, - 0.00012879815589038367, - -0.001029125146877646, - 0.0005315225544021784, - -0.002258361743278695, - 0.001998028935739293, - -1.6655456977371602e-05, - 0.0006759245575772937, - 5.282016978309428e-05, - -0.0010320804190655998, - -0.0020571340205112784, - -0.0006119239190639105, - 0.0017104910372468614, - -0.0007190926419966008, - 0.001540482136146976, - -0.00021132015063258152, - 0.0003278672475358782, - -0.00047275030121674347, - -0.0015546915191203964, - -0.0008825048994501095, - 0.002973193535448794, - 0.0014764962683650896, - -0.0014967308300415302, - -3.2885064319664986e-05, - -9.952711687646383e-05, - 0.0005547655592122089, - 0.0018511064189604117, - 0.0021959606023235602, - -0.000591243006655985, - -1.2382301679930482e-05, - 0.0010812162478384697, - 0.0002556973916825546, - -0.0007434402127627883, - -0.0008334182537376004, - -0.0009030918394799779, - -0.0008297182857754611, - -0.0005065808822434235, - -0.0004916654239396483, - -0.000620423089838034, - -0.001628587574827609, - -0.0008978466851870096, - -0.0008678610722973862, - 7.580089777078748e-05, - -0.000589173864045151, - -1.455655833297534e-05, - 0.0007127445204791508, - -5.6003802339007074e-05, - -0.00014140184165141486, - 0.0006114419107103605, - 0.0007378653325937724, - 0.0011141028032940526, - 0.0018128100816713988, - -0.0014579603022918642, - -0.0015854446634739503, - 0.0010405782364684775, - -0.0012235865422936167, - 0.0010696422316361649, - 0.00020163057836607157, - -0.00041225885013345374, - -0.0004535606398189168, - -0.0010865280318199432, - -0.0007798900838555854, - -0.0004027531960993472, - 0.0005955276952118613, - 0.00022383837490327004, - 0.0001199951551379412, - 0.0005210907000824437, - 0.0009271594179558762, - -0.0015492826995257935, - 0.00013090864938789112, - -0.00020354680293541112, - -0.0005833651790191638, - -0.00031590814292641067, - -0.0014683424406690658, - 0.0023142534478696134, - 0.0009285444739367345, - -0.002543131560921476, - -0.001182512800641266, - -0.0010151837670320566, - 0.0004196886835916232, - -0.0016426217753042443, - -0.001391063318424466, - -0.0009693448614976637, - 0.00042913115383631556, - -0.0007403720823114064, - 0.0011292059052843936, - 0.0001590034331006031, - -0.0007643972802635429, - -5.129013158712389e-05, - -0.000406376123505102, - 0.00013569095318648818, - -0.0006411962296679153, - -0.00024055476047148293, - 0.0010332897364286981, - -0.0012285318441027358, - -0.001065243831517481, - 0.0019128154885279705, - -0.0016623479805129454, - 0.0013935003982906338, - -0.0005829864414654076, - -0.0007870967545509347, - -0.0002834519531498127, - 0.000745591718894126, - -0.0011388616686114615, - -0.0014274733350751702, - 0.00017803605773123425, - -0.0006196012982266345, - -0.0011885765574890293, - 0.0012035896250914683, - 0.001486284311530507, - 0.0006508422664690343, - 0.00043736929512121073, - -0.0021324971862692575, - 0.0001765474587454717, - -0.0008752793229881749, - -0.0013547282458847782, - -0.0009774447840444663, - 0.000533818384897763, - -0.001925020191957622, - 0.001147184218795194, - -0.0005734435322327453, - 0.002009488687445213, - 0.0013268848757016585, - 0.0016738574199175594, - -0.0003340477072098943, - 0.0014201920688741883, - 0.00027405104128594806, - 0.0016348218510284953, - -0.000742996777682508, - 0.000517013850887017, - -0.0009675485236924026, - -0.0007390383393454707, - -0.00044200007850433905, - 0.0010779453916372746, - -0.0014971198094825033, - -3.847759888298499e-05, - -0.00013399142068563425, - -0.0007735939375706377, - 0.0012294743702660862, - 0.00016541565297055664, - 0.0008338057183526021, - 0.0006173680600099427, - -0.0005324660712249873, - -0.0006740502609794217, - -0.0008199833627355055, - 0.00033198205525391503, - 0.0007267220185779939, - -0.0020604481265172336, - -4.971278238664448e-05, - -0.0003895932155725044, - 0.0001631509427433502, - -0.0012936268416999387, - 0.00017638895201059523, - 0.0004907384818053191, - 0.0019184600292033091, - -0.000540008390969014, - 0.00037384222554225115, - -0.0011192071685167085, - -0.0011349191249985782, - 0.00021081877713340433, - -0.0019377688839017214, - 3.7939173216284e-05, - -0.0009665161519855029, - -0.0003447499214443088, - 0.0015822433004351536, - 0.0003882707028584976, - -0.0006578470354684751, - -0.0008528550323540276, - 0.0006535755559564238, - 0.0006011236622569996, - -0.0011938938952544447, - 0.0020755279763230447, - 0.00196845493265462, - -0.0015753601913037333, - 0.0007773993798483594, - -3.056475782681706e-05, - -4.6457698243587995e-05, - -0.0013215220688306663, - 0.00017883537891558713, - -0.0011664597643833627, - 0.002189795504708523, - 0.00019752481888354938, - 8.995435835938792e-07, - -0.0037041801024810953, - -0.0018929908100029384, - -0.001645729737379323, - 0.0005223843374676906, - -0.0009673080165998024, - 0.0013132779991402042, - -0.0008512127825620137, - -0.0011458919868544306, - -0.0012667288379709747, - -0.0013162873106019315, - 0.0003773491489540102, - -0.0020838701812605485, - -0.0006522001590569228, - 0.0009184314697090141, - -0.0008899845749656008, - 0.00014265562087166858, - 0.0023870018741430957, - -0.0009663752997903809, - 0.00011075742262934898, - 0.0005240409661613379, - -0.001473603572420426, - -0.0003789473116333424, - -0.000443536277395806, - -0.0007982513765464378, - 0.0012020995707334482, - 0.0013108817131481931, - 0.00024856525270280444, - 0.0017329303855316296, - -0.0005169261538795267, - 0.0008130214056670277, - -0.0005904646002315477, - 0.00122709425098142, - -0.00017834227645957792, - -0.0004986212650420497, - 0.0011630381205360446, - -0.0001726576653463638, - -0.0001264029855896014, - -0.00022831393531188776, - -0.0003153184182964929, - 0.00031840222225519094, - 0.0002337353742301272, - 0.0010366460587487242, - 0.00046898697214360695, - -0.00013947049691784053, - -0.0005863872852714326, - 2.571964456386897e-05, - -0.0007875589437836625, - 0.00042588758176939986, - 0.000554436241636773, - 0.00018510880245844018, - -0.0007958820058881892, - -0.0015775843695859698, - -0.001111161123610315, - -0.0005548228303216839, - -0.0021292111618743106, - -0.0001397467075138542, - -0.00038330300590588514, - -0.00032753346468422683, - 0.0003557719393692743, - 0.001334383598130291, - -0.00011944367276116744, - -0.0009455851916991179, - -0.0019273981470528181, - 0.002315070381071001, - -0.0009345345669622767, - -0.0006001427295077708, - -0.00013275951299425708, - -0.0008293513806996916, - 0.0008475874263042725, - -0.0001478658523034005, - -0.0007999409871289753, - 0.0007522519215303774, - -0.0001344254828304675, - 0.001003771785260857, - 0.0006947237468941833, - -0.0014260919683876446, - -0.000533458368095145, - -0.0010138613243486313, - 0.00034668841050295503, - 0.0011538722574860874, - 0.0011904803494144002, - 0.0008614800053616448, - 0.0009146534796859386, - -0.0005916501111958689, - -0.0014774800724577848, - -0.0014372597985471984, - 0.000355065865182617, - 0.001899324260644606, - -0.0003955489295554529, - -0.00037147553634348787, - 0.00016826050697379394, - 5.7720691900994055e-05, - -0.0007971734281938408, - -0.0011308717561140029, - 0.0005780469462579295, - 0.0004636053561234571, - -0.0003280336941144368, - 0.0014193975357727345, - 0.0012020992242621033, - 0.0003439318432291155, - 0.0009592472005751581, - -0.0006446891299259881, - 0.00031944576904379725, - 0.0017315234676588303, - 0.0008363195225267384, - -0.0020305802259542555, - 0.0010611015161733721, - -0.0009479171867612346, - -0.001285587590744891, - -7.152971453537978e-05, - -0.0003395627712127391, - -0.0008263318637680681, - -0.00033043508506614116, - -0.0004570967583319158, - 0.0006521620789705692, - 0.00031612245431499806, - 0.0008435933532413424, - 9.829073295502207e-05, - 0.0010325005013174912, - 3.6879079207935394e-05, - -0.0002403426729997387, - 4.506782344558303e-05, - -0.002429356865585296, - -0.001057682159722992, - 0.0010053741447315044, - 0.0012284225728176569, - -0.0026232545812878106, - 0.000816058389042647, - 0.0012350038477399905, - 0.00023100936277354724, - -0.0010963357028834122, - -0.0026486461959938905, - -0.0006287202959775753, - 0.0002449450899973831, - 0.0009856027010343433, - -0.0009127340982082835, - -0.00048410430522784556, - 0.0002960308742524513, - -0.00014290213947386657, - -0.0015942603142487838, - 0.00040388430023090483, - -0.0010592832035414036, - 0.0012092051625650102, - -0.001809306308185655, - -0.0018561972990590577, - -0.000841229990323613, - 3.52414433428857e-05, - -0.0013447438809586227, - -0.0006729257616421774, - -0.0015284544507774838, - -0.0017660438628998598, - 0.0003114082323108724, - 0.0006165764396210818, - -0.0005221875300818106, - 0.0011414201628265107, - -0.0002849808038549376, - 0.00014833807840260854, - -0.0008469942438913506, - 0.00039521574925247113, - -8.228545270913188e-05, - 0.0010132991951438343, - 0.0003820763055530818, - -0.0016426116552713161, - -0.00022147940499304112, - -0.0014649210506430994, - -0.00037654754481922096, - 0.0005376267881519327, - -0.0012102259382911124, - 0.00038407105538795306, - 0.0004087944845720613, - 0.0010907612641500746, - 0.0018596503963325057, - 0.0005088876338712446, - -0.001944942542273822, - -0.0017986139474602202, - -0.00039668304732825524, - 0.00010122951019318593, - -0.0003100534770204409, - 0.0004978313194182888, - 0.0003323968813160685, - -0.00028440047235219363, - 0.0002986996767500154, - 0.00154581676224894, - -0.0010703070926076283, - -0.001593582529291117, - 0.0003162723050730194, - 0.0002500674411029031, - 0.00041543829086657916, - -1.1027684041236971e-05, - 0.000919469307609642, - 3.993157405469065e-05, - 0.0013016088283548351, - 0.00022749372282106992, - 0.00014304230703713212, - -0.0012172929413006453, - -0.0013249745080358174, - -0.0016430247745253704, - 0.0008322774680560788, - -0.0016579763005738204, - 0.0009236972764846791, - -0.0010837015985591329, - 0.0018338533751359608, - 0.0009212919376359588, - 0.0007315679297654288, - 0.0005669670022074404, - 0.00028709502718726184, - -0.0006046317557943067, - -3.540238156917045e-05, - 0.0004942579397703159, - 0.0011523810654237472, - -0.0014875083177607305, - -0.0022226107500954045, - 0.00233417807899267, - 0.00029287766813619105, - -7.942826789880627e-05, - -0.0009815915300941073, - -0.0017308548869582618, - 0.0004575184047610577, - -0.0008623463801141858, - -0.001027826259069366, - -0.0008016471657532445, - -0.0006269323056465163, - -8.105272468233055e-05, - 0.0017383317962505068, - -0.0007006514951589266, - -0.00037002978914725857, - -0.0013896708738520137, - 0.0012276931748092068, - -0.00047445256848173227, - 0.0013931931354887307, - -0.00041811331004442477, - -0.0015977801115757547, - 0.0003119012709937501, - 0.00041748669939492897, - 3.622930624359058e-05, - 0.00010435485089608463, - 0.00068780887141127, - 3.6687755045295895e-05, - 0.0009574593719112407, - 0.0007570873296514148, - 0.00137671133864287, - 0.0002274464816980699, - 0.0010764644928086572, - 0.00125306493682099, - -2.9469771667862264e-05, - 0.00024569558273129034, - 0.0014090410416732163, - -0.00034788464218719797, - -0.00016518360204239888, - 3.146971595186761e-05, - -0.0014427682396905487, - 0.0013481764215974874, - -0.0006049335204014966, - -0.0016520321867018412, - 0.0008002738712411114, - -0.00034294192253769037, - -0.001399735337133517, - -0.0006074090986917655, - 0.0012093855627205215, - -0.0006459494195821679, - 7.176259806737042e-05, - -0.0006669909538525974, - 0.00134475369616233, - -0.0009035199295209107, - -0.0001824714893720298, - 0.0007586330918188823, - -0.0006875878891877327, - -0.0015480106070884924, - -0.0010701867350477188, - 0.00030837079408304517, - 0.0003710339533889121, - 0.00011464684028845155, - -0.0011764617716292776, - -0.0019171086621085763, - -0.0001243541238036749, - 0.0018678848171214233, - -0.0006526978987555947, - 9.059100387934715e-05, - -0.0008849083087407645, - -0.001059856845750493, - -0.0011409984133315106, - -0.0004869449791072317, - -0.001126168608414355, - -0.0009034810995107731, - -0.001083369486866823, - -0.0005705134284439153, - 0.0016700896752441293, - -0.0021861614096930866, - 0.00035136373553473, - -0.0004094835799296123, - -0.0010518186365591714, - -2.5088154958659823e-06, - -0.0001689645660424037, - 0.0004969652344186437, - -0.002052353580162092, - -0.0006955138645115664, - 0.0008346198673864016, - -0.000915847284668415, - -0.0008172017271301584, - 0.0004281190409801664, - 0.0012160349174481662, - -0.0002974880172768533, - 0.0011971926010727171, - -0.0008670366455275977, - 0.0009839107169503903, - 0.0021982921220460466, - -8.976309905631637e-05, - 0.0010321143645651983, - 9.953900764318193e-05, - -0.0012066349316005157, - 6.858206128959203e-05, - 0.0006146096645468084, - 0.0003010723711004188, - -0.0013713313935670873, - 0.002241644638638196, - 0.0011489144006010513, - 0.00035036757979915923, - 0.000338358040843067, - -0.0012199939307653651, - -0.0008450745758736549, - 0.000901997931075891, - 0.0005561612986995986, - 0.000953479461972044, - 0.000408175882191682, - 0.000518521465968698, - 0.0008330363070525461, - 0.00043925706703424325, - 0.0010852770400018898, - -0.00043507973167257577, - 6.287023099069638e-05, - 0.00016269701058139655, - -0.001156679117074127, - -0.001172003160552277, - -0.0026148819981113656, - 0.0011807137906623133, - 0.00029916552976276187, - -0.0018115683522804344, - 0.001067294689180577, - -9.69478990726541e-05, - -0.0005700843620733386, - 0.0015943466924783528, - 0.0004683641696976051, - 0.0007830445596910149, - 0.0011530973020520727, - 7.41137061160518e-05, - -0.0005981304725956796, - -0.0023297160013522533, - -0.0011906163585409994, - 0.001858983651442545, - -0.0008034016143308231, - 0.00039259143646199873, - 0.0008331370674579101, - -0.0003133637368904822, - 0.00017960768625255313, - 0.0002659739547605728, - 0.0010889952247982544, - -0.0014722207910655867, - 0.00047387166949841456, - -0.0010980996302194948, - 0.00016919989631522064, - -0.0021435954657160225, - 0.0007284595284863135, - 0.0012767372531837103, - -0.0002695752272508236, - 0.00039869084563598923, - -0.0006390490724435874, - 0.0012623019701264002, - 0.0010489524277436024, - -0.0006824170719844565, - 1.6883109951549026e-05, - -0.0003668122370482813, - 0.0024303087153819424, - 0.0008549546721645027, - 0.0009290426855246224, - -0.0010173123607801237, - 0.0019364003437275933, - -0.0005235726356754779, - -0.0012587917769036779, - 0.0011093732730550118, - -0.001981067377900557, - -0.0009516502228357549, - 0.00022721353557129676, - -0.0006018123119860096, - 6.139588557682033e-05, - 0.0006496342328972877, - 0.00018889637206753791, - 0.0003630033340192123, - 0.0009456725062519443, - 0.0001423748769757134, - -0.0004937179957188849, - -0.0011840740525882866, - -0.0032572234144868668, - -0.0006788298786030018, - -0.0011029608381006137, - -0.0005459204437733182, - 0.0014429545137220525, - 0.000988784630615299, - 0.0009002355429984379, - 0.0007415656735696816, - -0.0003026326603794944, - 0.0010828592574402592, - -0.0005842074399251722, - 0.0002714109878271407, - -0.000543226385457593, - -2.37472503882436e-05, - -0.0007639145705931737, - -0.0008511647332509043, - -0.0011158053637258286, - 0.0012641183011016723, - 0.00017944942101041596, - -3.9793183427854025e-05, - 0.0015987174950214055, - 0.0006501579990788645, - 0.001865232307556168, - -0.00035063388772080245, - 0.0006902799030886354, - 0.0008078290515154383, - -1.2502723629838786e-05, - -0.0005593120139934831, - 0.0017822145321093868, - -0.0007613398708667543, - -0.0003332048444944677, - 0.00049170850272495, - 0.0008217498348986212, - -0.000943773195174758, - -0.0010241190774590819, - -0.0011753402456821658, - 0.0007472673928053305, - -0.00018897560343552664, - 0.0005779078008000386, - 0.0012965782464094845, - 0.0003872056414951826, - 0.001427929225375, - 0.0017224158601080366, - 0.0005896695713142535, - 0.0010551241315259416, - -2.473478030038943e-05, - 0.00022145123361591324, - -0.0017656433674142586, - 0.001186142901586758, - -0.00037391126553172155, - 0.0005095344496664344, - 0.0010660483157942091, - -0.00048319691069507, - 0.0005298409249128277, - 0.00048021095551697957, - 0.00010165878310543002, - 0.0003914395315645091, - 9.810343550740619e-05, - 0.0005300253855734459, - -0.0013499171883089628, - -0.0008679471877756493, - -0.0011072271818755935, - -0.0016526923262070693, - 0.0010154664717447707, - 3.131381574920415e-05, - -0.0002816887357663555, - -0.0007642965883547474, - 0.001393530516488829, - -0.0013079579317448093, - 0.0014897678214235044, - -0.0009070318867181098, - 0.0011597202182581662, - 0.0011650916322589466, - 0.0011037286331247575, - 0.00016819823105697937, - 0.0016302820135696188, - 0.0012289910522181465, - 0.001387803245532038, - 9.753495707855861e-05, - -0.0016284888591190313, - -0.0013174703565389202, - 0.0015363435450411987, - 0.00035271227643312084, - -0.0026394280412886757, - 6.78368887662444e-05, - 0.0007814752443362951, - 0.0002752132549821037, - 0.001468313398566948, - 0.0006545236966096546, - 0.00015161640974977624, - 0.00023696581672297542, - 0.0013642156518726815, - -0.0006580542913970103, - 0.0006605017470452941, - -0.0003088228978564007, - -0.0008748764883549764, - -0.0016642166552533128, - -0.0006184663969364369, - -0.00015409401859344467, - 0.00011171320406382895, - -0.0003290910407041211, - -0.0010709146804689057, - 0.000391673286224946, - 0.0016568592585332633, - 4.886265919610229e-05, - -0.0005310321469864104, - 0.0010965154226519266, - -0.0007755256922949238, - -0.0016960342209149909, - -0.0011084135517462786, - 0.0005122886593445442, - 0.0007411646422577687, - 0.0015908914037913292, - -0.0007538540001763368, - 0.0007582234291749213, - 7.647547873373415e-05, - -0.00014731395201125405, - -0.0003695468091183977, - 0.0008737037670638785, - -2.9156555941520518e-05, - 0.0013759294936129811, - -0.0019396679285413774, - -0.0001656795002055891, - -0.0003471560695495425, - -0.001241703149608692, - 0.00034815131665108653, - -0.0010378207996945867, - 9.313167172588199e-05, - 0.0003768239998069945, - -0.0008519499742523102, - -0.0005180546234512934, - 0.0005414827770569703, - 0.0007734070692163017, - 0.0002244177583683037, - -0.0020083988197677604, - 1.5866021128503563e-05, - 0.0028300716082197636, - -0.0015626980230826993, - -0.0007570620879619247, - -0.00048649438834632544, - -0.0014843932873093426, - -0.0009091931471393971, - -0.000678127863880481, - 0.00037568061226585616, - 0.000151084238891734, - -0.0007489745309385559, - 0.0004510021034491504, - -0.0003584460509166288, - 0.002116144765805572, - -0.0008424457940505964, - 0.0009235345882566292, - 0.0003250570207390367, - -0.00017397363080493195, - 0.0007197608461805603, - 0.0015474097983145263, - -0.0008353156806061429, - 0.0011143087870734152, - -0.00038750220325299014, - -0.0011148684886687825, - -0.00019958942274774858, - -0.0004177035962340447, - 0.0010295791623491952, - -0.0010420821016893502, - 0.00015726901261220008, - 0.0010757164325489765, - -0.0005662198447577108, - -0.0014236665997060995, - -0.0007863089004988628, - 0.0015800946344987391, - -3.2056804659746934e-05, - -0.00038417506573733864, - -0.0004683561412928589, - -0.0004495071110233752, - 0.0017829256357936717, - -0.001249116455294586, - -0.0005262008246806016, - -0.0020806901498940603, - -4.7044997664915096e-05, - 0.0004576092154107047, - 0.00016119956086026196, - 0.001485404960980037, - 0.0009103038888543706, - 0.0003250510906542959, - 0.0004838265748302406, - -0.000674596455453416, - 0.00033822110932001765, - 0.0004944724822896743, - -0.0009183104595300472, - 0.0017184330092987923, - 0.0003004655935077607, - -8.880815825930969e-05, - 0.0001469707885369157, - -0.00019022780181976887, - 0.0025710551192635106, - 6.645414771898788e-05, - 0.0008923676528715616, - 0.0006888630180091548, - 7.418249218949568e-05, - -0.0006085345592910763, - -0.0018967292290848299, - 0.0005207021868651298, - -0.0004929127334017388, - -0.00013063075417078248, - 0.001110254256232218, - -0.0001225144671689617, - -6.513886445023493e-05, - -0.0008542543517159396, - 0.0006216643419380463, - -9.12336646118156e-05, - 0.0005887253068504605, - -0.0017891907841896602, - -0.000960924050247771, - 0.0004135540559117253, - 5.473666254529923e-05, - 0.0002356959202535625, - 0.0008915453092566195, - 0.0014524917722501208, - -0.0005398205884219588, - 8.965778277814651e-05, - -0.0014669956880096764, - 0.001284599185668919, - -0.0006754743947329374, - -0.00026218175428835563, - 0.0004747506721413596, - -0.0008005094602516393, - 0.0004048893455853081, - -0.0017509374045175793, - 2.4552048755175818e-05, - 0.0009108254845081494, - -6.251576607071105e-05, - -0.0009826527321705838, - -0.0015739490033544173, - -0.0019224893111071458, - -0.0002047626000067345, - -0.00033631167274441877, - 0.0006776839146117316, - -0.001334087881086437, - 4.886014518870652e-05, - 0.0015329217901167852, - -0.0009121771337764748, - 0.0009217340039503385, - -0.0009557182405849002, - 0.0005789629121700315, - 0.00022262472217118861, - -0.0010679976905729194, - 0.0003459477639309376, - -0.000158289036234453, - -0.001883066764178504, - -0.00012191829490403117, - -0.0006613531543469578, - -0.001545734376758103, - 0.002324098609630597, - 0.0015074545476887274, - 7.3761313095608455e-06, - 0.00019760176287840874, - 0.0011112310907274714, - 0.0010593507448467179, - -0.0006422129855534129, - -0.001861926389606331, - -0.0006577700858830783, - 0.001005972219423685, - -0.0003107130837989659, - -0.00044481491423884064 - ] - } - ], - "layout": { - "annotations": [ - { - "showarrow": false, - "text": "\tBurn in: 4000", - "x": 4000, - "xanchor": "left", - "xref": "x", - "y": 1, - "yanchor": "top", - "yref": "y domain" - } - ], - "autosize": true, - "shapes": [ - { - "line": { - "color": "black", - "dash": "dash", - "width": 3 - }, - "type": "line", - "x0": 4000, - "x1": 4000, - "xref": "x", - "y0": 0, - "y1": 1, - "yref": "y domain" - } - ], - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Estimated Value of Offset w.r.t. Beam sensor 0" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0, - 4999 - ], - "title": { - "standoff": 20, - "text": "MCMC Iteration Number" - }, - "type": "linear" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - -0.00502523644467651, - 0.004531706202141541 - ], - "title": { - "standoff": 20, - "text": "Estimated Offset
Value (ppm)" - } - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQd4ZFX9/r8zk5m0Tdkkm90km+29wdI7giggKDZUigqKf1QsgAjYGxYUFBRBUVFE5KcCCgjSFqW3hWU722uyuymb3qf8n/fcOcmdu3dm7tyZZLOZ9zyPkk1uOfdzzj33nPd8iycSiUSEhQRIgARIgARIgARIgARIgARIgARIgARIwJaAh+IJewYJkAAJkAAJkAAJkAAJkAAJkAAJkAAJxCdA8YS9gwRIgARIgARIgARIgARIgARIgARIgAQSEKB4wu5BAiRAAiRAAiRAAiRAAiRAAiRAAiRAAhRP2AdIgARIgARIgARIgARIgARIgARIgARIwB0BWp6448azSIAESIAESIAESIAESIAESIAESIAEsoQAxZMsaWg+JgmQAAmQAAmQAAmQAAmQAAmQAAmQgDsCFE/cceNZJEACJEACJEACJEACJEACJEACJEACWUKA4kmWNDQfkwRIgARIgARIgARIgARIgARIgARIwB0BiifuuPEsEiABEiABEiABEiABEiABEiABEiCBLCFA8SRLGpqPSQIkQAIkQAIkQAIkQAIkQAIkQAIk4I4AxRN33HgWCZAACZAACZAACZAACZAACZAACZBAlhCgeJIlDc3HJAESIAESIAESIAESIAESIAESIAEScEeA4ok7bjyLBEiABEiABEiABEiABEiABEiABEggSwhQPMmShuZjkgAJkAAJkAAJkAAJkAAJkAAJkAAJuCNA8cQdN55FAiRAAiRAAiRAAiRAAiRAAiRAAiSQJQQonmRJQ/MxSYAESIAESIAESIAESIAESIAESIAE3BGgeOKOG88iARIgARIgARIgARIgARIgARIgARLIEgIUT7KkofmYJEACJEACJEACJEACJEACJEACJEAC7ghQPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAlkCQGKJ1nS0HxMEiABEiABEiABEiABEiABEiABEiABdwQonrjjxrNIgARIgARIgARIgARIgARIgARIgASyhADFkyxpaD4mCZAACZAACZAACZAACZAACZAACZCAOwIUT9xx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAJZQoDiSZY0NB+TBEiABEiABEiABEiABEiABEiABEjA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CFA8cceNZ5EACZAACZAACZAACZAACZAACZAACWQJAYonWdLQfEwSIAESIAESIAESIAESIAESIAESIAF3BCieuOPGs0iABEiABEiABEiABEiABEiABEiABLKEAMWTLGloPiYJkAAJkAAJkAAJkAAJkAAJkAAJkIA7AhRP3HHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAllCgOJJljQ0H5MESIAESIAESIAESIAESIAESIAESMAdAYon7rjxLBIgARIgARIgARIgARIgARIgARIggSwhQPEkSxqaj0kCJEACJEACJEACJEACJEACJEACJOCOAMUTd9x4FgmQAAmQAAmQAAmQAAmQAAmQAAmQQJYQoHiSJQ3NxyQBEiABEiABEiABEiABEiABEiABEnBHgOKJO248iwRIgARIgARIgARIgARIgARIgARIIEsIUDzJkobmY5IACZAACZAACZAACZAACZAACZAACbgjQPHEHTeeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCUEKJ5kSUPzMUmABEiABEiABEiABEiABEiABEiABNwRoHjijhvPIgESIAESIAESIAESIAESIAESIAESyBICFE+ypKH5mCRAAiRAAiRAAiRAAiRAAiRAAiRAAu4IUDxxx41nkQAJkAAJkAAJkAAJkAAJkAAJkAAJZAkBiidZ0tB8TBIgARIgARIgARIgARIgARIgARIgAXcEKJ6448azSIAESIAESIAESIAESIAESIAESIAEsoQAxZMsaWg+JgmQAAmQAAmQAAmQAAmQAAmQAAmQgDsCFE/cceNZJEACJEACJEACJEACJEACJEACJEACWUKA4kmWNDQfkwRIgARIgARIgARIgARIgARIgARIwB0BiifuuPEsEiABEiABEiABEiABEiABEiABEiCBLCFA8SRLGpqPSQIkQAIkQAIkQAIkQAIkQAIkQAIk4I4AxRN33HgWCZAACZAACZAACZAACZAACZAACZBAlhCgeJIlDc3HJAESIAESIAESIAESIAESIAESIAEScEeA4ok7bjyLBEiABEiABEiABEiABEiABEiABEggSwhQPMmShuZjkgAJkAAJkAAJkAAJkAAJkAAJkAAJuCNA8cQdN55FAiRAAiRAAiRAAiRAAiRAAiRAAiSQJQQonmRJQ/MxSYAESIAESIAESIAESIAESIAESIAE3BGgeOKOG88iARIgARIgARIgARIgARIgARIgARLIEgIUT7KkofmYJEACJEACJEACJEACJEACJEACJEAC7ghQPHHHjWeRAAmQAAmQAAmQAAmQAAmQAAmQAAlkCQGKJ1nS0HxMEiABEiABEiABEiABEiABEiABEiABdwQonrjjxrNIgARIgARIgARIgARIgARIgARIgASyhADFkyxp6OF8zHe9613q8k899dRw3mbMXru9vV0KCgokJydnzD7jcDxYJBKRtrY2KS0tHY7Lj+lr9vf3y8DAgBQWFo7p5xyOh+vq6hK/3y+BQGA4Lj+mr9na2iolJSXi8XjG9HNm+uFCoZCg3xUXF2f60mP+er29vYJvRX5+/ph/1kw/IOcm7ohybuKOG88igUOFAMWTQ6WlRnE9KZ6k1zicoLjjxwmKO244i+KJe3YUT9yzo3jijh3FE3fccBbFE/fsODdxx45zE3fceBYJHCoEKJ4cKi01iutJ8SS9xuEExR0/TlDccaN44p4bzqR44p4fxRN37CieuONG8cQ9N5zJuYk7fpybuOPGs0jgUCFA8eRQaalRXE+KJ+k1Dico7vhxguKOG8UT99wonqTHjuKJO34UT9xxo3jinhvFE/fsODdxz45nksChQIDiyUFoJZiR/vWvf5WHH35YgsGgfOADH5CLLrpI8vLyktbG6blOjzPfEPEjvvGNb8g73/lOVSenheKJU1L2x1E8ccePExR33CieuOdG8SQ9dhRP3PGjeOKOG8UT99wonrhnx7mJe3Y8kwQOBQIUT0a4lRBr4Oc//7kKdHnNNddIbm6u/OQnP1EB9K6//vqEARydnuv0OPOjQ8S588475Z///Kd8/vOfp3gygv2C4ok72JyguONG8cQ9N4on6bGjeOKOH8UTd9wonrjndsIJJ8jLL7+sLvDiiy8K/s3ijADnJs448SgSOFQJUDwZ4ZZ79tln5Re/+IXccMMNsmjRInX3jRs3KuHk8ssvlzPPPDNujZye6/Q4840eeeQRaWhokOeff17OO+88iicj2C8onriDzQmKO24UT9xzo3iSHjuKJ+74UTxxx43iiXtuY1k8webld7/7XamqqpKrrrpKZU/LZOHcJJM0eS0SGH0EHIsnsGbYtGmTzJ49O26Kxrq6Ouno6JC5c+cyFaFNW8OV5gc/+IFgAglrk6KiInVUT0+PfO973xNM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SdubhHgSjXlCkFju17dvX1tppZVcsNghQ4Y40YNyEyZMsAEDBrgyXJncdqJxUoYPH26DBw+2yZMn26WXXpoKBht1xYm6IWUSTzKlKqZ/pcoaJPFET2rRBLx4UnRDakAEREAEREAEREAEREAERKBJEnjyySeb5Lg16MohIPGkcuaqbHsq8aRsp0YdEwEREAEREAEREAEREIGKICDxpCKmqUl3UuJJk57+5AZ/++23G6aKhx56aHKNNpGWCPR03HHHWa9evZrIiJMZJu5Ohx9+uEtvpqswAk8//bS9+uqrdtZZZxVWUaXt4osvtk033dR22mkn0SiQwN5772233HKLtWvXrsCaTbv4tGnTXGrHa6+9tmmDCBi99iYB0JZU0d4kjN3cuXOdC8O4cePCGlAtERCBsiYg8aSsp6dyOqcNSvhcaYMSxk7iSRg3akk8CWcn8SScncSTMHYST8K4UUt7k3B22puEsZN4EsZNtUSgUghIPKmUmSrzfmqDEj5B2qCEsZN4EsZN4kk4N2pKPAnnJ/EkjJ3EkzBuEk/CuVFTe5MwfhJPwriplghUCgGJJ5UyU2XeT4kn4ROkDUoYO4knYdwknoRzk3hSHDuJJ2H8JJ6EcZN4Es5N4kk4O4kn4exUUwQqgYDEk0qYpQroo8ST8EmSeBLGTuJJGDeJJ+HcJJ4Ux07iSRg/iSdh3CSehHOTeBLOTuJJODvVFIFKICDxpBJmSX0UAREQAREQAREQAREQAREQAREQARFoNAISTxoNvW4sAiIgAiIgAiIgAiIgAiIgAiIgAiJQCQQknlTCLKmPIiACIiACIiACIiACIiACIiACIiACjUZA4kmjodeNRUAEREAEREAEREAEREAEREAEREAEKoGAxJNKmCX1UQREQAREQAREQAREQAREQAREQAREoNEISDxpNPS6sQiIgAiIgAiIgAiIgAiIgAiIgAiIQCUQkHhSCbOkPoqACIiACIiACIiACIiACIiACIiACDQaAYknjYZeNxYBERABERABERABERABERABERABEagEAhJPKmGW1EcREAEREAEREAEREAEREAEREAEREIFGIyDxpNHQ68YiIAIiIAIiIAIiIAIiIAIiIAIiIAKVQEDiSSXMkvooAiIgAiIgAiIgAiIgAiIgAiIgAiLQaAQknjQa+uq48S+//GJjxoyxhx56yH799VcbOHCgHXzwwdamTZvqGGDgKB544AG7/vrrU7VbtmxpF154oW244Yapf/v+++/t5ptvtmeffdZatWplhx9+uP3ud7+zpZZaqs5d45YL7GqjVVu8eLFNnz7dRo8ebfvvv79tsskmGfvy73//20aOHOnK9ujRw0488UTr3bt3vbJJl2s0MDFuzLM2depUu+++++yYY46xNddcM2Ot2bNn2x//+Ef76KOPUp9vu+22dtZZZ7k1x1VTU2MvvfSSjRo1ymbOnGkbbLCBnXLKKda5c+c6bcYtF6P7jVKE9fb000/b3/72N/v666/d+AYNGmT9+vWz5s2bBz1zcZ/NuOUaBUyMm/700092++232yOPPOK+53/zm9/YcccdZ927d69Xm9+ECy64wF599dXUZz179rSLLrrIVlhhhdS/NZXnlbm/6aab3Nrju531dtRRR9myyy4b9HzFfQ7jlosx/Y1WhDXy17/+1T744ANbccUV7bDDDrNddtml3vNKB1955RU777zzbOHChan+nnbaabbbbrul/h53vxK3XKOBKfDGn3/+uQ0bNsxOPfVU23TTTfVdVwC/J554wu6991677LLLrH379nVq6ruuAJAqKgJVREDiSRVNZkMPZcGCBXbFFVfYnDlz7IwzzrDWrVvbxRdfbM2aNXM/1Msss0xDd6ks7scB9LrrrrNVV1011Z9OnTrZHnvskTqwwuzcc8+11Vdf3R1+f/jhB/d3DiVHH310SkCJW64sBl5AJ+bOnWtvv/22Pffcc/bkk0+6g1X6po7m3nrrLRsxYoRj9Nvf/tZefvllu/zyy23IkCG25ZZbpu6YdLkChtLgRb/99lt75513nGD54Ycf2l/+8peM4gmHJ8SVjz/+uM5BjcNHVGyBP4ICTFl/48aNc5tFuHPo9Vfccg0OJOYN4fXMM8+453D+/PmOzZdffulEgAEDBrjvLa64z1zS5WIOo8GLcUC45JJLrF27drbZZpvZtGnTbPz48U4gT18jdO6f//ynE4RXWmmlVF+px3/+airPK99ziOjdunWzVVZZxSZMmOAO+XvttZcde+yx1qJFi4Kfr7jPYdxyDb6gYt4QwQTBbvvtt3fP61133WXffPONDR8+3LbYYos6rfz4449OZFluueVSwgp/hjP/54q7X4lbLuYwGr0Ya5B9Gb+d6b+zSX+HxW2v0aHE7ABr8E9/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AqUhIPGkNFzVqgiIgAiIgAiIgAiIgAiIgAiIgAiIQJUQkHhSJROpYYiACIiACIiACIiACIiACIiACIiACJSGgMST0nBVqyIgAiIgAiIgAiIgAiIgAiIgAiIgAlVCQOJJlUykhiECIiACIiACIiACIiACIiACIiACIlAaAhJPSsNVrYqACIiACIiACIiACIiACIiACIiACFQJAYknVTKRGoYIiIAIiIAIiIAIiIAIiIAIiIAIiEBpCEg8KQ1XtSoCIiACIiACIiACIiACIiACIiACIlAlBCSeVMlEahgiIAIiIAIiIAIiIAIiIAIiIAIiIAKlISDxpDRc1aoIiIAIiIAIiIAIiIAIiIAIiIAIiECVEJB4UiUTqWGIgAiIgAiIgAiIgAiIgAiIgAiIgAiUhoDEk9JwVasiIAIiIAIiIAIiIAIiIAIiIAIiIAJVQkDiSZVMpIYhAiIgAiIgAiIgAiIgAiIgAiIgAiJQGgIST0rDVa2KgAiIgAiIgAiIgAiIgAiIgAiIgAhUCQGJJ1UykRqGCIiACIiACIiACIiACIiACIiACIhAaQhIPCkNV7UqAiIgAiIgAiIgAiIgAiIgAiIgAiJQJQQknlTJRGoYIiACIiACIiACIiACIiACIiACIiACpSEg8aQ0XNWqCIiACIiACIiACIiACIiACIiACIhAlRCQeFIlE6lhiIAIiIAIiEA1EPjmm2/svPPOc0MZPny4rbjiitUwrEYbw+zZs238+PE2depUx7V9+/aN1hfdWAREQAREQAQqmYDEk0qePfVdBERABCqcwLfffmuvvvqqjRs3zj788EM3mtNOO8122223WCO7++67bfTo0amyyy+/vP3lL3+xNddcs079n3/+2Z566il78skn7eOPP7b58+fbMsssY+uuu67ts88+1qdPH3vggQds1113tZYtW9rkyZPtiSeecP/n2nfffe2oo46yZs2a5e3X888/bxdccIEtXrw4Vfaiiy6yTTfdtE5dPn/99dfdwfbtt9+277//3lq0aGGrr766/e53v7N+/frZv/71L2vbtq1ttNFGWe9Lv6+//vp6n2djkXcAjVygXMST7777zk4//XT7/PPPU0QGDhxoRx99tC211FL1KLF+hw4daj/88EOdzzLNfUMhfuGFF+zpp582/t+lSxe7/PLLJZ40FHzdRwREQAREoOoISDypuinVgERABESg8ghED57rrLOO/fnPf7Z27drlHAhv1P/4xz/aRx995IQQ/oxAERU4ampq7KWXXrKrrrrKll12WTvkkENs8803d+V//fVX+/LLL+2OO+6wf/7zn7bqqqu6w6W3dEDYGTJkiH322We28sor28UXX2yrrbZazj798ssvTjhBEGrevLmdfPLJTpDhz9Hrq6++cvdi3AMGDLDdd9/dOnbs6IogoiDyjBkzxubOnWsjRoywLbbYIu99b775ZnvwwQed+HPmmWfadtttV+e+tPXss8+6e5XDVW79ycQEgevTTz+1q6++2v797387nscdd5ybs0xCGusNwQ3B5Mgjj8w49w3N3otA3FfiSUPT1/1EQAREQASqiYDEk2qaTY1FBERABCqUAAe8YcOG2axZs2zevHl29tln27bbbptzNI899phde+21tnDhQidqpB8MOcg+/PDDzioDUYX2EVDSL8ohOtx5551OIPFWKwghHILffPNNJ2IMHjzYDjjggJx9euONN+ycc85xli3cK5MVDIIJZRYtWuTcKBCLMl0ffPCB/elPf7L999/fsHjId3FoP+usszKyoO60adOcSHTMMcfka6pBPi+3/uQa9Jw5c5wLEQJK69at3bxsueWWGauwls8991w76aST6llANQjYtJvwPLHOvv76a4knjTEBuqcIiIAIiEDVEJB4UjVTqYGIgAiIQOUS4MB52WWXOesPhIwNN9zQHUCxEMl0/fjjj3bJJZdY9+7dDdedTOIJh3PEBNrIZzWCFcqoUaOcpUBUPLniiitslVVWsXvvvdf1DTEEK5RMF21g4YK7DC4/XOniCf1mXLjp4J60yy675Jy05557zmCz11575Z3cXOKJF4I6dOjgrGEa+yq3/uTjQX+Zy5kzZ9r06dOddRIWQT179qxXtdzEE28NNWPGDIkn+SZan4uACIiACIhADgIST7Q8REAEREAEGp2AF08GDRrkrD1wybnwwgudiJLpIq7IxIkTbaeddnIWAeniyYIFC1w7lIsbr+T99993Viy9e/d2t+TQiXiCm8vf//53e+utt3LGY6E+AsxBBx3k+p5JPMFahjY5dNO/FVZYISd7LF4mTZrkRJ18VzbxBFHnvvvus1tvvdXFUmls8aTc+pOPa3Qt7Lnnnk5Ie/nll53IhouWd7fy7Ug8iUNUZURABERABESg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", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "marker": { - "color": "rgb(102, 197, 204)" - }, - "name": "Beam sensor 0", - "type": "box", - "y": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null - ] - }, - { - "legendgroup": "Beam sensor 1", - "marker": { - "color": "rgb(246, 207, 113)" - }, - "name": "Beam sensor 1", - "type": "box", - "y": [ - 0.001126931143591391, - 0.0001366516959005484, - -0.0015903656318779972, - -1.6141046952390164e-05, - 0.0010141515780524568, - 0.0014183755598595202, - -0.0005928264449893003, - 2.0251600745825583e-05, - -0.0014156428362243638, - 0.0013164401183389494, - 0.00021973283891391201, - 0.0009724863026296366, - 0.000924659278281904, - 0.001325451513325202, - 0.0009668530479842803, - 0.0009612186721239702, - -0.000672235515842028, - 0.00013644959056582277, - -0.0005790234095104245, - 0.0015284633565679601, - 0.0003113080994637032, - -0.000773275080424825, - -0.0022344139741296257, - 0.0020997562127716427, - -0.0007012231494118201, - -9.637168800831716e-05, - -0.0008335824086203008, - 0.0011183307775925017, - 0.0007039680716917274, - 0.001341259538433009, - -0.0011001865847509713, - -0.0014837681632402253, - 0.0006159149024880919, - -0.0002197160931841358, - 4.7122302567410966e-05, - -0.0010259166288988048, - -0.0013620400295850765, - -0.00022595094293072256, - -0.0015740335939073502, - -3.435211670847887e-05, - 0.0007541801071030402, - -0.0004032140891217525, - 0.0015700894033756382, - -0.0005432385746703323, - 0.0001289451971919868, - 0.0007813358844492947, - -0.0002465752262623505, - -0.0012393174614247786, - -0.000295508054343837, - 0.0005156792747163233, - 0.0008311634564697458, - -0.0020460928541422233, - 0.00023253516154396182, - -0.0005625100382057205, - 0.0004460829508404133, - -0.0007011281251223634, - -0.0011601488493758886, - 0.0005383807365162702, - 0.0006335350430294133, - 0.0008355086465069216, - -0.00015834726196869257, - -0.0006686773654045602, - -0.00025379647272931455, - -0.0020332966581009227, - 0.0006860464003001382, - 0.0008889821410372325, - 0.0001760108828055627, - 0.0010121741852197178, - 0.000748115122651041, - -0.0010493977663692685, - 0.0010810319202276045, - 0.0009185747514156867, - -0.0011957526020308403, - 6.992264891079855e-05, - -0.0006164535099501062, - -0.0007928957448012011, - -0.0010831868741394694, - 0.00010273839135493037, - 0.0014037208595317596, - -0.00041127060523931107, - -0.0009649187196545049, - 0.0004561901165400211, - 0.0015166453806362643, - 0.0005153862673314311, - -0.001555689231621431, - -0.0007334389975181775, - 0.0008978713915292089, - -0.0005679525936062184, - -0.0003343448392419797, - -0.0015080138150037894, - -0.0013574122933790076, - -0.0001818735725262273, - 0.00035621195229933666, - 0.0011598531762431008, - -0.000732106989580845, - -9.224495255209884e-05, - -6.920200301530493e-05, - -0.00039854097524154335, - 0.0018128646661889785, - -0.0010467386550527963, - 0.0007874365955585045, - 0.0005148352373045059, - 0.001184297519873447, - -0.0008387169225888131, - 0.0001620083539185236, - -0.0004544854439237014, - 0.0014435865050377158, - 0.0009114638227535225, - -0.0011121874773851834, - -0.0006689141913884242, - -0.0013471246556142767, - -0.0019669757974935327, - -0.0005340438950862949, - -0.0012533673061330408, - -0.0008242765623723733, - -0.000400506520026716, - -0.0010857026760696846, - -0.0003630176112332235, - -0.0003305438538704915, - 1.613101801989215e-06, - -0.001695827934458258, - -0.0006469973382303982, - -0.0002768887147184687, - 0.000711234267255801, - 0.0005374959296455829, - 0.0005010291354970452, - 0.0013655328896184397, - -0.0008651033094811328, - 0.000957018460325614, - 0.0004445285046467526, - 0.0004634626358003315, - 0.0001250956287438983, - 0.0009814802816564105, - -5.913542969880399e-05, - 0.00024059156664428736, - -0.000774000652460641, - 0.0005184447470164419, - 0.0016363967842105346, - -0.0006516973385118717, - 0.00025941933126452286, - -0.0004385700743258704, - 0.001171463854901054, - -0.0009810727296613113, - 0.00017597992509834313, - 0.0016186565418279575, - 0.0002777088089580539, - -0.0010944259877069752, - -0.0002846413857934735, - 0.0007954071674765002, - 0.0012779386207758276, - 0.0015566946564149105, - 0.0025746718917090032, - -0.0023269376478664066, - 0.000693046858208233, - 0.0015757448156827876, - 0.0010496338638337286, - -0.0005326612570837433, - -0.0005152459636464881, - -0.0008965367335374877, - 0.00042967373324542726, - 0.0013343074451989333, - 0.00015868925799671053, - 9.878218320458142e-05, - -0.0018058107756518515, - 0.00023163985333152893, - -0.0013065360234357382, - 0.0017288921215923845, - 0.002467173120371578, - 0.0011292433227409007, - -0.0004952077209646962, - 0.0004971297219294988, - 0.0011635221915711534, - 0.00042312171518775623, - -0.0007547485318006465, - 0.0010072451423153996, - 0.0019405825062723653, - -0.00017438556724143144, - -0.00045438355878542444, - 0.000602426173135403, - -0.0006114818015161131, - -0.0013186792120691143, - 0.0015031247978081858, - 3.108486111033439e-05, - -0.0003607219519723518, - -0.0007553023443461253, - -5.213772624731532e-05, - -0.00016113630380516658, - 0.0005316223063966308, - 0.0018797631811885188, - 0.0011317604973735311, - 0.0001105499983143108, - 0.0006391477767964717, - 0.0016973353061446555, - 0.001491002095371194, - -0.0006752178420190775, - -0.0004134602408195504, - 0.0012432682915026801, - 0.00036195406733182913, - 0.000962240989083526, - -0.0017416576414350945, - -0.0016820608999933563, - 0.0008145318740809254, - -0.0012613218340321239, - -9.811475346797134e-05, - -0.0010718231266453355, - -0.0009918240861324157, - -0.0008084875095440158, - -6.544305367411308e-05, - -0.0004226314168548488, - -0.0016463389351741777, - 0.0016417185599581301, - 0.0012515357126305273, - -0.0007715404139028981, - -0.00033794100739727764, - -0.001371558647158496, - 0.0010772479005707527, - -0.0013614924609903804, - -0.0019378958696946286, - 0.0009655834497069659, - -0.00042273410142852755, - 0.002880476699537658, - -0.0006931669625328902, - -0.0015454302969523308, - -0.0004520126714128924, - -0.0003211542325842148, - 0.0010300608908205577, - 0.0013637695563362285, - 7.019898762653762e-05, - 0.0007022963336557063, - 0.001284750778629835, - 0.0013780578795157354, - -0.0006159455172943725, - 0.0014275252918954117, - -0.0004992585971343146, - -0.0016587081376633203, - -0.00038978435843671456, - 0.0015289567393887656, - -0.0007801216496269912, - -0.0002351487085125739, - -0.0011269450394805485, - -0.0008207060850357216, - 0.003436006888906119, - 3.969894167343236e-05, - -0.000937149048974453, - 0.001627772334418262, - 0.0009394554694743463, - 0.0019199598327396417, - 0.001475548735335455, - 0.0004736504387364243, - 0.0017218902365051167, - -0.0007151789634403687, - -0.000964045571154726, - -0.0017232289531033608, - -0.00023189172058351944, - 0.0007273340029073256, - -0.0014769933782213596, - -0.0005240229991746775, - -0.0010703982666376232, - -0.0011147694178254655, - -0.00046479983943393253, - -0.00024692378629351366, - 0.0005135312558812957, - 0.0008137378216161216, - -0.00022470298599309416, - -0.0007897330365318092, - 0.00024004734106718677, - -9.73668684757632e-05, - -0.0002077905419281723, - 0.00015351522632984062, - -0.0010282630768558365, - -0.0016146349700336612, - -0.002132785870314595, - -0.00021585278062098787, - -0.001256743315064973, - 8.486112819320546e-06, - -0.00019726348075824963, - -0.0005505423875859423, - -0.002176026970044841, - -0.001062651639090081, - -0.000259497106160153, - -0.0014714410195160574, - -0.000771856426681798, - -0.0020508417689438104, - -0.0005448122064344424, - 0.0002024347618679283, - -0.0010138942124668542, - -0.0007335647005357454, - -0.00024167665593139345, - -0.00025524468761861104, - -3.620078457539255e-05, - -0.001591907765008563, - -0.0003036012890598751, - 0.00016070910005241246, - -0.0007324961181870225, - -0.00028772253446395895, - 7.4472019794120384e-06, - 0.0008797096211713593, - 8.779015515382102e-05, - 0.00030202778894021515, - 0.0005401863858402514, - 0.0005642370637142385, - -0.001959472313274904, - 0.0015777412214555218, - -0.0004361961110646103, - 0.0014092383462920438, - 0.00029401238806307453, - 0.0009483105115579143, - -0.0002945067305621721, - -0.0004148480516392149, - -0.0013148667130008873, - -0.0017770183202668734, - -0.000227260646288678, - 0.00018217712677001284, - 4.435561949353904e-05, - -4.881038754528242e-05, - -0.0006441057217582518, - -0.0003939393138002342, - 0.002468002600724897, - -0.0003487563722054912, - -0.0009087350645634162, - 0.0002410580703455328, - -5.565118020245435e-05, - -8.504925945877954e-05, - 0.0026837596708299467, - 0.0006085758662826813, - -0.002115735062611961, - -2.9554599949651823e-05, - -0.0011472261510875354, - -0.0014206758324288931, - -0.0013697209120798178, - 0.0005085856333263151, - -0.00022074100734592087, - 0.0007242100719563329, - 0.0006061667616127033, - -8.504218273974198e-05, - 0.001052180513170455, - -0.0004353675150500951, - -0.00027287111201217097, - -0.0006074636239509929, - 0.0005406081715957534, - -0.0009069478185534231, - -0.0005894916566845345, - -0.0007559776446997182, - 0.0009290486295427513, - -0.0005848156009482677, - -0.0013234134651057274, - 0.0012816329364713508, - 0.0013918858866539554, - 0.0002820799378738546, - -0.00016669286145555326, - -0.0013607171204140448, - 0.0028855198052016306, - 0.0012990342397254625, - 0.00114611538439916, - 0.000212509500131061, - 0.000977499410199533, - -0.0010628364873403345, - -0.00036578063963843007, - -0.00048477666949291686, - 0.001182464059818689, - 0.00028796340567039785, - -0.0008935357197826718, - 0.002587294918188059, - -3.0213050147543e-05, - -0.0008177014289521547, - -2.3944138183508953e-05, - 0.0002399706395612233, - 0.001976631588378057, - -1.8699639300012395e-05, - -0.00040784567006957106, - 0.0007022733195093351, - 0.0005230486736423264, - -0.0008609191407034205, - -0.0007679408449660912, - -0.0005281968796333236, - -0.0009967708920937794, - -0.0017841778972068475, - -0.0009248163228223431, - -0.0011835575700024864, - -7.662339121616209e-05, - 4.006613716965109e-06, - 0.001370152770712739, - -0.0002404893291922907, - -0.0005059111298957453, - -0.001988380319887095, - -0.001119011191610601, - -0.0005513341903388397, - -0.0007386975456214389, - -0.0018212511089920078, - -0.0006755427293500553, - 0.000697271428536339, - -0.0005305929241948159, - -0.0004583447087650934, - 0.0006979454850347394, - -0.0013826282747785139, - 0.00019413112120164608, - -0.00012964505754227838, - -0.000488437395688095, - 0.0019441178101225161, - 0.0016627251466734764, - -0.0002784121491868203, - -0.0013760165213118811, - 0.0003100914694467498, - -0.00043891761579211526, - -0.0003452010162974092, - -0.00042970900957179606, - 0.0005315464392610491, - 0.0005145609484561917, - -0.0009266277077139332, - 0.0016676055856648143, - 0.00010310170172472673, - 0.0006267947422903663, - -0.000813843244867034, - -0.00046175668662486104, - -0.0011051855549051662, - 0.000766568748176574, - -0.0004901851015089507, - 0.0004997582592806301, - -0.00018685614897071988, - -0.0006841129612983082, - 0.0006359707210072352, - -0.0013878255539457908, - 0.0006306695318425152, - -0.00038436204912706853, - 0.00040187645147872963, - 0.0005327496891074527, - 0.0018215454484171879, - 0.0014122287446811403, - -0.0013627802103267576, - 0.001834815630700337, - -0.0013789050044651187, - 0.0008791578290813992, - -0.0004079487607992369, - 6.742889655756288e-06, - -0.0007608680586012468, - -0.0005423188057856521, - 0.0004353665395937303, - -0.00044837763325893603, - 0.0004176333767813877, - -0.0004283839972291703, - -0.0015324093542151726, - -0.00032096089815982507, - 0.00014351917317651032, - 0.0012641863856408294, - 0.0005117710228403071, - -0.00020204055106464973, - 0.001714467483938586, - 0.0013721817533667003, - 0.0010353134466738066, - -0.0009956748862916824, - -0.0012253235095554527, - -0.00040159812187926826, - -0.0008208614928380616, - 0.001187168196060793, - 0.00025811670668278756, - -0.001727293615219509, - 0.0020619919857516275, - 0.0012286392998058534, - 0.0015550122698301983, - -0.000824235532645167, - -0.0011088459869167666, - 0.0006453561978863383, - 0.000304172376388374, - 0.00019185227704995175, - 0.00014400078994488091, - 0.0002621934626265899, - -0.0007018841849211253, - -0.00023862655017042734, - 0.0007368437013361567, - 0.0005470697897602706, - -0.0008665659805334579, - 0.0004912328878566648, - 0.0007228843531089835, - -0.0010973388401202139, - 0.00021224838725703536, - 0.0005610659627445653, - -0.001003775092725398, - -0.0010485519778962095, - 0.0011617421240992737, - -0.0018375080026566326, - -0.00010938933577331743, - -0.0015607000151232706, - -7.606614833399254e-05, - -0.0014707109894170275, - -4.994128343290629e-05, - -0.00017263630127675728, - -0.000497442828742867, - 0.0005302901308364585, - -0.0017790467904629905, - -0.000937603473215549, - 0.0008590520451034984, - -0.0007359864936255547, - 0.0012411592764352548, - 0.0010227162993124454, - 0.0004708468407356398, - 0.0006352043514272376, - -0.0002587332223240235, - -0.0005793099216942158, - 0.00019879172003829193, - 0.0007142016311748558, - 0.0016968696707541225, - 0.002136203753139071, - 0.0014457077216049228, - 0.000663151444715387, - -0.0004756084532110342, - 0.0005907644770401701, - 0.0011939728546392033, - -0.0002730422976530161, - -0.00046504297479287135, - 0.00026121778057862626, - 0.0010627630005665847, - -0.0001647008289112847, - 0.0001957583584909089, - -0.0009472666355688118, - 0.0020059029723023336, - -0.0013900942208887222, - -0.0002277383228516566, - 0.00023424282076068054, - 0.00023586080849691108, - -0.00028614514216585127, - -0.000172464275059029, - 0.00011316055338992836, - -0.00023575310874859507, - -0.001852449345426223, - -0.0006091854487943082, - -0.0011669673003340572, - -0.0018190698475421, - 0.0001533712069457534, - 0.0005415371574470747, - -0.0013616194420570354, - 0.0005204584861483342, - -0.0012853750023257748, - -0.0003141804350609804, - 0.0005306219437932779, - 0.0008302616835632837, - -0.0009429207871689604, - -3.639059939658185e-05, - 0.0012258210010097034, - -0.00036499705686196196, - -0.00023104653887258669, - -0.002028407122626162, - 0.000855728092403671, - -0.0003977749370799059, - -0.001002187384014767, - -0.0002891065425229689, - -0.0017741534913217802, - 0.00021547287523477227, - -0.0004059556331964193, - -6.362426068201474e-05, - -0.0005238630467595715, - 0.0006048901485540863, - -0.0005150874391451252, - 0.0010816348808572458, - 0.0007578331375962778, - 0.0009010917416271786, - 0.001694592536580297, - 0.0012915432529566077, - 0.0005409569383284224, - 0.0007529221675167721, - 5.792459701455743e-05, - 0.0013647824796804702, - -0.0002364192652893131, - 0.0004490828030041378, - 0.00030722241622444825, - -0.0021693091952541574, - -0.0005980276849582303, - -0.0012354366703043753, - -0.002618355249448559, - -0.0006378140011173753, - 0.0011439494263097121, - 0.00020481348232218748, - 0.00038959553128681485, - 0.001980399222745151, - -0.0003244113309123819, - 4.413018756552484e-05, - 0.0018441786311441714, - -0.0018838800203688345, - 0.000364647130840739, - -0.0003227738444545068, - 0.0011531034549167381, - -0.0021293033286783006, - 0.0003430526658861855, - 0.0009999018555349223, - 0.0016192838718220013, - -0.0008146156865538118, - 0.0002390529896026534, - -5.5887586584123385e-05, - 0.0019119681581599114, - 0.0006434246410596273, - -0.0018169838250120275, - -0.0004967239351138738, - -0.00026649570083162434, - 0.0005082294588167596, - -0.0004223064958205536, - -0.0005571182319497729, - -0.0006998623509190253, - -0.0003292084127236785, - -0.0004798345478345899, - -0.0035542913496252695, - -0.0002637837961484876, - -0.0007539669231858044, - 0.0012059501080864026, - 3.0056541184410394e-05, - 0.0003167799005701838, - -0.0006587271035126575, - -0.00011961175459155553, - -3.570192928724015e-05, - -0.0004907642629192979, - -0.0004942205208005026, - 0.00016708254232806032, - 0.0015647715252501125, - -0.0015927614037593333, - -0.0006201486653865878, - 0.0018519637871845418, - -0.0011148978914943153, - -0.0007707750472514635, - -0.000533946018886265, - -0.000839144474014491, - 0.0019251587835180442, - 0.0007134467468104922, - -0.00011098962044035274, - -0.0009627699333336634, - 0.00017618609603078318, - -5.584541549792955e-05, - -0.0010724913099648878, - 0.0013099407053219383, - -0.0014382574451544954, - -0.000724126930454644, - 0.0008410753954079802, - -0.00035128063897199325, - 0.0007063192971454871, - 0.0004817066391916138, - 9.705011162656338e-05, - 0.00010674240767484915, - -0.0015623412680485498, - 0.0011371189307849815, - -5.590574011805238e-05, - 0.000471601286282338, - -0.00047823340518290546, - 0.0002033965770073246, - 0.00039020080089527853, - -0.0006305052222572453, - 0.0005108483593861739, - 0.0010315954321955363, - 0.0003953094348902681, - -0.00070934331033013, - -4.849248608494195e-05, - 0.0006758479677129534, - -0.0013501502648581905, - -0.00018397029986840606, - 0.0007630451829965171, - 7.01017842034387e-05, - 0.001968491712469446, - 0.0003468771390964573, - -0.0009046064684225152, - 0.0004962991107782862, - 3.8586391301767254e-05, - 4.9944029432217814e-05, - -0.0017275923098532212, - -0.0006098382351817569, - -0.0009625959120168132, - -0.0013303095262968188, - 0.0007047702076870971, - -0.0008727194345778993, - 7.49948304212421e-05, - -0.0008348021923673883, - -0.0016256828882563617, - 0.0005788678149860761, - -0.0011658410794675802, - -0.0012104007594123574, - -0.00020636274562619244, - 0.0006135649913953711, - -0.001090330736332045, - -0.0010270892661658274, - -9.963078205533056e-05, - 0.0005195819345371216, - -0.0002817722795390947, - 0.0007087971916211334, - -0.0024783137918979767, - -0.0002200804941706135, - 0.0003858208451332204, - 0.0008389164852453235, - 0.000294876411891952, - 0.0017507439631412032, - -0.0007788746620493313, - -9.892501521430271e-05, - 0.0001326601131176974, - -0.0006044300293587392, - -0.00023472645628515301, - 0.00012888367900715716, - -0.00034075908467430565, - 0.00027469915158700537, - -0.0015759156652018062, - -0.0006726643680504644, - 0.00019359666468269602, - -0.0008768516491710488, - -0.0002638899587238991, - -0.0011681788808004523, - 0.0018518225331391545, - -0.000339810366010113, - -0.0020726592500055164, - -0.0001871767357686002, - -0.001956276565025694, - 0.0006285064790870529, - 0.002319792832808875, - -0.0009302024866675088, - -0.0011426938458960329, - 0.001056463527249823, - 0.002367807210443055, - 0.0019879134348697487, - -0.0008475708653358059, - -0.0017777449336610933, - -0.0007686449443678876, - -0.00046462024068300397, - -0.0006870541005099004, - 0.0006434326298923074, - 0.0002338428417321113, - 0.0006209036132072826, - -1.762423727519622e-05, - 0.0006247490840127171, - 0.00022306974695925912, - -0.0006424999827948988, - 0.0002918693887689834, - -0.0016061425116674997, - -7.737033549829402e-05, - -0.0009045940343160741, - -4.386250440623488e-05, - 7.154792483243035e-05, - -0.0006505368935504646, - 0.001232821283130573, - -0.0004029661503433726, - -0.0012711889384231139, - 0.0002451972799744163, - 0.00036374198606649056, - 0.00015393166823964025, - -0.0005248319230370493, - 0.0001005145817860494, - -0.0015723036566695106, - 0.000972303391551457, - -0.0005233287525009302, - 3.3913765161488124e-05, - 0.0005656812094995245, - 0.0005275985199515649, - -0.00028050661098715256, - -0.00045548298038926, - -0.00026206798139245975, - -0.000840390825984235, - 0.0003495751533143237, - 0.0005380663954297442, - 0.0006470888423573023, - 0.0006874883818883705, - -0.0008703150713908538, - 0.00030307995916695977, - -0.0006775077136722441, - -0.001181921518124304, - 0.0005767099521804254, - 0.0003330070122296892, - 0.0011924023603203703, - -0.0003767901937349975, - -0.0009135668476652495, - 0.0003861392508695503, - 0.0011087743130141284, - -0.0014100274086969065, - 0.0013404495300917102, - -0.00016874714019263033, - -0.00033898195014055827, - 0.0018266527577019645, - -0.00040060585237489344, - -0.0008183501375311675, - 0.001143055387191658, - 0.0004946092839084285, - 0.001185517352532013, - 0.000179290290761112, - 0.0014955758610970748, - -0.000556393805098817, - 0.0009226823757541367, - -0.000141701019012894, - 0.0012468922892753746, - 0.00012076025414857614, - -0.0008933796818030753, - -0.001001787876618915, - 4.295274881942342e-05, - 0.0003804660210684932, - -5.863071997168328e-06, - 0.0007090501122699801, - -0.00036354909116044655, - -0.0011783535461763407, - -0.00015768509907959391, - 0.000222419594593706, - -0.0014645328793503334, - 0.0006077414719953865, - 7.749392205930228e-05, - -0.0005726226557266564, - -0.0005389086316844031, - -0.0015417370816275399, - 0.00020738985110555847, - -0.001238680137873188, - 0.0007788300624382821, - -0.0015026502905072555, - 4.065960443827435e-05, - 0.0002704604245202564, - 0.0005588684466973966, - 0.001473961790394332, - 0.0008138950111990406, - -0.000654266844882041, - -6.399537259759258e-05, - -0.00028811597366787563, - -0.0007599171593815213, - -0.00018348997616228314, - 0.0021114563404289943, - 0.0015400861256707205, - 0.0010307015165472435, - -0.0008964337977420799, - -1.3402700939711894e-05, - 0.00017256141694678906, - -0.0004267957402980235, - -0.00043003145413725573, - -0.00041344538840220143, - 0.001500419513409365, - 0.0006175533105893108, - -0.00011890435838522091, - 0.0001073738792956918, - -0.0005428030717511917, - 0.0004259913951944261, - -0.0005466337500256161, - -0.00013786617924868482, - 0.00013004780547500107, - 0.00033486088672849985, - 0.0010749240730827435, - -0.0008263031185473841, - 0.0005088896071146848, - 0.0023133562301181324, - -0.00015541442574103201, - 0.00036945340665289045, - 0.0016015645297764811, - -0.0011926138058018009, - -0.0007908241040074331, - -0.0007743259722093375, - 0.0021798408075507356, - -0.00018085365352637722, - 0.0008417384402695851, - 0.001059188458991249, - 0.0003938616403376389, - 0.001502730003896288, - 0.0009440873056746446, - 0.00015977200463794734, - 0.0009582588150626653, - 0.0007713462474573261, - -0.0011627467276789233, - -0.0008110978820475603, - -0.00043471660529734147, - -0.0005268309569146806, - -0.0019105224043895646, - 0.0007369689393221212, - -0.0006250203230940373, - -0.0004627184880532901, - 0.001001284342075303, - 0.0015773069813906878, - -0.0008161020869274945, - 0.0007273292154230727, - 0.00018674843947885387, - 0.00010085485308772315, - -0.0017218101831823138, - 0.00044077998783792694, - 0.0005356297685534336, - 0.00022924896558156524, - -0.0011104963173442892, - 0.000999579407246948, - 0.0002446673872653208, - -2.72609287764138e-05, - -0.00015108923559576846, - -0.001151664348937209, - -0.0007364155191234738, - -0.0016630080466208434, - -0.0006457385032875702, - 0.00010552048937404763, - 0.0010070341659481872, - 0.0008738052426455669, - 0.0006424687654960847, - -0.0010379967370064646, - -0.00025853169115226123, - -0.00044752868061825716, - -0.000145306252039326, - -0.000988954551938975, - 0.0008387597298402755, - 0.000854735575468694, - -8.74753050008291e-05, - -0.0016063858317493587, - -0.0011474944216380166, - 0.000582547179485278, - -0.0007681562454809629, - 0.0009032632598055361, - -0.0006230983025357806, - -0.0012442756446951744, - -0.0003462504245769126, - 0.0007879817659734947, - 0.0005654654858035443, - 0.0021023327314016013, - -0.0010175530144982518, - 0.0014899025426558894, - 0.00024301300632386503, - 0.001363295818008161, - 0.00013752256233615925, - 0.0006150874101512865, - -0.00024262967502025406, - 0.0009712776014729804, - 0.001483967050252448, - 6.682269501215147e-05, - 0.0010431375338894498, - -0.0018395796418831432, - -0.0003901801843546127, - 0.0009470264254235924, - 0.0015523793197296904, - 0.0008401451904839624, - -0.0017418734085727012, - 0.001925185641451672, - 0.0005886539890469323, - 0.0012852706961870549, - 0.0013915686078292292, - 0.0006617730678158745, - 0.0011548142796029431, - -0.00014052281690667758, - -0.0014787168914362696, - -0.0012915100971865809, - -0.0003701165050077378, - 0.0021634810156434827, - 0.002374778250694069, - -0.0006543588494897601, - 0.000567903710927445, - 0.0008489199519400467, - -0.0010356957069720977, - 0.0008511868480481264, - -0.0005648501002454, - 0.00022505449123308725, - 0.0013075639233161543, - 0.0005254162056026667, - -0.00266467728163825, - 0.0005472349586673109, - -0.0005844377558589395, - -0.0007316292142464266, - 0.0010765342976612282, - 0.00028422314704339786, - -0.0009703919461452465, - -0.00042870719697929, - 0.0011370385098374521, - -0.0018711994580595222, - 0.0005066993028766408, - 0.0025841794516828867, - 0.0011955066688136365, - 0.0007368009595244562, - 0.0007237260993350595, - -0.00014500813988332461, - -0.0001332619062004114, - 0.0001502684766358644, - 0.0002849967117523045, - 0.000993000306375094, - -0.0007788431345886861, - -0.001189166383798867, - 8.877958669768165e-05, - -0.00020728495203125886, - 0.00020488118567903754, - 0.0015579163443635398, - 0.0004497173387454979, - 0.00014704909397217868, - 0.001079491710826068, - 0.0011277557636237912, - 0.0010185718657773368, - -0.001084770932852381, - -0.0016449141469379524, - -0.00047925930544741617, - 0.0006375356438111523, - 0.00036999385543651014, - 2.4829125882246283e-05, - 0.0017860197558468168, - 0.0010836763310391364, - -0.0005600217367061524, - 0.0026890565530743597, - -0.00020730804016353928, - -0.0007411010403929097, - -0.0010539059508771792, - 0.0005318330344665369, - 0.0007803373273579573, - -0.00040098234523645545, - -0.0004316844837779429, - -0.0004772491985725347, - -0.0007490864342943435, - 0.0011592379781794524, - -0.0011607359366444681, - 0.00011779214038664349, - 0.0013987139199642521, - 0.00022557006615735588, - 0.0017935595510388497, - -0.0005323781252051362, - 0.0002288345517426682, - 0.001101448036143932, - 0.0004334481710940657, - 0.0004254284368068267, - 0.00011235540869107747, - 0.0009119249832900277, - -0.0016370892276454932 - ] - }, - { - "legendgroup": "Beam sensor 2", - "marker": { - "color": "rgb(248, 156, 116)" - }, - "name": "Beam sensor 2", - "type": "box", - "y": [ - 7.656810667384587e-05, - 0.0001256778022451755, - 0.0006803383513394059, - 0.0005913748726034556, - -0.00046198254944434375, - 0.0012410920223214878, - -0.00040138166517459853, - -0.0002800044166297697, - -0.0004106074250724932, - -0.0016568538165286453, - -0.001575294446057357, - 8.784789930013175e-05, - -0.001021966993939227, - -0.0011198557417276065, - -0.0004899717050034798, - -0.00019820659639728616, - 0.0006230428769635692, - -0.0006312910478055595, - 0.0019445098312711275, - -7.339481524944843e-05, - 0.0009022775825106951, - 0.0005165427235979671, - -0.0003866495086094546, - -0.0005167627928576664, - 0.00013126327335612295, - -0.00011229893031209793, - 0.0010297976104828453, - 0.0005217088817497572, - -0.0004106299826263494, - 0.00024264324076145395, - -0.0002545909615866985, - 0.0014519905837697869, - -0.0008574807674147787, - 4.142391672583503e-05, - -7.693694681016428e-05, - 0.001930290513228398, - -0.0010514723901097417, - 0.0012093500123567852, - 0.0007050291526787955, - -0.00023193918713375458, - -0.001298117239233432, - 0.0011997566277297522, - -0.0016381090925030775, - -0.0004574536787650868, - -9.523630682031805e-05, - -0.0003819370809435414, - 0.0019598043150892306, - -0.0012574415071627137, - -0.0005232501062589213, - -0.0008985188367688316, - 0.0006296303945132072, - 0.0003313602426791109, - -0.000712179299388236, - 0.0022772999520417375, - -2.8714496974101e-05, - -0.0006203607578209316, - 0.0021790190421467604, - 0.0002515466351341073, - 0.0017802315076032333, - -0.0004335458075040455, - -0.001509239868055148, - 0.0007989291109843954, - 0.0010832258803820834, - 0.0008299548457119785, - 0.00048366295097322827, - -0.0004127819245310625, - 0.0002044777874548027, - 0.0006593402633857175, - -6.339931410250175e-05, - -0.0003419831832560999, - 0.0001822028826325183, - -0.0014586056722016216, - 7.311320300336662e-05, - 0.0003933645668108879, - 7.333316629242988e-05, - 0.0006415136661925926, - -0.00043693353565740935, - 0.002169723919694998, - -0.00048411041561265285, - -0.0010434666490311195, - -0.0006417965592222072, - 0.000917363654582779, - 0.0015603730916762984, - 0.00025381226452547294, - -0.001444162731765251, - -0.0001424324083090046, - 0.002164392889446073, - 0.0005331385048497212, - -0.0006791239565219688, - 0.0003482804575702447, - 0.0004898560480680788, - -0.0016670309407238433, - -0.00023420350003576515, - -0.00022511593831405893, - 0.0002911285330302844, - -9.728054697610982e-06, - -0.0012367010289177885, - 0.0010065752338042511, - 0.0012921996607867287, - 0.0004630303489263868, - 0.0008360674053848421, - -2.4464388383966096e-05, - 0.0007521987517516874, - 9.929576869310043e-05, - 0.0002231912338237039, - -0.0004939322200450301, - 0.0006492609832046414, - -0.0010933070829457097, - 0.00044328764585801393, - -0.0019024809358814743, - -0.0006110359806541519, - -0.0009663675358201398, - -0.0014433489277816411, - 0.0007731577446759787, - 0.0007285816021498828, - -0.0003859034841851037, - 0.00038100303379425476, - -0.0005062521720210321, - -0.0011819526446204807, - -0.0008651084442082644, - -0.0011860042973092018, - 0.0008971149853369809, - 0.00091511732075445, - 0.0016146242319610422, - -0.0003414335139811339, - -0.0015902351413743523, - -0.002090656237246091, - 0.0025966765067673117, - -0.0007633201122500201, - 0.0017964433923448205, - -0.0005880579388441268, - 0.00021295755401424128, - 5.950350469623563e-06, - -0.0026121912367479483, - -0.00041275738944371955, - -4.303541233569487e-05, - -0.0003796279763034086, - 0.00033940182475835756, - 0.0002405161717219509, - -0.00047779148096005426, - 0.0007618692567594534, - -0.0024004280644209066, - 8.409445000637571e-05, - 0.0014546531384872516, - 0.001279913401986711, - -0.0025306762429573243, - -0.0001652962749854122, - -0.0012396498783174628, - -0.0008900953505076999, - 0.0014699298167008198, - 0.00041543477452937885, - 0.0017279951616540178, - 0.0009387473750906241, - -0.0007308345090737305, - -0.0008775635686911344, - 0.0013656745533087052, - 0.0006769974920156209, - -0.00022178022371391185, - 0.0009379351352966593, - 0.0005754718774719712, - 0.0018449481110084838, - -0.002495744620302533, - 0.0002832495805457348, - -0.000911212078544719, - -0.00027859826186327983, - 0.0007858469485473108, - 0.002562329056475527, - 0.0005536343773912894, - -4.979122779059024e-05, - -0.0005123210955463594, - 0.0002909388123919796, - 0.0009712318245413129, - 0.0011245948905022696, - 0.0002693657959982866, - 0.0004220197797298344, - 0.00023061917939314546, - 0.0002646287748336065, - -0.0002597588590502653, - 0.0009642260885560972, - 0.0006662879055731158, - -0.00018814743906531717, - 0.0012185343930607379, - 5.1348515880526696e-05, - 0.00035661334004022464, - 0.0002597941131424154, - 0.0014988490846613647, - 0.00018457602231675466, - -0.0024881659101287854, - 0.0010775592174517977, - -2.926453420716347e-05, - -0.0022653591750177817, - -0.0024384204921957604, - 0.00039694209646267645, - -0.0004066038774147856, - -0.0008058468424243844, - -0.0005106168570948902, - 0.0013057416619176223, - 0.0002491886356428618, - 0.00017485923534036406, - -0.00015831161604490932, - 0.0017895801512216123, - -0.00048821750753410187, - -0.001372925227030343, - 6.16798747403428e-05, - 0.0007273075467913353, - 0.0005256027386211588, - 0.0005336295442531012, - 0.0017069790730582458, - 0.0002004222974359483, - -0.001000884434248139, - 0.0022413590638423603, - 0.00013775927765809166, - -0.0008896690754834542, - -0.00047862230609269806, - -0.00014079599922373184, - -7.986194385217831e-05, - 8.597201457294862e-05, - 0.001155624247421614, - 0.0005742490253098929, - 0.0007007874558009597, - 0.00021897481469138736, - -0.0006865264641133674, - 0.0017598979011100113, - 0.0009188943761541144, - 0.0009128316037874819, - 0.0020195297471148456, - 0.0005990614171478886, - -0.001092958281347565, - 0.0002610174053430764, - 0.00030129335276857504, - -0.001156035008833989, - 0.0008161984109847374, - -0.0012663327722824231, - 0.0008124856969300245, - 0.0006236131752623091, - -0.0003637674682128274, - -0.0023162752175557564, - 0.000277008578838728, - -0.0002255277656063046, - -0.0019458005302910816, - -4.8328519458773246e-05, - 0.000497277029697064, - 0.00031891609930624615, - 0.0006503769135425756, - 0.0010910698808943705, - 0.0021664846411657, - 6.043496163095584e-05, - -0.00041625892971193214, - 0.0006461144990224931, - -0.0012222272766978285, - 0.0020555733714601007, - -0.0005141025051228614, - -0.00024613728136080245, - -0.0014003512257620904, - 0.00017287680330570603, - -0.00046912819885271026, - -4.914163039153718e-05, - -0.0019851412623615064, - 0.003015022651360246, - 0.00030495269277895393, - -0.000788672472246912, - -0.0015920723429650777, - -0.001682611304676194, - -0.0022241498207114835, - 0.0003098032283633992, - 0.0006694751711510025, - -0.00010009338192901343, - -0.0009104225746528711, - 0.001721486002883049, - -0.0001246647221755968, - 0.0005245299374259847, - -0.0010346925491329694, - 0.0011678694962924236, - -0.0010790005702792556, - 0.00019482555355903951, - -0.0007371293863957622, - 0.0014136253482511876, - 0.0009508284056432728, - 0.00016922568616981667, - 0.001961784546556514, - -0.00039760782151291603, - -5.79313972587264e-05, - 0.000141142631336062, - 0.00010240686203960431, - 0.00186382668057399, - -0.000782192103676854, - -0.001327746704691137, - -0.0004930588592163732, - -0.0009279487690603255, - 0.00027707273978354183, - -0.0009003757501213505, - 0.0005606940164143682, - 0.0015153573704626288, - -0.0005261242108606947, - 0.0011673561590171081, - 0.00047286247859146767, - 0.0006999532538937268, - -0.00014304499222049082, - 0.00024838122622449795, - -0.0016064420583193904, - -0.0007034912817409548, - 0.0010446359935622723, - 0.0008915366304369096, - -0.00046720874871117237, - 0.0015530928065914705, - -0.0006344795432080147, - 0.0005423277625345727, - 0.0001901017281567245, - -0.0007933464678237682, - -0.000889711410170383, - -0.00017709209690889956, - 0.0011756242912645955, - 0.001328869345415833, - -0.000331314588091063, - -0.000522610145379927, - 8.268232544945186e-06, - 0.0023119921722877814, - 0.0010009935241784998, - 0.0013453570478506947, - 0.0012923744245959036, - -0.0003293477848174495, - 0.00031251024948496145, - -0.0007648390221323798, - -0.0011288096027664784, - -0.0017379789521631127, - 0.00039042558742397976, - 0.0003891332441938658, - -1.6909608973275856e-05, - 0.0002931386950514126, - 0.0025838488985807616, - 0.000138023220235142, - 9.174168507933326e-07, - 0.0010396858522528842, - -0.0003287024990613856, - 0.00034997926552376106, - 0.0004196220201370197, - -0.0018569014743020187, - 0.0004974543011606329, - 0.0005593814797620915, - 0.0009393119495851943, - -0.0004987278654006886, - 0.0022173436423840657, - 0.0002832411735820875, - -0.00036842863783054225, - -0.0009157995036543642, - 6.534964496955823e-05, - -0.00010073484533912367, - -0.0010398958864292396, - 0.0002773683796138288, - -0.0001910611479985523, - 8.74175958719328e-05, - -0.0009362435542332598, - 0.0009606977680647401, - 0.00030517946056540763, - 0.00157129556000269, - 0.0005894564853408592, - 0.0005312287747137559, - -0.0010446449730483263, - -0.00013255936994009766, - -0.0004649476418798705, - -0.0007769287559563996, - -0.0016535770539318566, - -0.0004796528739675703, - 0.0004666426708757414, - 0.0003861706701556473, - 0.0004169082456481669, - 0.0017745173139152334, - 0.0006104007010054861, - 0.0005913540071494191, - 0.0007750192821092731, - -0.0003136712427539865, - -0.0013270803496100655, - 0.0003202700655071269, - 0.0008098401941082809, - -0.0006989981320712459, - 0.00038913593367489893, - 0.000845818406851873, - -9.542848067790744e-05, - 0.0013879125562539264, - -0.0008272544930317306, - 0.0006168671032644434, - -0.0008166866151760641, - 0.0011319201905270685, - 0.0005629132827121433, - 0.000703204080880013, - 0.0010963790923262738, - -0.0004735344615684247, - -0.0011605136622136654, - 0.00046075923474681317, - -0.0012032685837064536, - 0.0009445506842183625, - 0.00033993566119163473, - -0.0007824086252408686, - 0.0012413216723488583, - -0.0009395094395431245, - -0.00018660508364277373, - -0.0002850592640570084, - -0.000728203456889436, - -0.0004020646666655352, - 0.001040649279828233, - 0.0015776083902998232, - 0.0003247876525104651, - 0.0005162552348196342, - -0.0014753464323529974, - 0.0008167924494942172, - 0.0002514859946837411, - 0.000461088602395402, - -0.0007282489454601424, - -0.0008091480405252856, - -0.0021072462548547242, - 0.001254862927192882, - 2.4353936970571817e-05, - 0.0008805206469146094, - 0.00030407130285250766, - -0.00025851382569795883, - -0.0008098050196918451, - -0.00045060702403185214, - -0.0012215153865736913, - -0.000510432340385013, - 0.0011743585982175154, - 0.0013607741535355496, - 0.00019559728444057381, - -0.00039218134282061696, - 0.0009194346348626505, - -0.0009608628134851246, - 0.0011151100304853192, - 0.0010584264142533839, - 7.951160546544137e-05, - -0.00017219615071221775, - 0.0010642757544033108, - 0.001363423026633646, - -0.0005373750536942919, - -2.5122683896552736e-05, - -3.0194235636172747e-05, - -0.0003877772963214069, - 0.0017447528381280212, - 0.0013203198769163647, - -0.0010500536207065409, - -0.001974839892724997, - -0.0006635927728094529, - -0.0013697723326030827, - -0.00036819431521866955, - -0.00022885108265983012, - -0.0012124276528123143, - 0.0018741395993203379, - -0.00018429501379276476, - -0.0012061807101650397, - -0.0007114303885674934, - -0.0001704281639173684, - -0.0002902647480552818, - -0.0021316579653950477, - 0.000840724040309528, - -0.002270283285063283, - 0.00014579352740310333, - -4.2617012540697825e-05, - 0.0009994480867402031, - -0.0013028464197692403, - 0.0003476503997589411, - -5.4253320728446165e-05, - -2.753708998585495e-05, - 0.0016047490373884295, - -0.0002697242636728243, - -0.0007666917396651779, - -0.00047582373249751946, - 0.00023884397870724012, - 0.0009308469270305214, - 0.0008123458074812748, - -0.0009328950563823488, - -0.0011177703499250307, - 0.00037143009613781083, - -0.00020726367059795643, - -0.002303393615214204, - -0.002793721756849554, - -2.5728449402468657e-05, - 0.0011468744660400928, - -0.001571695501781529, - 0.00020145568389266203, - -0.002149464823230124, - 0.0006239363550951761, - -0.0005867817236052229, - -0.0008612183249308038, - -0.0031817658641994906, - -0.0004407992339830858, - 0.00014339844705015691, - 0.00017267518793793272, - -0.0014912839126622866, - 0.0010009928456718481, - 0.00017022772330617692, - -3.6247996846902e-05, - 4.237990065729516e-05, - -0.0013477832162152358, - 0.0010344149590962176, - -0.0004369057018921014, - 0.0006383823089301994, - -4.403657223125046e-05, - -0.0009344663533514067, - -0.0007010930300830766, - -0.0017570004109139887, - 0.000277845759728913, - 0.00043327178141536616, - -0.0010580386754333955, - 0.0012430936163134636, - -0.0003675026486269816, - -0.0001511328050503158, - 0.0018941164767350646, - 0.001266271677166076, - -0.0010592884443769207, - -0.00011452560268288247, - 0.0007146810343947118, - 1.5756075773200387e-05, - -0.0004745457694690946, - -0.0003522081954843037, - 0.0006675934501205533, - -0.0010433595785623103, - -0.0003834979385608979, - -0.002501801860598904, - -0.0018136865475181926, - 0.0009300804530495134, - -0.0005297465294748548, - 0.0018508840844826148, - 0.0008380550931781602, - -5.501046629709679e-06, - -0.00020345070015758757, - 0.0019934048672262416, - 0.0003925708268564418, - -0.0017617039401661195, - -0.0003819298469448349, - 0.0016469739173229148, - -0.0002852405698555429, - 0.00031787198339223175, - -0.002803203054383214, - 0.000595845301372, - 0.00015929045828726724, - -0.0009499384605075085, - 0.00013877363328001506, - -3.6797718475834335e-05, - -0.0005314015111995258, - -0.0018909207661100991, - 0.0011014078077046033, - 0.0005922003260568318, - -0.00045403529533698565, - 0.00014247653245925247, - 0.0008570031246436952, - 0.0006470883643467999, - 0.00021100605180033306, - -0.00025459353458318073, - 0.0011466348457035973, - -0.0003796967233145412, - -0.001089158038852652, - -0.0002341372257283146, - 0.00012156407306893055, - -0.00014126183503740752, - 0.0014084609923506817, - 0.001053930469377752, - -0.0008035612890979618, - 0.00040566623715225714, - -0.0009450281806155571, - -0.001155656202499346, - 0.0016704528152892452, - -0.000749954306779651, - 0.0001246089277976504, - 0.0006259169758657284, - -0.00029483216122053554, - 0.00020291000484258976, - 0.0008188085134657201, - -0.0006860392486118361, - -0.00036482522563124545, - -0.00027150492510474367, - -0.001283420540156794, - 6.239095523909898e-05, - -0.0019288652746448768, - -8.94958188347466e-05, - 0.0008485096956863327, - 0.0012221465407332172, - 0.0007202533278187952, - 0.0002100253294332832, - 0.00032556592270938556, - 0.0015641394680157071, - -0.000295167170202217, - -0.0005746162733151228, - -0.0005267537754201669, - 0.0010486295606297782, - -0.0003563399286307688, - -0.0005150274012289881, - 0.001460478869421561, - -0.00010706928115644342, - -0.001610593853087558, - 0.00012731286283294027, - 0.0009197967181578887, - -7.716137494461068e-05, - 3.2978023688373916e-05, - 0.00052580595995742, - 6.713737647407029e-06, - 1.985824372119015e-05, - -5.324105312324413e-05, - -0.0003004230410000078, - -0.0016708783410769497, - 9.485231676994294e-05, - -0.0008400710015779521, - -0.00013190405896179008, - -0.0011528536352223338, - -0.0016908033781673276, - 0.0005996773116794083, - 0.0006888858993406239, - 0.0004394505031924274, - -0.0019564399847518967, - -0.0014281397512002293, - -0.00022150089909260925, - -0.0012110803924512737, - 5.04310846367052e-05, - 0.0009015187757675187, - -0.000943932152890365, - 0.0003551971721559812, - -0.001419783753010987, - 0.0007653143809036742, - -6.0266383168315045e-05, - -9.836482918994821e-05, - 0.0010795982849539267, - 0.00019854117429511469, - 0.001789751916052169, - -0.0007594400827912356, - 0.000773563937524272, - 0.0008961239562376637, - -0.0004602401357350056, - -0.0010122124628173814, - -0.0005113088200393357, - 0.0006065362689693768, - -0.00022444950823412605, - 0.000752998145266807, - 0.001229427322759726, - -0.00022665862521176704, - 0.0005984100703677375, - -0.0007472576395503315, - -0.000881498808480848, - -0.00038328424587436005, - -0.00035184486797430596, - 0.0017862753837829108, - 0.0004567545293852018, - 0.0002619756186426928, - 0.0006495138868335868, - 0.0002445922905642797, - 0.0003787820390551562, - -0.001008786479454329, - 0.00034096953550406486, - -0.0007840650142016289, - 0.00021494762590105966, - 0.0003641293469847391, - -0.0008041390306453059, - -0.00042868523651311594, - -0.0005303941584919906, - -0.00028581501303200573, - 0.0014960742763090234, - 0.0005367550359833152, - 0.0010417299070879522, - -0.0011044544007497148, - -0.0006065346924526825, - 0.00016587905807490422, - -0.0006210309057767814, - 0.000597319547961875, - 0.00013471708428275928, - 0.0017206276058143294, - -0.0011510461111533565, - -0.0002485366535156265, - 0.00020983621810322895, - -0.0005423729614942041, - -0.002158828291913015, - 0.00044002101156295005, - -0.00035977119675304457, - 0.001904887448916243, - 0.0008296219098086778, - -0.001707066574412792, - -0.0014904466181882457, - -0.0006014675358503941, - -0.00010179176065810389, - -0.00030874887170816205, - -0.0008639215149397838, - -0.002244468309832077, - 0.0019349041284327756, - 0.001191479887085305, - -0.0008683429714424665, - 0.00031075384003832057, - 0.00017812236124244396, - 0.0007791059842557649, - 0.0007245244368670253, - 0.0017605533717406328, - -0.0008096801079058605, - -0.0006992789241611811, - -0.00024535911953812246, - 2.633323516875053e-06, - 0.0003812623870828303, - 0.0005863003736609306, - -0.0009867110269935987, - -0.0007648865384620152, - 0.0010780352020335418, - -0.0002789455866623805, - -0.0004914221293336151, - -0.0007587016180505357, - 0.00035613213827447634, - 0.0014964679278022634, - 0.0008231185025089593, - -0.0005939936458498039, - 0.0006272094390813142, - -0.000398160950235131, - -0.00012254117866166892, - 0.00014987917150937786, - -0.0010290723853311997, - -0.0020408741209716657, - 0.00046823692148837597, - 0.0002721883294276684, - -0.0008070948042842753, - -0.0007176311861785703, - 0.0013166170970188816, - -0.0009952787444930877, - 0.0008223542288445742, - -0.001089325812991741, - 0.0007043280008889586, - 0.0005715792761183837, - 0.0009096120756983156, - 0.0005336907277170804, - 0.00036727992844107313, - -0.0002799026694320279, - -0.0007172428722121905, - -0.0007345327674635754, - 0.00048522152651575307, - 0.00010195684599415958, - -0.0007111014461936245, - 0.0013705466901287853, - -0.0010291196205530948, - 0.0015104060154639998, - -7.28223225644797e-05, - -0.002213914845081422, - 0.00191118314223775, - 7.431065095257667e-05, - 0.000392653677461934, - 0.0016864957798449092, - 0.0018111238290088752, - -0.0011266727596784636, - 0.0016348506242050776, - -0.0008502771507828571, - 6.915849312201183e-05, - -0.000776488604783856, - -0.0008389171491044452, - -0.00018767712166534772, - 3.375526632793528e-05, - -0.001963722906934987, - 0.0002847409331890699, - -0.00026167410661947436, - -0.000902841807637602, - 0.0014977529702436853, - 0.0018889554126777011, - 0.0017935949740477946, - -0.0007068339801629388, - 0.0005219413042715401, - -0.0002551518982338158, - -0.0010188565323870737, - 0.0025073067624296974, - -0.00014560191243280984, - -0.0007221651315943252, - -0.0018812867341764777, - 0.0013835999655679135, - -0.0012266959334664644, - -0.0007955733975550133, - -0.0005780694640991179, - 0.0002303939949118471, - 0.0013171042191918272, - 0.00033510962049424387, - 0.0004233644661454179, - -0.0013893491055372415, - -0.0012053766259647687, - -0.00024083890779543252, - -0.0004755312216196075, - -0.0006087591665366053, - -0.0001331325388253756, - 0.0007797191144816566, - -0.00014752978636978768, - -0.000337732119516129, - 0.001042051058375504, - 0.0008704887441414064, - 0.0012754415639450955, - -0.0020588672815765583, - 0.0003007684233623938, - 0.00013513231597938078, - 0.00038878803486611075, - -0.00094106056671009, - -0.0011130685806486202, - -0.0007320589029872756, - 3.742374637671408e-05, - 0.0016924645427456213, - -0.001509926096401841, - -0.0007586238447456048, - 0.0020926437588967123, - 0.0020046722325913085, - -0.0001956850766341046, - -0.0003572337252814789, - 0.000795240175474334, - -0.000207674690406096, - 0.001715335255982106, - -0.0014133791441005442, - -4.73467651082631e-05, - -0.0001434092810568783, - 0.0008668149937825248, - 0.0003772407610208521, - 8.927969130562437e-05, - -0.0004075688576260636, - -0.0007562716627201976, - 0.00017263859815034766, - -0.0002727618160032937, - 0.0003634311264587644, - -0.0003969001479080198, - 0.0005750488117243685, - 0.0014028399000779281, - 0.0009523583326846977, - 0.00011937457416130827, - -0.000867827387308768, - 0.0013895796641168639, - -0.0005384693199435318, - -0.00022170236639162185, - 0.0012688204920828267, - -0.0005155087553797865, - -0.0016171781154221683, - 0.00019273043840492785, - 6.05400905724785e-05, - 0.001526590622714586, - 0.001321230554870473, - -3.125407937410362e-05, - 0.0006530708414912342, - -0.0004244221699182637, - 6.5093144041870094e-06, - -0.0009249519711157076, - 0.0005951550970643876, - -0.0010087620059996286, - 0.0011416375998841346, - 0.0004215224742540853, - -0.00014150044343647257, - 0.0004091571942092952, - -0.001642656693183743, - 0.0015323464881712386, - 0.0001649383252042196, - -0.0008735941940370457, - 0.00010994249033523816, - -0.00032416820076257475, - 0.0018146398762113644, - 0.0026226609140734543, - 0.001513095449298825, - -0.0010674531460475277, - -0.0013893384511894074, - -5.9886539118880244e-05, - -0.0007817190922656954, - 0.0003976203199105395, - -0.0015897165903643548, - -0.0005319040181826537, - 0.0020255983690700727, - -0.0015619109599287694, - -0.0006674739203056095, - -0.0012459172832557824, - 9.558099039910073e-05, - 0.00019841863918110695, - 0.0013149064409836999, - 0.0012453298882578003, - -0.0011728191449651485, - 0.00030955916486962706, - 0.00014938778318738293, - -0.001770822610332583, - -0.0004674120226858995, - 0.0003193903887486289, - 0.0015826576019005235, - -0.0002145507413838174, - 0.00016956563761580788, - -0.0015821786109463274, - 4.636934764081868e-07, - -6.5529624539878546e-06, - -0.000910545809920793, - 0.00026363200852265207, - -0.0006352783850071999, - 0.0007430346508666614, - -0.0007584574500557427, - -0.000350836628007373, - 0.001826069643479992, - 0.00038883931640081514, - 0.0012151748174372983, - 0.00023075605410517188, - -0.00037719802965800926, - -0.0012142793071346157, - -0.0006622683539599716, - 0.0006803262959615222, - 0.00043146077720037507, - 0.0008270472834066952, - 0.0012893162931136583, - -0.0015554794788822063, - 0.00038089480382909845, - 0.00046535342722879287, - 0.0010582636704176923, - -0.0013047075227688714, - 0.0008924509361585241, - -0.00011672046286511743, - 0.0016466957932452753, - 0.0004694514717989001, - 0.00021618799396451094, - 7.233795385160803e-05, - -0.00033410306948384677, - -0.0004856951891653224, - 0.0002490498322420274, - 0.0002291288341693471, - -0.0011763817398184036, - 0.000995101256672553, - -0.00036662664710421266, - 0.00014247916095569632, - 0.0002764575284355977, - 0.0004712936494350812, - -0.0011953046531295716, - -0.0001932853205817861, - 0.0003231879670319909, - -0.00021712522024175355, - 0.0013671008907419186, - -4.9926934284278275e-05, - -0.0015689521191738372, - 0.002270482679311869, - -0.0002983722233201883, - -0.0005019507446934675, - -0.0005751016111442322, - 0.0015159117492781619, - 0.0007610841109799923, - -0.0006855190423934663, - 0.0012723173671336018, - 0.002230525312155088, - -0.00025335638705477565, - 0.0018564796552419896, - 0.0012340652878858802, - -0.00141562598334178, - -0.0006079785008845521, - 0.00033674605114971854, - -0.00044062808674288234, - 0.00040264828284959994, - 0.0016390898517184443, - 0.00026665026546064305, - -0.0002503483251249077, - 0.0014159714732116134, - 0.00023803736151676024, - -0.0004084707525186938, - -0.0007376759738016058, - -0.0011879263586698676, - 1.9928701650405975e-05, - -0.0006637427961113709, - -0.0010768025137168717, - -0.00021630615103722473, - -0.0008244831301827721, - -0.00022617012035002848, - 0.0010285696260966246, - -0.001151272308031289, - 0.001133194587036383, - 0.0006973062187150196, - 0.00020579794856829116, - -0.0007120345800856968, - 0.00047700639147278223, - 0.0011561715167156144, - -0.0001424799668470613, - 0.0010306005723754146, - -4.837838060842088e-05, - -0.0006971168957809865, - -0.0009108044724800979, - -4.752089877120043e-05, - 0.0003249859213228721, - 3.942521212270479e-05, - -0.00019715315962356525, - -0.001984900595475657, - -6.379011696598591e-05, - -0.0006458139732965269, - 0.0016282179565458937, - -0.00126005336464622, - -7.428535359632794e-05, - -0.0006567022295510357, - 0.0012463292031156838, - -0.00022024605413766978, - 0.0011030068598674716, - 1.380375021493714e-05, - 0.0008355692721740414, - 0.0008804907679214166, - 0.0009940532392220325, - 0.00015370657372750854, - -0.00024228088418645443, - -9.432797788890617e-05, - 0.00031518129739299775, - -0.0007905716527070723, - 0.0008675511971248253, - 0.0005692618701240886, - -0.001270431048964984, - 0.00038064402825383365, - 0.002945002101068528, - -0.0001700091171736281, - -0.000126576666676782, - 0.0006601026952044155, - 0.0006355245484148813, - -0.0002202738853410731, - 0.0004768919494026339, - -5.159020528141428e-05, - -0.0005251087951984706, - -0.0023972890644364006, - -6.208082513425858e-05, - -0.0006621435540546064, - -0.0005903211386581622 - ] - }, - { - "legendgroup": "Beam sensor 3", - "marker": { - "color": "rgb(220, 176, 242)" - }, - "name": "Beam sensor 3", - "type": "box", - "y": [ - -0.0011345968091148282, - -0.0011352936311848575, - 0.0028328654530108736, - 0.0004879792374491136, - 4.044460349473798e-05, - -0.000127024213727682, - 0.00045476088002346324, - -0.0012211675696379382, - -0.00011974218605859685, - -0.0020490534715780348, - 0.0005109818512646753, - 0.0005709890655565807, - 0.0024773239962690347, - 0.0009275672240579495, - 0.001483106026917013, - 0.001065697959813219, - -0.0001777374061820118, - -0.0012802361856831034, - 0.0009778803903601222, - -0.0008106720782795153, - 0.0010007861637401393, - 0.0010001071383940988, - -0.0010772350791259826, - 0.0012144530550111906, - -0.0005832952625162228, - 0.0007268548592657051, - -0.0008895099481190926, - -0.0012450355530321522, - -0.0008010949337078925, - -0.0002798613765556619, - 0.0001361522328628964, - -0.0007248909945125654, - 4.836622184365765e-05, - -0.0009574665873282719, - -0.0010408745703901275, - 0.0002250622818528657, - -0.00011288205646415053, - 0.0005146509741145163, - 0.001199356830995025, - 7.575759606194611e-05, - 0.0009542320287106569, - 0.0015587115315622124, - 0.0011912987978374284, - -0.0002718920955558488, - 0.0010601514889376597, - -0.0009664841556979419, - 0.0005754750161452957, - -0.00046165570247116343, - -0.00041544166415550637, - -0.0006390470640601244, - 0.0013193209868507098, - -0.0006826203984999722, - 0.00029761463633055165, - -0.00031200383948995497, - -0.0016446567688536055, - -0.001474697918977142, - 3.6263816911584685e-05, - 0.0012688064251157173, - -0.0009305801847842945, - -5.350030748910838e-05, - -0.0010212735786975854, - 0.000539504668544406, - 0.00038898118025718634, - -0.0013130280738549798, - 0.0013100087712851166, - 1.1244280102980323e-05, - -0.0010959183394442195, - 0.0005332505668320032, - -0.0002813473151631482, - -0.0010647916641325504, - 0.0016245896021100479, - -0.0018681752338797783, - -0.0011956001883669971, - -0.0010058659495776657, - -0.001265084866708506, - 0.00020279176175484395, - 0.0018086886849504986, - 0.0002758530187399426, - -0.0002022923386035081, - 0.0006124948267689698, - 0.0013306522949087512, - 0.0015136656997164536, - -0.0019413402343945558, - -4.8979014726842636e-05, - -0.001454986233769379, - 0.0010107076566254413, - 0.001125062636377078, - 0.000941849011636438, - -8.97082235330034e-05, - 0.0007180331247360254, - 0.0010060730057458599, - -0.0006177553035232674, - 0.0010039118617475654, - -0.0004312943573880039, - -7.589444368285517e-05, - -0.0007262214634066759, - 0.0007755209410635437, - 0.001440006175956381, - 8.343612230715664e-05, - 0.0007100446548468068, - -0.0010963600859929903, - -0.0005252891031523452, - 0.00015037367034779876, - -0.0015971340517660602, - 6.92561780242854e-05, - -0.0005362437280591875, - 0.0027905631090967224, - 0.0012827354429079476, - -0.0021885029821244392, - -0.001495256725521392, - -0.0005522427283879441, - -0.0004965733434344765, - -0.0009457902598834847, - 0.0005531949132181978, - 0.0005734509163622726, - -0.00039893314310810303, - -0.0015846158698905517, - -0.001106425120259252, - -0.0012229378552278377, - 0.0002519420669607126, - -0.00019732449427532807, - 0.000949005520969708, - 0.0007685771364653657, - 0.0016099126512225468, - 0.00046410769603777327, - -0.0013097655517501279, - 1.06309692800162e-05, - 0.0021040909756712433, - 0.0019807637514269, - -0.0015417882219040597, - 0.00133931486547842, - -0.00011268296094524505, - 0.00038167527200736026, - 0.0004028607419002884, - -0.001708534419116063, - 0.002178671897879258, - 9.468608085864894e-05, - 0.0002454519863121095, - 0.0012356759123159226, - 0.0007737819818650233, - 0.00044283676892914806, - -0.0013933309194666137, - -0.0005064794287235709, - -0.000652464086105222, - -0.0016979351008982073, - 0.000490115320472407, - -0.0018038831140816788, - 0.0004272723877042774, - 0.0011876036772151633, - -0.0004830815285979303, - 0.0005096456900355905, - 0.0008116620941809843, - -0.0004796475550768617, - 0.000597520409584973, - -0.00019472570598395497, - 0.0009515977367932915, - -0.000814525457353689, - -9.736976554874296e-05, - 4.451430275606397e-05, - -0.0004569046490416888, - 0.00037934614610915426, - 0.0005300449324398648, - 0.0008450663611804558, - 0.0005741961988702703, - 0.0010432032551690674, - -1.6198680854391295e-06, - 0.001359194274257276, - -0.000452595794775603, - 0.0003238894945032673, - -0.0007699750749031704, - 6.345480322392064e-05, - -6.895493843732327e-05, - -0.0002183240739830803, - 0.0002719452324609611, - 0.0001496333317363556, - 0.0012121880933086118, - 0.0006909553162944506, - -0.0007264513416435122, - 0.00016610390638039328, - -0.0008555619051827072, - -0.00023161127451981685, - 7.148587066608686e-05, - -0.0007454556738085146, - 6.94502742815314e-05, - -0.0013290818568350764, - 0.0006808265930835034, - -0.00017090296908973664, - 0.00032731285979431556, - -5.6677534908868894e-05, - -5.921941072414389e-05, - -0.00036122312852166215, - 8.660024888453834e-05, - 0.0013394924227384324, - 0.0009934541427356377, - 0.0019427272737212327, - -0.0009781988940933365, - -0.002027672737402089, - 2.4590016862560146e-05, - 0.0012411816679957935, - 0.0012074968444073437, - 0.0003485653576033737, - -0.0014690220082438192, - -0.0014105758737259586, - 0.0004232877192014573, - 0.0004818847380598733, - -1.2745732278720125e-05, - -0.0007527174563961734, - -0.0004367090692852843, - -0.0011006941248931867, - 0.0012972937421712868, - -0.0009180123036620576, - 0.00042313151735648945, - -8.830587102373205e-05, - -0.0004796979432232879, - -3.633179256286271e-05, - -0.001009228467705239, - 0.0004169300071092582, - -0.0006575982307071125, - 0.0006386238039471845, - 0.0007906213403935528, - -0.0010661250843305174, - 0.0006750587386434607, - -0.0006031429163394463, - 0.0013396451621591084, - 0.0001942633916700468, - -0.0004614257689462302, - -0.0006059847363278554, - -0.0017241175436280918, - 0.000428828205761167, - -0.0014811806208219432, - -0.0006259995157831877, - -0.00033515231851087525, - 8.561888821753586e-05, - 2.217697442436953e-05, - -0.0003451408079282578, - -0.00015931141596598044, - 0.00010408023445775976, - 0.0011296541744060164, - 6.5082676488161785e-06, - -0.002213793526125386, - -0.0005124387493542128, - -9.74342661083846e-05, - -0.0006502245724262296, - 0.0004065283816015984, - 0.00018789822866408613, - 0.0005318710827390783, - -0.0011244862225080303, - -9.843867685430494e-05, - 0.001530578363598788, - 0.00032806301255962307, - -0.0012500560318800518, - 0.0008068535170515787, - 0.0009104872609724457, - 4.5469424395942774e-05, - 0.0023740347649895605, - 0.000808668049793506, - 0.0004928392830175658, - 0.00036282020729605936, - -0.0005524993862106005, - -0.0009004506022524439, - -0.0001250406103524139, - -0.001132081279354095, - 0.00033765340628494236, - -2.0385983862998595e-05, - 0.0012105265009422499, - -0.0020373000881307116, - 0.0002330683472575695, - -0.0010529757001541188, - -0.0026684211409163526, - 0.0017837340388172662, - -0.0006555067325563043, - 0.0007018839180394053, - -0.0009795527855606522, - 0.0007034602113248666, - 0.00226468431482109, - -0.0006196427684462601, - 0.0010388827064113037, - 0.0008790003448427491, - -0.0018724238767776986, - 0.0016835980623994202, - -0.0007557311381780848, - 0.0017174341153960138, - -0.0001881720358849571, - -0.0012363629429438553, - 0.00014724502464770795, - -0.0005967817793340999, - -0.0017690030600592207, - -0.0010033430408388838, - 0.0014116750978680089, - -0.0008679416415689682, - 0.0011102427816870905, - 0.0011196579120122112, - 0.0005735173995920985, - -0.0008472981879152819, - -0.0008366165194399446, - -0.0006424422249765185, - -0.00024393908707101393, - -0.0001244679606409823, - 0.0020060891322725696, - -0.00021233762708132285, - 0.0017815620684137484, - -0.00042609231321134324, - 0.0006141798569623964, - -0.0006639168510015933, - 0.0005467071772141366, - -0.0004797275964051827, - 0.0009101579633162192, - -0.0006459894048675645, - -0.00037257640647661366, - -0.0003029245721316128, - 0.0006414437406629035, - 0.0005880670278052728, - 0.0007873821198368815, - 0.002139348000008852, - 0.0014643621439594976, - 7.25703850454027e-05, - -0.00013206124440462164, - 0.00012848470989729012, - -0.0004227263296856066, - -0.0006564034300115121, - 0.0006031371206176275, - 0.0013395663674214146, - -1.8473315681659582e-05, - 0.0009454796827907408, - 0.000795034839371586, - 0.0005643113614296862, - 1.1458998504919546e-05, - 0.0009528550990933012, - 0.0006466961520689234, - -0.0013769496057708937, - -0.0008019950587967705, - -0.0002006855607800146, - -0.00044402564548780927, - 0.002553896724513826, - 0.001429597043467394, - 0.0012504938792266625, - -0.00030417639049298866, - -0.0001503833150617484, - -0.00019187105150454058, - -0.00031794159988367043, - 0.0004046005361619549, - -0.0008689957643267143, - -0.0007751860995803515, - 0.0002573228404323334, - 0.00131585440767996, - 0.00035637370640458283, - -0.0014062150903479055, - -0.00021506721000441855, - 0.0009129303531423193, - -0.00019802366824420224, - 0.0007287289173733798, - 0.0003664255923884009, - -0.0015908006078683204, - 0.0012812824203924944, - 0.0004762362276968797, - -0.0006175223670872605, - 0.0017171547873418385, - 0.0013177849965086861, - 0.0004609201509669587, - -0.000636275462447756, - -0.00022181272891956522, - -0.0004860835867272129, - -0.0015431552900779164, - 0.0010157155186157555, - 8.384874913364913e-06, - -0.0022003358247471953, - 0.0017516822857354156, - -0.0007296985270800716, - -0.0018544526066314614, - 0.0008413972474362151, - -0.0010121533334243712, - 0.0008977089127787828, - 0.00043695845526902526, - -0.0001270331939564472, - -0.00024952127985397913, - 0.0013929189423087264, - -0.000632739572583471, - 0.0012262815675275584, - -0.0014463762941345942, - 0.0011969387859215135, - 0.0010139566388496202, - -0.0011095346460981233, - -0.00022750706571733324, - -0.00018804975859120957, - -0.0010788918407297027, - 0.0006163301261866656, - -0.0001634685808988138, - 0.001209912805722195, - -0.002659324913627653, - 0.0010507187176326432, - 0.0008706167946335917, - -0.0012477960773050122, - 0.0002424210081173168, - -0.0005516303680711787, - -0.0018026047855402314, - -0.0009691210993947504, - -0.0002498870275022445, - -5.225427835150992e-06, - 0.0001320395790238926, - -0.0018242067548793102, - -4.5445615357434126e-05, - -0.00020079617830415708, - -0.0005067514816701942, - 0.0006805749171862209, - -0.0011467334430734816, - -0.00134818535826861, - -4.000701296655254e-05, - 9.510494960404052e-05, - -0.0016987921224142799, - -0.0011212671687610574, - 0.00016182424071245239, - 0.00030180751415431013, - -0.0008738618905945097, - -0.00042051130417933335, - 0.00013399475130515282, - 0.0014269538988957576, - -0.00028563566146197673, - -0.001538114270770824, - 0.0002452656409936184, - 0.0001091361615895872, - -0.0006352989534583433, - -0.00019709482580536477, - 0.001815829284812415, - 0.0014863776606531438, - 0.00021304097616593732, - -0.00045688655891213786, - 0.000519119094484015, - 0.0011073516133247247, - 0.0002459726577723135, - 0.0012992759395594384, - -0.00018608907784751873, - 0.0008206178486815109, - -0.0014393305725788593, - -0.0009420952782408943, - -0.000106406300381771, - 0.0001659087729265652, - 0.0003684643520026587, - 0.00018854580467610687, - 0.000447384404010978, - -0.0007250239822652038, - 0.000300500596909111, - 0.0014951456119357278, - 0.0007693855266453203, - 0.000608130386694872, - -0.0009419099401658967, - 0.000394142050196356, - -0.0003264144042109948, - 0.001089928430658076, - -0.00018227778630054117, - 0.0002595073859460528, - 0.0006896995950358722, - -0.00021177396222842775, - 0.00030330160250243023, - -0.0015813716870943647, - -0.0025346419449633257, - -0.0010378914828373027, - 0.00017991429068617797, - -0.0005024356961743526, - -0.000902908299434763, - -0.00043253292393898886, - 3.2593550461452554e-05, - -0.000971916358668886, - -0.002143200283407482, - 0.00026902995997568017, - 0.0009635269121446957, - -0.002142119684467751, - 0.0004366557976927534, - 0.0014166644537028257, - -0.0009804896281190088, - 0.0004019973178546629, - -0.00062610341845985, - 0.0005664872941845794, - 0.0005244804239627989, - -0.0014023341804215166, - -0.00016385225247000243, - 0.00031276897627344235, - -0.000841468560202266, - 0.00110103810290347, - 0.0005585548643618402, - 0.00042209482154667127, - -0.002047456498875736, - -0.0003612053413314929, - -1.4698225197797151e-05, - -0.0016003376690670373, - -0.0001004612092075541, - -0.00021035022219686268, - -0.0005540795409281844, - 0.0007138512478584124, - 0.0013979698108285662, - -0.0009816673630147455, - -0.0002041292777044633, - -0.0004722998892000093, - 0.0007050343318152107, - 0.000190877241034586, - 0.00018188175515734353, - -0.00012720771745731115, - -0.0008774489980259871, - -0.00044148988806275196, - 0.0006080097570423206, - -0.000188537914342244, - -0.0013352329910822037, - -0.0003642186433746423, - 0.00013332762497934598, - 0.0002728867696818614, - -0.0005192926661142978, - -0.0001767379170440732, - -0.0016779718694135111, - -0.0005710950524476865, - -0.0012001994674361218, - 0.0017816108535161175, - 0.0003423409244141015, - -0.0009978646060915313, - -0.0008018981015234798, - -0.0009962965167995407, - -0.0007473291423762364, - -0.0011219228596356034, - -0.0014986596190155526, - -0.001722050141701561, - 0.00229429217430404, - 0.0008929038775621137, - -0.00029180959223305754, - 0.00015880396942555554, - 0.0007104386982989371, - 0.00028673228454150824, - -0.0020923916342179215, - 0.0002885054409565847, - 0.0011707143940313267, - -0.0006849704355735021, - 0.0009264501714133015, - 0.00022653708991198616, - 0.000663767012498146, - 0.002610117530449907, - -0.0008236331565103872, - 0.0022387351668442827, - 7.31514849939929e-05, - 3.2798513680106555e-05, - 0.0004382462774872855, - 0.0003169342627248736, - -0.0003370164733668951, - 0.00101621756588477, - 0.0002858144313756998, - -3.752067645479931e-05, - -0.001160829140767746, - -0.0004095177348319679, - 0.00019440443049001326, - 4.1557081050137774e-05, - 0.0006712621337085641, - -0.0009697774385234184, - 0.0014417764493191972, - 0.0003004624964337338, - 0.002118595502012883, - 0.001117361603141845, - 0.0018565230772310602, - 0.0007284352116729267, - -0.0013099641927609125, - -0.0026904739881791206, - 1.1328378760481472e-06, - 3.3896878948003236e-05, - -0.0013561268734602686, - 0.0007943263331190525, - 0.00033454048948213726, - 0.0004563082149416879, - -0.00127680514158798, - -0.00041506774359991073, - -0.0012407359099361334, - 0.001927909604047435, - -0.0006093975883320961, - 0.00035673302718777235, - 0.0003574668193792334, - 0.00024366743528909723, - -0.0018216790046960175, - -0.0005882207147303211, - 0.00020664584549704888, - -0.00013057660642231403, - -0.0003579240437848589, - -0.00015671131056324477, - -0.0019667630241909234, - 0.0007173069156390745, - 0.0012176240064491572, - 0.0011699032667580123, - -0.00022475969857516619, - -0.0003319038053953, - 0.0009157692692667857, - 0.00010511589853770866, - 0.0019154683254815556, - -0.0007084240858907752, - 0.0011126529128677842, - 0.0009208214591908968, - 0.002726152373971731, - -0.0008435360133112632, - 0.0010647642248646338, - -0.00011588845565872413, - 0.00040190928346350494, - -0.0007110817976363628, - 0.000989527522272785, - 0.0006342489366676532, - 0.0018792755603577356, - 0.00028024915527671336, - 0.0004304511397844444, - 0.00040824507531053245, - -0.0009857646731250005, - -0.0009771961987549468, - 0.0010189298735427434, - -0.001340224950216132, - 0.00026021684041570466, - 0.0002750377319240482, - 0.00035363101951111357, - -0.0007017643610869721, - -0.0002530116980056903, - 0.0007561661946889019, - 0.001284217466325744, - -0.0024554125740775716, - 0.0006064276606196361, - -0.0026595958021479412, - 0.0008008000091089038, - -0.0011009800860320843, - -0.0007533383015586599, - 0.0015140518443298413, - 0.0004999647056944941, - -0.0016417008877083242, - -0.00043145994758721174, - -7.210441075043162e-08, - 0.001794692240922303, - -0.00045031932532312886, - -0.0001126120382376579, - -0.00018618730597959245, - 0.0004687882019564298, - -0.0012683289218580246, - -0.00010249444862500662, - -0.0004277369121565318, - -0.001101842377782821, - 0.0001479834050216282, - 0.0003915418841186371, - 0.0005136470747143289, - 0.0014027990267728072, - -0.0009294513277130409, - 0.0006235823655864837, - 0.001548331139671327, - -0.00036053240687628125, - -0.0005021760293711275, - -0.002001948890619978, - -6.509045742854899e-06, - -0.00024250929454369577, - 0.0015782509765314544, - 0.0011995418607585089, - -0.0008745727022865683, - -0.00014879176311513524, - -0.0011799232069409024, - -0.0016960676860857643, - -0.0011374961419333824, - -0.0005344576353282002, - 0.001095821176795178, - -0.0017820916683385453, - 0.0005108777504676928, - -0.0008735429769146127, - -7.151070896104539e-05, - 0.0011565230389116768, - 0.00036072099820840225, - 0.001243282441963039, - -0.00031813845416906654, - 1.9951062827124287e-05, - 0.001318381572826376, - -3.982012297092679e-06, - -3.7978166371625076e-05, - 0.0007779329756749063, - 0.0018803720404833345, - -0.00037768898665115584, - 0.00023724523704473112, - 0.0002642366064965282, - 0.001243004777867005, - -0.002168612715485521, - 0.001322006257457387, - 0.0004896220885760361, - 0.0009170410683236268, - -0.0014947382586198018, - -0.0009649186989794586, - 0.0009205624160361918, - 0.0004388894431166028, - 0.0020410052564639627, - 0.0007715372877425752, - 0.0007627900847671227, - 0.0013142425766801183, - -0.00038755736546448443, - 0.000629458468688454, - -0.0003662344336885999, - -0.0003379377961187284, - 0.0014643445023604677, - -0.000702482554368167, - -0.0010372845106553924, - 0.0015284460008341066, - 0.0004103096430424406, - -0.001032550657460313, - -0.00010424370219662623, - 5.2630077858666565e-05, - -0.00014460863240206006, - -0.0011504344573038487, - 0.0007494388957368272, - 0.00036398297585981516, - 0.0008181195360469584, - 0.0009214888073520355, - -0.000162120057957732, - -0.0004680976448359527, - 0.001946096443749578, - -0.0003061940480984437, - 0.0015799973756416988, - 0.00044919507653670384, - -0.00025382745461145285, - 0.00040211111049425163, - 0.00256388650806712, - -0.0007961903952110704, - -0.00042465060673956484, - -9.14787582963835e-05, - 0.0004084272880433602, - 0.0009174841009083313, - 0.0014944804831477014, - 0.0010505667060865531, - -0.0006502684171805022, - -0.000977144386611978, - 0.0016196069760195286, - -0.0018410410735274422, - 0.000494148510818571, - 0.0009262769053095737, - 0.0006684638750611176, - 0.000903348848294256, - 7.046734308056385e-05, - -0.0008421684537428144, - 0.00015938506939302833, - 0.0009640211079311771, - -0.0033688255974265863, - -0.0014604249420422455, - 0.0015843509342613807, - 0.0021358104007634555, - 0.0016193262267935888, - -0.0016058040398684843, - 0.00039604966472115257, - -0.0010184829289109241, - -8.693590722064546e-05, - 0.0009692071555424253, - -2.4011683258587696e-05, - -0.0004812936682533527, - 0.002425669833196007, - -0.0009620417659678435, - -0.0010695178355759436, - 0.0008206602033884932, - 0.0010836542829876705, - -0.00030904890517557466, - 0.0018741912697991952, - -0.00055203950151789, - -0.00043811399059244185, - -0.0009099924441403068, - 0.0007292759191767654, - -0.00012132492171632567, - 6.479312557396114e-05, - -0.0016390961420922842, - 6.460453215590736e-05, - 0.00032656535945330324, - 0.0012106729559742467, - 0.001421436033211804, - -0.0008130254497262692, - 0.00014887359577358674, - -0.0008417501377520041, - 0.0010648599528403579, - 0.0007904612163497468, - 0.00019477188877853416, - 0.0020946396237429728, - 0.00023427141035955936, - -0.0017854377301372748, - -0.0001694239500986536, - 0.0016898956112690754, - 0.0008735066079788168, - -0.0009436969466938487, - 0.0009728439917390306, - -0.0005821528817903685, - -0.0005619546204267358, - 0.0017727699273255638, - -0.0009510655691568182, - -0.0019963812718179898, - -0.0025959292126753485, - -0.00013363958663705107, - 0.0013978044850930433, - 0.0005989992456943917, - 0.00034393131849056103, - 0.000699929837541098, - -0.002025791955696721, - 0.000265949614604873, - -0.0014333621060770609, - 0.0025866320539738048, - -3.244184637110185e-06, - 0.00036094081892434795, - -0.0004061598769303685, - -0.00025851844382351896, - -0.00016978676024106227, - 0.0024812720759203196, - -0.0010018723388130763, - 0.0005469083651309429, - 0.0015821397926420924, - 0.0007168800191633259, - -0.0007282550197280762, - -0.0006328328073742619, - -0.0005150809168622914, - 0.002750086707148638, - -0.0008517682352144598, - -0.00010251578654149366, - 0.0010436010237911497, - -0.0015185957443393963, - -0.0009360527966580038, - -0.0003110853126526294, - -2.8573111628070583e-06, - 0.0013997945593994254, - -2.9364939617452094e-05, - 0.00038761184818510386, - -0.00010470173259512821, - 0.0004290696430128744, - -0.001642914690294761, - -0.0014642762560815965, - 0.0015546232833970701, - -0.0007796415523304567, - -0.0008679688796976734, - 0.0022103810341161955, - 0.000348228837332411, - 0.0013125092853495174, - 6.842625450198349e-05, - -0.00047436899567570255, - -0.00022013026715939988, - -0.0012535339671352935, - -0.001523348167082572, - -0.00038390868156241374, - 0.0007945285322293532, - 0.0007574062344048908, - 0.003558615983102008, - -0.00020495425482590216, - -0.0013471978669995456, - -0.0007405599391066903, - 0.000601828913886717, - -7.480013020725228e-05, - -0.0013290040217790828, - -0.0005268637794223627, - -0.0006956400993031179, - 0.0002471855663032847, - 0.00015750516962478812, - 0.0005507801174011429, - -0.001112716950819593, - 0.0023897249774593593, - -0.0002441502269873142, - 0.0004906291981679835, - -0.0008381856620964735, - 0.0007151802192318778, - 0.0007263047801777168, - 1.422302077920859e-05, - 0.000926060514637613, - -0.0021364630604466836, - -8.761210904137463e-05, - -1.7578715648135922e-05, - -0.00022614331186997184, - -0.0012287159029206766, - -1.3697848361134341e-05, - 0.0001665437859012434, - -2.533731592928888e-05, - -0.00035124042946494625, - -0.00088444214884431, - -0.001112510622298578, - -0.001237640451052715, - -2.1384672245810295e-05, - 0.0006785048799702278, - 0.0015184610392780975, - -0.0003490026288515567, - -0.00029303010968627894, - 0.0012587515782349166, - 0.0016864473879033787, - -0.001830944515002053, - -0.00029313309936785113, - -0.0026227352497161568, - 0.0006257910181674272, - -0.0011245533313200828, - 0.0018911708850953008, - -0.0013793426651233281, - -0.0004882183311235666, - -0.0006763973331321345, - -0.0015617738241589887, - 0.0006369599586626845, - -0.000703576088449516, - -0.0011166938725041412, - 0.0001293279182177053, - 0.0012397632442762558, - 0.0010928733658864638, - 0.0009507446808617388, - -0.0010321512100305908, - -0.0006561887562055445, - -0.001406136494026578, - -0.00041547553507592514, - 0.0003644299477297355, - 0.0005272766182353227, - 0.0010970762553978704, - 0.00024908944826814274, - -0.0012397826325983591, - 0.002263610595893462, - 0.0007878709752757361, - 0.0003323172147487219, - 0.00022745210295737673, - 0.0005259134910468897, - -0.0014802013992577165, - 0.0007272164097654218, - 0.0005431338903763188, - -0.0014373654363627184, - 0.00030226624761275716, - 0.0001503210945554013, - 0.0007971140393302223, - -0.00015714479114096596, - 0.0014296022095218333, - 0.0005178739029175293, - -6.35737333337981e-05, - -0.0011913470770732713, - -0.00036508363735917037, - -0.0008328121211277351, - 0.0002905738622381344, - -0.002294277921377389, - -0.0006050820622869966, - 0.0007753362560085412, - 0.0009700984451353674, - -0.0015797108130679509, - -0.0007442289717301771, - 0.002063464540310377, - -0.0008337894220568002, - -0.0015476249231817978, - 0.0005372341925509786, - -9.712554399021475e-05, - -0.0003341543389786581, - -0.00033092163518090437, - -0.0010899119388314152, - 0.0002946178821005206, - 0.0005443151717781717, - 0.0004371398937166027, - -0.00018762491706623952, - -0.0005242334056786565, - 0.0003266238235419937, - -0.002785172041174267, - 0.00180091139906357, - 0.0013355943111254798, - 0.0005756242772627214, - -0.0014411748827808872, - 0.0006759566571140188, - -0.0010757949943180085, - -0.0007844969999729613, - -1.4894248011527565e-05, - 0.0009871792821941406, - 0.0005942629228431432, - -0.0007842303549069994, - -0.0012780179339363326, - 0.0012454517616857896, - 0.00022626782005085705, - -0.0012035643913628526, - -0.002299194041254451, - 0.0018992060280718932, - 0.0006766476658442874, - -0.0006235920661509385, - 0.0013850135250791213, - 0.0004273604485846383, - -0.00041503441127226266, - 0.0005069186323071284, - 0.0007089174457376794, - -0.0013494906203273106, - -0.0005542763920650677, - 5.529110926166521e-06, - 0.0009517870304450625, - 0.0011180583377635622, - -0.0016437173428224434, - -0.0003553552491446512, - -0.0003873033474879661, - 0.0004468932779563405, - -1.5785521211141177e-05, - -0.0002954998560332294, - 0.0008441554357716528, - 0.0005139200534167576, - 0.00013043788416063304, - 0.00015828331880827985, - -0.00048578337987950187, - 0.0006074329411101697, - -0.0001712983129469019, - 0.0007119848497950082, - -0.00019678961298235964, - -0.0013273428492823166, - -0.0007936769685683391, - -0.0008008326435273383, - -0.0011886270040316217, - 0.0015532868080178873, - -0.00037194595043182525, - -0.0011748135827589754, - -0.0006186901420122532, - -0.0005000678205576992, - 0.0014517360606727198, - 0.0006869629047726866, - -0.0016860258541409438, - -5.2686920761236336e-05, - 0.0004862760530018516, - 0.00016294281976048629, - 0.0007401543615424505, - 0.0009573169181252603, - -0.0005780097081434316, - 0.000312743779477393, - 0.001506859963045649 - ] - }, - { - "legendgroup": "Beam sensor 4", - "marker": { - "color": "rgb(135, 197, 95)" - }, - "name": "Beam sensor 4", - "type": "box", - "y": [ - -0.0007238365611321691, - 0.001422208145662363, - -0.00046182355799379504, - 0.0011620804712767657, - -0.0011408612997585931, - 0.001416304506282927, - -0.0005659085706556084, - 0.0001279477549734417, - 0.0005288093017844829, - -7.251451285450602e-05, - 0.00045612085557627234, - 0.0005023209150001255, - 0.00037729300341992657, - 7.33261630105511e-05, - 0.001711878951579515, - -0.0004614795592223112, - -0.0014604621689125314, - -0.00019991528134689888, - 0.0002152418887634345, - -6.332086292248451e-05, - -0.0014599654520228763, - -0.00038911644994872726, - -0.00048637414143617227, - -0.0005029427731240875, - 0.0012092957729230012, - -0.00013680124753370204, - 0.0005475455595027821, - -0.0008247179835368995, - -0.0009121884399465949, - 7.89074459792849e-05, - 0.0008469150504367454, - 0.0011956782931071945, - 0.00045930601164634636, - -0.0004756841452093029, - -0.0011948769064725464, - -4.7636800009693e-05, - -0.0006461712640670269, - 0.0007807839617459063, - -0.0031971252373712714, - -0.0006601904427072654, - 0.0011028378647499363, - 0.0005652695771979489, - -2.4077873402667376e-05, - -0.0005456862901858016, - 3.222265692706238e-05, - -1.1343049574277019e-05, - 0.0022080098251223658, - 0.0015982953501356776, - 0.0007063552764253195, - -8.838082280356033e-05, - -0.0018587902917707913, - 0.0011673166812714453, - 0.00024631659100155315, - 0.0006297080955478578, - -0.00028172616903434863, - -0.0004660523469458749, - 0.0006930429209739539, - -4.64471896188143e-05, - 0.0018177773434797408, - -6.695781545775592e-05, - 0.0010765548533736703, - 0.0023931967426326127, - -0.00041348899256754605, - 0.00016411288070877268, - -0.0004547910245910287, - 0.0021714070080258844, - 0.00048652843827208194, - 0.00010614905418559258, - 0.00037477353856155414, - -0.0003970630951097627, - 0.0009508715946501343, - 0.0003769956772366626, - -0.0009909075997357993, - 0.0009195967988910253, - -0.0016141095207942036, - 0.0009252312917785455, - 4.810858811047034e-05, - -0.000939877612565175, - 0.0010913569032763432, - -0.00046463148820169225, - 0.001125429279106306, - -6.390788196614326e-05, - 0.0008527642048399472, - 0.0004829632237732729, - 0.0004514643453100141, - 0.0001666458461478224, - -0.00013914174208523583, - -2.9942483670795166e-05, - -0.0004481041740533328, - -0.0017172174610491826, - 0.0013657041823595022, - 0.0011210337366774129, - 0.0003793011290843295, - 0.0006251331114176253, - -0.0001433961806182851, - 0.00015787326770752157, - -0.0014841095792207184, - 0.0002952184639200647, - 0.00028585681069920576, - -4.420390560267052e-05, - 0.0014718495318283454, - 0.0001364292489354064, - -0.0009322689612773639, - 0.001577087710576127, - 0.0011213507610268372, - -0.0012822591116111205, - -0.0004059135096327446, - -0.0008561709537986574, - -0.0008206977855334642, - -0.0007679666214122866, - -0.0006065823452661657, - 0.0001208630623800935, - -0.0011072881590551734, - 0.0006126003303089226, - -0.000325829051594793, - 0.0004916982979405825, - 0.0010193954202890507, - -0.0014336513505836441, - 0.0010067007065290095, - 0.0005252646665343508, - -5.6387705996322954e-05, - 0.001367915533191685, - 0.0004220612744915387, - -0.0012114679028643555, - 0.00032144316048838715, - 0.0008489953918027776, - -0.0003590760157824851, - 0.0008105274441405817, - -0.000714528876752989, - -0.0007893960625268588, - -0.0005021055772081865, - 0.00035224763423704995, - -1.5337935856080523e-05, - -0.0005786436030457609, - 0.0006296202061855066, - -0.00018616576825935757, - -0.001165222064088171, - -0.00046995560245363763, - -0.0007629959564891876, - -0.0009632136304821064, - 1.5526622864127612e-05, - -0.00040537424428572393, - 0.00045305010340137143, - 0.001108450507505691, - -0.0008712541546862861, - -0.0007103010216942613, - -0.000513692054770527, - -0.00037807655570159165, - -0.00042780619139920587, - -0.00026773087464870577, - -0.0002581650218683429, - -0.00018848704220397508, - 0.0016823112230514017, - -0.0007579074769087805, - -0.000648233333056778, - -0.000256786914237066, - 0.001715521051064902, - -0.00036816232571808716, - -0.000340039749341688, - -0.0013220440746121692, - -0.00019591750929088986, - -0.0008222357370946239, - -0.00023690297596095776, - -0.001697925172351127, - 0.0005254831696373273, - 0.000271230068150164, - 0.0008995975641467532, - 0.0004248535349361467, - 0.0012727324575987878, - -0.000726373066329425, - -0.0017572341468704814, - 0.00020628353875646493, - -0.00161419531904653, - -0.00013955592798595124, - 0.0008376331145086771, - -0.0007507449613305766, - 9.898356729787462e-05, - 0.0011941052830030698, - -0.0006343473578655406, - -0.0012372455666982236, - -0.0004152989708004281, - -0.0007588321804300718, - 0.0004325148036016525, - -0.000600219954311918, - -9.275670182372171e-05, - -0.0017143738269025342, - 0.001510548834102675, - -0.0008035028902209076, - 1.2708905779949893e-05, - -0.0006489971367776926, - 0.0006990204489041703, - 0.0008926057381214938, - -0.00016347359283302597, - 0.0004106808802412155, - 0.00040227311994521373, - -0.0018850813852388261, - 0.001142660958671691, - 0.0006307064027069697, - -0.0008989785165685945, - 0.000364483399707008, - 0.0016340115145942417, - -0.0004389516995922807, - -0.00027196910174533253, - -7.761062184878678e-05, - -0.00019938732051917363, - 0.0003651572884900039, - -7.627618869108697e-05, - -0.000724253106644665, - -0.000669758785357515, - -0.00011487640651810057, - 0.001175815214667405, - -0.0015339062186388124, - 0.0005961684018592823, - -0.000390703909434209, - -0.0004850007496444813, - 0.00039124329037329333, - 0.0010086915101876325, - -5.80699852345969e-05, - 0.0013344223040084482, - -1.0907823391804279e-05, - 0.0003368875830162695, - 0.0005781871328787241, - 0.002184504290940195, - 0.0002649936476800098, - 0.000926401546344197, - -0.000378422519455473, - -0.0002254115438635363, - 0.00038436155393561537, - -0.0003271915088285945, - 0.0009124631615701811, - -0.0009833709506648937, - -0.0001501127948525052, - -0.0008357181305968722, - -0.00038128728122640096, - -0.0004718984977272366, - -0.000819225740681075, - -0.0017786949437522174, - -0.0007901514553305185, - 0.0005638426134811152, - -0.0006759404166608696, - -0.00036336984065795904, - -0.0008849148990369064, - -0.0015478726858738395, - -0.002453229088108021, - -0.0006498686523118619, - -0.0002147680186552147, - 0.001288810546661206, - 0.0020435877975585235, - -0.00044063502653045485, - -5.775566602854738e-05, - -0.0012089430489153712, - 0.0015136623093321296, - 0.001045212585032999, - -0.00040485433400219543, - -0.000285290514070837, - -0.0013679719746415473, - 0.0010477524592620452, - 0.000743242537428548, - -0.0014748717587624118, - -0.0013227933857136356, - -0.0009688135607361184, - 0.0003112829038999454, - 0.0007902808125112518, - 0.00019759481909771548, - 0.0003432972171380161, - 0.0008921357715696713, - -0.00046245411053831814, - -0.0004703983085095954, - 0.0013721030268556257, - -0.0025184847152837793, - -0.0003340167890080206, - 0.0011820477927572076, - -0.001199016760903875, - 0.00100698146108661, - -0.0010128930892239496, - -0.000167106546398138, - 0.001357342300144174, - -1.9571293084940424e-05, - -0.00041720652675691444, - 1.2939743502707458e-05, - -0.0007664524543223647, - 0.0010858392164519663, - 0.001662305538785085, - -0.0008089054492150511, - -0.0005899814193597277, - -0.0005335394676817513, - 0.001360623628490032, - -0.0011431742513734495, - -0.00034395498656340524, - 0.00015510305106545012, - 0.00015143038800854565, - 0.0013230369085794162, - -0.00017375166442134944, - -0.002653803142705925, - -0.0004262521171834654, - 0.00029853558924274113, - 0.0014000888992237095, - 0.001063202183479995, - -0.0005423356138541092, - 0.00015087342569985963, - 0.0004553718839223916, - 0.0002450898265932137, - -0.0003762180077407949, - 0.0016504195784577463, - 0.0010319182996547107, - 0.0008556322080491087, - 0.0002856770479979268, - -0.0022891118108569423, - -0.00015547823304119313, - -0.00023081562888186503, - -0.00065173769730832, - -0.00042521337135338817, - 0.002205599704953996, - -0.00043303352940165715, - -0.0008717371266828727, - -0.0006627860166022061, - -0.00043791242548280127, - -0.0005911576251195973, - -0.0009286538287877216, - 0.002949361149666518, - 0.0010930264207674283, - -0.0024112221003779995, - 0.00025162143084730504, - -0.00016078809913564574, - 0.0008352226392735363, - -5.763535746452858e-05, - 0.0004447098246362991, - -0.00034378702580607377, - -0.00045876068337602125, - -0.001615326379187349, - 0.00010156574922523782, - 0.0007484700101767971, - 0.0012247210558484587, - -0.00014755826189157714, - 0.0014110709594243088, - -5.146627170490106e-05, - 0.00046207508490231597, - 0.0017375038848491604, - 0.001165350561270629, - -0.000991959050113435, - -0.0015986306560700468, - 6.42698060081221e-05, - 0.0006192679364016078, - -0.00036133421250225727, - -7.935251548523534e-05, - -0.0013097084381533085, - -0.00031729858415355104, - -0.0006062469449475171, - -0.0014123239098951118, - 0.0002978963859549895, - 0.0015420898569655289, - 0.00020502223617775464, - 0.0004229418198999238, - -0.0018278807787927584, - 0.001524318505405761, - 0.0011376210940991344, - -0.0008100526094624113, - 0.00016119579459366123, - -0.0001331142378005871, - -0.0009006579712072171, - -1.4564702179709903e-05, - -0.0009686876664416143, - -1.883990067719327e-05, - -0.00024123046384144482, - -0.0018191211036702158, - 0.0012567332566025748, - -8.97218355739255e-05, - -0.0010059519338432186, - -0.000494322027031096, - 0.0024622466437733605, - 0.0011315897263767386, - -0.0007907101493628186, - 0.0001367519215813352, - 0.00010842726680522751, - 0.0004432846153434119, - -0.001328661977608437, - -0.00028511266771717204, - 0.00032529855760680666, - 0.0007718936080112677, - -0.0004001351761146059, - 0.001491470617006801, - -0.00012240413221891608, - 0.00033354948995761743, - 7.713578172131934e-05, - 0.0006812119139887892, - -0.00115112360244216, - -1.7236674174519937e-05, - -9.885211120216027e-05, - 0.0014452852235678495, - 0.0006115414327961086, - 0.0005211946286289098, - -0.0012734766524451304, - -0.0005234382478110564, - -0.0008351299906608991, - 0.0015974891302450117, - 0.001224263012737884, - 0.00049278357141085, - 0.003346971752693694, - 0.0008487614258890781, - -0.0009705891489852981, - 0.00035407310634192235, - 4.1676220430103816e-05, - 0.001466982051464213, - 0.0013722113012781074, - -0.0003287838910881543, - 0.00043697666735823394, - 5.945820106607565e-05, - 0.0004000621130078526, - 0.00032160906007513133, - -0.000773186768488416, - -0.0013610972396548085, - -2.1557723276585736e-05, - 0.0010502022222916426, - -0.001531064958006946, - 0.00170986723044179, - 0.0005241328046616948, - -0.002007323254688498, - -0.00015331737609274105, - -0.0001593485208753324, - 8.658037310236487e-05, - 0.00088231311226219, - -0.0006801281008300223, - 0.0017040494517913424, - 0.0026100565922349828, - 0.00011009421065398535, - 6.317715102023021e-06, - -0.0021384725013907442, - -0.0014752975294774642, - 0.0021008091543584413, - 0.0003787150500437275, - -0.0023983346930032704, - -0.0003998185366157188, - 0.003188246893459123, - -0.0015089765403111103, - -0.00043411878655987777, - 0.0012757102353140536, - 0.0013836891078196534, - -0.00018344064651495192, - -0.0003309450075536727, - -0.00011270757529273602, - 0.00010519669933031635, - 0.00039261927570263745, - 0.0020648875745154383, - 0.000723662697837917, - -0.00048065053628505, - 0.00030960715466952094, - -0.0010881660858897018, - 0.0004029387893334566, - -0.0008167473398209687, - -0.00044895488135305905, - 3.2119153246386415e-06, - -0.00021170454080080155, - -0.0001295772673231328, - 9.516573552006665e-06, - 0.0007037112137984183, - 4.2995397551150254e-05, - 0.0004839699447218462, - -0.0006679233159645124, - -0.0014647440058847357, - 8.80069927893211e-05, - -0.0003175702388435268, - -0.00027441959956426117, - 0.00023124328787579195, - -0.00024744367483302255, - -0.0011757279548115676, - 0.00014112757389588742, - 0.00017702936398504392, - -0.0010440386681471454, - 0.00017836419650207424, - 0.00020522760586237285, - -0.0008506195183065297, - 0.0009612393862779437, - 0.00018783208133828526, - -0.0016615863570391075, - 8.311016166010579e-05, - -0.00011630541270614028, - -0.0006295587025951466, - -0.001085654538136273, - -0.0007552605110128703, - -0.0004910550713411064, - -0.0005437057917675124, - -0.0013891719431200246, - 0.0006109381061598482, - -0.0007152431628770143, - 9.902868048215504e-05, - -0.00012621717132294734, - -0.0008513811053565613, - -0.0012452067183734566, - 0.0005606463003541551, - 3.68323467491883e-05, - -0.00021415758181421522, - -0.0005038447296894682, - -0.000573204836737336, - -0.0007251323057947369, - 0.001970950172595187, - 0.001963468259072027, - -0.0006591567783317644, - -0.0009292275791368456, - 0.0007759193887822151, - -0.00045679521797735944, - 0.0012379198284648073, - 0.00040184604674859596, - 0.0009036914103188085, - 0.0019266563407728684, - 0.00033683872685270845, - 0.00094612322141669, - -0.0006180256345187389, - -0.00026583958812155707, - 0.0001399099407603922, - 0.0005568381199359748, - 0.001632479162481636, - -0.001299976563456823, - 0.001013114132002727, - -0.0011980593143740223, - 0.0013865685929376132, - -0.0005462097448166678, - -0.0002812158849421047, - 5.7418581110528104e-05, - 0.0002650675912443683, - -0.0003034362922177684, - -0.0003821142302607046, - 0.0022459816973009533, - -0.0007232282486911239, - -0.0006689346095781845, - -2.7733044776806273e-05, - -0.0015452022423842848, - -0.0008755771114483511, - 1.2993860390524749e-05, - -0.00023974336786903146, - 0.0006123347460271954, - 0.0008872547535505915, - 6.406397000764738e-05, - -6.431479537221966e-05, - 0.00018270886680164222, - -0.0002997080008497201, - 0.0005364521026656822, - 1.6254228030522237e-05, - 0.0003009144623393353, - 0.000634526095710903, - 0.0005016020067073444, - -0.001957347814112462, - 0.00012709405060673063, - -0.0005825789454200212, - -0.0003958031501202634, - 0.0012344284620282007, - -0.0003063092575515519, - 0.00111757350859361, - -0.00012076172630020362, - 0.00017960335472195783, - -0.0010636615169906595, - 0.001552258142746394, - -0.0011905442864170324, - -0.0007758608775009365, - -0.0008687502020424402, - -7.616752354641545e-05, - -0.0008404453864246696, - -0.001017767640100169, - -0.0008256073290495635, - -0.00016628004727607229, - 0.0004779393235048397, - 0.00024606438122612575, - 0.0009347658372985729, - -0.0009581932208877167, - 7.495319451072588e-05, - -4.780089336655041e-05, - 0.0010856258421815717, - 0.0010912164296719793, - -0.0005318873105469881, - 0.0005489670909048778, - 0.0010700350163257478, - 0.0003243710464227528, - -0.00017787217626488922, - 0.0006246837255503776, - 3.6757292634335574e-06, - -0.0002102784942757932, - 0.0011265180483430702, - 0.0003851552898195938, - 0.00023077037807121636, - 0.00017543552903838576, - 0.0006349513913741242, - -0.0014960358095413371, - -0.0005111395546019087, - 0.0009200811382933227, - -0.0007712218373275806, - -0.00048119665770077625, - -0.00031070126511941696, - 0.0018406134362704918, - 0.0006337665228903924, - 0.0020908036501096515, - 0.0013355035924873964, - 0.00019857588708616943, - 0.0008343889394385137, - -0.00037559915245597634, - 0.0010998814339937219, - 0.00077462049370484, - -0.0007788265441138704, - 0.0013546234743782816, - 0.0017214964338923909, - 0.00022937929310751738, - 0.0015951295780263707, - 0.00034392879052559335, - -4.359902964342122e-05, - -0.0008781632942955398, - -0.0015682769262077285, - -0.0005590435482558116, - -0.0005460135620964128, - 0.0016154914618236422, - 0.0009101233895410567, - -0.0006435120284352115, - 0.0012874421159774529, - -0.002614593817786214, - 0.0006040516376992328, - 0.0003394320622833906, - 0.0005289387730919442, - -0.0010410386654589043, - -0.000659746222258844, - -0.0010660858344503097, - 0.0007941841167202154, - -0.0010380862098687438, - 0.0013239224454106309, - 0.0016145131774186652, - -0.0017637192147740865, - 0.00029915518030899853, - -0.0012974445027922508, - 0.0005461507181240203, - 0.0005398078700133772, - 6.054725891239001e-05, - -0.0013696252521094728, - -0.0009851983279995456, - -0.0018605354991156524, - 0.0007495071328595978, - -0.0002679483166377749, - 0.0007486684311735171, - 0.0003340287055921791, - 0.0020146701789841254, - -0.0005276618400795759, - 1.0286104745398921e-05, - 0.000788194463253015, - 0.00043016328377743456, - 0.000468253114361496, - 0.0001792887447255863, - 0.0010992467363449866, - -0.0012004559476363383, - 0.0006364207869134482, - 0.0011492670258776447, - -0.0008769982332771887, - -0.0004199599737627579, - 0.001673962801733359, - 0.0005056045186734605, - 0.0007776894717784241, - 0.0008980380927862944, - -7.155605173659064e-05, - 0.000555701607956322, - -0.0005792802323171866, - -0.0007034845964765793, - 0.0013780691541659118, - 0.0003153361921941404, - -7.604190504850099e-06, - -0.0006111598599960297, - -0.0007952625085795436, - 0.0016242591627966157, - -0.0019647170476768524, - -0.00040712239338599045, - 0.0009729259647410259, - 0.0013770700351839228, - 0.0004905016361399547, - -0.0008206996205607982, - -0.0004429642160752262, - 0.0004507777726777126, - 0.00016613937629348616, - -0.0004259234293151949, - -0.0023797849376673862, - -0.0001336016418498702, - -0.0006112555817461645, - 0.0014062413028096525, - 0.00036929652826374516, - 0.0023432928214458955, - -0.0023748252904396837, - 0.001490409680097558, - -0.002190075164713981, - -0.0004492064011518462, - 0.0013756802785433798, - -0.0007621168956519408, - -0.0005321087518156795, - -0.0005353382980096994, - -0.0005307376031690108, - -0.0008632313709779676, - -0.00045871924146127167, - -0.001483409351279098, - 0.0017975738868545536, - -0.0003588037565447153, - -0.0011498533964625934, - 0.0001522041006744905, - -0.0004941328296139519, - 0.0002297212766880021, - 0.0003511090135370736, - -0.0013037919233471944, - -0.0010542766880271847, - 0.0013221841823288162, - 0.0007078081973218092, - -0.0013440971630171675, - -0.00032935695087707797, - 0.0004239449295254006, - 9.523884240560027e-05, - 0.0006724684645119475, - 8.861735275614632e-05, - 0.0010163584729922914, - -0.0007119348493207103, - -0.00013872117928633625, - -0.0008916194319646577, - -4.45318806680887e-05, - 0.0006332695732981366, - -0.00019007643812849747, - 6.434364578461794e-05, - -0.0014604079248171497, - 0.0007896900499986713, - -0.0006714053372930869, - 0.0010151801684065358, - 0.00025498867785931625, - 0.0012914120114307876, - -0.0009162523132757735, - -0.001322012713796777, - 0.0008191204811466476, - 0.0006723249055115289, - -0.00020900338728610003, - 0.0011289938638934962, - -0.0006538701015629086, - -0.0012765264189969804, - 0.001083659512966029, - 0.0002952738702534643, - -0.0004602025337262946, - -8.103192129590953e-05, - -0.0008969667023343441, - 0.0008117089696100372, - -9.769399695185435e-05, - 0.0010531905624631551, - 0.0002977086873459602, - 0.0011235354312997764, - 9.434636126851466e-05, - -0.0006497667648771048, - -0.0027810497762467347, - -0.0005540470572392248, - 0.00035727370381484654, - 0.0012045245656987446, - 0.0023320764981077883, - 0.0009955241560718467, - 0.0004768194280954253, - -0.0010214431576724338, - 0.0007636504916737487, - -0.0010514625563676906, - -0.0007706576014277622, - 0.000316044643441275, - -0.0005573213085070858, - 0.0002630757795269662, - -0.0006648747277195213, - -0.00013556900985660361, - 0.0007905640498806209, - 0.0004426462982015968, - -0.00229846926324013, - 0.00015152476202965985, - 0.0008363125371629512, - 0.00012708833740708675, - -0.0007544709467359782, - -0.0013527157135673252, - 0.0011777733220507142, - -0.00015766991987597545, - 0.0004383091532579459, - -0.0017856731144353425, - -0.0006613255526893334, - 0.000685832276029459, - 7.271660895234633e-05, - 0.0011711553587968031, - 0.00021607329288691354, - -0.00012144065326816751, - -0.0016095813022596877, - -0.0002564332986784003, - -0.0004073988883325421, - 0.0011211937939208019, - 0.0004969347688462875, - -0.0001843415958645364, - -2.2287496425896388e-05, - 0.00115464019331488, - 0.00023055693964400787, - 0.000686532157911574, - -0.0002833880074800904, - -0.0010843357740837397, - 0.0014301529305135677, - 0.0007442567474705815, - 1.0624402870961714e-05, - -0.0011109894480185822, - -0.00020133351470009292, - 0.0017709382582731976, - 4.728519291513384e-05, - -0.0014232168121446269, - 0.00016218771129781028, - -0.00033632016893614966, - -0.0003482536313586384, - 0.00038472972157577254, - -0.0004742319096869395, - -0.0003485546527758369, - 0.0011072264971884573, - 0.0006655657132380085, - -7.186237457386876e-05, - 5.232084673894177e-05, - -0.0003642263367411763, - 0.0005682500086202813, - -0.00015777323371741713, - 0.0007570702390019906, - 0.0011531968537553698, - 0.0011225155162283183, - -0.0004208972852554439, - 0.0012921118939538889, - 0.0006021868150946911, - -0.003072255944013091, - 0.002150456016400565, - -0.001983812471625505, - -0.0005580646583528594, - 0.0017421924197424145, - -0.000935691861521009, - -0.0005187944048144685, - -9.472331487206306e-05, - 0.0021896322444351756, - 0.00021686853077183447, - 0.0014145688745353239, - -0.0011909284042162587, - -0.0021461988391582, - 0.000372809510794301, - 2.200617922757347e-05, - -0.0003784593707531899, - -0.0009569936231183275, - -0.0005576046870325851, - 0.00030120486972245574, - -0.0015690630874381402, - 0.000668356725256216, - -0.001043381564703055, - -0.0015345191211776346, - -0.0010347675700382295, - 1.3830850912866665e-05, - 0.0008794922151196486, - 5.746661672894043e-06, - -0.001462558698066981, - -0.0005470104227108711, - -1.4770236830331587e-05, - 0.0001688332100768854, - 0.0008598487757289594, - -0.0015328412475415808, - -0.0016081592733622452, - -0.0011774931222778842, - -0.000997385759441901, - -0.002969046195251004, - 0.00033927907144973085, - 0.0017105881895072479, - 0.0001757839888251729, - 0.0013577411727607209, - -0.00042495034547297683, - 0.00010198405607027103, - -0.00107634232444726, - 0.0001221766975861962, - 0.000743388390688408, - -0.0005301075475979998, - -0.0012558231406793153, - -0.0008225885864900694, - -3.564187950956459e-05, - 0.000908755787945808, - -0.00027808024036125173, - -0.0033879464295087916, - -0.0012064584404954779, - 0.0018030805211043273, - 0.002592018223280558, - 5.7696735812046206e-05, - -0.0009365256732370843, - -0.0003982002645639484, - 0.0007416541505397477, - -0.0005947261615294452, - -0.00038659344150184985, - -0.0007807322107632247, - -0.0006394461888985372, - -0.0009955499151535455, - -0.00024519264581849003, - 0.0005980067677151872, - -0.0004857096416333224, - -0.0011050460322296848, - 0.0006613412106464309, - -0.00013784861479275, - -0.0003798426286631207, - 0.0008153297609344905, - 0.00044969637190695025, - -0.0017166973388478795, - 0.0013378297788796578, - -0.0013415338068376397, - 0.0001342498970824885, - -0.0003637746374411413, - 0.00022765365873110593, - 0.0009338171621699764, - -0.0015715515053374548, - -8.85280182747584e-05, - 0.0005985542336447197, - 0.0018539668953761288, - 0.00263143198296604, - -0.0008828655482656072, - 0.0010259761846601442, - -0.0019524672181921365, - -0.0007468369430596157, - -0.0007040680496744861, - 0.00024298058246243734, - 0.00024645105903755405, - -0.0009493287818192987, - -0.0005655475588869529, - -0.0013430493838073986, - -0.00018989672319441595, - -0.0005062566342539206, - 0.0010799449852211633, - 4.7074386458403e-05, - -0.0007517640800298653, - 0.0007556471183069093, - 0.000861398800893826, - 0.0008343793914534104, - -0.0020053660136698957, - -7.873207628875093e-05, - 0.0009224387129456842, - 0.0009703608645603651, - -0.0003599546196541329, - 0.00046026792914965624, - -0.0011784642996144775, - 0.00036832348485371115, - 0.00011358780178188562, - 0.0005778654046965261, - -0.0008516290081619637, - 0.00025613750931190437, - -1.4120298816577826e-05, - -0.0007775692549802584, - 0.0006003600906583129, - 0.0019884019600072676, - 0.0009811759398147878, - 0.0006171102367326794, - -0.00039880750790190526, - -0.0006991613435029897, - 0.0008658139101821944, - 7.303919471758216e-05, - 0.0020613643172815127, - -0.0009673931838452871, - -0.002377239872857705, - 0.0007925821559617899, - 0.00016976092234818007, - -0.0005221853997889041, - 0.0011913482619466981, - -2.939881712615536e-05, - -0.0006090283801624698, - -3.954436479760143e-05, - -0.0001817985272956997, - -0.0012043680178022377, - 0.0006397349376885931, - 0.0014776101746117268, - -0.0009180386739747606, - -0.00026445576861175077, - -0.0005461841797474845, - 0.000538110578847551, - -9.761321069716105e-06, - 0.00022879620623738705, - 0.0008297276862322028, - 0.00033878437217689863, - 0.0007023323179537419, - 0.0007487092933553971, - 0.0012044067939321246, - 0.0012469358405186412, - 0.0004720178085473363, - -0.0003730924980369895, - 0.00035317321624182027, - -0.0008074095519903419, - 1.0120908367325834e-05, - 0.0005813152421634613, - -0.0021084580832184383, - 0.0008288018348197844, - 0.0014841721814225642, - -0.0006828795206993835, - 0.0024569724104001336, - -0.0018878233037531317, - 0.0012253057265853072, - -0.0012577695709598022, - -0.0019735900583964924, - 0.0009569201056478602, - 0.0005625144782727089, - 0.0004907471455850584, - 0.00026489811915886985, - -0.0008643510573893862, - -0.0006360259212254687, - 5.4698924388043315e-05, - 0.0011572896469576482, - -0.0013115502696920583, - 0.0006549425139459206, - -0.0013506451096913555, - -0.0007247214820359092, - -0.0007714820837054951, - 0.0025926897935431474, - 0.0004430275791750872, - -0.00019987460901114447, - -0.00046638656277430963, - 0.002144517379305736, - 0.0017020398474777733, - 0.0004277844683805462 - ] - }, - { - "legendgroup": "Point sensor 0", - "marker": { - "color": "rgb(158, 185, 243)" - }, - "name": "Point sensor 0", - "type": "box", - "y": [ - -0.0003600056313206796, - -0.0022376161827409174, - -0.0003239883664223597, - 0.0007795064473581263, - -0.00019149460827509962, - 0.0005873319145449502, - 0.0008537294488119257, - 0.000354685311577803, - 0.0004811853506423076, - 0.001020540250371666, - 0.0013812337257254452, - -0.00024061309851150815, - -0.0014271115993691281, - 0.0022895821053731513, - -0.0021053255203823834, - 0.002316811703913331, - 0.0011603753782384208, - -0.0012809071725912423, - 0.0015011097630470756, - 0.00029631320522625334, - -0.0004678306812556965, - -0.001042767997695331, - -0.0018838274167167425, - 0.00047081617552889436, - 0.0015344303021453504, - 0.0013218916289673987, - -0.0007356828218973723, - 0.0006827390961667328, - -0.0005871426851231597, - -0.00015396744590045143, - 0.00038036284617771874, - 0.0016295337073070348, - 0.00041253410698003593, - 0.0011854007651908767, - 0.0005504518053893278, - -0.0009146782089848197, - 0.0004068769762766199, - -0.0005022669905908081, - -0.0003100400209997478, - 0.001785972013486428, - 0.0004863846815540824, - -0.00035431494356076614, - -0.0006524107687465099, - -0.0005209513781042603, - 0.0012877553301216124, - -8.311983301110197e-05, - -0.0005558779983525451, - -0.00022587799041465803, - 0.0003989786448736178, - 9.491758916716925e-05, - -0.0004156132248598566, - 0.0002858969009681396, - -0.0003949514239917289, - -0.0005883883835675724, - -0.0012190229041253628, - 0.0005592090542360681, - 0.0018912567177629288, - 0.0002741098670199802, - -1.000695635564947e-05, - 0.0002943257918370779, - 0.0019250525247345696, - -0.0006332397463970472, - 0.00042652907976556816, - 0.00020360190079048819, - -0.00017715783802180145, - -0.0002812126005439917, - -0.0010825777963711565, - 0.0010378823170687295, - 0.0011342274314365731, - -0.0015478772005641619, - 0.000453755902648438, - 0.0020610079236990826, - -6.45618835686357e-05, - -0.001752210778029666, - 0.0011576837020735487, - -0.0024270373285581563, - 0.0004995021774773119, - -0.00030708504508603806, - -0.0011469276481517441, - -0.0005268326469401958, - 0.0002125870095729565, - -0.0005424913535701224, - 0.0011657221969322911, - 0.00041762272714036304, - 0.0014218895915628464, - 0.0005775927687447573, - 0.0009475631469542279, - 0.0011647890401543495, - 0.0014110506235720914, - -1.6234480609016622e-06, - -0.0003814558521529806, - 0.0007196516529464495, - -0.0014939426377439512, - 0.00030045287917848467, - -0.0015023753489866423, - 0.0001370071931371505, - -0.0013489287723459855, - 0.0005778908359580099, - -0.0004106927526280511, - 0.0013273274018962566, - 0.001104244089811709, - 0.0014448192588662674, - 0.001076875009624835, - 0.0003241213269176058, - 0.00016342653067393117, - -0.0003446349876483546, - 0.0023479441771989255, - 0.0008330759234414444, - -0.001826185884992091, - -0.0001864007167889037, - 0.0006765459063037477, - -0.00019509478493636543, - -0.0004840525349715553, - 0.00032032816779688824, - 0.001770047338523015, - -7.655240998844561e-05, - -0.0005959397855544837, - 0.0002700349038637809, - 0.0013355054081476655, - -0.0019815608068822505, - -9.62647624321206e-05, - -0.00016943160441352476, - 0.00027564224685477234, - -0.0009258187465384921, - 0.0001971008157859625, - 0.0007855097019863237, - 5.153313291670587e-05, - 0.0008042163486363528, - 0.0010392113590027975, - -0.000966591324135085, - 0.0008670754524676523, - 0.0011360840499546436, - 0.0011257166363056697, - -0.001952988189270282, - -0.0014674784349027734, - -0.00016741058644258741, - 0.0009033458273482169, - 0.000337710286251343, - 0.0002855436002947684, - -0.0013953857675084826, - -2.859722397249336e-05, - -0.0003324269097765379, - 6.009878710633729e-05, - -0.0016190042458051092, - 0.0005468621667026004, - -0.0009752522487250845, - -0.0007193104402739503, - 0.0011321798624639356, - 0.000361699894352652, - -0.0011018511509706687, - -0.0008618967307050186, - 0.00021719767521925854, - 0.00010352823137933399, - -0.003440687810719208, - -1.5459590430799205e-05, - 0.0003875807321719255, - 0.0001569093415503807, - -0.001114598679363669, - 0.0024631640565099546, - 0.0010668447477286973, - 0.0021305042442346933, - -0.00038846003927588255, - 0.00047832825661193394, - -0.0001808191863905442, - 0.000820071481701599, - 0.0005743195138758154, - 0.00030168197652863247, - -0.0006614195975030301, - 5.2480657088395765e-05, - 0.0007854839026416392, - -0.0010584699395149273, - 0.00039892999488840475, - -0.0010699618836191882, - -0.0008264028487108678, - -0.0018059970646749153, - 0.00011828450036697895, - 0.00022350832384581177, - -0.0010871654269793889, - 0.0017286524233259552, - 0.0001619378140654603, - 0.00039833237811396396, - 0.00038355137303476897, - 0.0007559466576601185, - -0.00024409835871412158, - 0.00041545303696414787, - -6.160899019301872e-05, - 0.0005232275339625138, - -0.0015568580152945527, - 0.0008388255832230734, - -0.0017126298754144402, - 0.001665344365810577, - 0.000192532916258249, - -0.0001371250145926128, - -0.001065933121781824, - -0.0009450938155973906, - -0.0013017537970360946, - 0.0016747483209313507, - 0.0001965272027104117, - -2.5489768110293048e-05, - 0.0008093917190436369, - -0.0005776392126589495, - 0.0024888122361310465, - -0.0005796030671353864, - -0.0019155343418345082, - -0.0008613702074855801, - 4.0414823543636324e-05, - 0.00031850018696670654, - 0.0013009690788327493, - -0.0003695144882406033, - -0.0014990920449641791, - 0.0003698302914779741, - 0.001150592845436876, - -0.0027858992170146733, - 0.0001556155595426729, - -0.001941137927656011, - -0.0011094135005187595, - 0.000218942421277643, - 0.0005101421004467176, - 0.0004153410163478498, - 0.0012493194441427155, - -0.00028743509765277134, - 0.000579632321264677, - -0.0001729473362070223, - -0.0005200987153299033, - -0.0006037804861281159, - 0.0009596880139596149, - -0.000326163910285462, - -0.0020159178664859584, - -0.000435527289485951, - 9.460685811346406e-05, - 0.0018552019698126474, - -0.0005504408226320362, - 7.583259753914281e-05, - 0.00035784412737688634, - 0.0016220564579271196, - 0.0012597621268509273, - 0.002022108441572551, - 0.000272038370154079, - 0.0003197583637045051, - 0.0014571300322657047, - -0.0008030444794433472, - -0.0004889879775779467, - 0.0018988570322234376, - -0.002188069624200228, - -0.0003791440589655677, - -0.002151612881050605, - 0.0009132764692729627, - 0.0011412833019272565, - 0.00022471995699072306, - 0.0003361991429250494, - 0.0022137663465841445, - -6.494771074434401e-06, - -0.0011477444970830874, - 0.000260259226485224, - 0.0002115703644511477, - -0.001357688301733303, - 0.0026984167741596512, - -0.0003028982196396188, - -0.00016086276574650067, - 0.0005430995882351442, - 0.00038709216326423103, - 0.0008390161407218388, - 0.0004896518799192016, - 0.0005071758404353149, - 0.0003497649473390643, - -0.0016090210217245512, - 0.0017955891818151712, - -0.00029963821510007015, - -0.0003484904972933803, - -0.0009699205377554686, - 0.0008570775909427182, - 0.0009627000223666783, - 0.0004217766363433692, - -0.001180944526445741, - -0.0009602591326727981, - -0.000260781185078276, - -0.0004838709165702062, - 0.0008299309863659015, - -0.000812648580717301, - 0.001046521183947027, - -9.123470485224985e-06, - 0.00010769320079239886, - 0.00044273496126482975, - 0.001335793413533788, - -0.0008783645199333435, - 5.182815714376813e-05, - 0.0002113927161082471, - -0.00036186760640345223, - 0.002041328997988123, - 0.0011729846642642015, - 0.0010546063283069695, - 0.0017839220310032545, - 0.001018606849326025, - 0.0012494879865189029, - -0.000135218231756787, - -0.0005091424267202847, - -0.0009445503940660408, - -0.0002962512400073694, - 0.00022939846043804198, - -0.0008341791148968449, - -0.0006337807347759505, - 0.00011855897865795147, - 3.4779293992903834e-05, - -0.0007309098070264815, - -0.00019488522014695525, - -0.00015679925427465233, - 0.0013963672611808846, - 0.0001242971523284012, - 5.2765831410148756e-05, - 0.0006304400140139851, - -0.0006505659738841403, - -4.7354462218992926e-05, - -0.00033159690361607723, - -0.00027554158228587357, - 0.0001305000799849306, - -0.0001702352379354666, - -0.0006112441739000174, - -0.0017499431831446907, - -0.0005512481612562708, - -0.0007998725203843068, - 0.0001798774896570515, - 5.967873689186205e-05, - 3.0870612682467404e-05, - 0.0015631446235694383, - 0.0007256312252710414, - 0.0003297314928877874, - -0.0013083143259213597, - 0.00019882949198379266, - -0.002173415765006371, - -0.00036574427238591654, - 0.00042269237090719055, - 0.00042375201516391863, - 0.001449430678268491, - -0.0005584561887125707, - 1.9045047399842357e-05, - -0.0021243338400363364, - 0.0007758509454167738, - -0.0016180656741088032, - 9.466007251466019e-05, - -0.0014130523345199353, - 2.8606549304581032e-05, - 0.00019742311833702704, - -0.0005160573310171702, - -0.0006341983219706676, - -0.0007389989485665704, - -5.045275743191538e-05, - -0.000888879986031673, - -0.002879151993297651, - -0.0012427331432102908, - 0.00029146254527841095, - 0.0008985359079177154, - -0.00042913262578470084, - -0.0009637777581393331, - -0.00019657421092516726, - 2.268835886860608e-05, - 0.0025639697186195486, - -0.000862757836680683, - 0.0007945853983494008, - -0.001332716690967703, - 0.0010018843114910528, - 0.0007103793581577754, - -0.0011285095745285586, - -0.0019601047262434177, - -0.0013322567503707234, - -0.0006721503082685467, - -0.0021939192618531662, - 0.0001709955706878276, - -0.002606239180174804, - -0.0011973834779650675, - -0.00033634913200616414, - 0.0017026774589099284, - -0.0006736946500392617, - -0.0004733549114959714, - -0.000803944749047834, - -0.001556407835352881, - 0.00014853024232130133, - -0.0001414571356954592, - 0.0017202937135741335, - 0.0026031223858298627, - 1.658550100973935e-05, - 0.0007269568425303363, - -0.00014860200115960465, - 0.0013289702341960775, - 0.0002439181003555188, - 0.0002735398787368362, - 3.326479345047335e-05, - -0.000370692171803757, - 0.00010377748679889933, - -9.279391688802594e-05, - 0.00065058628072985, - -0.0001960886465748361, - 0.0020801955328350686, - -0.00233678387073734, - 0.0002378162080610561, - -0.0007001364587853112, - -0.0009480318438696401, - 0.0012461872789589986, - -0.0016780684430309377, - -0.00019901828512767844, - -0.0017616347456407852, - -0.00016088046812585898, - 0.0008711064653813554, - 0.0012907357320324198, - -0.0013296537965825854, - -0.0003397805625092757, - 0.0018924914388186284, - -0.0010480178113585427, - 0.0010944059650529127, - -0.0017257983703860983, - -0.0006626497330326008, - -1.5364312226268803e-05, - 0.0020746180235588817, - 0.0005959034210196766, - 0.000762304471948367, - 0.001006404255734906, - -0.0010376984455870964, - 0.0014160307464346946, - 0.00036180388620616667, - -0.0008538925109952192, - 0.0019055038897478648, - 0.00045566187218202154, - 0.0011772583930259827, - 0.00011551094989461413, - -0.001163977211536099, - -0.000687052672104663, - 0.0007217812219967061, - 0.000479060354972676, - -0.00018978887619355514, - 0.0008171163169169229, - -0.001030223850813934, - 0.001810834163632201, - -0.0004563972790504883, - 0.001009198413537696, - -0.00027078003386847414, - -0.0010629194700682767, - 0.002102137597686633, - 0.00046900331790226523, - 0.001130821517424969, - -0.00013579721178926552, - -0.00038807764672447597, - 0.00018836492260898335, - -0.0005911877876220972, - -0.0005079991354780657, - 0.0013874686696352695, - 0.000756206947119433, - 0.000335007139309753, - 0.00037937489158726515, - -0.0007919476821466437, - 0.0005103950462660496, - 0.0018956001789914593, - -0.001284759471116855, - -0.0014948790915070447, - -0.00026895685371003, - -0.0015650469355630524, - 0.0004989811080112293, - 0.00048040987047703285, - 0.0001093753314851798, - -1.9493636609643417e-05, - -0.001592997803682376, - 0.0007274646389513138, - 2.4539308697203077e-05, - 0.0007511151291257697, - -0.0010470804467026338, - 0.00016360622153228086, - -0.000901244543767123, - -6.123942613940768e-05, - 0.0014982365348887839, - -0.0007919978549801509, - 0.001058437126718306, - 0.0004091716725988962, - -0.0008869135577923645, - -0.0017099912139415395, - -0.00013416415010985061, - 0.0005454730377009069, - -0.00042197110875783606, - -0.0011774592343006096, - 4.0562345397962776e-05, - -0.0015031266417176508, - -0.0013153134718998664, - -0.00023045315404608582, - 0.0015428542927846337, - -0.0006414692060598367, - -0.0012910688459984014, - 0.0017176226444161576, - -0.0012541539521117207, - -6.589044460330717e-05, - 0.0007113692510558959, - -0.001481742521408498, - 3.375084950377015e-05, - -0.0002854935624477503, - 0.0011587674779156578, - 4.4490926694857396e-05, - 0.0004545584525081919, - -0.00016393970393749208, - 6.873277068051748e-05, - -0.0006068064117211813, - 0.0005239794836523485, - -0.0007086410105775755, - 0.001164730471935021, - -0.000423072126236121, - -0.0016218208317885967, - 4.721934839051034e-05, - -0.0003014630454091225, - 0.0002933174507829652, - 0.0012494701752864647, - 0.0008376615335229556, - 0.00227166515256899, - -0.0004544258481978746, - 0.001232067963812119, - 0.00020078804407640553, - 0.00034719294794498425, - 0.0009539190308658666, - -0.000321845029843129, - 0.0013129863639787926, - 0.00035367138578151606, - 0.00015715432607683627, - -0.0007634072713058934, - 0.0019085287344125154, - 0.0009836689363769888, - 0.0007080343534541455, - 0.0007413385211547893, - 0.001667850004166128, - -0.0011151320278017217, - 0.0003783971944250205, - -0.00047345809974729404, - -0.00045419953398503595, - -0.00017176524180345263, - 0.0019541041561184883, - 0.0009737944107666436, - -0.00021189934625563203, - 0.0020795903131488073, - -7.306221818264723e-05, - -0.00014955508977261174, - -0.0006670850235897559, - 0.00032977371427197225, - -0.001470609512098292, - 0.0008593254104246168, - -0.00019231375390304237, - 8.601287008638272e-06, - 0.0004766859272733263, - -0.001055582135173426, - 0.000598969917045108, - -0.0009026881853642778, - -6.922007482907273e-05, - 0.0012992817888996897, - -0.0007938216334330654, - 0.001404940857635229, - -0.0009361574685101907, - 0.0016378283565150155, - -6.356964467273317e-06, - 0.00016607617545494934, - 0.0014884685446877443, - -0.0006491039355987426, - 0.0012795408153190016, - -0.0004689199359858802, - -0.0032619607642223637, - -0.0012993429245917857, - -0.001487095242613941, - 0.0013763816328224618, - 0.0011252355405579407, - 0.0018532690918740392, - -0.0006955789767185061, - -0.0006851246865993891, - -0.00011734649516116261, - -0.0015689568548748795, - 0.000607253514790963, - -0.0004887673773168842, - -0.0006263736009578169, - -0.0012378721943534779, - 0.0003312452034162974, - -0.0001334364862250377, - 0.0013481856698959154, - -0.0008687731255685475, - 0.0009295063010425302, - 0.000357003435226562, - 0.0004226907734083755, - 0.0005762460055640471, - -0.00021672568500676455, - 0.0005976643459980246, - 0.0009444871444235776, - 0.0009111816001948598, - 0.00036265001046681096, - -0.0007729304304823369, - -0.0010493035294757258, - -0.0014489069051852196, - 0.0005456346892599763, - 0.000793957985118671, - -0.0008435294902209759, - -0.0008797048361691306, - -0.00029556125963480987, - -0.0015476516476657352, - -0.0015017890143792785, - -0.00025401538201122524, - -0.0013399919913298299, - 0.0020468915027834476, - 7.265455689494357e-05, - 0.0008380673679829837, - 0.001116870272488333, - 0.0007910918839752242, - -0.00029804102699079466, - 3.596035981601387e-05, - -0.0011481544184016976, - 0.0021866676507227775, - -0.0010298519151152317, - -0.0005209477146222563, - -0.0011234711553339627, - 0.000305014773962405, - 0.00120290668447916, - -0.0014816812067061638, - 0.0007763949910457263, - -0.0010578604937229086, - -0.0009903840567936496, - -0.00102413683817178, - 0.002437195143903496, - 0.0004823720264332536, - -0.0004606806621509578, - 0.0015585480389082838, - 0.0007776534306982811, - 0.0002741644088145881, - 0.0010175942162166233, - -0.0005376586992929439, - -0.0006097782847302361, - -0.0005138311294027762, - 5.988986617187292e-05, - -0.0009913870573940778, - -0.0014266226098804792, - 0.001215706771629729, - 0.0012439553895282366, - 0.000977134720838625, - 0.000303959337236935, - -0.002069779886985198, - -0.0011725179454967485, - 0.0012806145248903465, - -0.0002951052535802039, - 0.001334155463138202, - 0.0008933692970317906, - 0.0008526383491282539, - -0.00025188514468033345, - -2.8417037355280296e-05, - -0.0006537516028503625, - 0.0008739722412561527, - -0.0014437253033506127, - 0.001154967094614979, - -0.0006008518280721005, - -0.0009659479395905254, - -0.00045243358020566956, - 0.0012226569518599861, - 0.00022046323252381848, - -5.147545883531347e-05, - -0.00045916511593440225, - 5.0951897495849456e-05, - -0.0010483771938605455, - -0.0016500709552277014, - -0.00020925706242819387, - -0.0018906009902995924, - -0.000925077926708346, - 0.0026616649974730644, - 0.0004395087897445048, - 0.0016510377467552641, - -0.001642439432400038, - 0.0008724483909075411, - 0.0009146768706237643, - -0.0007599203537110291, - -0.0006186717952186312, - -0.0018521655994417254, - -0.00015927618331154693, - 4.5084815787424705e-05, - 0.0005867924121808674, - -0.0009482391916939898, - 0.0011999972323401009, - 0.0024452702802838524, - -0.0010636075045239238, - -0.00025903326870703355, - 0.0013199586012850684, - -0.00010031359900396954, - 0.0025582133587220735, - 0.0019163546724441458, - 0.0013494600693919078, - 0.0016462387691095195, - 2.024088893396576e-05, - -0.0011812132889142308, - -0.00014576210790313902, - -0.0002753101913454937, - -0.001807037203224767, - 0.00047614249672062116, - 0.0006146144839967324, - 0.0008185359151576492, - -7.32447332626219e-05, - 0.00017404267952494506, - 0.001628858077594667, - -0.0005856434131473901, - 0.0014055377594074327, - 0.000723867326510397, - -0.00010925846889238648, - -0.00016410401722188647, - 0.00030445944853481983, - -0.0003622912938861375, - -0.001128749654840532, - 0.00043708782811936297, - 0.0005435514957532483, - 0.00043285457037709564, - 0.0014266159608988806, - 0.00044298318689965687, - 0.0013958884734817938, - 0.0019469208990904978, - 0.0011775531088221646, - -0.0005885450733499118, - -0.00021504257472151276, - 0.0009226076973398678, - -0.0013757689834344704, - -5.892285913710641e-05, - 1.4776834050849458e-05, - 0.0005296162691122053, - -0.00043462127196863256, - -0.0010105814297098725, - -0.0016768650558771734, - -0.001144265258375753, - 0.0008898932166174281, - 0.00039715785459416825, - 0.0010551056412306506, - 0.00043110351877669175, - -0.0010069498416522991, - -0.0010788195665389728, - -0.0023283788374596, - 0.0012489536339583569, - -0.00040800835691522146, - -0.00018808505089363298, - 0.0006460041293024817, - -0.0004045537746589318, - 0.0023113316755708838, - 0.00114779454995901, - -0.00029393415695368804, - -0.0006626999410634909, - -0.001073140155593228, - -0.002010211556627263, - 0.001970081895024713, - 0.0006385112423848565, - -0.001307774881577846, - 0.0010159914454135693, - 0.0005181237662172371, - 2.6341153577902102e-05, - 0.0015880763935080594, - -0.0007785764274326322, - 0.001074211900950993, - 0.0007073922918166674, - 0.0003635265083067911, - -0.0001450701831488849, - -0.0006002244627797656, - -0.0013803509535818157, - 0.0001263658661588761, - 0.0014594268230028915, - 0.0015582458100377808, - 0.00225031789436134, - 0.0012736301026735472, - 0.0005438616514428804, - 6.245200924822314e-05, - 3.341284224733031e-05, - 0.0009378013015590219, - 0.0007656243575445513, - 0.00032237777379739643, - 0.0019250461936264542, - -0.000357658572808337, - 0.0012044304544536906, - 0.0009028586911298266, - -0.0010901824243214992, - -0.0015229409405849502, - -0.001381337634041682, - -0.0004328469313793082, - 0.0011038279110688741, - -0.0004393928902462331, - -0.0009408611573713835, - -0.0007786735349247643, - -0.00045136144468830767, - 0.00012698157922101354, - 0.0010905873030274999, - 0.000304165507579288, - -0.0009498916740655877, - 0.0020175107828064387, - -0.0007098749942667579, - 0.0012139964471052668, - -0.00030067824666276944, - 0.0004924709776800078, - 7.245364527191345e-05, - 0.001508786108143105, - -8.44842142800359e-05, - 0.0016786237511728387, - 1.1204164399512487e-05, - -0.0012573795508234442, - 0.0008607690389731867, - -0.0008049859299581092, - -0.0002514364371188041, - 0.00027480100942036447, - -0.0008865781712453468, - -4.434801857121277e-05, - 0.0008482026981631125, - -0.0005312366943138442, - -0.0011196656416421632, - -0.000675688908303147, - -0.0008442757739314018, - -0.00028349665632799537, - 0.0007788713666241348, - 0.0005897911793616283, - -0.0010857460109452769, - -0.0012723408421807941, - -0.0003894040715560278, - 0.000570792239586046, - -0.00029272119750560455, - 0.0004795216701213832, - 0.0007933730117280933, - -0.0002588923294579247, - -0.00021841310038990403, - 0.001758988128140634, - 0.001148503804090505, - 0.0001902537770826488, - -0.0004531444826026928, - 0.0007611498799121262, - -0.00131668179709097, - 0.000982500691135371, - 0.001998362581013869, - -0.0009987872284027335, - -0.001158103019695009, - 0.000463559196195411, - 0.0006433401331076894, - -0.0014679464564955036, - -0.000762313197678845, - 0.00029265348700232603, - -0.00018841730628714855, - -0.0009616902938412798, - 0.0003500583965963407, - 0.000993631124945856, - 0.00016265027817064052, - -0.00025728881203711674, - -0.0008585839043596369, - 0.0016039682658074506, - -0.0007382146472602185, - -0.000675085498315647, - -6.236381320274956e-08, - -0.0002716118778847194, - -0.0005213605909179034, - -0.001054374890362793, - -0.0009651295473142792, - -0.0015961471063137523, - -0.00033905225135428353, - 0.0011085778084131718, - 0.0018777544713022229, - 0.0003035862321773275, - 0.000793128547141583, - 0.0014190281365035534, - 5.628104539045047e-05, - 0.0012470118969573252, - -0.0013766576840721402, - -0.00029905126695348524, - 0.00035637542896592775, - 0.000795750831556729, - -0.0005712703815986941, - 0.00033179531428674937, - 4.579209430090838e-05, - 0.0014882749305579616, - 0.00017365712396976053, - -0.000244805895703939, - 0.001280632770358438, - 3.643723523602103e-05, - -0.0007641852353736851, - 0.0018301440070631237, - 0.0012086799013736086, - -0.0016786574424754134, - 0.0002044278207168625, - 0.0015493624339487813, - 0.0005534209564269947, - 0.0008819347238347969, - -0.0012468168921509772, - -0.0009098840340514171, - -0.0010267556530409341, - -0.0008968389489972733, - -0.0007246483349306938, - 0.0009537991241934454, - 0.001508913981293045, - 0.0010879013844783242, - 0.0006853871678901585, - -0.001710723492131594, - -0.00040300600613238027, - 0.0008713463668148519, - 3.263790972242191e-06, - -0.00019033241867538443, - 0.0006036989313644939, - 0.000653659383891052, - 0.0007778278891040502, - 0.0026851365463386435, - 0.0016274315875167463, - -0.0003530650764760374, - 0.0006868432694487502, - 0.0001795764715866688, - -0.0005794129777825833, - -0.001617265428761814, - -0.0008056816790681295, - -0.0006806964250888275, - 0.0003078361026554748, - 0.0013403772986760813, - 0.0003076660870262976, - -0.0011249373339728, - -0.0014490077326637864, - 0.0013301604981351318, - 0.00013764782607148654, - -0.0006671819513463702, - -0.000624292521976169, - 0.0018067179265904908, - 0.0005674774129443829, - -0.001317105409627363, - -0.0005516670001376773, - 0.00042234179001810206, - -0.0017668909492902975, - -0.0001162881587384952, - -0.0017185921300405982, - -0.001387755100643745, - -0.0005517741391588709, - 0.00012065283421683395, - 0.0013631651255593099, - -0.0011290232718808902, - 0.0005615693154638933, - 0.0006551422039926208, - 6.254180417526598e-05, - 0.0012162445401049347, - 0.0014897147508024485, - 0.0018979156109715162, - 0.0008278795942863002, - 0.0016709172795479259, - 6.552613570536331e-05, - -0.002268839298288393, - 0.0001182931452040495, - 0.0002099355161435836, - 0.0005630869604959698, - 0.0007509259746303399, - 0.0002753269190802024, - 0.0002449954233398701, - -0.0008166079873114575, - 0.00020295605984574773, - 0.00033879418682900995, - 0.0007205839697275071, - 0.0007953524406212684, - -0.0007619718374865396, - 0.0001334664356530962, - 8.628825983300847e-05, - 0.00011866394199900012, - 0.0007208689077847103, - 0.0001557166342463532, - 0.0011605696039186997, - -0.0005969486335912622, - -0.0007653988029903052, - -0.0018882273646243291, - -0.00040776848098682267, - 0.00026693848464171536, - -0.0014955487693392561, - -8.78919074330568e-05, - -0.0001381925694993762, - -0.0009069314150661414, - 0.0008078474487118959, - -0.00019253654508679532, - -0.0002177696606660187, - -0.0007448961034754032, - -0.0011121084619067994, - 0.0010419012464654741, - 0.00016984816633941086, - -0.0009881360671502506, - -0.0008760247987300478, - -9.17357964351188e-05, - 0.0011502688379596642, - -2.9360108626403384e-05, - 0.0012561853602880936, - 0.0005513747478366195, - -0.002113177864428946, - -0.000454925689565556, - -0.0005071825803594967, - -0.00015290966794694646, - -0.0002927383496827896, - -0.000596868518605734, - -0.001071013825714676, - -0.001092358679676457, - -0.0010294854899197898, - -0.0006839444339783127, - -0.0003925862869372659, - -0.0014621409767116348, - 0.0006513400374065412, - -0.0010732348162592607, - -0.002082067069762051, - 0.000292246433221165, - 0.00044564642107745986, - 0.00042869812170682434, - 0.00102224841515829, - 0.000477050446927711, - 0.0009248957418170293, - 0.000506336040083146, - -0.0009510468939738244, - -0.0007406046082629666, - 0.00022693085399123393, - 0.00028824964390600927, - 0.00030437406607444707, - -0.00012138825135749925, - 0.00012309962423739888, - 0.0005185395879948174, - -0.0007620128845929218 - ] - }, - { - "legendgroup": "Point sensor 1", - "marker": { - "color": "rgb(254, 136, 177)" - }, - "name": "Point sensor 1", - "type": "box", - "y": [ - 0.0006887591006467885, - -0.0011058161763843205, - 2.6109221126024897e-05, - -0.0001390300052987482, - 8.546119607340698e-05, - 0.00011136458998685435, - 0.00023991595986993947, - 0.001828039458787699, - 0.00022023425895074537, - -5.2290598065305744e-05, - -0.00021891859025958686, - 0.00046887091647313266, - -0.0006846872455111006, - -0.0012222627054356064, - 0.001181465692494554, - 0.0003749595081520784, - 0.0003526073351356686, - -0.0007022591707157542, - -0.0020916780707977093, - -0.0007305294383171488, - -0.0003920163327411029, - 0.0007088163203119509, - 0.000704385437454551, - -0.0010357939037395137, - -0.00046431043924451127, - -0.0014035861038804737, - -0.0016832368128961292, - -3.8630232227414356e-05, - 0.0005905440017652009, - -5.2118227510938425e-05, - 0.001719560304893979, - 0.001561461438381759, - 0.00025205720725469114, - 0.001763408408085375, - 0.0007221821060739849, - -0.0009719985847591629, - -0.0021123318421986375, - 0.001817623123137843, - -0.0010611604657695102, - -0.0008562064784112798, - -0.0012304176076835909, - 6.293152216392149e-05, - 0.002212399981579101, - 0.00010652549074311468, - 0.0008469018514976932, - -0.0009128546294313096, - -0.0006830828456034586, - 0.0015652451383773114, - -0.0005011611750392774, - 0.001757832611090426, - -0.001181582683865845, - -0.00121056434757796, - -0.0005337655494285235, - -0.001717403682544067, - -0.0007408136843975779, - -0.00027721097406305456, - -0.001314794201400178, - 0.00011952201698201898, - -0.001482907938938074, - -0.0028391234957543202, - 0.0018367431177566053, - -0.0004792297246101688, - -0.00014300734554818307, - -0.00032596659343862264, - 0.0011064891695107045, - 0.0010389955998214608, - -0.0004619849476998397, - 0.0007983762349096428, - -0.0010604984136962366, - -0.0001282125298550891, - 0.001318585836532794, - 0.000814565151301671, - -1.6467674650606454e-05, - -0.0011705015340110413, - -0.0020625214146961167, - -0.0006347499538072725, - -0.0007879481790594521, - -0.0009041255605997439, - -0.001146980778965213, - -0.0006732067020140864, - 0.0005947686824684459, - 0.0010934317688459968, - -0.00028716910090332263, - 0.0006821223674612194, - -0.00037570441762113145, - 8.598529650645392e-07, - 0.0010471053851254626, - -0.000431487384172255, - 0.0002556636513862575, - -9.609139681336129e-05, - -0.0006177402265568398, - 0.0009393099127451725, - -0.000908408135385842, - 0.0005665039405200598, - -0.0009604822251764828, - -8.133104536688364e-05, - 0.0007355372890523703, - 0.0003470055868085911, - 0.0018843959846446313, - 0.00022086750466867542, - -0.0009065600966912437, - -0.001433703575768761, - -0.00034096316523416436, - -0.002044549583102611, - 0.0009977976106372783, - -0.0008421754227121942, - -0.0001369818053447785, - -0.00030108280630892326, - 0.000979886607247647, - -0.001737922072358667, - -0.0012344504870354937, - -0.0010066302354428637, - 0.0004479956548980749, - -0.0019370998280541383, - -0.001654962679037751, - 0.0012199121125534165, - 0.000410971663376646, - 3.142622108681595e-05, - 0.0008894448445178767, - 0.00020854686895445604, - 0.0014256145680130942, - 0.0003253710966270027, - -0.0012922092263377152, - -0.00012522540455053085, - -0.0001589117726220959, - 0.002056504865531357, - -0.0015540964696775762, - -0.0004524211264601215, - -0.0010425428456208561, - -0.00039906385008350013, - -0.0002276437824881732, - -0.0024782971261014387, - -0.0014102760428990168, - -0.0006192606420478606, - 0.0001387774518862511, - 0.0021812297080462625, - 0.0001425596435313416, - -0.0004262004528677132, - 0.002142338398636383, - -0.0013937896609897483, - -0.00039096383987960063, - 0.0015932673042809732, - 0.0007066368854968903, - -0.00034757134244072153, - 0.0003121748867034803, - -0.0007519196916785607, - -0.0003839390529577581, - -0.0012465526732651747, - -0.0012396822105925245, - 0.0002528660865610383, - -0.0004789139961242268, - -0.00011876246473120422, - 0.00012697796523258533, - -0.0006198072827077355, - 2.110988925419539e-05, - -0.001447366706630948, - -0.00036602219270604337, - 0.0008363600006297419, - -0.0004724997888814941, - 0.00014368446888075382, - -0.0013191195466935642, - 0.0005613862168692938, - -0.00015946890582976573, - -0.001165735304201534, - 0.00012879815589038367, - -0.001029125146877646, - 0.0005315225544021784, - -0.002258361743278695, - 0.001998028935739293, - -1.6655456977371602e-05, - 0.0006759245575772937, - 5.282016978309428e-05, - -0.0010320804190655998, - -0.0020571340205112784, - -0.0006119239190639105, - 0.0017104910372468614, - -0.0007190926419966008, - 0.001540482136146976, - -0.00021132015063258152, - 0.0003278672475358782, - -0.00047275030121674347, - -0.0015546915191203964, - -0.0008825048994501095, - 0.002973193535448794, - 0.0014764962683650896, - -0.0014967308300415302, - -3.2885064319664986e-05, - -9.952711687646383e-05, - 0.0005547655592122089, - 0.0018511064189604117, - 0.0021959606023235602, - -0.000591243006655985, - -1.2382301679930482e-05, - 0.0010812162478384697, - 0.0002556973916825546, - -0.0007434402127627883, - -0.0008334182537376004, - -0.0009030918394799779, - -0.0008297182857754611, - -0.0005065808822434235, - -0.0004916654239396483, - -0.000620423089838034, - -0.001628587574827609, - -0.0008978466851870096, - -0.0008678610722973862, - 7.580089777078748e-05, - -0.000589173864045151, - -1.455655833297534e-05, - 0.0007127445204791508, - -5.6003802339007074e-05, - -0.00014140184165141486, - 0.0006114419107103605, - 0.0007378653325937724, - 0.0011141028032940526, - 0.0018128100816713988, - -0.0014579603022918642, - -0.0015854446634739503, - 0.0010405782364684775, - -0.0012235865422936167, - 0.0010696422316361649, - 0.00020163057836607157, - -0.00041225885013345374, - -0.0004535606398189168, - -0.0010865280318199432, - -0.0007798900838555854, - -0.0004027531960993472, - 0.0005955276952118613, - 0.00022383837490327004, - 0.0001199951551379412, - 0.0005210907000824437, - 0.0009271594179558762, - -0.0015492826995257935, - 0.00013090864938789112, - -0.00020354680293541112, - -0.0005833651790191638, - -0.00031590814292641067, - -0.0014683424406690658, - 0.0023142534478696134, - 0.0009285444739367345, - -0.002543131560921476, - -0.001182512800641266, - -0.0010151837670320566, - 0.0004196886835916232, - -0.0016426217753042443, - -0.001391063318424466, - -0.0009693448614976637, - 0.00042913115383631556, - -0.0007403720823114064, - 0.0011292059052843936, - 0.0001590034331006031, - -0.0007643972802635429, - -5.129013158712389e-05, - -0.000406376123505102, - 0.00013569095318648818, - -0.0006411962296679153, - -0.00024055476047148293, - 0.0010332897364286981, - -0.0012285318441027358, - -0.001065243831517481, - 0.0019128154885279705, - -0.0016623479805129454, - 0.0013935003982906338, - -0.0005829864414654076, - -0.0007870967545509347, - -0.0002834519531498127, - 0.000745591718894126, - -0.0011388616686114615, - -0.0014274733350751702, - 0.00017803605773123425, - -0.0006196012982266345, - -0.0011885765574890293, - 0.0012035896250914683, - 0.001486284311530507, - 0.0006508422664690343, - 0.00043736929512121073, - -0.0021324971862692575, - 0.0001765474587454717, - -0.0008752793229881749, - -0.0013547282458847782, - -0.0009774447840444663, - 0.000533818384897763, - -0.001925020191957622, - 0.001147184218795194, - -0.0005734435322327453, - 0.002009488687445213, - 0.0013268848757016585, - 0.0016738574199175594, - -0.0003340477072098943, - 0.0014201920688741883, - 0.00027405104128594806, - 0.0016348218510284953, - -0.000742996777682508, - 0.000517013850887017, - -0.0009675485236924026, - -0.0007390383393454707, - -0.00044200007850433905, - 0.0010779453916372746, - -0.0014971198094825033, - -3.847759888298499e-05, - -0.00013399142068563425, - -0.0007735939375706377, - 0.0012294743702660862, - 0.00016541565297055664, - 0.0008338057183526021, - 0.0006173680600099427, - -0.0005324660712249873, - -0.0006740502609794217, - -0.0008199833627355055, - 0.00033198205525391503, - 0.0007267220185779939, - -0.0020604481265172336, - -4.971278238664448e-05, - -0.0003895932155725044, - 0.0001631509427433502, - -0.0012936268416999387, - 0.00017638895201059523, - 0.0004907384818053191, - 0.0019184600292033091, - -0.000540008390969014, - 0.00037384222554225115, - -0.0011192071685167085, - -0.0011349191249985782, - 0.00021081877713340433, - -0.0019377688839017214, - 3.7939173216284e-05, - -0.0009665161519855029, - -0.0003447499214443088, - 0.0015822433004351536, - 0.0003882707028584976, - -0.0006578470354684751, - -0.0008528550323540276, - 0.0006535755559564238, - 0.0006011236622569996, - -0.0011938938952544447, - 0.0020755279763230447, - 0.00196845493265462, - -0.0015753601913037333, - 0.0007773993798483594, - -3.056475782681706e-05, - -4.6457698243587995e-05, - -0.0013215220688306663, - 0.00017883537891558713, - -0.0011664597643833627, - 0.002189795504708523, - 0.00019752481888354938, - 8.995435835938792e-07, - -0.0037041801024810953, - -0.0018929908100029384, - -0.001645729737379323, - 0.0005223843374676906, - -0.0009673080165998024, - 0.0013132779991402042, - -0.0008512127825620137, - -0.0011458919868544306, - -0.0012667288379709747, - -0.0013162873106019315, - 0.0003773491489540102, - -0.0020838701812605485, - -0.0006522001590569228, - 0.0009184314697090141, - -0.0008899845749656008, - 0.00014265562087166858, - 0.0023870018741430957, - -0.0009663752997903809, - 0.00011075742262934898, - 0.0005240409661613379, - -0.001473603572420426, - -0.0003789473116333424, - -0.000443536277395806, - -0.0007982513765464378, - 0.0012020995707334482, - 0.0013108817131481931, - 0.00024856525270280444, - 0.0017329303855316296, - -0.0005169261538795267, - 0.0008130214056670277, - -0.0005904646002315477, - 0.00122709425098142, - -0.00017834227645957792, - -0.0004986212650420497, - 0.0011630381205360446, - -0.0001726576653463638, - -0.0001264029855896014, - -0.00022831393531188776, - -0.0003153184182964929, - 0.00031840222225519094, - 0.0002337353742301272, - 0.0010366460587487242, - 0.00046898697214360695, - -0.00013947049691784053, - -0.0005863872852714326, - 2.571964456386897e-05, - -0.0007875589437836625, - 0.00042588758176939986, - 0.000554436241636773, - 0.00018510880245844018, - -0.0007958820058881892, - -0.0015775843695859698, - -0.001111161123610315, - -0.0005548228303216839, - -0.0021292111618743106, - -0.0001397467075138542, - -0.00038330300590588514, - -0.00032753346468422683, - 0.0003557719393692743, - 0.001334383598130291, - -0.00011944367276116744, - -0.0009455851916991179, - -0.0019273981470528181, - 0.002315070381071001, - -0.0009345345669622767, - -0.0006001427295077708, - -0.00013275951299425708, - -0.0008293513806996916, - 0.0008475874263042725, - -0.0001478658523034005, - -0.0007999409871289753, - 0.0007522519215303774, - -0.0001344254828304675, - 0.001003771785260857, - 0.0006947237468941833, - -0.0014260919683876446, - -0.000533458368095145, - -0.0010138613243486313, - 0.00034668841050295503, - 0.0011538722574860874, - 0.0011904803494144002, - 0.0008614800053616448, - 0.0009146534796859386, - -0.0005916501111958689, - -0.0014774800724577848, - -0.0014372597985471984, - 0.000355065865182617, - 0.001899324260644606, - -0.0003955489295554529, - -0.00037147553634348787, - 0.00016826050697379394, - 5.7720691900994055e-05, - -0.0007971734281938408, - -0.0011308717561140029, - 0.0005780469462579295, - 0.0004636053561234571, - -0.0003280336941144368, - 0.0014193975357727345, - 0.0012020992242621033, - 0.0003439318432291155, - 0.0009592472005751581, - -0.0006446891299259881, - 0.00031944576904379725, - 0.0017315234676588303, - 0.0008363195225267384, - -0.0020305802259542555, - 0.0010611015161733721, - -0.0009479171867612346, - -0.001285587590744891, - -7.152971453537978e-05, - -0.0003395627712127391, - -0.0008263318637680681, - -0.00033043508506614116, - -0.0004570967583319158, - 0.0006521620789705692, - 0.00031612245431499806, - 0.0008435933532413424, - 9.829073295502207e-05, - 0.0010325005013174912, - 3.6879079207935394e-05, - -0.0002403426729997387, - 4.506782344558303e-05, - -0.002429356865585296, - -0.001057682159722992, - 0.0010053741447315044, - 0.0012284225728176569, - -0.0026232545812878106, - 0.000816058389042647, - 0.0012350038477399905, - 0.00023100936277354724, - -0.0010963357028834122, - -0.0026486461959938905, - -0.0006287202959775753, - 0.0002449450899973831, - 0.0009856027010343433, - -0.0009127340982082835, - -0.00048410430522784556, - 0.0002960308742524513, - -0.00014290213947386657, - -0.0015942603142487838, - 0.00040388430023090483, - -0.0010592832035414036, - 0.0012092051625650102, - -0.001809306308185655, - -0.0018561972990590577, - -0.000841229990323613, - 3.52414433428857e-05, - -0.0013447438809586227, - -0.0006729257616421774, - -0.0015284544507774838, - -0.0017660438628998598, - 0.0003114082323108724, - 0.0006165764396210818, - -0.0005221875300818106, - 0.0011414201628265107, - -0.0002849808038549376, - 0.00014833807840260854, - -0.0008469942438913506, - 0.00039521574925247113, - -8.228545270913188e-05, - 0.0010132991951438343, - 0.0003820763055530818, - -0.0016426116552713161, - -0.00022147940499304112, - -0.0014649210506430994, - -0.00037654754481922096, - 0.0005376267881519327, - -0.0012102259382911124, - 0.00038407105538795306, - 0.0004087944845720613, - 0.0010907612641500746, - 0.0018596503963325057, - 0.0005088876338712446, - -0.001944942542273822, - -0.0017986139474602202, - -0.00039668304732825524, - 0.00010122951019318593, - -0.0003100534770204409, - 0.0004978313194182888, - 0.0003323968813160685, - -0.00028440047235219363, - 0.0002986996767500154, - 0.00154581676224894, - -0.0010703070926076283, - -0.001593582529291117, - 0.0003162723050730194, - 0.0002500674411029031, - 0.00041543829086657916, - -1.1027684041236971e-05, - 0.000919469307609642, - 3.993157405469065e-05, - 0.0013016088283548351, - 0.00022749372282106992, - 0.00014304230703713212, - -0.0012172929413006453, - -0.0013249745080358174, - -0.0016430247745253704, - 0.0008322774680560788, - -0.0016579763005738204, - 0.0009236972764846791, - -0.0010837015985591329, - 0.0018338533751359608, - 0.0009212919376359588, - 0.0007315679297654288, - 0.0005669670022074404, - 0.00028709502718726184, - -0.0006046317557943067, - -3.540238156917045e-05, - 0.0004942579397703159, - 0.0011523810654237472, - -0.0014875083177607305, - -0.0022226107500954045, - 0.00233417807899267, - 0.00029287766813619105, - -7.942826789880627e-05, - -0.0009815915300941073, - -0.0017308548869582618, - 0.0004575184047610577, - -0.0008623463801141858, - -0.001027826259069366, - -0.0008016471657532445, - -0.0006269323056465163, - -8.105272468233055e-05, - 0.0017383317962505068, - -0.0007006514951589266, - -0.00037002978914725857, - -0.0013896708738520137, - 0.0012276931748092068, - -0.00047445256848173227, - 0.0013931931354887307, - -0.00041811331004442477, - -0.0015977801115757547, - 0.0003119012709937501, - 0.00041748669939492897, - 3.622930624359058e-05, - 0.00010435485089608463, - 0.00068780887141127, - 3.6687755045295895e-05, - 0.0009574593719112407, - 0.0007570873296514148, - 0.00137671133864287, - 0.0002274464816980699, - 0.0010764644928086572, - 0.00125306493682099, - -2.9469771667862264e-05, - 0.00024569558273129034, - 0.0014090410416732163, - -0.00034788464218719797, - -0.00016518360204239888, - 3.146971595186761e-05, - -0.0014427682396905487, - 0.0013481764215974874, - -0.0006049335204014966, - -0.0016520321867018412, - 0.0008002738712411114, - -0.00034294192253769037, - -0.001399735337133517, - -0.0006074090986917655, - 0.0012093855627205215, - -0.0006459494195821679, - 7.176259806737042e-05, - -0.0006669909538525974, - 0.00134475369616233, - -0.0009035199295209107, - -0.0001824714893720298, - 0.0007586330918188823, - -0.0006875878891877327, - -0.0015480106070884924, - -0.0010701867350477188, - 0.00030837079408304517, - 0.0003710339533889121, - 0.00011464684028845155, - -0.0011764617716292776, - -0.0019171086621085763, - -0.0001243541238036749, - 0.0018678848171214233, - -0.0006526978987555947, - 9.059100387934715e-05, - -0.0008849083087407645, - -0.001059856845750493, - -0.0011409984133315106, - -0.0004869449791072317, - -0.001126168608414355, - -0.0009034810995107731, - -0.001083369486866823, - -0.0005705134284439153, - 0.0016700896752441293, - -0.0021861614096930866, - 0.00035136373553473, - -0.0004094835799296123, - -0.0010518186365591714, - -2.5088154958659823e-06, - -0.0001689645660424037, - 0.0004969652344186437, - -0.002052353580162092, - -0.0006955138645115664, - 0.0008346198673864016, - -0.000915847284668415, - -0.0008172017271301584, - 0.0004281190409801664, - 0.0012160349174481662, - -0.0002974880172768533, - 0.0011971926010727171, - -0.0008670366455275977, - 0.0009839107169503903, - 0.0021982921220460466, - -8.976309905631637e-05, - 0.0010321143645651983, - 9.953900764318193e-05, - -0.0012066349316005157, - 6.858206128959203e-05, - 0.0006146096645468084, - 0.0003010723711004188, - -0.0013713313935670873, - 0.002241644638638196, - 0.0011489144006010513, - 0.00035036757979915923, - 0.000338358040843067, - -0.0012199939307653651, - -0.0008450745758736549, - 0.000901997931075891, - 0.0005561612986995986, - 0.000953479461972044, - 0.000408175882191682, - 0.000518521465968698, - 0.0008330363070525461, - 0.00043925706703424325, - 0.0010852770400018898, - -0.00043507973167257577, - 6.287023099069638e-05, - 0.00016269701058139655, - -0.001156679117074127, - -0.001172003160552277, - -0.0026148819981113656, - 0.0011807137906623133, - 0.00029916552976276187, - -0.0018115683522804344, - 0.001067294689180577, - -9.69478990726541e-05, - -0.0005700843620733386, - 0.0015943466924783528, - 0.0004683641696976051, - 0.0007830445596910149, - 0.0011530973020520727, - 7.41137061160518e-05, - -0.0005981304725956796, - -0.0023297160013522533, - -0.0011906163585409994, - 0.001858983651442545, - -0.0008034016143308231, - 0.00039259143646199873, - 0.0008331370674579101, - -0.0003133637368904822, - 0.00017960768625255313, - 0.0002659739547605728, - 0.0010889952247982544, - -0.0014722207910655867, - 0.00047387166949841456, - -0.0010980996302194948, - 0.00016919989631522064, - -0.0021435954657160225, - 0.0007284595284863135, - 0.0012767372531837103, - -0.0002695752272508236, - 0.00039869084563598923, - -0.0006390490724435874, - 0.0012623019701264002, - 0.0010489524277436024, - -0.0006824170719844565, - 1.6883109951549026e-05, - -0.0003668122370482813, - 0.0024303087153819424, - 0.0008549546721645027, - 0.0009290426855246224, - -0.0010173123607801237, - 0.0019364003437275933, - -0.0005235726356754779, - -0.0012587917769036779, - 0.0011093732730550118, - -0.001981067377900557, - -0.0009516502228357549, - 0.00022721353557129676, - -0.0006018123119860096, - 6.139588557682033e-05, - 0.0006496342328972877, - 0.00018889637206753791, - 0.0003630033340192123, - 0.0009456725062519443, - 0.0001423748769757134, - -0.0004937179957188849, - -0.0011840740525882866, - -0.0032572234144868668, - -0.0006788298786030018, - -0.0011029608381006137, - -0.0005459204437733182, - 0.0014429545137220525, - 0.000988784630615299, - 0.0009002355429984379, - 0.0007415656735696816, - -0.0003026326603794944, - 0.0010828592574402592, - -0.0005842074399251722, - 0.0002714109878271407, - -0.000543226385457593, - -2.37472503882436e-05, - -0.0007639145705931737, - -0.0008511647332509043, - -0.0011158053637258286, - 0.0012641183011016723, - 0.00017944942101041596, - -3.9793183427854025e-05, - 0.0015987174950214055, - 0.0006501579990788645, - 0.001865232307556168, - -0.00035063388772080245, - 0.0006902799030886354, - 0.0008078290515154383, - -1.2502723629838786e-05, - -0.0005593120139934831, - 0.0017822145321093868, - -0.0007613398708667543, - -0.0003332048444944677, - 0.00049170850272495, - 0.0008217498348986212, - -0.000943773195174758, - -0.0010241190774590819, - -0.0011753402456821658, - 0.0007472673928053305, - -0.00018897560343552664, - 0.0005779078008000386, - 0.0012965782464094845, - 0.0003872056414951826, - 0.001427929225375, - 0.0017224158601080366, - 0.0005896695713142535, - 0.0010551241315259416, - -2.473478030038943e-05, - 0.00022145123361591324, - -0.0017656433674142586, - 0.001186142901586758, - -0.00037391126553172155, - 0.0005095344496664344, - 0.0010660483157942091, - -0.00048319691069507, - 0.0005298409249128277, - 0.00048021095551697957, - 0.00010165878310543002, - 0.0003914395315645091, - 9.810343550740619e-05, - 0.0005300253855734459, - -0.0013499171883089628, - -0.0008679471877756493, - -0.0011072271818755935, - -0.0016526923262070693, - 0.0010154664717447707, - 3.131381574920415e-05, - -0.0002816887357663555, - -0.0007642965883547474, - 0.001393530516488829, - -0.0013079579317448093, - 0.0014897678214235044, - -0.0009070318867181098, - 0.0011597202182581662, - 0.0011650916322589466, - 0.0011037286331247575, - 0.00016819823105697937, - 0.0016302820135696188, - 0.0012289910522181465, - 0.001387803245532038, - 9.753495707855861e-05, - -0.0016284888591190313, - -0.0013174703565389202, - 0.0015363435450411987, - 0.00035271227643312084, - -0.0026394280412886757, - 6.78368887662444e-05, - 0.0007814752443362951, - 0.0002752132549821037, - 0.001468313398566948, - 0.0006545236966096546, - 0.00015161640974977624, - 0.00023696581672297542, - 0.0013642156518726815, - -0.0006580542913970103, - 0.0006605017470452941, - -0.0003088228978564007, - -0.0008748764883549764, - -0.0016642166552533128, - -0.0006184663969364369, - -0.00015409401859344467, - 0.00011171320406382895, - -0.0003290910407041211, - -0.0010709146804689057, - 0.000391673286224946, - 0.0016568592585332633, - 4.886265919610229e-05, - -0.0005310321469864104, - 0.0010965154226519266, - -0.0007755256922949238, - -0.0016960342209149909, - -0.0011084135517462786, - 0.0005122886593445442, - 0.0007411646422577687, - 0.0015908914037913292, - -0.0007538540001763368, - 0.0007582234291749213, - 7.647547873373415e-05, - -0.00014731395201125405, - -0.0003695468091183977, - 0.0008737037670638785, - -2.9156555941520518e-05, - 0.0013759294936129811, - -0.0019396679285413774, - -0.0001656795002055891, - -0.0003471560695495425, - -0.001241703149608692, - 0.00034815131665108653, - -0.0010378207996945867, - 9.313167172588199e-05, - 0.0003768239998069945, - -0.0008519499742523102, - -0.0005180546234512934, - 0.0005414827770569703, - 0.0007734070692163017, - 0.0002244177583683037, - -0.0020083988197677604, - 1.5866021128503563e-05, - 0.0028300716082197636, - -0.0015626980230826993, - -0.0007570620879619247, - -0.00048649438834632544, - -0.0014843932873093426, - -0.0009091931471393971, - -0.000678127863880481, - 0.00037568061226585616, - 0.000151084238891734, - -0.0007489745309385559, - 0.0004510021034491504, - -0.0003584460509166288, - 0.002116144765805572, - -0.0008424457940505964, - 0.0009235345882566292, - 0.0003250570207390367, - -0.00017397363080493195, - 0.0007197608461805603, - 0.0015474097983145263, - -0.0008353156806061429, - 0.0011143087870734152, - -0.00038750220325299014, - -0.0011148684886687825, - -0.00019958942274774858, - -0.0004177035962340447, - 0.0010295791623491952, - -0.0010420821016893502, - 0.00015726901261220008, - 0.0010757164325489765, - -0.0005662198447577108, - -0.0014236665997060995, - -0.0007863089004988628, - 0.0015800946344987391, - -3.2056804659746934e-05, - -0.00038417506573733864, - -0.0004683561412928589, - -0.0004495071110233752, - 0.0017829256357936717, - -0.001249116455294586, - -0.0005262008246806016, - -0.0020806901498940603, - -4.7044997664915096e-05, - 0.0004576092154107047, - 0.00016119956086026196, - 0.001485404960980037, - 0.0009103038888543706, - 0.0003250510906542959, - 0.0004838265748302406, - -0.000674596455453416, - 0.00033822110932001765, - 0.0004944724822896743, - -0.0009183104595300472, - 0.0017184330092987923, - 0.0003004655935077607, - -8.880815825930969e-05, - 0.0001469707885369157, - -0.00019022780181976887, - 0.0025710551192635106, - 6.645414771898788e-05, - 0.0008923676528715616, - 0.0006888630180091548, - 7.418249218949568e-05, - -0.0006085345592910763, - -0.0018967292290848299, - 0.0005207021868651298, - -0.0004929127334017388, - -0.00013063075417078248, - 0.001110254256232218, - -0.0001225144671689617, - -6.513886445023493e-05, - -0.0008542543517159396, - 0.0006216643419380463, - -9.12336646118156e-05, - 0.0005887253068504605, - -0.0017891907841896602, - -0.000960924050247771, - 0.0004135540559117253, - 5.473666254529923e-05, - 0.0002356959202535625, - 0.0008915453092566195, - 0.0014524917722501208, - -0.0005398205884219588, - 8.965778277814651e-05, - -0.0014669956880096764, - 0.001284599185668919, - -0.0006754743947329374, - -0.00026218175428835563, - 0.0004747506721413596, - -0.0008005094602516393, - 0.0004048893455853081, - -0.0017509374045175793, - 2.4552048755175818e-05, - 0.0009108254845081494, - -6.251576607071105e-05, - -0.0009826527321705838, - -0.0015739490033544173, - -0.0019224893111071458, - -0.0002047626000067345, - -0.00033631167274441877, - 0.0006776839146117316, - -0.001334087881086437, - 4.886014518870652e-05, - 0.0015329217901167852, - -0.0009121771337764748, - 0.0009217340039503385, - -0.0009557182405849002, - 0.0005789629121700315, - 0.00022262472217118861, - -0.0010679976905729194, - 0.0003459477639309376, - -0.000158289036234453, - -0.001883066764178504, - -0.00012191829490403117, - -0.0006613531543469578, - -0.001545734376758103, - 0.002324098609630597, - 0.0015074545476887274, - 7.3761313095608455e-06, - 0.00019760176287840874, - 0.0011112310907274714, - 0.0010593507448467179, - -0.0006422129855534129, - -0.001861926389606331, - -0.0006577700858830783, - 0.001005972219423685, - -0.0003107130837989659, - -0.00044481491423884064 - ] - } - ], - "layout": { - "autosize": true, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Distributions of Estimated Offset Values w.r.t. Beam sensor 0 After Burn-In" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0.5, - 6.5 - ], - "title": { - "standoff": 20, - "text": "Sensor" - }, - "type": "category" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - -0.004107668773902379, - 0.003962104654523292 - ], - "title": { - "standoff": 20, - "text": "Estimated Offset
Value (ppm)" - } - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQe0FEX2xu+8SHrkoAIiIKACiugqihHz6q7L37RmV9lljSgi4JrTmjCjrLrqupjTGjEHFhQwAgICAgKKEiWHF+d/vmLrUa9fz3SYnpnuma/O8YBMd4Vf3a6u+vrWrVg8Ho8LEwmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQgC2BGMUTWgYJkAAJkAAJkAAJkAAJkAAJkAAJkAAJJCZA8YTWQQIkQAIkQAIkQAIkQAIkQAIkQAIkQAJJCFA8oXmQAAmQAAmQAAmQAAmQAAmQAAmQAAmQAMUT2gAJkAAJkAAJkAAJkAAJkAAJkAAJkAAJ+CNAzxN/3HgXCZAACZAACZAACZAACZAACZAACZBAnhCgeJInHc1mkgAJkAAJkAAJkAAJkAAJkAAJkAAJ+CNA8cQfN95FAiRAAiRAAiRAAiRAAiRAAiRAAiSQJwQonuRJR7OZJEACJEACJEACJEACJEACJEACJEAC/ghQPPHHjXeRAAmQAAmQAAmQAAmQAAmQAAmQAAnkCQGKJ3nS0WwmCZAACZAACZAACZAACZAACZAACZCAPwIUT/xx410kQAIkQAIkQAIkQAIkQAIkQAIkQAJ5QoDiSZ50NJtJAiRAAiRAAiRAAiRAAiRAAiRAAiTgjwDFE3/ceBcJkAAJkAAJkAAJkAAJkAAJkAAJkECeEKB4kicdzWaSAAmQAAmQAAmQAAmQAAmQAAmQAAn4I0DxxB833kUCJEACJEACJEACJEACJEACJEACJJAnBCie5ElHs5kkQAIkQAIkQAIkQAIkQAIkQAIkQAL+CFA88ceNd5EACZAACZAACZAACZAACZAACZAACeQJAYonedLRbCYJkAAJkAAJkAAJkAAJkAAJkAAJkIA/AhRP/HHjXSRAAiRAAiRAAiRAAiRAAiRAAiRAAnlCgOJJnnQ0m0kCJEACJEACJEACJEACJEACJEACJOCPAMUTf9x4FwmQAAmQAAmQAAmQAAmQAAmQAAmQQJ4QoHiSJx3NZpIACZAACZAACZAACZAACZAACZAACfgjQPHEHzfeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCcEKJ7kSUezmSRAAiRAAiRAAiRAAiRAAiRAAiRAAv4IUDzxx413kQAJkAAJkAAJkAAJkAAJkAAJkAAJ5AkBiid50tFsJgmQAAmQAAmQAAmQAAmQAAmQAAmQgD8CFE/8ceNdJEACJEACJEACJEACJEACJEACJEACeUKA4kmedDSbSQIkQAIkQAIkQAIkQAIkQAIkQAIk4I8AxRN/3CJ313vvvSf/+Mc/pH///nLhhRdKgwYNQtGG1atXy2233SY//PCDXH311bL77rvX1mvLli0yadIkefbZZ6Vnz54yZMiQUNRZVyKsTEMF6X+VqampkW+++Uaef/55mT59usTjcenQoYOccMIJcvjhh0tJSUkYq520TslsN3KNSWOFV65cKW+++aZ88skncs0110jXrl3TWJr3rDdt2iR4lv/zn//Izz//LKWlpWq8Ofvss2XXXXeVWCym7HXevHny3HPPyZQpU6S8vFy22247OfLII5UNN2rUyHvBeXLH+vXr5cMPP5QXX3xRLrvsMtl7773zpOVsJgmQAAm4I4D5xGuvvSbvvPOOrFq1Sho3bqzGynPOOUfNlZhIgATCQ4DiSUj64r777lMLDKdUWFgobdu2lXbt2slee+0lBx54oGy//fZSUFCQ8FaIEDfddJN8/vnn0rRpU7njjjtCs4D58ssv5corr1R1P+6445RAgvqOHTtW3n77bcHE2/zNiU+mfg8z00wxcFtOVVWV/POf/5QNGzbIBRdcoGwVk4QnnnhCqqur5dhjj5WLL75YYNs6YSJx+eWXy48//ui2mDrX3XrrrWlfpNnZrq/K5uhN8+fPl4ceekhmzJghEM+CGHswHnz88cdqMb5o0SLZuHGjsicIGf369ZPf/e530r59eyV4uEkrVqyQv//97/Lb3/5WDjvsMIHQ88ADD8jkyZOVPV577bWy3377yRtvvCGffvqpDB8+XJo1aybjx49X16F8THAh/GKyG6Zk2qddvfR4a/cbhCT0nTUlu8d6LZ7hRx99VCZMmKDGdKRMPJdh6oN8qEsiW7Fre6tWraRjx45q3oL/WrRokQ+I2MYsEIAo/vLLL8tbb72lxIgddthBTjnllMA/1sydO1fef/99+etf/1pnDuOlyXhX3nnnnTJ48GDZY4891LsN83QI9nhvYtzs3r27lyzTei3qi3fhunXrHMvBexHv59/85jdyyCGHSJcuXVy/nx0zD9kFbuatXt6hIWseq2MQoHgSInPAIhML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HddjwYL+TXY/FnbaywQ2hQk/JiywTzy3EBuxqNceDKabMfoSoh3+wwIWk0ireAfbhwiFSSOebzz7ycYC1Nt6DxYRmKRicYrxBOMCxivYKURMv2nlypXqucQXRCxU8TyhzZgkY8GKxTKer0TJXJzaXYPnDLaDxZLdOKbv0QtLbA9DnphEYuzEgg9jNCbYOAUJXi12E20sMLFQQCBT3IM+xIQSXht241my8cgvS30f6g7hAJP7RIITrk02lkKEhtcT2g1BGDaabBywjvF68QS7xaJizz33VLaJcR58MUGH8Ipx0+59h/cCtvZgEQF7g0CO7VKIUWBui0Kd8EwjYTEHe9JblmA7eI60GOmHK+wRYw3ystv+BDEY7w8ITnbu/6gfRD2IVGCE9xtSoneOdSzFMwHvApQDQVB76Zjvo2TPP8RcjD0QD7BQNN9PiXhoAdEtL/DFfADjAYTOZPMXr2ORVxt1epdjDNQfWMz2ae74ze53N9tUU7FFN/bu9J5CHbUoae07jG94hv0+K5hLQuieMGGCskWIqojRdfLJJ6tn2xwTk43JXo8hN9thjrEQcpzGZCuDRPVK1rdOcx8tiEJATDQHQD2swmeiuUii9iZ6pySbY7qxWV1eMtuyGwcgHuC9DNERH4nwsc+6ptD3eX0XuLWfZNe5nXc5jXFO/a/7tn///kmfPTdzQKe68Pf0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+zJ0ESIAESIAESIAESIAESIAESIAESCDiBCieRLwDWX0SIAESIAESIAESIAESIAESIAESIIH0EqB4kl6+eZH7EUccodr5/vvv50V72UgSIAESIAESIAESIAESIAESIIH8IkDxJL/6Oy2tpXiSFqzMlARIgARIgARIgARIgARIgARIICQEKJ6EpCOiXA2KJ1HuPdadBEiABEiABEiABEiABEiABEjAiQDFEydC/N2RAMUTR0S8gARIgARIgARIgARIgARIgARIIMIEKJ5EuPPCUnWKJ2HpCdaDBEiABEiABEiABEiABEiABEggHQQonqSDap7lSfEkzzqczSUBEnBPIC5SsaFGYgUixY0L3N/HK0mABEiABEiABEiABEJFgOJJqLojmpWheBLNfmOtSYAE0ktg88pqWfblZqkuj6uCIJ5st29DKSmjiJJe8sydBEiABEiABEiABIIn4Fo8qaiokO+//166desmJSUltjVZsmSJrF+/Xnr06CGxWCz42jLHUBKgeBLKbmGlSIAEskxg8YcbpXJDTZ1aNN6uSAkoTCRAAiRAAiRAAiRAAtEi4Fo8Wb16tYwaNUqGDRsmLVq0sG1lPB6XZ555Rtq2bSt6QR0tHKytHwIUT0AtLjXrZkvNlqUSK20thU13EYkV+8HJe0iABHKAQE2lyA/j1tdrSVHDmHQ6skkOtJBNIAESIAESIIH8IzB99VpZtGGj54bv3rK5dGrcyPN9vCFcBAIXT5599ln59NNP5bbbbpOysrJwtZa1SQsBiici5XPvk5pNi2r5xkpaSoNdhokUNEgLc2ZKAiQQcgJxkQXj1ku8qm49S5oWSMdDG4e88qweCZAACZAACZCAHYGn5i+SCctWeoZzRtdOcmC71p7v4w3hIpBQPNm8ebNACPn888+lvLxcqqurZdWqVdKqVSspLCy0bQW8UzZu3Cjdu3eneBKufk5rbfJdPKlZP0fK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88AtNgAResqUKUqQxDwMcx3sYqQTNVsd72DnBZpHBnt/mc2NAtkC5ml4J+q5YLB7D15+mH/hPsScEx9h/InIuDcgQASbywV7HvjrP+4D33cT5jQIEzV7D6E8PDNwL+DDg+9uRf6ex1ZyGPnbLS3Y/eqEbbAMEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEiABEiABEiABEiABEiABFxFgOKJq4aLjSUBEiABEiABEiABEiABEiABEiABEog2AYon0SbO+kiABEiABEgghgQKCgrku+++k3/+85/y888/i8fjkXr16sktt9wi559/vnz55ZfSsWNHKVGiRAxbyapJgARIgARIgARIIL4IUDyJr/Fga0iABEiABEggYgTy8vLkzTfflAULFkifPn2kTZs2kpKSIrt27ZIpU6bIt99+Ky1btpShQ4dSPInYKLBgEiABEiABEiABNxKgeOLGUWObSYAESIAESCAEAosXL5bnn39eBg0aJO3atStSAjxSZs6cKatXr6Z4EgJbXkICJEACJEACJJDYBCieJPb4snckQAIkQAIkUEjgtddeU14no0ePlrp16xYjc+jQIZk+fbrcdddd9Dyh3ZAACZAACZAACZCAgQDFE5oDCZAACZAACSQJAYgns2bNkuuvv17uu+8+SUtLK9Jzr9crc+fOlUsvvZTiSZLYBLtJAiRAAiRAAiRgjQDFE2uceBYJkAAJkAAJuJ7A8uXLZfjw4ZKbm6sEkvvvv18qV65sqV/IizJhwgRZu3atur5p06Zy7733SqNGjdT1yKeCkJ/Zs2dL1apV5aGHHpJly5bJG2+8IXv27JEWLVpI//79i9SXnZ0t06ZNU9dkZWXJaaedJg0bNpRzzjlHOnXqVKRdBw4ckPfff1/mz58vx48fV+VcffXV0rVrVylVqlThufv371e5W+bNmycDBgyQI0eOyIgRI6RkyZKq77Vr17bUX55EAiRAAiRAAiRAAkYCFE9oDyRAAiRAAiSQJAQgcLz99tvy8ccfC3KclC5dWm6//Xa56qqrgnqaYHeed999Vx577DG1M8+WLVuUIHHw4EF55plnlOABwQLn4Z9XXnmlEkLwe5MmTeSbb75Rf8cuPo8++qikpqYKvFwmTZqkdvyByFG2bFlZs2aNjBo1Srp166a8Y/Sxbt06GTlypPob2orj888/V9dDDHn66aeVYLN+/Xol7nzwwQfqHIg7q1atkk2bNikBB/V06NAhSUab3SQBEiABEiABEnCSAMUTJ2myLBIgARIgARKIcwIQTb7++mt55ZVXlAcHjooVKyovlEsuuUQyMjKK9GDnzp3y5JNPSt++faVZs2aFv0EMefbZZ9Xfhg0bpoQYCBdIRnvGGWeopLO1atVS5+/du1d5naSnp8vYsWNVfcivAjHj1ltvlcsuu6ywXAgtEF2uu+469Td4nKD+OnXqqDboUCOIL8jPMnnyZJX8duDAgart+fn5qg70EWXcfffdkpOTI9u3b1fCj2//4ny42DwSIAESIAESIIE4IUDxJE4Ggs0gARIgARIggWgSgEAxY8YMlQMFggMOiAsQKrTogb/BSwVeHkgyW6FChcImbt26VQkW2OoYv8EDRP/tL3/5izzyyCOF5yI8B0LL7t27lbCBkJujR48qoQUhN/inDh/6448/lAcJhBwcX3zxhbz44otKjEG5xmPHjh2qDSj/hRdekAYNGqifX375ZeXtEigxbjQ5sy4SIAESIAESIIHEIEDxJDHGkb0gARIgARIggZAIQNBASA48SeCVAhEDITlnnXVWoRDx2WefBS0b57ds2dJUPNm4caMSOfROPyh3/PjxKmSoS5cuylMEXin60F4kyHOi6zA2RIsyK1askD59+si1115b2Gb0x1hXSHB4EQmQAAmQAAmQAAn8jwDFE5oCCZAACZAACSQ5AYTAIDcI8oogwSpEiIcfflhOnjypPEaQzBX/RGhOsMPM88RXPEFZuEYnokUuFCSA7d69u/JIMYoj/sQTXA8vE4gwDz74YGGeFPyN4kmSGzW7TwIkQAIkQAIOE6B44jBQFkcCJEACJEAC8Urgq6++krPPPluqV6/ut4k6RObCCy9UYTKZmZkybtw4wS498OJALhOnxROUB/EGSWhff/11lTfloosuUqE8EFOef/55lYgWOVkgrPgeWjx57rnnpFWrVupniifxaoFsFwmQAAmQAAm4lwDFE/eOHVtOAiRAAiRAArYIIL9JlSpVCvOJ+F6sPUcgsAwZMkSF02B74HfeeUd5ddx3332FCVv1tfBYQagNQnHseJ4g5wrCbbAzjz6Q2BViDZK9wgvm3HPPLawfOVAGDx5cJOErtkzGeagX4k61atUontiyCJ5MAiRAAiRAAiRglQDFE6ukeB4JkAAJkAAJuJwAkr/OnTtXheBga1/fA54nEC969+4tnTt3Vj9jtx14gezfv18uvfRSueuuu5TnCrY9XrJkicCbBUlbEdIDEQM76GD3G38JY41hOxBPsC0xti6uUaNGYVNQHhK9avEEWwyjfCSSxZbEF1xwQeG5+/btU7+1bdtW7arj8XgKxZMFCxao8hs3buzyUWPzSYAESIAESIAE4oEAxZN4GAW2gQRIgARIgASiQADiCfKLwFOkV69eKjwGogc8OODt8dprr0nr1q2VeKLzmyCk5ssvv1S/IQeK8UByWYTLYJceJJudM2eO2gK5SZMm8tRTT0mlSpXU6UhKC68RCDBPPPGEtGnTRm1V3K9fPxUahG2MkaAWgsqYMWOUdwsEG90GhO2gnvLly6tzzzvvPHUuwnyQF8V4LgQVhPpgx56bb75ZevTowe2Jo2BbrIIESIAESIAEEp0AxZNEH2H2jwRIgARIgAT+R2DhwoXSqFEjJU5gB5t58+bJr7/+qnKLQAC59dZblaCC7YeNBwSUDRs2qF15kJME1yO/SM+ePaVmzZpFErsar0MSVxwQbIzHNddcI7fffrsMGzZMDh8+rEQVCDMQS5Cs9pZbblEJY43Hrl27ZPLkySr/Cs5Fvd26dZMrrriiUBxBCBFEGuNRrlw57rrDO4AESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZAMWTRB5d9o0ESIAESIAESIAESIAESIAESIAESCBsAhRPwkbIAkiABEiABEiABEiABEiABEiABEiABBKZwP8DLfWzz/KFx8IAAAAASUVORK5CYII=", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter = elq_model.components[\"offset\"].plot_iterations(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", "plotter = elq_model.components[\"offset\"].plot_distributions(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", @@ -541396,78641 +576,10 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": null, "id": "adf43b37-17fc-4fe0-85cb-8894b209edbd", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgb(178, 226, 230)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 1.0248851577988605, - 0.11427274415617526, - 0.06761670728182556, - 0.0869177715051518, - 0.0748147921085991, - 0.07184255716709634, - 0.06951760560217014, - 0.08311679228054426, - 0.08327186954440399, - 0.08229385562162692, - 0.08448898064776143, - 0.06517455653884688, - 0.09004698040856668, - 0.0741228346417943, - 0.08695334894230058, - 0.07686561775383227, - 0.11658348300667369, - 0.10282321703707621, - 0.06740418165400063, - 0.07998788024131627, - 0.08374525192140608, - 0.10390138746032407, - 0.07796516466860821, - 0.0715825388838302, - 0.07455715877176866, - 0.08769305515889822, - 0.0805963334684471, - 0.07636083153277523, - 0.07344701780103614, - 0.07677276594476468, - 0.08661292704472287, - 0.08070931702888967, - 0.06949880546677223, - 0.07681955862616284, - 0.1007769620336446, - 0.09465531998220829, - 0.07261579232850258, - 0.08659550916309201, - 0.09422497124413336, - 0.1019507911386959, - 0.10285966528906414, - 0.06946144691787061, - 0.06161619479124536, - 0.07081401921414687, - 0.07206559767559133, - 0.09018026017161299, - 0.07938523226951907, - 0.09058616795357621, - 0.0777147911946703, - 0.06733168300348719, - 0.06345072512184712, - 0.06987006261758794, - 0.08549247836799834, - 0.07074342874334758, - 0.09521871201980828, - 0.08022962161584009, - 0.11181955959080739, - 0.08237645740709759, - 0.06458520688220953, - 0.08265301007428175, - 0.08174375575507269, - 0.08425926600256725, - 0.06741878882188769, - 0.08025159854347816, - 0.08805298158284025, - 0.07068406844551824, - 0.08370995780152937, - 0.09028014121909322, - 0.08392049538602744, - 0.09820762717041184, - 0.06798755644240513, - 0.06612434180798364, - 0.07627373677445659, - 0.07383561216666322, - 0.05362237499668836, - 0.10237231005564995, - 0.10580507269628933, - 0.0755401916645826, - 0.07327631862303308, - 0.09103945020453995, - 0.07246047341368071, - 0.06463366759233768, - 0.08675698056684143, - 0.07013104520158436, - 0.09450439039717413, - 0.08973993587096571, - 0.08344655728455994, - 0.09450470727778819, - 0.07280572671002565, - 0.07506137199438817, - 0.07058530289134049, - 0.07380219913664302, - 0.08460381820262068, - 0.08234304175654016, - 0.07201418059065823, - 0.060957855795497964, - 0.07494769244553166, - 0.08362306562258438, - 0.08777026466899308, - 0.09209827120465139, - 0.0771080929481765, - 0.07296092403176804, - 0.09146231597125086, - 0.08063584421048879, - 0.08809841336056683, - 0.062057321594027944, - 0.07336912824297888, - 0.07426687834513053, - 0.07607420531914529, - 0.08417297563922879, - 0.06281601649386802, - 0.05721884918494389, - 0.07154761340158057, - 0.09271128554548544, - 0.08538322564819835, - 0.08400358933467038, - 0.09225218012740148, - 0.0680170571504633, - 0.062338980540471774, - 0.06989842958403653, - 0.07248779231825805, - 0.0970123852222494, - 0.08760398568670259, - 0.0793298786753686, - 0.10892597620893207, - 0.09506431121703929, - 0.06729631889085216, - 0.062488703091113165, - 0.0651175829568285, - 0.06945151938471386, - 0.07252148004131635, - 0.06874217014936497, - 0.07707500333982689, - 0.08471857939762956, - 0.08783189860804937, - 0.0728370778944709, - 0.0666516744346737, - 0.11306595776084592, - 0.07903145029364891, - 0.09043580624298603, - 0.06324814091824442, - 0.08831773135589228, - 0.07881380467468857, - 0.06643003561185479, - 0.07100023364880513, - 0.06750009569627582, - 0.08372325927529495, - 0.06919221251545601, - 0.07977572719968029, - 0.0791885796608401, - 0.08198818846736602, - 0.0923456442166124, - 0.06735881786810051, - 0.08998723501968967, - 0.08928939661816773, - 0.08335068086397718, - 0.07493523176408924, - 0.06938248344487076, - 0.08319971660627289, - 0.07681200894867724, - 0.06521618612135585, - 0.09568303692344159, - 0.07594035224956346, - 0.08680032593347418, - 0.09814636034495496, - 0.07204866096298745, - 0.06997953118932816, - 0.06092292949857764, - 0.08301360751038954, - 0.07573005170727413, - 0.09129873007525045, - 0.06380551183900539, - 0.06900460314649473, - 0.074726655406853, - 0.0748087357296913, - 0.059512444726840766, - 0.06608904361417141, - 0.06564839414598742, - 0.07364885761917335, - 0.07666149638394598, - 0.07652830916340189, - 0.07234425278845869, - 0.059733774411459266, - 0.07839323789655922, - 0.07494521134517212, - 0.07072841226540559, - 0.07715810511369424, - 0.10918134854629352, - 0.08180609881407483, - 0.07997779994171174, - 0.06840866225455271, - 0.08760247884094957, - 0.061716310575098784, - 0.0654605589308143, - 0.07165342903329444, - 0.0699996108670535, - 0.08947513288744428, - 0.0783995665192886, - 0.08257722207321065, - 0.09678167861663406, - 0.060771677311912096, - 0.08347279907649936, - 0.07200561301825092, - 0.060077646763705, - 0.08532898939146058, - 0.08843206257739014, - 0.07414109568603586, - 0.09197701589955491, - 0.06761111190959532, - 0.07901882530840307, - 0.06063150747127578, - 0.07437210953044471, - 0.07562742004923091, - 0.11229292727085921, - 0.07250551630782906, - 0.09385236853777446, - 0.06874254210733749, - 0.06410723309173036, - 0.07290365159157496, - 0.08837345318076013, - 0.06873403396190568, - 0.0754685673267956, - 0.07707457115554774, - 0.06501597840923778, - 0.08171960317481829, - 0.08948461714685702, - 0.08311988537577569, - 0.060683570120498825, - 0.07688869961686433, - 0.07541082669799751, - 0.073216282356447, - 0.09597099500330722, - 0.09036602989851919, - 0.09075088141769914, - 0.07081356696203757, - 0.0906886393090524, - 0.07962794146234019, - 0.06735138016030515, - 0.07022392660599786, - 0.0711046913970654, - 0.08335840511801901, - 0.06554089548266738, - 0.0685505958241804, - 0.07114429936799743, - 0.08597384106571082, - 0.08857259536738225, - 0.05941019766731186, - 0.08484530178508415, - 0.07551569977982743, - 0.06909363914502954, - 0.10666415705674988, - 0.06948321228498977, - 0.059171397843408066, - 0.07660277721478231, - 0.07348922335853497, - 0.09612729331912244, - 0.09204020298107538, - 0.09485451511593398, - 0.07641097027736209, - 0.07355332252634555, - 0.0723623937088065, - 0.06215632576060579, - 0.09634654692409815, - 0.09845726446652432, - 0.12770704303598762, - 0.06992807020792474, - 0.06533077709062828, - 0.0696824243323302, - 0.08890993389707062, - 0.07331165116559489, - 0.0715487086305261, - 0.08936509344033881, - 0.06874732140435563, - 0.0632464718523553, - 0.08407044304248601, - 0.08633571609462659, - 0.09034436412495643, - 0.07514626593289087, - 0.08111455975032315, - 0.07801737334718274, - 0.07074108621227755, - 0.07907582570940264, - 0.07062031342844913, - 0.07799416052662005, - 0.08487408902300222, - 0.0691036791057158, - 0.10013006895839884, - 0.0944406537292757, - 0.06896100058349995, - 0.08733913887444923, - 0.08296243886809422, - 0.07834015642285465, - 0.07079285926463838, - 0.08604637434167782, - 0.10156617778277915, - 0.07618123005431927, - 0.06817118153216437, - 0.0991446520755326, - 0.07313550183464886, - 0.09224622915212555, - 0.07282140673812762, - 0.07004111524034487, - 0.08914885533616558, - 0.06244726058672233, - 0.08171011142614208, - 0.06782319788967228, - 0.06547231724590277, - 0.07167550700552011, - 0.12701113641122957, - 0.07603758897079206, - 0.09880362774097042, - 0.07359561272885974, - 0.06493806886623636, - 0.06533906753645757, - 0.07533277592859011, - 0.09862322683911483, - 0.07656554467406665, - 0.07886184837477961, - 0.07559127672263552, - 0.06152804525026296, - 0.10244753329349937, - 0.06810220486002257, - 0.08667881582396679, - 0.08796973599284014, - 0.08334657351054885, - 0.06800854664321232, - 0.07697904723670783, - 0.05240370826843668, - 0.06157396494658811, - 0.08094659725939628, - 0.07789513908084492, - 0.08285416933831524, - 0.0940429300691706, - 0.06843924157432109, - 0.09278190397151098, - 0.056411037498496616, - 0.08119608885799452, - 0.06440156154219502, - 0.06312324900722692, - 0.08108896764783541, - 0.08454625112782332, - 0.07351526016116894, - 0.09766666656550602, - 0.07888357243095602, - 0.0670038165302565, - 0.09029429357493413, - 0.08516343364325957, - 0.07967742735656909, - 0.09002657533274763, - 0.07413378024535046, - 0.09254869064548221, - 0.08651596738655516, - 0.10252469668307464, - 0.07363179036718738, - 0.08364361434619087, - 0.09115198515987612, - 0.09469614394248854, - 0.07209583773974633, - 0.07790482858938465, - 0.08320221295776066, - 0.08952893747533776, - 0.0816996283330884, - 0.06930714146030176, - 0.07584512214000828, - 0.07520129949941323, - 0.07852020731964365, - 0.0759358472167489, - 0.08274256386521216, - 0.08196490420927051, - 0.08168598734055797, - 0.0690888657544239, - 0.06818435610986086, - 0.07620871163523717, - 0.07079796927188599, - 0.07199532240427194, - 0.10106908928465144, - 0.08874930773641303, - 0.08986413715265049, - 0.07747275510370281, - 0.08094225342645622, - 0.07979574049999962, - 0.09367522791296247, - 0.06801787054440475, - 0.07671523819258128, - 0.06723077296069738, - 0.06432363410584703, - 0.06962746099645217, - 0.10330541447043418, - 0.07147936714031498, - 0.059395735292987445, - 0.0890321744148867, - 0.08621673203834003, - 0.08263702007824653, - 0.07374665266576592, - 0.10420453110142491, - 0.07277156712100241, - 0.07773145163943564, - 0.071959565320709, - 0.08492127636867336, - 0.07968063423927225, - 0.09522923781467305, - 0.07188443605548597, - 0.06941502339217998, - 0.08300681768589105, - 0.07145948336368865, - 0.08425615989299279, - 0.06340526017516276, - 0.07206511489671615, - 0.09308896635421152, - 0.08921275552024281, - 0.06541913112831604, - 0.09138463207160222, - 0.07488110679675676, - 0.09080436487553828, - 0.07685679283706622, - 0.08773335494149254, - 0.08464837420712219, - 0.0970374252252178, - 0.06482361128004807, - 0.08407610986149733, - 0.05788264027162204, - 0.07819358214166089, - 0.09805793517062657, - 0.0675629744460933, - 0.07044479446506793, - 0.07616852422125742, - 0.08088795105088438, - 0.08746829603761133, - 0.052207099723753744, - 0.06448668907694097, - 0.08128489214397841, - 0.0814616068224917, - 0.0772948610258787, - 0.07295978269151261, - 0.07902645367835098, - 0.0784930041186026, - 0.07897872431646556, - 0.07601070947862018, - 0.05907131040761865, - 0.07282979799948518, - 0.06298268027355854, - 0.06374195067569659, - 0.0681577830902327, - 0.07283411371998487, - 0.07745201126216536, - 0.07645125484277557, - 0.1012511085492488, - 0.09395758054632128, - 0.07293619641963647, - 0.06479408272663803, - 0.07282528339668029, - 0.06609400783693017, - 0.0732606328750571, - 0.09334597308068913, - 0.10311036109311957, - 0.08715946033424866, - 0.07850362902735986, - 0.07025170361076256, - 0.08855516507882383, - 0.07145916491276239, - 0.06658108542045428, - 0.07703147001209613, - 0.07482563338733166, - 0.07813430939653733, - 0.07762827063474986, - 0.10022622044461864, - 0.06658781265488338, - 0.0784458645492161, - 0.08915364067794677, - 0.06269750246529576, - 0.0721037036132014, - 0.08686177663252428, - 0.06455226542622033, - 0.0626850118261135, - 0.07618446265057145, - 0.06119376125197354, - 0.07800832750489656, - 0.06919717728465465, - 0.06843358142564843, - 0.104856772336988, - 0.0802886936436212, - 0.07186460254105463, - 0.08091970895157707, - 0.06596523012378509, - 0.08041228753307182, - 0.07796673849993459, - 0.07266670541104077, - 0.07649502118034393, - 0.07767301294124712, - 0.07620288993026438, - 0.06885370576440286, - 0.09228045283677704, - 0.06490752070576797, - 0.06642521352484851, - 0.09124416368832883, - 0.084703328957752, - 0.06925294580252803, - 0.06863096493000248, - 0.07469636194988678, - 0.0618024967588825, - 0.06883931274854303, - 0.06467869159835364, - 0.08287771573682486, - 0.07818538464384645, - 0.0671079224659723, - 0.07508134645848458, - 0.08272136095586206, - 0.06479322614120825, - 0.0749668610016874, - 0.06999305717301438, - 0.08861763001269019, - 0.07135346369857602, - 0.07704156406049745, - 0.07522341592400027, - 0.06271294233572591, - 0.07877858698526503, - 0.10051701417665374, - 0.08938068094337454, - 0.09268220673549374, - 0.08595363815438943, - 0.07103870865443314, - 0.07769458779865089, - 0.10340844414266075, - 0.07114022490883715, - 0.0727769795256015, - 0.08522427014268807, - 0.0798671435535891, - 0.07759196340006674, - 0.06458898031898501, - 0.09670289780147462, - 0.07373216764750595, - 0.09522990624950604, - 0.08635769732426762, - 0.0894845573089662, - 0.08173272133077461, - 0.08229842370316733, - 0.07137953967106819, - 0.08567852818228114, - 0.0674250612124916, - 0.06305159701088542, - 0.06705658403256719, - 0.09065612781159829, - 0.0865981401501876, - 0.08186615124722264, - 0.05719348504041447, - 0.09206672067340621, - 0.08142932499233355, - 0.08668301106870806, - 0.07932459256343082, - 0.08986434675864648, - 0.09366173449561624, - 0.08501209558608257, - 0.0616558540119445, - 0.08679303125260275, - 0.07017138073696094, - 0.10557716153709953, - 0.09285416589933357, - 0.08226886542612352, - 0.07184477274882159, - 0.06772362554532474, - 0.06072036027200166, - 0.07929113851509481, - 0.099362025451946, - 0.09681543285301929, - 0.0985298874972936, - 0.08090588518910612, - 0.08230414298442117, - 0.07445477664717987, - 0.0684747976023619, - 0.07897670242320443, - 0.07568267347568332, - 0.07713849238131676, - 0.06896247313449298, - 0.0671347336658277, - 0.08131686713687236, - 0.0850208651058131, - 0.07963870600086706, - 0.06823197210582634, - 0.08039281711085552, - 0.0823323174002072, - 0.06493506933779822, - 0.09900150602252279, - 0.06874370186859094, - 0.07995642675875836, - 0.08301475115555572, - 0.07672283835287763, - 0.07186266445457706, - 0.07401470814135182, - 0.08276149633300935, - 0.08332105254987567, - 0.057055966944502746, - 0.07737428123393969, - 0.07722195703619154, - 0.07488188823904719, - 0.08738578164124651, - 0.06559928112608923, - 0.09029239447381004, - 0.05574011446097922, - 0.06438020231123218, - 0.0711184241276254, - 0.08811203477310355, - 0.10793293303069314, - 0.07026723610483314, - 0.07243206137899626, - 0.07696207079424754, - 0.07333966976486522, - 0.07367984516302696, - 0.10195702969024001, - 0.06557826112915499, - 0.05760393833236978, - 0.10952542361595555, - 0.09298994390434771, - 0.08017727939702968, - 0.07076886949791844, - 0.06876590152377794, - 0.06949651940464792, - 0.07111862794949922, - 0.06333758514316845, - 0.07644847546494234, - 0.09712679898381744, - 0.09012451466567102, - 0.07017602322607935, - 0.07797597266129105, - 0.10678912540450299, - 0.09058558295057378, - 0.08459844652194064, - 0.07264658805899896, - 0.083039372219906, - 0.08913842184646366, - 0.0866647523342223, - 0.08845709781908943, - 0.09502514646588314, - 0.08691032337765786, - 0.08778104835729615, - 0.08352211954284021, - 0.08955695043568417, - 0.07146397610056243, - 0.08003154203428134, - 0.08247300896739894, - 0.07812687763279248, - 0.07223391647817366, - 0.07764086811777367, - 0.08012306630173867, - 0.08022648583131667, - 0.07965385052944819, - 0.08730134652193065, - 0.07473330985961654, - 0.06739539073860008, - 0.061928666758410744, - 0.07486676180896983, - 0.07946376135480278, - 0.08920802090652974, - 0.08100926249004996, - 0.07092691630018905, - 0.08302522748922442, - 0.07342887185113645, - 0.08249142923916432, - 0.07942087423206821, - 0.08691402311654776, - 0.07680077099474587, - 0.08027592875820981, - 0.09720030833847793, - 0.0760490060107746, - 0.08164213125269339, - 0.08120167546975836, - 0.07110462461997671, - 0.07713170723691892, - 0.0805376574604554, - 0.07415006119426606, - 0.06937188410850238, - 0.06352556681376126, - 0.06455734081493715, - 0.08375012071592478, - 0.06615090579271278, - 0.06351654594779833, - 0.07048083101366513, - 0.08820442184904244, - 0.07121738891751903, - 0.07504917629497451, - 0.08035612562837494, - 0.08145924685438224, - 0.08118027768556482, - 0.0673531007089674, - 0.07835290223069245, - 0.06846171170008873, - 0.08946047207607843, - 0.11064085483044639, - 0.09002462672106694, - 0.0746457055760543, - 0.06492286641571147, - 0.07109835718629245, - 0.07620675985552915, - 0.07522381861670745, - 0.08987166801994147, - 0.07406408171105877, - 0.09177985311321687, - 0.0787069732677827, - 0.08173596638450024, - 0.09392301624859323, - 0.07191828259621066, - 0.060393268904106887, - 0.07471478785537175, - 0.07835137445018761, - 0.08114261953615394, - 0.07221842940337411, - 0.09712294959015962, - 0.063257430319173, - 0.09493765758551485, - 0.08796275399372819, - 0.07104284853685525, - 0.09200774282226104, - 0.10086320683140464, - 0.07695366605404995, - 0.07603538153691639, - 0.060994108263355884, - 0.07902823469438228, - 0.0818594499244641, - 0.0995604360443111, - 0.08901479590899489, - 0.09394703380695332, - 0.06344922817761403, - 0.07027870885551847, - 0.0690841192687189, - 0.09425643839898669, - 0.06787124173713888, - 0.07860737981401744, - 0.0625804511834235, - 0.08056261032163155, - 0.056839958544127316, - 0.07862957508713081, - 0.06668287235337512, - 0.09879941951801022, - 0.07074802240825705, - 0.09520768493639106, - 0.09010550584485275, - 0.06757607415833976, - 0.0800875097576448, - 0.0737124617404239, - 0.08290252445796131, - 0.08712682239052452, - 0.08289454623307413, - 0.09017539963807042, - 0.06473877551851699, - 0.08048941380308965, - 0.0924859013832258, - 0.06898292401686489, - 0.10154094200687046, - 0.07834506654451097, - 0.11343660540610027, - 0.0773039772457758, - 0.06124238543598197, - 0.06928942844017674, - 0.08453412807695497, - 0.0838185480638161, - 0.07509069153582988, - 0.07120223021004644, - 0.08138964867091669, - 0.06980225691733437, - 0.07274851747168135, - 0.09942939476780747, - 0.07673317820451432, - 0.06821249009897938, - 0.05765096533066206, - 0.07198648937615289, - 0.07516023835215171, - 0.08359636730912612, - 0.07463080768642011, - 0.09287944353424757, - 0.07302686456297199, - 0.07849562323173952, - 0.07884621431267097, - 0.07599685973549751, - 0.077978978603698, - 0.08500628509451179, - 0.08019753210012555, - 0.10964666865927923, - 0.07665312318805872, - 0.07886152980188184, - 0.06195896018268905, - 0.07671109489199704, - 0.08330367659564734, - 0.05629291669499468, - 0.061079650247289514, - 0.08374568068867864, - 0.06764110121822178, - 0.08241726267481192, - 0.08325684246248766, - 0.07453461091610455, - 0.09524723907589067, - 0.0786415177526883, - 0.06527450018918121, - 0.07306760488224898, - 0.07426137580421915, - 0.10113347390414558, - 0.09054984364172035, - 0.08081384248547063, - 0.07510239652015674, - 0.07289720607649507, - 0.07396633163976574, - 0.0680807618272264, - 0.07360089223298606, - 0.07800182127721444, - 0.059296888614640615, - 0.07212506234747453, - 0.07767406935819082, - 0.09901708346953988, - 0.08229605590189022, - 0.07352194115985126, - 0.07936356753008249, - 0.08037062091780313, - 0.09426254880436465, - 0.10422990775851546, - 0.07888484422033672, - 0.13481962802042916, - 0.08927459082702349, - 0.09702465416686454, - 0.08742072954986572, - 0.05406261335268375, - 0.08779731127995126, - 0.08025813693605575, - 0.06221002738929886, - 0.06993948543185062, - 0.07590265755163313, - 0.07673576314866781, - 0.08158657463610851, - 0.08183279073134392, - 0.0724110011645731, - 0.09543971170028791, - 0.07288932181806934, - 0.08307571450177746, - 0.09706071242536725, - 0.09219118907382622, - 0.06196367746926577, - 0.09398863472498348, - 0.07739027149374753, - 0.08830895587627945, - 0.08878069512365716, - 0.06992800727163326, - 0.08031106152036473, - 0.06325469450591695, - 0.07452132293800393, - 0.06823557968027308, - 0.06945655446264713, - 0.07229904680223072, - 0.06662735677380267, - 0.07221677789584234, - 0.09048592204831328, - 0.06331982518558024, - 0.0719391919654594, - 0.07575808527209979, - 0.09235436998386433, - 0.06542281692069923, - 0.0801475340180425, - 0.09271117535611109, - 0.08269771132942497, - 0.07269291287872034, - 0.0658960360472315, - 0.08187056327565048, - 0.06745108863764943, - 0.0744772130366298, - 0.06244721272158093, - 0.06535530399568187, - 0.07607760908086508, - 0.08377253568741178, - 0.06592065692744505, - 0.08432927674522173, - 0.07516662454514322, - 0.08382607424102387, - 0.08507122960630886, - 0.07593009538463423, - 0.06725578589217428, - 0.08556936579904634, - 0.08314253734123497, - 0.06664076447447757, - 0.07768793721398855, - 0.07693289513374109, - 0.07598273826888609, - 0.07039181020066954, - 0.07038976346680116, - 0.06216098851809656, - 0.0706647120420979, - 0.08055523402736114, - 0.08586132909360787, - 0.08583566543284282, - 0.0706130439238394, - 0.07029359687229739, - 0.07119082639510521, - 0.06174754471718699, - 0.07378403419338309, - 0.08074630051352295, - 0.07173272803237009, - 0.08053191310212067, - 0.08070333134728161, - 0.09924532481299025, - 0.06934943454076556, - 0.062276776150213514, - 0.08196626546315063, - 0.07586833653550491, - 0.0748671987734143, - 0.08087702197885127, - 0.07555342294341558, - 0.054246526400040664, - 0.07760198322533497, - 0.09503622784470929, - 0.08320052629281702, - 0.07934976631487593, - 0.09206671321729752, - 0.06621960199441992, - 0.07744262002318947, - 0.09545768042322822, - 0.08054698335666732, - 0.07385951017200225, - 0.05801271001437776, - 0.06709255587529996, - 0.09771046511942674, - 0.06802521805006852, - 0.06446625298907739, - 0.0970380731475687, - 0.0824343750734541, - 0.06247244018169688, - 0.07287258339772615, - 0.06847117728040247, - 0.07822437677580234, - 0.06408608332481987, - 0.07250726999862894, - 0.06285541189884623, - 0.08214914426037406, - 0.07743381313786239, - 0.07508531141628558, - 0.10175933313372024, - 0.07529735921112933, - 0.08435881117047332, - 0.10705364216869619, - 0.07123168872820836, - 0.06041342145277066, - 0.09744963636151387, - 0.07154774267341812, - 0.06897810102147829, - 0.08349870057386971, - 0.11514993769846267, - 0.06823992170045914, - 0.0941386609992662, - 0.09099906349822119, - 0.08008249515286094, - 0.07833835483137354, - 0.08121341310904882, - 0.07318377465123654, - 0.0804061200777833, - 0.07725155673152961, - 0.09019005848915466, - 0.05757934112232626, - 0.07581516533545914, - 0.06462529769792942, - 0.08225835736459597, - 0.08552758854553462, - 0.08528928291404554, - 0.0749875626256184, - 0.07711133468002189, - 0.09265059816063766, - 0.09038920466018041, - 0.07232325621493417, - 0.06606502854928918, - 0.10409685739822995, - 0.06076049724633256, - 0.10175827972911103, - 0.07728940089376621, - 0.0677777690309718, - 0.07428433040910543, - 0.09107948740728859, - 0.07976786959212764, - 0.06829748122960248, - 0.06397559263774573, - 0.09536672856050223, - 0.06404261504723226, - 0.07417297590388865, - 0.06976948576176867, - 0.08576740734964623, - 0.06774006632870323, - 0.09037142797740755, - 0.09034408166692134, - 0.09219130829826591, - 0.07300942419411557, - 0.06590329430790444, - 0.07484099219601494, - 0.06946738702841317, - 0.09854796188753227, - 0.06394364799023064, - 0.07586113745121031, - 0.0666017883199566, - 0.0641007560460629, - 0.0960493975161267, - 0.07331938381158772, - 0.12431042415065367, - 0.07900251207025513, - 0.0755171925579996, - 0.0806000646861647, - 0.07295060946240266, - 0.09370710021125811, - 0.05701610157932558, - 0.076991813782698, - 0.10007036781941839, - 0.07226362571790067, - 0.0841524128960155, - 0.07457030391426304, - 0.0820420285752204, - 0.06416307178392425, - 0.06119423134954817, - 0.07407229797956685, - 0.08039720376047295, - 0.07663726968777204, - 0.08936313452825213, - 0.08697681992616112, - 0.08762793886158218, - 0.08110480934576161, - 0.0755758331538407, - 0.0868108894936419, - 0.08150502420484416, - 0.08596433547091101, - 0.08070240132030994, - 0.08286104645718878, - 0.08808773018996151, - 0.08611081142080279, - 0.07994578464385996, - 0.09421514459537086, - 0.08542597813472819, - 0.07607881259268208, - 0.07335361753058418, - 0.06509500674258614, - 0.06086362999418443, - 0.06846297949621787, - 0.060529594507199386, - 0.0680520001171389, - 0.07803442039314532, - 0.07275218624401608, - 0.07932017243514781, - 0.06712839461150914, - 0.07087547434260853, - 0.07616819063233606, - 0.07491147945478666, - 0.07211915935588291, - 0.06924608800475175, - 0.10540100527866673, - 0.06907716142109963, - 0.08340189940214326, - 0.0793521930220697, - 0.099737222561896, - 0.09141437746629463, - 0.07928943724204289, - 0.07190999050458963, - 0.06884086825458074, - 0.08701143040207847, - 0.09523883760517, - 0.08424408801885762, - 0.07376295330282365, - 0.09469043735616461, - 0.08407995858610624, - 0.07442651230423208, - 0.06620486997034174, - 0.08073671168075816, - 0.09020369756309227, - 0.07929529012713944, - 0.09032073211941305, - 0.07940588471858807, - 0.11184725756077166, - 0.07009825241159928, - 0.07645400542175766, - 0.06317509265928924, - 0.09002619045427775, - 0.09368683155812338, - 0.06806679231382434, - 0.06045590019563901, - 0.057595317665570536, - 0.07317936948709744, - 0.07761672663859352, - 0.06806615455390666, - 0.0760955841829821, - 0.09995216782040248, - 0.09021844524315083, - 0.05751548857776365, - 0.08344795864807153, - 0.06258947078214241, - 0.08966682072019126, - 0.07467352017346453, - 0.09470073768119727, - 0.08462018290010405, - 0.09072214928298683, - 0.0693342092225064, - 0.0793859871817059, - 0.09144747035231113, - 0.07446909629383755, - 0.06354756037698338, - 0.06749868914041764, - 0.07123548191193103, - 0.07744973208130136, - 0.07529737903493426, - 0.07988368928789427, - 0.07200365411354374, - 0.09147934314038313, - 0.08337136737673777, - 0.06503840433222007, - 0.056047950772181415, - 0.07312067204006331, - 0.07687963315863829, - 0.10201908429562868, - 0.06420448341945405, - 0.06041307114548964, - 0.07138881746766006, - 0.07873247674597346, - 0.08826783691893517, - 0.06757820435844099, - 0.09036891219015304, - 0.06728725071825366, - 0.06824930550744451, - 0.09232606316255258, - 0.07228127161460189, - 0.08816651929690256, - 0.06469567799430398, - 0.08859432620892298, - 0.07553700091155875, - 0.06639928062508631, - 0.07470653374909968, - 0.07691980714994504, - 0.07592141341708082, - 0.0824254458587832, - 0.0749123210919719, - 0.13739929097017226, - 0.07335161315072021, - 0.07795613927092733, - 0.05764333521887106, - 0.08203275994973712, - 0.06558669289653705, - 0.11412356834884146, - 0.07286540768725061, - 0.08023626935240243, - 0.07868595029788815, - 0.09579788904140164, - 0.08330755045282477, - 0.08676840390913368, - 0.09882566306036471, - 0.13353198837925723, - 0.06894345982748899, - 0.08160115220258536, - 0.09832742162124945, - 0.07112928661178483, - 0.06540261533584117, - 0.07857116787344634, - 0.09260779858699565, - 0.07049998902905015, - 0.06946304197813447, - 0.07113927207538467, - 0.08056960679654962, - 0.08923388687363648, - 0.08185326044090155, - 0.0634393552622193, - 0.0972094069124623, - 0.061817205005510655, - 0.07805711651743918, - 0.09046886628805051, - 0.07527190424267381, - 0.08394527633511843, - 0.09114966543823423, - 0.09816441377508472, - 0.05471151634534766, - 0.059586458179581414, - 0.07605567592714756, - 0.11582501778718109, - 0.09636328832329008, - 0.08622346031073173, - 0.08023775411307815, - 0.08340565398980894, - 0.10191168528652675, - 0.05800757040461889, - 0.093772411924765, - 0.07374192205170788, - 0.08001675542580136, - 0.10105903509951661, - 0.07464728695344068, - 0.08964073298628894, - 0.09822136146420779, - 0.08325368419906352, - 0.09357756592670312, - 0.07823440661400874, - 0.07015560220801817, - 0.06944827652406367, - 0.06708339451814302, - 0.06068959247522433, - 0.07991692233861311, - 0.0897220935802698, - 0.0750019759591321, - 0.07706356798606942, - 0.10422900504754634, - 0.07652449074704203, - 0.08337162189386517, - 0.090922903674983, - 0.057258149639463844, - 0.07430114456626064, - 0.07668691705401165, - 0.06681964531440492, - 0.0716575644528803, - 0.08170934759948185, - 0.0798694252873324, - 0.09217179097600739, - 0.10850040971571659, - 0.07107469473348249, - 0.07928860221067535, - 0.0682365950858447, - 0.07199023001905488, - 0.08633138480709256, - 0.07154769600676644, - 0.09015139126141734, - 0.06582352497965849, - 0.07259342191160241, - 0.07845604201938286, - 0.07088004914899745, - 0.09116172767225557, - 0.06556952422531534, - 0.06439091489794736, - 0.08745867924049215, - 0.08041563063023097, - 0.08190272446153109, - 0.0950075688396539, - 0.08279255629203748, - 0.07935017313233884, - 0.0720489475724755, - 0.07584423240305829, - 0.06601684540888111, - 0.0653124635364584, - 0.0646254360208622, - 0.08900072436506594, - 0.06542262762910349, - 0.0690311031421723, - 0.07601565007600351, - 0.08917287962250661, - 0.07850511183878212, - 0.060638653421660964, - 0.06177897986143319, - 0.06997558292610699, - 0.08767897832534068, - 0.07978671914896523, - 0.06658964981116829, - 0.07792583702078751, - 0.06976882306885962, - 0.08022265969549731, - 0.0854251867643559, - 0.06235643723161411, - 0.08011270234108563, - 0.07971815809339985, - 0.0860380037745451, - 0.07235912642381753, - 0.07722195929676648, - 0.08606847742948309, - 0.07116259072806401, - 0.06699056725770566, - 0.06091853550175427, - 0.08787084825542837, - 0.06657474486762134, - 0.08952029364114598, - 0.10252099764892877, - 0.09099032012502596, - 0.09568737242826007, - 0.09514801747027361, - 0.07802283286805334, - 0.06682042138788591, - 0.11012944075284094, - 0.1006399134681191, - 0.0775364680133867, - 0.06235492322162109, - 0.08535900609400708, - 0.07047171173482705, - 0.08216240375261538, - 0.07784277959251816, - 0.06610719207510862, - 0.06335267481184662, - 0.06873783790867607, - 0.07213415257450057, - 0.07497014776790939, - 0.08077081266308118, - 0.07666054843170059, - 0.09510682379909112, - 0.10239039974378877, - 0.06957459650289761, - 0.06511427809038205, - 0.06519137696539919, - 0.06740809566092658, - 0.08388602902614072, - 0.07832869575099978, - 0.07245700353119394, - 0.09968766301153127, - 0.06890361305271228, - 0.0614822773677456, - 0.07325163367448928, - 0.08992266872364327, - 0.07828364529096062, - 0.07012503461995863, - 0.10396374727245485, - 0.08104887288136393, - 0.0672216748214939, - 0.07046436540219406, - 0.08891194640700927, - 0.059644531846394004, - 0.06154076707204071, - 0.06486433512502555, - 0.06684146377820725, - 0.07221107175341542, - 0.08401192402767102, - 0.08242100196160378, - 0.08141994470271222, - 0.07624883596407807, - 0.09144656801313115, - 0.08229542762987933, - 0.0877206492825755, - 0.06645750479508325, - 0.08027274269053548, - 0.06775454123411168, - 0.10700434300811631, - 0.08576484181487946, - 0.09422369655214942, - 0.08833160748069827, - 0.06189404616137611, - 0.07340592133920505, - 0.07313171769204702, - 0.07321867487480797, - 0.07049361054873031, - 0.08555375252374457, - 0.0756153166983442, - 0.09284870098566643, - 0.08003745618436914, - 0.06038421547571425, - 0.07679959434929966, - 0.07204182146992669, - 0.0721182906621571, - 0.059015280980112134, - 0.0699455236713638, - 0.09814262646227441, - 0.06973159036970471, - 0.07240447121224626, - 0.0968847669820142, - 0.0846855255135069, - 0.07820225544276675, - 0.06671170647566865, - 0.05971428787018744, - 0.07258868251117734, - 0.0738116383263404, - 0.06791536615470663, - 0.08812738502747505, - 0.11769473641271323, - 0.0822443770218421, - 0.07342360004407057, - 0.0752118146980894, - 0.0672656374358484, - 0.07476185649222628, - 0.07302909121415085, - 0.07148579782196793, - 0.09154531286649037, - 0.058761431095485046, - 0.08057782320243424, - 0.08242146128726663, - 0.06302639235090952, - 0.08018288584105052, - 0.06575383067047764, - 0.07951009870233205, - 0.0762343509301261, - 0.07925332977553264, - 0.08152881469454093, - 0.06324849562343904, - 0.08341741214147605, - 0.07799241326237578, - 0.07990536614813931, - 0.08504302833327723, - 0.0879936283005523, - 0.0900832044537, - 0.09165455469750629, - 0.11506862723612427, - 0.06040644681624394, - 0.06003674369939228, - 0.08241074481813664, - 0.07983184489719715, - 0.0733774500929114, - 0.06861990271126167, - 0.08327823222680221, - 0.0712657051889986, - 0.09215682888841038, - 0.09196630330819479, - 0.07591503407016521, - 0.06494720321874732, - 0.07242750055143139, - 0.08115432230494979, - 0.0793926437920078, - 0.05669393824471574, - 0.06764413642701023, - 0.09133025389757483, - 0.06814136008392456, - 0.06743557131677815, - 0.08421452278582767, - 0.091694619890987, - 0.06334249432608914, - 0.08109403703273951, - 0.07103371424343764, - 0.07005086060746038, - 0.08492526000013681, - 0.08926874569077385, - 0.07100528402664867, - 0.07119147704982201, - 0.07048743351257888, - 0.07007819292055956, - 0.08302868113929292, - 0.08004424028276369, - 0.06584817419360507, - 0.0912958147274321, - 0.09571639027300441, - 0.09127117687012838, - 0.07274412271926711, - 0.07680277308062922, - 0.07844542406361427, - 0.0838510309132842, - 0.07705155440711821, - 0.0741743184011131, - 0.07741718948488018, - 0.09049549828588306, - 0.07339934909573839, - 0.07538186117758645, - 0.08810467854942793, - 0.07746166475946466, - 0.07950999619843399, - 0.08146933093540434, - 0.0651791695568117, - 0.08804075890490391, - 0.06929336094542667, - 0.08485723699506587, - 0.09155601323026467, - 0.07711637056776581, - 0.086148133832877, - 0.08687376817670905, - 0.0907152098970193, - 0.08235785410810022, - 0.13860205286433963, - 0.07870774143898077, - 0.08352236949089614, - 0.06338565209610558, - 0.08381193152419071, - 0.0907205337348786, - 0.06049195319007978, - 0.08657289233829717, - 0.09113236059425583, - 0.0707291382340411, - 0.06628179531343821, - 0.07557014440128765, - 0.0811404682499998, - 0.09165179988511854, - 0.073448455204876, - 0.07661477752432094, - 0.09286050776399318, - 0.10148736840854557, - 0.07700306336553826, - 0.06518501411196177, - 0.09219489400802466, - 0.06855893907651806, - 0.05725567308490033, - 0.07803926037364375, - 0.08595685423979313, - 0.06888877453622633, - 0.08848732731670608, - 0.0866795149632839, - 0.08563537946712169, - 0.07677259996006976, - 0.08269970562608207, - 0.07636368104473833, - 0.06923061298257643, - 0.07816768249796936, - 0.07457424556734087, - 0.0698353319745782, - 0.0600296107004333, - 0.08534362277472697, - 0.07160420758927155, - 0.06081900520055805, - 0.07785057742192368, - 0.09332077465866626, - 0.08608801128710658, - 0.10130841345809044, - 0.06448721282052916, - 0.07876671495881257, - 0.08492867377793864, - 0.08988056478996885, - 0.07959990543846783, - 0.07279145051427603, - 0.08178928725919132, - 0.09941576585805748, - 0.08157685378782908, - 0.08651505370449579, - 0.08615375431801008, - 0.06657894252121929, - 0.07144226219832582, - 0.06928191878598422, - 0.07298400707045961, - 0.09154162467118686, - 0.070310168568679, - 0.07145625324443616, - 0.07568887180496216, - 0.0668752685671783, - 0.07557741869029629, - 0.0782340770321983, - 0.07451464832746488, - 0.06873712510098476, - 0.09280257696810607, - 0.0803177205866514, - 0.08579740330406399, - 0.07528918915865228, - 0.07301855729546239, - 0.07631304232681954, - 0.07677537573440102, - 0.07184008911603981, - 0.08935212946744553, - 0.0702597271459652, - 0.07683535588451108, - 0.08770390181863845, - 0.09405734036846444, - 0.0716172154151071, - 0.11447151926993161, - 0.06016531988088587, - 0.07718348194762005, - 0.08456187985788793, - 0.09417445343607062, - 0.07564074221393456, - 0.07854751279198409, - 0.07115049323358612, - 0.06900602541001186, - 0.08177847320889761, - 0.07959025996315935, - 0.07721614709417093, - 0.06759662187503841, - 0.08947338989932821, - 0.09161579907046977, - 0.083191405271032, - 0.07431938392897448, - 0.08035578124701409, - 0.08844354491343076, - 0.0870786938248178, - 0.0697477728534452, - 0.05680842202358452, - 0.09247330634737648, - 0.11047151088201632, - 0.07646646706932318, - 0.08538894763480805, - 0.10409294320468031, - 0.08852096851773257, - 0.07772732407347953, - 0.06243941818189425, - 0.1081864008660413, - 0.06966181809047628, - 0.07568373237045924, - 0.08395302577031857, - 0.06526138395640552, - 0.07366767939120698, - 0.08393532422409192, - 0.07893528627609073, - 0.06145950597757413, - 0.07265963423866789, - 0.06906766964873919, - 0.06251680125878335, - 0.09090848459786154, - 0.08798330440935971, - 0.06152358148519126, - 0.06815293404232997, - 0.06442742088669634, - 0.08775741458298997, - 0.09361844168478309, - 0.09062149682027175, - 0.08315675199481028, - 0.068903069403887, - 0.09332959531255192, - 0.06082769291040087, - 0.08467963006539093, - 0.07461535330590587, - 0.06149278529478276, - 0.0708363446921341, - 0.07022326314144528, - 0.07695092824346268, - 0.09363497934324061, - 0.09488660325663349, - 0.07118860930922852, - 0.06699799236065625, - 0.06388420009441081, - 0.07633403153282, - 0.0808547924539227, - 0.08908724389463453, - 0.08804535037036844, - 0.09582697559096441, - 0.06968324611925937, - 0.06410307355054409, - 0.08141966648490957, - 0.08180441302359974, - 0.06367945661492348, - 0.0662062864342167, - 0.07490061807192265, - 0.0881988287931564, - 0.0812985764109013, - 0.08063357433277438, - 0.07096781309805476, - 0.09031965552442595, - 0.07733593374249574, - 0.06933628747980489, - 0.07837123653446787, - 0.07389258264289625, - 0.07524883157684957, - 0.08454645201212975, - 0.08035423316175652, - 0.07084686098557111, - 0.0957054069685151, - 0.08236391951802967, - 0.06642962397004398, - 0.07529166416644542, - 0.07232471158637079, - 0.10592174990640647, - 0.09139676100941498, - 0.07586737621490572, - 0.11333421630723285, - 0.08512436553173006, - 0.07995098980756644, - 0.06904727187604591, - 0.08015963494128912, - 0.07003783538160968, - 0.0792333439036301, - 0.06192335553981695, - 0.09143377911059838, - 0.09010008528420053, - 0.07852069438810977, - 0.09756878750485677, - 0.09577376035525159, - 0.0778302129266519, - 0.10169436059933053, - 0.07962469604912681, - 0.06932593501080112, - 0.08411480092529604, - 0.06196287636145963, - 0.08443082648337105, - 0.05804289503536243, - 0.0672591677586833, - 0.06467257591218212, - 0.06586268419012697, - 0.07208314592921244, - 0.07029663921467565, - 0.09449751550883462, - 0.08144381890270239, - 0.07976646567477927, - 0.10422304621763531, - 0.08238143228061136, - 0.09491795933597859, - 0.07284883106255387, - 0.07456933941235781, - 0.07132127963836049, - 0.09882637203617782, - 0.07407175340004114, - 0.09295191166646781, - 0.09789064814865707, - 0.09548168038280683, - 0.08040210449196783, - 0.0812814324577277, - 0.10182517129511451, - 0.06714133411550531, - 0.08686677130042322, - 0.06911691809625126, - 0.10101647984120302, - 0.07644197837998415, - 0.0850398552443314, - 0.08399328364858323, - 0.0774289956630961, - 0.09353873186691951, - 0.10684523816684732, - 0.07372049517328742, - 0.082034558179078, - 0.0715173880675605, - 0.07228950972937481, - 0.0761289352927692, - 0.08139132547270135, - 0.07088527664614433, - 0.08119024335185054, - 0.06927277653724158, - 0.08094691250086473, - 0.09682418426321357, - 0.06786099347305176, - 0.08820006775181775, - 0.07504645125145581, - 0.07897103456682956, - 0.09107462483142019, - 0.05843271401511756, - 0.0938600079347075, - 0.10016020903054919, - 0.07244730313409962, - 0.07149451283152054, - 0.06820601990572428, - 0.06209355468795553, - 0.07678472730958351, - 0.07295358533395185, - 0.07184292974082439, - 0.07323466984270409, - 0.08372189119966585, - 0.09364557369943848, - 0.07507675037205797, - 0.09584588823570789, - 0.0759267448019192, - 0.07058699793837614, - 0.06182895419832564, - 0.0780106122867154, - 0.08016235138178172, - 0.06803668424420074, - 0.0706739028330529, - 0.06834404739214643, - 0.06555122808686245, - 0.08012700596867522, - 0.0776382732136622, - 0.08130309048542728, - 0.09649975207877264, - 0.10053409353547912, - 0.10007709647178228, - 0.12227124869985935, - 0.08083236717324889, - 0.06896587879974216, - 0.07268028418157393, - 0.0759968068045692, - 0.07129677720061083, - 0.06775812143755544, - 0.0676256839568041, - 0.07103705445953463, - 0.07161696846352222, - 0.07307488625610474, - 0.08188689518281159, - 0.07874839101075208, - 0.07060933888234476, - 0.07341218150449744, - 0.0651832798048838, - 0.08883964325394424, - 0.07454700729714904, - 0.07566107100201394, - 0.08694077683681774, - 0.0780635991799912, - 0.10432354813282332, - 0.09776539867734743, - 0.0834186490434183, - 0.1013311127883491, - 0.08306247141057704, - 0.08111614604959458, - 0.06986099434137807, - 0.07467479588404331, - 0.0792655144410077, - 0.05684796576511371, - 0.07302637829261928, - 0.07217706407134533, - 0.09099880097272418, - 0.07806144699350409, - 0.0750803264287806, - 0.0715187127816806, - 0.08133296755605357, - 0.07514669442664937, - 0.07011545934545221, - 0.05795918704753778, - 0.06439817930512012, - 0.07610055990190583, - 0.071879228128679, - 0.07559620556353534, - 0.07325734078966381, - 0.07409386878106629, - 0.07322290877032489, - 0.0873659919008844, - 0.06823490220609325, - 0.06518379122096708, - 0.0776982122566632, - 0.0833536609162489, - 0.062398759915917805, - 0.07393247035870001, - 0.07855984233366349, - 0.08874365209511412, - 0.09354857904602637, - 0.0687321439428287, - 0.07854527507176785, - 0.07393814505124435, - 0.08710137244964669, - 0.11306005811701739, - 0.07290092359897975, - 0.10887871375847648, - 0.08991311692850658, - 0.0729935279725521, - 0.07186569213143905, - 0.08052449339484036, - 0.06118161606907176, - 0.06320962927737069, - 0.07792807088745256, - 0.08096080021686235, - 0.06777422021913561, - 0.08463601439130364, - 0.07093374347489968, - 0.06235286371897801, - 0.07441041304053686, - 0.08571286374965001, - 0.07466440440202256, - 0.0637519530134583, - 0.09078915702199471, - 0.07098982653738757, - 0.08100651916543478, - 0.062034398145516874, - 0.10590190492855268, - 0.06269816715549595, - 0.05330444594839098, - 0.07136923980146405, - 0.09189819054068116, - 0.08315128866597052, - 0.061933148579240274, - 0.08004443702516527, - 0.07011275507358314, - 0.07546539780390908, - 0.09431967367137202, - 0.08063179878739156, - 0.06401038084276434, - 0.08863759123601374, - 0.083388301740073, - 0.09236004633346517, - 0.08651252387860181, - 0.13092044113365237, - 0.06604719562403961, - 0.07399515581920085, - 0.07807871144810734, - 0.0929364061272348, - 0.08499700200718961, - 0.06478033163696112, - 0.11675203829220754, - 0.0772014807281149, - 0.06993723212629639, - 0.07137353075623268, - 0.09295354913889892, - 0.07807724269026796, - 0.07725061181988513, - 0.06714513943361572, - 0.06074723603136237, - 0.06512148648864026, - 0.07314818226505684, - 0.0800883248643797, - 0.08817517375745923, - 0.08332391011937908, - 0.08343032276326717, - 0.10417442517349443, - 0.07925472946566553, - 0.07750266508565741, - 0.0809195885691132, - 0.06341237322706013, - 0.06244926465777333, - 0.09685707751071186, - 0.07641407959129635, - 0.08123099268085084, - 0.07151834171898556, - 0.08797865174479136, - 0.08331910921758351, - 0.08250694321098073, - 0.08413087093300664, - 0.07361714282658247, - 0.07916348346681878, - 0.07431260046246274, - 0.08205813768306666, - 0.06928916019515186, - 0.07590979747531731, - 0.06865183997767534, - 0.09180211804715253, - 0.07891912049193496, - 0.06934369129569229, - 0.07428914470345536, - 0.08621423982657324, - 0.07978633521329875, - 0.07149996643819219, - 0.07890161408810607, - 0.06608041645704632, - 0.06977016443944907, - 0.09843661102135409, - 0.08808456614591526, - 0.09513558115040163, - 0.1040104371086094, - 0.06735967822846706, - 0.08570275824102801, - 0.07484878269647247, - 0.06770936354347565, - 0.07230147404507271, - 0.06878835428012256, - 0.08962703299094592, - 0.07062435158937451, - 0.07802860294043339, - 0.06738283280953354, - 0.07892747079360617, - 0.07780926183805516, - 0.07616558030532389, - 0.08736442383501823, - 0.0855686814712489, - 0.07465412827127804, - 0.0621486190029381, - 0.09488574171302185, - 0.050650783870425285, - 0.07025958769023648, - 0.11404806041611046, - 0.07014574664109198, - 0.08015688182408277, - 0.07808811510308099, - 0.07964091491260435, - 0.06730958161048307, - 0.07926632574661913, - 0.1069747175935668, - 0.0932448340428721, - 0.08044243294291528, - 0.07965513649074768, - 0.06366689163178926, - 0.06540768705047928, - 0.06847058871467343, - 0.07587933575821754, - 0.06394291298211661, - 0.07708138133061085, - 0.08653066223414463, - 0.07552062862651258, - 0.06824717583492797, - 0.07687313200325817, - 0.07837122660715647, - 0.06087721422183775, - 0.07142693502069972, - 0.08748608546074776, - 0.08491403993988446, - 0.09243800777192328, - 0.08560057717120824, - 0.07222072098690362, - 0.0800268504811746, - 0.08852042287810281, - 0.06346427987406304, - 0.08037581284892596, - 0.08082711400958088, - 0.08478763514769203, - 0.07400839388403599, - 0.06802639432498456, - 0.06422092955394706, - 0.07368630243747008, - 0.06923260978874783, - 0.08489735265860851, - 0.09011974579296987, - 0.08076241784398598, - 0.08918694415927286, - 0.06352818141491721, - 0.07209139479943556, - 0.06531551803607076, - 0.09469258935798011, - 0.06885895377086533, - 0.07982238615643195, - 0.07602855281339405, - 0.0730168015836986, - 0.10034260780298102, - 0.06880160762837267, - 0.06714269224643742, - 0.08540640356134707, - 0.08337338360412574, - 0.08478227177838159, - 0.08403665777674466, - 0.07609932187588385, - 0.07474112059003839, - 0.08753773118976747, - 0.07683315847459585, - 0.08772099467187813, - 0.08217363539645466, - 0.0957705612970753, - 0.07832273234699225, - 0.09012758021754995, - 0.08153865894041971, - 0.08622538477871435, - 0.0742756215749429, - 0.07463537890140573, - 0.06455754648213356, - 0.07054278557606317, - 0.07628466870616754, - 0.09663489474875092, - 0.06855171324103512, - 0.08283627405905822, - 0.08289641253611667, - 0.07297747214202478, - 0.09003976953190129, - 0.07982095632254206, - 0.0710067873837911, - 0.058478948544270076, - 0.06335476200960169, - 0.0941992429073305, - 0.07789482752881782, - 0.08199459105440367, - 0.058481948306704244, - 0.06816545507524373, - 0.0970924298624643, - 0.11275350754388887, - 0.06379333131453445, - 0.058425932820078345, - 0.07973586088373275, - 0.06933501994238012, - 0.06561675583426428, - 0.09247177704187204, - 0.07115557887522364, - 0.10769023047836829, - 0.11298868444240731, - 0.09289036698965521, - 0.07563017570664049, - 0.1057376968671103, - 0.07671622969002603, - 0.076063905463513, - 0.06791786742426549, - 0.06665197940549461, - 0.0689717271290082, - 0.07627478336029175, - 0.091904763421463, - 0.06731573260828788, - 0.08581256779817659, - 0.06486499003392934, - 0.06264568326130456, - 0.07480182126690324, - 0.07671950616986183, - 0.06924400035932046, - 0.0782841760798972, - 0.07439220213621421, - 0.07059801105638469, - 0.06553011018907429, - 0.06861111972659849, - 0.06658634538223206, - 0.06291166520772357, - 0.07184950332819762, - 0.08152419763087211, - 0.06836922027112748, - 0.09354586619061052, - 0.08824371611534246, - 0.09820278339168204, - 0.11625971510255247, - 0.09373513996452443, - 0.08058313770875755, - 0.07443665502918151, - 0.0907212261261738, - 0.09112091513620117, - 0.06203490009723728, - 0.09505421992547607, - 0.08392674109728977, - 0.08332027009424418, - 0.10176846924361631, - 0.0794855029541614, - 0.08393510398639208, - 0.06295570193329592, - 0.07027635399493537, - 0.10972215480914829, - 0.08484660787427112, - 0.06480076318042646, - 0.07934088095552894, - 0.09902935628700432, - 0.09954458818604434, - 0.08105358053613988, - 0.07072137189291026, - 0.0836445880863414, - 0.07019988127899099, - 0.07848318430241011, - 0.07898429825416949, - 0.09902729037216994, - 0.08303979769660337, - 0.07682768035746035, - 0.12891030083443786, - 0.07628379927883235, - 0.05849688780621228, - 0.07398595397044631, - 0.07356317590575881, - 0.0755433480638665, - 0.08760385617236509, - 0.0864616785799866, - 0.08677034591021993, - 0.0796913034594171, - 0.09078174475857015, - 0.07466216093090829, - 0.06828432047374436, - 0.08730061994612136, - 0.0882083419717735, - 0.07504054797810297, - 0.07211954538433864, - 0.07284158531489611, - 0.08062441620691242, - 0.07677903989229237, - 0.06560069700726107, - 0.07119432288694637, - 0.06842291461840946, - 0.0856695474965756, - 0.061734569563318936, - 0.10414823334297915, - 0.07849777876578132, - 0.07742549579364014, - 0.05686889587607661, - 0.07312527463495992, - 0.10113904549742497, - 0.08101334180999956, - 0.06963328626933352, - 0.05751455280803673, - 0.09001328427710924, - 0.08350485590395748, - 0.05711880736131131, - 0.12332674150448458, - 0.08876103545986946, - 0.07090023489166228, - 0.07706818549849541, - 0.0670246974215044, - 0.07861297366975158, - 0.08138912539606254, - 0.06804879949499794, - 0.0718480395659716, - 0.07601181668776776, - 0.07475301580984527, - 0.06967451929836538, - 0.0645295424692266, - 0.09279804051653358, - 0.07337449508264232, - 0.0768119256191878, - 0.07181780454415258, - 0.0681041749895772, - 0.06554299854176819, - 0.08676976478839506, - 0.08138530050782274, - 0.07205093979460236, - 0.0837010603644912, - 0.080866778658829, - 0.089942605963062, - 0.06670670851266323, - 0.08258109546800732, - 0.06690840443124052, - 0.08074546383440169, - 0.06918611186008918, - 0.07300729191440579, - 0.0974894748252694, - 0.07391602079220806, - 0.07633345906214356, - 0.05941745924817853, - 0.06926338852714863, - 0.10432577099935102, - 0.0825435002566213, - 0.12319417412932714, - 0.06288000102846199, - 0.0897114652062751, - 0.08842050169655138, - 0.08212064250368083, - 0.0668160914207846, - 0.0813933652268236, - 0.06000587895315703, - 0.07689240916363721, - 0.07506786106142413, - 0.08997782257290306, - 0.053408264092343574, - 0.09213607204653604, - 0.13719981939629752, - 0.07986944735602614, - 0.08787214214479808, - 0.08856790862169209, - 0.06966365120799096, - 0.08740097658185292, - 0.07033169745287528, - 0.07079840914546491, - 0.08015190108582858, - 0.08179442946676754, - 0.0709394335773121, - 0.07010126322211509, - 0.0682425440142384, - 0.11150544531810408, - 0.0638666376135047, - 0.09045330948897713, - 0.07366033034789625, - 0.08352194415556087, - 0.07713759952417452, - 0.09162383223084092, - 0.07599329801004824, - 0.08079831011440602, - 0.08404163924188408, - 0.08138880403684332, - 0.08505818455578545, - 0.07045271318703938, - 0.08633325894986064, - 0.08649183404069313, - 0.08075496152724433, - 0.06308875122658747, - 0.10347160138730448, - 0.07786694152685639, - 0.07291546295705256, - 0.06786949018631515, - 0.08053876150846676, - 0.08598140223149313, - 0.10664049781110563, - 0.08524829921464563, - 0.08833769366741996, - 0.08833053118347846, - 0.08275125162552978, - 0.07102438801714316, - 0.08296395077580875, - 0.07731794458572515, - 0.09459197407709652, - 0.09944221329068806, - 0.08209889173731165, - 0.08424758533590422, - 0.07793797458279411, - 0.08240139077676445, - 0.09535289566452633, - 0.1067008071610927, - 0.07404248584273097, - 0.07840449297273198, - 0.07394118754180488, - 0.05800651764744742, - 0.06706969765588318, - 0.06901247903261912, - 0.06943801899147674, - 0.08276121928366549, - 0.0688345578290626, - 0.06547495209837656, - 0.060838625898269716, - 0.08883463130566008, - 0.07414853493594575, - 0.06829796701985962, - 0.09231533268649246, - 0.07531535733724797, - 0.08083928677512937, - 0.06554552122948644, - 0.08784075328473118, - 0.08140497913333646, - 0.06721519205890272, - 0.09591100104042524, - 0.06885104874245979, - 0.10213169259161449, - 0.07718949852816573, - 0.06974089020454095, - 0.07625838059788194, - 0.08185224792309985, - 0.07823692888197839, - 0.08105547550055406, - 0.07907320453943006, - 0.0807902812817801, - 0.0629287993784536, - 0.07894261458340482, - 0.07681673815496558, - 0.06900367162630612, - 0.07621720882643014, - 0.08506247880813052, - 0.0860377936372069, - 0.07163899221609184, - 0.09872994998461736, - 0.0798283478177733, - 0.06374244244417487, - 0.09180196246237755, - 0.07852978511331939, - 0.0768756960633082, - 0.08704617595892487, - 0.07441781429668565, - 0.07226189674138468, - 0.07668467020574689, - 0.08948805823073512, - 0.0770058822229279, - 0.07418767888735428, - 0.09862045064625886, - 0.07967316086047906, - 0.061159819333334545, - 0.07024420875324827, - 0.07788650810035103, - 0.07568056831634255, - 0.0557896539865828, - 0.07714333434501665, - 0.08755952987807449, - 0.07358223411085155, - 0.07505223801422219, - 0.07058822019111163, - 0.08108329777435576, - 0.08080440323363314, - 0.07798415814129527, - 0.08396948405968337, - 0.09702032925058092, - 0.056848742866061966, - 0.07389861703424108, - 0.07389997041251328, - 0.07906037597332806, - 0.07479199679111147, - 0.09379642141919006, - 0.06800877492823912, - 0.07822085078799211, - 0.08390276900268294, - 0.07347529617134503, - 0.07751632279208018, - 0.07850518486624296, - 0.07197934392722112, - 0.08690476273744789, - 0.0895477364608159, - 0.08317454164159485, - 0.07255354949313544, - 0.06792520290541926, - 0.06836592549051926, - 0.06137803352874931, - 0.06651779639659869, - 0.07877138211474843, - 0.09787563439887273, - 0.06281026142798561, - 0.07155720136081489, - 0.07024084465306447, - 0.06437578466643205, - 0.07142673777888423, - 0.09922226733097605, - 0.060629646991968544, - 0.08449558824530999, - 0.08901785571729541, - 0.057123212996975294, - 0.07205666979521594, - 0.09002873658245322, - 0.09160910584539755, - 0.08078930982357686, - 0.06863671703244494, - 0.0775978472225731, - 0.0845345089123179, - 0.07631141395325147, - 0.09145840131199064, - 0.09966296896971019, - 0.0768004777952247, - 0.07294956379034247, - 0.098596564811627, - 0.07271891456258743, - 0.054310910464134596, - 0.08125245148236672, - 0.07480046771034733, - 0.07041533026050555, - 0.07854777737981536, - 0.08713329240559936, - 0.06796788516256126, - 0.06749784535197635, - 0.06179773785418469, - 0.05039473714656452, - 0.07315003718579516, - 0.07784062162451284, - 0.06659388141168124, - 0.06218171656417914, - 0.07011699996322014, - 0.0960038419586353, - 0.10119864883259777, - 0.0944015292522986, - 0.0598366244431848, - 0.08326284197781424, - 0.07653645813964727, - 0.06302712281969874, - 0.06574533743974985, - 0.11503663880854642, - 0.08199994810454829, - 0.07754879298054543, - 0.06838801249259006, - 0.07104089179617243, - 0.07254935136318659, - 0.06097010587117755, - 0.09175538514790285, - 0.08866906187153543, - 0.07631073488298758, - 0.08066019179852203, - 0.06939640777650175, - 0.08378546522657579, - 0.06836979069254512, - 0.07540475839273368, - 0.10759625226551475, - 0.062860252678273, - 0.10668585069267042, - 0.06600073667836279, - 0.07553705672608389, - 0.08125522119727573, - 0.08484319370789714, - 0.07053140502266017, - 0.08093877790648141, - 0.07583753306336488, - 0.07964859796730274, - 0.07922310479675561, - 0.08926623670481916, - 0.09397528963938181, - 0.07406515235078176, - 0.07759085668082691, - 0.07225312979582126, - 0.07950009181830003, - 0.06125415726048104, - 0.056677456433144466, - 0.08279598056081065, - 0.062268596512449634, - 0.09155635150766522, - 0.0979710162510689, - 0.06524838702080535, - 0.07285840692212436, - 0.0976068815011835, - 0.059872734379785984, - 0.07315475503186139, - 0.08390410825376639, - 0.06928386898839892, - 0.08240184034124931, - 0.0855814158844494, - 0.07602429150475006, - 0.08629938498851746, - 0.08895809097761898, - 0.11696245268623387, - 0.07883397641341708, - 0.0872552850090245, - 0.07363337340615092, - 0.056282866972518074, - 0.08846152485188405, - 0.09473823536795839, - 0.09055290211531258, - 0.08240773901094926, - 0.07287565212339232, - 0.09087822476858189, - 0.07326390410877279, - 0.07347609759365617, - 0.09050298010119887, - 0.08064011760328177, - 0.07263273914599735, - 0.07413411800766392, - 0.07025239349261368, - 0.09848771540933426, - 0.07459046219566633, - 0.07434591290083699, - 0.06944587934715905, - 0.054822275386808714, - 0.09680126580089075, - 0.11209779025417943, - 0.07958462056951046, - 0.06497494709060357, - 0.08315912842888437, - 0.07222118020808287, - 0.07584823802522288, - 0.061484941164139176, - 0.07378615669197028, - 0.07776857913684568, - 0.05842978223894005, - 0.1055299593575142, - 0.088682717997029, - 0.06965412873661471, - 0.0547035285162597, - 0.0690729335197686, - 0.06112283129890463, - 0.07499834191983787, - 0.0622820993560835, - 0.06818851681075298, - 0.08890662037544736, - 0.06378335940314425, - 0.06621087722544951, - 0.06747830116254476, - 0.05996897306488955, - 0.07485594836211404, - 0.07680600917187581, - 0.062786573654424, - 0.06851959368324295, - 0.07320228122913465, - 0.09571865196900203, - 0.08396525035088856, - 0.07324129546351958, - 0.05435294622794244, - 0.0672167961100442, - 0.07245267348264933, - 0.09144699473810651, - 0.07754203306138512, - 0.06872268863377057, - 0.08408595187171669, - 0.09191209493520651, - 0.08883688788416844, - 0.08117324247279008, - 0.12068131975706127, - 0.08362336250160142, - 0.08705028301251176, - 0.084392529197679, - 0.07671928995539229, - 0.060341008015859565, - 0.06087743044314947, - 0.07377182755759609, - 0.07482672659933116, - 0.06719655739110793, - 0.07766920338516563, - 0.07597364708798403, - 0.07518585861741345, - 0.08390200204423634, - 0.07477777447448478, - 0.0721701682424149, - 0.08562833116800478, - 0.06767150742960618, - 0.08198112312728693, - 0.07289628349667912, - 0.08374852387280735, - 0.07356945729160938, - 0.07756985229937047, - 0.06179677702948375, - 0.07179580014829016, - 0.07741945292050521, - 0.06921019682062145, - 0.06846951251102551, - 0.06579479553925377, - 0.08376895720465057, - 0.07177719117035553, - 0.08103165621877581, - 0.06960892653100105, - 0.07552058125638002, - 0.0650848736323957, - 0.08249333012085226, - 0.0909385317887762, - 0.09976276762932769, - 0.06409749788344954, - 0.09194962676343456, - 0.07923280713529578, - 0.08842958688374654, - 0.08029939023943759, - 0.08148907534477998, - 0.05542156011128423, - 0.06395532239035583, - 0.07302882188224519, - 0.06118553236584823, - 0.07372787400394659, - 0.07299833559581047, - 0.07462414391663652, - 0.08386489014035527, - 0.07448364463203279, - 0.07887902744483791, - 0.0807230922819646, - 0.09407053547479313, - 0.08163768539571829, - 0.08973661735964938, - 0.07831336515437443, - 0.07630633404739715, - 0.07783712720542295, - 0.06823928240348624, - 0.08279156891570623, - 0.08492163522163479, - 0.07868474790554222, - 0.06546662283275309, - 0.06145830336155645, - 0.09393691904710834, - 0.09765024034409381, - 0.06848210607433566, - 0.07843864021958338, - 0.08274861128659278, - 0.11288188829685772, - 0.08343839462816474, - 0.08855202466605519, - 0.10270590765635802, - 0.07546760030894462, - 0.0639961222053518, - 0.09255315493114558, - 0.06296334931903527, - 0.0867726307257357, - 0.08280290857708426, - 0.07564964965287063, - 0.07663403558854605, - 0.07732596478727445, - 0.08032065833472336, - 0.08267024650033061, - 0.06755641410072945, - 0.11120299829776466, - 0.07275547240754, - 0.0665253781284461, - 0.07609747163619081, - 0.0884659153337715, - 0.07274461199894951, - 0.08360038318717176, - 0.058885662597220896, - 0.08834145449269416, - 0.07524725988131095, - 0.08274562385905888, - 0.08329520347412535, - 0.08824744304284415, - 0.09164190408437485, - 0.10166826847809879, - 0.07910967604305126, - 0.08250609351385851, - 0.06057295333600204, - 0.06802782727815342, - 0.10731655890763284, - 0.10458015069993457, - 0.06609999127721183, - 0.07287050225174047, - 0.06842452305694537, - 0.11782673816841822, - 0.0762685326515098, - 0.08228969511018062, - 0.08985950124806322, - 0.10857619172466777, - 0.07722596219751962, - 0.1020074493267918, - 0.09390311292794593, - 0.08823710884087699, - 0.06872373420860116, - 0.1006645344554791, - 0.08266044514347716, - 0.07999735829729238, - 0.09147251343226488, - 0.086083730213635, - 0.09005952652871631, - 0.09413072343020597, - 0.09295425441792092, - 0.10555301688350575, - 0.08588231898267709, - 0.07207158978891012, - 0.08617988699705892, - 0.07349262552546335, - 0.07142105834047238, - 0.07328320256156996, - 0.10092772074482993, - 0.07299163474399308, - 0.09674454439420282, - 0.06546135078325363, - 0.06324526026203692, - 0.06498623434917392, - 0.0753428413426254, - 0.0746365025323733, - 0.0785459492240394, - 0.05949721572234638, - 0.08462773173635807, - 0.07079717930066193, - 0.07832942039070102, - 0.07413837735691071, - 0.08997374413473876, - 0.06744171396404197, - 0.07412413428050812, - 0.06653908716108245, - 0.07502123261439823, - 0.07486838605586174, - 0.08204624157244719, - 0.08751735458153644, - 0.11104071734558717, - 0.056090619875707355, - 0.10972273245735009, - 0.06717928273399759, - 0.06636091992676076, - 0.06709774036753863, - 0.08569091704580516, - 0.0882095403241042, - 0.10042925525777621, - 0.06761929805884902, - 0.07253124769705166, - 0.0661222544956926, - 0.09208626033366517, - 0.08137557443384648, - 0.07778739730129766, - 0.07894911265457685, - 0.06795708471368403, - 0.07253297495257606, - 0.09061368094608525, - 0.08181329964738733, - 0.08230792402772942, - 0.07731405446450065, - 0.07344102900893693, - 0.06392734429964468, - 0.07444509305267001, - 0.07024258370279553, - 0.07684034951602543, - 0.0654428646563494, - 0.08334443678948901, - 0.0836099576251573, - 0.08519183480073791, - 0.08681659895995968, - 0.09540028212857592, - 0.07476196540328728, - 0.09770640279002936, - 0.08043283073146425, - 0.09128170802280522, - 0.10377006921515441, - 0.06326100550887091, - 0.0878288894914544, - 0.08022306484667849, - 0.0768696522384495, - 0.09822911311873815, - 0.07757262915317892, - 0.06620428483327125, - 0.08853517165210417, - 0.08274688570776925, - 0.07922712093581444, - 0.09408206349349957, - 0.0649312552645199, - 0.08824100280888515, - 0.07141333841600096, - 0.08237090011383416, - 0.07755945443355539, - 0.058995985885814596, - 0.08354861718529587, - 0.07800630551681552, - 0.08771343567189828, - 0.08522690405216858, - 0.08775844201233239, - 0.08990085643988127, - 0.11405336950291188, - 0.0602622671514027, - 0.062029250270040845, - 0.09971953716121412, - 0.08336955354936706, - 0.07514345486064297, - 0.07615055234992182, - 0.07866332107158713, - 0.0717846743434443, - 0.0660229906868129, - 0.0879963712624986, - 0.09192202181255162, - 0.10155180420775624, - 0.0769617804885199, - 0.0746368022440765, - 0.06366888623238177, - 0.07456060038289913, - 0.09309141538432865, - 0.10641770057648266, - 0.07867101745888046, - 0.07922629153219071, - 0.07571407955869987, - 0.0695188982305813, - 0.07867984539620777, - 0.07337972972457153, - 0.056293009409281704, - 0.0706822791166169, - 0.0866896005818202, - 0.06316599635857448, - 0.07357040913372533, - 0.06137949314876832, - 0.0702718996261116, - 0.08271434423261168, - 0.06239045453419191, - 0.07141425194398202, - 0.06766639278682506, - 0.07191006544575904, - 0.09056700407245868, - 0.08276795366591091, - 0.07383763104785757, - 0.06659490878898382, - 0.07150543579891365, - 0.06164984923216208, - 0.07284707625981666, - 0.0792606532307601, - 0.07753131982481049, - 0.05946370140802963, - 0.09210668917998083, - 0.06606338314104633, - 0.08238926591143253, - 0.10460868143662785, - 0.09127701879287528, - 0.10413555953266866, - 0.07891018720185926, - 0.06868038594271844, - 0.09212551027699165, - 0.077846266796664, - 0.08128819754540495, - 0.08126204201196476, - 0.07263579992989772, - 0.07898560890530974, - 0.06901070530936021, - 0.08029240225175893, - 0.08091184908116612, - 0.06279784175849204, - 0.11531681849349078, - 0.06750186222213095, - 0.08803479984597566, - 0.08377260551206799, - 0.07999609005204664, - 0.10802550886937357, - 0.0841622036962236, - 0.06606845770180154, - 0.09189692329829983, - 0.07229112342979545, - 0.08158600966930857, - 0.08523507116106314, - 0.061203653917616466, - 0.07612367326337668, - 0.07929680414159516, - 0.08639935042473872, - 0.0733947964968053, - 0.07206761729012243, - 0.10022402662081195, - 0.08699948713669597, - 0.08363376351276251, - 0.07079174556614688, - 0.08549588764571897, - 0.11196653553700464, - 0.08109654846178381, - 0.0541571462024317, - 0.08674677550753997, - 0.1199958489144898, - 0.06761011020008643, - 0.07188211923750291, - 0.08143398967658316, - 0.06684014289660027, - 0.08997883799346475, - 0.0741000541241753, - 0.06853939780570709, - 0.06873223423029419, - 0.07814248559711058, - 0.08309111257776887, - 0.09147299906110552, - 0.0718940959073402, - 0.07675275379552206, - 0.05829939928469484, - 0.09422517070174143, - 0.06837377297357206, - 0.061846928625968654, - 0.0766325843559864, - 0.05498024446575944, - 0.07467271219229352, - 0.07539946011087378, - 0.057613975867393724, - 0.11764736922501329, - 0.08128995619628687, - 0.08529576743800313, - 0.08874014223342874, - 0.08439410403301517, - 0.09793102573914708, - 0.06018256089643535, - 0.08055980527072783, - 0.07133317843140723, - 0.08745837955767838, - 0.08158188833516603, - 0.08212747242394981, - 0.08111298522582176, - 0.0771721726387681, - 0.07242748161348396, - 0.06977912548350583, - 0.08077287190420923, - 0.07509332560729862, - 0.0796811431480754, - 0.09139365065903876, - 0.07532771831694032, - 0.0767027579507627, - 0.08018625665420956, - 0.07862105412252315, - 0.0746706827153648, - 0.0639373789656292, - 0.0854800543090109, - 0.06831179964818195, - 0.09022834564472244, - 0.07548165821680534, - 0.06594036103449102, - 0.08803066375241327, - 0.07003328948433687, - 0.0928778847178399, - 0.08719945621258696, - 0.06506582836942569, - 0.09472846146856871, - 0.07563824623621122, - 0.07588620907995441, - 0.07950842541874724, - 0.06578545463834054, - 0.07134853250344433, - 0.0742740834393903, - 0.08999127341378275, - 0.071332814102892, - 0.07845228571590296, - 0.0638357019867619, - 0.07347976106726703, - 0.06746942185097198, - 0.08737515440078686, - 0.07464215342093498, - 0.07212734506166942, - 0.07414602882472403, - 0.0906725699648478, - 0.06923936520598942, - 0.08141866367445195, - 0.06633830028735918, - 0.09765941901099569, - 0.06476636788349995, - 0.07292400831222941, - 0.08148150502025692, - 0.0876642621224603, - 0.08370643403898817, - 0.0708958984677005, - 0.09021057777823817, - 0.0883498112604334, - 0.08511947534285678, - 0.06639942207631369, - 0.06103079002922, - 0.08714660495203354, - 0.055630263408198155, - 0.07457345366569809, - 0.0955900300507187, - 0.06106421077858666, - 0.09027142451951709, - 0.07155312832512312, - 0.0817397442050975, - 0.07750218481208407, - 0.06656524195110713, - 0.07552686186751366, - 0.08178021593976115, - 0.059427785897591394, - 0.08040729701960037, - 0.07804226427590018, - 0.07158824699913448, - 0.06501866973424672, - 0.06287715376487289, - 0.07606603871943803, - 0.07919877088114943, - 0.061803365055549606, - 0.062090364369057315, - 0.07073625655865672, - 0.05624787311509697, - 0.07175115620989414, - 0.07853954955220685, - 0.0660412941963351, - 0.08158557035543283, - 0.07860333469287561, - 0.0917603410207962, - 0.07248407373070767, - 0.07209993203362303, - 0.08067203140477258, - 0.11666501254529872, - 0.06734631781933371, - 0.11332445476750547, - 0.06809240823341428, - 0.06360081341486391, - 0.05425887241821917, - 0.07193704785776178, - 0.0700312891904764, - 0.08263985693462031, - 0.09235741975114106, - 0.08052205830145787, - 0.0928915371304953, - 0.08515147917824296, - 0.07531231894838267, - 0.07859003440920427, - 0.09081653690617904, - 0.07771622589937377, - 0.0772303149582567, - 0.08835574282286317, - 0.07545180459143414, - 0.07303786911067026, - 0.08970361844940967, - 0.07137960681700645, - 0.09224873264575599, - 0.06728805930913911, - 0.0727578314334705, - 0.06834692774026543, - 0.06597920876862069, - 0.07214102063166403, - 0.06258711637840537, - 0.06773382194206132, - 0.07702787020662775, - 0.08418351318027595, - 0.08322360223209233, - 0.07169365495572355, - 0.06261781196787873, - 0.07051426755125798, - 0.07616875494465415, - 0.07784173067901927, - 0.09316490828397098, - 0.051499522880645666, - 0.07467211007540478, - 0.06808131407880418, - 0.07682763827603892, - 0.07690796573311544, - 0.06082145490488481, - 0.08368349140746945, - 0.08438566017390381, - 0.08608313287739465, - 0.10337244127053156, - 0.08364911345710542, - 0.06425411404291603, - 0.06374883647031312, - 0.06448008246341785, - 0.057067293626011914, - 0.07769154804813168, - 0.08246268431329326, - 0.09254264377334444, - 0.08207263065418295, - 0.08151202959288545, - 0.07346984461959838, - 0.07458892738766353, - 0.10365834641047272, - 0.08425301074412263, - 0.06318111903293859, - 0.08199507573111993, - 0.07847374676694283, - 0.058840337268411334, - 0.07104779438989497, - 0.0937117932752876, - 0.09274029085391088, - 0.10363652146093587, - 0.06418000041904559, - 0.07723617143896919, - 0.11020033944997884, - 0.09928583382746203, - 0.06053325563187336, - 0.08085988504219813, - 0.07833368118338713, - 0.08845931063995328, - 0.07027205657276242, - 0.07730319307104828, - 0.0836729511508753, - 0.0751419039748694, - 0.06876443656130383, - 0.08235531272196688, - 0.07990501933624533, - 0.08136200140412113, - 0.08313444600361929, - 0.08181920454332753, - 0.06959980402154811, - 0.07097313559460867, - 0.09735031452666208, - 0.06174003188912019, - 0.08848671645199155, - 0.08653720282902563, - 0.08880313204674123, - 0.06920304867855442, - 0.07045079679173585, - 0.07602321056323122, - 0.09069716057261386, - 0.06764667912098027, - 0.0941852525348901, - 0.09280241776032873, - 0.09388670336671621, - 0.08365309106603393, - 0.08847297793464853, - 0.08310491721459427, - 0.06048660284054635, - 0.11186753676506281, - 0.06748798997046965, - 0.06571815540609882, - 0.06092250967196113, - 0.07289402451575908, - 0.08145074595450735, - 0.10020280848864259, - 0.09083882698347677, - 0.07706601204200919, - 0.0705237551981349, - 0.08271808263318324, - 0.1044152887654245, - 0.06623390411888237, - 0.056901774016190745, - 0.06359051122413505, - 0.0666329750752725, - 0.12226072660682162, - 0.08634540204329157, - 0.07519210547006162, - 0.08475092834144367, - 0.07914574818249952, - 0.09356617048854882, - 0.10094512250966205, - 0.07581495265713896, - 0.06871390398515378, - 0.10022750202381842, - 0.08302049535362052, - 0.09772377256338963, - 0.08312419736475782, - 0.08349147134064959, - 0.058949605047970005, - 0.06953034768358134, - 0.10150816941995437, - 0.08684194670569884, - 0.060977715374192415, - 0.06833808407269489, - 0.0703693438512591, - 0.08726411055598128, - 0.08363103965195044, - 0.0576334451195073, - 0.07352387923915012, - 0.07397814670935413, - 0.07470277022003462, - 0.06763192549281748, - 0.05929420599262677, - 0.056186115221813535, - 0.07117333940728071, - 0.07187489120315005, - 0.06594988163742208, - 0.08187308050054566, - 0.08824267263095231, - 0.07603661993533918, - 0.07386787662117958, - 0.11213413226485366, - 0.07142239630854724, - 0.07044055984553037, - 0.09339916521246429, - 0.10031252622422734, - 0.06257051733824782, - 0.0714333748664418, - 0.08415037338804544, - 0.07650861742472854, - 0.07215193228118279, - 0.07455826068655969, - 0.07465277649317546, - 0.08017739049691865, - 0.07849232527786354, - 0.08790409183457668, - 0.08887826201495494, - 0.06549109181885095, - 0.09418153260451984, - 0.0810411007968899, - 0.07438450849568944, - 0.10171186099203967, - 0.0809951465998768, - 0.10061246349881947, - 0.08516049677000187, - 0.08174206484279728, - 0.05976373147788496, - 0.08476679250395162, - 0.06619698988423783, - 0.07322906204921745, - 0.09472443434569047, - 0.07935389228173426, - 0.07671046452818216, - 0.07344003320923287, - 0.06917171644851011, - 0.09806878449865546, - 0.09261595713144129, - 0.08131170353526367, - 0.06717674031110606, - 0.07852993419099366, - 0.08532267936535352, - 0.05731286816785429, - 0.08223390409870811, - 0.08540837097689981, - 0.05784049234608452, - 0.07900320259918223, - 0.07528513265562085, - 0.07012085327904614, - 0.08181620197946313, - 0.08278858688660175, - 0.08595283819147939, - 0.07398518270387207, - 0.07607487058991245, - 0.098127824167363, - 0.09591271788107965, - 0.07326868701631209, - 0.09660407442705751, - 0.08129517966326247, - 0.07628912793285449, - 0.06907845261433286, - 0.08678295855574168, - 0.08697435860824258, - 0.07350562717656454, - 0.0815826310112778, - 0.08726321217726471, - 0.0802987117704921, - 0.08174968190051572, - 0.08461713127686475, - 0.06155525862127897, - 0.07851911236918908, - 0.07548092873205027, - 0.08148715558250469, - 0.09821742386970085, - 0.0860083240998192, - 0.07289289727234938, - 0.07235649220137134, - 0.07331789667348053, - 0.0898660465894388, - 0.08183234402119902, - 0.07419174162524876, - 0.07923868747647024, - 0.09475640557899136, - 0.07556908523520683, - 0.09492255382817556, - 0.10190093698123978, - 0.07471823138835164, - 0.09169036782213803, - 0.08484807258599485, - 0.0867728313092282, - 0.05603969039090387, - 0.07123286199249831, - 0.07427921604644488, - 0.09030968719428768, - 0.07991147350439635, - 0.08765169486070716, - 0.0911803151283943, - 0.07806960451249359, - 0.09328675084920453, - 0.0684873630559566, - 0.09887530581539251, - 0.0887036970236304, - 0.07266852358523036, - 0.06941882833811061, - 0.09359909591774972, - 0.07133782202512975, - 0.09003739308557346, - 0.06048515203076763, - 0.073759884220587, - 0.0707153567424084, - 0.08975858193213222, - 0.08926921257955697, - 0.06418029951514716, - 0.0828006967467145, - 0.07692107252264586, - 0.05042033280767298, - 0.0752036690638428, - 0.09451112365212293, - 0.07835667643736553, - 0.07980395250448273, - 0.08557173342556305, - 0.09487495755806692, - 0.07860235041612182, - 0.10364025946764446, - 0.07188399599857594, - 0.06313480762528427, - 0.08840818106604963, - 0.07658416237324267, - 0.08093083795194206, - 0.07406715727235988, - 0.12178584197506082, - 0.07352558745442062, - 0.06340580012986109, - 0.06190524007583119, - 0.05737663616595976, - 0.08016778627813775, - 0.07615965078916195, - 0.07157109112904517, - 0.09285942814117211, - 0.06317871078960306, - 0.072515429315293, - 0.07440835398867655, - 0.07701737350173224, - 0.07983700905198252, - 0.0754703506775272, - 0.08057630700689675, - 0.06524756410591184, - 0.08382610398043898, - 0.10145066928764704, - 0.07692645444810932, - 0.13280116856980753, - 0.06645742489051465, - 0.0878837364278653, - 0.08083554104089334, - 0.08963830765264619, - 0.0635721471113561, - 0.07280096753485456, - 0.0759950955501089, - 0.06823388430001719, - 0.06934351568278169, - 0.08365590618478155, - 0.08392529229431897, - 0.07951374881875897, - 0.10458044780981153, - 0.06979685731075999, - 0.09590611137402509, - 0.07546971278715511, - 0.09785629720103767, - 0.09812379690612806, - 0.07257859254694723, - 0.08096351236322534, - 0.07916378304094715, - 0.08473281215156164, - 0.0587220377352558, - 0.08863706823226246, - 0.07001806383323092, - 0.07133986350388302, - 0.08788517415568614, - 0.08776543810162199, - 0.08310433838424212, - 0.08371967473520289, - 0.08790744441273969, - 0.07380900117848875, - 0.07467570877792953, - 0.08784031949669101, - 0.11753726747317432, - 0.08508073320200313, - 0.07598323570757214, - 0.07850285127865449, - 0.06583195914390388, - 0.09760292263490657, - 0.06614351612441752, - 0.07495484632746392, - 0.07082394659010786, - 0.08577896497151337, - 0.07480361800172794, - 0.0715005933289809, - 0.08579925705504807, - 0.07926252319082015, - 0.08987373214165742, - 0.10811114162330046, - 0.0732118769057691, - 0.06453436999402905, - 0.06233610340653374, - 0.07308874219590193, - 0.10909476383681505, - 0.07343194908910501, - 0.092547895699936, - 0.07797470021487989, - 0.07669924889825652, - 0.07441307121865487, - 0.06737383955782586, - 0.08192907531358928, - 0.07433155884308648, - 0.07897105405183938, - 0.07552901528646237, - 0.07801338196877579, - 0.05896648762637088, - 0.0796940410892384, - 0.07098558303548504, - 0.10924731332312088, - 0.08769924913938536, - 0.0749359751519691, - 0.07806303251618846, - 0.0761018074221039, - 0.07777606379344124, - 0.07643722024997922, - 0.10044828081405499, - 0.08108454924086723, - 0.08008262666619789, - 0.10479401477558842, - 0.07182579602079553, - 0.09525867833200019, - 0.06535289591319637, - 0.075601144550577, - 0.07685460522445028, - 0.08567401404830918, - 0.07976350120477813, - 0.06500766929268725, - 0.07145992668806092, - 0.08389802272250188, - 0.10063257964800794, - 0.06491476159942554, - 0.0849750826540245, - 0.07203303756802064, - 0.09630493216791051, - 0.07516747224349633, - 0.09339055706387654, - 0.09417469373994387, - 0.08696925629088667, - 0.0614870547114573, - 0.07968737776192994, - 0.06821033859818812, - 0.05583228088239497, - 0.07815708799574213, - 0.05875879365183065, - 0.07688588438605767, - 0.08306084131911405, - 0.08927871783412145, - 0.07612622914677779, - 0.08115873408101407, - 0.07694638047912049, - 0.08641331697049305, - 0.07392049961168994, - 0.08064901847624513, - 0.092840888653993, - 0.0891592480036011, - 0.06880307325369507, - 0.08932720469397644, - 0.09685378254485237, - 0.08678509279801873, - 0.07366238890210888, - 0.07548336307491038, - 0.06803306862904622, - 0.07329107177539428, - 0.0950008780541948, - 0.06491497772198504, - 0.07650594989563055, - 0.08120514561811239, - 0.07181433795753976, - 0.0611653840256915, - 0.0819520748455517, - 0.07197828937642332, - 0.08885809521414412, - 0.09809770886714975, - 0.07287041665985657, - 0.06387725889795383, - 0.10995652933648407, - 0.09529057062199406, - 0.08375208391891523, - 0.0832409738633867, - 0.06791729822731511, - 0.06230961547038477, - 0.08121534489705846, - 0.09104318605889944, - 0.08340015614613101, - 0.10406395390890569, - 0.07639128772733664, - 0.07779219049573638, - 0.09043886043001233, - 0.1049309037686203, - 0.0856761846113992, - 0.08048218699862894, - 0.07353626186555079, - 0.07646551165417502, - 0.07192990560108169, - 0.09750078150354866, - 0.06954964463098952, - 0.06526706402924941, - 0.07561397125550104, - 0.08738432133058881, - 0.09172684625207027, - 0.0682839278008085, - 0.06220083543851609, - 0.07074310889599915, - 0.08364160307663689, - 0.08004939760114316, - 0.08857975239105459, - 0.07647987867688995, - 0.08706390468931853, - 0.08564235277961146, - 0.0990439177905035, - 0.07997615667272101, - 0.07532745261992818, - 0.067583328248135, - 0.0640716953168822, - 0.07217477230173674, - 0.08189470406065634, - 0.08356641582837435, - 0.08799327979881205, - 0.06891213256656652, - 0.07813196036738475, - 0.0786960598781494, - 0.08709658887869359, - 0.0737568282349907, - 0.0892300529346188, - 0.08542656276667963, - 0.10111498188412982, - 0.07904165106005823, - 0.0785245534465211, - 0.06837733883154357, - 0.06126286420981726, - 0.07402048030472423, - 0.08136602873909439, - 0.08917187738091287, - 0.08070297741567004, - 0.07053230811568664, - 0.06153175335209052, - 0.06178054502121601, - 0.07828409897223139, - 0.06722529301663603, - 0.06783287712889428, - 0.05987693067205561, - 0.07726182756286647, - 0.061043194621923695, - 0.07411818558197797, - 0.06601072629722277, - 0.09248840784723052, - 0.08437668760944472, - 0.08828064629026089, - 0.07595071535833697, - 0.09032730333127144, - 0.08511271881970402, - 0.08813255806004597, - 0.08752597563211056, - 0.07392042492945876, - 0.09618591501038043, - 0.07030545768644862, - 0.06972260723813457, - 0.06621811557892691, - 0.08982440580564928, - 0.07689531742549323, - 0.07203558113550042, - 0.0816961882931625, - 0.07077045666806275, - 0.09050301509426828, - 0.08780216407715209, - 0.08366247914828756, - 0.0681077061005535, - 0.09734118285006038, - 0.08036743024853742, - 0.0686856685871816, - 0.06961528413761127, - 0.07964293294048558, - 0.07587506918174393, - 0.08981791272824398, - 0.08737823967020707, - 0.11006263176860846, - 0.06612465175123056, - 0.07482322362200741, - 0.08537795970164908, - 0.07041027559440781, - 0.0865710484149628, - 0.07285782311298965, - 0.092014393129874, - 0.06261606865580566, - 0.09034079909936006, - 0.06874012563835614, - 0.08522113746776769, - 0.0709692569390849, - 0.08898951967382622, - 0.0641470441593713, - 0.05771196042416229, - 0.0874943828656577, - 0.08863053405810843, - 0.06949535693186717, - 0.05781577034705666, - 0.06137754696292513, - 0.06658068740748302, - 0.08021017467056325, - 0.09046933245007734, - 0.07779589340769441, - 0.11305677802900832, - 0.0723487748983419, - 0.06055617280769529, - 0.09162059983819147, - 0.06712194986634513, - 0.06972528105189456, - 0.09094131805094689, - 0.08584649263016103, - 0.08806152724209783, - 0.09668038032645869, - 0.06873564948903757, - 0.08485450779285428, - 0.11156195922552171, - 0.10727849066681636, - 0.06606523012585522, - 0.08235892148090129, - 0.07755383875970615, - 0.07796492788083695, - 0.07877852115546717, - 0.0693530105685701, - 0.08814923174168766, - 0.07449492905745204, - 0.08932857119835488, - 0.07098702648704024, - 0.08381883765784828, - 0.079003336280253, - 0.1013077561482923, - 0.0825198042238496, - 0.07725197765642251, - 0.07144838495441318, - 0.1266756510209321, - 0.07840584746748736, - 0.08145761912933047, - 0.0723848708607105, - 0.07573901843515078, - 0.06423221756165072, - 0.07961182468237278, - 0.06553766363626339, - 0.07804135273216951, - 0.07174679901710547, - 0.09163197929928223, - 0.07468821647929953, - 0.08005220430086571, - 0.0737833230647886, - 0.08528647008914282, - 0.08329439583159494, - 0.07059682958998005, - 0.07028996150512054, - 0.06890259911215031, - 0.09302866391978064, - 0.08716466666122082, - 0.07756969099100502, - 0.1171434589929802, - 0.0808918309000591, - 0.0787841443550876, - 0.08932969250771304, - 0.0887417310221331, - 0.07608654419108128, - 0.05800776747837923, - 0.08690599735934132, - 0.06255025289771614, - 0.07043742448474062, - 0.07683020413034773, - 0.09378643902268946, - 0.08924016310669078, - 0.06199104454532777, - 0.09749480637715856, - 0.08137934356020834, - 0.0788106533847259, - 0.06752185277487466, - 0.0835706754055129, - 0.0764567824226627, - 0.07978399006902659, - 0.06500190336203593, - 0.11541483483936937, - 0.0785569026610849, - 0.07301695458904787, - 0.08029975077339466, - 0.07296059622191739, - 0.07868752294109074, - 0.06795361891654958, - 0.08355973300215579, - 0.11415143548684896, - 0.087056693972662, - 0.08599012643222949, - 0.08249204737480602, - 0.0791491137791949, - 0.09125565930063449, - 0.08589240122739411, - 0.08868424293595738, - 0.07551989126871503, - 0.07884260074333567, - 0.08433955375039448, - 0.08656633818747612, - 0.10305694551110918, - 0.08138873675066217, - 0.07945167764786651, - 0.07407146484342318, - 0.07734491698949372, - 0.07163550785930284, - 0.07844259787316629, - 0.0744107301894547, - 0.06521314354099265, - 0.06470859135229044, - 0.07779075942943402, - 0.08679461427573369, - 0.07498277281465504, - 0.1154092906213249, - 0.06325984117167244, - 0.0786978076884588, - 0.07828837078058642, - 0.07901665598553279, - 0.09921561974987622, - 0.08112663012975758, - 0.09045334974416334, - 0.06864730838860837, - 0.09670551461602833, - 0.09622393994309604, - 0.1057548255207697, - 0.07209782114648143, - 0.08569106640246656, - 0.09006320653505355, - 0.08616423290791256, - 0.07374299550973731, - 0.07776603613024863, - 0.0733409818741955, - 0.06600978571093873, - 0.07575742133284429, - 0.07986251488922409, - 0.06224939250965193, - 0.07209201723855788, - 0.07445219498554756, - 0.0647425950789306, - 0.09523736623771256, - 0.08896264885339411, - 0.059672503290380804, - 0.06736228948091004, - 0.06037907481521225, - 0.08060826069246653, - 0.09862927511059756, - 0.10094730957733274, - 0.0942450346243485, - 0.09392348434781293, - 0.06641162102444671, - 0.08231388512416454, - 0.09530098576965036, - 0.07201904620684117, - 0.08799110503663705, - 0.07313631780322781, - 0.0712244618734418, - 0.08611184528454274, - 0.10361575444279478, - 0.07092245437159915, - 0.09698060844714178, - 0.0758958671673554, - 0.061347699898185774, - 0.0931559552852509, - 0.08153278131411093, - 0.0730445985113939, - 0.08207447217384202, - 0.06854968324704064, - 0.07473546033770422, - 0.07480991407036942, - 0.07388444716984485, - 0.07573294500334676, - 0.07688661184820085, - 0.09250286500090572, - 0.06719032632194025, - 0.09198826378498172, - 0.09278562326214836, - 0.080453255544012, - 0.08106243332316167, - 0.09284169508096606, - 0.08197351678417979, - 0.061128202136661265, - 0.07579357557742028, - 0.06820623298422249, - 0.08137133740936936, - 0.08707010729588427, - 0.08407896820234816, - 0.06277008586782427, - 0.08008685821022404, - 0.07703885940648408, - 0.07252847701896686, - 0.08777974904059857, - 0.07660507226971515, - 0.08324752167694152, - 0.08875218566217671, - 0.10336490618827011, - 0.08751875195702767, - 0.08535392018136614, - 0.06674064838006143, - 0.0800491008923288, - 0.09011850743055588, - 0.08792804803049865, - 0.09765758002009929, - 0.0810874492722158, - 0.08253838716529417, - 0.09639023934268011, - 0.06671862245445928, - 0.08276146834505571, - 0.08638897315546949, - 0.06357240834836043, - 0.09792784312507857, - 0.06047700985851386, - 0.0974026583828377, - 0.07647294593609515, - 0.07896058417670107, - 0.09013176320137654, - 0.08848109827087697, - 0.06891824849005758, - 0.08841359458440398, - 0.09040455023111911, - 0.0648346495256959, - 0.06485005094049753, - 0.08041890829832649, - 0.07168144702150668, - 0.07646503547432042, - 0.10476606369541344, - 0.07628465977642225, - 0.07088755584878967, - 0.06661946509090907, - 0.07493501155899274, - 0.08441882922264327, - 0.0712259640162831, - 0.0674004301142429, - 0.08918583115075784, - 0.09662021055355051, - 0.06380755368991646, - 0.0770325087051521, - 0.07424753843623122, - 0.0639424432965075, - 0.07643545580882123, - 0.08692552984679255, - 0.060810415137103196, - 0.07387538351518533, - 0.07159521192340995, - 0.11317596123009434, - 0.12124578964681332, - 0.07540626491388343, - 0.06943631366423642, - 0.07172151724342286, - 0.08457337961016446, - 0.06641148167252262, - 0.08643984901370033, - 0.07332074373698803, - 0.10060634653236382, - 0.07458717904379476, - 0.069164247003398, - 0.0608779863195106, - 0.08454258244121893, - 0.0976471563026735, - 0.05961153447768249, - 0.07462695983001989, - 0.07293634595704646, - 0.06599646387331015, - 0.07670232534897924, - 0.06898132347307104, - 0.09994800616486575, - 0.06365684872911655, - 0.09235792205213311, - 0.07290300109676386, - 0.0826900554218882, - 0.09404848938836363, - 0.09567423254858576, - 0.06286156133596946, - 0.08691071928265943, - 0.09329196944320928, - 0.10746768303971431, - 0.0956248913180992, - 0.08511795734485426, - 0.06837137281857096, - 0.07178712475096279, - 0.08573809963495285, - 0.08455740595275722, - 0.060712114489871565, - 0.07517251796592898, - 0.07563343313056901, - 0.07410928564313649, - 0.07668345158727745, - 0.0913178552179782, - 0.07002128801591233, - 0.07432160379575699, - 0.08444020194680385, - 0.06526839819920756, - 0.08828149070976266, - 0.07731716567575474, - 0.06514798851860103, - 0.052329179948562635, - 0.08561378554256108, - 0.07890380378151635, - 0.07427826138273998, - 0.09170236368210834, - 0.07645605277227373, - 0.07440607896245609, - 0.073207170584111, - 0.06885814012470762, - 0.08502866643033438, - 0.06790346371704435, - 0.10154726355332296, - 0.08099361707440475, - 0.08586718244490388, - 0.05721061248134299, - 0.08130108549120112, - 0.08940016042976763, - 0.08067619943155846, - 0.09150582647783097, - 0.09047398603513991, - 0.06426434178124857, - 0.0734804924869087, - 0.08174746532024926, - 0.08143522975405583, - 0.07278629171404366, - 0.08141478081105756, - 0.08416764721632672, - 0.07469989854742135, - 0.11043790943819039, - 0.07541034184349901, - 0.08783238522150397, - 0.07386421651518577, - 0.10504435430035045, - 0.09305152119749646, - 0.10191416945538788, - 0.08646604304105714, - 0.07825438246853438, - 0.062432835485757204, - 0.05593726198272926, - 0.0736805989741748, - 0.0882618228384281, - 0.08191098148238714, - 0.09434721632609369, - 0.08421590027061863, - 0.07898522570749847, - 0.061389240621930234, - 0.08049580758001755, - 0.07363417758160029, - 0.0835076288525843, - 0.0680278504951423, - 0.0761107896705578, - 0.07440719743510611, - 0.062285457663343556, - 0.06618441243246997, - 0.07379096294154826, - 0.07673792862005378, - 0.08921669834062257, - 0.07010133053365936, - 0.08571680967178931, - 0.09918464653398379, - 0.05898341248792462, - 0.08434732532501005, - 0.07487499451931087, - 0.07247866942991514, - 0.09044502376321593, - 0.09000744595742437, - 0.07301638974206547, - 0.07753540403709898, - 0.08164483531415238, - 0.06792135059203643, - 0.07275942585723777, - 0.0844225179911367, - 0.07655821419678874, - 0.06946878059947638, - 0.06635174449574621, - 0.07939412540738335, - 0.08092425537383623, - 0.09527658571708662, - 0.07400364776502376, - 0.07247846775610126, - 0.09441683694608397, - 0.07694519739268206, - 0.06849514901534065, - 0.08867400362984265, - 0.06703410704594626, - 0.08877393748198202, - 0.08876481028664265, - 0.09554140477051384, - 0.07948211896151167, - 0.0823318074695485, - 0.06823847023807784, - 0.10204065420060467, - 0.07501907703186096, - 0.08458445557047851, - 0.08675330701728509, - 0.07716084770049274, - 0.07300248584318164, - 0.06503857514821734, - 0.107512346256987, - 0.06105590144236113, - 0.07854881652733767, - 0.07851758644261907, - 0.06110310944193413, - 0.08857605299807417, - 0.06347658500450391, - 0.08080454486207499, - 0.0844718821031085, - 0.09384765702287, - 0.08348171792182296, - 0.0651227306209969, - 0.06079532232543253, - 0.074467598694429, - 0.07972509719963647, - 0.07706936545332012, - 0.06826298698402439, - 0.08187905606682012, - 0.08548920830264342, - 0.08128476657510499, - 0.08883497354310292, - 0.09242524410897765, - 0.08368604805221676, - 0.08068025769113173, - 0.10458441166162358, - 0.09555292332233564, - 0.07478714198704244, - 0.08090882463962494, - 0.0796636785072265, - 0.0772677530738547, - 0.08525772316099567, - 0.07652313046290123, - 0.08784600690123216, - 0.08149357448491111, - 0.10083456055127295, - 0.08041830915002374, - 0.09520995082917977, - 0.0708695417497157, - 0.06327047091842648, - 0.08353507166311745, - 0.062016388501756246, - 0.062268196862933944, - 0.10098241557429068, - 0.08353653459202764, - 0.09319460933092731, - 0.08140103150608813, - 0.07928815797797314, - 0.07706807798105926, - 0.09409258233999224, - 0.07356962533840186, - 0.06623209036464905, - 0.089728890102419, - 0.07673311960455718, - 0.08217105285658287, - 0.07626631005766189, - 0.07867664169248045, - 0.07135110649989158, - 0.07292839314791412, - 0.0568155024539461, - 0.086531979218213, - 0.07561196697987115, - 0.08438168446375911, - 0.08242362760426082, - 0.13661382845061892, - 0.08133011350752525, - 0.06993358724529827, - 0.07392361348785575, - 0.07373196372168159, - 0.0719306645806806, - 0.06945631479906574, - 0.07539326422347585, - 0.08087553605311099, - 0.11770608616094771, - 0.0958480786740264, - 0.0678978438109724, - 0.08585047758567217, - 0.08519497854260069, - 0.08400393707140372, - 0.07899790873335943, - 0.07842673559940057, - 0.0783200435344692, - 0.07273560491042157, - 0.07720608114453192, - 0.09454440952350161, - 0.06255621169012782, - 0.05830217264800094, - 0.09055772208575416, - 0.07324779515934912, - 0.05823730493618101, - 0.08879165321571453, - 0.07451269665607059, - 0.08348538318727419, - 0.08984220157530398, - 0.0684924578245853, - 0.08711551127240388, - 0.06413742303588553, - 0.06813218266771823, - 0.06829093166776125, - 0.06088303127508514, - 0.09811437863343983, - 0.09439637228790494, - 0.06609734161487041, - 0.06614820256067959, - 0.08066612716030357, - 0.07567609655898395, - 0.07572045434847091, - 0.07813329188446971, - 0.09321796504316908, - 0.07637071425772857, - 0.09481992781678773, - 0.0828673508543557, - 0.0819926641550036, - 0.06323491999619069, - 0.06386490916197606, - 0.0754193068810909, - 0.055610381095902994, - 0.08116102071009912, - 0.08144615048484452, - 0.06633368151481892, - 0.09334541703837546, - 0.08472195374454757, - 0.06028717677393665, - 0.06640495403454587, - 0.07676726826796897, - 0.06427937542408912, - 0.08415850684603407, - 0.07151077785083103, - 0.09035024906855262, - 0.08741884706296649, - 0.06785530929239954, - 0.08351538263242274, - 0.0870472991696806, - 0.07636776707244546, - 0.08796736708121493, - 0.07565412546249665, - 0.07705412017374937, - 0.07094900934581731, - 0.08251336142419526, - 0.08042668744052703, - 0.08609525970863273, - 0.10351804441565185, - 0.07218159092262469, - 0.07519274922426669, - 0.07824112209999953, - 0.08792327680009367, - 0.08598506728359702, - 0.07546225473125397, - 0.09467698359222533, - 0.08629072805097572, - 0.08333694984012478, - 0.08282123510539485, - 0.06853372751475878, - 0.07418412753347589, - 0.06879337832257507, - 0.11447393137470015 - ] - }, - { - "legendgroup": "Beam sensor 0", - "line": { - "color": "rgb(102, 197, 204)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 0", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.11447393137470015, - 0.08601614895685247, - 0.06665487649605299, - 0.07900619625585142, - 0.08284809324354658, - 0.06766256994709624, - 0.07283503536073105, - 0.056383171130916565, - 0.08362744074898475, - 0.06310333034545965, - 0.06891743810923376, - 0.07204182122329209, - 0.07901032954941116, - 0.08015226278244958, - 0.09849577310595324, - 0.06643702058412013, - 0.08388336435169948, - 0.09195416515097264, - 0.06571232075597214, - 0.06366720541852532, - 0.07601258935078131, - 0.06174661682523948, - 0.11453871898297897, - 0.07216592178061938, - 0.07850172534551393, - 0.06928483349020712, - 0.0662306337073297, - 0.05576482093165577, - 0.07850550362653552, - 0.07508363450803489, - 0.06588816315463375, - 0.07150108913795072, - 0.08323637756877912, - 0.08635889960071731, - 0.07190620802350206, - 0.08081925565440579, - 0.08294420015650246, - 0.09010474033751692, - 0.06624102171159858, - 0.07810152473869944, - 0.09720358288204446, - 0.07021406369217482, - 0.07969129308531542, - 0.07045152747662785, - 0.0567101162583161, - 0.08952745252162675, - 0.10011724342410384, - 0.07497196385020213, - 0.06653933352604612, - 0.08381570771682363, - 0.0806621213098584, - 0.09531897627413467, - 0.08716055193365968, - 0.08522642992171058, - 0.08591298624446728, - 0.08084153844657367, - 0.06710515773469462, - 0.09430968387215924, - 0.06213257160620119, - 0.07688724986741426, - 0.07680752341347079, - 0.09296246093855981, - 0.08338380216169772, - 0.08115978038325393, - 0.09860024214831854, - 0.08711590147405494, - 0.08845193645713344, - 0.09986358937144846, - 0.10563751596473349, - 0.07986983800198987, - 0.09391370362043723, - 0.08328974314939976, - 0.06353034157919227, - 0.07173178889986198, - 0.06849774847479977, - 0.07395607369830753, - 0.0899784792554148, - 0.09558160705730065, - 0.0967903058121914, - 0.10879279381495442, - 0.0682780996018918, - 0.07023014676153012, - 0.07018472785233362, - 0.06794393303628263, - 0.07562253557652206, - 0.06737320609619915, - 0.06848584920278386, - 0.0719714866727068, - 0.09756345975818605, - 0.1246429443943433, - 0.07406953743291533, - 0.08630599452183056, - 0.061661644771578976, - 0.06828385809904046, - 0.10371403253541417, - 0.06382958285422846, - 0.05369008327523345, - 0.08599365226432865, - 0.0745252382355847, - 0.07098760285632623, - 0.06463176830412305, - 0.07097667049873826, - 0.06504201344633444, - 0.06635464271615078, - 0.07758729315139626, - 0.05776850849516609, - 0.08172460729556434, - 0.06622546915366254, - 0.08525049481954332, - 0.0878261742918285, - 0.07191757196548773, - 0.09690315067140136, - 0.08469713162476505, - 0.07280513026204247, - 0.05219197412294474, - 0.08351782331758498, - 0.07765153524314236, - 0.07051857396758014, - 0.09232309483569463, - 0.08786743900710114, - 0.07820448129649782, - 0.060213464478592604, - 0.07473467506308742, - 0.07833026884176429, - 0.0753715611322922, - 0.11712548142544514, - 0.062240875393909954, - 0.07925836891165816, - 0.0639642676329946, - 0.07776827020914273, - 0.07320208366440101, - 0.08287252901224765, - 0.0693492513890538, - 0.06587756207197815, - 0.06889103831709388, - 0.08843957860273215, - 0.1147944133669514, - 0.08133669674561181, - 0.07233657294045802, - 0.07798271220810435, - 0.0704920336218388, - 0.07705099797161008, - 0.08082979933795469, - 0.07230878134889929, - 0.10413933008540757, - 0.07792174097248634, - 0.07124174850521534, - 0.07793745216511355, - 0.058643435962110614, - 0.08622033030661595, - 0.07156069377236193, - 0.07521353094024891, - 0.09229350589957379, - 0.08922789957414853, - 0.059135394096358825, - 0.05797250854127129, - 0.08524890840051923, - 0.0682904822501719, - 0.08720699072814479, - 0.07987896134319052, - 0.08929144422730077, - 0.11219561306376101, - 0.07070377893486857, - 0.0672730915974678, - 0.09052392785861217, - 0.08218400625863294, - 0.0859103692629877, - 0.07912291386186082, - 0.06065266175719179, - 0.11295059181101481, - 0.07150019003194455, - 0.06875576806024644, - 0.06865172146223689, - 0.07966190293593337, - 0.07062075078253649, - 0.09178642952435778, - 0.07574782853699077, - 0.0935408217113296, - 0.06941602715655137, - 0.073046580884459, - 0.07963468913751347, - 0.10811603423678806, - 0.0730489843540421, - 0.0824320189622287, - 0.07821764726375303, - 0.07467417772469509, - 0.07561984537215373, - 0.06709681809902288, - 0.07951766010987153, - 0.07700524521284692, - 0.07529040120521723, - 0.07588360010570327, - 0.08075634562189682, - 0.09292122056187516, - 0.07201501792327474, - 0.07726142297965469, - 0.07190995598210029, - 0.10740457314330389, - 0.07707765475776454, - 0.08308775111648858, - 0.0733341996284551, - 0.08218039952042501, - 0.08014820735041306, - 0.09184628819786854, - 0.09086204543777972, - 0.0594843267585398, - 0.0629393144881159, - 0.09973705005283119, - 0.06976007185371458, - 0.08900181852600147, - 0.08025511544154748, - 0.09414012999894134, - 0.09120961664666606, - 0.07586750366643918, - 0.06307735963578387, - 0.07224386759238362, - 0.07346095466023034, - 0.07867588053009907, - 0.10310429652641746, - 0.060885859241399956, - 0.07675324381930491, - 0.06170394454164737, - 0.08512477440705574, - 0.0693402390874714, - 0.0697757604164985, - 0.11257663552882656, - 0.09169784869552476, - 0.06958787157114349, - 0.07416659824491252, - 0.06444468281228989, - 0.06323603547393016, - 0.09301047966145883, - 0.06089544351712666, - 0.07403302433929651, - 0.07150895565040416, - 0.07542964915271207, - 0.08510155377972826, - 0.0668345018401326, - 0.0926086898829572, - 0.09459582238712758, - 0.06829926700002749, - 0.08587308870738519, - 0.07559059613276593, - 0.07746544187665194, - 0.08030051585849717, - 0.059565236003503955, - 0.0874879613080152, - 0.09736435879588756, - 0.08213059041495015, - 0.0628717247343395, - 0.06731267094026634, - 0.08495653987676126, - 0.08586918199263968, - 0.09716665004285123, - 0.09127035755722866, - 0.06863936314895139, - 0.07668759801435006, - 0.05730454667551294, - 0.06459838408276403, - 0.09488969683702864, - 0.07356632638838113, - 0.08019248179521675, - 0.08533161343709834, - 0.07153673709273767, - 0.07544520422922632, - 0.09027450092461765, - 0.08779950633587545, - 0.08468257946065447, - 0.08785310802818082, - 0.09086207368946451, - 0.06542922416139665, - 0.072054645248716, - 0.07919802241310896, - 0.07507777553528971, - 0.08739496127033293, - 0.09690622530594047, - 0.07649473136049137, - 0.08088855610130878, - 0.07642213854839092, - 0.05913650796853856, - 0.07235120888240842, - 0.08975737062982718, - 0.08284476547471378, - 0.07138504055646687, - 0.06868791135237501, - 0.07517389255496716, - 0.07487525017876437, - 0.0824518137718452, - 0.06541432040371564, - 0.08199742451963471, - 0.059677726285325715, - 0.061339255557373705, - 0.08821244841980427, - 0.06351048555016134, - 0.0749407818223644, - 0.06254964496931252, - 0.08759247218034395, - 0.07379040201410064, - 0.07374204945567125, - 0.08342308942516187, - 0.06645701923270002, - 0.08755258632757869, - 0.06364151288908773, - 0.0920935008564492, - 0.1034087463340564, - 0.07454200663215498, - 0.0840504874272234, - 0.085595872682885, - 0.08210687247690875, - 0.05758975767591459, - 0.06833889028188614, - 0.060229230511689116, - 0.06368948747301151, - 0.07858333300302617, - 0.07500399858424571, - 0.09130854990133823, - 0.06876439565539427, - 0.06462127284197064, - 0.06792900187506273, - 0.06471406948261195, - 0.06937689884793208, - 0.05836638652826638, - 0.07088304373697007, - 0.08218259503506525, - 0.08297492116580503, - 0.08192840281516625, - 0.06210135775145932, - 0.09895090109317446, - 0.059825330277706625, - 0.1088935017515979, - 0.06563885467592853, - 0.07100286050769015, - 0.062344359179982156, - 0.10754054814009084, - 0.09429598631970175, - 0.06398221957720256, - 0.08213712468506511, - 0.08311285528647334, - 0.07721276628203463, - 0.0989056805793633, - 0.06147362035991655, - 0.08464931616308984, - 0.06348942023659682, - 0.08608968394170419, - 0.08140617483921567, - 0.06663531787432986, - 0.08479624353271892, - 0.09839892382328318, - 0.07453713857251745, - 0.06595762568491742, - 0.07375357851668816, - 0.08688506196674173, - 0.0833982611407247, - 0.07188403460878663, - 0.07430628600624421, - 0.06950346831012712, - 0.06598581427334622, - 0.08233123697069712, - 0.07912029398442523, - 0.09025420812832731, - 0.0757882749484664, - 0.07039967085092443, - 0.06334076317411697, - 0.06355757077677757, - 0.081051876100448, - 0.08785195483697462, - 0.07430980413428202, - 0.092997699968936, - 0.0733893310258755, - 0.08593281023862148, - 0.08972985429583416, - 0.08464811564953974, - 0.07160956979277308, - 0.07673016670499298, - 0.06031805482144385, - 0.07066680623811901, - 0.06761318267366623, - 0.0919447440745381, - 0.07461783492694214, - 0.08731004924979122, - 0.08080187511702797, - 0.08636122191926213, - 0.07484464529981237, - 0.0831084453887049, - 0.07409663055884935, - 0.06978551003756014, - 0.09419378665107161, - 0.10120992440060388, - 0.07852187808316935, - 0.07924511552560778, - 0.07910156535230264, - 0.06521786222557038, - 0.09052096765845304, - 0.08725447569999004, - 0.07864269725286316, - 0.07820361963673553, - 0.0907825688570589, - 0.07167375282335747, - 0.08071671512511618, - 0.0600605440310957, - 0.06256682578534761, - 0.08230280441135988, - 0.08757903072022766, - 0.09985412136842108, - 0.10340029038748502, - 0.08366499596534649, - 0.07655182982214884, - 0.07804651814436636, - 0.06482309533221399, - 0.07621621254268832, - 0.06236540036951853, - 0.08655035595975202, - 0.07450759326144077, - 0.08190482200002261, - 0.09681142853970195, - 0.06689443159389098, - 0.0744818380807826, - 0.07766686887936203, - 0.06689357944940864, - 0.08268362279354818, - 0.07957043742327832, - 0.07077574214902072, - 0.10066386992082715, - 0.07580249290117458, - 0.07534422124230128, - 0.06633349220711687, - 0.07705430890787414, - 0.07399349098036588, - 0.10873876414806177, - 0.11493951871872578, - 0.06885554489770147, - 0.07446866539049761, - 0.08059709027268736, - 0.06464325303734707, - 0.09360681709083189, - 0.0635263696197495, - 0.06995200897101328, - 0.07853874383290806, - 0.08159604136656692, - 0.09335610107894479, - 0.06703972221744038, - 0.0664240062005633, - 0.0924058754706442, - 0.06877143485916433, - 0.07811733903449461, - 0.07092291515044927, - 0.0679459810236854, - 0.07243995250634673, - 0.06860377362234367, - 0.07782687080210457, - 0.08267951518149258, - 0.07889687485488826, - 0.06363766842866425, - 0.06943480531479039, - 0.07743774834327395, - 0.11139193723843882, - 0.07703505326921749, - 0.0763394692365271, - 0.06761434831868827, - 0.07864047204175284, - 0.08398811624769813, - 0.09727189236255904, - 0.07340890982522623, - 0.0728979548118425, - 0.05548912159305028, - 0.0815216389176959, - 0.07344488247895707, - 0.0808551189403844, - 0.08048921636825573, - 0.07399257476753199, - 0.07913338031534904, - 0.07227049819802908, - 0.08551010896871292, - 0.09973176445942342, - 0.09279861930581898, - 0.0909153768627144, - 0.07251391649541185, - 0.09029198956112401, - 0.0796746572029755, - 0.08777367579293233, - 0.07501857785486714, - 0.082749745764031, - 0.07069218916563735, - 0.07797181110399633, - 0.08684767959088519, - 0.06815072837230976, - 0.09423284149688939, - 0.07242168779791947, - 0.08331829088719833, - 0.07485093602060462, - 0.07422936837645037, - 0.07838987714497178, - 0.10268784085054962, - 0.08156503288962434, - 0.08187316977339415, - 0.09270132904789756, - 0.07709220214077123, - 0.07685217633005756, - 0.06743487622556507, - 0.08665612027502535, - 0.09038462711745501, - 0.07278571446373841, - 0.07709784836865462, - 0.07097927421705418, - 0.08316695429050924, - 0.07130913350878548, - 0.07041045945216523, - 0.1053279525424274, - 0.09667527980137407, - 0.09753151071263146, - 0.06422971412288866, - 0.07703872122803548, - 0.09026639243705369, - 0.06457615160649462, - 0.09709716351616014, - 0.10663420914431225, - 0.061413871620174094, - 0.07564589404465283, - 0.07939400120505889, - 0.08003878877340238, - 0.07114124816937828, - 0.07753341919389253, - 0.0672765415863962, - 0.06962421911263848, - 0.08231126206263532, - 0.0783275664000965, - 0.09219502419318681, - 0.1088989093726032, - 0.07269035761693707, - 0.07472475656001436, - 0.08051289631190264, - 0.06366546320747778, - 0.07584729148493694, - 0.07932550807309925, - 0.09115098885760453, - 0.08839727713481789, - 0.08442820124211299, - 0.07709478445498069, - 0.0697798571612283, - 0.0742680429018309, - 0.0692433003839258, - 0.06324926207409469, - 0.055892978207178624, - 0.08174436834888262, - 0.07354693737441079, - 0.0814271375801284, - 0.09697191310614828, - 0.09862185015310362, - 0.10141878028483443, - 0.07260538758612257, - 0.09502894519967052, - 0.07821361014444592, - 0.06345519831486886, - 0.10627357999205878, - 0.0699365774615762, - 0.08081431901806348, - 0.07802780671986118, - 0.08325261703048314, - 0.07541518106709426, - 0.0819484798134012, - 0.07477924712484917, - 0.08165948274224681, - 0.07242673443192532, - 0.0977868486538132, - 0.0975254028591405, - 0.08999047119264812, - 0.08408004771942672, - 0.07607789466917851, - 0.07108595495851153, - 0.06406545057304955, - 0.06550299003260779, - 0.06732619256351961, - 0.06326970111085622, - 0.06050936180233658, - 0.06659216882414835, - 0.06551169605559176, - 0.07976519850067997, - 0.10199847029605952, - 0.09072559610427942, - 0.06950626102673155, - 0.06658827828591671, - 0.08891072789358756, - 0.08649675477132222, - 0.09493030408086815, - 0.09196798963641586, - 0.07630312899712725, - 0.07105652603805117, - 0.08160726437273194, - 0.07104947092679662, - 0.062389768992805496, - 0.0962445383077257, - 0.07180748492985603, - 0.07144139285634933, - 0.06881331576659823, - 0.08027080722548703, - 0.06397047069767009, - 0.06897230648516414, - 0.07857594060916642, - 0.06149358342512446, - 0.07450362863565209, - 0.09164654130875557, - 0.10934822057754111, - 0.07663091171414961, - 0.06864543161706481, - 0.07923526541539076, - 0.08414389039823938, - 0.08768940222163268, - 0.07981382114329867, - 0.06915002382421889, - 0.07988132951930701, - 0.07532476283955065, - 0.07829139061231181, - 0.07900891354664555, - 0.0883784779852678, - 0.06251354102239244, - 0.06841070877182777, - 0.09391841302772613, - 0.09590776563359762, - 0.08748440878573031, - 0.09925090255041578, - 0.0707051376001382, - 0.08002583836443009, - 0.06810939620784656, - 0.0626670751356061, - 0.06743918371846946, - 0.06975887881777547, - 0.08674005776518602, - 0.08007641697699676, - 0.07724007229379931, - 0.09112328251370098, - 0.08238171364639738, - 0.08275357027035064, - 0.07397336309767939, - 0.07330035086559279, - 0.09324575755050295, - 0.08243261851147833, - 0.07833315935159679, - 0.09030266869928101, - 0.07439736088050897, - 0.07326087216689876, - 0.08563691727967472, - 0.09462599969941721, - 0.07555388824623706, - 0.0844027659988426, - 0.10013791633050079, - 0.08093822567316493, - 0.07888126134673129, - 0.07850733828985991, - 0.0856892424066913, - 0.08043677343745301, - 0.08551387729867703, - 0.10190385890324473, - 0.07219084505287436, - 0.061759591582873155, - 0.09423377909927393, - 0.0791538582338517, - 0.08030247854101046, - 0.06767058390814908, - 0.07403365023508893, - 0.084509244878108, - 0.07899168644869359, - 0.068488118343969, - 0.07781566014136189, - 0.07847642592263286, - 0.08021834147749672, - 0.06362072948132237, - 0.09819213161232802, - 0.08028890532712506, - 0.05769805223262799, - 0.07400161857253458, - 0.08645287829373509, - 0.0801534899275563, - 0.07858910258787029, - 0.0707522588339861, - 0.07634870564674279, - 0.0707625676284981, - 0.06264902859961077, - 0.08144983013058536, - 0.07702749867204192, - 0.053162437068084, - 0.08654196440316807, - 0.08394689388780556, - 0.06290453901517627, - 0.08287680013523602, - 0.0753953063778686, - 0.08148191017512382, - 0.06933400624396832, - 0.08320864641646993, - 0.0890457446529895, - 0.059819530839693824, - 0.07751816396331218, - 0.07261928420982501, - 0.0786483853879108, - 0.07576596639954253, - 0.13421542857219287, - 0.06526605973360274, - 0.08110966822805879, - 0.08199109589816726, - 0.06365996071936286, - 0.07157588486746556, - 0.08943871571378152, - 0.07534018588064255, - 0.10346783057392332, - 0.0689949696178118, - 0.06578687733834684, - 0.07193306105093497, - 0.08837689907333929, - 0.0696354045371941, - 0.08415868465551433, - 0.061647921693896206, - 0.05862747211863791, - 0.07938288096434062, - 0.08564294284456848, - 0.08577955247808648, - 0.0897321062177783, - 0.06091342951381326, - 0.08380608358553028, - 0.09438993546845928, - 0.1203745244119162, - 0.0665662926405263, - 0.07248789681285851, - 0.08579254840556264, - 0.0785043603366159, - 0.07518537683030256, - 0.08152672660502874, - 0.09283965806765329, - 0.08687168090475948, - 0.09807924527425933, - 0.06670279457205058, - 0.07678228858455857, - 0.0871915767749327, - 0.09769441649149695, - 0.06544498055889295, - 0.07007028028195667, - 0.0660685146491283, - 0.06804144134387073, - 0.09188800395129014, - 0.10234341498317125, - 0.08479138968351028, - 0.08814888668774401, - 0.06804048737176265, - 0.07663143864009149, - 0.0836647511384597, - 0.1000097675050749, - 0.0920569407414, - 0.09237681655029388, - 0.07714710324445687, - 0.07824614337129342, - 0.07245133067758038, - 0.07825120089165155, - 0.06707422530915268, - 0.08805199090421657, - 0.07533243595828444, - 0.07604885465323771, - 0.11006980096405396, - 0.07383927139768007, - 0.07298825669457584, - 0.08838722046718424, - 0.07897568149138616, - 0.08341766698119388, - 0.0816341216124362, - 0.08628150822536863, - 0.09508355005547653, - 0.09401446433656753, - 0.07728530890457957, - 0.0751444030845301, - 0.08037957076841962, - 0.08497792110118813, - 0.09947432827731859, - 0.08110390440121795, - 0.07855812514249297, - 0.05919818833816716, - 0.07951884460796821, - 0.06477729651009158, - 0.0848358081483786, - 0.08615401664813888, - 0.08963810471213604, - 0.07461094516889337, - 0.061439469869498164, - 0.07744570752387536, - 0.07231432141595996, - 0.07359513935542203, - 0.0647442090729554, - 0.08645332065079217, - 0.06394630975892063, - 0.06182743687182061, - 0.07650702277494591, - 0.06869532799429699, - 0.06422578437568077, - 0.0890497685824673, - 0.10329191777387858, - 0.08098887071831556, - 0.07533795842286253, - 0.05833746954564304, - 0.0793838266479648, - 0.08688829242588601, - 0.0969706752810349, - 0.06453608929155702, - 0.07297444980965605, - 0.07467752213179886, - 0.06876161570612399, - 0.07737673191642887, - 0.07838728287990261, - 0.08356511404006661, - 0.07290127649060264, - 0.08114133758574685, - 0.0796516604342582, - 0.067622429892809, - 0.07446163535553668, - 0.07289720003425901, - 0.0903222101997463, - 0.08272388237263524, - 0.08531223122140903, - 0.061193798274984536, - 0.08182488467946049, - 0.0820280370731087, - 0.06573273911534669, - 0.10120988399948398, - 0.0804424770835976, - 0.07475690678800091, - 0.08363843704525938, - 0.07845734835755658, - 0.06893150934263158, - 0.08576380062218485, - 0.07730658483399498, - 0.07245542708444594, - 0.07330341413751926, - 0.07837437900124619, - 0.07951751717546991, - 0.0786678346976338, - 0.0633068445147492, - 0.08169736738600025, - 0.07653293208144003, - 0.08372371911526678, - 0.06817741799678986, - 0.08432671606563762, - 0.09419212693872227, - 0.0831429437233733, - 0.08142037251611617, - 0.10029838952178911, - 0.09189345058439734, - 0.07541131355260408, - 0.07236379756330982, - 0.06810675194164915, - 0.0940301184716702, - 0.09424033393249086, - 0.09420329831842561, - 0.08317913394081702, - 0.07956338398723889, - 0.08156951380532042, - 0.08031953213543201, - 0.09156717163939819, - 0.08019588849434414, - 0.07753584099462962, - 0.08453675272209861, - 0.11221634662860783, - 0.08811731371688142, - 0.07050906480078005, - 0.06732239156753116, - 0.0831622417179293, - 0.08326635212175806, - 0.08413875949547102, - 0.06706035268600259, - 0.08016814378669615, - 0.07581720877662065, - 0.08172403356841433, - 0.0831355972034597, - 0.08295453515550456, - 0.08871426266570234, - 0.08991615484086382, - 0.07618318814376257, - 0.08661834372787659, - 0.07041064026856686, - 0.0763652599125074, - 0.07706717903790694, - 0.06277518382487368, - 0.06772605578915633, - 0.09265987417842167, - 0.09930767731995911, - 0.07896587031872104, - 0.09498405145071426, - 0.07604767260615722, - 0.08438004666840661, - 0.09973429340100062, - 0.07737318780822884, - 0.07623251948320432, - 0.1002335746661189, - 0.10433143124779991, - 0.07590271574760737, - 0.07069262021487972, - 0.11741544638328735, - 0.06219133325636609, - 0.07169848462834177, - 0.07417535888352386, - 0.11260165223536875, - 0.10458768483096251, - 0.09828348593448337, - 0.08094852404977748, - 0.07338175658299496, - 0.07707301425949417, - 0.08427138336723218, - 0.08800303984720717, - 0.07048669573022696, - 0.10660067700013416, - 0.0655543080429642, - 0.052951082288301435, - 0.10213533740264712, - 0.07322801244447821, - 0.07482664303844551, - 0.0700989220163211, - 0.07333156675978773, - 0.07912128986346825, - 0.07012903311117588, - 0.08354663236912274, - 0.07342204013095494, - 0.05331569704090838, - 0.059273297380302174, - 0.07029444595193762, - 0.06307826953951325, - 0.06707401873856327, - 0.08467367401128474, - 0.07811259959907389, - 0.11409007078425387, - 0.07772941958128636, - 0.0786831002493629, - 0.08940227882703722, - 0.06375568566710431, - 0.06379401764960706, - 0.06123700743527384, - 0.0822439476854724, - 0.08266148456584206, - 0.10433291175137652, - 0.06572363063217587, - 0.07792456764670826, - 0.07821626396344405, - 0.07917001958994486, - 0.07728314667448764, - 0.07344106933705206, - 0.07534207782364019, - 0.07769623665969218, - 0.09280331199470805, - 0.1212362434838904, - 0.08918609860957626, - 0.0909178705030026, - 0.08952330693914252, - 0.09521561513238638, - 0.07799538439027424, - 0.06139720126769126, - 0.06414508350173974, - 0.08616124985818925, - 0.06471911436335241, - 0.09498642936149468, - 0.1169926468309486, - 0.07397540973550461, - 0.08912299083527261, - 0.07136177931536666, - 0.08942434059058722, - 0.07174302683120001, - 0.08496579617763982, - 0.06864388553363603, - 0.06996467174737145, - 0.07732846609693753, - 0.09325325895950567, - 0.09637574016168761, - 0.06271894242253954, - 0.09386001880826082, - 0.10032360014989201, - 0.08811850635763523, - 0.05994741915130772, - 0.09450167893499903, - 0.056574338228903065, - 0.09358439883113141, - 0.08966865671780895, - 0.08022630127152297, - 0.08466313365320323, - 0.07532375348434528, - 0.08590099790538774, - 0.06726430269213406, - 0.07518550306274628, - 0.08780277176608353, - 0.0844508796904951, - 0.08687506416230602, - 0.06710087335006704, - 0.08823954134943467, - 0.09920812521133987, - 0.06167983072478759, - 0.07246085004271793, - 0.10021280437106875, - 0.07773424520847833, - 0.09841615067880097, - 0.07672058604425903, - 0.050384329770070416, - 0.0951351666117986, - 0.0784738220777513, - 0.0733181151277326, - 0.07623963528401924, - 0.07343776312297662, - 0.0829034070426589, - 0.08419862239673058, - 0.08487907802718957 - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgb(250, 231, 184)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 1.1068908827305246, - 0.20901787113858242, - 0.12391897396604577, - 0.14005970736235013, - 0.1176599304577686, - 0.0920778261198405, - 0.10295729826011792, - 0.09636598817927314, - 0.11229805345582299, - 0.12025613130394833, - 0.1161070905888281, - 0.09850124132266375, - 0.11388607077091163, - 0.09027253066648881, - 0.11401352785586474, - 0.1161963044924022, - 0.09360023544198286, - 0.12058951338199093, - 0.10819450127668763, - 0.11546957572969067, - 0.09913142141111343, - 0.09001886458226188, - 0.11824421822422225, - 0.10308072682412407, - 0.09566832206977556, - 0.14258732371267996, - 0.09697234601892568, - 0.1322654765816417, - 0.10491760326603475, - 0.11038236670456926, - 0.09342052743088372, - 0.11347775334438945, - 0.12258985899205707, - 0.12611849486959564, - 0.14210243809446443, - 0.1024368795569433, - 0.11606734436773558, - 0.13123000323245912, - 0.0963527836719415, - 0.09990509804213223, - 0.1305110469608444, - 0.15670267778822364, - 0.07923309041421056, - 0.1371320339818886, - 0.10220187702672218, - 0.12266175525492932, - 0.09185532996665867, - 0.12212262825356458, - 0.10324909099405744, - 0.13481517528540676, - 0.09340992317688507, - 0.10816478825311074, - 0.1293300084225618, - 0.12268282148175746, - 0.0903948377751875, - 0.09183827358573783, - 0.10502979876892365, - 0.11068271334278486, - 0.11060814575803567, - 0.11982466826205657, - 0.11436960580290462, - 0.1267004049748447, - 0.09982126856901123, - 0.09912945580196511, - 0.12228497332512181, - 0.10126201847981109, - 0.10647917027034205, - 0.10037609991951704, - 0.11426083896007946, - 0.08806005199837234, - 0.10415200675373418, - 0.13060736090187575, - 0.1063851962457175, - 0.11575211245366494, - 0.12007389471856655, - 0.12772951373552854, - 0.12240260333988282, - 0.11831062944702465, - 0.1041331483457981, - 0.15704907094680362, - 0.09133918233890401, - 0.11798986649480729, - 0.10394383736687314, - 0.10723654939511994, - 0.11673759938290465, - 0.11815401932482882, - 0.10159946758005423, - 0.11455127351419736, - 0.13225626570234333, - 0.0953013184776792, - 0.11363554582253199, - 0.12391749349102188, - 0.09315401562190793, - 0.13105741592260678, - 0.12136792802315156, - 0.09838011338411044, - 0.11609923709293891, - 0.12162379806370988, - 0.08146743574334057, - 0.12277768738299875, - 0.11046218002198718, - 0.14732958043006503, - 0.10284129099290769, - 0.10632366175852079, - 0.09739373785900465, - 0.12914294167007412, - 0.0848717234171679, - 0.18051485250706215, - 0.10447977578866299, - 0.09432787929854528, - 0.12107475927148752, - 0.09369536804848666, - 0.1236420326658155, - 0.1298532799929034, - 0.12252272827802738, - 0.11079787487979872, - 0.10916582378232646, - 0.09638344548028566, - 0.1234897547332009, - 0.11826552374530655, - 0.0899235184698062, - 0.13862970601330485, - 0.11553164956997813, - 0.1396629244898823, - 0.1084358350800827, - 0.12732430681918452, - 0.11511129621998244, - 0.10308400861596399, - 0.12419047466413995, - 0.10435867887067055, - 0.10558713904644366, - 0.11392870999491655, - 0.11086134655440424, - 0.10973480909145282, - 0.127681413029942, - 0.164809443870942, - 0.10325106491587407, - 0.109087992824523, - 0.10762503061299378, - 0.133061814394393, - 0.1212801295452964, - 0.09024742607193419, - 0.09903214598567414, - 0.08721462293327732, - 0.12509123664759494, - 0.0851767869551536, - 0.11406805333387428, - 0.09373295161176286, - 0.11095802298690707, - 0.11060800285993286, - 0.12703083039033355, - 0.09171188388832928, - 0.10747507150436644, - 0.11683314518211832, - 0.10879273202017535, - 0.10822415099910845, - 0.16170001853922697, - 0.09136687541154326, - 0.10642974893554304, - 0.11159114993432405, - 0.120289552742426, - 0.11987651884041278, - 0.08985010044009396, - 0.09494072399344633, - 0.11779093652044308, - 0.08625718251701993, - 0.10574520030360249, - 0.10365672272736841, - 0.11537281365895825, - 0.1485189649926291, - 0.14949768757348875, - 0.12225816177722383, - 0.14080004321819642, - 0.1341263397951058, - 0.10479856502021645, - 0.07762767656639095, - 0.11682233156976833, - 0.083011705100323, - 0.12273164213967544, - 0.11995153702370329, - 0.0992549457510415, - 0.09345423615704743, - 0.10381081802486408, - 0.15238210282843023, - 0.11610654359257176, - 0.08214557667375456, - 0.09713548648447708, - 0.09184858247883035, - 0.10365044928835544, - 0.134306939492922, - 0.13543798956784922, - 0.10655782633419869, - 0.08884608884754609, - 0.12344134648767525, - 0.11541879061809503, - 0.10672653467566312, - 0.08801286954245517, - 0.11859415345992406, - 0.09808866005520867, - 0.088591186494652, - 0.11954285655730744, - 0.11662551236932953, - 0.1079731733360156, - 0.09682861501170462, - 0.1209060666940927, - 0.10700987569571661, - 0.09548646344492395, - 0.13843699280062402, - 0.10945109927922037, - 0.1012141840451207, - 0.1333071832178882, - 0.11051232345627646, - 0.09118623936784978, - 0.10998785251294216, - 0.12915456827772462, - 0.15481374936224598, - 0.10183952304596393, - 0.1051927999576256, - 0.08939633760462251, - 0.1029085165078158, - 0.11358787133402481, - 0.13135670102285982, - 0.1204546458170873, - 0.10413042852703469, - 0.09699062754620288, - 0.11599489520569861, - 0.12217024063744612, - 0.10718325907816181, - 0.10454695469799397, - 0.11074621323564934, - 0.11546940002493877, - 0.10324755591689103, - 0.10341885972437556, - 0.1169781376218217, - 0.10021430097966963, - 0.13750161907251762, - 0.1073298587105013, - 0.14352111984129648, - 0.12018726347640434, - 0.10091560794342148, - 0.12441028340556906, - 0.10129179675387427, - 0.11233704824972258, - 0.12476423739850023, - 0.10781678655040429, - 0.09191745734734655, - 0.14134249468944315, - 0.08541168658234494, - 0.09871169055861415, - 0.11697654888168742, - 0.13117729638304085, - 0.1158751905202803, - 0.09906456217847821, - 0.09505380595940831, - 0.09934378490588597, - 0.11056121276493065, - 0.12202057696576168, - 0.08854845776749419, - 0.10173903267170534, - 0.11418964849017606, - 0.10477155918064432, - 0.10130166181321171, - 0.13104421171939257, - 0.13529603533787377, - 0.11276094075693893, - 0.10413093273280846, - 0.10455464039721542, - 0.09977515048168256, - 0.10135580715149105, - 0.11928867472477421, - 0.11035482223664546, - 0.14783856661743125, - 0.11053991441824948, - 0.12918938295363463, - 0.117078104662285, - 0.09026949929488164, - 0.12510096864678558, - 0.09692505680878016, - 0.11413919203036876, - 0.09716580854926758, - 0.1025742493817423, - 0.134090959384316, - 0.15694471307577906, - 0.10307068839389935, - 0.11244155467441302, - 0.12066509557785159, - 0.11544183812667051, - 0.08855153267858007, - 0.13449289272320963, - 0.12326196886239783, - 0.13133272209637076, - 0.1286068970007908, - 0.12501621285494285, - 0.09811015153289118, - 0.09802315732970265, - 0.11451965468464542, - 0.10452170410602776, - 0.10264048002399294, - 0.10807506719424692, - 0.2185900381544209, - 0.11098080160504968, - 0.10351212405830974, - 0.14456094305316738, - 0.1268980970157425, - 0.1228599663313298, - 0.15722213904467675, - 0.11800600797637617, - 0.08700915090707645, - 0.11304179629224244, - 0.0897256873280984, - 0.09350814233839068, - 0.12471364994439245, - 0.10942946483992663, - 0.11275684113158663, - 0.098230921109903, - 0.08828569414177387, - 0.10650464649444139, - 0.11243949723842464, - 0.1321358614775958, - 0.10700768678679196, - 0.10201292020068017, - 0.15135755549397345, - 0.12557620994315213, - 0.09609376818695135, - 0.12411473777965523, - 0.12318252400781675, - 0.12195834502892722, - 0.12617594586808514, - 0.0959591441026108, - 0.1308394874228688, - 0.09128477491276601, - 0.09041296433153738, - 0.11411477773411743, - 0.10565716147721765, - 0.10847823875514934, - 0.15312438013870136, - 0.12204392249675448, - 0.12625879578301555, - 0.10683858244485206, - 0.10089802935362191, - 0.10429582261948184, - 0.12020230671084356, - 0.09933381341380951, - 0.09345324314054346, - 0.12989150035378697, - 0.1115381349253167, - 0.11031217188907205, - 0.09421817361420726, - 0.10688499472207524, - 0.10442623868377657, - 0.10947127336004182, - 0.10791646663611985, - 0.1131991229519068, - 0.09205296577656925, - 0.12137402675673838, - 0.1152368416070933, - 0.1285286884916814, - 0.14012089331924527, - 0.13229945790393355, - 0.1290731988148938, - 0.10130814738459006, - 0.14482803543319858, - 0.08792502508894795, - 0.11550462064994309, - 0.10175625411346483, - 0.1375983667147597, - 0.12653775363485212, - 0.11634743999609912, - 0.13558157008622213, - 0.10529448292843477, - 0.12926793913889173, - 0.11661523128357458, - 0.12489191182792582, - 0.10123819151150953, - 0.1443472435064362, - 0.10801113549509778, - 0.10855108044871768, - 0.09331003457454677, - 0.11506018354712012, - 0.09681933979136527, - 0.14185687358488813, - 0.09808059810804326, - 0.10093335748726877, - 0.0947566744964143, - 0.10604280702182675, - 0.10131782462988216, - 0.11979827563222967, - 0.12534173554493838, - 0.11298690708630536, - 0.11688175351447892, - 0.09487464155222779, - 0.1143373353913623, - 0.13327188535717252, - 0.08946372464373666, - 0.10265776447448145, - 0.1422491618880327, - 0.11594543633517919, - 0.09656667803034324, - 0.11090015062626651, - 0.13050451508476926, - 0.10405799072617515, - 0.09917145567081052, - 0.14191287952528653, - 0.09562111188437009, - 0.10522124368218773, - 0.10687466294437352, - 0.10690728349012844, - 0.11315468581276132, - 0.10186733158005769, - 0.09196345322121151, - 0.09437813456562187, - 0.1275419411402059, - 0.0962247048588283, - 0.10959214201591574, - 0.11495343934046261, - 0.1322456127156202, - 0.10586105384743037, - 0.1354957299537019, - 0.13908629888919288, - 0.13868620863857392, - 0.08955852119493396, - 0.09145910043127897, - 0.10872057525347611, - 0.10224354534988805, - 0.1249343574300764, - 0.11749433499697835, - 0.09321191126284996, - 0.10791254749763408, - 0.16080147707099718, - 0.09836758507299913, - 0.11917013256608515, - 0.0986701922528323, - 0.10239639236353913, - 0.08773442353756264, - 0.1350730103843877, - 0.11666774220857577, - 0.10429142212005538, - 0.09932684722280716, - 0.07964578334527929, - 0.08779148038545052, - 0.10339901646074111, - 0.07966627783972217, - 0.08426761987037522, - 0.1172359984204746, - 0.10955800162616704, - 0.11563065089827744, - 0.14100671351916913, - 0.1297133423555564, - 0.13045748835753454, - 0.11665204625704256, - 0.11303761474055771, - 0.11436014786660534, - 0.09796019898521863, - 0.10027816589798147, - 0.141628725602052, - 0.10773973399889859, - 0.13627812609599696, - 0.12658940044621889, - 0.11500528880113448, - 0.09553176741478482, - 0.13045358219926606, - 0.10630774512823013, - 0.09837808313245382, - 0.11935944802019928, - 0.10804974108408423, - 0.10601185559505442, - 0.11601230392229367, - 0.09926450876249164, - 0.13422353122245936, - 0.12276028619909095, - 0.11147121758422945, - 0.11247848708110522, - 0.11299725452617712, - 0.142539473642951, - 0.09541418377585524, - 0.11775587774674585, - 0.12459169940533131, - 0.12265705873936998, - 0.08619147179728376, - 0.09711105792490575, - 0.1208597281278105, - 0.1667992047369041, - 0.10649583244689502, - 0.09697394683366518, - 0.0898886014472049, - 0.1262380322866216, - 0.10609115503134273, - 0.1502087128662385, - 0.13650169299312562, - 0.10017206356006965, - 0.11819289254772786, - 0.10522887746988296, - 0.11882815821162743, - 0.12644212073917124, - 0.1300670551567691, - 0.12230550787589013, - 0.11261000815667596, - 0.09197004766274557, - 0.1067935740194101, - 0.1144273693106989, - 0.09440611764370938, - 0.1352913565692707, - 0.09106079231654532, - 0.0920540696310716, - 0.11162834124469215, - 0.11981968907000085, - 0.10612663811533946, - 0.10921002107027127, - 0.09194687418774952, - 0.1089985157139631, - 0.09033485297694176, - 0.08756145062698041, - 0.09123522360558188, - 0.11602362640833619, - 0.10422276556365005, - 0.10340005107757574, - 0.15804875283366093, - 0.14463276499980923, - 0.09835506940681922, - 0.1150429564262036, - 0.08925764017560273, - 0.11911563148630094, - 0.09265283353146475, - 0.12279446600703393, - 0.10563488246461056, - 0.15460263916088557, - 0.11807477828903927, - 0.12758357740320644, - 0.11930735659287842, - 0.12143084407618815, - 0.11168613270524333, - 0.13137631130826086, - 0.11545857564696721, - 0.09030948725952863, - 0.10160135101044125, - 0.15899328989846898, - 0.0936221396762135, - 0.13155292931055393, - 0.1222766200104572, - 0.1233784786744145, - 0.10266435688055987, - 0.11947049211090593, - 0.13092386117215515, - 0.12159861170786662, - 0.1012881169842789, - 0.09173441493103714, - 0.10426286060996376, - 0.08114977084695789, - 0.1132967626558266, - 0.09351512474918518, - 0.08388462555306873, - 0.1354759797077308, - 0.10550904997890351, - 0.1227026302161411, - 0.08435041894668044, - 0.09671112848606231, - 0.10720232822503643, - 0.10525502831928299, - 0.0912385548371543, - 0.11549655690702279, - 0.09611159642282037, - 0.10657934489479998, - 0.15923396331153009, - 0.11718147580048119, - 0.1376196040318028, - 0.12264073852542785, - 0.11230217594435167, - 0.11149742706148581, - 0.08971609797752678, - 0.09878562033921647, - 0.09327412232384133, - 0.09328122920525996, - 0.10578811668161656, - 0.09670020226994776, - 0.11173024288082946, - 0.10989533336017158, - 0.12457685775784651, - 0.10100524445602159, - 0.09254303588186552, - 0.147271457410475, - 0.12482500193362402, - 0.10041929278636409, - 0.1062404864839439, - 0.0859030561884149, - 0.120736770207277, - 0.1265571595694285, - 0.11693298861025536, - 0.15128899194718676, - 0.11003468260321536, - 0.1053286467781873, - 0.10432063881646876, - 0.10348407868009543, - 0.11313777818764005, - 0.09720968005309144, - 0.1237104257746751, - 0.12706524421888163, - 0.09124796733665622, - 0.14439471724504055, - 0.10557492212491987, - 0.10482391767541839, - 0.10040852821834959, - 0.10897148521860617, - 0.13296231439570744, - 0.10149068453988082, - 0.09983082112897029, - 0.07032814998104103, - 0.1091185830667103, - 0.14175941249259236, - 0.1228563019160972, - 0.11463243848523219, - 0.10707116666368384, - 0.13319025732732728, - 0.120636170269932, - 0.12400849058907108, - 0.08624627382522695, - 0.10750079415634549, - 0.09097419235524885, - 0.12489374475109047, - 0.1271794400323067, - 0.11714441172900668, - 0.1068790635191712, - 0.0917320068088052, - 0.09980298315983559, - 0.1259141570256282, - 0.12146040067329436, - 0.11476389806463448, - 0.1196417196004792, - 0.11565890893312974, - 0.12319446616032594, - 0.09767081916367887, - 0.11359092087432533, - 0.10077909332319905, - 0.09626246025347959, - 0.08283007764403068, - 0.16011095809101256, - 0.13204936337108017, - 0.1332656137791244, - 0.08618684244301962, - 0.15933516046823026, - 0.10650061827865999, - 0.10411519466072526, - 0.1309335695768494, - 0.13819384206440175, - 0.09853902636627608, - 0.1041973828142749, - 0.1341834720358706, - 0.10297551595706593, - 0.14158787125202185, - 0.1470241918091762, - 0.0938273314985402, - 0.12063166434853154, - 0.09376804433058869, - 0.10515219760054173, - 0.09647928112339034, - 0.09901043627957895, - 0.11850925076741879, - 0.11885707722479169, - 0.127328560655465, - 0.12760888429012868, - 0.11271608723798193, - 0.10932171884004531, - 0.11405686344463267, - 0.08390567521044544, - 0.11082710860645904, - 0.12116628940982029, - 0.10423725336839193, - 0.09081499234280689, - 0.10679846454679598, - 0.1245706476914276, - 0.10044285989768378, - 0.10999466424745405, - 0.11213860595308754, - 0.12633529025908874, - 0.13657379643579715, - 0.10561193507792466, - 0.13206946984573736, - 0.11096680271303556, - 0.12841405714496487, - 0.12866059553213277, - 0.09593604585694733, - 0.10078849473659439, - 0.10627784516685893, - 0.11303901567463018, - 0.11594805335847326, - 0.12261289752415776, - 0.09792743161481479, - 0.08447060284166054, - 0.0961880804621147, - 0.09347973520265736, - 0.10218218845506845, - 0.11747987820219322, - 0.10635427123326607, - 0.09857137673398617, - 0.12638865146126504, - 0.10466603161724226, - 0.09138349577821785, - 0.1391181999248328, - 0.11448059030937491, - 0.143376555149379, - 0.11992496693163013, - 0.09616806682573871, - 0.12337762446299698, - 0.09417352971532499, - 0.09871810945500326, - 0.12402840266797231, - 0.08541951145565235, - 0.1098402200269409, - 0.09835500927832967, - 0.09398861259593032, - 0.12373069312735233, - 0.11224771766212777, - 0.08994139359363194, - 0.10475519992151655, - 0.11062426524645891, - 0.14098097758593206, - 0.09917158829587028, - 0.100350309847201, - 0.10922892662725066, - 0.13410982246570355, - 0.12321689426682733, - 0.09701493667882548, - 0.14157251875700472, - 0.11051929896645832, - 0.13442085568410586, - 0.12712725899954835, - 0.13162077422758472, - 0.10163504627824912, - 0.10458757201399305, - 0.09795776520773296, - 0.10703440193530006, - 0.10645425481626446, - 0.11279650888948108, - 0.1270586386326464, - 0.13975605328091772, - 0.11166611868908508, - 0.09776017041762061, - 0.1031092257902521, - 0.11731618981202302, - 0.12876937160367086, - 0.11638171874125888, - 0.10202549357981865, - 0.12637795518737088, - 0.11636462583033082, - 0.1288727953041962, - 0.0902510826908436, - 0.08853037238072482, - 0.1241689473878221, - 0.12286706466748797, - 0.09499146119883806, - 0.1052420281530076, - 0.11093636631841543, - 0.09114112285344264, - 0.13367352513166106, - 0.1442202023604478, - 0.1282020888568119, - 0.12171827195368466, - 0.1166697641919844, - 0.10168706730111021, - 0.0988643886259021, - 0.08572333432284984, - 0.10684287354393593, - 0.10253569354815677, - 0.11088196241397162, - 0.14264152669984784, - 0.10995047153923383, - 0.11629071446448572, - 0.11010371528645145, - 0.11587423385292774, - 0.10117112550314536, - 0.09165544436389346, - 0.09748606051907814, - 0.10124786027155686, - 0.1141990405385166, - 0.14318173902556708, - 0.11850401372588053, - 0.12219172646942818, - 0.10075677954956709, - 0.1055401495201731, - 0.11265043119454421, - 0.1323608611959669, - 0.11748795685882871, - 0.1012984700773516, - 0.09888127247973581, - 0.11897078260686011, - 0.12020696757277595, - 0.12505663774728384, - 0.09389423206383274, - 0.11266439805814049, - 0.09669376051098359, - 0.08637848824293702, - 0.10012327287673792, - 0.1327053423255219, - 0.1202342405495923, - 0.11960392027451784, - 0.10398749096200618, - 0.09584130955193083, - 0.1313219020225265, - 0.10515296563884666, - 0.12117548478787356, - 0.15740753705245164, - 0.11371708298122804, - 0.09997658816866721, - 0.11607739589303331, - 0.1162697706484524, - 0.12031292086074129, - 0.1046159711958808, - 0.12433018340285562, - 0.1291647003426886, - 0.12261538336613452, - 0.09654578124778772, - 0.10658629906606544, - 0.13933210487787728, - 0.10412365935677835, - 0.12959763194802787, - 0.1385442526098709, - 0.12007294719101655, - 0.10538894149703895, - 0.11752694233701143, - 0.10255069184022493, - 0.08297709454689345, - 0.11841968103649406, - 0.12628503665976454, - 0.11647802021839991, - 0.10016026608067473, - 0.11507969003346356, - 0.09898091079205636, - 0.10744782080339922, - 0.09996217261650166, - 0.11554930303256113, - 0.08443483123090267, - 0.1402669153936989, - 0.08810085274811778, - 0.09807914925050885, - 0.10973559078554927, - 0.09916589427285671, - 0.1228444359198599, - 0.1359252750337536, - 0.14233241019326898, - 0.0866560822610504, - 0.13056814390444488, - 0.11622167377709323, - 0.09213833205953387, - 0.13142554464234446, - 0.09703732131002306, - 0.11798334712784844, - 0.13010778560496725, - 0.1052389996982234, - 0.1418172833568581, - 0.14410875395140063, - 0.10225923934701536, - 0.1292890507274553, - 0.10259318165482843, - 0.11566568567881196, - 0.11418916361841919, - 0.10655098653344719, - 0.11689736423043573, - 0.09358486864517553, - 0.11263631898835688, - 0.11634085566826147, - 0.12134456847626235, - 0.10174518439993199, - 0.10125295378344445, - 0.08717965083741865, - 0.11587905035201711, - 0.11026179681745238, - 0.09210027429814759, - 0.09942117706881073, - 0.12039353316820044, - 0.10817303503370802, - 0.1380705880825703, - 0.13546836747096647, - 0.10750227870681305, - 0.11758170530860965, - 0.13895396799058626, - 0.16608391256192134, - 0.14332322158304803, - 0.147721798784936, - 0.16690301140077063, - 0.10111248486870743, - 0.14571484059102086, - 0.15978720425533147, - 0.10681834187451815, - 0.09994285728084323, - 0.11944578178552023, - 0.1421284377352494, - 0.09746476345445212, - 0.10485015921064499, - 0.0976793056466951, - 0.10843024300389195, - 0.11178177424637557, - 0.12299905372876, - 0.11156841226963647, - 0.09884739094153057, - 0.09583171909581792, - 0.09483419111502671, - 0.12433840547557488, - 0.1004072939197732, - 0.1128868361979537, - 0.1022739365374693, - 0.12125439346917355, - 0.10663747658667727, - 0.11708502423178471, - 0.1198700183668587, - 0.12498444302047175, - 0.09151699126173564, - 0.13142875679675753, - 0.1225780108692634, - 0.09308636340257653, - 0.18152556687550941, - 0.09843484176280767, - 0.11103434720600422, - 0.11198509977367983, - 0.08848344518417808, - 0.11117331392952803, - 0.11667291746219303, - 0.10914180843069568, - 0.12590856616775614, - 0.09436794784295319, - 0.12362958573437259, - 0.10942842809546394, - 0.14475490356792386, - 0.09877495614529799, - 0.1324808932098535, - 0.12739195940551565, - 0.12396780286286614, - 0.10277054898977334, - 0.09839224799754072, - 0.14044888165484737, - 0.1341097754897827, - 0.11275291948179218, - 0.12838302268464982, - 0.1254222032936939, - 0.08614373965549552, - 0.08132983208180751, - 0.09435921019865255, - 0.08465950527629987, - 0.11117162466590924, - 0.10358579101858488, - 0.10101388394739252, - 0.1005986224803624, - 0.10641681408598072, - 0.10954491626430064, - 0.11858429556949517, - 0.10383496463514785, - 0.09190043299358416, - 0.08988256866430278, - 0.0958329624086353, - 0.11342538831357811, - 0.1162380304536144, - 0.13989440412694823, - 0.1031919769141774, - 0.10219358542956017, - 0.08512938818967075, - 0.10793610068192044, - 0.12758706676684922, - 0.1505689570119666, - 0.09925476125865207, - 0.10730933638478216, - 0.1445089396796475, - 0.09642359161876109, - 0.11695559008749981, - 0.12129681765797755, - 0.10719759452108771, - 0.1081436289781793, - 0.08691911083358343, - 0.1514403142110117, - 0.08549485053864603, - 0.131492994450105, - 0.12484863246397478, - 0.10397137680233183, - 0.13306633908308652, - 0.12302855946510212, - 0.10630439891629945, - 0.09709031490484579, - 0.09743257388887484, - 0.1244506376533652, - 0.1031633622452832, - 0.09406338459071205, - 0.08921920734204807, - 0.11443371517878854, - 0.10780657568623093, - 0.0908917232440767, - 0.14383584715901604, - 0.1095379799842071, - 0.11851663249278416, - 0.07528556365752329, - 0.1426748307638476, - 0.11710673317908311, - 0.10534520979531874, - 0.10799932810029392, - 0.10156633896581231, - 0.14771435061858057, - 0.10780825158302512, - 0.1171403542497037, - 0.11802186615281467, - 0.10744952605594998, - 0.12889161954976455, - 0.10577744075742229, - 0.11242943644753882, - 0.07768443384497017, - 0.1191102431313719, - 0.10322942718507215, - 0.0993629965536601, - 0.1106278635147308, - 0.1356385026408261, - 0.09850187787568444, - 0.10971794628974277, - 0.13028259608434248, - 0.10109744295053463, - 0.12126460314702067, - 0.0974762910515909, - 0.09181754020657447, - 0.10291316830537041, - 0.1209883975366048, - 0.11370412487731082, - 0.12700796740681305, - 0.10667172292224335, - 0.13167505212296002, - 0.11060907695438471, - 0.11946261805065453, - 0.12299355859370852, - 0.1251307324540219, - 0.09533245634432477, - 0.11132549455859068, - 0.1188158563182915, - 0.10386717638566026, - 0.12280795217627662, - 0.10397135471469508, - 0.13113573792962946, - 0.11109083553970583, - 0.10566395649392064, - 0.14224442729242515, - 0.09861003520025452, - 0.12161266370870166, - 0.1393209121107751, - 0.10152617289036539, - 0.11919350661221723, - 0.11989096361029276, - 0.09037044372027955, - 0.128095677449742, - 0.11968595460528335, - 0.12325712015338192, - 0.14129024076319405, - 0.09932365653105597, - 0.11486276137603263, - 0.12378898638735464, - 0.12227093303015116, - 0.10842617049408629, - 0.1106269344294754, - 0.09834340597353675, - 0.10174037906751825, - 0.1487099396275481, - 0.14468279517984445, - 0.09191917671994378, - 0.121572666102686, - 0.12562930787357682, - 0.11447328047224677, - 0.10808985304211818, - 0.1337137283421717, - 0.11640348244136768, - 0.12675757265042195, - 0.11650881662805405, - 0.10965275396826446, - 0.09207324046255264, - 0.10216181185094537, - 0.11014438119906478, - 0.1128840732223037, - 0.12190202312692344, - 0.12361151162753478, - 0.1175522578665673, - 0.11199303069963831, - 0.09549037128134723, - 0.09226523003590768, - 0.09868804586348644, - 0.10918880967271322, - 0.14669844271345203, - 0.1061185379824962, - 0.10832670877728465, - 0.10724608348211195, - 0.1018611323612757, - 0.10030015576374492, - 0.12460864964780984, - 0.09081175004124281, - 0.1370919031582, - 0.18468141471123278, - 0.13196503425068404, - 0.1283501210716807, - 0.11588627468739628, - 0.10640251652881895, - 0.1088905295160214, - 0.09803997322596525, - 0.12298369353455964, - 0.09065225020056239, - 0.1068937966738822, - 0.1826528036098765, - 0.11462079779097123, - 0.14433631987594342, - 0.16582693479170102, - 0.11634919143727204, - 0.1415100164927109, - 0.0982767298798692, - 0.09814419890100232, - 0.09760750385657092, - 0.1217279554516101, - 0.09844738894109269, - 0.10439174610184754, - 0.12193609864363493, - 0.11360105903244681, - 0.12206189858836468, - 0.10439336129529618, - 0.11178055490548088, - 0.08947552594786608, - 0.11311170670397247, - 0.09112826446754677, - 0.10623114231107292, - 0.10929416618682224, - 0.0979877562696327, - 0.10753919406245442, - 0.10797077586828942, - 0.13639225071256622, - 0.1220080382421621, - 0.09345778725353768, - 0.1092957691975473, - 0.11064828141880577, - 0.11375320306467714, - 0.11235531935564068, - 0.13715479013507306, - 0.10244005061858963, - 0.12984988716108997, - 0.11424695875925253, - 0.09977036257629268, - 0.10972512875847897, - 0.10104021942022509, - 0.08751036651962783, - 0.08699616781415426, - 0.0955981017572752, - 0.11415359317314207, - 0.11392278219321059, - 0.09878306915184777, - 0.10965360230282464, - 0.13050863951466005, - 0.09631876504422109, - 0.11746572340485581, - 0.09864957191108767, - 0.09894341030327795, - 0.1233873571926936, - 0.0991879826694588, - 0.10700785364660914, - 0.11358679243749571, - 0.15682778801976582, - 0.13036920426020007, - 0.12796295700020044, - 0.1031307400846136, - 0.1199740816832794, - 0.11494781800363606, - 0.09565866222748963, - 0.11677758201276722, - 0.14698829275487582, - 0.1070711424626346, - 0.11749413158400562, - 0.1158837255034783, - 0.10776808624427678, - 0.12191919438526777, - 0.09730165512206787, - 0.10192986157146604, - 0.09009605320093862, - 0.12532572360564986, - 0.10602498133496688, - 0.09011142272413458, - 0.10527098779162933, - 0.11172399033298328, - 0.08239491589551388, - 0.12435161475260754, - 0.12206171163842877, - 0.12699150514032712, - 0.11404234576815377, - 0.08341105275785281, - 0.1255343670268905, - 0.1607175144136266, - 0.1467629325155192, - 0.1045272740720964, - 0.16416210015379032, - 0.11256252652154461, - 0.10688833429563822, - 0.11439056884146255, - 0.0888074154405151, - 0.09491067693900175, - 0.12951698467572592, - 0.10491085221064751, - 0.1201687858109368, - 0.09165428545396465, - 0.11065400506613629, - 0.10819804375512321, - 0.1248810630888452, - 0.13352814370224592, - 0.14190494533454798, - 0.10027147747757871, - 0.11801181426921879, - 0.09851793211877108, - 0.12584072050450884, - 0.10583390906766546, - 0.11997559070990436, - 0.11456050737772758, - 0.11915634080071172, - 0.10263820355266115, - 0.12339625429445221, - 0.10287613238368287, - 0.09863555560390518, - 0.10453829567819818, - 0.10542369325120186, - 0.1114060492553071, - 0.10063778450583116, - 0.1016199789424976, - 0.11354117768085734, - 0.1016805531030259, - 0.0954474486997055, - 0.10190358163455282, - 0.15697239916505873, - 0.11195555223265923, - 0.10008321417971121, - 0.09032954218396734, - 0.12832737031627267, - 0.10031086448451476, - 0.09607282739871054, - 0.12326869951118205, - 0.08281387633010795, - 0.09289089993882799, - 0.09888730851166704, - 0.1473375117540928, - 0.10452973740902467, - 0.1371270217042871, - 0.15032672104939443, - 0.11569398906465102, - 0.11162539270170306, - 0.0903888240700675, - 0.10047576388069761, - 0.12149365786142581, - 0.11350566644502863, - 0.10027434409793885, - 0.1012176302599843, - 0.13441188363481205, - 0.11227079548255463, - 0.09235430060884883, - 0.08710481937984395, - 0.12670892373765186, - 0.14708288283131227, - 0.10498647900591819, - 0.13575806251589734, - 0.14101751461474657, - 0.14151819672481494, - 0.09909357188447455, - 0.11460201189779809, - 0.08898932453961218, - 0.1159848782722094, - 0.09480994493255777, - 0.11200083998079771, - 0.11713325388997581, - 0.09412186855326624, - 0.11989299520974686, - 0.12912788294259683, - 0.10343789316831248, - 0.10996091066552088, - 0.09986082422013258, - 0.11241805097743357, - 0.14532327973798148, - 0.13500547387229206, - 0.10643190687129615, - 0.0971859530530374, - 0.09630318014244384, - 0.10373491736092882, - 0.11054161571015646, - 0.13041832035767822, - 0.1255612050358192, - 0.10210118197924813, - 0.09649296677060254, - 0.1521645082735675, - 0.10658717727872333, - 0.12386452188103801, - 0.09768414521270519, - 0.11578119750395978, - 0.13550455416599788, - 0.13958163444138733, - 0.12139097613900264, - 0.15082974772678423, - 0.0879213732497754, - 0.10843938997045051, - 0.1031445459710952, - 0.14005025112741754, - 0.14546038056191182, - 0.11686156237676343, - 0.0877632781605115, - 0.11425059056755923, - 0.11144836399156774, - 0.14286198141364725, - 0.11493421669506464, - 0.11318489631115582, - 0.10682334134651128, - 0.1281099474917621, - 0.09311588423464058, - 0.12507256590097182, - 0.13403897378356816, - 0.09465856639468592, - 0.10961338138057153, - 0.11669604496586344, - 0.1413373965964442, - 0.08620351758374675, - 0.09844507381794723, - 0.1170724811140812, - 0.10174889523285187, - 0.11640670424534645, - 0.11900683211179953, - 0.1159131705518592, - 0.15707958787547777, - 0.1458447034736938, - 0.1639524343846114, - 0.1282889488782827, - 0.120692565707973, - 0.10561094039532129, - 0.15437967641280098, - 0.14185972256969714, - 0.14817910902465853, - 0.10211754356195726, - 0.11154166409162268, - 0.09736560709438184, - 0.1245924079910371, - 0.09340165462495598, - 0.11078791356329053, - 0.08570040012518391, - 0.11187027784560676, - 0.10456334292191259, - 0.09600049066340277, - 0.14291807030542186, - 0.08994763225634053, - 0.10796306150963009, - 0.10580410245701856, - 0.07746248784246378, - 0.11892754630437895, - 0.12666659949952058, - 0.11267605390852993, - 0.1274742204725091, - 0.1258600023668763, - 0.12480721191735289, - 0.11819904724792123, - 0.1132049579270956, - 0.09899628157090536, - 0.11366856614889073, - 0.11823712334224525, - 0.10528647107103392, - 0.10899945054652548, - 0.10339327126119882, - 0.09974545773167157, - 0.09533028711929464, - 0.09434573775174422, - 0.1537972852472466, - 0.14316575826406636, - 0.10414427361859661, - 0.10974694777399832, - 0.10490183091997522, - 0.08981561980523094, - 0.11642316296032226, - 0.10068239810006274, - 0.10536339695501692, - 0.08924296283734882, - 0.095444808015198, - 0.0921237046828287, - 0.09449525772681851, - 0.09832588158033155, - 0.12080022054814199, - 0.10375446002673895, - 0.09664536127041415, - 0.10224011177147493, - 0.10842607850114286, - 0.1089925238707534, - 0.10505222688914503, - 0.11300742126983385, - 0.13070258925252692, - 0.12056065150992172, - 0.08382048778973099, - 0.1493715846883938, - 0.11252442081107598, - 0.1221159693135955, - 0.09977865518169973, - 0.09260622512857097, - 0.18145036290497385, - 0.10099999821627756, - 0.12761640714497688, - 0.11001186322401893, - 0.1324634509918655, - 0.10038725403312669, - 0.1250176159591704, - 0.11490291107730663, - 0.1013961838084524, - 0.10771389055917506, - 0.13476226926231527, - 0.09222993342694158, - 0.11664873570716403, - 0.14920650307810526, - 0.10257778280171954, - 0.12532167436820127, - 0.08099633561623398, - 0.09183608629489719, - 0.12584972491972501, - 0.12609920474557978, - 0.12907494201491473, - 0.115274973184504, - 0.16821297166456145, - 0.11886048741235651, - 0.10984970680448328, - 0.10073571630359193, - 0.10895121851801677, - 0.11787541724712687, - 0.09417584766700636, - 0.13286266337876057, - 0.09064227862254702, - 0.14570793909613491, - 0.11005035402485676, - 0.0982033612758034, - 0.09062451377411883, - 0.11627138891436775, - 0.11882336138222488, - 0.09634118376571166, - 0.13271168862652413, - 0.09504271988797677, - 0.12317451749713107, - 0.10067262469557095, - 0.10719751664981524, - 0.09450743474106281, - 0.09586878924830618, - 0.11691305668675807, - 0.10543592849828701, - 0.14409042776965095, - 0.11566302056424632, - 0.12008670371847714, - 0.11403922893745991, - 0.14767897123223922, - 0.10434620156664594, - 0.11945777772870447, - 0.10890929880863882, - 0.11088414596606327, - 0.13631899985612328, - 0.09475271078037838, - 0.12243031297602586, - 0.11589934914044726, - 0.0894800542742892, - 0.12429473963029473, - 0.1628919725631277, - 0.10987120896228383, - 0.13577300323255675, - 0.1078821863313244, - 0.13269346837568824, - 0.1823515330654194, - 0.11154527664323223, - 0.10159028745759602, - 0.12548042510162252, - 0.12049865213003352, - 0.10016504560181093, - 0.09179215828471225, - 0.11134420654271554, - 0.10684786129000219, - 0.10506584203015501, - 0.10907821999752333, - 0.11190555205583022, - 0.118476178751345, - 0.13698738634595095, - 0.10879074505802469, - 0.10751811128660685, - 0.12403835192876181, - 0.1173016845757143, - 0.11111652417086505, - 0.10687802394252367, - 0.12988446621151303, - 0.11891926916221333, - 0.11682384521576925, - 0.10880227383128271, - 0.12373332345928283, - 0.13233902671925685, - 0.09837369255269567, - 0.14874709961060106, - 0.10859211863231782, - 0.11691735046525933, - 0.11412135024267636, - 0.09724321756521243, - 0.16627667489458592, - 0.11517226264113349, - 0.10590674900846996, - 0.12931611211518682, - 0.10952116539306073, - 0.09267070349915614, - 0.13538953167836934, - 0.08643596450854081, - 0.1468445059343964, - 0.11136465494500966, - 0.11930303234311286, - 0.09766753008187148, - 0.12233904857359754, - 0.09505741473324246, - 0.11018707049432203, - 0.1234949746226398, - 0.12404623898697828, - 0.08904311155121691, - 0.13794616976398233, - 0.1175891427877159, - 0.10461328707036471, - 0.14170804473450593, - 0.1077728538468712, - 0.11539147687037597, - 0.10094166332840158, - 0.11109754502589658, - 0.08690341330459724, - 0.10625994728455786, - 0.10764840127134417, - 0.10983208419913498, - 0.12961520031738344, - 0.14972826494323513, - 0.15033553378530995, - 0.11114568788552308, - 0.12330374651831177, - 0.13330497332619323, - 0.12184237219046357, - 0.14104129283583758, - 0.14255037319999034, - 0.0926275707555871, - 0.11284246473252468, - 0.09717175418964384, - 0.09469660581588958, - 0.09938606076217978, - 0.09848554489496293, - 0.11003610794088875, - 0.10578867325882044, - 0.11781156142365029, - 0.10173367806466174, - 0.11156952657798207, - 0.11871764076160536, - 0.09365232578566705, - 0.10039946920846884, - 0.11152461928759985, - 0.10891770232993535, - 0.12046903008613154, - 0.19147580927322164, - 0.09528608839977773, - 0.13704925464646633, - 0.12762227037706603, - 0.10752836712292464, - 0.1209749311948433, - 0.11500615643528399, - 0.15446010736192617, - 0.10582708289234755, - 0.15062726268219842, - 0.1046465256133733, - 0.1088267050075203, - 0.10709461642691799, - 0.12030821434438557, - 0.10983985375416565, - 0.12476004173700729, - 0.09995112385625353, - 0.11468955713830589, - 0.08349977578117944, - 0.09950882792791912, - 0.09934756267478519, - 0.10224272920850463, - 0.10236739099853386, - 0.14471237339441792, - 0.0805944255414127, - 0.10273891916909783, - 0.10240920152615744, - 0.09881668924295611, - 0.10765060070474979, - 0.09161054190451799, - 0.1108177724922043, - 0.0961460049796572, - 0.1005333867544922, - 0.11563779838163606, - 0.08684074081906215, - 0.1003625128830742, - 0.10168219666636055, - 0.10582379146140283, - 0.14450341538021613, - 0.10996286283802711, - 0.10508213388481874, - 0.0909036543221299, - 0.11201155274446144, - 0.10044721957850909, - 0.1019602004254942, - 0.12562614071968234, - 0.10280122028833846, - 0.13750963158124363, - 0.14120606919766432, - 0.11585001228063051, - 0.10804816142727047, - 0.1016924565935246, - 0.10632691221252476, - 0.1095899953970862, - 0.09625517307982652, - 0.09943808390986587, - 0.11571111529348303, - 0.10441570518688151, - 0.09956418419955493, - 0.13309142516973269, - 0.08927150738246363, - 0.13341802538711028, - 0.11188261085496963, - 0.1040435921392071, - 0.10806415958130115, - 0.10171982761944608, - 0.1298426805117217, - 0.09781007640212815, - 0.09162243973051858, - 0.10635042439896712, - 0.11097491020824812, - 0.10060134236692043, - 0.10665951389817255, - 0.11119255536113205, - 0.10766741940124726, - 0.13307430390247285, - 0.0956582214686786, - 0.13352771426841112, - 0.13187328410772564, - 0.11178487314435256, - 0.1218078123239976, - 0.10718823161960431, - 0.10065044176850131, - 0.09255810971578292, - 0.10939148053769533, - 0.09454383405987186, - 0.14728534926488315, - 0.12096250580608278, - 0.09055052319723282, - 0.10478184655502804, - 0.11332129219473172, - 0.10480190841374429, - 0.11385217281614902, - 0.1074958188723049, - 0.10846391697620218, - 0.10961648117763498, - 0.10062251013396376, - 0.10447722647869195, - 0.1013885575751126, - 0.11318596231334192, - 0.11911882914299045, - 0.12613377978335766, - 0.13356863019976392, - 0.14692893548112168, - 0.1154136032667647, - 0.12482776367011585, - 0.11758006196401966, - 0.10770242441033315, - 0.12205141234031971, - 0.09106959054850272, - 0.11530952052104003, - 0.12043911637567105, - 0.09685393335522598, - 0.11184322334387684, - 0.09537259289170448, - 0.12713692619578126, - 0.09939295574689573, - 0.09788779442358185, - 0.1192826712705181, - 0.11789363028150873, - 0.10885955147525199, - 0.10355648576547635, - 0.09348540007961262, - 0.09575370082863775, - 0.10917567376089142, - 0.1310949018036759, - 0.0970253424585964, - 0.13289593178545525, - 0.10464840306653045, - 0.09839569645731126, - 0.09068755688810681, - 0.1392534220833217, - 0.08619498732875905, - 0.11741705200800301, - 0.10414179384958294, - 0.11124928090249446, - 0.13800046195604504, - 0.121311001816974, - 0.11399406688759905, - 0.11645647167276515, - 0.1213432193827061, - 0.12024802257158959, - 0.10527518454570747, - 0.10429779784731474, - 0.080902384482692, - 0.09861773536216434, - 0.10747878197537376, - 0.12291939031530878, - 0.10908013274592746, - 0.14464918458522577, - 0.11074605689768219, - 0.11175247751291656, - 0.09550568809509649, - 0.09793675476129615, - 0.11766380730525564, - 0.10417620006021545, - 0.1445679285613327, - 0.17913227287305378, - 0.0864118930804842, - 0.111501655578419, - 0.1456688146791101, - 0.11976522069730859, - 0.07905003860731026, - 0.11720402019228159, - 0.09134599492262198, - 0.1382998762543477, - 0.09496652829094662, - 0.12193658004375767, - 0.11743760959595895, - 0.08845773380868063, - 0.13281639279746088, - 0.1460149491195486, - 0.10142549995687754, - 0.11412710307118926, - 0.11418641253948236, - 0.11408946820680312, - 0.12522228900683643, - 0.12711788522087109, - 0.10377560127330136, - 0.10474870239757432, - 0.11938850199154338, - 0.11333450109776629, - 0.095425047422071, - 0.11565186391163798, - 0.12510727327104887, - 0.11115550898674517, - 0.08982294274752432, - 0.09766577879799133, - 0.11478663196109594, - 0.09321277757103101, - 0.09372826477358459, - 0.11578105465009425, - 0.10512031506805489, - 0.10699278542878966, - 0.12270650958009674, - 0.12282161470707484, - 0.10805214574701594, - 0.09462666055470036, - 0.11644928932169735, - 0.09354476332139094, - 0.0964218986139216, - 0.10369346727761053, - 0.12220775716942427, - 0.11343037266610193, - 0.10159723930437906, - 0.09756867587239755, - 0.10168239191100092, - 0.15821171916501403, - 0.11660669944216925, - 0.111341328349156, - 0.10723690369673991, - 0.08749886583571623, - 0.10039275817582896, - 0.12631608358575672, - 0.10805300367677431, - 0.11289523918717798, - 0.10046214173849233, - 0.08915601932338235, - 0.1150330995469213, - 0.10104940886781041, - 0.13653796594176637, - 0.11516565541680067, - 0.11012776623821074, - 0.1326341152208875, - 0.11348849465853376, - 0.1112996052820791, - 0.1297130030218393, - 0.1125990536067464, - 0.12301959249062598, - 0.13195915426005814, - 0.12706389444580854, - 0.10597550241878799, - 0.10931764202925388, - 0.1388278983915456, - 0.10575666816304083, - 0.1009144431463819, - 0.10328881840085719, - 0.11100811244547085, - 0.11101177465768873, - 0.08360906944895663, - 0.1161257169879861, - 0.11430461527852519, - 0.09961308415108702, - 0.11211890482108924, - 0.11061603889826362, - 0.11411188669167467, - 0.10891966607091597, - 0.07429173608744245, - 0.1266090057606641, - 0.1499194967194716, - 0.08698601840445824, - 0.11464905923849181, - 0.13725239438067435, - 0.10374196777317272, - 0.09854737258191455, - 0.1012098424358151, - 0.08452301514486149, - 0.11998083550396747, - 0.1134331300428535, - 0.10929824098469285, - 0.11218255595002183, - 0.09978271553238262, - 0.129752856802261, - 0.1353283312636753, - 0.10907827387547556, - 0.13948207344911426, - 0.13204737196328525, - 0.10545486661707919, - 0.11889249761755427, - 0.10466576304910193, - 0.1217811422572029, - 0.10604524143974017, - 0.08124907422000052, - 0.10878655229827153, - 0.10910684146865778, - 0.11404487463116994, - 0.1413865761495198, - 0.11125347603379891, - 0.11667209109970199, - 0.11725165168498274, - 0.09896495496983987, - 0.09265466643738952, - 0.12360809922439302, - 0.1057062533901667, - 0.09797341421135773, - 0.08837035734465559, - 0.11458582827284398, - 0.1128577491727693, - 0.11305102891826532, - 0.11658179700233522, - 0.12718608249574762, - 0.11054001297731421, - 0.12222962531924468, - 0.09991419388847687, - 0.1054405818141954, - 0.12845977812502327, - 0.0927200846415463, - 0.10707930716226993, - 0.11350329327229365, - 0.10110766276933697, - 0.0835559835055162, - 0.129047929203135, - 0.10661029722247706, - 0.08445934679204277, - 0.1271718584986909, - 0.10676946138585719, - 0.09345040961373802, - 0.09175786333135943, - 0.1308069106392978, - 0.11304782987894316, - 0.1131606840932615, - 0.17526183495012265, - 0.10734194911095392, - 0.10879906951534644, - 0.13459381950305832, - 0.15073751959356427, - 0.08503134203264352, - 0.09751539134150854, - 0.11696010368259471, - 0.10929820468050248, - 0.09070597783853364, - 0.11751133628700891, - 0.09659974025264778, - 0.12100017738635357, - 0.11458710828209998, - 0.1289399133971312, - 0.09387569057416849, - 0.11570895339113225, - 0.13854522143347042, - 0.09740045801546476, - 0.10207440739120023, - 0.07978289070803087, - 0.12239023683937592, - 0.13676917521334853, - 0.14880476692002317, - 0.10233170580560319, - 0.1001431823186416, - 0.10645328290046539, - 0.1542654450139161, - 0.11019634352290539, - 0.11385367678419168, - 0.11752318665296192, - 0.11283027642486852, - 0.12308645392565251, - 0.13383837143558247, - 0.13756761018017377, - 0.10333599899263478, - 0.13770537487727583, - 0.09744565798085077, - 0.1157266086430002, - 0.11874929587562985, - 0.09025171528931185, - 0.10672913108220411, - 0.1344126886368384, - 0.09705048631533014, - 0.11099523644088735, - 0.10798534939967948, - 0.083327163916354, - 0.09070641114888524, - 0.09625849606483465, - 0.12466060736429808, - 0.10852353082746413, - 0.07676334769920129, - 0.09790381152808485, - 0.09143708592734023, - 0.13359203707553832, - 0.11415958105820685, - 0.1120600148387066, - 0.13275842955719108, - 0.08778104515557124, - 0.10503653177500026, - 0.1395289709268913, - 0.09836226032770737, - 0.10909669484034301, - 0.10271568751280957, - 0.10633630819392989, - 0.1534842559792887, - 0.12380573700487651, - 0.10291798638161162, - 0.11946773291279063, - 0.12473537062603234, - 0.10480204485939444, - 0.09783256645050421, - 0.09613837612652383, - 0.09410510106162692, - 0.12075814027531888, - 0.1010515653090687, - 0.09554080358413826, - 0.08910723227438003, - 0.09986532402769145, - 0.11645329210609827, - 0.13647429147506993, - 0.14711544150442304, - 0.11412482971398208, - 0.11209708048239284, - 0.1312815196874887, - 0.11844664786939348, - 0.12482186851259137, - 0.12226215340819048, - 0.08663040184258904, - 0.1059427096495249, - 0.12351879480826804, - 0.11019404768234854, - 0.18170858587668473, - 0.09558685867731315, - 0.09054480958919527, - 0.11103587636585727, - 0.09475597316235798, - 0.10529080423975082, - 0.1349937349095475, - 0.13374441910027443, - 0.12249808591617806, - 0.1144583849325731, - 0.12253208487220493, - 0.0991782140392231, - 0.10230721159618107, - 0.11642709627092718, - 0.12811057145047117, - 0.12117476448387934, - 0.10758476449986114, - 0.1077969715520609, - 0.138544438540698, - 0.11959171232655208, - 0.09436183184291624, - 0.12543920589532342, - 0.10765299531978917, - 0.12471791852783021, - 0.1078501656626896, - 0.1075907762736556, - 0.14049721362846157, - 0.10509374165541463, - 0.10678968044273286, - 0.10709861709084384, - 0.13525631001556107, - 0.08610854733925107, - 0.12213104321878317, - 0.08551022912888294, - 0.14490743275213191, - 0.09844695047300045, - 0.09768336508909767, - 0.10277194407491727, - 0.11904973906690654, - 0.09590344705694864, - 0.11076490851416007, - 0.11708605246637958, - 0.0819685430539605, - 0.1081398926178078, - 0.11846349830977464, - 0.11710373970154742, - 0.11878730543597193, - 0.12289569607340095, - 0.11390798860609332, - 0.10516052390956176, - 0.14714408923037656, - 0.09516538261647961, - 0.1269351384856783, - 0.12724217434052962, - 0.124415181597825, - 0.12391313919159792, - 0.11618229228244317, - 0.10985795058529678, - 0.11642428076866009, - 0.15285458882418734, - 0.10389886745424277, - 0.12019999777430815, - 0.10348225139498692, - 0.10187854403382715, - 0.10211978902620086, - 0.141553798549176, - 0.12019476063861205, - 0.09080703235046518, - 0.10911745545983025, - 0.1385310539584002, - 0.1108334779109353, - 0.12718822705079866, - 0.09968970145327652, - 0.11900008683327844, - 0.11939391969527517, - 0.10846757399126321, - 0.1190610914664453, - 0.10327827957193345, - 0.11658480449031319, - 0.09031484701997508, - 0.0900957370475701, - 0.10015089130752537, - 0.11126351674502509, - 0.1272563602478278, - 0.08039906198854904, - 0.11096873863470004, - 0.10763090859903436, - 0.10558751833003234, - 0.13344759744492768, - 0.11461895191628188, - 0.1249793520762417, - 0.09501875783228889, - 0.16601511523143347, - 0.10231903662819702, - 0.08891388837751238, - 0.1169439259750655, - 0.12478399619491676, - 0.10658121883837196, - 0.0884328070865354, - 0.13245547393965854, - 0.12877451285545488, - 0.14645948730748035, - 0.1364863249067085, - 0.1074028256970987, - 0.099516232124496, - 0.11096233533081439, - 0.09094770970337243, - 0.08783982995397942, - 0.08619345640550602, - 0.1281568176384579, - 0.10792232747360377, - 0.13829630047768998, - 0.11425405001663724, - 0.14176046378651197, - 0.08347802288176262, - 0.13177375421182716, - 0.09252581251003772, - 0.1156417557165914, - 0.10926180540373585, - 0.1192218800746029, - 0.12021196064847413, - 0.11546798680968276, - 0.10693033538931057, - 0.09716151785905934, - 0.08771036306236564, - 0.12391745425162701, - 0.10453999257828593, - 0.088967109608278, - 0.12049384670935818, - 0.09543622872022023, - 0.11718721680619416, - 0.10460427607478981, - 0.09664455704584449, - 0.11227797249734625, - 0.09595266965999649, - 0.1222376191277021, - 0.12012854983502562, - 0.09570283171359982, - 0.1102308488543087, - 0.14275866612057259, - 0.10528327851649902, - 0.1103444132564383, - 0.0951846832313957, - 0.12249996378530668, - 0.14328088476924739, - 0.0917914841161303, - 0.1255964024666194, - 0.09867170861044582, - 0.12546061626086355, - 0.11766594353173468, - 0.10376550295245979, - 0.10348580738710063, - 0.10851962940001968, - 0.10037434908731817, - 0.12317266582504943, - 0.08900948056859596, - 0.12100420071215802, - 0.11246656652262672, - 0.102773756009369, - 0.13128798709768028, - 0.11378667351690512, - 0.1048252035648976, - 0.08666336541380822, - 0.12001860932457938, - 0.09285969396886438, - 0.12078723486427785, - 0.12571164560058312, - 0.12569495176102702, - 0.12983512522158625, - 0.12241791332620938, - 0.07721004941565403, - 0.10857508905437924, - 0.1345620619437352, - 0.13437643755914663, - 0.11486032179966764, - 0.1003730764670975, - 0.1033085671585031, - 0.10550014232253989, - 0.09991127957887637, - 0.10755018562717326, - 0.10334720624196798, - 0.1316902411526629, - 0.10951430905036563, - 0.10442799159383427, - 0.11813156350422677, - 0.11906554548424847, - 0.09841144678336265, - 0.10861037796287415, - 0.12813124837820505, - 0.09840601496696866, - 0.11606364282618864, - 0.08834851328557608, - 0.10889798847802587, - 0.09247695133784546, - 0.09370200947641989, - 0.10182905394550236, - 0.14688783436635336, - 0.11144803741699191, - 0.10470936692814395, - 0.11702814546688523, - 0.09428747664959526, - 0.13381321785169545, - 0.1386270142991497, - 0.13623949006550123, - 0.1038681614751745, - 0.13243238908741725, - 0.10555468901159147, - 0.09160685975626831, - 0.108228229604856, - 0.147418371350332, - 0.09601868621734369, - 0.0965301230216485, - 0.12194322892685838, - 0.10809697682712785, - 0.1324372700419965, - 0.11017811357263636, - 0.12453180974718935, - 0.10844490076193626, - 0.1070786059797737, - 0.1004260082594504, - 0.10662766262901342, - 0.09817270601956748, - 0.10732252733875942, - 0.1211255135140802, - 0.1059183201198295, - 0.09925648905272859, - 0.12477825485230672, - 0.09137262548226587, - 0.1147628679587091, - 0.08681767977733648, - 0.09143095035315092, - 0.10303832839767481, - 0.12157951796231367, - 0.11847199410647188, - 0.10186841174079704, - 0.11167973016869115, - 0.11623140121039587, - 0.19528132823402414, - 0.11793653471010848, - 0.11614185045545489, - 0.11271981630546528, - 0.09556116666497418, - 0.13251762477063417, - 0.1313051433231279, - 0.1101231628699855, - 0.1056318183318596, - 0.11355528665450944, - 0.11602365145298275, - 0.13350213286321116, - 0.11358542195487537, - 0.12380606573509229, - 0.09249601740012775, - 0.09593068173805269, - 0.11622589299709879, - 0.12804464965968756, - 0.09294403140297844, - 0.10786279657143494, - 0.14259907275943606, - 0.09568558669844301, - 0.17254870176962514, - 0.10644256190446487, - 0.10657079049249196, - 0.11396556681123736, - 0.11233104952105756, - 0.10485924207005093, - 0.14989249848340294, - 0.11094691175443729, - 0.14311050065828326, - 0.10258104778000109, - 0.11417054006317717, - 0.14321328376538217, - 0.09876242045013688, - 0.12337921696521036, - 0.12723519335736727, - 0.11172568016576526, - 0.088680702299498, - 0.10521629308690883, - 0.10759866958222834, - 0.10756325553479709, - 0.10333545025079137, - 0.10590312964303769, - 0.10876049695848675, - 0.09787815035506081, - 0.09474676322543454, - 0.11151255729353939, - 0.13953292747818122, - 0.09546493585226702, - 0.1195420762065209, - 0.10041930059816793, - 0.1386404752002842, - 0.14977606119302134, - 0.09243316760081031, - 0.15052637143493527, - 0.11094039874896033, - 0.11226765327483161, - 0.11061349972392993, - 0.121196778203911, - 0.0910693540242095, - 0.12349377907753864, - 0.15245243653912302, - 0.10382519355339964, - 0.10303760085690672, - 0.09690340510344442, - 0.08851322927813257, - 0.11525733927945488, - 0.10307508146480353, - 0.10839066026905791, - 0.15410250698981462, - 0.12591228958041925, - 0.11229959725933877, - 0.11664842385071975, - 0.08729123941100585, - 0.10602317557190293, - 0.10825489917798617, - 0.0804425390800815, - 0.09922545832998343, - 0.09409541630213464, - 0.13678759966433668, - 0.14200558401024502, - 0.10820881331801098, - 0.11860727677352471, - 0.128992722559749, - 0.08819970158985033, - 0.10125637489600398, - 0.14068637058595843, - 0.09541181646132439, - 0.12384019733532547, - 0.11277697856607398, - 0.09005519623333555, - 0.1001212963536153, - 0.0901248830901568, - 0.13921634332359983, - 0.08610948921844551, - 0.10290537985748421, - 0.18046847139317312, - 0.09221651840025309, - 0.10099478304257979, - 0.10950981492901711, - 0.08873890942072461, - 0.10860723080037174, - 0.08566722615460944, - 0.10120749434148256, - 0.09241131930242268, - 0.10210743778776955, - 0.09049375590076443, - 0.1090125064282046, - 0.10096180592326179, - 0.0873246013212163, - 0.10359068684873207, - 0.10570914511680884, - 0.13481850942862897, - 0.08563887422020561, - 0.12196698176511495, - 0.11659172995310202, - 0.09696581706098954, - 0.15158693812400162, - 0.11367063248458846, - 0.0947032661585171, - 0.11523299255093382, - 0.1097507584481121, - 0.11639511568164873, - 0.09730063676693236, - 0.09486066149486076, - 0.1099248731411627, - 0.1617810643578056, - 0.1018538907376939, - 0.1071150130087731, - 0.13286236794242715, - 0.11714743701968179, - 0.12681683270981553, - 0.10423640878572475, - 0.12659695270987506, - 0.08788331461493791, - 0.15217641529869555, - 0.10251622053323786, - 0.10249192441899709, - 0.1031682274975031, - 0.12672723004571856, - 0.08679269334430637, - 0.11048505618906701, - 0.09294717709470865, - 0.11255074637368019, - 0.12451812136220507, - 0.13144075097701424, - 0.11643582863475052, - 0.11888766108419639, - 0.10866319157935452, - 0.1266505679798141, - 0.11299708651505341, - 0.12077535181346263, - 0.13499609077414304, - 0.15009589567124001, - 0.11893755368907025, - 0.12212161203669387, - 0.11878240724521792, - 0.12729452633095564, - 0.11454646603598863, - 0.11362279036553821, - 0.10067730550913735, - 0.11056450825890812, - 0.12169476219245301, - 0.15856876444200138, - 0.1030825086614148, - 0.08999160521511973, - 0.1490023034931841, - 0.09786473163735396, - 0.12304750443212736, - 0.10421175482546019, - 0.11007216627656015, - 0.09494363462633897, - 0.16042340397484683, - 0.0919713720519155, - 0.10803741811565, - 0.16511309933758628, - 0.11088612789919422, - 0.11491372269659578, - 0.11600835933051368, - 0.1163758337786585, - 0.109715536997481, - 0.11499034001823588, - 0.11059359764631997, - 0.1055269947720974, - 0.13571186982099256, - 0.09541106359675522, - 0.11006353814074998, - 0.11768336643913373, - 0.09900494647014751, - 0.08987417074450227, - 0.12544074739724068, - 0.14402037078063162, - 0.10099064559018224, - 0.1110082672949166, - 0.09893558536220907, - 0.0988745023120985, - 0.09455163895034172, - 0.08631531264101751, - 0.12900431030919585, - 0.08386083554807096, - 0.17791916647063938, - 0.09902346602550229, - 0.10934674349286322, - 0.1183307268067194, - 0.10751336808470269, - 0.09892192117248065, - 0.09627709460220597, - 0.10131742047681823, - 0.17256667164290465, - 0.13344533513989978, - 0.1301986194036011, - 0.11238332900678748, - 0.09030613095075607, - 0.1144846474709857, - 0.16436851776070505, - 0.121023128248197, - 0.11871069295894365, - 0.11203794940144095, - 0.1541337744687165, - 0.10412590798124774, - 0.13400245455667684, - 0.10574142103157722, - 0.1334376358465008, - 0.10384572475159184, - 0.09379591973047564, - 0.13101321483050432, - 0.1079047665143909, - 0.11305194633662796, - 0.10403831270663183, - 0.11786580829904282, - 0.08925399100679261, - 0.090078318447629, - 0.13701261084458619, - 0.11975523549274286, - 0.12022348390474526, - 0.0930505976168724, - 0.08760147579342382, - 0.09969897063958306, - 0.09822071743796772, - 0.10693925522208983, - 0.11829989681391027, - 0.11563866085696062, - 0.10202977057579178, - 0.1157197765775346, - 0.096318211555266, - 0.10263033150679934, - 0.09005302199372493, - 0.11742318847322239, - 0.0961620168387184, - 0.11522966862983927, - 0.13102344288910261, - 0.0846692908780641, - 0.0900364272087551, - 0.10661577870813173, - 0.11188003503096992, - 0.11208709336111045, - 0.1248357711178314, - 0.10270472068360158, - 0.09531806952935333, - 0.12885633183794495, - 0.11173663830971355, - 0.09209760898228908, - 0.10971218328926419, - 0.09524265862881286, - 0.11926085908147642, - 0.11831109718758809, - 0.12144116637696656, - 0.10996791481535852, - 0.15472062692336308, - 0.10230814346560442, - 0.09901964884707885, - 0.11840465145473855, - 0.12599919146284902, - 0.1043115664357292, - 0.12098702848348154, - 0.12401438477009283, - 0.11210616840596069, - 0.10800931444806094, - 0.10225484197088507, - 0.1263409525950563, - 0.08574064054891796, - 0.09400734192000693, - 0.12099674882961937, - 0.11807269660104766, - 0.12188106621714663, - 0.10114359907936497, - 0.09221334518559006, - 0.1059536607239117, - 0.1133632041023611, - 0.1102054299145414, - 0.07283421721335258, - 0.110849259135742, - 0.12034392035911824, - 0.11331156740772387, - 0.15492924770386968, - 0.09913417633173961, - 0.1146748109614584, - 0.12625312120287713, - 0.10144117492351136, - 0.11542807989624164, - 0.10843177641075795, - 0.1088948946385685, - 0.12347724642194897, - 0.10605206982822267, - 0.09859829938441633, - 0.11798748799089588, - 0.10499354135696859, - 0.13154731633200648, - 0.12314523416313868, - 0.10254142289414005, - 0.11171418627793643, - 0.10659856953509056, - 0.12509413857998095, - 0.12971879414696094, - 0.13051698713399534, - 0.1240072300356363, - 0.10625687487183476, - 0.09832757035026897, - 0.12881997775799522, - 0.09461306887756628, - 0.11559977981959454, - 0.11028103215814639, - 0.0859019052147222, - 0.12016986187700161, - 0.12021152835872939, - 0.11863887261467176, - 0.12050053265810678, - 0.09779580330199034, - 0.14760317289030717, - 0.11735109515770079, - 0.10424613238925898, - 0.12099806875889665, - 0.1016050187275955, - 0.12529805436001146, - 0.09403456274618525, - 0.11755196165544546, - 0.1041908027876724, - 0.11317362270875991, - 0.10069052578374005, - 0.10957043173037109, - 0.11687282449907878, - 0.11774315640032057, - 0.1254904117593285, - 0.09351226080956031, - 0.11118847105885818, - 0.1263871219173593, - 0.13206109989769782, - 0.1434942723072691, - 0.11783788718253625, - 0.11091587835070865, - 0.1598220310447083, - 0.09791800866863373, - 0.17284473711367496, - 0.10328599300879109, - 0.12535243803365434, - 0.08692853313172597, - 0.12036957223540579, - 0.12883175963322735, - 0.08828254909949179, - 0.09602177200658381, - 0.10522566495382361, - 0.12596562477678946, - 0.10787321523323107, - 0.0927310904805413, - 0.1097777029175886, - 0.11022427595927754, - 0.10914711952433744, - 0.1150459469237853, - 0.11357305953825354, - 0.07687234892753114, - 0.10230288028189805, - 0.11802998170158648, - 0.14017875180694445, - 0.11711645187971205, - 0.12375946439779072, - 0.10438211839671797, - 0.10505059326866456, - 0.10249586334827047, - 0.09487156132602215, - 0.11554714581832283, - 0.11446498730465784, - 0.11691644884841074, - 0.10176949656291012, - 0.10165513736703069, - 0.13494586549552484, - 0.10467177969829196, - 0.10162106421865189, - 0.1103893061245316, - 0.1286498822988042, - 0.10760696437088509, - 0.08903554385024626, - 0.11248419438355446, - 0.08946299414359643, - 0.09505281507744312, - 0.13384069547027783, - 0.10044881440814389, - 0.09022406459266459, - 0.11689819668486667, - 0.12642416187908498, - 0.13083316962083114, - 0.09509539245710646, - 0.12880718459952598, - 0.10700529225298079, - 0.11100738430403584, - 0.08841661828338088, - 0.09558621889992987, - 0.09949015807992205, - 0.11119745340570221, - 0.12864438856286456, - 0.09273847031944163, - 0.12727641931207684, - 0.08403234233563085, - 0.090387011293638, - 0.11201939950393662, - 0.09610432608315175, - 0.1390322367960449, - 0.10720351664028598, - 0.12333613438715212, - 0.14580758728872356, - 0.11822205650255316, - 0.1059197376602958, - 0.09269215069079723, - 0.10554193443183509, - 0.11843411822468981, - 0.08446191159361852, - 0.09893317711063117, - 0.12009286507215727, - 0.09425144721827755, - 0.10663958698137115, - 0.11763850570292007, - 0.12894503191284265, - 0.09048629235695461, - 0.08921866731914785, - 0.13590987681761987, - 0.13584138023471642, - 0.11839825451576831, - 0.1286363377767281, - 0.12110589701103625, - 0.1215118135378586, - 0.10951687357807098, - 0.1072567793815491, - 0.1628882908080902, - 0.12306311595104, - 0.09710603634230214, - 0.10478489612369847, - 0.1793250534055637, - 0.10057705804644479, - 0.11071551318785615, - 0.13136464477096044, - 0.11104650348603279, - 0.10465620587444871, - 0.12150660107353811, - 0.10962492970454112, - 0.12076933019578744, - 0.10284359913081546, - 0.08832148781215635, - 0.10311972064888578, - 0.09415980229712807, - 0.11540691128396229, - 0.1095003316698818, - 0.08510474025900383, - 0.0988681862233387, - 0.10819103425948132, - 0.1169601672137464, - 0.12627555345574987, - 0.15109717680898915, - 0.1163289074562707, - 0.10480131843267154, - 0.09283350863736678, - 0.12744496147873624, - 0.08083031932794768, - 0.09591443455198653, - 0.11413689653763591, - 0.11581937586341766, - 0.12903635253250345, - 0.13060324399259787, - 0.10410747738003386, - 0.15245478077793273, - 0.12014882664914496, - 0.12616363955256046, - 0.12186417008913106, - 0.11167989359545433, - 0.1958249983468632, - 0.11371875701769248, - 0.10552593673350877, - 0.12477609220524538, - 0.11062168583595432, - 0.12682854010406142, - 0.08740208761983452, - 0.10764078762481384, - 0.12017790595575308, - 0.10761470563181391, - 0.08808526266925162, - 0.10706455607940313, - 0.11625475694359978, - 0.10787165975344812, - 0.11632195642857646, - 0.10650563540264112, - 0.09344514921689308, - 0.09529756950269323, - 0.11917401373943803, - 0.12639493437895044, - 0.1308384024769836, - 0.09376844935522724, - 0.13647154869478634, - 0.1423144519374528, - 0.12431044224232216, - 0.10691849927254732, - 0.09546370645095949, - 0.14158645381737195, - 0.09108087715735887, - 0.12817536405177898, - 0.10298711924688138, - 0.08941491959803252, - 0.13695367510598322, - 0.10921677709225254, - 0.12775989840216054, - 0.09303903184940734, - 0.11751683763578968, - 0.10754480774765403, - 0.12105410413351002, - 0.12238119389715738, - 0.10557690259688504, - 0.10534908730135228, - 0.12155292669966584, - 0.10938330409307843, - 0.1116965664501418, - 0.13827270342175355, - 0.10751206967959906, - 0.12883346519156164, - 0.10806591007309302, - 0.11524026933407253, - 0.1022716376908756, - 0.1210176886127037, - 0.10436253560525997, - 0.1414663591844145, - 0.10529777550452686, - 0.11570247219898402, - 0.10150842120595986, - 0.11150427528132592, - 0.1103518373397033, - 0.11054032912882385, - 0.13450844481247418, - 0.08829558933043706, - 0.10772090303249568, - 0.10454167555135462, - 0.12262280794698298, - 0.09554745356075676, - 0.14549359765946457, - 0.10549418983379256, - 0.12457024731654665, - 0.11879048736962239, - 0.09325356174033686, - 0.0961935049540663, - 0.10603878498055913, - 0.11770432699428687, - 0.1235196143815181, - 0.11195783829859862, - 0.11853132747665174, - 0.10277064789615303, - 0.136494086979337, - 0.11653133526773081, - 0.1236235409991724, - 0.09960506479168064, - 0.12470696794706335, - 0.10446524445145394, - 0.13919899367001853, - 0.12449295487097678, - 0.10915333718629822, - 0.09050236705307967, - 0.10440361829786224, - 0.11874400543655522, - 0.11090062915726456, - 0.09450816258227736, - 0.1219572567173909, - 0.12908438194186272, - 0.09861179156694432, - 0.10712734171772373, - 0.0999430323212492, - 0.16865670089352297, - 0.09619912879840843, - 0.10330746553396901, - 0.11106474198628592, - 0.10630462844865461, - 0.11837911668357909, - 0.11240036135800081, - 0.12440798275255728, - 0.10328686166224735, - 0.1048190316175977, - 0.12643150730759575, - 0.09665241185900804, - 0.11899795667351123, - 0.08006702866110198, - 0.09733727650813119, - 0.09914298979583466, - 0.1173591234249363, - 0.10549110590232591, - 0.15437855310718746, - 0.15389600792805838, - 0.1155152278339158, - 0.09631665149773545, - 0.13171934831442167, - 0.11434522117033342, - 0.08158780388985419, - 0.10066103158294244, - 0.11948054577640502, - 0.09291584549900596, - 0.14059305837269956, - 0.12140351588496184, - 0.18758443485324322, - 0.09660325681541232, - 0.10680888748877854, - 0.14309350376548308, - 0.10380734973289511, - 0.11840238966374815, - 0.12834068024919792, - 0.12794630135419482, - 0.1236853122108083, - 0.10400061671608118, - 0.11709212105668247, - 0.09373367119887435, - 0.11008445024799561, - 0.13117008985517573, - 0.11417497165302455, - 0.09305437418097152, - 0.11984221000707974, - 0.11177050946902395, - 0.11313211900795267, - 0.1029056811589223, - 0.08393834763759271, - 0.09793694758406861, - 0.11057177286491486, - 0.1437121194552179, - 0.1088685497672836, - 0.08606303375562192, - 0.10582778153750615, - 0.10277329361577893, - 0.1088398454821993, - 0.10392782987658215, - 0.11342985765943185, - 0.10617361787098298, - 0.11034239951967596, - 0.08964453086201249, - 0.08713653603737277, - 0.09980407126890802, - 0.11204413082726775, - 0.162331532855802, - 0.09819709184946518, - 0.0962408159155474, - 0.11564230548605328, - 0.11211642084540033, - 0.10687510128281447, - 0.1194860032135465, - 0.13248099827643853, - 0.10551526968962759, - 0.09141539798476886, - 0.09881890069433609, - 0.097359250641351, - 0.12260902305081528, - 0.12974900843015005, - 0.1300699222029956, - 0.09268846574899604, - 0.09705306836698742, - 0.08747805792954844, - 0.1011676436245593, - 0.08768869766004647, - 0.11675627782843578, - 0.12161036125386615, - 0.11491774584330988, - 0.08775705955806497, - 0.11178867444844744, - 0.11999348241953145, - 0.09925783974842037, - 0.09385044806560268, - 0.11129518005791786, - 0.1316001584032355, - 0.09338312216958793, - 0.11659641816034674, - 0.1192830356515745, - 0.12478147875824587, - 0.11682562443090508, - 0.11177221188428582, - 0.11030420026950538, - 0.09886867700957758, - 0.0934965493009098, - 0.09780258303435743, - 0.11324487003148963, - 0.1435536068945466, - 0.09391233647907131, - 0.14663243049189204, - 0.10963293495554326, - 0.10028102726797765, - 0.11508271038932048, - 0.1073633893040366, - 0.09958408144689718, - 0.11596740768336826, - 0.11289832323964594, - 0.09964921772528042, - 0.12090699780173401, - 0.10648651561955386, - 0.10399662942451728, - 0.16214162629551607, - 0.11662605028508491, - 0.10670170111355275, - 0.1013531644102375, - 0.11454519202246752, - 0.0879980741322908, - 0.09417868827994527, - 0.11933603734840868, - 0.11510288559867195, - 0.09929891044289475, - 0.12429035303112973, - 0.0999776544536487, - 0.10137155434684578, - 0.12901688962063254, - 0.09395528871781457, - 0.09125874418348766, - 0.11906754849319019, - 0.1184790936202378, - 0.11764191243116906, - 0.1220247336826652, - 0.08204002926166874, - 0.1262309546846264, - 0.13840556234440615, - 0.12091245186353443, - 0.13210367796285225, - 0.17043265358256446, - 0.14924408947999568, - 0.10858423519638094, - 0.0855034420823301, - 0.11816394962742288, - 0.11877475790331493, - 0.10573428815550165, - 0.10974000789870732, - 0.12257087115181252, - 0.11269266892382222, - 0.11726438894586523, - 0.10072968990769719, - 0.1200934392298375, - 0.12708349412754205, - 0.10679214870105733, - 0.13316672372078256, - 0.13799778150638656, - 0.11164121001865134, - 0.1282664289010324, - 0.13413123915490638, - 0.10538396956011224, - 0.09644151203565808, - 0.09919101357693215, - 0.14638647479532696, - 0.09394675433978242, - 0.12639041557431702, - 0.10126384350552141, - 0.09441086289008163, - 0.10114992396058962, - 0.13137253797825982, - 0.10347940814176483, - 0.10430512226089622, - 0.10832593276182545, - 0.1077411423023185, - 0.11375858500674074, - 0.11250490813644334, - 0.11836041398561692, - 0.10247869986903266, - 0.1083481840961357, - 0.10413651553831037, - 0.12998082526573207, - 0.09815081533768429, - 0.10073527638537826, - 0.12579646681421428, - 0.10801268308511167, - 0.11756511785355757, - 0.13528059196869577, - 0.1329226019379054, - 0.14296897001473655, - 0.09928794739855985, - 0.0939862272802471, - 0.10549655741103935, - 0.11793810396655681, - 0.11291035320859097, - 0.10420625944138819, - 0.11840621515849692, - 0.12759729820846627, - 0.09880608635465829, - 0.12090472505642026, - 0.10575206396117326, - 0.10266829329907008, - 0.11244085182027981, - 0.10325187536686051, - 0.10821463755885324, - 0.1278628091720721, - 0.10547573415172927, - 0.11041359880191177, - 0.10464086246560012, - 0.1260591479881832, - 0.08193729374095236, - 0.13127417834264102, - 0.10640481007470262, - 0.10329566159282039, - 0.09725799677808564, - 0.11941109730024689, - 0.11073563170246693, - 0.08679602381746306, - 0.11289276021699335, - 0.1127777271560307, - 0.15490184513155558, - 0.0990692944650849, - 0.08821466498539347, - 0.09155448461910254, - 0.11763912209574122, - 0.09323661453631198, - 0.10757811001032302, - 0.107651925465294, - 0.1342076575150462, - 0.10206505136163677, - 0.1181777872942251, - 0.10534069905406741, - 0.13035209080491578, - 0.13987217773392793, - 0.1298919081385892, - 0.09941728861432599, - 0.10879544673309102, - 0.1044086329620422, - 0.08576249221972272, - 0.10742055769055815, - 0.1189522223599375, - 0.11219318560145088, - 0.1126651774035525, - 0.11424635910801735, - 0.10579614798660271, - 0.13330617033641456, - 0.1475092522222318, - 0.11204037836072395, - 0.11118690489728336, - 0.11093170737129342, - 0.08790121754509092, - 0.1042193033165718, - 0.10913449131695428, - 0.09444792105586339, - 0.14275772127026318, - 0.09994171329084102, - 0.11202017167780995, - 0.10368115245642007, - 0.11918218457129436, - 0.08448328414820296, - 0.10746735413353006, - 0.128434213151893, - 0.10364946435752963, - 0.11173602860664594, - 0.10995547382157506, - 0.14712660214691303, - 0.0986629318719127, - 0.11555418845345304, - 0.1296131970947305, - 0.12833790042093116, - 0.10286711089681137, - 0.1233943107213703, - 0.12228352802436679, - 0.09848524370725055, - 0.11093170338751603, - 0.11730500275984755, - 0.14976338830196648, - 0.0789416432615444, - 0.13421001788910272, - 0.12939926875814778, - 0.0968160450700535, - 0.10212163251142935, - 0.1138220619713684, - 0.11256224020468657, - 0.1261632241630531, - 0.09530660202836044, - 0.1288225290252727, - 0.1167568826089814, - 0.12436061377119463, - 0.11436571279613293, - 0.09203771465466125, - 0.08794419322475336, - 0.10092431976256243, - 0.1163708184903025, - 0.13937194463754995, - 0.13525448290462058, - 0.10991600093783513, - 0.14266597975343326, - 0.09426141325711593, - 0.113668233139369, - 0.09907254487791421, - 0.11814901908393635, - 0.13823757707429257, - 0.12197358921263066, - 0.11256449049630925, - 0.13182662424428696, - 0.09942062006600942, - 0.1361641306445232, - 0.11828957800069019, - 0.12172009353852373, - 0.12909819384160906, - 0.12387557385145094, - 0.10741261248030674, - 0.10571526034956163, - 0.12083559941853442, - 0.09837381656007778, - 0.12038046417762505, - 0.09660771379577052, - 0.08424853200285277, - 0.11296842563071612, - 0.10229137243961377, - 0.09466095195662297, - 0.15895533571508605, - 0.12774028576269245, - 0.09606359341010809, - 0.10614290259954613, - 0.10610882184385632, - 0.1249288765740953, - 0.11858930190913475, - 0.1219182933794867, - 0.09255077285024414, - 0.10559533697032507, - 0.0963471918733607, - 0.09948371330238788, - 0.09454980680836134, - 0.09206654098178679, - 0.08830384655061292, - 0.11583612973158973, - 0.13466123154760976, - 0.13357305429730243, - 0.10485235207224783, - 0.10887665551837036, - 0.1137251493482711, - 0.18662689317193815, - 0.10218747811935955, - 0.09342422799173689, - 0.11928451505932954, - 0.1225558183429165, - 0.09605075625872771, - 0.12016090770493303, - 0.15007950964319106, - 0.10540756827336845, - 0.10612962705921446, - 0.10392177729062896, - 0.11552059211174073, - 0.11272016999530216, - 0.09867635528648527, - 0.14147420430531363, - 0.09819481583196546, - 0.12290682414918346, - 0.13855077027988985, - 0.14170705899358554, - 0.11980990940556809, - 0.10024595054479275, - 0.09231968132541882, - 0.1048394529709171, - 0.09448859836367177, - 0.08519482913046733, - 0.1482494503709289, - 0.10186622211608733, - 0.10046576481393371, - 0.11964003781831524, - 0.10027651673552564, - 0.08603231508302484, - 0.10792705529543586, - 0.1266280248401518, - 0.12127673239539993, - 0.10364447317106512, - 0.11078285379455648, - 0.1025638832151224, - 0.0997207768712846, - 0.09321482198718732, - 0.10096496996819325, - 0.12613107887617192, - 0.12512650323402194, - 0.11883554882203337, - 0.11855965771738708, - 0.11641782980417208, - 0.15699811621599996, - 0.11536702455934525, - 0.1378738362966916, - 0.12720222821635624, - 0.13563339097725238, - 0.12209466228887032, - 0.11342604649306501, - 0.08124471467761306, - 0.1171408603941512, - 0.09429771554531689, - 0.13067356305786315, - 0.11014406060393789, - 0.1043249564270862, - 0.1034033104199799, - 0.09897021986016735, - 0.13171479910517803, - 0.12055581528104181, - 0.11981112751504817, - 0.10982882363348243, - 0.10396980741704254, - 0.1096738639597356, - 0.11473944454859843, - 0.11734492181117989, - 0.09886515509957891, - 0.10847078504783567, - 0.10117321063308665, - 0.1038579795786913, - 0.13033077325340964, - 0.09610994482726923, - 0.11746531772789343, - 0.09982723463232725, - 0.12298049766850906, - 0.09733897060583618, - 0.10229777265894031, - 0.10624776288593092, - 0.11063823973541852, - 0.086616886927997, - 0.1068258405500634, - 0.10429591878704111, - 0.12536776260284604, - 0.098974594269576, - 0.08683964278336039, - 0.09619269502498999, - 0.15088431784531064, - 0.09591045155913093, - 0.09931228757325994, - 0.08502509741289889, - 0.10146516720345553, - 0.10873831653086954, - 0.10095052659404714, - 0.10242901490796445, - 0.11048398251147408, - 0.13131432444326607, - 0.11684187241284388, - 0.1132461895015379, - 0.12673425701033697, - 0.12112680761076319, - 0.1169731105942334, - 0.12071586841428206, - 0.11426425205233337, - 0.1271267983376886, - 0.11236350834332798, - 0.08283785666056662, - 0.12294356752961275, - 0.10282116252291681, - 0.12862895783510173, - 0.12460948389341993, - 0.14647482281154822, - 0.08677855062924476, - 0.10545499760064861, - 0.11063815710829182, - 0.1362466980086056, - 0.11535507398217194, - 0.09163449417140829, - 0.13085478846262974, - 0.10077082053894017, - 0.07042835717125764, - 0.09436851457896041, - 0.11218930762281361, - 0.11540691695435919, - 0.08429092556138598, - 0.1105633948583402, - 0.1035085249092005, - 0.1093392774948374, - 0.095236858228844, - 0.12024316476792514, - 0.11181475530336422, - 0.16173458012921607, - 0.12764835618174009, - 0.114690967695801, - 0.10701844521708656, - 0.1424432744543147, - 0.14105050375346498, - 0.09582310338011105, - 0.11995643879501382, - 0.12041198919608434, - 0.11850010919446809, - 0.12793054961490918, - 0.11702998943996078, - 0.12917074734360132, - 0.10743684023047248, - 0.10776541097821485, - 0.1317217807923452, - 0.14566073726079765, - 0.09672490008686993, - 0.11064373037842283, - 0.10667305032095194, - 0.14650687429389986, - 0.11852950874543508, - 0.09624158614500149, - 0.08488673577819394, - 0.11994233562278964, - 0.10528959928771865, - 0.09585903346335009, - 0.10763827435925065, - 0.11994911822935345, - 0.15833296254282261, - 0.12477808679476679, - 0.09675008236545221, - 0.11519043730666315, - 0.09986834933939476, - 0.13613815417333427, - 0.10020994141971641, - 0.10640106379319526, - 0.10000120201525874, - 0.10508575663463741, - 0.09896661347605502, - 0.11556955796351356, - 0.09236650364395754, - 0.12772366976953906, - 0.10530386916705801, - 0.15202758940998778, - 0.1204340493444587, - 0.14074791326658204, - 0.10182573366855595, - 0.09550728597614364, - 0.1061920255952643, - 0.09212052884012062, - 0.09554781381834093, - 0.12859616366831125, - 0.11946465161196754, - 0.09106807297128577, - 0.11573030281144803, - 0.11065538699506716, - 0.11948439375864138, - 0.10804460007516296, - 0.11304510754438987, - 0.13631389723229728, - 0.11767291415924354, - 0.11103448161164368, - 0.12722329204840999, - 0.10467446068631003, - 0.09726798780209964, - 0.08971121673694277, - 0.11914465418886515, - 0.11252143992171833, - 0.14121919744075745, - 0.10543957999927281, - 0.11875433743920856, - 0.09058244635007767, - 0.13744849302827805, - 0.08857346284511634, - 0.11358754657364192, - 0.18352968513452686, - 0.10406918919778321, - 0.096884191103706, - 0.12153338128520373, - 0.1143661029905032, - 0.13366682875304156, - 0.09352219255217664, - 0.11283048289887432, - 0.09544382475878828, - 0.11383625778671656, - 0.14983628638094182, - 0.18738684934135846, - 0.1106311418799334, - 0.12139711915796798, - 0.09185603461258483, - 0.10102231341558715, - 0.11591435156705363, - 0.11030337116431085, - 0.12130577002024731, - 0.1219367005441538, - 0.1030826436471702, - 0.10539564679122077, - 0.11589625520495694, - 0.10670952166837999, - 0.12703669070648002, - 0.1226962478173569, - 0.11304088339475922, - 0.09789632230022298, - 0.11242017850757388, - 0.09497499529061179, - 0.11790819034240967, - 0.1391838939930222, - 0.09780683119142607, - 0.12805105672226613, - 0.13264045356141657, - 0.12849103123557737, - 0.13146941126357362, - 0.0977040968423281, - 0.10891846026903416, - 0.1151561802406351, - 0.11378058145067357, - 0.13062518916533827, - 0.10735743805782835, - 0.10555443373273848, - 0.12151626409402015, - 0.09769146805762126, - 0.09036504688141397, - 0.105551442513387, - 0.12197810723424828, - 0.11402883405440103, - 0.12457062552255797, - 0.08238326147631993, - 0.11193584002758193, - 0.10650013141820745, - 0.09953344761481411, - 0.10509556447571303, - 0.09270649464846556, - 0.1019192079922446, - 0.11351111668843182, - 0.13759083862093516, - 0.09209641768407027, - 0.102999937458192, - 0.09250522410855355, - 0.10200597314666295, - 0.11567591276316, - 0.12617100839958492, - 0.09928222806367594, - 0.11013669150922716, - 0.09765733168227286, - 0.10886808617641147, - 0.10896860338338535, - 0.10363715669022346, - 0.10264285500257994, - 0.10073586098733336, - 0.15527882759387537, - 0.11138197662262181, - 0.0966352437766004, - 0.13902419121273177, - 0.12141330542200825, - 0.14745610711102186, - 0.12206140786637809, - 0.1259709438705741, - 0.10849079543341039, - 0.09951751141207829, - 0.12756520378465544, - 0.12606559333872633, - 0.13511245239153774, - 0.1009670979042908, - 0.11698701241701798, - 0.07951088201485655, - 0.09593206718965558, - 0.13010478366552788, - 0.1394121052696332, - 0.13114338635022596, - 0.09359489236487394, - 0.1215526047943623, - 0.1331538654277869, - 0.08461510479819984, - 0.10736414278849352, - 0.11467620089352526, - 0.11964132673678876, - 0.12465504500671518, - 0.11495661966114436, - 0.11165699916542611, - 0.12287138859004844, - 0.10896022527441263, - 0.1398171978766877, - 0.11037148748162752, - 0.10937923110786199, - 0.1212642682794138, - 0.11929546999955573, - 0.12244229163710234, - 0.1314903773515197, - 0.11249861670721953, - 0.10553673442565968, - 0.1112116408714669, - 0.11545880526088778, - 0.11384870145455535, - 0.1219146877457081, - 0.10135975523498547, - 0.09915245011210091, - 0.12364330428539536, - 0.10347417675771449, - 0.09676677312381159, - 0.1002401904594809, - 0.09683266583042838, - 0.10590526347832369, - 0.1422473810245902, - 0.10138240150735783, - 0.11540296245749301, - 0.10490337414790955, - 0.14251310113602314, - 0.11781492669247792, - 0.11084948944969628, - 0.10362003061112236, - 0.1051142200536102, - 0.08747445175055636, - 0.10472827556362811, - 0.09231155563956693, - 0.09219490207143306, - 0.14059878331494402, - 0.10980553051382057, - 0.12334913156319935, - 0.11909046037238025, - 0.09491934866519713, - 0.13114751716389575, - 0.11922783757604008, - 0.1548498031383305, - 0.09700140563958139, - 0.09597654069242906, - 0.14403959083125764, - 0.10423201077203387, - 0.08684116235139615, - 0.1047802349193044, - 0.08467821085089919, - 0.151636738214884, - 0.10717605235108822, - 0.11759295460171072, - 0.11760976249875243, - 0.10228277513282445, - 0.11051925945741065, - 0.10486952296773124, - 0.10810995074493972, - 0.11372047176811148, - 0.1440427979409623, - 0.09187822455283233, - 0.09333250768019818, - 0.10750334696187229, - 0.09864500215685004, - 0.11576080915471394, - 0.1205676979097408, - 0.132890312311007, - 0.10105737067912401, - 0.12524550514919974, - 0.08938067517662711, - 0.11368005436286331, - 0.11067815177042237, - 0.09319212381184665, - 0.16276507322251116, - 0.09848284097711522, - 0.10560816972276289, - 0.10817233931979181, - 0.11469076336479764, - 0.15438274823414241, - 0.0969601953772975, - 0.1293606839365734, - 0.14178032014069553, - 0.11418295437051243, - 0.11555865126532977, - 0.11946804380081497, - 0.1070726601768161, - 0.11923872268118882, - 0.12205641093631342, - 0.1098613433367713, - 0.11354949311429988, - 0.09755810148745617, - 0.09745590176387607, - 0.09378513025841577, - 0.14335880000374854, - 0.08519200932986969, - 0.12882142008942854, - 0.09094339752704868, - 0.12086531250198394, - 0.11570105930097972, - 0.14667118409750343, - 0.10405101506395545, - 0.10835930380885062, - 0.10551973647006058, - 0.14372678949351672, - 0.11564812409198963, - 0.10146291680020485, - 0.08942467103220834, - 0.1466071230784681, - 0.1299318895169096, - 0.10320699243551958, - 0.10995722832451746, - 0.10724307637508389, - 0.09793182472147051, - 0.11730213324843854, - 0.11680699203173156, - 0.09803941707246996, - 0.09221029875639873, - 0.10868122506576477, - 0.13389440432068722, - 0.10837780299258286, - 0.11363235317727459, - 0.1154712975415249, - 0.12403633972487184, - 0.10071897127856577, - 0.10135480951079918, - 0.10551195455098263, - 0.09756888698031084, - 0.11346587770713397, - 0.127477097599764, - 0.1136921499839125, - 0.08987274301654163, - 0.10497532957663736, - 0.12793503994343572, - 0.09994299160334097, - 0.1318819748852282, - 0.10015436254830695, - 0.10729544562852075, - 0.12826904436817982, - 0.08745916120312665, - 0.10890784233438695, - 0.09545333964699075, - 0.11084097059098226, - 0.10378637773681056, - 0.09673262789789548, - 0.11332217204922423, - 0.09957060102958808, - 0.09316593604770161, - 0.10230288749588952, - 0.11258836420994445, - 0.11800492126044361, - 0.10426772282722187, - 0.0864168774225639, - 0.11975033763429445, - 0.10675969681953566, - 0.08661737627493858, - 0.11785847130142105, - 0.12548597503156325, - 0.1055253408195776, - 0.11483208454222972, - 0.09811728462628938, - 0.11308401963789795, - 0.10742056736785169, - 0.11421253773942917, - 0.13038962957984485, - 0.09953862623613158, - 0.10340179648618279, - 0.10573879263685149, - 0.1068368832291583, - 0.09367901037998427, - 0.1140269866986622, - 0.16620372460992414, - 0.12777234043293578, - 0.10582029109347496, - 0.10841926964421018, - 0.10012378043603234, - 0.10782791385002295, - 0.10779282967920184, - 0.1349819144907604, - 0.12900101603690806, - 0.1482109058536083, - 0.09523926682912137, - 0.11610163867199999, - 0.12126416613703066, - 0.10223458774674533, - 0.09156209204784277, - 0.11637640467926585, - 0.11135962389756254, - 0.13822197430780409, - 0.11984782626383655, - 0.133399298013262, - 0.12466845794062135, - 0.07233133012359501, - 0.10101754957041159, - 0.11399230756505596, - 0.10573862415481634, - 0.08996494698226817, - 0.12794199738361992, - 0.12526340870626101, - 0.12019617790921605, - 0.09351357126072325, - 0.15792958114146916, - 0.0906478743786603, - 0.11979031850079759, - 0.11934351583175601, - 0.10852736347965822, - 0.1361437676374274, - 0.09847133151804013, - 0.11705760351058879, - 0.10135369644303346, - 0.10136888131593699, - 0.12748449276486573, - 0.16743709933688533, - 0.10237303049310227, - 0.13955863711927674, - 0.11267372098897081, - 0.1279884830237149, - 0.13930469337992998, - 0.11671808072209156, - 0.10582228613472845, - 0.09270180487943679, - 0.11646319432397986, - 0.10617970493143479, - 0.12396177860823798, - 0.15065727414553598, - 0.11485812176912615, - 0.13867035135772313, - 0.1116824999355553, - 0.12859334378782922, - 0.11670625360420722, - 0.10322811228875328, - 0.10828604553463544, - 0.13081874716931255, - 0.09138492944015794, - 0.10889316724373418, - 0.12250703129259892, - 0.10076227048746143, - 0.12393000639145854, - 0.09768128484114287, - 0.11216334537027192, - 0.12330343357289819, - 0.11658041367821881, - 0.11906802495871273, - 0.07762283105876512, - 0.09689328512014281, - 0.13451593539815712, - 0.10850268864736957, - 0.10370000393775503, - 0.1476136871151892, - 0.09254776942853903, - 0.11627710029637361, - 0.13197355750124573, - 0.1428102975451259, - 0.09792613514799059, - 0.11235696623374358, - 0.10025130035093503, - 0.10791518031399117, - 0.14796044617213414, - 0.09613536270490074, - 0.11423742406483191, - 0.09887941319177115, - 0.11045795655761893, - 0.0970553320858834, - 0.09835762878722182, - 0.12097658135438645, - 0.11041049119609954, - 0.08173839920316674, - 0.1043723309636735, - 0.11701173171784919, - 0.10173942698658582, - 0.14616561383455826, - 0.11815589294741137, - 0.09188120720951402, - 0.11200757056936009, - 0.09128516716107359, - 0.12695732955175812, - 0.10258818847222785, - 0.10841314106633458, - 0.125442717786829, - 0.1346204955831823, - 0.0998631507400578, - 0.13509795964339258, - 0.10579112929672901, - 0.10475883760363694, - 0.13604684695887187, - 0.09525396926106784, - 0.12163848834108164, - 0.11085141958647336, - 0.17286602195611922, - 0.10338271809769078, - 0.12304449333389281, - 0.10305177428477788, - 0.10803413936281522, - 0.13881683785951554, - 0.10328655131214007, - 0.11167491927679564, - 0.1144206318885446, - 0.1289186131840761, - 0.10636552430174588, - 0.10717812470166567, - 0.09141036959803954, - 0.10009584074776953, - 0.11034146917801087, - 0.08749218255262715, - 0.09084512901719424, - 0.11591517901696252, - 0.10988104650695107, - 0.09902302287398265, - 0.1153249953840466, - 0.11940153629016993, - 0.12609501396978864, - 0.12954055352793167, - 0.07967104921418032, - 0.09107283174704825, - 0.0988903185118876, - 0.12834095012533792, - 0.14330668190000065, - 0.1150916017831339, - 0.11498844875331853, - 0.10717552455509415, - 0.13610851747988498, - 0.13837333660885281, - 0.09289859625637018, - 0.08920875752172262, - 0.11875889296782371, - 0.10639637230085892, - 0.11514711302142384, - 0.11512101411925169, - 0.13611970061823148, - 0.10447711697600445, - 0.12275673100101728, - 0.10930699501601698, - 0.12296668057709198, - 0.14484566331786364, - 0.10933853035472017, - 0.10775188958932429, - 0.09578441548766176, - 0.12572453056538102, - 0.14860268576607724, - 0.0867993690670615, - 0.12330199876435512, - 0.09640035494550747, - 0.136664695549963, - 0.1626557972385585, - 0.07980097703951805, - 0.10095265586915195, - 0.10243738941338883, - 0.1108938193482795, - 0.11875874173414354, - 0.1251112514255479, - 0.09868118633119684, - 0.11380424208292722, - 0.1098112338846642, - 0.10051545399466688, - 0.13055258209000636, - 0.13042656321396845, - 0.09688240021280707, - 0.12355417762660056, - 0.10660937062566865, - 0.10305282514644656, - 0.09342061081752508, - 0.13188603539696342, - 0.11735926754740711, - 0.10107647210975278, - 0.12886403388914272, - 0.10930188854470918, - 0.12055613864685857, - 0.11953548069015421, - 0.09241932453428131, - 0.16306656478371329, - 0.09138519600176864, - 0.11023469433049983, - 0.0969560263361977, - 0.0839290280074427, - 0.115684165021841, - 0.09309039931428291, - 0.09773877426251733, - 0.1374667173982286, - 0.11019727061204405, - 0.10869049461384618, - 0.1120877130015382, - 0.09791229793834828, - 0.11372415009390377, - 0.10491681752923296, - 0.11774668789388165, - 0.10504546468584106, - 0.11100918686071654, - 0.10838352847072362, - 0.12416982694749654, - 0.11484048939406831, - 0.12118599855200604, - 0.10007058158575154, - 0.1208938771398992, - 0.08362013092044038, - 0.10868293209153382, - 0.12723750507725878, - 0.13115237773411212, - 0.1386466507662141, - 0.10083421334861921, - 0.0921353338735372, - 0.12756006112646306, - 0.09998570873937213, - 0.10796010740979069, - 0.13187832712304662, - 0.10534900851143147, - 0.10589600824844678, - 0.10337744723486607, - 0.09752813369026937, - 0.103299898387353, - 0.08393324313836366, - 0.12796627888918136, - 0.11427415743618555, - 0.10589671555410536, - 0.11770849267275144, - 0.10797614676284319, - 0.11256724979135067, - 0.11064872001354933, - 0.11641780527276202, - 0.09768750153391899, - 0.11262826960662645, - 0.1094533357397334, - 0.14716190021470357, - 0.15592974386330608, - 0.1192791602958704, - 0.08790874284935624, - 0.14151301248229678, - 0.11996493196437436, - 0.11377403267480436, - 0.0892772107803336, - 0.1153124753414786, - 0.10134432919086661, - 0.12101046225191651, - 0.10014237015281702, - 0.10849024254048532, - 0.10379434905099613, - 0.09885443927307594, - 0.14240457203410797, - 0.1060246365651761, - 0.09276159228653957, - 0.1020018371190048, - 0.11113452944538593, - 0.13623354028658508, - 0.09642998721092116, - 0.1284975159355911, - 0.12579894054545077, - 0.12559703450574602, - 0.1259809226486659, - 0.12130816393901273, - 0.09605432524810839, - 0.13399651816358576, - 0.11961174830443616, - 0.10201381851684266, - 0.11700860965489343, - 0.09716874483583574, - 0.09536773503702044, - 0.12113568121718221, - 0.11539046473536045, - 0.13127039891880082, - 0.11729069464006457, - 0.12084372327861731, - 0.12133387122923722, - 0.08539343071781796, - 0.11276679407540431, - 0.10082621358293041, - 0.0909066176689058, - 0.11301107146793107, - 0.1279502105530415, - 0.13096156341159906, - 0.12533310797254307, - 0.11359933013076075, - 0.10884510307271604, - 0.13101998785681948, - 0.12787483055931204, - 0.10300998927026088, - 0.11403160053977243, - 0.11175255034711648, - 0.08363991279944825, - 0.10256436109728884, - 0.11055081958921173, - 0.11334605861907865, - 0.10673167286843314, - 0.11757703757186355, - 0.12070408884637698, - 0.1281978745076595, - 0.15570950878756937, - 0.10515353687809038, - 0.08359700544911265, - 0.12991416887910798, - 0.11664445398930649, - 0.14913732143543823, - 0.08965463274039098, - 0.13785286477759542, - 0.11342591147684437, - 0.11383019131529457, - 0.1137358001963134, - 0.10819444273320467, - 0.11169690826247418, - 0.12038381237031912, - 0.1173831599854465, - 0.12606603906416577, - 0.09451673754429518, - 0.09184172483829912, - 0.12408074522950178, - 0.09450114254361203, - 0.10812462542652021, - 0.12899080189674864, - 0.15591650999720627, - 0.12249561240969815, - 0.09575953747515566, - 0.09396708583841108, - 0.11111475526750894, - 0.09236428220062938, - 0.11575094851300981, - 0.13032620182034282, - 0.11989021865656146, - 0.131087128259834, - 0.08478837100310367, - 0.09717509300325583, - 0.11228811224935092, - 0.08900973668438095, - 0.0998732622180177, - 0.10641352546627207, - 0.11271108766297958, - 0.10523960100704116, - 0.08361860520217142, - 0.09741522733155725, - 0.10051433512184121, - 0.10232399204796694, - 0.10468489663985518, - 0.12849300205365255, - 0.09244848278912174, - 0.13378459659047404, - 0.11261283632250543, - 0.09486115358957535, - 0.08655804412686433, - 0.10173864125843667, - 0.13960093363426349, - 0.10586416256777732, - 0.15019909942131698, - 0.0912107868484055, - 0.09008226286596652, - 0.11091342785045916, - 0.11466081772261241, - 0.10555965072170193, - 0.11914132625894913, - 0.09682276362524905, - 0.1030199229875427, - 0.1590514398215514, - 0.12574383159643496, - 0.124572969781151, - 0.11653408636959185, - 0.13248147646910383, - 0.12117049433156644, - 0.10091975621317069, - 0.10706609603267893, - 0.1335785790321833, - 0.11009366948555407, - 0.11942782468049981, - 0.08916156854102081, - 0.09396212745635547, - 0.11654973722881828, - 0.10370895074374888, - 0.08995917353092855, - 0.11552297872167644, - 0.10676663357413381, - 0.1055185765921708, - 0.10241684137883258, - 0.15111530234847453, - 0.11313918560324257, - 0.13433461339729316, - 0.1375738903318295, - 0.14570998146893782, - 0.15859911221211673, - 0.12944713449316242, - 0.11664656777546506, - 0.09643804322348554, - 0.10241762616188733, - 0.12468061580856088, - 0.1398711828726477, - 0.14163981829598837, - 0.09476276443561238, - 0.10771430103585063 - ] - }, - { - "legendgroup": "Beam sensor 1", - "line": { - "color": "rgb(246, 207, 113)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 1", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.10771430103585063, - 0.08990973028579999, - 0.11695742720535282, - 0.11105833175272199, - 0.12664420128037782, - 0.10335751517981265, - 0.10504220775498894, - 0.12176854301321387, - 0.12481392408876776, - 0.11642136115411145, - 0.10771959370757665, - 0.10725691587415652, - 0.10783493311616198, - 0.08475531432856401, - 0.13949672830895912, - 0.1062098159580759, - 0.1280556015076833, - 0.09891773780327211, - 0.0928792028509366, - 0.09527766510060356, - 0.11999934132294318, - 0.11622746644021381, - 0.1039216553105697, - 0.11672327644994596, - 0.13405987206257833, - 0.10255998672860285, - 0.10729458426368658, - 0.12270490741137571, - 0.11092376419111487, - 0.11212052018312402, - 0.1586870059755137, - 0.12837612620051314, - 0.1109070564618603, - 0.11172349297083364, - 0.11419294262211158, - 0.07693619380923722, - 0.12289779449456167, - 0.11246400964942979, - 0.1163518053409757, - 0.09786533118671592, - 0.0976878793152625, - 0.1198955307784465, - 0.1195350414712064, - 0.09765962967602107, - 0.1271618239959155, - 0.09844410330970288, - 0.10372192877486214, - 0.10839836633435244, - 0.12491379724909688, - 0.10119597438585423, - 0.0892383740988926, - 0.08919992917042122, - 0.11125781485048898, - 0.10302400319122176, - 0.1157686773575767, - 0.14362635385058048, - 0.10662584971818019, - 0.14432573087989378, - 0.17491249707932513, - 0.1095915087897665, - 0.10181869220788059, - 0.10003117734525126, - 0.09267909106143855, - 0.10094111418242184, - 0.08567444116286968, - 0.13805139624428286, - 0.10483398570080711, - 0.09030754512219034, - 0.10904280298519005, - 0.15133940283380504, - 0.10488625716288215, - 0.11049242328921231, - 0.09611868078716311, - 0.1540523975452653, - 0.1152287208977254, - 0.135221493160919, - 0.12789502175598694, - 0.11736368225401986, - 0.09571775908517875, - 0.12139351888573696, - 0.1120501275878941, - 0.08397355983550372, - 0.1197059532124798, - 0.11872773479030095, - 0.09094669048453352, - 0.10650032117107808, - 0.14847735529224146, - 0.12621629509593113, - 0.11072725526182609, - 0.10816476578555145, - 0.11145096804107184, - 0.09322326231522028, - 0.10208024313197224, - 0.10447011078552122, - 0.11407444180142216, - 0.1111898338871953, - 0.09904901684214043, - 0.12889625585512002, - 0.12250465055398209, - 0.11227438943859035, - 0.08882775984885023, - 0.1349722924273407, - 0.13351962025832143, - 0.08320615399352085, - 0.10164312789623633, - 0.11203503076081113, - 0.1157109536090055, - 0.09764567813572039, - 0.11195639027749359, - 0.11571939921050832, - 0.11252075499593744, - 0.09815142004913893, - 0.20570101742227576, - 0.12878678316267725, - 0.14501166106121852, - 0.12870955177387208, - 0.11580957996640007, - 0.11531137360419315, - 0.10531180171761043, - 0.10171800853753292, - 0.10740244384501177, - 0.08727831987381797, - 0.11516692026287534, - 0.11196129369943682, - 0.11257091041797256, - 0.11776925826098403, - 0.11268998406989451, - 0.127675191532098, - 0.131335862912479, - 0.09194597663852203, - 0.130138426003643, - 0.1256309088431144, - 0.10089172549712731, - 0.09177654145774791, - 0.09798381096044916, - 0.1280489879597341, - 0.12371142884032198, - 0.10173075455909772, - 0.10761720721543909, - 0.1107899954569726, - 0.10129085806806674, - 0.11868101133930267, - 0.12365160696189699, - 0.14900242068577374, - 0.10423980691917488, - 0.14883781543660254, - 0.13853633743859825, - 0.10360777755888585, - 0.10230141641096423, - 0.10857589466796996, - 0.13716224158952936, - 0.10356652362193568, - 0.11591953188750875, - 0.10328136669926807, - 0.1037719873547672, - 0.09901556475819794, - 0.12713950668024276, - 0.12788966975733532, - 0.10902290737201488, - 0.10924888750128751, - 0.09277447166664123, - 0.09936967497189103, - 0.12791760405234978, - 0.08921051464691233, - 0.0907888672819167, - 0.10555913957525842, - 0.11687428319630942, - 0.11519053523055718, - 0.1397328945708891, - 0.12768706174060218, - 0.1295614482918309, - 0.10612375190524029, - 0.11785255908715841, - 0.14887068667580933, - 0.11368036434993038, - 0.12559901459960546, - 0.1030336525478611, - 0.10613166238615113, - 0.12499958421638774, - 0.10640767615124459, - 0.10474416222731414, - 0.10963930144526453, - 0.12645054111893445, - 0.12797523481682824, - 0.09497375627247666, - 0.11737739599929516, - 0.11400867818587702, - 0.09942398190160759, - 0.11228959203286795, - 0.11533243841855946, - 0.12274912069334867, - 0.11656004576900497, - 0.13072644988342583, - 0.09332063339298931, - 0.1400184317228359, - 0.0934588157022023, - 0.14429199061867015, - 0.12809387191311042, - 0.12208952499410049, - 0.13070579282064362, - 0.11206248816666253, - 0.10993609259451116, - 0.11697585313934969, - 0.1160936383932534, - 0.11648710015054028, - 0.11127770233532537, - 0.10904411997471784, - 0.10262668869631524, - 0.13836554256977285, - 0.09297685106991325, - 0.10620896799649765, - 0.09102617797616527, - 0.1347967727892822, - 0.13595609770296577, - 0.12255698755725823, - 0.1322133133135231, - 0.11985636026591497, - 0.109135732263824, - 0.09902185468619282, - 0.10817079057560483, - 0.10975015056938617, - 0.12891623043806005, - 0.08684859233366948, - 0.11728241620140142, - 0.08766300705431224, - 0.11328069058381601, - 0.1204922005660577, - 0.11463670158244063, - 0.10737577031775615, - 0.14258798240946788, - 0.09277904014044716, - 0.12156143955966477, - 0.10137382317203977, - 0.11184265266182898, - 0.13211075847107706, - 0.10152746627183512, - 0.12499771931612154, - 0.1426811720660384, - 0.09144475103247841, - 0.09578324298826281, - 0.1205074225154566, - 0.1305219914254538, - 0.07924039706055054, - 0.1113640737361384, - 0.10252762678644317, - 0.07393272244990358, - 0.10171386950161143, - 0.0919451701688354, - 0.10491685590272358, - 0.09462516703553725, - 0.15987543939340065, - 0.0926099094426389, - 0.10935986373502936, - 0.1418493019066413, - 0.1397190150206972, - 0.11824175343691376, - 0.12758948851172125, - 0.1158794393555612, - 0.12913551587250868, - 0.10041862125671086, - 0.0921125574145067, - 0.12614025749211794, - 0.09696745043646979, - 0.10577351092491068, - 0.11476679063608848, - 0.11805327958700047, - 0.1523665913842855, - 0.11537960451863839, - 0.12015852277044747, - 0.10253226402774251, - 0.10340417422738922, - 0.12970379013690403, - 0.14741476586777863, - 0.08320768436883356, - 0.09957555791720045, - 0.10700459947432685, - 0.10350716363854785, - 0.13006799231866176, - 0.10487010389872024, - 0.09985172838837858, - 0.09576891066366022, - 0.10470797599256972, - 0.136243010346231, - 0.07744160887394132, - 0.12304790508718896, - 0.13134619098515446, - 0.10494365138391336, - 0.09154222811715726, - 0.0998998821342874, - 0.06987896672954388, - 0.10311695494812652, - 0.08764738064248415, - 0.10686672267273888, - 0.11463525423318165, - 0.12340250502430061, - 0.1126033395499685, - 0.0992032445482963, - 0.13277214814779004, - 0.11701477419545968, - 0.10946509029200835, - 0.11236160356018872, - 0.11344979052417391, - 0.08217870506010495, - 0.12474860610651897, - 0.1067636609414208, - 0.1006793832510782, - 0.13000257706011603, - 0.10654673358471627, - 0.09576042089275509, - 0.08866156357463678, - 0.12098051191986116, - 0.10908307646506551, - 0.09432353902807411, - 0.09326617152532228, - 0.1076962713793914, - 0.09939183482602378, - 0.09439736064430715, - 0.13024227602403285, - 0.09922746384285218, - 0.09889993101712286, - 0.10409334512957588, - 0.09373040240475132, - 0.13152452724233252, - 0.134702118391588, - 0.1386310281356789, - 0.10786524827209365, - 0.09745147871574754, - 0.11124889814761678, - 0.1166388663001898, - 0.14084581599595433, - 0.149257869483863, - 0.12270950203950724, - 0.09842596370846027, - 0.11199640306618115, - 0.10765640060447504, - 0.08915872386148607, - 0.08983249809619885, - 0.10298454365224212, - 0.09813056769520666, - 0.10950263009091897, - 0.11995056877686708, - 0.111347610228836, - 0.11025119045304112, - 0.11836939185202255, - 0.15537991391858866, - 0.12641501828243717, - 0.11518701647868985, - 0.14151192500667592, - 0.0986921845329426, - 0.11235333797563074, - 0.1169571720025397, - 0.09971325323899075, - 0.11729932168954192, - 0.12437222793696871, - 0.1154339384319266, - 0.13144392906096403, - 0.08369401554736539, - 0.10083554810487902, - 0.13588328792630988, - 0.1174001023025675, - 0.11227347073539938, - 0.13624954348813928, - 0.10969440824544671, - 0.10921322899066739, - 0.10824024255329998, - 0.1287608446202014, - 0.12353090336444722, - 0.13195940164927084, - 0.13594748994763972, - 0.11041213901055436, - 0.11328653150587986, - 0.10798120500255719, - 0.1288884466294989, - 0.1324207030482782, - 0.1076596294746599, - 0.12085817507326424, - 0.10847727487074464, - 0.12676724981137588, - 0.1525156164559577, - 0.1331366207457066, - 0.12528416214668273, - 0.10954909332750101, - 0.10173380634524054, - 0.10952814565129654, - 0.11579060227414889, - 0.11074106389839235, - 0.11432857212116249, - 0.1031724612788839, - 0.10273351286483155, - 0.12273275521629966, - 0.12443239118145336, - 0.12045961887998988, - 0.11727219645898479, - 0.12427962488432369, - 0.1058621749688009, - 0.14131569224721385, - 0.10162712872142204, - 0.123574362617241, - 0.12013407644020715, - 0.10694777640641377, - 0.1454004119304638, - 0.12405561066699868, - 0.10218058646948873, - 0.10603182124723565, - 0.10207566522720847, - 0.09063988236936919, - 0.10926946206657356, - 0.10733313824796384, - 0.08899763138826862, - 0.10962718644021394, - 0.11612322415859735, - 0.11699617603508308, - 0.08970179910761265, - 0.09131488504863608, - 0.10766129307384793, - 0.11450874350497502, - 0.12222137559955383, - 0.11055566606456965, - 0.12166082175066593, - 0.11456034736603375, - 0.11260409159310228, - 0.10955691401191012, - 0.12023173396128783, - 0.13750837650675812, - 0.14346382456656415, - 0.11832543858524085, - 0.10538705781832641, - 0.18184268196842152, - 0.11081950127601756, - 0.0752239115394271, - 0.12923058298488385, - 0.10486821197185114, - 0.10478543135263019, - 0.12416916339015548, - 0.11128094245904684, - 0.11869269872255254, - 0.11199056172212116, - 0.13705460316162843, - 0.11158119374376216, - 0.129022464855887, - 0.10546711525583595, - 0.11437927512587588, - 0.13395361287529053, - 0.11156913510109107, - 0.11271139822294533, - 0.11859480380029741, - 0.10654624593031148, - 0.08901715237122948, - 0.08576377379676864, - 0.08906119288349365, - 0.10889055710345952, - 0.11661231193613047, - 0.11099925781172004, - 0.12021476501607724, - 0.1032705754075785, - 0.11670890416913177, - 0.10058420328154347, - 0.09522043505802445, - 0.07948804174804257, - 0.13079194055000423, - 0.08523688957784123, - 0.10469591714787807, - 0.1021784927348976, - 0.13071395866546054, - 0.11305883177698985, - 0.13965403958642625, - 0.15235339592903757, - 0.1528531465180056, - 0.10636200385221765, - 0.11288552439636426, - 0.13209393977957093, - 0.12532562231235292, - 0.1017711793185907, - 0.11197448036094396, - 0.1377876633972704, - 0.11501548279040877, - 0.11556646086518312, - 0.12384929690572467, - 0.12016790659931659, - 0.13110584368756664, - 0.10076256448461846, - 0.11427016421939364, - 0.10602456008634285, - 0.10808466074433709, - 0.123101010499332, - 0.11297166819249627, - 0.14660036591826572, - 0.13166702219751314, - 0.10774115129831639, - 0.08766500499531168, - 0.1271688849425189, - 0.11033228095818162, - 0.12001535861540628, - 0.15254783300407632, - 0.15726118419011703, - 0.12850374544894058, - 0.12704111844276036, - 0.1451784881122515, - 0.10931152949830715, - 0.09492560582809974, - 0.11061507729669816, - 0.11438223589979335, - 0.10310835188635854, - 0.11040012619186447, - 0.11889063744987022, - 0.12017262607289655, - 0.09887869549342905, - 0.10500721739275089, - 0.09412538524704893, - 0.10743389568347346, - 0.1091080587152491, - 0.10633748660625358, - 0.10822393613006642, - 0.08506791472271115, - 0.12275160057215781, - 0.12660362306816547, - 0.10793275060068581, - 0.10036946814713292, - 0.09065823243529365, - 0.1099235025682142, - 0.13704476310249017, - 0.1053078407992593, - 0.1268643000124632, - 0.11287477032945746, - 0.11462911131959432, - 0.11100279482261222, - 0.12365017340902013, - 0.1135188136177103, - 0.09927362314553413, - 0.07063149082095684, - 0.11063419178391166, - 0.10702215769867837, - 0.10187027087886373, - 0.09702269303750259, - 0.1235720287695932, - 0.11050002041678493, - 0.14492660100552746, - 0.09835772931825579, - 0.12969210113376897, - 0.08042916251289828, - 0.09933018293890056, - 0.13312591406978577, - 0.13391049515273892, - 0.10527615993835464, - 0.12137238295937836, - 0.09513568147483653, - 0.11216283427044753, - 0.10411367894098637, - 0.1412950637229987, - 0.12580651137628318, - 0.1252311049084829, - 0.09773744333735096, - 0.10352734760344057, - 0.128957770455591, - 0.11230999745422122, - 0.1097261666897043, - 0.13006503069888045, - 0.12542584712595153, - 0.0858527251597736, - 0.11566143404702914, - 0.12665635141691065, - 0.07970385996733295, - 0.08335509091574975, - 0.11466154575279826, - 0.13395484790724135, - 0.11677292913751848, - 0.1112525328691467, - 0.09442771630556737, - 0.1404571351411344, - 0.10973625267618786, - 0.11663686030490371, - 0.11150722044046475, - 0.1258894438770745, - 0.10070207287189141, - 0.10408337023784678, - 0.11762183735943563, - 0.10108447660438485, - 0.09933187238942202, - 0.09627481729489115, - 0.09626695697586689, - 0.09388234578476515, - 0.10684812459648901, - 0.0975062813544299, - 0.09225658578732898, - 0.12548318395513558, - 0.0844269822965979, - 0.09823036965564799, - 0.09239042882862707, - 0.0981251534977741, - 0.0886676936446787, - 0.11654497671967573, - 0.09099663913788628, - 0.11277222005611585, - 0.10775528253834488, - 0.10409898759986545, - 0.09015430307786873, - 0.09801813562563205, - 0.11392279305576318, - 0.07571352168475123, - 0.09996237224244511, - 0.11499990092950149, - 0.11132679724227, - 0.11818137300919218, - 0.11696766798257048, - 0.0981827299643267, - 0.11001296839506491, - 0.10182928682908242, - 0.09216632837713307, - 0.10557919970444328, - 0.09698831235983585, - 0.14276141794692232, - 0.12212317695502656, - 0.10900744871412148, - 0.1051513977977385, - 0.12663615973540854, - 0.10350995084678041, - 0.09144637804926874, - 0.13177392922328893, - 0.12658110410730666, - 0.10779276350614533, - 0.09797885492547968, - 0.12630756903545384, - 0.11757537262817565, - 0.11688867179707739, - 0.10979932790529734, - 0.11336188374846409, - 0.1320442333765749, - 0.12416340357541635, - 0.13337241725077414, - 0.10634742630936204, - 0.10939674856751501, - 0.1021514007940311, - 0.10092743360269135, - 0.13256200589285638, - 0.11955108802132025, - 0.13731836681222373, - 0.10005294504644739, - 0.12233663352384917, - 0.09585094794854557, - 0.10383189899457679, - 0.1171546126575045, - 0.09317199059025147, - 0.11722078005756285, - 0.13199824539779703, - 0.15605532292542268, - 0.12966467063223258, - 0.11362950331300864, - 0.11730809803235366, - 0.10781132028478835, - 0.08890492472182013, - 0.13372930401005204, - 0.11423067510864504, - 0.07704271750521621, - 0.1221283208734647, - 0.11981139780680063, - 0.12436904747770255, - 0.09759683262196667, - 0.09535419999786361, - 0.11237363793193599, - 0.08208840076530786, - 0.13344886702512032, - 0.11624174630455422, - 0.1010587377260286, - 0.12105181073000018, - 0.13918372731716908, - 0.10948044246629127, - 0.11857425371318395, - 0.11414499226379614, - 0.09672535474035812, - 0.1008287285842857, - 0.12088143321050873, - 0.11865610827129386, - 0.09158911503886603, - 0.10053826843326065, - 0.11159121065336879, - 0.08700714599190387, - 0.11228704727964318, - 0.13511869744020963, - 0.111152884359621, - 0.10542317516945536, - 0.13300819895670435, - 0.12844827135231196, - 0.08402929476609552, - 0.08614602662318574, - 0.12348262671568529, - 0.08696003277126667, - 0.12614543548177146, - 0.0942274947115354, - 0.10796982469065475, - 0.12613272829435504, - 0.10753620557093113, - 0.14603106539564437, - 0.1430371655724716, - 0.11104172966415161, - 0.11132046736328892, - 0.11144461308155504, - 0.11220562175780716, - 0.0925118318950714, - 0.11528195451352427, - 0.13096842455282914, - 0.1158758698241022, - 0.12913839141930783, - 0.13179726765521127, - 0.09913254980755075, - 0.10447088325647341, - 0.11861655395769925, - 0.13102265669664345, - 0.08675969091855538, - 0.12349648060221907, - 0.11266475559190474, - 0.11187657295982477, - 0.11256295081126352, - 0.096596589182752, - 0.15874579209137676, - 0.08819103401372748, - 0.11820177678058938, - 0.10267782905704811, - 0.18090788653056314, - 0.1531885052620999, - 0.13823605350205195, - 0.18754370722451302, - 0.10170704265098815, - 0.12602511184227516, - 0.09900548641031985, - 0.11456006434501585, - 0.13064942543887045, - 0.11787309966704443, - 0.09104813985444464, - 0.0938590507643756, - 0.11878020227751651, - 0.10612952678273567, - 0.1338921614592092, - 0.1406872586335142, - 0.11726016286023747, - 0.1097044935504469, - 0.08551921449571252, - 0.10511068935880113, - 0.09740850085197852, - 0.10301761124900281, - 0.11678398252321141, - 0.10271787754953933, - 0.11968830573985621, - 0.11836271375014842, - 0.09717922548542814, - 0.12153609964741122, - 0.10166719422247342, - 0.12229524788992559, - 0.1204251614510416, - 0.1095751353714955, - 0.13462092941593481, - 0.12379996626504058, - 0.10485777498031354, - 0.10707230046896792, - 0.11533492393439203, - 0.10286446913511486, - 0.12566229236998272, - 0.1266419436050498, - 0.11990990038313692, - 0.09887998282885394, - 0.09494530076331761, - 0.13650173312222694, - 0.1628585630020621, - 0.09613203685765902, - 0.07619236575480498, - 0.10217116758288157, - 0.1249821011868058, - 0.1013642007569843, - 0.12605129895251974, - 0.11404258681754591, - 0.11472096550004932, - 0.13261385411296558, - 0.10516310974018675, - 0.09145978222295102, - 0.11643909434893504, - 0.08948850854636617, - 0.13836439617539403, - 0.10110831774990195, - 0.13207671603798948, - 0.1242800831682992, - 0.129259794880564, - 0.10923694870987989, - 0.0931006207398667, - 0.12099463503672253, - 0.09449891998449136, - 0.13922979043485664, - 0.09855587099566533, - 0.1025499634054648, - 0.12775205906555617, - 0.13074088735357567, - 0.11284952909928314, - 0.1196054421918368, - 0.1167205067042091, - 0.09075196799914816, - 0.13202695093347253, - 0.11828359758722574, - 0.09564475527811205, - 0.1241310325614398, - 0.12824314909522636, - 0.10108251777559862, - 0.1251553390258921, - 0.09896104231900656, - 0.11758586395539565, - 0.09936259438054046, - 0.0997872645694563, - 0.12007381315559772, - 0.12004272416709179, - 0.10508548481644561, - 0.10882652941514828, - 0.10661327075212357, - 0.10697775196689241, - 0.10525108591791174, - 0.10048013783826426, - 0.11886603961558215, - 0.0887340455489744, - 0.12259577361654461, - 0.09010374345926585, - 0.08493020221668142, - 0.1071576177480745, - 0.10544801360755399, - 0.12058190055010816, - 0.10646357590516019, - 0.11236835076516864, - 0.1020830568955498, - 0.11170206507985375, - 0.08415739561014554, - 0.09632144537706248, - 0.10229093440378989, - 0.13367321534384152, - 0.12597648731350314, - 0.15776694901799698, - 0.10938355257451081, - 0.10894308292008151, - 0.08868856868751851, - 0.08264501410456056, - 0.1030297261211778, - 0.14371941170671185, - 0.11616777708202985, - 0.15536679864502384, - 0.10874372062609525, - 0.11309439124267162, - 0.1452649491553114, - 0.08258506217263928, - 0.11025376225120687, - 0.08318910232768041, - 0.11851938710151334, - 0.1257188867752418, - 0.11376852590983011, - 0.12390364926140342, - 0.14732927726497796, - 0.1248276883585917, - 0.11830923181042875, - 0.1524167747061945, - 0.0930556477069722, - 0.09872506615404839, - 0.08511857248290247, - 0.10960185681086819, - 0.10909660059572267, - 0.09634662603548386, - 0.1273787676433076, - 0.11699729599729805, - 0.0949631212139996, - 0.08217076096703585, - 0.11998271723031781, - 0.1261922014121578, - 0.13952655723719593, - 0.1234106429859545, - 0.10692216935778581, - 0.13049443007578546, - 0.10638644723011301, - 0.09997514878668384, - 0.09410257019475199, - 0.13224288383853372, - 0.11632405273969934, - 0.10233150422419067, - 0.13514912777482332, - 0.09597047335864148, - 0.10351814995257622, - 0.10762123364418733, - 0.09380390567045409, - 0.10236207105798834, - 0.11202602499523676, - 0.11488080059823792, - 0.11170552447882932, - 0.14731157614136323, - 0.10389687771909864, - 0.11605524702314775, - 0.15502836203749037, - 0.13580406064364964, - 0.1085429472255151, - 0.10004621764037101, - 0.1115904554672671, - 0.12489571563339937, - 0.10435101157717562, - 0.11598710548883004, - 0.10321114869245342, - 0.12100806755791273, - 0.10411249651102308, - 0.11504347771738045, - 0.13310544967536714, - 0.12298434538283701, - 0.11287992600004323, - 0.09545351562853571, - 0.11164050033974281, - 0.11770587737059114, - 0.11843321331175463, - 0.09196806227802685, - 0.11044582886382714, - 0.10689265188344751, - 0.08623285624624753, - 0.12213708071760154, - 0.10217911249585714, - 0.1133323207388037, - 0.106780788470121, - 0.11198755625714736, - 0.08779864595697541, - 0.12791246080405644, - 0.11039687601602972, - 0.12419274720444007, - 0.08708130333962112, - 0.12819256048974575, - 0.10628842763628663, - 0.13802018855460782, - 0.11526242362311968, - 0.14255026882412114, - 0.12480052378335037, - 0.10827620797491148, - 0.12812846174790157, - 0.1020851019432721, - 0.11583140239727978, - 0.1070571076068475, - 0.154878692464917, - 0.12436464005401261, - 0.11291071507422427, - 0.09684415625138677, - 0.1061398555320227, - 0.11098829381404106, - 0.13689340449197174, - 0.10493112086161331, - 0.1144256231174106, - 0.1347460004243068, - 0.11752109173953708, - 0.09711540409139637, - 0.13321483022632674, - 0.1070424793645134, - 0.11679811021625285, - 0.10007824798765286, - 0.13237982394913703, - 0.13461897049277918, - 0.11344732733777282, - 0.09384913719153247, - 0.07331861448009572, - 0.11229407318928317, - 0.13328896314258054, - 0.13075111284312885, - 0.13172978173826927, - 0.10351434050666336, - 0.08791603205909887, - 0.10477054628360066, - 0.14876179522979885, - 0.109235000074231, - 0.12236921251362759, - 0.11173945329323634, - 0.10319337774593977, - 0.1217077997208145, - 0.09871482095349038, - 0.08893911506551702, - 0.0991152776168469, - 0.11849890448043927, - 0.10625068727229538, - 0.10875512454324743, - 0.13759004329741573, - 0.1240477468492056, - 0.08713650665523058, - 0.14070924072290827, - 0.10585778786557669, - 0.12402633099562754, - 0.12642452371039078, - 0.11704224597957331, - 0.12338812952601433, - 0.09946940576236343, - 0.10639514989064262, - 0.10290426069323558, - 0.11606322789161734, - 0.11314059631917793, - 0.1214628169166096, - 0.11919477399856429, - 0.1021984630283632, - 0.11599199029451555, - 0.08874337721540027, - 0.10338222801187419, - 0.10700392239558713, - 0.11912444613394828, - 0.10680917701658253, - 0.10119388456808757, - 0.11517881381639049, - 0.09648115908085401, - 0.100788530879617, - 0.11904454209885694, - 0.11631151274151659, - 0.1310956296950034 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgb(252, 206, 186)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 2", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 1.0494890221433808, - 0.20779150724282697, - 0.09632314718208726, - 0.09693844859307203, - 0.11735604996747671, - 0.09248512608184617, - 0.10470127483606521, - 0.07751580845243312, - 0.10158117069428874, - 0.09637455820830643, - 0.09775591459424382, - 0.08094188443894022, - 0.10597191813134695, - 0.10076588089248655, - 0.09824907563646064, - 0.09739082896188647, - 0.11938982021986835, - 0.13442099021807202, - 0.08153341878757273, - 0.0824183759624639, - 0.09276525782330523, - 0.11870567612556678, - 0.10021877547303437, - 0.10473686791650837, - 0.10608257118263283, - 0.0990390647306804, - 0.09142890759957309, - 0.09823328706402089, - 0.137501344157194, - 0.08667135107957631, - 0.08446244364437465, - 0.10278923552064863, - 0.09216347247942304, - 0.09236826430696178, - 0.12039690537254619, - 0.10974036432139075, - 0.09897592679872952, - 0.08937468061454236, - 0.10008577341247211, - 0.07911134822540318, - 0.07711771038940553, - 0.09804478483910824, - 0.08311569618989842, - 0.11933096060879388, - 0.10418921119389056, - 0.0933391742461118, - 0.08395912943100604, - 0.08618208817191338, - 0.07776491136864895, - 0.07522883712043993, - 0.09935209651175031, - 0.08247071611262528, - 0.1033999224740705, - 0.10163254600731587, - 0.08714232108459449, - 0.1135056560332622, - 0.08721128265875842, - 0.08422351175700958, - 0.09165685857101584, - 0.10352790006068921, - 0.10840364780187692, - 0.08204731594612533, - 0.10362537136481978, - 0.0887086331082975, - 0.11400938928776998, - 0.08531179632230285, - 0.09588253002224477, - 0.11229972052586962, - 0.08120561983213681, - 0.08079227967510212, - 0.08690026460075996, - 0.08456886214404023, - 0.10001332235741156, - 0.09524632142328074, - 0.11135267545454375, - 0.06678111836443909, - 0.09527649301982949, - 0.09871546422937283, - 0.09777398265326638, - 0.08157345008720164, - 0.10295864714916123, - 0.10012383439643026, - 0.09309686733159893, - 0.10286539555107103, - 0.08610643636746763, - 0.09140324923432015, - 0.08045953709330948, - 0.08195238369228834, - 0.0768544744464481, - 0.0965769324865639, - 0.08346117229379153, - 0.09118515931870705, - 0.09320374902874147, - 0.09140490530871613, - 0.06096839864295774, - 0.11503389704029612, - 0.09284132715267761, - 0.08856283082626962, - 0.09542112803947345, - 0.11276850500242265, - 0.0806890444806503, - 0.09587202286856715, - 0.10038546465617627, - 0.07594342418049566, - 0.09661622312143461, - 0.10132146384508958, - 0.08601703062739019, - 0.10052855363042143, - 0.11603584760983823, - 0.07746425836968969, - 0.11674431868593874, - 0.07835943373195536, - 0.09707985896511975, - 0.09093699474290237, - 0.08370655185529195, - 0.0894658628361783, - 0.0971956755373856, - 0.11095133206848722, - 0.08058758650507061, - 0.09518920611094282, - 0.15466342664659696, - 0.10795583641851685, - 0.10856177095524425, - 0.09796294321447853, - 0.14211403167127148, - 0.0940098354558252, - 0.09326023569362245, - 0.08793996680363055, - 0.07474515364886182, - 0.08790212038229722, - 0.11792374255892368, - 0.0882312245982813, - 0.08646095544908519, - 0.12248948860784067, - 0.08392690219021287, - 0.10482323031002598, - 0.10183476386545831, - 0.10142467172595507, - 0.0771923323421433, - 0.09976073702035704, - 0.10015029173875746, - 0.08402952479967596, - 0.09052318020847262, - 0.08977009655389065, - 0.07911877297635479, - 0.08035710713367492, - 0.08821132198130004, - 0.09305678064080966, - 0.09175622277729001, - 0.07965784491748096, - 0.07974676375897459, - 0.08573487762368394, - 0.08865909095185673, - 0.09268818158726366, - 0.13604017288626039, - 0.0666238556125932, - 0.09877825172538662, - 0.09579663065361184, - 0.10009008746298724, - 0.07638071739030722, - 0.11673810471776168, - 0.11005177558420752, - 0.09677937693132443, - 0.09999629916469215, - 0.07437052888289969, - 0.07430685334758533, - 0.14449136944435464, - 0.09618010977502761, - 0.1168790464878481, - 0.08338746466955806, - 0.10342905012377067, - 0.08185907339604795, - 0.14027998661302135, - 0.08628448401372896, - 0.08911361659213402, - 0.10220300483193184, - 0.1222319236893971, - 0.09738021189821808, - 0.09250664296272752, - 0.13323794830652347, - 0.10810151938438808, - 0.08805468736625895, - 0.09044186885225707, - 0.10518114864791189, - 0.09423740815133494, - 0.09535054858870481, - 0.09117072446477108, - 0.11174320353827083, - 0.09041763161585396, - 0.08064696072355565, - 0.09953955885406138, - 0.09156215929516351, - 0.08088998762307562, - 0.10263299342529555, - 0.10859754047977108, - 0.10593329747388765, - 0.06795391031281328, - 0.09112486408891839, - 0.11000689246783606, - 0.08570796518940627, - 0.0926849145109369, - 0.12411138259086846, - 0.09610795067407923, - 0.08005483108367094, - 0.08959647496867049, - 0.08468284092845267, - 0.1243654980226608, - 0.09320458207199522, - 0.09554723307124018, - 0.08940724889934093, - 0.0846817248476653, - 0.09804890302302229, - 0.09966335927916654, - 0.09947272037138304, - 0.06820478725138554, - 0.1444000294259702, - 0.06283381804726568, - 0.089479131318497, - 0.10577761337886689, - 0.08298961998555819, - 0.09120147728636292, - 0.07523679363187685, - 0.09661758640158716, - 0.10061436542000894, - 0.1064282163975663, - 0.07767431414989938, - 0.08342743960153792, - 0.12286622498487304, - 0.08603856843199506, - 0.08536469538265032, - 0.07901281483689945, - 0.07643366626381917, - 0.07644976473311021, - 0.08800872983305325, - 0.0989439505799013, - 0.07424643949717653, - 0.0949447264201708, - 0.0915289301064522, - 0.10063929695471152, - 0.08081622912091456, - 0.11156310847456681, - 0.10384296051536945, - 0.09628655015916465, - 0.09317982757042255, - 0.1058587195210244, - 0.1268007375276579, - 0.12939396512482307, - 0.08569204814369892, - 0.07498042477333176, - 0.09630073238976924, - 0.08529881520857689, - 0.1151406412408683, - 0.08564984365756255, - 0.10147335866301166, - 0.09903168185697969, - 0.07900627456078332, - 0.11428694394715472, - 0.09581270002599428, - 0.09546346096986166, - 0.08849564590084688, - 0.09420458077570838, - 0.07053912463331136, - 0.11174588968178784, - 0.09324750839052168, - 0.1027522707312853, - 0.10750509817520158, - 0.07805275660832658, - 0.10958482565020497, - 0.09817933335197239, - 0.08846436038764918, - 0.10057679581035867, - 0.08753486383810843, - 0.10447175021607204, - 0.08694248541634518, - 0.08057136320116151, - 0.09857449616043232, - 0.06488836608331876, - 0.11581756730069197, - 0.07756249118648527, - 0.08872642861766883, - 0.1049334994265908, - 0.08601795001487016, - 0.09316545415461824, - 0.08382033523158552, - 0.07207814783231119, - 0.07796933336969265, - 0.11209253313141246, - 0.11248548036852081, - 0.08632726682361191, - 0.08206993175518895, - 0.1219354011932049, - 0.10063362821330388, - 0.07184824585216461, - 0.08515276233254196, - 0.13420010865740262, - 0.10891663092423441, - 0.0883440022874038, - 0.07996201085055929, - 0.08667543900005126, - 0.09324252385847917, - 0.08507117160117378, - 0.06773634333027688, - 0.09192002138886239, - 0.09257415317199963, - 0.07422901617144952, - 0.09245258444966765, - 0.09326612420883951, - 0.0896449541247779, - 0.08745026891305725, - 0.08835481093169303, - 0.11048027709594765, - 0.07619484881323023, - 0.10724462933845842, - 0.10481987002319221, - 0.10539821489781173, - 0.1209330466747671, - 0.11960425087282302, - 0.08943811091485444, - 0.10518963462414177, - 0.09736502122954066, - 0.09340103042329169, - 0.1292402053689996, - 0.08953619892241692, - 0.10121453778805377, - 0.10002381240694568, - 0.0818458174040591, - 0.09039372996269204, - 0.07517165931469916, - 0.07166955784779361, - 0.11378568476411788, - 0.09160534820310057, - 0.08059177319787474, - 0.08499657157715178, - 0.11263769083542137, - 0.09246821931399526, - 0.11605736208745121, - 0.08033821149031078, - 0.07079886947114859, - 0.10586023148192375, - 0.1318524117271879, - 0.079521897888264, - 0.12078276904421893, - 0.07791094356661614, - 0.09737133102266815, - 0.09693405396354036, - 0.08282456884052598, - 0.08885177143265281, - 0.11169269839960272, - 0.11488125615294574, - 0.1048083419326066, - 0.09299433929632907, - 0.09646286201067482, - 0.0869897195286501, - 0.12551074472330018, - 0.12402943239560761, - 0.0756638041772709, - 0.0844682272606228, - 0.08202987575137666, - 0.08368889717046153, - 0.07654643299031991, - 0.08885724222732218, - 0.08937931219280365, - 0.10386019036441482, - 0.08761192900427923, - 0.08423203847640194, - 0.08502711887255068, - 0.11109524039247481, - 0.08368702975068672, - 0.06627657332820269, - 0.09436515060923786, - 0.09871902593380319, - 0.07147202147377119, - 0.10946610256700862, - 0.06781402092076073, - 0.09688574552818296, - 0.08955449932980915, - 0.09008061231049685, - 0.08611481143619618, - 0.08314052631851722, - 0.08557767467519775, - 0.09068730255198107, - 0.11182800116471182, - 0.09656790026399234, - 0.0999565145311074, - 0.10053406731145338, - 0.08359734697414684, - 0.07799719779200211, - 0.0824746214776525, - 0.09997951585135166, - 0.07901355831721713, - 0.0911782633306115, - 0.11406039834945211, - 0.10795825540712022, - 0.1029143301599193, - 0.12182195001325823, - 0.08319604396363645, - 0.08641700355290616, - 0.12847968296432435, - 0.1113910055467498, - 0.09748154396461158, - 0.08911946398626118, - 0.08155374730608082, - 0.10424011057380038, - 0.08708332816131584, - 0.07203844937258845, - 0.09896150407234312, - 0.08077052945113998, - 0.10746209104168802, - 0.10005939172662462, - 0.1053495768785623, - 0.08845383942577717, - 0.09235672172565476, - 0.08804654752729006, - 0.08802995277568763, - 0.1218766329071297, - 0.11493375483892077, - 0.08876916538524884, - 0.0735460092750562, - 0.09087848172836417, - 0.1074368052676907, - 0.09636207925206368, - 0.08237557759695083, - 0.10294433069358545, - 0.08511515885070496, - 0.0972407850634674, - 0.08960766335871817, - 0.09330443905527626, - 0.08044674553427072, - 0.10021946667198776, - 0.10939374603677968, - 0.11100916974182057, - 0.09001875994853574, - 0.0990810872987152, - 0.08547886986595823, - 0.08205175922612201, - 0.07316649303233047, - 0.09220520130668886, - 0.10793794052300654, - 0.1345262050215565, - 0.092019764026055, - 0.09220573381229924, - 0.09518899869131532, - 0.10332138662220577, - 0.09937909036087385, - 0.08585888993733068, - 0.07585408450509404, - 0.0808127627407749, - 0.09714124394185007, - 0.09317951565401335, - 0.10820610236274296, - 0.0810182553475647, - 0.11655638342356821, - 0.07326220492066365, - 0.07465345253036743, - 0.09720452956911838, - 0.07209787324870648, - 0.09155616602928761, - 0.10386490885764005, - 0.08912960723679901, - 0.12340938375744637, - 0.08687564191985293, - 0.0896824911939405, - 0.0808488453158818, - 0.07304307372947955, - 0.09425693640463212, - 0.10636927831837584, - 0.10508536181631517, - 0.08658116560234515, - 0.08699611943620178, - 0.09819079390441073, - 0.08747493502753552, - 0.11493508750455468, - 0.12573107840249712, - 0.11799726363969364, - 0.08164445141967168, - 0.0914407926954405, - 0.1100841180654066, - 0.1030601764349035, - 0.09155621208647584, - 0.08309246257825724, - 0.0727539423490404, - 0.07920795585406068, - 0.11581218863937612, - 0.08218377078201679, - 0.08835032946995913, - 0.11277495216532349, - 0.11176129019690734, - 0.11215909836318037, - 0.08825373132253664, - 0.09036295503905456, - 0.08827169370615684, - 0.08720210117273655, - 0.06996003022422731, - 0.12433010274278787, - 0.08823085768968109, - 0.10471629971504447, - 0.08021533984729246, - 0.09600639857065446, - 0.09550325446011242, - 0.08360725994721774, - 0.07224226516029451, - 0.10024760380914224, - 0.11250286294433103, - 0.09334023183953688, - 0.08881200250462323, - 0.14497996290768794, - 0.09327878594526999, - 0.11788066093977473, - 0.06686893571901706, - 0.10894434697935398, - 0.08776724265926289, - 0.108623779538819, - 0.07680686539977807, - 0.09681629366830015, - 0.1033701497450712, - 0.094709567725555, - 0.07641682725610499, - 0.0763108992924882, - 0.09496911010529505, - 0.11413322499670063, - 0.10348678915866849, - 0.08336107062324034, - 0.12516785077877868, - 0.09027276613790336, - 0.08296458033483406, - 0.09389951648475887, - 0.08248147022378077, - 0.0737017669945223, - 0.08792072609207204, - 0.09231880329989804, - 0.08074048046222003, - 0.07921764476758682, - 0.09423620291715938, - 0.09550729378786259, - 0.11118293417605475, - 0.08739609888045702, - 0.10702630372838015, - 0.09435360101019306, - 0.09316640747296169, - 0.09308973092412821, - 0.08462453504252818, - 0.09443116826950951, - 0.10092311675657256, - 0.09466209013030732, - 0.08513620487524115, - 0.12425697901630216, - 0.08475687349397674, - 0.11867925553143407, - 0.08438232026638581, - 0.08215450566862507, - 0.06999868975356188, - 0.0846185396164795, - 0.11945339889426562, - 0.09120055632003869, - 0.08127562776574256, - 0.1100083260486684, - 0.10180847891582998, - 0.11369191092800679, - 0.09090412294740553, - 0.08402341937609878, - 0.0803488870389319, - 0.0973121505912972, - 0.07591869475632695, - 0.10532455768568323, - 0.07317684505189714, - 0.08337757129397616, - 0.11340972713811971, - 0.08607943868264438, - 0.07888933973131822, - 0.11979089913397557, - 0.08506267299511595, - 0.0948660646934423, - 0.0831322211566147, - 0.10542442036197078, - 0.0872059781124521, - 0.08803342275958558, - 0.07418714888587331, - 0.09786511494229043, - 0.07202145287433136, - 0.07358119432484231, - 0.08288086835590433, - 0.09408047217292739, - 0.0846495010830601, - 0.09323809578102339, - 0.06622917279401758, - 0.08366518282997994, - 0.0780302872371112, - 0.12129645824001964, - 0.10299448696785853, - 0.07516892196033917, - 0.09681739376536683, - 0.09397224044523778, - 0.09134909387325511, - 0.12084257950445314, - 0.09025741076732045, - 0.08072747778315577, - 0.13958244644443482, - 0.10058237535395813, - 0.09454703188909837, - 0.10004774923983722, - 0.09624343626384549, - 0.09388880620317026, - 0.08951213826449955, - 0.07663789716201903, - 0.06957320618141671, - 0.10246766058625192, - 0.09816609961077521, - 0.09468041860591571, - 0.10821508448293968, - 0.10465606587321571, - 0.11179489119217442, - 0.07810489220214621, - 0.10515946305715423, - 0.0893161734576807, - 0.10218094955519831, - 0.10999665604355537, - 0.10165395573475192, - 0.10455615123468519, - 0.07946916448183848, - 0.12969749783084175, - 0.08819607861729963, - 0.08433024234304419, - 0.09518503550310706, - 0.08982817326347496, - 0.09921556990501575, - 0.06809700398581654, - 0.08252246011921979, - 0.1315956751213803, - 0.08707019373975318, - 0.10007701519854356, - 0.09756824590975227, - 0.10465783677037568, - 0.08709517254585847, - 0.08915374021073595, - 0.10336880397642294, - 0.1105904412480339, - 0.08604305639220786, - 0.09932499210033593, - 0.08002847034518315, - 0.11202004875394854, - 0.08343228431264658, - 0.08691514568282888, - 0.09261118369381363, - 0.12289227710505517, - 0.08862543765131944, - 0.0977852725585102, - 0.1012145350687473, - 0.10957507231364196, - 0.10689375177983237, - 0.08817988194715014, - 0.07926189980342048, - 0.08167665480541168, - 0.11785912302135264, - 0.13994432778094662, - 0.08729159164961268, - 0.09697504639097047, - 0.09933509483602963, - 0.0874928931838875, - 0.07801412353883896, - 0.13690318933553558, - 0.13195645153427576, - 0.07487083882387655, - 0.12409448668814868, - 0.09434674630295785, - 0.16024566545218588, - 0.08807242212262839, - 0.13435599279366742, - 0.100129662071463, - 0.08509390953139645, - 0.10324033919935399, - 0.0656177715065827, - 0.07927439763260516, - 0.10476991921598444, - 0.07746836778790335, - 0.09364761827941728, - 0.08465552021666553, - 0.0932904834241392, - 0.07744392928101412, - 0.10203464838051222, - 0.10386801606062944, - 0.09000170201822487, - 0.09379489130350772, - 0.096440281405178, - 0.08835317201300676, - 0.07114611606109106, - 0.09444107889128639, - 0.0967687367248639, - 0.09436652237532206, - 0.08506170426117918, - 0.08411490898227335, - 0.10894147328174741, - 0.0880892242548025, - 0.09202698448451367, - 0.10459709748567705, - 0.08996223072033159, - 0.09720394115364533, - 0.09796410248149369, - 0.08774367724886593, - 0.12393429553130339, - 0.12170078196654473, - 0.09533229443209075, - 0.09305312017083374, - 0.10800526552860568, - 0.09121538302113281, - 0.08504165286570482, - 0.09777032030941782, - 0.09611044082878971, - 0.08751063112261254, - 0.09069397219455812, - 0.09938267350046004, - 0.08786330705908561, - 0.09321786434704238, - 0.09875618392909792, - 0.11450677652258648, - 0.13172881938766462, - 0.08331385865705476, - 0.08621047917942896, - 0.1091537830634989, - 0.09828648579578163, - 0.0888669810014644, - 0.0722106213952441, - 0.10779992674651237, - 0.09075981790957666, - 0.0664463225348825, - 0.10779340531924962, - 0.08025741333056328, - 0.1012363975526867, - 0.0917949426925468, - 0.09274799350086985, - 0.09580968836413924, - 0.11611464721837482, - 0.07839784378120193, - 0.09944861983990924, - 0.08119194965606441, - 0.09676319472210716, - 0.08684927359894859, - 0.08475133527077876, - 0.09985060674417262, - 0.062215214237002846, - 0.11195179421504693, - 0.08888496359896744, - 0.10486497832063839, - 0.115256380739436, - 0.11241425381225069, - 0.1035022920572164, - 0.10263316394047158, - 0.09351658464965812, - 0.10252660791480459, - 0.10993687345738745, - 0.09362740242920894, - 0.09117499688213251, - 0.1115521078490417, - 0.08035534875637555, - 0.10182749162035053, - 0.08384571988654924, - 0.09140129306345078, - 0.1037148814838969, - 0.0820234230474602, - 0.07521564248689933, - 0.0925535521537321, - 0.06603449260263354, - 0.08475958807090407, - 0.08833671766666189, - 0.08895315923291526, - 0.08467662880491707, - 0.09595508134873543, - 0.094887311084808, - 0.07609542737266702, - 0.11085444705120723, - 0.11504883650779503, - 0.07786027461423439, - 0.08018985435509686, - 0.069830674890149, - 0.06877326850638932, - 0.10447981790101595, - 0.08108904651160219, - 0.10482531676099541, - 0.0990143467684773, - 0.08221308669132275, - 0.12075518339453935, - 0.09898497572777755, - 0.08619811315745222, - 0.1064171619559689, - 0.09379413209401444, - 0.08664474423706989, - 0.11161753224053579, - 0.11469246462444292, - 0.07851729460640716, - 0.10457398985819857, - 0.08815334167517881, - 0.11572238551122206, - 0.08624406408115548, - 0.09325596988531411, - 0.09792990847573456, - 0.0910219464963958, - 0.07207732967488907, - 0.10076610223754835, - 0.08677287851993375, - 0.09048466828691139, - 0.07775532770867913, - 0.08795816462063971, - 0.07373802381670319, - 0.07345673698032217, - 0.13661751299189884, - 0.10344616833597015, - 0.08523185790252835, - 0.08322780968364797, - 0.10217809868714106, - 0.07678931058033521, - 0.12189353578783348, - 0.08689330327273682, - 0.08408579501677042, - 0.0923260311826016, - 0.10551428288083653, - 0.0913242390808258, - 0.07303846126715427, - 0.06819481746612772, - 0.08449662444744137, - 0.09802649542952394, - 0.06881086896197663, - 0.07954754775629745, - 0.10441781629228566, - 0.10160305534730432, - 0.10045624286083239, - 0.09206878626665264, - 0.10584003406527578, - 0.10896678102390786, - 0.09854648495672255, - 0.08515721834357913, - 0.08093422341570713, - 0.09601829476064253, - 0.07349050910971229, - 0.08969458014277285, - 0.10755814259652705, - 0.10926906879667687, - 0.07579719792128321, - 0.092966446996949, - 0.0974085304656485, - 0.09332115414337347, - 0.09056618105396382, - 0.08157814714901931, - 0.08575249566454352, - 0.09823806228369653, - 0.08557791580818716, - 0.09885004884809262, - 0.07582594263511419, - 0.08649715113206634, - 0.09287960911818201, - 0.12181559219727124, - 0.10072401634047526, - 0.13692176363243538, - 0.07697154510367521, - 0.10798981027622773, - 0.09613483482225084, - 0.069499492747592, - 0.07298341770823089, - 0.09744195442394525, - 0.08584015103380037, - 0.08804126492520778, - 0.09036190840706636, - 0.08526107980084861, - 0.08383455855907525, - 0.08099919234290984, - 0.07991165012836912, - 0.08125257725845184, - 0.074618072636385, - 0.10002695426873853, - 0.07727484726877067, - 0.0843034954208432, - 0.08754282617246686, - 0.1040179873559601, - 0.11975924316734209, - 0.0810544086067402, - 0.09637305872499248, - 0.09456651926639177, - 0.07844255519269669, - 0.08628276097125497, - 0.12605257800844807, - 0.07566190590328373, - 0.10412876431735309, - 0.09458337980185327, - 0.09319221901557102, - 0.07337065340687489, - 0.07395509941419065, - 0.08110272146366083, - 0.09866078609396804, - 0.08712647526092912, - 0.08829935912683652, - 0.09385566511594173, - 0.07606768983299492, - 0.11237303613848526, - 0.08307199520263547, - 0.08984855979776524, - 0.08428261072777257, - 0.09199864472197354, - 0.12809632204371887, - 0.12421665995518272, - 0.1017946803736865, - 0.1047894536590529, - 0.09763433945900166, - 0.09807082129126848, - 0.10797944353305548, - 0.08044104035146285, - 0.09827986596944957, - 0.09504850425870104, - 0.0906766831865348, - 0.07980204574588974, - 0.08339492456262329, - 0.10865991075615491, - 0.0946420682263388, - 0.10874180388082973, - 0.10405745246303535, - 0.08766171703968431, - 0.1029117184988178, - 0.08187600502655445, - 0.10161370476287898, - 0.09406237700276282, - 0.1036848217714754, - 0.0957018782055323, - 0.11230716213706486, - 0.08361513483356868, - 0.10736441616933438, - 0.08646556632770153, - 0.09034355608710908, - 0.1498932709969458, - 0.07697984582922075, - 0.09458015619886555, - 0.1059977679961243, - 0.08968367464389809, - 0.1088518991043061, - 0.07217157482099044, - 0.10435939956869644, - 0.08489323699018012, - 0.08555877211271164, - 0.09127863150930479, - 0.12755304110837004, - 0.1187698080790384, - 0.12233632691230305, - 0.10338375883295838, - 0.11310916901519315, - 0.12491146138891394, - 0.09717588572889684, - 0.09498760491005717, - 0.09222638719326569, - 0.09043095796827272, - 0.07802890985729245, - 0.11798829581666015, - 0.08946727486007477, - 0.08947416155546234, - 0.0927083779489336, - 0.08120368641974518, - 0.10243261105575147, - 0.0937475748992254, - 0.09048114023680028, - 0.10959971823247698, - 0.10732939690728135, - 0.08775861281471749, - 0.10041002310844221, - 0.09238444674593903, - 0.09227773794979262, - 0.11324970513650295, - 0.08028008892657831, - 0.10537499354294184, - 0.09289877518534978, - 0.0900544138636713, - 0.09688486759939448, - 0.08561022659987383, - 0.0865226516912625, - 0.09626583930788284, - 0.08214072088422422, - 0.08966674443985946, - 0.09321101047077576, - 0.07069043910893713, - 0.08319890972313296, - 0.11812151792765832, - 0.11841910776814812, - 0.11102817107262364, - 0.08603091164776616, - 0.10087461591457436, - 0.09930576395639215, - 0.08991342816778954, - 0.09410747635013335, - 0.07113975332176231, - 0.08548357133268561, - 0.100119855454298, - 0.10304954578348847, - 0.0938905387478522, - 0.08165159569251931, - 0.10032310488169863, - 0.09379961305139967, - 0.08812052758844377, - 0.09101165308433816, - 0.07142413287358201, - 0.07215023038681814, - 0.09069532143872686, - 0.0945830470747454, - 0.08936074073042398, - 0.09509983462848627, - 0.08819407042050906, - 0.09895612047621281, - 0.12320411843248454, - 0.09719705827816204, - 0.09403554792349186, - 0.09656387960395053, - 0.07927797338332429, - 0.09612165901337846, - 0.09438534626280226, - 0.1202300056747604, - 0.09321296648828903, - 0.08465088604045802, - 0.1136245303554946, - 0.10891370063229419, - 0.11591879192841532, - 0.07765834939361925, - 0.12207015442815676, - 0.10566466910185557, - 0.08544640325413726, - 0.07836747368995406, - 0.1166393330541885, - 0.1287724609972369, - 0.0741947593038201, - 0.08642909209474578, - 0.0884402276169547, - 0.10871998610230282, - 0.08929062482973987, - 0.09255982227591132, - 0.0873461051122169, - 0.07280898088651601, - 0.09069874393802992, - 0.10045317058811196, - 0.10644491470840209, - 0.07334477135485233, - 0.11306861660829089, - 0.08628949646149424, - 0.09421826080561098, - 0.0809424751407694, - 0.10922395527909498, - 0.10614013548855482, - 0.1081069738213579, - 0.09677424729192656, - 0.08942362296140575, - 0.07473289510390023, - 0.09512618887659295, - 0.09906095625385074, - 0.11560471189256467, - 0.08892196924956976, - 0.09111889239238055, - 0.083298765207763, - 0.09977625788857958, - 0.09288476140193963, - 0.09640160568133749, - 0.09798385283810138, - 0.09351866746139485, - 0.081313569101818, - 0.1207566222529079, - 0.09407509204170718, - 0.07399190963208441, - 0.07944983464469327, - 0.07575498397458322, - 0.0972322517391403, - 0.07330232028502666, - 0.09968843125600294, - 0.09795432432320307, - 0.0964701638521024, - 0.12748873011079961, - 0.10640311162530681, - 0.10619080460587439, - 0.10757364438007885, - 0.09267688579395664, - 0.093239523142733, - 0.07087151824917984, - 0.07455146500255204, - 0.10792429027854568, - 0.08065793559235485, - 0.08767972269266852, - 0.10006650219865483, - 0.08415225518056216, - 0.09845017328928124, - 0.12264791272076192, - 0.0958769195895724, - 0.07604308922036891, - 0.08474721921009849, - 0.11450445129784857, - 0.10092937596955733, - 0.0882755374251799, - 0.09406938142080007, - 0.09424604856351079, - 0.10184834043690862, - 0.06922787431764031, - 0.09514663089931377, - 0.09267646283646573, - 0.08525568094084902, - 0.0859403184505349, - 0.13414032314648053, - 0.13512121771351104, - 0.11497075639762369, - 0.08365432711269737, - 0.08677045314182263, - 0.08758873766825247, - 0.0891667834917378, - 0.09126607879748627, - 0.09850947674786716, - 0.09583134543855057, - 0.06598322695271709, - 0.09259196513922273, - 0.10238444505411562, - 0.09652712868707383, - 0.11876894266196006, - 0.08983172098090611, - 0.08863879556686535, - 0.08935628025640403, - 0.0845658337702266, - 0.14740395831076125, - 0.11594802930454745, - 0.07647457663160082, - 0.10994570584500238, - 0.0841022230591374, - 0.08153856888558748, - 0.09490530035871836, - 0.11931276929118051, - 0.09837221291669608, - 0.08873518306786742, - 0.09086334133674974, - 0.08382599819720404, - 0.11592607426292977, - 0.10142762916981891, - 0.06985257834215462, - 0.08055173925561099, - 0.07128097551669377, - 0.0872451172639686, - 0.10722087194644936, - 0.11209290770122371, - 0.10442458878982727, - 0.07462998842649467, - 0.08350967143881731, - 0.09897084157720254, - 0.09428957184470968, - 0.07970911610458338, - 0.10523052136683002, - 0.1044933078291653, - 0.09034105668512803, - 0.1177632256401642, - 0.1060113227063731, - 0.10221070750989472, - 0.09037277908804428, - 0.08672579253191885, - 0.07704097741814997, - 0.09023890298853988, - 0.08766250283292344, - 0.08874703667784042, - 0.119987834550286, - 0.1024154747381749, - 0.1147761863198809, - 0.09388947187057643, - 0.07631728063783978, - 0.0929831422520161, - 0.08852698226948985, - 0.08689593662160099, - 0.09662112024785964, - 0.09954646099826464, - 0.07675166000623768, - 0.07909444100838253, - 0.07917765237584778, - 0.10829433215105336, - 0.10236014982069441, - 0.08281317913102668, - 0.1386258555812464, - 0.09429308856093499, - 0.08189109722596312, - 0.09717268487151179, - 0.09603988199993235, - 0.06784582637175611, - 0.09046939723974283, - 0.08201748372995823, - 0.08453572711107202, - 0.10094921437423895, - 0.140071410123793, - 0.11494622688405975, - 0.0939536120739629, - 0.12306407533001282, - 0.11180671242465141, - 0.1090153481966934, - 0.1053207874149096, - 0.09204760261726762, - 0.09930721042607764, - 0.09253799288380296, - 0.06960595678204348, - 0.09270728261745331, - 0.09313512122798567, - 0.10252161798383577, - 0.08754231431932005, - 0.08546864795061379, - 0.09543692945113369, - 0.08832713549732056, - 0.11075906505487995, - 0.10327672325299764, - 0.1055607581845156, - 0.08931640641679722, - 0.11729695116959064, - 0.09457599187398578, - 0.087587391528972, - 0.10119600397899223, - 0.07241568361934336, - 0.07344297408812556, - 0.0842780345193506, - 0.09501241836294638, - 0.08568892976099501, - 0.09312742843475462, - 0.08111516203976502, - 0.10290852695289696, - 0.07689464474474032, - 0.11214516718004887, - 0.08939267815062923, - 0.09422877735046555, - 0.08940828484211971, - 0.1000257751318663, - 0.0946868274048529, - 0.0852020847781705, - 0.11268297487486828, - 0.11245486771462254, - 0.11573575178617379, - 0.07986063675395691, - 0.11117203857822587, - 0.11238909247994507, - 0.09193876574964, - 0.07511685737698034, - 0.08406850114076556, - 0.08126469245161974, - 0.086802059440977, - 0.0984158749255506, - 0.08316459769558672, - 0.09618706674384592, - 0.10529092092183115, - 0.11635239444943056, - 0.09109075431791981, - 0.11301187888711935, - 0.0981542503451072, - 0.09747442504974722, - 0.1095078322870145, - 0.08832026122668786, - 0.10212839914371073, - 0.11842128313569646, - 0.09628288834747978, - 0.14091473115466918, - 0.08192862679266065, - 0.09449201156382825, - 0.13678707637064758, - 0.08832145287888109, - 0.09224148860160904, - 0.09149459401084994, - 0.0812433628167934, - 0.128041739608673, - 0.08956231627100623, - 0.0764392754381175, - 0.11147773216353557, - 0.07029996039483308, - 0.08097364448318069, - 0.10469250434028818, - 0.08395072747291427, - 0.09022897705400897, - 0.0815702864328957, - 0.07955306786068604, - 0.10013638382722218, - 0.06711272910058533, - 0.07544753456266172, - 0.09609612151962439, - 0.10747084805203845, - 0.07947894229610744, - 0.11237220131780203, - 0.09295615122946312, - 0.08935348474555661, - 0.07061624794775691, - 0.10632325593593671, - 0.07600763205280911, - 0.12618097124854108, - 0.09047161886141668, - 0.07518401318699693, - 0.1432274372750503, - 0.1294611306722955, - 0.10064687856466642, - 0.10413748268573508, - 0.08386921580796079, - 0.08431863956434521, - 0.09388360240206907, - 0.13486188818452968, - 0.0926215024797459, - 0.09582903937273635, - 0.09241279907443073, - 0.12909905353141918, - 0.09378507636386345, - 0.10664279174573382, - 0.07000173430209419, - 0.06976958735074194, - 0.09700534196787501, - 0.10572519834025644, - 0.0947650311551739, - 0.08325420305939192, - 0.09781222667511963, - 0.08247211124643558, - 0.10603578390965644, - 0.0820967026006266, - 0.11573247354922986, - 0.10669491019981149, - 0.07200242069561226, - 0.08861380566353072, - 0.08934072524165967, - 0.09242151822103574, - 0.08618504599480323, - 0.08427255003978998, - 0.09460408732723449, - 0.09875791255600308, - 0.07738973300351923, - 0.09702309682206665, - 0.09850830108970507, - 0.06668382236075009, - 0.0880229945704257, - 0.0848777621883316, - 0.08418346259656503, - 0.09281701767016196, - 0.0898655185885127, - 0.08502547068052124, - 0.11640529547876188, - 0.08997668271407322, - 0.06931842527730335, - 0.10391971496560262, - 0.08876106928390279, - 0.08095799131770781, - 0.10495600906225791, - 0.0892071345658669, - 0.0774222239389036, - 0.09617626462255476, - 0.08489079071742489, - 0.09937601995576464, - 0.08284868643086156, - 0.07740551185084299, - 0.0822733226790953, - 0.09060787226321224, - 0.08826938079390712, - 0.07279187558183695, - 0.09403887963781912, - 0.0889026620384277, - 0.09897023243721415, - 0.1055962047298409, - 0.08998190608965856, - 0.08682019107366068, - 0.08578601494844154, - 0.11433698551195874, - 0.09928242954577235, - 0.08701331158869247, - 0.09111084495449573, - 0.08881634824163673, - 0.08411280032336772, - 0.10640015036212036, - 0.09196390048406236, - 0.0919811678029649, - 0.10177985940113747, - 0.09450567618526631, - 0.09731873677275606, - 0.1048118839186776, - 0.09334048266880618, - 0.09965175957188392, - 0.08776680720900151, - 0.09895503843277335, - 0.10825163860504101, - 0.12117041324366783, - 0.07896303923040876, - 0.09273861318701608, - 0.11306767460940619, - 0.09703455182661687, - 0.11998858826749274, - 0.10976362916392997, - 0.08080829293928328, - 0.06717683725163832, - 0.10123480876037083, - 0.08127838574550951, - 0.09651539432757321, - 0.10142631144372616, - 0.08510419636954666, - 0.11302652939492194, - 0.09022846396253974, - 0.09885009283348596, - 0.09886896378020842, - 0.08651197919232591, - 0.08707492321868646, - 0.0802575291982446, - 0.08003508956143633, - 0.10020818661540569, - 0.07232072537221729, - 0.09809001992056621, - 0.09071235117583797, - 0.13238371524968326, - 0.08042397033214883, - 0.10960863366406529, - 0.11388660673070075, - 0.08984392870707433, - 0.1041181815842428, - 0.06894886258760893, - 0.07387743334591376, - 0.08027413665140005, - 0.08760395230063492, - 0.11461542032074144, - 0.09874403047788456, - 0.1018424481072298, - 0.08038997331409424, - 0.08916530370129234, - 0.13960510153075184, - 0.08267911947188894, - 0.09231234744150016, - 0.08255544161520739, - 0.07003707589473042, - 0.08973391226059801, - 0.0925827044298744, - 0.11907686293176802, - 0.10270496704554807, - 0.09645534807585285, - 0.08985268551644252, - 0.1055098786946714, - 0.07564827120788159, - 0.0852335911113102, - 0.10315974301815381, - 0.08467432342845484, - 0.08680946624698371, - 0.08167740090125014, - 0.08479010369856188, - 0.10126415203219497, - 0.09104639240366531, - 0.08181950746440787, - 0.12323219153807005, - 0.09128729010624603, - 0.09111404664534038, - 0.07270295847450368, - 0.06970914211618251, - 0.11245219984577662, - 0.1010883530343298, - 0.09115947233694618, - 0.06695736514198143, - 0.08943175598482545, - 0.0729860494910416, - 0.06963744125527312, - 0.07619211891035847, - 0.11108456884043307, - 0.11205555234832076, - 0.09525145767621104, - 0.0878267993083003, - 0.08512662357570189, - 0.10209693405583917, - 0.08032371089615044, - 0.08555824091213604, - 0.10394764965622705, - 0.11102691762347207, - 0.12629120144695305, - 0.11851030132844696, - 0.0993390582354859, - 0.10419862726415906, - 0.08031177079121213, - 0.09768303777542454, - 0.07165217652821831, - 0.08635794620115271, - 0.1089916537742506, - 0.10551870478627091, - 0.08069358714725569, - 0.10096380261206069, - 0.10178652510768355, - 0.08044040087179, - 0.09285770801703146, - 0.10352647881239387, - 0.12434496049466207, - 0.116304199779782, - 0.11547107961368554, - 0.09909262521712411, - 0.10945397907600134, - 0.08317436194014982, - 0.07501337659565821, - 0.10329925412209998, - 0.0662912902504123, - 0.1073675706654167, - 0.1410000006724325, - 0.09187529530654925, - 0.06780492333603882, - 0.12297480711533086, - 0.1101711175737725, - 0.10151912601037004, - 0.08559070489641078, - 0.08042772519604513, - 0.08159551501557442, - 0.10057289693183005, - 0.10659747468878572, - 0.12163196480652408, - 0.0982588568878987, - 0.1045457105019251, - 0.11120303202941025, - 0.07062079905544025, - 0.07976413256941504, - 0.10449128469687856, - 0.081681204748769, - 0.07452340878701302, - 0.08509200198241451, - 0.09920147016821527, - 0.09015075609387835, - 0.0858907157119496, - 0.08221180941988582, - 0.10053412733973557, - 0.08737169965519084, - 0.09305743266619729, - 0.09463435924927, - 0.10867072994239321, - 0.08868576827061068, - 0.10009888264726514, - 0.08982164028764751, - 0.09669265519804994, - 0.09800325272034666, - 0.0773521599874458, - 0.08766693656763917, - 0.06622153000361673, - 0.08636830595053352, - 0.09537239868348377, - 0.10719014575951544, - 0.0929835945974601, - 0.07519138336944413, - 0.0789852319421578, - 0.08052298645724096, - 0.08794679510446966, - 0.0995676426862872, - 0.07858897029853637, - 0.0906450599978649, - 0.08715282837407538, - 0.10789955367413301, - 0.09730890503330494, - 0.08792267399040149, - 0.08826925938878714, - 0.08088482203902701, - 0.07994248108441987, - 0.1063359577725616, - 0.09117063925736542, - 0.09313879952695454, - 0.11357512609876046, - 0.14161079166992566, - 0.08476608236135702, - 0.07506931814037993, - 0.090552147753409, - 0.07410150231770629, - 0.07407984673282361, - 0.11148004042605462, - 0.10446037863179379, - 0.11977504514975054, - 0.07550106159401797, - 0.13857707045793555, - 0.11024523785706744, - 0.0937212459481052, - 0.08584686645686104, - 0.0894916061245882, - 0.07576138606168348, - 0.09947341627705528, - 0.07983817167945337, - 0.09232143831881864, - 0.09506656686462014, - 0.09273701881411928, - 0.09585523697553555, - 0.0975439243977525, - 0.08408478751369694, - 0.10043145514927644, - 0.09983905654416549, - 0.0829781216525218, - 0.10706494994291604, - 0.09457171886379986, - 0.08426092088652438, - 0.08135259998810554, - 0.09849575888872789, - 0.0744695446430735, - 0.10065115323932704, - 0.1101619631516315, - 0.0813291345358847, - 0.08835008896550929, - 0.10287078808664213, - 0.11541379949017783, - 0.09512484960367207, - 0.10272354906115792, - 0.08712143387052076, - 0.08268919234339678, - 0.08235357316171307, - 0.0841412420814727, - 0.10187897566562228, - 0.09964122211749117, - 0.11872749006268002, - 0.09432873545588202, - 0.11005285864038324, - 0.07285517250069669, - 0.08055858436716819, - 0.08653304669018208, - 0.11310792935534045, - 0.09566944663575427, - 0.08432820788899653, - 0.08829873202819379, - 0.11051462402830256, - 0.07707703152852526, - 0.12445728918440489, - 0.09087122177829789, - 0.1406956162319537, - 0.10895496405009719, - 0.09911856892942222, - 0.10559558947848045, - 0.11007525575724307, - 0.0945261082530988, - 0.09579435403746042, - 0.12056764909408549, - 0.10119342969189464, - 0.08956605097371505, - 0.08881228269592106, - 0.11952439224066015, - 0.09036112640434753, - 0.10692723454528137, - 0.08978664575793845, - 0.1110727946849808, - 0.10054109245723049, - 0.0762405726626579, - 0.07784739684143514, - 0.09331506336852632, - 0.0868289778015816, - 0.08722033760724196, - 0.10702069409918658, - 0.08481455992855916, - 0.076420536549321, - 0.082586700104939, - 0.09256477864310286, - 0.11615502339366027, - 0.08097088856441849, - 0.1043177339660511, - 0.08101958462453307, - 0.10564943865183941, - 0.07430186947622662, - 0.10935746717348938, - 0.08375106128296228, - 0.11073621931426263, - 0.08295267309629192, - 0.09193160861073156, - 0.0944480846162629, - 0.10628146412316007, - 0.10717698569218907, - 0.09975109128106249, - 0.08845223313178091, - 0.11145763081717903, - 0.09203558266201554, - 0.08390377897092993, - 0.08690153326540977, - 0.11395481240317581, - 0.11842485358136624, - 0.0985877693279636, - 0.07082041106679311, - 0.07721874660452922, - 0.07183893085062451, - 0.09958425270520951, - 0.08530645739266227, - 0.11273392314757945, - 0.0998429018414712, - 0.11048200694473895, - 0.07893532500232951, - 0.08189599834058658, - 0.06558360611276884, - 0.0792277745422278, - 0.08586305412460553, - 0.08477626665805132, - 0.094182035021015, - 0.08228004408175899, - 0.11384087084576312, - 0.08761897992773285, - 0.09012459028378972, - 0.08050953137170841, - 0.12571214832657368, - 0.0863909920534098, - 0.07600016795313828, - 0.082810718773678, - 0.09030408373299009, - 0.0975903833132916, - 0.11178154576486972, - 0.11358635621534181, - 0.10827010997284806, - 0.07348515480095254, - 0.11989137318140589, - 0.09338263503879854, - 0.11207886199047895, - 0.08192809633079474, - 0.0900069876776895, - 0.11787482056818951, - 0.11619202262243714, - 0.07483788218596005, - 0.0888994574203907, - 0.10098857577252886, - 0.0989361740404691, - 0.07652863349536651, - 0.08882107069211417, - 0.07879285996144533, - 0.08983419505575886, - 0.11352431135909803, - 0.0737119035374303, - 0.10357542148485088, - 0.09172502512307618, - 0.10400066352214689, - 0.07192651167167222, - 0.09374682810347555, - 0.10901944742872118, - 0.07488679972208824, - 0.11083092340888878, - 0.08947199062658345, - 0.07740635000881149, - 0.09436113404415646, - 0.1111972208528286, - 0.11434171181605812, - 0.08829554973721043, - 0.08052986692853077, - 0.1014201290730571, - 0.07512197185492352, - 0.1194806014186879, - 0.0947831788265252, - 0.09867003070533402, - 0.07772829915517572, - 0.08850629842298119, - 0.06845310473353577, - 0.10430325411430613, - 0.07827082571325958, - 0.09195501782960422, - 0.06918904929025838, - 0.089790880439939, - 0.0896767382546166, - 0.09194536859043978, - 0.07713693097066295, - 0.10970500001922372, - 0.10507569094950243, - 0.12169989196294788, - 0.11285176750497479, - 0.09509364098778182, - 0.0924482690243889, - 0.1055036984395974, - 0.09587249459620296, - 0.07908574785294527, - 0.09006275577936045, - 0.09966582279081249, - 0.08378155409011506, - 0.09672265178315571, - 0.08673732418626934, - 0.09677844968202237, - 0.08751278843295586, - 0.09554319335714975, - 0.11224325461972313, - 0.10408764653287018, - 0.09785967270441101, - 0.0995334036996132, - 0.10381779449244136, - 0.09202316099365897, - 0.07439980788946522, - 0.10816038155204051, - 0.07636271669930392, - 0.08838766922138741, - 0.0996080523644758, - 0.12443342945138296, - 0.09924667149206126, - 0.08814576107847555, - 0.0947640477622202, - 0.1248344044434531, - 0.08443606698699545, - 0.08682672195217613, - 0.085652810557116, - 0.08643957710031942, - 0.10088635233762373, - 0.0858917561950737, - 0.0873567546784144, - 0.0897360943404119, - 0.1026931469699322, - 0.1047012159078623, - 0.08711982876822928, - 0.10042041142212063, - 0.08799479185388968, - 0.09304495666152646, - 0.07370326720697837, - 0.13065371474039908, - 0.08052234678690323, - 0.10915225176760024, - 0.09425790673172381, - 0.10316331202596465, - 0.08782867380656138, - 0.10237230394142276, - 0.08627917930396381, - 0.08188473788172426, - 0.09233072302590196, - 0.09866374509660839, - 0.08043184759222329, - 0.09631165322934518, - 0.0953234713629036, - 0.08975440125679933, - 0.0852092373245087, - 0.06817862311625156, - 0.08241023796874011, - 0.10122615694170049, - 0.11138049064195234, - 0.12298124766529571, - 0.09063685887251867, - 0.09526178958290807, - 0.08935830760475622, - 0.09825085509656152, - 0.07024160377077815, - 0.0947203577667025, - 0.0923208965488403, - 0.07824513432650562, - 0.12378184842861684, - 0.08977018975687197, - 0.10512909378305375, - 0.10084439047519848, - 0.10785729921476876, - 0.09815374747728808, - 0.07392347762923498, - 0.08890733040590067, - 0.0883251448643068, - 0.07602432263855288, - 0.09578980920762456, - 0.095360924539735, - 0.1190125386739193, - 0.07993448966494861, - 0.09230472927120728, - 0.08804842197480299, - 0.0913273296484547, - 0.1033470637634389, - 0.08240298877279834, - 0.09056689081731603, - 0.09828881589521199, - 0.09881348081111976, - 0.08687626175489785, - 0.10472008755963705, - 0.08144273483844444, - 0.13209990496842033, - 0.0880164095928027, - 0.07656881981128373, - 0.09740780600969978, - 0.11685117713605181, - 0.08996219512869483, - 0.09466182123062482, - 0.09192235653744113, - 0.10222083128939179, - 0.08062546718437907, - 0.10932876873873316, - 0.09372208584351771, - 0.09174738668582451, - 0.0979199626099839, - 0.1059163087277115, - 0.09997418438192389, - 0.10645035306621924, - 0.08045989502524468, - 0.08947363153781034, - 0.0793143003593781, - 0.08523342520407355, - 0.12307150178917342, - 0.09243380905283549, - 0.10953929548807537, - 0.09466469087070872, - 0.11155289535031457, - 0.08618718820346019, - 0.07621884465841777, - 0.10106118176661566, - 0.0817815238426027, - 0.07623158065674408, - 0.0977262349593671, - 0.10156007587095518, - 0.0959359363409435, - 0.11292021366344172, - 0.09066416771525801, - 0.10320872703232474, - 0.08222589231299234, - 0.07121503175899299, - 0.08485314629647196, - 0.11616574317712686, - 0.09083298199399736, - 0.09800612478529022, - 0.09444613574301536, - 0.10934325808799854, - 0.09520994823041652, - 0.07140151037132496, - 0.09481719864500511, - 0.10447319837837961, - 0.09080327984205949, - 0.09845497018115924, - 0.09706258668550471, - 0.08357599809811511, - 0.104648148214276, - 0.0794202438212051, - 0.09938925750388447, - 0.10451000023409378, - 0.08278706069740803, - 0.07460128244160313, - 0.07412709492682201, - 0.10865662811774754, - 0.07576302131812063, - 0.10844206583444595, - 0.1194882470151417, - 0.0875056001647924, - 0.10822452088888185, - 0.0835957712564938, - 0.07808229390334534, - 0.10256230068861885, - 0.10762798763747884, - 0.08586498898825513, - 0.11464022060663454, - 0.08924733625701044, - 0.08257978339361022, - 0.10885625186117293, - 0.1161655974374652, - 0.11021014164847467, - 0.09409332776663264, - 0.09331619398610659, - 0.09531128427506173, - 0.09267204441054465, - 0.10509648618117969, - 0.07728559870238126, - 0.09213851797832406, - 0.09877816303648558, - 0.10331702946601619, - 0.0866043765570266, - 0.10479032690248369, - 0.09579037548520973, - 0.08162959220495267, - 0.08406952381465647, - 0.09824473565650989, - 0.08615052112410267, - 0.1059774291179237, - 0.08372422199417102, - 0.09580119750286133, - 0.09180162370467874, - 0.1142454514283826, - 0.07857715706571204, - 0.09114915066135257, - 0.10230404253765538, - 0.10030668192069198, - 0.11261649394301783, - 0.08026727428947265, - 0.08749405476142673, - 0.09288017103949638, - 0.09137798709667644, - 0.09868959426376797, - 0.11109958152337202, - 0.0977676790805665, - 0.07814162706654464, - 0.0837578297541061, - 0.07186872301644955, - 0.0862068095989095, - 0.08981668368948073, - 0.08843564204566834, - 0.09276293947937356, - 0.09345567702056132, - 0.09469922532537343, - 0.10378745015549248, - 0.0870662214236777, - 0.07201565880690507, - 0.08712283877158099, - 0.09508637352245511, - 0.1065577190507367, - 0.10400751251124826, - 0.11144892975260583, - 0.10955632872540587, - 0.0807884784668099, - 0.08954072401201062, - 0.08845508622147186, - 0.09594946401933564, - 0.09001635348386687, - 0.11066147084998222, - 0.10982690055204743, - 0.0933289323178836, - 0.09109948628973946, - 0.09462960495024338, - 0.07853465288866987, - 0.11585500517643381, - 0.0830366561459251, - 0.09882672310931966, - 0.09330454355357809, - 0.10970329822136163, - 0.10545865965002332, - 0.09635812636712124, - 0.0792582631542575, - 0.07756275950245303, - 0.14484767561835632, - 0.07411076271803639, - 0.07522587117592586, - 0.09087083961632608, - 0.08756802210071292, - 0.09782407288479113, - 0.09230496471739705, - 0.10149312564701755, - 0.09356300327760443, - 0.13080918298966004, - 0.09312167147156816, - 0.11115999319689733, - 0.11501664863808728, - 0.09245571298285828, - 0.12661560648173328, - 0.08213162099708114, - 0.12148828854755402, - 0.08628504413657209, - 0.09690155667487839, - 0.09324531324851053, - 0.08673446086796545, - 0.08813650541466364, - 0.09366249121157434, - 0.09540051137010049, - 0.08335874389108608, - 0.08773800246295775, - 0.09111964695353575, - 0.09361967980231074, - 0.09575075040035662, - 0.0983735428816177, - 0.09805050391224701, - 0.09940739856264746, - 0.09629053820210061, - 0.0844813925100346, - 0.0887248259400958, - 0.09863630234550332, - 0.08808171102227225, - 0.11080108288727918, - 0.08093738863884768, - 0.09726606487709141, - 0.10067094971468313, - 0.07332618175869224, - 0.09110793539681795, - 0.08410018072907938, - 0.08106140224048478, - 0.08848032140159107, - 0.08444173779241738, - 0.09860562549545028, - 0.07929687375571594, - 0.06979111663677455, - 0.07946119676232398, - 0.10725697099066028, - 0.08417897073900074, - 0.10023904373323994, - 0.0984344528540994, - 0.09312906740827892, - 0.08842043510341782, - 0.07555259997131682, - 0.08065217441349345, - 0.08196844112895602, - 0.0840230254129716, - 0.10976205894745547, - 0.07684217165901189, - 0.11481733233336754, - 0.12510994667083672, - 0.10807588407872874, - 0.09641348250484362, - 0.10344390816522925, - 0.10048209204637, - 0.0952579501244937, - 0.11501294002186303, - 0.07322368883540159, - 0.09593026365052294, - 0.09775498335046205, - 0.10363489827557847, - 0.10975846546204261, - 0.10416927999318913, - 0.11395363885590855, - 0.08390768301255233, - 0.07351661797008956, - 0.07646537335182621, - 0.07803792805242314, - 0.08528437680148787, - 0.08219196203116672, - 0.09969549680788958, - 0.08125319891166795, - 0.10441134883432432, - 0.0888670625240193, - 0.07794728029912996, - 0.10950639582097814, - 0.08708441548152367, - 0.09305354326047363, - 0.10108206381457205, - 0.09401057008046897, - 0.09463437072589653, - 0.08742497389604036, - 0.09861787899899088, - 0.10131776719414776, - 0.07993794331209968, - 0.07592347712113078, - 0.08291685316474331, - 0.10072778186337963, - 0.10679336742183577, - 0.08714496681625435, - 0.1306039206216167, - 0.07550183358230139, - 0.12940728684106567, - 0.10278199412329676, - 0.06359435866556064, - 0.09091470089899864, - 0.0771862007724854, - 0.10025757906915855, - 0.10914976842113404, - 0.08777033492923954, - 0.10356045022272928, - 0.12295483049397578, - 0.08572068417067073, - 0.09319509057569468, - 0.09203858570350863, - 0.0858550045840291, - 0.09618154934521614, - 0.11052950986176308, - 0.07539462557225515, - 0.09277769006362098, - 0.09336247653954935, - 0.10431862059788909, - 0.14103658794700963, - 0.09305863456378154, - 0.10245528529511251, - 0.10502010512147433, - 0.10035538653421258, - 0.1332511304845436, - 0.07206728683651975, - 0.09310212826893952, - 0.0653610260080404, - 0.08576940228390771, - 0.09439764015487642, - 0.11433346634713897, - 0.08187620991256588, - 0.0757550414708604, - 0.126207484762706, - 0.09698898581270467, - 0.0906084924291918, - 0.10284022045721902, - 0.08751162660671083, - 0.09102806501204565, - 0.07902737432279602, - 0.06547426747663458, - 0.07869223644892367, - 0.07643550512749682, - 0.09521989246724583, - 0.101423446707772, - 0.09868473851244212, - 0.07511752018261234, - 0.08702438760895262, - 0.08811852615861121, - 0.10046731144804388, - 0.08541814318175656, - 0.07675975055152075, - 0.09631003097790787, - 0.1114993558398767, - 0.10913900943033639, - 0.08884570010572035, - 0.09196590247358244, - 0.09300171460005512, - 0.08023126400989693, - 0.11314176631960648, - 0.08769033384019269, - 0.09299950788693395, - 0.10806216212921578, - 0.09046900681005761, - 0.09976677183773291, - 0.1266083275943597, - 0.10210822985158305, - 0.09049073199189514, - 0.08799302692623415, - 0.09442330133634788, - 0.08972097782270672, - 0.07850395219683044, - 0.08024999862652661, - 0.08717681284709741, - 0.08688827706609815, - 0.08566340295798676, - 0.08933498961577195, - 0.0977922358880711, - 0.11245268122600686, - 0.09214526949855567, - 0.09808317897942234, - 0.0893531191426298, - 0.11811307874973513, - 0.0658929517203599, - 0.11392265109363565, - 0.10023027773754137, - 0.10352880388807964, - 0.08509206158190313, - 0.09913230864172744, - 0.10762047136533633, - 0.09598843698572371, - 0.08534572367585125, - 0.09376220700995384, - 0.10966361769484995, - 0.07774085830185286, - 0.12185885179252239, - 0.08189615868937528, - 0.12848799870147262, - 0.09422103814945738, - 0.08043467148708262, - 0.1061440442482468, - 0.0771747804113806, - 0.09986341189229046, - 0.08886544442361304, - 0.09823489211040828, - 0.11156620604659656, - 0.1394651689987409, - 0.10097254466403817, - 0.10354879384956703, - 0.1170804583058294, - 0.07956493725126777, - 0.09529593608006023, - 0.11461488160944054, - 0.10886528582577301, - 0.09630825724746768, - 0.0953589135113923, - 0.11205632545890468, - 0.09593112459248163, - 0.11097241033657945, - 0.11763486303182037, - 0.07860054373646906, - 0.0943832687706618, - 0.08694582340385551, - 0.07469322214495994, - 0.08211737260709526, - 0.07959961541358515, - 0.0865183539385278, - 0.08325013393942471, - 0.11105918917905286, - 0.08968295103960379, - 0.08056276422448641, - 0.06916247684405134, - 0.09822199944155156, - 0.1074479891200473, - 0.08304733718493723, - 0.10380813912194818, - 0.09505469336414162, - 0.09874246844339943, - 0.08734661357341603, - 0.08744104824618922, - 0.09762407399240582, - 0.10326120538044989, - 0.09347042680151961, - 0.13047794839888913, - 0.08362871451939, - 0.09060383866242909, - 0.1186199005842949, - 0.0846817841619639, - 0.074848115910557, - 0.08521590126970072, - 0.08911327490171438, - 0.09892213669082228, - 0.06799257333829728, - 0.0929227876369076, - 0.09132019007204382, - 0.10347585576092147, - 0.10628733713694233, - 0.09203639223451866, - 0.07678709543963026, - 0.0919500981947983, - 0.09200276795047674, - 0.12108192479566261, - 0.07097277418955177, - 0.07699790551767126, - 0.08428955153193894, - 0.10147175111913612, - 0.07366648715298989, - 0.11111334336128337, - 0.10507110276364101, - 0.09375232991179704, - 0.08408381536491759, - 0.08879775182237382, - 0.07767542127105541, - 0.09607120601497662, - 0.10874392672046714, - 0.09144803164971507, - 0.07626687041458112, - 0.08723588880268764, - 0.1062437010316211, - 0.08038952157265224, - 0.11056681972820565, - 0.10709256163579244, - 0.09276957789906076, - 0.11043389491999278, - 0.09873291054195692, - 0.09313675724855028, - 0.07986537240649896, - 0.1148193783557705, - 0.08770812398841292, - 0.12071183883038339, - 0.09040181208683279, - 0.09581637738851097, - 0.09047843014989104, - 0.11037279527997718, - 0.08795922104417854, - 0.11082817284223596, - 0.07717314519931018, - 0.1193317545745909, - 0.09989811831181371, - 0.11046435435324804, - 0.11083320863348013, - 0.12926234433293685, - 0.09009205465553631, - 0.08860098883505, - 0.08485526486563054, - 0.12335557284289107, - 0.0920296333798983, - 0.09087689762526177, - 0.11035050925913972, - 0.08815351998580995, - 0.10812526621815191, - 0.1047533694160481, - 0.09631388498120452, - 0.08099400773306965, - 0.07843029757661897, - 0.08750944801632594, - 0.1062561823463764, - 0.08276556351815145, - 0.0896603711436656, - 0.0883094626569832, - 0.1115296882189476, - 0.08459594610807285, - 0.08062148472275385, - 0.0893278231882013, - 0.09842783502569961, - 0.10609800070065781, - 0.11445099110652483, - 0.08651241504786022, - 0.08531726477800418, - 0.1035364240509112, - 0.0842883423709051, - 0.0981522085113723, - 0.08816644714502468, - 0.07971416662787206, - 0.07981442880348033, - 0.08341091340791255, - 0.11427253224141207, - 0.16984606822623066, - 0.11232226156759574, - 0.09085920523253452, - 0.08704978817939878, - 0.09542173324908935, - 0.10478063796179996, - 0.09107271504906025, - 0.08965931587230805, - 0.10361119494891881, - 0.06751235759158697, - 0.1043558803869312, - 0.1095625918986294, - 0.0872083419930664, - 0.08552933885123516, - 0.08796792549723287, - 0.09050503295189515, - 0.10747163794242709, - 0.11316540810616911, - 0.11724579444936782, - 0.09263234597859543, - 0.08097473583238589, - 0.0973702475449865, - 0.09158712149121312, - 0.08073298445543342, - 0.1074929970777447, - 0.08636166745548438, - 0.07395944341731404, - 0.10228127214788725, - 0.12289540950069204, - 0.10096354045521817, - 0.09841033614273835, - 0.07552549009826251, - 0.09013517227893178, - 0.09609458267328735, - 0.0986825040415499, - 0.1118662880911992, - 0.09080026239427963, - 0.09276855393940742, - 0.08899797048035255, - 0.13109468700832747, - 0.07913302045952397, - 0.10115721606371922, - 0.09581339361345452, - 0.08849627393998662, - 0.08621665482403802, - 0.07921904863701575, - 0.0893236090079807, - 0.06975145928824704, - 0.0807197751269715, - 0.07514657311826924, - 0.10869799267424442, - 0.09589074497491452, - 0.10529983109895623, - 0.06849669769249132, - 0.08648445367895073, - 0.09692433099610612, - 0.07671361768177178, - 0.07758913816057328, - 0.10749583106788813, - 0.10558873001754038, - 0.09990710793452195, - 0.08321249999156495, - 0.10131955681131058, - 0.09582220704371375, - 0.06666715485419987, - 0.08501766639954382, - 0.09979972267866478, - 0.11892457473616896, - 0.0762417809999408, - 0.09500954113795854, - 0.10779157025054237, - 0.10623328512062388, - 0.08820696024297241, - 0.09799144176385327, - 0.09881552242760078, - 0.07179220186477021, - 0.10288670218322452, - 0.08492235089637105, - 0.08941046685397093, - 0.08534468049713613, - 0.08514322718167858, - 0.08781217850151093, - 0.10935947345163803, - 0.11460163162479388, - 0.08702450076366862, - 0.09559380614420405, - 0.08856530519593277, - 0.10139523841346172, - 0.10299802060575373, - 0.08772378805620999, - 0.08995998810246195, - 0.08737492172279017, - 0.09674832803813063, - 0.11899445262571143, - 0.08868280284227979, - 0.09685986120196254, - 0.08898893276075645, - 0.0890177221014494, - 0.10311358817080314, - 0.10433083590964468, - 0.09616682679398446, - 0.10258393027748598, - 0.10733146783734493, - 0.09474471030333127, - 0.11195486761188227, - 0.11211959027085344, - 0.0957925945717044, - 0.09868110910581206, - 0.08909165937062424, - 0.09142706387663148, - 0.11030550205028558, - 0.1472160763917323, - 0.08161401759249352, - 0.09562585204039459, - 0.1340198897392479, - 0.09303408418798148, - 0.08140304436936013, - 0.08269097276794658, - 0.1002785926974989, - 0.10846181241342603, - 0.1150193507100355, - 0.09644882978283824, - 0.08704120814449366, - 0.10972858122442203, - 0.07408586002040422, - 0.09483519856661825, - 0.12877704997154552, - 0.09062345016770845, - 0.083488946412272, - 0.07281064380689653, - 0.10582985774478236, - 0.11037213089448548, - 0.08439766995603733, - 0.07206305867443821, - 0.09273936424454665, - 0.07346156472851177, - 0.09254612674820638, - 0.10001096911127735, - 0.08126482210571148, - 0.07386857524501393, - 0.10127690414500883, - 0.06470127231347518, - 0.08469621741033827, - 0.1100005939939705, - 0.08312151748009895, - 0.07947352651509149, - 0.10002273469142951, - 0.09776907306142371, - 0.09800885592706285, - 0.0884884775267725, - 0.09630801553334348, - 0.10090569301597724, - 0.08278046537952972, - 0.07659426651627262, - 0.09205018235509842, - 0.08856131332575395, - 0.098131109462875, - 0.08398872822112306, - 0.09423361869635931, - 0.11903476464555343, - 0.10980113907901401, - 0.1036234287452758, - 0.08788882798487474, - 0.08549757651255942, - 0.08432064816142427, - 0.10262635514569776, - 0.11480786585036197, - 0.09119367228908784, - 0.0898438912652854, - 0.10472923830401906, - 0.09831545176869202, - 0.09557297045418892, - 0.08968641705704866, - 0.08420544250966064, - 0.10420877360406298, - 0.09379276427401385, - 0.09201585224676072, - 0.08170962240755529, - 0.0856199813880841, - 0.09767663928261419, - 0.10472672768977781, - 0.10147058120457844, - 0.08290614901375125, - 0.09476956810247801, - 0.10805546783782857, - 0.08760713799766202, - 0.09681123083839821, - 0.09190474267292902, - 0.09285387611530187, - 0.10368487909519537, - 0.09036788486442618, - 0.07863581074598991, - 0.11588223350347321, - 0.11920291325056241, - 0.13457598140128574, - 0.099897062439715, - 0.10978049660205133, - 0.11186364714596271, - 0.13403334565041713, - 0.0814646269102122, - 0.09864868770565914, - 0.10293734209309442, - 0.09036300174680123, - 0.09369840154608643, - 0.09557274499300239, - 0.13568855504992772, - 0.10609851513092612, - 0.07273478318336403, - 0.08132051175093878, - 0.08907066951067384, - 0.10265067886163227, - 0.07360714790056232, - 0.11718367079326115, - 0.09643846885115816, - 0.102384106678021, - 0.09822567870391828, - 0.08854729882337475, - 0.06719879734456068, - 0.0904638708713783, - 0.09949443541225078, - 0.09901457875646222, - 0.10137235089581934, - 0.08887852446075464, - 0.12392978853641319, - 0.08755322727418975, - 0.08226632080980577, - 0.1056977175041737, - 0.09208003463017563, - 0.11784130621052193, - 0.08926685304014861, - 0.09880019218962606, - 0.07368154069922268, - 0.08412789233259525, - 0.07657227769538064, - 0.09095340080074213, - 0.09402626473235534, - 0.0840368064473005, - 0.09478022039059988, - 0.07548193467482311, - 0.07932418991178744, - 0.10127943624949685, - 0.08904691079350134, - 0.08921849192298086, - 0.09702535250249171, - 0.11455245457096552, - 0.10121718470231565, - 0.09484004447916365, - 0.10014230935734614, - 0.08133300879583763, - 0.1180968522921784, - 0.089509694828286, - 0.10675454994947113, - 0.10107273518031884, - 0.10147203185693114, - 0.11377848237060244, - 0.07756312898865936, - 0.09127954157914912, - 0.09453914787346732, - 0.07134844394214274, - 0.10649404609106762, - 0.09774705391893497, - 0.08498622483172713, - 0.08561814617823815, - 0.09492395664507193, - 0.09723246672216558, - 0.11493880718684585, - 0.08296392847661592, - 0.10616526702814075, - 0.09296292468489221, - 0.07465719713865861, - 0.07686231699631403, - 0.10694212869440499, - 0.10760997811617036, - 0.09621396480977737, - 0.09564269621084888, - 0.08357548918508458, - 0.10752448730121222, - 0.09481514565440884, - 0.10837845180602457, - 0.09509388383850359, - 0.09379852543211901, - 0.11262910963556515, - 0.0656786608819463, - 0.09189264148813109, - 0.08913025846671693, - 0.0890636906975115, - 0.09554208407510033, - 0.08151957050862195, - 0.09295339366830839, - 0.1003435077215929, - 0.08242665010120101, - 0.0774223581017305, - 0.08300507094212167, - 0.09652634992288228, - 0.08771577386685656, - 0.10532719355464609, - 0.10139582017576775, - 0.07848472367177386, - 0.08506844884954753, - 0.09017421035662479, - 0.09406903140808816, - 0.08731934579418323, - 0.12928685811628532, - 0.1264174387518633, - 0.10691718858471361, - 0.07014359243686281, - 0.10341740532307367, - 0.06716664805473875, - 0.08595763910404916, - 0.09787583716019448, - 0.08331540279495805, - 0.07818072692996544, - 0.09531261820828058, - 0.09323091561535007, - 0.09006319011444248, - 0.14710954341512592, - 0.09235526500129092, - 0.08437677522311905, - 0.09265905627316239, - 0.08717295178333666, - 0.12213369358359631, - 0.09659895497675358, - 0.10427862409110997, - 0.08877317351692418, - 0.08003536547362754, - 0.09148570963565822, - 0.09307389573976774, - 0.09136246642499525, - 0.09049527694383477, - 0.10136194511277934, - 0.11601408713776103, - 0.07566076680990988, - 0.061961362826103726, - 0.12624852552095042, - 0.09164687294587141, - 0.10957302433084933, - 0.12407372454921799, - 0.08258921731546023, - 0.12119220606569082, - 0.09153795967334469, - 0.09574809026261924, - 0.1039239881293978, - 0.07257610801521412, - 0.10311841799143133, - 0.08122690036391106, - 0.09904818906230192, - 0.08922237665813715, - 0.09608745146205303, - 0.10334162445312689, - 0.09378272327013133, - 0.09501533643644226, - 0.10201240565912785, - 0.09037217999953796, - 0.10286397132728581, - 0.08542918900948983, - 0.0905720481826736, - 0.11022804627568857, - 0.09553796224072265, - 0.08787459407383807, - 0.0678630095304062, - 0.09897950848779603, - 0.10494965551454084, - 0.08383517062994376, - 0.12410279182712916, - 0.12197086401354276, - 0.10065791560595712, - 0.08475664132062982, - 0.08663257540349484, - 0.09840240652118004, - 0.08493988725625669, - 0.06550010767051034, - 0.08894050306763047, - 0.09799691179268408, - 0.08795270161188176, - 0.08529175627551808, - 0.08682376773396448, - 0.10605778657656344, - 0.09659975828750492, - 0.1017169675956499, - 0.09280103104316396, - 0.08439015435738582, - 0.09512066004712286, - 0.12561570431760824, - 0.0889727519532331, - 0.09220961641918654, - 0.09450666071808408, - 0.09675708664170482, - 0.1153430661601258, - 0.09258399450208933, - 0.08291565751809898, - 0.09568401539779435, - 0.10905760172836475, - 0.11887195437190086, - 0.09456700618525794, - 0.14592670608261818, - 0.09294406829798123, - 0.10152913216493484, - 0.0879467525437463, - 0.10733479874316196, - 0.08487625699237074, - 0.11958220859715141, - 0.07085580306371221, - 0.09205719338090688, - 0.1250107268926757, - 0.09918045526313168, - 0.09918874646549326, - 0.09762150513334136, - 0.09238418168820249, - 0.10331257122360034, - 0.09128391038584395, - 0.08769308253588412, - 0.10779690819048787, - 0.07770195013128653, - 0.11399185325314388, - 0.09361325663429335, - 0.13337767602504697, - 0.08973111661696986, - 0.10491398925621828, - 0.100210248826877, - 0.08604273658035236, - 0.1059002986987115, - 0.06396046648327446, - 0.09088120014623638, - 0.09687703259533113, - 0.08723721452300177, - 0.09176085139788352, - 0.08513212879815381, - 0.1242385473378246, - 0.10515679411022431, - 0.08387353963077109, - 0.08219426613708378, - 0.1048871726980082, - 0.09350854453649114, - 0.09575216291586769, - 0.09643136514839137, - 0.10899832059088159, - 0.08357410173290597, - 0.12495258560594297, - 0.1046751448885523, - 0.09134221381445527, - 0.09025194469692202, - 0.09118040347222815, - 0.08640732269290034, - 0.08746027759729323, - 0.09422726254488864, - 0.0936317848053555, - 0.10522313852201907, - 0.09496724062040506, - 0.09144059744649372, - 0.06528720267790489, - 0.09993619577463489, - 0.08211263027759383, - 0.08034325849892963, - 0.092615372064047, - 0.08529072053848227, - 0.08063744771450161, - 0.07128159189577181, - 0.08823201511105729, - 0.0959518395621434, - 0.09210106996417931, - 0.10197557251037916, - 0.12297492344994825, - 0.0819375349500675, - 0.11095616435131359, - 0.09452275596285824, - 0.07799982525040637, - 0.1132904823646943, - 0.16002263326013935, - 0.1152097601816253, - 0.08135280765912238, - 0.09307762169730398, - 0.10151080027419802, - 0.09429674476508675, - 0.09360528275675069, - 0.0776316649013095, - 0.12456320412439453, - 0.08493081677046317, - 0.08377843023242662, - 0.08400825709429109, - 0.09400271149241284, - 0.10897783937169406, - 0.09607383807693806, - 0.09053554972157679, - 0.09272996815390049, - 0.10216237206183659, - 0.11179566836488843, - 0.0938766103381699, - 0.10022350207324478, - 0.11676102736084588, - 0.09295407938986498, - 0.09668229195642561, - 0.08307268871469375, - 0.13579497880899438, - 0.08011858357504997, - 0.0922153443152925, - 0.08749102433237217, - 0.0719818310415513, - 0.10793186975589816, - 0.09961185895561873, - 0.0944443536291194, - 0.08400159499045438, - 0.13781329060481265, - 0.09942122019900371, - 0.09025783660320826, - 0.08144223391894351, - 0.10990290746767611, - 0.0858266913078351, - 0.09341525486863193, - 0.11083095635025796, - 0.11045568700866229, - 0.11457452053594631, - 0.08934118187913305, - 0.09540510167512728, - 0.09991137778727537, - 0.10667425419126869, - 0.10800033630328275, - 0.07888380107460014, - 0.08867473895830992, - 0.0959264661335626, - 0.0702930445688111, - 0.1208283615985157, - 0.08148081367937438, - 0.09062063761097884, - 0.10151101407477889, - 0.09010237694981309, - 0.08847552732386457, - 0.07329193279865442, - 0.09845094020444725, - 0.10989526442046825, - 0.158165650316845, - 0.08936255652767111, - 0.09808757175882493, - 0.0938350309685982, - 0.10971078838458473, - 0.07522066530650336, - 0.1167601776881628, - 0.09206788664965691, - 0.10609120366476806, - 0.10327099083831724, - 0.0991147580744383, - 0.08048647691707496, - 0.10049269761749753, - 0.10070163905561764, - 0.0968119148070096, - 0.09894547837266342, - 0.09745064299636087, - 0.08999557521360385, - 0.09758594423424073, - 0.1024022431462146, - 0.11805370766794263, - 0.08760984777766798, - 0.0735415929511751, - 0.08216879574412916, - 0.07169844684296782, - 0.11003761818542321, - 0.09785981175192304, - 0.12778011262232553, - 0.10192846158427063, - 0.0949903756701458, - 0.08190870188573479, - 0.09512177618177399, - 0.09562345836036032, - 0.12442513354676234, - 0.08883484413422198, - 0.08138508270761731, - 0.08828485295354546, - 0.09278067423642138, - 0.09119437643155925, - 0.07883109832671084, - 0.08349366251384681, - 0.10897588093069766, - 0.10864175621169815, - 0.0976130264396067, - 0.09194896709254108, - 0.08754009862665058, - 0.0886247030651266, - 0.08250703416481868, - 0.10561841842624549, - 0.0955255783410324, - 0.11616884056417941, - 0.08424066738852802, - 0.13537614346565377, - 0.10009129844663579, - 0.10382188298085561, - 0.11320715186590037, - 0.0872944649902954, - 0.10791923918706157, - 0.08994465981403013, - 0.0875482812709512, - 0.10694502576589392, - 0.09041697501159834, - 0.09827667393175148, - 0.09244138590607154, - 0.09218085310253481, - 0.11946478628400349, - 0.15013218279417914, - 0.13399928928195026, - 0.10832640882904329, - 0.13160939095522536, - 0.07466632066778445, - 0.08453351980071877, - 0.07235502470883691, - 0.08450161861498784, - 0.09439894459299347, - 0.07833359864524862, - 0.0800870139960894, - 0.09583927379278018, - 0.0757231536208112, - 0.0691753715947207, - 0.08453410984049758, - 0.10367262949781443, - 0.08496627887690361, - 0.1064887324889967, - 0.0972468146017987, - 0.09849230141261316, - 0.08447330367124489, - 0.07325438940019056, - 0.09755107123510424, - 0.07648507378782987, - 0.09635003518535432, - 0.09479465389614355, - 0.0953418271667458, - 0.10948872808234565, - 0.07953804563772171, - 0.07499476545620645, - 0.08289272851475542, - 0.129811107224393, - 0.11626065011739393, - 0.07982075032976954, - 0.07769365380700358, - 0.0926116815896157, - 0.08946736240988411, - 0.08079446821445724, - 0.09508110212479678, - 0.10234203189212059, - 0.07378696702032167, - 0.09840766760560588, - 0.09627813811412222, - 0.08151945337284841, - 0.09419072086839322, - 0.08499826958823457, - 0.09344577764037786, - 0.0815448303386491, - 0.10289634302822752, - 0.09627495223244911, - 0.09079523379462336, - 0.09407876889159487, - 0.10697305823151564, - 0.09066876091103163, - 0.09547686616131759, - 0.09000350944563033, - 0.08683849233330325, - 0.09477741706421262, - 0.08483674062462539, - 0.08827717636478231, - 0.08670640326044081, - 0.10303105272068828, - 0.09841538239793643, - 0.08808307289859414, - 0.08266146004637046, - 0.09007374154780848, - 0.10380850431566319, - 0.1008776368573375, - 0.10213089725135073, - 0.10232936892566291, - 0.10979519973821612, - 0.08926670026795733, - 0.12810281095565546, - 0.09986690042489953, - 0.0736025500250384, - 0.0723963414990059, - 0.10538380500081951, - 0.08352477398029456, - 0.10248849777403936, - 0.10824862806392282, - 0.10997991274099156, - 0.08332656946786128, - 0.0989163769563892, - 0.10307819443376322, - 0.08933616060856657, - 0.1072893816154381, - 0.07490687617684297, - 0.09461919930532645, - 0.09204706605302575, - 0.12564681675273698, - 0.11168789927686328, - 0.11413049789175166, - 0.09545604210025484, - 0.0955856683876162, - 0.08882911516492796, - 0.07103185327028157, - 0.08931360098084477, - 0.10311989975788585, - 0.143209279023758, - 0.06485118699001578, - 0.09770750982107408, - 0.06803853098373502, - 0.09211931957219852, - 0.08912276985313405, - 0.10586977615340853, - 0.07591516127031013, - 0.08703930833684433, - 0.0815676423682979, - 0.08877615369852658, - 0.09878385501640326, - 0.08669485982128393, - 0.09333897698592497, - 0.09614890540372209, - 0.10651538089845283, - 0.10261459417731411, - 0.12401432626260493, - 0.09006745455418096, - 0.08042694026690843, - 0.10055913274463266, - 0.09514070294574681, - 0.0919623422530746, - 0.09658859146433722, - 0.09628552388270215, - 0.0827108575917091, - 0.08689996583798729, - 0.0974799736428169, - 0.08825632868933977, - 0.09454484592245763, - 0.10894993332480016, - 0.08864039387207215, - 0.06949975084767018, - 0.0822798999068295, - 0.08462946241469488, - 0.09428885974001693, - 0.08554012102099402, - 0.0853098507496379, - 0.13793094116550653, - 0.10279325708907291, - 0.09945267457628773, - 0.08758251059014072, - 0.11263170978757349, - 0.09295858193209859, - 0.08369062195025695, - 0.08437436910849867, - 0.09518498856990595, - 0.09163996493012112, - 0.08766033301629497, - 0.08933764448840303, - 0.09682522939260858, - 0.10468249555699553, - 0.0888399913284421, - 0.09716631575024236, - 0.10382471714918817, - 0.08908652681955163, - 0.0895870154990738, - 0.08603418290214668, - 0.12173270601931448, - 0.10980889421616931, - 0.10563106738934759, - 0.11177032027633661, - 0.09695037884768612, - 0.09276938131628586, - 0.07639066332635584, - 0.12361485353406, - 0.10033120508903129, - 0.11531569683067788, - 0.08855043136526085, - 0.0821024596612096, - 0.1098821363415888, - 0.08583848796312117, - 0.10097735594060996, - 0.08732881936302583, - 0.08826275772163501, - 0.08031130175305952, - 0.096011859425943, - 0.07871123667963739, - 0.06267055786947541, - 0.07662275545901623, - 0.0756155972142407, - 0.09035745147871313, - 0.09986080311577396, - 0.09465412876908973, - 0.0871541153395036, - 0.10139474894290122, - 0.09479009185593698, - 0.0837685676040856, - 0.09925436107932105, - 0.11121125798396057, - 0.09507829144743743, - 0.08604287127436844, - 0.08664243518105916, - 0.08647310797487552, - 0.09498339393772917, - 0.07607340623130168, - 0.06997653149268362, - 0.0886851906193885, - 0.0989756697509846, - 0.08566309284390583, - 0.07552803377294441, - 0.07550308222195125, - 0.10092085410315889, - 0.11394954425884174, - 0.08812575367605702, - 0.10539812218804506, - 0.0958202174575472, - 0.09977125080024225, - 0.08468070355789015, - 0.07274692477440682, - 0.11724481970751474, - 0.08290172566268658, - 0.0811757977524557, - 0.09588011365721175, - 0.07767396932063114, - 0.10394279509460522, - 0.09020717785748074, - 0.08436921462768314, - 0.09233685475864087, - 0.12224835770639524, - 0.09425003450730442, - 0.10156811078292625, - 0.08516715434137814, - 0.11617671093373849, - 0.08102386363265936, - 0.08609652580901425, - 0.09000076387537877, - 0.07982330329899698, - 0.0763139970409829, - 0.09509986351965857, - 0.10273628880851232, - 0.10133013578590618, - 0.09059698866242002, - 0.11185600469088369, - 0.11497989391688614, - 0.07843306117563671, - 0.10840528404908256, - 0.07468611796514193, - 0.1012360326547223, - 0.12118029050771827, - 0.10265812102335305, - 0.09329087853433345, - 0.08742488695936312, - 0.10207331062206036, - 0.11271212102172581, - 0.08366297741954912, - 0.09437343330007784, - 0.09707650373276586, - 0.087691696047027, - 0.10493788864498399, - 0.1224819878419766, - 0.10345183678651856, - 0.0951213394820446, - 0.09896674131467122, - 0.0822172824427955, - 0.07306438329517864, - 0.10089984127903087, - 0.10160373410638329, - 0.11604192111572977, - 0.10700496133258139, - 0.07207399324395443, - 0.10237243017913417, - 0.08430046180039867, - 0.06917081507559923, - 0.08262410891268913, - 0.07900244552640158, - 0.09930301568886389, - 0.09027131119363219, - 0.09169606470332484, - 0.11268693032355355, - 0.06806148519976571, - 0.0766898582611345, - 0.1059195745172603, - 0.08406324314250642, - 0.08900157613810777, - 0.12239840408803442, - 0.09610930670311, - 0.10184515621982912, - 0.0982100529723355, - 0.07888517452381519, - 0.09473372151239559, - 0.10688855032730701, - 0.12228273447629653, - 0.129119297155357, - 0.08121375307412343, - 0.08090077452177045, - 0.10655622442462935, - 0.1023198769975095, - 0.09048980800865246, - 0.0862986442110304, - 0.09340787417564198, - 0.08830025221137462, - 0.07971603953405289, - 0.08332292648914945, - 0.10271148412106511, - 0.07020434391715, - 0.0976765788432934, - 0.10606935184348405, - 0.09977845162876416, - 0.0847043936491569, - 0.09157629518491699, - 0.09911554266784188, - 0.08859939550356238, - 0.08819480347493644, - 0.08074942251411879, - 0.09334660918179331, - 0.13830583139290117, - 0.09706013683545776, - 0.12654410729775858, - 0.07905386347201493, - 0.08252825886321563, - 0.1004167678307094, - 0.09471653592812036, - 0.07939797717087625, - 0.1215374471014526, - 0.0854348741858, - 0.11725091191529902, - 0.11911487212761844, - 0.0970357400068584, - 0.08436906179768534, - 0.08094976667628387, - 0.07374773013567136, - 0.09214561671480646, - 0.10367836059487776, - 0.08010702925705776, - 0.10112512052715056, - 0.09983345787564314, - 0.10233712597605354, - 0.09482370364323352, - 0.07711890646432555, - 0.09838432903325395, - 0.10086582882446679, - 0.07333093732623576, - 0.09377452198812214, - 0.09193774699183337, - 0.08198512657259605, - 0.11449426822045455, - 0.10075584990781174, - 0.10938908026277502, - 0.07923034049850274, - 0.10423952924017063, - 0.08297252765831259, - 0.08978081632583865, - 0.12325348042218305, - 0.08889255308095599, - 0.09799171344651592, - 0.07090342206586304, - 0.09807840252405382, - 0.09441102633994435, - 0.09092458726420442, - 0.11538275588097055, - 0.09689169537633792, - 0.12161869934971563, - 0.08193895735161463, - 0.07607077928503639, - 0.07989695814307109, - 0.13599748217125535, - 0.10126154205982814, - 0.10245210889331921, - 0.08220006728494454, - 0.10663418667873653, - 0.13695855352333677, - 0.07761655068043856, - 0.12814982666116564, - 0.10147208383369946, - 0.08440458569161198, - 0.10364717135620179, - 0.08401394475800228, - 0.07725798317661486, - 0.06739398416375529, - 0.09971527281257794, - 0.11345083738613937, - 0.08988836092589465, - 0.09942232878474251, - 0.08187734893573347, - 0.07858763684678997, - 0.11045243788624547, - 0.0900560782891419, - 0.09091174802933402, - 0.09454137943470801, - 0.0904955446817747, - 0.1126574585015075, - 0.07801922962708113, - 0.09754037757686398, - 0.07023482499782101, - 0.08471353845168662, - 0.11198089986753477, - 0.08778354271825689, - 0.07755668427165154, - 0.12031463116492401, - 0.14372374235558416, - 0.15366906926489135, - 0.11904258154914504, - 0.08102603378268972, - 0.07292382628431317, - 0.07375738425744503, - 0.10859487743366779, - 0.10302103914552428, - 0.0998761293190091, - 0.09437214603928962, - 0.10114260077018238, - 0.09529834608265932, - 0.09670939827736706, - 0.08123013539509569, - 0.10688100959480738, - 0.11245583884381045, - 0.09862390487520697, - 0.08378440842939588, - 0.09585212957217537, - 0.12064797033712814, - 0.09749042106493093, - 0.09251061861544536, - 0.09407470740397968, - 0.0786251580662325, - 0.09080973164959369, - 0.08402828466402072, - 0.09590926135176472, - 0.07474073736864618, - 0.09725826345271894, - 0.09329530289748779, - 0.09759543795515889, - 0.07856607388908148, - 0.10498767061772207, - 0.10048264408776625, - 0.14439911713892067, - 0.10099283693879375, - 0.07220403058458616, - 0.11219777474697046, - 0.09134856732654928, - 0.08300099918038938, - 0.11171285786829367, - 0.09735615051218766, - 0.08287933720522445, - 0.07587206958193934, - 0.10587500202840976, - 0.07527769282170982, - 0.09179363993121178, - 0.07664663983833954, - 0.11730899092202153, - 0.09165718869936418, - 0.09343816580087087, - 0.10020997469162445, - 0.08181854159449335, - 0.08809671777734056, - 0.12335515993674781, - 0.08822444164115621, - 0.09573809601471114, - 0.12097213517714635, - 0.08472093475655001, - 0.08142258709962892, - 0.07129272029415183, - 0.09847187455745385, - 0.09354006580405357, - 0.1014344718466959, - 0.11118796511109809, - 0.07992813621164936, - 0.10138256258878223, - 0.08433108622828168, - 0.09959782072577686, - 0.11008086468519973, - 0.10249475523874549, - 0.10762191013801249, - 0.09334391340498498, - 0.08614620303285749, - 0.08877541585573345, - 0.0715222161427742, - 0.09679169950338509, - 0.10063907752831577, - 0.11216783285772619, - 0.08846662006814193, - 0.13779953557770916, - 0.1004822644456163, - 0.10794374470386141, - 0.09995947328303713, - 0.08687710939593875, - 0.0968260566182273, - 0.07012902770144408, - 0.10180266138009172, - 0.10621144355118727, - 0.07983084646414586, - 0.08553220678422833, - 0.08755383483124851, - 0.08126233516233869, - 0.09806884189311126, - 0.07605860023360803, - 0.09474254244445131, - 0.1285329897376635, - 0.109345599664815, - 0.0861374795604349, - 0.0944176288335238, - 0.07665680762723291, - 0.10827431864026706, - 0.09754392222744226, - 0.09004959410651298, - 0.10227525044935687, - 0.08707154212754385, - 0.12068839383283768, - 0.08428295198630814, - 0.08183443323230091, - 0.12485169814291508, - 0.09077786106664021, - 0.08468654759525071, - 0.07707707857985276, - 0.08969122599279125, - 0.10763567023988055, - 0.07351971362487918, - 0.10232676851433026, - 0.11312747451535192, - 0.08837392789756034, - 0.08325246823871399, - 0.09465984443657154, - 0.1017100381658931, - 0.0885778442637358, - 0.12211740785460962, - 0.08220543986294325, - 0.09182182544521444, - 0.10862440530465627, - 0.07786336657224506, - 0.10214537316352262, - 0.08942960800147352, - 0.10435783341685562, - 0.0830152835474848, - 0.09310126424197948, - 0.08851179696021903, - 0.08610010616624228, - 0.08423492195459865, - 0.10297575291382222, - 0.0899234495704791, - 0.09554823876366478, - 0.09564068390606013, - 0.10901799268322901, - 0.111675314303249, - 0.09907139563356757, - 0.09592185989948739, - 0.07633099683599485, - 0.10467059247107745, - 0.11725238865353037, - 0.15116938198905192, - 0.08489380723944025, - 0.08815253343647728, - 0.10321012603064435, - 0.10756229793424456, - 0.12049384108401667, - 0.11533062063685474, - 0.07498556720379577, - 0.10474494641284494, - 0.0883778164835333, - 0.0778275219184691, - 0.09840870071964539, - 0.08195132688421264, - 0.11539713357109106, - 0.08621169027929976, - 0.0883304245818985, - 0.12186448166125989, - 0.12462637613556646, - 0.10265141367924688, - 0.06405682572716834, - 0.10224615379478902, - 0.1041285601803426, - 0.08887022428920303, - 0.11834620687501801, - 0.08982570484731688, - 0.08433397210209088, - 0.09853511291076134, - 0.10038988735426287, - 0.10761965513744269, - 0.08641142210569584, - 0.08012675754615128, - 0.0846695583504715, - 0.06830730354704821, - 0.08611496383335594, - 0.09295124972394883, - 0.09225890232364345, - 0.1097247154201094, - 0.08721997292306435, - 0.10121242164879758, - 0.08220020735946221, - 0.09253835382393419, - 0.06877592611271038, - 0.1017892242924009, - 0.0817854435622077, - 0.10448814457378781, - 0.08292327931715061, - 0.08171494053616309, - 0.08300334092809052, - 0.10299386527542108, - 0.09127858100506263, - 0.11545047275600229, - 0.08564131142329472, - 0.10432388871667711, - 0.10378139414601736, - 0.08685325090985521, - 0.11090271691805391, - 0.110943674844702, - 0.13168621876504924, - 0.09269406752149899, - 0.13053215508803429, - 0.10462353780356708, - 0.07154327387923998, - 0.08206854167670595, - 0.11536191996924862, - 0.1231974173146746, - 0.08356336580815127, - 0.08194530064532692, - 0.09749638364342238, - 0.09190053466463688, - 0.1166311552021405, - 0.10567445019657261, - 0.0974660637430191, - 0.07038788283026831, - 0.10385739687258999, - 0.09873906070350137, - 0.12194995267628406, - 0.08588179783176107, - 0.09201887468712203, - 0.10384258962473075, - 0.07539225558824662, - 0.10878515890059454, - 0.08953220476788165, - 0.1049256410885999, - 0.08951116312700183, - 0.0906186116862232, - 0.07222769936488786, - 0.11041332377396794, - 0.09225077278764234, - 0.07517642208723546, - 0.08836447859079101, - 0.10295832821086329, - 0.0910838927294654, - 0.09654377146140992, - 0.10689815579744014, - 0.10954923605790719, - 0.09807853067300291, - 0.09816199991611128, - 0.0982794949866467, - 0.07098512553685773, - 0.10859825445315627, - 0.09355476495722333, - 0.10881852654452329, - 0.09364707439497179, - 0.08230808434845406, - 0.1195976789232414, - 0.0864403923238071, - 0.10408158522019569, - 0.09057471877964446, - 0.09172323217744494, - 0.10233662990214186, - 0.07525751612549499, - 0.08123421996231033, - 0.10304275388032134, - 0.0783172897013239, - 0.08106944898420321, - 0.07799392913966906, - 0.09082401680195008, - 0.09756040607975329, - 0.10718625170859877, - 0.08689441669995676, - 0.08659524964034608, - 0.11957740479879242, - 0.09191282411355735, - 0.08709918872396398, - 0.09840959411864326, - 0.11584173888527549, - 0.09247739656572616, - 0.10389281187161417, - 0.0910327364064544, - 0.10309137056847788, - 0.0949378965507306, - 0.10865814695342843, - 0.1359715821551827, - 0.07279899437673854, - 0.07844421187271101, - 0.07689444148037489, - 0.09153222972758553, - 0.08963127005147317, - 0.09860933921500624, - 0.1449018242389305, - 0.09249425864033001, - 0.08829205040409803, - 0.10004325245684209, - 0.08672138088399622, - 0.08636102700466253, - 0.07692803346972485, - 0.10305424822269066, - 0.08847197893803707, - 0.09756934753942066, - 0.07978691187986237, - 0.09682905228882, - 0.08731636353639674, - 0.10411256749404713, - 0.0811024329100824, - 0.11829725556384386, - 0.08149120166819818, - 0.0950015092653705, - 0.10259104363940419, - 0.1032742941506443, - 0.09404630423376736, - 0.07185634007685412, - 0.0848176741702319, - 0.08623905811355598, - 0.12453371679663754, - 0.11669536404777124, - 0.11225633994419117, - 0.070106984766861, - 0.10738076490178013, - 0.09691745133914587, - 0.11401976912644227, - 0.08839768180873464, - 0.09096352181912283, - 0.12223196216418927, - 0.08270467919237345, - 0.09412269809021602, - 0.11158242262463666, - 0.09581911293320011, - 0.09233732283764431, - 0.09849579799012963, - 0.08697667323593591, - 0.12393519899696365, - 0.09112565919435218, - 0.08257453892606426, - 0.07836529948095017, - 0.09722197747192288, - 0.08353175748734169, - 0.091681988708925, - 0.07638878375529111, - 0.08418162505310114, - 0.1086435307482413, - 0.09804090781775561, - 0.11350441899865454, - 0.1037639913452035, - 0.10998055588729372, - 0.09786346145515881, - 0.08152542961545782, - 0.06976198916572236, - 0.09358741910304368, - 0.0824662814882128, - 0.08665075400220286, - 0.08061899451828115, - 0.10573177021703184, - 0.08251335304222447, - 0.10276023700781882, - 0.0813586241947119, - 0.09290000351965574, - 0.09729610012733139, - 0.10161160140911976, - 0.10471112087386092, - 0.09342291760417436, - 0.11716984380241394, - 0.07384962957613245, - 0.06666554568321867, - 0.10834844236753402, - 0.07495903700582089, - 0.0834622527338067, - 0.0920438362473757, - 0.12612620217082787, - 0.07682616685357377, - 0.07785168096546045, - 0.08735942252245865, - 0.11485253791553304, - 0.08750976017020395, - 0.07576782034529599, - 0.08290941396905119, - 0.1016074984686409, - 0.08246809404542524, - 0.10816507119718106, - 0.13219931797893422, - 0.0738711984727059, - 0.08499762756438654, - 0.12147024662725536, - 0.1519957819342224, - 0.10742552963145424, - 0.07616159787329779, - 0.08914994222652087, - 0.10245673334566516, - 0.09806039157473896, - 0.0985215474694961, - 0.08948835962973786, - 0.09403726823935706, - 0.08378793744217705, - 0.0731209779696581, - 0.08011032581831365, - 0.07870472710183944, - 0.07897739793896173, - 0.080710587050038, - 0.09787409616965695, - 0.08263148038208581, - 0.1112783036673511, - 0.1002694292989085, - 0.09220762867925013, - 0.09675829784907285, - 0.10764190562999848, - 0.08861103741508944, - 0.10208266513978698, - 0.10072819888019757, - 0.0792862710111737, - 0.08605167850534559, - 0.0677840535415504, - 0.0931792222528737, - 0.07435989996533655, - 0.08483179443645296, - 0.08146224480946104, - 0.12093969758096548, - 0.09300309105292942, - 0.07988203056210821, - 0.07844420853176921, - 0.144153575931197, - 0.11121138836170237, - 0.0765891911045402, - 0.1166740055625659, - 0.08869299787975572, - 0.09225016657582953, - 0.10925247594364838, - 0.0827732500412366, - 0.08835695237825164, - 0.0761458767142563, - 0.08710936544876015, - 0.1124115919156861, - 0.09763702541983815, - 0.07501476115964627, - 0.1395135563692022, - 0.08327728628300476, - 0.10560137341258716, - 0.0765707414036989, - 0.06232028646859214, - 0.0813859546344676, - 0.09042726512002518, - 0.08051241290216508, - 0.08876052667804238, - 0.08426525343351174, - 0.10331275418999225, - 0.08551692613745726, - 0.10953391016983727, - 0.08310190183084944, - 0.12866977936306137, - 0.10305572249879959, - 0.08949730060583516, - 0.10009368557851782, - 0.10055821149868081, - 0.11365538896109617, - 0.09021780783315327, - 0.08746463926935177, - 0.10157380845169431, - 0.08698363494591933, - 0.09179882845120209, - 0.10263748770446866, - 0.10578661899449514, - 0.08819819405078222, - 0.1128412956057307, - 0.15103302254572692, - 0.09834548354975495, - 0.13567056933301794, - 0.09892037377368415, - 0.08918717598095817, - 0.09457719364665702, - 0.09608369081152633, - 0.09693688249346578, - 0.09192355133096579, - 0.09861139626769874, - 0.08272170452525354, - 0.07246495355585958, - 0.09545997109069929, - 0.11880968428948731, - 0.08904595951489044, - 0.10572278287700915, - 0.06584529198654669, - 0.08000993055240645, - 0.09933495614844043, - 0.09520475200357394, - 0.06773473274949658, - 0.11375513603011991, - 0.11920217106465683, - 0.10628177529718762, - 0.08867927302184568, - 0.09496791826345002, - 0.1002126915891104, - 0.08835110774313969, - 0.09869969519642621, - 0.10217658681116197, - 0.08832814729001513, - 0.09773338459620455, - 0.0846275411832921, - 0.1078700005397729, - 0.11065718715821557, - 0.09144612096586398, - 0.08149449191368976, - 0.10861411570667183, - 0.09775247854993421, - 0.08906386714051256, - 0.10477824751800305, - 0.07273460421128645, - 0.0804261242222193, - 0.10460974305658838, - 0.12038118339898651, - 0.0772048999323539, - 0.11935471635901376, - 0.10699175988958545, - 0.09304215287492061, - 0.0891476871050319, - 0.10755119857121237, - 0.0906934939592066, - 0.0983280202335951, - 0.11810139702693451, - 0.08354724165360428, - 0.08519024185993244, - 0.08404408244277398, - 0.09464989428912307, - 0.06189623877800718, - 0.08238617050407411, - 0.10039000020711909, - 0.08034016731203202, - 0.07966102104600818, - 0.06758502839787885, - 0.10695727490006232, - 0.1015239453376926, - 0.11168363996759727, - 0.10930928379738897, - 0.07913279546469719, - 0.09681438962284222, - 0.10458371869508404, - 0.07632588501515342, - 0.09154209837648601, - 0.09048466212086949, - 0.11018239264702873, - 0.10174398194220247, - 0.11781331296453433, - 0.09624879746419097, - 0.07876863235005113, - 0.11132297921660923, - 0.09583577820872341, - 0.09657984483718172, - 0.060243413378221054, - 0.06833313874264613, - 0.11019015054258352, - 0.09743761909936181, - 0.08543693363555128, - 0.08336020249653539, - 0.08984494253695985, - 0.09062074414013728, - 0.10080514365582935, - 0.09657628865884961, - 0.07134672938439396, - 0.11152282137346384, - 0.0974217758973865, - 0.1322604388045922, - 0.09918644619972077, - 0.0814934571675297, - 0.10572088954372476, - 0.07885899690223687, - 0.10450107984728883, - 0.08683934941278103, - 0.09383673532444842, - 0.09503905014663919, - 0.11166845494757405, - 0.09008209821659867, - 0.09768432328291408, - 0.0789278404917386, - 0.10419980760498382, - 0.11476814410149645, - 0.10824619217683343, - 0.08692120430405663, - 0.08596071095172116, - 0.09728703537995276, - 0.10724961088675859, - 0.09673287291134146, - 0.10414031161272905, - 0.08912467779194291, - 0.10865941538876925, - 0.06406265801292053, - 0.0962831155422847, - 0.08605752825172253, - 0.08191933662047611, - 0.07350389316240862, - 0.09406814123577746, - 0.06865692384286294, - 0.10606243944170836, - 0.0994623872187809, - 0.0848488801786525, - 0.08698385297285197, - 0.10074641554040334, - 0.10426601373220436, - 0.08231716536636223, - 0.11452858432304709, - 0.10968235120975256, - 0.10720833379147468, - 0.09833201017211785, - 0.0908093838935707, - 0.09917560978030761, - 0.12035850062590345, - 0.10015268493068008, - 0.07679350645223662, - 0.09133129215757699, - 0.10065341820804577, - 0.08633149270720909, - 0.0847541184832339, - 0.07874311664374724, - 0.08652337635345866, - 0.12019547321785132, - 0.08351062910929975, - 0.08360666523674554, - 0.08917600171342528, - 0.09770531702542638, - 0.09848826206843975, - 0.09255390665333775, - 0.09090692325078818, - 0.08388606133026519, - 0.08734830056344531, - 0.08928524280207488, - 0.09670394756477346, - 0.09283370273747785, - 0.08905262872118473, - 0.09568801950961613, - 0.0662403330957475, - 0.09445871372562738, - 0.1096018157868586, - 0.07995305810002835, - 0.08848813433022407, - 0.08932203245415533, - 0.08119153331203217, - 0.08043451144513326, - 0.08614508788090526, - 0.07909095459982082, - 0.09975756145950018, - 0.0869636765949072, - 0.09269991894137788, - 0.07410455219407744, - 0.10188710127175764, - 0.09212669226179517, - 0.10454992167329111, - 0.12913563936877884, - 0.08076714868553238, - 0.07396446270880984, - 0.08707087622375637, - 0.10252924918870145, - 0.09076444138192198, - 0.09941426932142158, - 0.09314280851896595, - 0.07689660352633611, - 0.10120664857859635, - 0.10372239415626833, - 0.0746134792405213, - 0.10053857990097681, - 0.08131920006046381, - 0.08725133457338433, - 0.11360482498028002, - 0.09436374584584412, - 0.09930593629083176, - 0.08747109544016574, - 0.11021424132661187, - 0.07532226592438229, - 0.1330866402547627, - 0.08631135888704568, - 0.07493729234583736, - 0.08970558342645266, - 0.09526870022685871, - 0.09468744907733044, - 0.09095867114315774, - 0.10737525346853702, - 0.09920993564564422, - 0.09356759018900808, - 0.1180621862676401, - 0.09236411040832765, - 0.0832720217374662, - 0.10333572258359114, - 0.08325721946109504, - 0.10222672852094485, - 0.08054566117099747, - 0.08081016560378905, - 0.09965918414086664, - 0.06563091940091742, - 0.09941696872075859, - 0.10708344857317058, - 0.1028185311456231, - 0.08716757694535777, - 0.11034000666432293, - 0.08220195768278958, - 0.08316027137834163, - 0.07021730501886138, - 0.0848026367569896, - 0.09503037078875719, - 0.09571656716377624, - 0.08889268872798946, - 0.08644249690784471, - 0.08365777269537698, - 0.11630952958193289, - 0.08304867024250354, - 0.11479406661346653, - 0.10194452937235483, - 0.10907854285134137, - 0.11313492952085046 - ] - }, - { - "legendgroup": "Beam sensor 2", - "line": { - "color": "rgb(248, 156, 116)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 2", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.11313492952085046, - 0.11763287200147528, - 0.11353139253646201, - 0.08038215292012159, - 0.10001272102144257, - 0.09441508932786528, - 0.0774220267581756, - 0.11460683355311105, - 0.08799568630790144, - 0.07587828381054813, - 0.08529581667003563, - 0.11869668631862515, - 0.0800745517513744, - 0.08055188211420548, - 0.09619397450279307, - 0.09553568492553156, - 0.1054332553937093, - 0.09401937430408834, - 0.10135239667254309, - 0.09296269209832243, - 0.10945109852777234, - 0.08415760062862823, - 0.08996570782474046, - 0.12173797827747858, - 0.11383112902976161, - 0.11322840742922229, - 0.09575698512791599, - 0.09147280625839822, - 0.07795612681065198, - 0.10184924313801204, - 0.08741308347314347, - 0.09755469566159862, - 0.08514441570881666, - 0.09419395639371744, - 0.0826333410228614, - 0.09308500411575255, - 0.09744077864272793, - 0.09728624693158866, - 0.10668197146971842, - 0.076865678797211, - 0.06881408071588067, - 0.09260571006911528, - 0.08909876311892985, - 0.12380474450794575, - 0.09457988083083368, - 0.10966725311627494, - 0.0979249406336613, - 0.09201356844159862, - 0.09322261897743418, - 0.08026643532788427, - 0.08679084106917509, - 0.0699260107146297, - 0.09358327108642289, - 0.08838239785224755, - 0.09041579473379127, - 0.15474056954119922, - 0.10022466172566048, - 0.09960524024150628, - 0.10303164133548373, - 0.10876131659321016, - 0.10352738663028754, - 0.08845432490099825, - 0.08362514383818419, - 0.08448149723423101, - 0.09074335672056932, - 0.07754222345705923, - 0.1210035808136213, - 0.09476280531989795, - 0.10126303971759607, - 0.06847757100164711, - 0.09423942452175194, - 0.10071684369535848, - 0.10515106457165763, - 0.08931949517234007, - 0.09681234599719421, - 0.0975769244752376, - 0.07953622417018927, - 0.08918257341970359, - 0.08103965280177022, - 0.08764661601498006, - 0.09311765400202501, - 0.09277728872505264, - 0.07202908807955391, - 0.08959648345008785, - 0.09609123642926723, - 0.11787872800382096, - 0.09999796558481708, - 0.09678235254155138, - 0.08552295486999605, - 0.09558476139771192, - 0.09227771106076262, - 0.12014243029631844, - 0.12053415583854432, - 0.08299908248417778, - 0.12617381298616465, - 0.08713580384704817, - 0.10768920707150513, - 0.08362824415822129, - 0.07868887126203787, - 0.08096619569657991, - 0.08440899066001491, - 0.10369569341611913, - 0.08764353086900202, - 0.07127750946657063, - 0.08146150538583656, - 0.08124724984884392, - 0.10359707918775818, - 0.0890901777830174, - 0.06895712367907737, - 0.11037379858148706, - 0.08706128450744878, - 0.08692185788933234, - 0.07778359394421727, - 0.09030568028994063, - 0.10492806749852397, - 0.0882981880469197, - 0.09599759928309759, - 0.08623690279334476, - 0.10003786000900897, - 0.09586603519698869, - 0.08413771926644371, - 0.09777846774536036, - 0.06830303610452702, - 0.08447570434326217, - 0.08463886007471012, - 0.09817954559897715, - 0.08348062862177782, - 0.0878371538682367, - 0.13013071799666212, - 0.09816420626861994, - 0.08148179002867639, - 0.08438117036610782, - 0.10361999153295187, - 0.07522875780806901, - 0.07798275152868155, - 0.09521878847881997, - 0.09870464432710764, - 0.08263125319861828, - 0.0966039659179742, - 0.08630464979892558, - 0.10711295715429643, - 0.08181583919329465, - 0.08019064946309959, - 0.07283386496173545, - 0.0900739299856676, - 0.08692779789412773, - 0.09303131212742927, - 0.10310464880678938, - 0.0990985186379144, - 0.07715594717174426, - 0.10112419504784853, - 0.111481807046568, - 0.09073528916703183, - 0.09083872926714227, - 0.10621153216948223, - 0.07410760085335212, - 0.07454364626184845, - 0.09457113965981244, - 0.09911922638534282, - 0.09463214999251841, - 0.08281471124077354, - 0.1097029530341799, - 0.09839370503288754, - 0.11994987351614958, - 0.08318306255109453, - 0.10031399008577858, - 0.10819462100515397, - 0.09682258669842025, - 0.09498126775447137, - 0.1147239938556925, - 0.10743924207590907, - 0.08755161104153579, - 0.11665274977602486, - 0.10246563785545584, - 0.10378084870586606, - 0.0827780458893676, - 0.0755974167108254, - 0.11823149471376744, - 0.08655922043238895, - 0.08939389399909635, - 0.1179598657784296, - 0.09848782490786276, - 0.08704590450635925, - 0.10409348006614673, - 0.09900382119667422, - 0.12348290051703521, - 0.13063192746401758, - 0.13954271789438355, - 0.11365999653023129, - 0.11050640845498988, - 0.09621145943961146, - 0.09943689412160166, - 0.10933899633633336, - 0.10979920575328579, - 0.08526545150674435, - 0.11057774186260866, - 0.09516317564673647, - 0.10946336810882717, - 0.07632976477318744, - 0.0947535727302625, - 0.07624429376846495, - 0.06783094416124494, - 0.08249160356605775, - 0.0844694919725723, - 0.07336869855874727, - 0.09418980575120804, - 0.09312857218591936, - 0.07446128003693848, - 0.06734569249911598, - 0.07760228989074623, - 0.08583730126474814, - 0.10086927985553976, - 0.08932942618006036, - 0.06871571152021355, - 0.09360942481177476, - 0.07529910838138636, - 0.07717332151057275, - 0.10271295072298257, - 0.09140401577784622, - 0.08536722349866599, - 0.10750813868903453, - 0.10255906608016403, - 0.10632259979687705, - 0.08830752507144699, - 0.09381608780180178, - 0.07782546591234012, - 0.10985654166510299, - 0.07892329420903987, - 0.07848386707539107, - 0.12844483506053603, - 0.09731661971730667, - 0.084607024347371, - 0.09106868535319551, - 0.07537687565628003, - 0.09314711131159475, - 0.09035329690733705, - 0.13216855681729045, - 0.08425903381826447, - 0.07066936411352603, - 0.1095738931665996, - 0.07297309246505411, - 0.0918145278362487, - 0.08930713962811122, - 0.0899260632432089, - 0.09113566716251145, - 0.08717029781301008, - 0.08109800896920664, - 0.08749268465252584, - 0.12762099585380818, - 0.09256338847127678, - 0.0933946389744907, - 0.09723847088129052, - 0.09350482374078364, - 0.09555138034686828, - 0.11353128359389743, - 0.10216009493515464, - 0.11701087434690106, - 0.09342052991660765, - 0.07993906790483914, - 0.10384188785505678, - 0.0977334271561995, - 0.09024871630063877, - 0.09225199281430736, - 0.07870514096689854, - 0.10235525643473105, - 0.09520128012287321, - 0.11981252994070464, - 0.09850045855353685, - 0.08901494082139175, - 0.10174375584400486, - 0.08520002174458378, - 0.08121662121835424, - 0.12111849297335643, - 0.11758444434602516, - 0.10135790577634737, - 0.12679709692831273, - 0.08426986597202206, - 0.10294546808597885, - 0.10332799782369295, - 0.08840773498110414, - 0.10445380925981902, - 0.09202808355363723, - 0.08186052276049306, - 0.0867714928490498, - 0.08560907784928211, - 0.08663443228900483, - 0.08961414222000105, - 0.08184335773682015, - 0.10386054767794145, - 0.14800633786999226, - 0.100349745381839, - 0.07489230257067259, - 0.07618689744499595, - 0.08889415610741674, - 0.08345775664101385, - 0.10627469431169159, - 0.08868756539803958, - 0.07188428550809339, - 0.09398862032551025, - 0.10213786467635752, - 0.09970440066709263, - 0.075913251596586, - 0.07534020638808195, - 0.11700504364593983, - 0.08473866646000369, - 0.09125339296850055, - 0.11467989221444208, - 0.08034607702736388, - 0.10062520516389084, - 0.11288859252088611, - 0.07540737367479845, - 0.09574371087039413, - 0.1030119109561306, - 0.09841498382665345, - 0.09607484353924309, - 0.07409644364671866, - 0.10452663761178331, - 0.10666764803593681, - 0.11483957223684078, - 0.08961756138162746, - 0.08570919739535827, - 0.08819191392712265, - 0.11152339788298846, - 0.08873438544039111, - 0.09356875137749811, - 0.11015690470737848, - 0.1129869052038898, - 0.11560484893884797, - 0.09904297800109318, - 0.07509273052499281, - 0.1019754854632922, - 0.09702528380591054, - 0.12244397994993753, - 0.14114849610309924, - 0.08272374610965415, - 0.1204577055295511, - 0.08579560995554086, - 0.10491928662757433, - 0.09632924900949788, - 0.11242779036685946, - 0.10125594516648552, - 0.09098498458481778, - 0.09636952523702867, - 0.11050025077058999, - 0.08290425063807506, - 0.09337066882572749, - 0.11071535355385716, - 0.09702550856235004, - 0.08010643667556913, - 0.10000483850183749, - 0.10505998878537776, - 0.07847722856453808, - 0.12208117870123111, - 0.11091237742753779, - 0.08863769865943738, - 0.08509612373743475, - 0.08023602410835275, - 0.11259166132561187, - 0.10326542162195361, - 0.1048911788804514, - 0.0879381822807276, - 0.10217731651075262, - 0.13802922679055699, - 0.1064564296583161, - 0.0891218500160671, - 0.10123271754896603, - 0.08702780056163165, - 0.08941590562122814, - 0.09369997188773034, - 0.09380297390877831, - 0.10108426153294582, - 0.0816430804654138, - 0.08442651512823535, - 0.10627504126041595, - 0.07349802578832396, - 0.12746336108145423, - 0.07511466956182314, - 0.09745046098364687, - 0.08199405459246167, - 0.08008569649202962, - 0.09214165191345354, - 0.08587039923235748, - 0.08384571612457312, - 0.09498037273726663, - 0.1161463282650976, - 0.09510524943722824, - 0.12325939526095787, - 0.09917804699017696, - 0.07876856185428256, - 0.10491230290432267, - 0.09173704865487238, - 0.08363906420195347, - 0.10743218149297609, - 0.09455105778828099, - 0.09556665115201264, - 0.09112918223941305, - 0.08967282807253722, - 0.09189161150519172, - 0.11036117354007895, - 0.08913733825707693, - 0.09474164606837848, - 0.0766172519666671, - 0.08355890445445094, - 0.07817601825089504, - 0.08069951246338912, - 0.06948710578921832, - 0.07954598650244914, - 0.09046833010051636, - 0.09418413622750564, - 0.1357989475306721, - 0.0845411997505631, - 0.13712691671571456, - 0.077967481823479, - 0.08401105537481246, - 0.1162287035881292, - 0.08760705470968509, - 0.101337191053409, - 0.06809620195733196, - 0.11946278058530138, - 0.10875238463687943, - 0.09314004394322835, - 0.09657351449359344, - 0.09879812008257674, - 0.09069880352707756, - 0.08861502484988298, - 0.11138421662236643, - 0.09706118412461397, - 0.1248222366733231, - 0.12232621117691965, - 0.08554020145950988, - 0.07996361700142238, - 0.1004594275736309, - 0.1086127671948134, - 0.10392402573787728, - 0.11363210591849952, - 0.08670081953812749, - 0.07655899263466337, - 0.07588990548701705, - 0.09915725159899276, - 0.10241702276797023, - 0.08392217872137604, - 0.09642714306351288, - 0.11354525865556371, - 0.1428699691235424, - 0.08913563565032243, - 0.08920147745750906, - 0.09839367160611429, - 0.11495006914374846, - 0.0905185100343622, - 0.10228352888546426, - 0.07565305613881095, - 0.10364092271643723, - 0.10447750483670068, - 0.09617827548789941, - 0.09346454790069132, - 0.0807137364699321, - 0.1316181711858851, - 0.09983866067197136, - 0.10131072552611414, - 0.11006296443858439, - 0.10351338721570036, - 0.07504292512255953, - 0.081033440143574, - 0.09112372804956662, - 0.100097909342732, - 0.09426156663234676, - 0.089715912844174, - 0.12618334232310174, - 0.11434313501233186, - 0.12847301256163196, - 0.11347165030450093, - 0.10298758142237774, - 0.09367589171383316, - 0.09351230452669751, - 0.10867867569751154, - 0.09216799466157445, - 0.0722106634709455, - 0.09910970377341154, - 0.08910663370559116, - 0.08539902373048842, - 0.10879680246756517, - 0.09890681838268066, - 0.10652772097282151, - 0.0922688310165412, - 0.09996482701162461, - 0.0748345265055876, - 0.12076545183064, - 0.08777578489816776, - 0.09533813226142158, - 0.08438797090886795, - 0.10697278551614586, - 0.0996028400140008, - 0.0976072751878204, - 0.09362329269096155, - 0.08303433373458015, - 0.0942677008452181, - 0.10311574484955575, - 0.0932662671520798, - 0.08264038202330114, - 0.08596442991801292, - 0.08540395022831129, - 0.093426971627438, - 0.09901715464174939, - 0.11424313003500455, - 0.11210869207965365, - 0.10701200472160467, - 0.09443347553051909, - 0.07916876868365562, - 0.08992549421158125, - 0.0883559189646452, - 0.0730825600508379, - 0.08952159348143388, - 0.09930585731757502, - 0.09333845173133913, - 0.09340426324179436, - 0.10258428390652216, - 0.09162119560633243, - 0.10696943664525098, - 0.08030953736878127, - 0.08147850251829593, - 0.09732224874966092, - 0.09906566867598375, - 0.11361584998113633, - 0.10554587925608234, - 0.10280611751191453, - 0.07769079329915929, - 0.0853940191459267, - 0.08871546107240698, - 0.08927009206678704, - 0.0777547205707745, - 0.0855372696118034, - 0.10968079998385158, - 0.08303310909557915, - 0.0920553992298292, - 0.09105317429159575, - 0.08576182403933975, - 0.08920273464354579, - 0.11399680472443806, - 0.08839315669369018, - 0.10752959737839067, - 0.10271890938827721, - 0.09251956116359693, - 0.08141488971519516, - 0.1116989051717665, - 0.08761028601177102, - 0.10239367484992304, - 0.0863716243163143, - 0.0860722445550319, - 0.09414361276595618, - 0.08404732669755993, - 0.06925067706126595, - 0.0975812394721035, - 0.10533833599631638, - 0.09882188342491385, - 0.08803166773080644, - 0.1356876877477311, - 0.07398039837194431, - 0.08864365937300198, - 0.1135060705796887, - 0.09344485134956441, - 0.13568197269088647, - 0.08868493200882854, - 0.10493266829291695, - 0.12130362453140034, - 0.09669775363590358, - 0.10689047207733941, - 0.10737452029317411, - 0.08813932989814709, - 0.10576313023151425, - 0.08435352259944484, - 0.08022700507026087, - 0.08811591225558162, - 0.08343314077076013, - 0.09164181112582437, - 0.08953710123067483, - 0.10766485995416127, - 0.07947590393220968, - 0.08105920266050173, - 0.10866088663430652, - 0.08224288220066091, - 0.09400163315448093, - 0.08050303075051152, - 0.07078945558959687, - 0.08676356383696585, - 0.1118197595045804, - 0.11627228855709307, - 0.10469517278004065, - 0.10621169932433483, - 0.09104289949138848, - 0.0823185660091954, - 0.08447447367137796, - 0.09976293461316822, - 0.07673574695460866, - 0.09036648026955563, - 0.08712040538304999, - 0.09988044836190794, - 0.08615985661885199, - 0.09032464118421522, - 0.12766543897615856, - 0.07595141793608824, - 0.10626686769929589, - 0.09167468673358725, - 0.07582454221336953, - 0.09729988417327538, - 0.09384645991689587, - 0.10352170315140799, - 0.10279098080099569, - 0.07976323239015982, - 0.08926094285465096, - 0.10770678430277073, - 0.09505785438529188, - 0.08353712209889849, - 0.10296063074310714, - 0.10611806721693252, - 0.09499796687946692, - 0.13475127716795626, - 0.09815578631769734, - 0.08228358114410984, - 0.10418838801778064, - 0.1246450443181331, - 0.07923679412050855, - 0.09737682978314549, - 0.08923455495561344, - 0.07675937112570373, - 0.08734734827496543, - 0.09120593625197312, - 0.10763663737446218, - 0.11505756847988843, - 0.1016500881602618, - 0.08957697551501197, - 0.09148900871360578, - 0.08654549501932396, - 0.07526132230143871, - 0.10371210764302156, - 0.10408368507206492, - 0.08004743502936948, - 0.0967311764735147, - 0.09174235677909397, - 0.0794955384422656, - 0.1188065342545166, - 0.09519951138754681, - 0.09381314763774758, - 0.09686321650520678, - 0.08975368421943015, - 0.1070346431562038, - 0.12631842634484797, - 0.07113415162263159, - 0.13437248213223335, - 0.09608169019199501, - 0.09200801462709707, - 0.1034045344805861, - 0.0803474459557351, - 0.10398048241678715, - 0.07761821339254814, - 0.07961247547052859, - 0.0718436558993242, - 0.1011353121169446, - 0.09150496238046539, - 0.10029002868810653, - 0.06677310962068264, - 0.07859582094823073, - 0.11298589856893786, - 0.08598746711235648, - 0.0853633969018837, - 0.09542589082995849, - 0.0873857562737276, - 0.07929156028641952, - 0.08938721891786294, - 0.08802151331997479, - 0.1097236044523611, - 0.113056512444095, - 0.11199425675740117, - 0.09136758854112578, - 0.08590197282871656, - 0.09301371296995058, - 0.12221168376971016, - 0.09384539341196002, - 0.09861810306890888, - 0.10998409958676027, - 0.09013428380861636, - 0.11108387339301899, - 0.09356896338351091, - 0.12184083693029397, - 0.11920990481739505, - 0.0799933323995011, - 0.09125905822529867, - 0.10078359958174703, - 0.11176615080787189, - 0.07674821063682155, - 0.08684192678936702, - 0.07459517319517327, - 0.08851128365726436, - 0.07785298098495447, - 0.0770998785626849, - 0.07482211565430004, - 0.09855476352696349, - 0.07953305488632498, - 0.07293747123544561, - 0.08308532157715313, - 0.09817568952787768, - 0.11174372810954457, - 0.0739119888663454, - 0.07720816356115895, - 0.09773707556263848, - 0.08619517924729608, - 0.09119895642326221, - 0.09371375911200404, - 0.0876050964106606, - 0.08116479615963618, - 0.09007177417657675, - 0.08811189273422074, - 0.07597247657975284, - 0.13108452629688794, - 0.10864782619743986, - 0.09873985024034848, - 0.12465503626002451, - 0.10054891157909983, - 0.11409765882475881, - 0.09007710637984602, - 0.09891606223580147, - 0.0973789511235792, - 0.09262829870433778, - 0.09477112031937576, - 0.08223985575748897, - 0.1183783661330145, - 0.09570049816765194, - 0.09530303962592916, - 0.1015794507148158, - 0.07802368695128131, - 0.11773158021323601, - 0.11460775919591888, - 0.10506852994117416, - 0.10821849079872564, - 0.11258881970138535, - 0.08842413700792777, - 0.08840785878693597, - 0.10127985483930135, - 0.08997953340548319, - 0.08524982653448505, - 0.08640583043651681, - 0.08975745345095855, - 0.09390499705972005, - 0.09190497144746756, - 0.07062644949381114, - 0.06775411657598307, - 0.08770176599024838, - 0.08441986982633604, - 0.10762662857686363, - 0.07831733275463149, - 0.10155291762829338, - 0.10140691155109498, - 0.11245179269693714, - 0.09050697759252312, - 0.11144335189703646, - 0.0795327935695177, - 0.10434629565666553, - 0.10754337259915968, - 0.09308418125580858, - 0.11494528573387787, - 0.1173024410194487, - 0.0969607837677206, - 0.08933199530720855, - 0.09886468095026178, - 0.1102258051122236, - 0.09813722710255925, - 0.08531305813196866, - 0.08078773374528692, - 0.09928123048559394, - 0.11690923779396475, - 0.10511215981821433, - 0.08629168740508936, - 0.06718476251281194, - 0.06805794244979113, - 0.09049863078673094, - 0.09557834021146543, - 0.0994160140332266, - 0.10200456775221124, - 0.08107577615201567, - 0.09016402485380448, - 0.0940712318257249, - 0.0823324529725704, - 0.13860784003756343, - 0.07802006921180268, - 0.09082553176688163, - 0.0832461408967769, - 0.0796526264727093, - 0.09270570462898378, - 0.09178719353250225, - 0.10135492363790656, - 0.08274090878087777, - 0.11640039443305303, - 0.13384046153532014, - 0.08136528892283379, - 0.1085930473177809, - 0.11694506892781895, - 0.14495338586534565, - 0.07054600608208937, - 0.0803436142904836, - 0.09174054286628956, - 0.08778426207686517, - 0.08221194763439178, - 0.09325623527560975, - 0.0884848459443211, - 0.09946394096671422, - 0.08896404938118924, - 0.11897220444331465, - 0.08609038183625498, - 0.0687988834714255, - 0.08381681285347939, - 0.08292337459939195, - 0.09545033283931467, - 0.10582530418354127, - 0.10386582431380541, - 0.08886922436442475, - 0.10857212582039226, - 0.09869599497447622, - 0.08290537082314768, - 0.10433206163281274, - 0.08191055042093279, - 0.10182498431565433, - 0.09353451094997602, - 0.10516753942332825, - 0.06855081051330512, - 0.1272821988694099, - 0.10837676379982342, - 0.08411132058082518, - 0.0867243411514824, - 0.10123779992263368, - 0.0888479029362535, - 0.094425364272302, - 0.09471323271702496, - 0.09569730303034416, - 0.11683203856178474, - 0.09466439891373671, - 0.0977427217950273, - 0.11159359893821488, - 0.09145069235091813, - 0.09986265153725643, - 0.10907684514060144, - 0.08257428333207906, - 0.08062967109942944, - 0.07400438987186798, - 0.0745246389491492, - 0.09002442214515226, - 0.10146301481983735, - 0.10519157320317217, - 0.09035828331470237, - 0.1319452421768658, - 0.0863152830498207, - 0.0820836343478534, - 0.1190809198799753, - 0.08815462305769418, - 0.1060881198331129, - 0.09421525140996144, - 0.06739961682922818, - 0.10135566670962103, - 0.06870616653052139, - 0.08294951417717021, - 0.1183043848511017, - 0.10972204596822206, - 0.11687043707666185, - 0.08737193843425897, - 0.0874914505888494, - 0.11965938184879495, - 0.10911716209003905, - 0.11440653556648547, - 0.08643464004459388, - 0.07369082492711242, - 0.08650682213701079, - 0.08217449447283333, - 0.11679875417858936, - 0.10953424083801326, - 0.08363473995613593, - 0.09651634706575657, - 0.10045788009877354, - 0.08914751442504268, - 0.11420311581318675, - 0.09098059184655913, - 0.0845312860186022, - 0.07357952863050819, - 0.09977051726182753, - 0.10396203992615138, - 0.10304851322687796, - 0.10247490873167928, - 0.10880634584681886, - 0.10610480707947127, - 0.09235443142402215, - 0.08283063164295988, - 0.10370587535521181, - 0.08997457081542437, - 0.10313059646973004, - 0.08405334977063474, - 0.12266002405050568, - 0.07835496424246843, - 0.08111116503915013, - 0.09106275833314849, - 0.098170654052819, - 0.10142612478146959, - 0.11872596147652408, - 0.0920405771533404, - 0.09381404425609052, - 0.09008381916007174, - 0.1026417072900822, - 0.08640782570494089, - 0.08302648802389594, - 0.10617418232427885, - 0.09683960513627304, - 0.10388031183346329, - 0.09312281339005725, - 0.08586524182901605, - 0.10268423315649494, - 0.07916788273072961, - 0.10596946097149043, - 0.10249300617253983, - 0.09213989810214392, - 0.08412045866290276, - 0.11300592461230945, - 0.10193866375709272, - 0.07574496563363058, - 0.08040548737162194, - 0.09498802867169344, - 0.09050893170373217, - 0.09914341315879378, - 0.08833647859531231, - 0.12049176831449834, - 0.07333703803308927, - 0.142073977526147, - 0.08592641966436533, - 0.07492971480129423, - 0.07043625087661592, - 0.09087940401550838, - 0.11195583304389997, - 0.1041059847755295, - 0.10111187598970756, - 0.08539326925038536, - 0.07654634045073157, - 0.0858408060243488, - 0.08346266192702008, - 0.0781278191717651, - 0.12117742770433866, - 0.12589701980358342, - 0.08470806672268695, - 0.10770898119917476, - 0.07853284542241962, - 0.09003155038387484, - 0.10542338970927793, - 0.07918049103853664, - 0.09681408885425483, - 0.08054881255920514, - 0.09721789874855802, - 0.08858405297987279, - 0.09194560346201655, - 0.1027480718928353, - 0.0779266565377115, - 0.0725031880099607, - 0.08602388925502757, - 0.1354292002887289, - 0.0960718181760608, - 0.10392253529675126, - 0.10127033843360096, - 0.11567675457695735, - 0.0786475223811559, - 0.10048590086016412, - 0.11832081161531435, - 0.09546274559764568, - 0.07983127564640694, - 0.10996151938271397, - 0.10682834138308493, - 0.12564121413647333, - 0.10977648595546448, - 0.11616424464000538, - 0.07863029810053541, - 0.12448713246800183, - 0.09391997018554976, - 0.08021362219063795, - 0.08364530316266669, - 0.1239621253100239, - 0.08069414683570802, - 0.09624774437593552, - 0.09676283166141328, - 0.10518616402138595, - 0.12000690904777717, - 0.09166491651906071, - 0.10471628178559915, - 0.10546958913791613, - 0.07866562455453796, - 0.0945954378492341, - 0.15711253009392367, - 0.08384357045683619, - 0.09688943122887714, - 0.11617904303217592, - 0.09942518010430633, - 0.11827591429424213, - 0.07391775897666676, - 0.08838660884334615, - 0.10581186141954532, - 0.09715388033619728, - 0.07659443496801809, - 0.08065171104973315, - 0.07626448075533362 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgb(238, 216, 248)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 3", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 1.1703252809796094, - 0.224897493252971, - 0.08970475372313816, - 0.0721326336504697, - 0.06843731127241048, - 0.0673703408060339, - 0.08600735169099787, - 0.09313968266100849, - 0.07186069077756227, - 0.06942531194048325, - 0.08452612598663395, - 0.07793941600940812, - 0.056904377912362206, - 0.0642282430491187, - 0.059703111246548285, - 0.06047313358561989, - 0.06732632943601341, - 0.05831803754464256, - 0.08916051637906218, - 0.07194677260837025, - 0.0836129490213756, - 0.07711397717365538, - 0.07021003175181097, - 0.055271252980202815, - 0.08448438430093888, - 0.08865514555785063, - 0.0958693474458627, - 0.06917675336237941, - 0.08642996894680494, - 0.09346602679193587, - 0.05312054180313, - 0.07705514071722078, - 0.06596356278006885, - 0.07448742714046458, - 0.06625841369073003, - 0.07700573021269971, - 0.06925401931264749, - 0.07406853490122127, - 0.06097347704204173, - 0.06591101380520531, - 0.08835517794986228, - 0.08973224299256467, - 0.06630327685685526, - 0.08859788993276752, - 0.06290413808970423, - 0.08518200002473574, - 0.07238070174590305, - 0.05521032772581109, - 0.06745615031499579, - 0.07123198973679631, - 0.07136822395517523, - 0.07424628747486194, - 0.05969339245422725, - 0.06999149937745358, - 0.07629158776497805, - 0.07602367323236309, - 0.06736674806878007, - 0.08233045734573348, - 0.059574119470766, - 0.0627165912850435, - 0.06705444144251495, - 0.09578937434419933, - 0.0717262106008426, - 0.051721039452258186, - 0.0749017278214438, - 0.06932950165285616, - 0.06527969485451336, - 0.07377179808721405, - 0.07384840275080046, - 0.06807991491963968, - 0.09409692791841323, - 0.0753319755582366, - 0.0629874883969484, - 0.05944571257233211, - 0.10515073444378156, - 0.0723811212313939, - 0.0787759176809216, - 0.0767163996736297, - 0.07322022977532708, - 0.06859817283702085, - 0.06688573895290412, - 0.0679635937811823, - 0.08154772676259245, - 0.06974362369244466, - 0.09050285877165068, - 0.05878391812505819, - 0.08646123236733524, - 0.09288803967994735, - 0.08074095796672415, - 0.07488623798881716, - 0.08550094547024821, - 0.0948498516026346, - 0.07275757889556597, - 0.0726964762895426, - 0.0680520218592763, - 0.10701344754835852, - 0.058330927954576554, - 0.05658569360993727, - 0.06693883710451451, - 0.08258728624582917, - 0.08431827909130225, - 0.05108243381658602, - 0.07272753101870205, - 0.08707838585600722, - 0.0732348552146073, - 0.06928372810627119, - 0.07477181339566986, - 0.07118889941599424, - 0.07365454111391034, - 0.06357037737843205, - 0.07696872477970482, - 0.06831808155244323, - 0.0842731984766055, - 0.07583791561151688, - 0.09877908205874003, - 0.0652969676872028, - 0.07408281616719134, - 0.07240982126356645, - 0.07991955822763247, - 0.09769263611808415, - 0.06424977151423138, - 0.07600349794154486, - 0.07192636874890591, - 0.08036301193108572, - 0.07312035161152414, - 0.05084923954841862, - 0.08235527492790752, - 0.09655631518839504, - 0.0650805981154378, - 0.08208292850112402, - 0.07539936655103582, - 0.06015083771242628, - 0.06732709116857748, - 0.08445552290908352, - 0.0789582599404634, - 0.07536036902222594, - 0.09093092266337387, - 0.07451552240886712, - 0.06726988515889383, - 0.07740156146670017, - 0.08520116220307013, - 0.07158267495106714, - 0.0730974149587198, - 0.07041831649847663, - 0.07468285328090347, - 0.072189758713399, - 0.07908103987650521, - 0.08667642550688318, - 0.06801937859225657, - 0.08187449120595824, - 0.08729805499919575, - 0.05505608566680853, - 0.08688862212203574, - 0.05313309734420473, - 0.08215612638867982, - 0.059501295085255236, - 0.06908284483964133, - 0.0594847770747553, - 0.07716353295455931, - 0.08009842662262345, - 0.06506604171134302, - 0.06978418892754418, - 0.1138792464298818, - 0.06220895008021474, - 0.07087224283751777, - 0.08604148284189272, - 0.07842462627763877, - 0.07056336892272562, - 0.07060564683335149, - 0.09356278495704899, - 0.08532476808833743, - 0.07470417012241502, - 0.05895489584738508, - 0.07190572145597397, - 0.08907405885943774, - 0.08344980685529967, - 0.07431953759018185, - 0.0751840769345442, - 0.06819262168219295, - 0.0834953184823846, - 0.07218213222164806, - 0.063082356439316, - 0.07252287205291781, - 0.09964948467007452, - 0.07247440567792408, - 0.08087272707661093, - 0.0767107626390585, - 0.10034791425901457, - 0.08892766048894384, - 0.06802835603806935, - 0.07070138942652555, - 0.09267612117301029, - 0.0802228452240798, - 0.06988765971107583, - 0.07946107569046534, - 0.0682581238204599, - 0.06787052131881831, - 0.06955470762862904, - 0.06181180839849499, - 0.08317211052981546, - 0.046830674876347185, - 0.0576705414892262, - 0.06228411078292863, - 0.09771167023924662, - 0.08287024725214269, - 0.06302972097733167, - 0.05887759838829259, - 0.07050262835814794, - 0.06260773310007489, - 0.06939223743164875, - 0.06754772345192343, - 0.08246442490543977, - 0.05950899232052931, - 0.07233681404891504, - 0.06843709551933336, - 0.09135089338621727, - 0.0695719089851201, - 0.06789603804190623, - 0.05293954989143543, - 0.09030724430778324, - 0.06120028979796697, - 0.06792335636514292, - 0.06600429119678783, - 0.07140123250740356, - 0.0687399705069916, - 0.07013927458723601, - 0.0712034101217963, - 0.0617349936152549, - 0.07985825322932388, - 0.07593221388788281, - 0.08147261889318128, - 0.07210440592148151, - 0.0756594771923076, - 0.0727091764403087, - 0.07331705678446351, - 0.0714698962141951, - 0.05257021300433841, - 0.06499313182571827, - 0.08227027693517555, - 0.08518334035564544, - 0.06291484078820801, - 0.07255442427734216, - 0.0778099731302994, - 0.0667870339269892, - 0.07440742059744544, - 0.07148125018439108, - 0.0624730535037558, - 0.07111851364790449, - 0.08062565693387266, - 0.08483335697991434, - 0.07336494657923284, - 0.06931954213559087, - 0.08002206080782816, - 0.06091682947854637, - 0.055909386139260914, - 0.06277769575872427, - 0.08489775778377764, - 0.07304355053538321, - 0.05367379278655662, - 0.071805635440645, - 0.05632683692436702, - 0.08337069226934334, - 0.06423423141611002, - 0.07256271575400565, - 0.06597918031277424, - 0.07026498453286423, - 0.0743157961164373, - 0.07555160206530166, - 0.06709107181150777, - 0.06799095562244584, - 0.05776284142117457, - 0.06666541486765515, - 0.08238939349523694, - 0.07613683268612952, - 0.06219240933521377, - 0.08873983127279081, - 0.060601761729293116, - 0.06683642714674409, - 0.07433524818454074, - 0.05528757458512564, - 0.07606185904920004, - 0.058460641734620386, - 0.07786660731276598, - 0.060843154811203996, - 0.06439891437153698, - 0.07622589556388554, - 0.07006011721515466, - 0.0823289997223766, - 0.06133957318807846, - 0.061355069488839994, - 0.07172932261122901, - 0.07058912924255853, - 0.06714247491971977, - 0.07241434812454087, - 0.07381730873566053, - 0.09977862238400663, - 0.08345350880919183, - 0.08853528217536152, - 0.08312985633043053, - 0.0799135317698599, - 0.0704127467712871, - 0.07164521103252094, - 0.0713146821606615, - 0.08291695088181117, - 0.06960502611467548, - 0.08186042456149842, - 0.10952824051112355, - 0.053401117587394666, - 0.05643215923817828, - 0.08574596501911855, - 0.07658580198164736, - 0.08536300993485352, - 0.06907324891609776, - 0.06336402100721772, - 0.061025489671504146, - 0.06582433431015897, - 0.08191123430562361, - 0.06430586173416153, - 0.05798771006663845, - 0.07043428897613835, - 0.07714952744445076, - 0.07640611852703176, - 0.07954446717312409, - 0.06863064363049379, - 0.054183532692070005, - 0.09466824689612165, - 0.08180047277038136, - 0.06418765107520275, - 0.07794491295576284, - 0.09500822460281452, - 0.05821196659254903, - 0.05981391586932123, - 0.08854344709854896, - 0.07414151863415604, - 0.07623661994031203, - 0.08013762655419034, - 0.09645076248879614, - 0.06796854799063667, - 0.05746337624588719, - 0.09392529983079592, - 0.07273822726502019, - 0.07960162870264623, - 0.09631733095460714, - 0.0870241126945123, - 0.06755336483186768, - 0.0747891927575696, - 0.08173243840745936, - 0.05703756818808014, - 0.08042362619244789, - 0.06871382007122862, - 0.07713434112744165, - 0.08517418675236813, - 0.07028093449951912, - 0.0980395684529619, - 0.09362047270791035, - 0.12224968312267948, - 0.08191555886043198, - 0.07545753482730622, - 0.08266591625911168, - 0.061279916299748285, - 0.061721633909372756, - 0.08856980139391957, - 0.06122824104558142, - 0.06813660600171666, - 0.05614241706695177, - 0.06930182827122228, - 0.06950418583445248, - 0.07734766314747593, - 0.08523972965131253, - 0.06916728134687178, - 0.06256906512102825, - 0.04904098953004001, - 0.0742348038186251, - 0.06697999231367924, - 0.05460362941269578, - 0.07168744352610659, - 0.07875163451917916, - 0.09228172146869969, - 0.06521487334990077, - 0.0862562511913824, - 0.07862248184292318, - 0.06454773241855116, - 0.0759283740330448, - 0.06820454900751678, - 0.061557697167951314, - 0.09196820040662688, - 0.08315765480373673, - 0.06785166885504221, - 0.07418413438106863, - 0.05825534032279874, - 0.06814950797069308, - 0.06786886221294364, - 0.07595864282545618, - 0.05943347701323493, - 0.08147387682055661, - 0.06160496667542867, - 0.07248648957629619, - 0.07322064129199729, - 0.05444714417779271, - 0.07112044384760767, - 0.07389856719026995, - 0.07316205974949566, - 0.07913742936031692, - 0.06748355914004278, - 0.07699319871431416, - 0.06796749687570229, - 0.06516942702310892, - 0.09384714802750849, - 0.08060229768130228, - 0.06844823726299208, - 0.09384764784454437, - 0.0792731689118927, - 0.09262829721415985, - 0.0738531320748956, - 0.07857625987929057, - 0.07617366856131524, - 0.06997839657894461, - 0.07831656280907082, - 0.07063784059189884, - 0.07451423833586983, - 0.08140526052917338, - 0.0845692047078902, - 0.05681597293045067, - 0.07554269395296191, - 0.0630280696962184, - 0.060296090107733014, - 0.0652321335542652, - 0.07365669662382149, - 0.07437243894158829, - 0.07899576285203855, - 0.062257488375016254, - 0.09367132375986416, - 0.06956387811062453, - 0.061750056568272885, - 0.08427574803386154, - 0.08314856448043424, - 0.08229136575315482, - 0.07760874843014305, - 0.09024836671171654, - 0.06892723403818944, - 0.08028645435269281, - 0.06627575539394721, - 0.08307500724873502, - 0.0962427660638385, - 0.06853216972839032, - 0.06902742287661973, - 0.08496443216355103, - 0.06914615142935807, - 0.07506606635193765, - 0.073453731474847, - 0.06413388227451841, - 0.07013286422438016, - 0.06611043760812348, - 0.0888459968930602, - 0.08709275443338854, - 0.058439774826065896, - 0.06563748779687642, - 0.07219863870240543, - 0.06627896579049507, - 0.07010651298612885, - 0.09709049771889024, - 0.07295065239383536, - 0.07017341544538375, - 0.0918590482319139, - 0.07100434106085234, - 0.09548909680852237, - 0.0725865299707564, - 0.07111530371123258, - 0.06932060881922175, - 0.06676701163392361, - 0.07579025191628803, - 0.059695987252165454, - 0.0820978489311511, - 0.06470224267614513, - 0.08147025169150697, - 0.0754825886793211, - 0.06764004406543651, - 0.06726792380056855, - 0.0754998106175297, - 0.0881901404781605, - 0.07862544126314887, - 0.06376211028633204, - 0.07576147155909001, - 0.07791068433010255, - 0.09653277005539745, - 0.06263328202498251, - 0.07178326483225883, - 0.07110495828863288, - 0.06711602571323601, - 0.09730304249741466, - 0.06959069462834981, - 0.07451007649686718, - 0.08316054614372531, - 0.07998202315756907, - 0.07629670344386341, - 0.06133772767866931, - 0.05805412735383976, - 0.07001698108511527, - 0.06595693987125145, - 0.0585843761209904, - 0.07615881739005897, - 0.07484590721884804, - 0.0762430835373475, - 0.08143294595333785, - 0.08213285367582421, - 0.06561407523394248, - 0.06888176909388001, - 0.07695452407923178, - 0.09481969503521805, - 0.07883441620101742, - 0.07499952909903917, - 0.08091793258160405, - 0.0645455363842811, - 0.06889687880173441, - 0.06925684459298072, - 0.1252496427468379, - 0.08333504178340347, - 0.06312059638755409, - 0.06085676398886068, - 0.08831175665904996, - 0.08147210691718729, - 0.06835859684359527, - 0.08540540394160766, - 0.0662061563663251, - 0.05027290128230971, - 0.0740491797465274, - 0.062149403923143734, - 0.06549542469594118, - 0.06405569190481271, - 0.07087725795273175, - 0.06704960254770197, - 0.05714769627091312, - 0.06405529448899877, - 0.06863520834815669, - 0.07311156145052929, - 0.06579553130700698, - 0.06350300100161865, - 0.0631349013158796, - 0.082778271682764, - 0.07013068369147842, - 0.07461012114796055, - 0.08993252417701729, - 0.07937807703859937, - 0.07852406523983756, - 0.07188980974529618, - 0.08110065756559681, - 0.07081768798625582, - 0.08693657808263781, - 0.07459537260618328, - 0.08007986910294371, - 0.07481956168580349, - 0.06801036017179589, - 0.07962794453513868, - 0.10096002753010166, - 0.07859169877309792, - 0.08330357627132277, - 0.05945279368481402, - 0.07578667162684576, - 0.07586624320521668, - 0.09208777054617079, - 0.05537113389075643, - 0.06213937982952837, - 0.06438536486114949, - 0.07059533669794957, - 0.057800230339885766, - 0.08837703617122011, - 0.05799149014868417, - 0.07120386694840093, - 0.0909962129584635, - 0.07809755005259014, - 0.07277008809882256, - 0.07441230374892106, - 0.06589791995233224, - 0.061562411134289646, - 0.0800934161188136, - 0.08253711073568497, - 0.07338818110367752, - 0.07747122463855528, - 0.07492379888219268, - 0.06782083508881503, - 0.054312006795801206, - 0.054404765035079385, - 0.05021173370353962, - 0.07345792965245102, - 0.07197794077003332, - 0.08502786294128035, - 0.0822816718328364, - 0.06614233180235779, - 0.06598511678599257, - 0.07073747180963279, - 0.061639768657643576, - 0.07765760175000883, - 0.07470357105251012, - 0.07010213303530992, - 0.06452526210324433, - 0.08760301840054255, - 0.07821223482862931, - 0.10298420598360741, - 0.08134048543142501, - 0.06336402719441758, - 0.06095332373659618, - 0.07573356217325783, - 0.0730671379278129, - 0.06336777205933149, - 0.08098060176899352, - 0.06350965639268866, - 0.07174819785956944, - 0.07346457717745154, - 0.08510878037289092, - 0.0563292433153168, - 0.07282972360724947, - 0.08028489954552596, - 0.08002356919790811, - 0.0789794905399618, - 0.06927923883782161, - 0.06310133341105806, - 0.07388647778317738, - 0.1026649048530064, - 0.0725725794914601, - 0.08738038919784014, - 0.06220429798096587, - 0.0677202630763644, - 0.08202443670088876, - 0.06837875619541212, - 0.0592159278290536, - 0.06865270104497063, - 0.059006356422041245, - 0.06162342663107641, - 0.07472056632064306, - 0.08796647665212805, - 0.06396560853771556, - 0.07934164062975589, - 0.05915664895371706, - 0.07355978116510088, - 0.06793073009853393, - 0.07602770647911299, - 0.08049699500720882, - 0.07893373153209247, - 0.08069287255225471, - 0.06993338823353576, - 0.06116101733365597, - 0.09518138852160658, - 0.08481070185268524, - 0.07278081421156382, - 0.07005929097770852, - 0.06701238412064882, - 0.09266730812883336, - 0.09461322155358075, - 0.07400566407232968, - 0.07104083416675964, - 0.07672891076243274, - 0.06493501340838508, - 0.07061768406984043, - 0.07833528524755672, - 0.06791548058039942, - 0.07591723085258172, - 0.07339474065395946, - 0.08566928951131791, - 0.06841049365485513, - 0.09101326520933752, - 0.08674371544616433, - 0.08802574840038357, - 0.07420698154824032, - 0.07360380364957231, - 0.06635375973673754, - 0.07326411649398802, - 0.08786549967251651, - 0.06875826025938318, - 0.07078144033275341, - 0.08509446720004014, - 0.08042575242805038, - 0.08675325885786277, - 0.07541527052297857, - 0.0819545800685293, - 0.10126477903818004, - 0.10030738511809882, - 0.06843069407852438, - 0.08391268817416869, - 0.06249001969188868, - 0.08831296884734198, - 0.0742384715710573, - 0.06880269802062595, - 0.06578805647102255, - 0.08797157710375664, - 0.08009497481544266, - 0.059014222858072514, - 0.06351569524401797, - 0.08068811237479036, - 0.10547359637444302, - 0.07102150833808699, - 0.0742178016922117, - 0.06315680462872351, - 0.08959551337619963, - 0.10036615616239215, - 0.06317641813375145, - 0.08448063365689111, - 0.07167170617751746, - 0.08444001268213455, - 0.06231944125551486, - 0.06127330225367189, - 0.060210617653449476, - 0.0605794093505969, - 0.0824432234497485, - 0.0638052236664714, - 0.06392768714616874, - 0.07525203176485767, - 0.059271383798074624, - 0.06525945985196295, - 0.06832884749989168, - 0.06703291285169721, - 0.05730382457857213, - 0.07641504750566377, - 0.06279757839581958, - 0.09033070809423842, - 0.0829181763581527, - 0.06103954723494636, - 0.06809394688601157, - 0.07713711104411747, - 0.06618699952414157, - 0.0701397281625494, - 0.06500012481161314, - 0.0770814803118348, - 0.0609409831120576, - 0.08075024815227505, - 0.07395512577660003, - 0.06513098586042919, - 0.0609566178487086, - 0.09537144795716428, - 0.06509314783573436, - 0.07356562738837633, - 0.0730649307378531, - 0.09315210039851476, - 0.07335170747910773, - 0.06762926201257734, - 0.06914349705667482, - 0.06859489320867888, - 0.0786039854758, - 0.058203427476212106, - 0.06431857542563964, - 0.05764455882103112, - 0.07390262873106065, - 0.06636200232017468, - 0.06166328104532263, - 0.05989317916642443, - 0.08838693263197916, - 0.06982392929403156, - 0.08000535744852642, - 0.06705201199937402, - 0.10817206878625811, - 0.07672086820620788, - 0.06023608455332148, - 0.07054335500180196, - 0.07733215921940952, - 0.05640161060452261, - 0.07146835778942512, - 0.06210602761571955, - 0.054062148546352634, - 0.07045929408595156, - 0.07311141286820398, - 0.07675002677286898, - 0.07176063931433883, - 0.07077119675276539, - 0.06669466320317412, - 0.06385571901088635, - 0.0860458558781778, - 0.056540649277647376, - 0.07110639653495514, - 0.09108476484149902, - 0.08615450896064566, - 0.07636241074659963, - 0.07348854470928282, - 0.09545051126842083, - 0.06049623427823685, - 0.06645241302484853, - 0.06466987376022557, - 0.06585788780981754, - 0.07501905695689724, - 0.08552002990926261, - 0.07172586674369573, - 0.06362783503697794, - 0.08764473253448875, - 0.07582853896016874, - 0.06184970637545636, - 0.0856949433890485, - 0.11538886487595101, - 0.07892584705598993, - 0.07484612600427994, - 0.07089161198296487, - 0.12353671039187766, - 0.08285595554743262, - 0.05233827024359683, - 0.07592095353928245, - 0.08026830589028192, - 0.06953353459880117, - 0.08613501219000824, - 0.07059507362250868, - 0.07745054790329123, - 0.07893382138806469, - 0.0720734976197566, - 0.0676117833312894, - 0.076809528118527, - 0.09148951662187241, - 0.04953940704095113, - 0.06781984629803009, - 0.07923841323821075, - 0.08011688004073497, - 0.07341277459345696, - 0.0730084755316059, - 0.07154686477699497, - 0.06735011330002487, - 0.08953863536170362, - 0.07986448158317383, - 0.07148284562174737, - 0.07649766374396054, - 0.07323968502078719, - 0.0661237440698846, - 0.06780755291503847, - 0.06311519521762295, - 0.061027517468817155, - 0.08253654357908531, - 0.0718790958994309, - 0.0904802625043655, - 0.0808109986350384, - 0.06647938221091765, - 0.05216155353506219, - 0.09089810276445066, - 0.0851454008864742, - 0.07450419190802422, - 0.0783775788065491, - 0.07552215645471098, - 0.05930158948291541, - 0.058238815711150985, - 0.08004520562365851, - 0.08666382822996536, - 0.07816543235385918, - 0.07605457418623501, - 0.0720141298019991, - 0.10180549825014486, - 0.09037690359818369, - 0.06567124108038823, - 0.06803204824110183, - 0.07841395652524372, - 0.07772742278219442, - 0.0744330240017098, - 0.0718301361956552, - 0.07363320984304776, - 0.07028580240142758, - 0.06271607411366399, - 0.0832257544388091, - 0.07407852499970068, - 0.09636685453391418, - 0.06623768863019422, - 0.06779246351953931, - 0.07679298208877088, - 0.06136310109013078, - 0.0680668859493157, - 0.07372851950615236, - 0.05925311419895811, - 0.059104013271704524, - 0.0699211003169763, - 0.06736607378794733, - 0.07426929143847741, - 0.07799373156732033, - 0.06531311429319238, - 0.07407247413281182, - 0.07513741218941243, - 0.0790291442634814, - 0.07087478991134072, - 0.07539964715193148, - 0.05791333475622648, - 0.10776814620047545, - 0.05394653254935745, - 0.06387009748065647, - 0.070446780225207, - 0.05698031703226106, - 0.06917870493179945, - 0.07169101898680444, - 0.11050819469844152, - 0.07621011754244204, - 0.08588097635776071, - 0.06323936240806227, - 0.06012773788598259, - 0.060472892412947274, - 0.09250798883412334, - 0.06730814268969447, - 0.06918158548657226, - 0.07518595093668624, - 0.06287796827680027, - 0.06988660345370858, - 0.09485357877166935, - 0.07770394512642508, - 0.08708726311021364, - 0.08150982027555045, - 0.06967459961199066, - 0.058341244632020235, - 0.07393030788536127, - 0.08308267107911191, - 0.07198803622861662, - 0.07596657400993426, - 0.07712273157127582, - 0.06778860575770303, - 0.11077712201226309, - 0.0660678259099212, - 0.09188377771769118, - 0.07314212287663588, - 0.06633898201510857, - 0.0747264981495494, - 0.09756715310662907, - 0.07729215442325443, - 0.0765979001425984, - 0.06623986951115365, - 0.0866243121974116, - 0.07649580942873843, - 0.0654661855644138, - 0.0726662548356256, - 0.07985752488697553, - 0.07941072212671854, - 0.06684489793166722, - 0.07509231215333659, - 0.0879979352614501, - 0.06771354795235118, - 0.05372901547247338, - 0.060201332529347694, - 0.05910389015078941, - 0.06943312640645552, - 0.06700680087032419, - 0.06708511968675748, - 0.1060356437287007, - 0.07879168866584896, - 0.06294360634507036, - 0.06312600073665102, - 0.0924268503023262, - 0.08120963102760352, - 0.06872166152985673, - 0.10610351400405423, - 0.06016599859760929, - 0.08211187689848637, - 0.07658436667210385, - 0.08321466087906289, - 0.08757137697086947, - 0.08401508361087008, - 0.07759342022130902, - 0.06308575618024843, - 0.08100607833283824, - 0.06932490035621004, - 0.07872824836986131, - 0.07054945395312663, - 0.07280776989754913, - 0.062208000688360826, - 0.053894395499308766, - 0.06630138045706463, - 0.07167013253384265, - 0.07613054912203025, - 0.0904961118913779, - 0.062050569391036606, - 0.07942825532088142, - 0.0756547759650386, - 0.07873274871800864, - 0.07724677986671562, - 0.06842883968399037, - 0.06698093191982867, - 0.049734867744719254, - 0.07398689643654285, - 0.08330303796245332, - 0.07502000349848988, - 0.07790095631824431, - 0.0760883750626668, - 0.07050842330782835, - 0.06759351840030671, - 0.08861997390837356, - 0.07938255511635217, - 0.06166063766979888, - 0.07434053607784376, - 0.09570370024430117, - 0.07388196823705728, - 0.09149453579862563, - 0.07552886863927229, - 0.07647707617336415, - 0.07672414109012879, - 0.08767668142849695, - 0.0790223994062881, - 0.06576479932623171, - 0.0803854046937664, - 0.06528359987727332, - 0.08401494565239767, - 0.06786502266224291, - 0.08752020385694317, - 0.06724765062593333, - 0.09363772738942033, - 0.1220523523905778, - 0.08491165540813451, - 0.06995818446618575, - 0.06320852037520322, - 0.066207764068301, - 0.06244347263045383, - 0.08093896414523079, - 0.07507420675763003, - 0.06486571163586174, - 0.0614314819892654, - 0.06986704768103592, - 0.06572036231104451, - 0.10400031577443017, - 0.08121701484759747, - 0.062192863320598084, - 0.07579233585016007, - 0.07904043453168363, - 0.0677250303582122, - 0.07626891810768184, - 0.06675536046957835, - 0.07874999627232876, - 0.06612968993926477, - 0.06539530330230524, - 0.08998241906659375, - 0.05599402163468744, - 0.061159072821109065, - 0.05527432896119374, - 0.055251491912171456, - 0.05966439785322084, - 0.07527694037868311, - 0.06829216993508952, - 0.06807907920652335, - 0.05385521911279871, - 0.07077003985291318, - 0.07730358864657504, - 0.06548758996155188, - 0.08389443419008742, - 0.08485132440426098, - 0.0600234734511937, - 0.07631140205385109, - 0.07970512095436393, - 0.061809501840545865, - 0.06307126627140916, - 0.05865856444725805, - 0.06918746318951964, - 0.0938926373041105, - 0.0708254644702252, - 0.10407314140461935, - 0.05915868471723108, - 0.0721778772753855, - 0.06307817946487931, - 0.06617970554197247, - 0.07500591890454136, - 0.07765432422279525, - 0.0698514863499555, - 0.068051044884972, - 0.08653831238022443, - 0.06699165998015441, - 0.06478107670967842, - 0.0729013853870793, - 0.08246876866310082, - 0.07835668455054694, - 0.07440573520731973, - 0.07025953010067248, - 0.06367587684786905, - 0.09265544134663707, - 0.07772184081732085, - 0.07808447770890443, - 0.060534747229476965, - 0.08034706804803898, - 0.0636115691645984, - 0.07313058171726929, - 0.055587213484680015, - 0.06820438109962056, - 0.06209545702496395, - 0.06824762620028357, - 0.05285100800634396, - 0.08192832801752538, - 0.06879380122056494, - 0.08587126540908772, - 0.07390861062465102, - 0.06855354674244495, - 0.060511659788009306, - 0.07099093200549852, - 0.056521485948300934, - 0.07951327685044092, - 0.07987369402866998, - 0.07255546829235814, - 0.0729695851460332, - 0.06954307334960982, - 0.07920892980057007, - 0.06450130766631382, - 0.06679510307015434, - 0.06210233073161503, - 0.06891718118404978, - 0.06875881460285901, - 0.06073610958545808, - 0.08616229393005391, - 0.06210245220702486, - 0.05327836172360938, - 0.07325377090628386, - 0.06541793993944937, - 0.09080604584244183, - 0.09102238729294207, - 0.07501152311417637, - 0.09023184020149154, - 0.07059250205024176, - 0.08124176886596793, - 0.06751329770968269, - 0.07922854842440193, - 0.07639642111166628, - 0.09062095962094986, - 0.07325357071661488, - 0.0697084487820617, - 0.07271172225452348, - 0.07125666731751126, - 0.09386264374524249, - 0.07676773706019885, - 0.07910159677845181, - 0.05998932226326791, - 0.06699449565859233, - 0.06760903571037276, - 0.09023945383755537, - 0.06585812505724933, - 0.06813774330796069, - 0.063441751152206, - 0.07299098135880963, - 0.05283674509736393, - 0.08672637447966462, - 0.10734240076906658, - 0.07563103810507302, - 0.07640464864575848, - 0.07115712868922462, - 0.0795997601138285, - 0.07277424413258832, - 0.067847731349221, - 0.09151345756195288, - 0.07085712400991709, - 0.05940703370483924, - 0.08871998024323904, - 0.07127393504016744, - 0.07894738705547015, - 0.06874892941255308, - 0.07611488183565306, - 0.0649195355442654, - 0.08372690056640325, - 0.07169093742800596, - 0.06145337933639816, - 0.06558497999391892, - 0.06637338289872163, - 0.08187935308335426, - 0.07013782938008739, - 0.09493791868773718, - 0.07680885988589789, - 0.06367675489067351, - 0.08209147293866186, - 0.09187050123686959, - 0.06284529054364286, - 0.06468683865077729, - 0.058695325565399505, - 0.09238199667081645, - 0.08150595987640609, - 0.10287281775719868, - 0.055186778700299984, - 0.06353851167433638, - 0.0727072868327652, - 0.07758482902016475, - 0.0564918769291321, - 0.06028574812328203, - 0.06788681708501673, - 0.0658230766951685, - 0.08597134998438952, - 0.07711940426857594, - 0.0740151314805498, - 0.07888618615654672, - 0.0821317727705974, - 0.07995238510434088, - 0.08466516943861996, - 0.07697324097113305, - 0.06136570633243912, - 0.07889329528326863, - 0.07466615606541872, - 0.057591527529216716, - 0.06623368262077559, - 0.08048420017844272, - 0.11044547767247176, - 0.07953259720003811, - 0.07520037363651928, - 0.06448193903754, - 0.06877858217373244, - 0.09141396129028206, - 0.06461040011440763, - 0.06823568203584528, - 0.07678620110481095, - 0.07218592307970327, - 0.08559260799485531, - 0.06800281544707723, - 0.06841287417260185, - 0.07580235285023786, - 0.058739269567653095, - 0.08053656325232411, - 0.07413233608850488, - 0.07115434631888512, - 0.06439546255591728, - 0.06814329554986148, - 0.07410561032897012, - 0.07839620138947488, - 0.0684974678964602, - 0.05797199384203642, - 0.06822504536129144, - 0.08989495722839365, - 0.05810481400532711, - 0.06930266504786078, - 0.08554574811639884, - 0.06212822694793094, - 0.0790701506159853, - 0.0633683777440529, - 0.08442056134946807, - 0.0774821739007171, - 0.07305479574791557, - 0.08141181489929014, - 0.07080180639921112, - 0.0828673367009427, - 0.0779034364457544, - 0.08033999462469499, - 0.09543025654421788, - 0.07209891161050153, - 0.07910604248352231, - 0.06979961725997362, - 0.06518195174524155, - 0.07107610079452797, - 0.07117338081907537, - 0.0650254834883564, - 0.06246235805076036, - 0.07463712834128684, - 0.07583632881793578, - 0.07348976824609006, - 0.08553520792959879, - 0.06436654993169792, - 0.07515886729325756, - 0.08875975777851888, - 0.06694659695174059, - 0.07994024351841093, - 0.061966199547443035, - 0.05797200823370738, - 0.08042447875959721, - 0.09360400850112915, - 0.06717620854176602, - 0.0715231088984647, - 0.0645756404956173, - 0.08368938255894051, - 0.07431189271981592, - 0.08285818413187562, - 0.07171709859800615, - 0.08119024758296232, - 0.06848495737819661, - 0.057995788101385545, - 0.06481856550276699, - 0.05993329701925602, - 0.06399958946560484, - 0.0673408543258914, - 0.07851722463155175, - 0.08079875703641219, - 0.07029042877002067, - 0.06878110102640965, - 0.06287361671039726, - 0.059432191151754805, - 0.06162383473266005, - 0.05820891139899635, - 0.07816620844870095, - 0.061767043414250995, - 0.07454739213697849, - 0.07261661548915631, - 0.08064375322341287, - 0.07507398352011709, - 0.06798491420637885, - 0.09093774913062583, - 0.08410116937532179, - 0.07229554058986347, - 0.06908866854479662, - 0.060934506491535555, - 0.08320045511950647, - 0.06525744020469712, - 0.06654059994563402, - 0.05627094326722457, - 0.077626007195173, - 0.06775677689993427, - 0.07170550182581416, - 0.07365375982450825, - 0.08483272090658293, - 0.09299907540376029, - 0.08197660521381277, - 0.0760096798746603, - 0.09459444496520199, - 0.09917005623079098, - 0.06882496799342448, - 0.06610571794217258, - 0.06370766203419928, - 0.0952750073319156, - 0.0703877431796261, - 0.08077154650890192, - 0.07458266416647723, - 0.05649078951420611, - 0.06765957274951671, - 0.0861599815362729, - 0.0720028668472659, - 0.05945560750185331, - 0.07247498925592481, - 0.0662655193351764, - 0.08218122200559326, - 0.06321726961153193, - 0.05909858669508088, - 0.07427088762404993, - 0.07437994439474739, - 0.0652040722394446, - 0.06908211543516185, - 0.07874377190128105, - 0.05637198305754194, - 0.06443338528215205, - 0.0602506944107631, - 0.07177772491045498, - 0.08061081804899876, - 0.08800623785361404, - 0.06924924643468303, - 0.07154333547120438, - 0.06287734972388191, - 0.07943516541484011, - 0.09318659619190592, - 0.10245179340069002, - 0.07432462225957846, - 0.06887811426802984, - 0.08130677863633336, - 0.08019191672958578, - 0.0824993566747245, - 0.06367014314339703, - 0.06163772932741532, - 0.05297303917607919, - 0.06830185801337403, - 0.08225827277682306, - 0.05683198543223114, - 0.07352413072222427, - 0.09100198171084495, - 0.06567809824931232, - 0.06018288510311873, - 0.0638311212105374, - 0.06711561747020041, - 0.0747515343354436, - 0.07399162729672325, - 0.05997503805737886, - 0.06608150086829837, - 0.07595227306074923, - 0.06761814103232539, - 0.10103164245831896, - 0.07822015061451584, - 0.07872279954705924, - 0.06634808451533095, - 0.06329148577268141, - 0.09495131011291788, - 0.0730865569758, - 0.08674078432010231, - 0.06197782220868292, - 0.07177894533037318, - 0.05721122676188195, - 0.08421662219952372, - 0.07746550865579989, - 0.06984771045637118, - 0.100226863804346, - 0.07979260611719503, - 0.058584523418468204, - 0.06732704741030367, - 0.07073352723645826, - 0.07670580447318087, - 0.09634570402357932, - 0.07358123365921997, - 0.06077902037337915, - 0.06798933404419924, - 0.06849679056095145, - 0.0838277672731815, - 0.07848721151509126, - 0.07911262809966679, - 0.08851010123255966, - 0.07440860039323957, - 0.07772511827466386, - 0.07079780395435498, - 0.07491943296799251, - 0.07636286940692215, - 0.06569327081659554, - 0.08521324077821234, - 0.08026509200989652, - 0.07377975632654607, - 0.09469601119435939, - 0.06731081527809119, - 0.06719788974424894, - 0.08057376896343327, - 0.06888438037039869, - 0.08974786680773929, - 0.07395174690467413, - 0.07186593688721601, - 0.06839092753918677, - 0.0757528805461036, - 0.056641994613432806, - 0.060397726955496826, - 0.056290663572504285, - 0.06720341626069488, - 0.06269852455949593, - 0.07292549917070401, - 0.07517904153356159, - 0.07496623670047503, - 0.08441337007722918, - 0.06181712734456289, - 0.06072343642664827, - 0.07399979566662418, - 0.08838637973023766, - 0.07920626736433314, - 0.07953964455174166, - 0.07539527061428823, - 0.07573359446883293, - 0.06990447731628681, - 0.09265437800461442, - 0.06528084557825078, - 0.07004568771036097, - 0.06561255872999232, - 0.07050110770980614, - 0.06468805380923319, - 0.08095485762618966, - 0.07658888001494756, - 0.07050927539672384, - 0.09123982067136507, - 0.08460445971371408, - 0.0857005832741917, - 0.0696194439986323, - 0.07617027142052658, - 0.07603622993802588, - 0.07045280619896237, - 0.0762623098140127, - 0.07327621835850139, - 0.06634159390049843, - 0.09236950398431101, - 0.05951434990169526, - 0.08686557017360423, - 0.06983520648476156, - 0.061872381806286084, - 0.08641160123330446, - 0.09001738609949353, - 0.08873678644258828, - 0.08431858791552879, - 0.07576025918929039, - 0.07401944972354091, - 0.07465000860057026, - 0.07920560939533651, - 0.06916509906062243, - 0.06039194436771756, - 0.09353759606025741, - 0.07546706033289266, - 0.06907503820397691, - 0.08892306278882194, - 0.07340592253987269, - 0.07262413899023357, - 0.08242612324356093, - 0.07296173629013859, - 0.0781973707378343, - 0.08021140431360642, - 0.08422081119287543, - 0.07631965455353433, - 0.06816708050902329, - 0.07523190184044366, - 0.08219981076284862, - 0.04993105460106168, - 0.08535471286256092, - 0.0870710459957238, - 0.07438225588768894, - 0.06565010099456353, - 0.09252763108718971, - 0.08451137302296804, - 0.07982425376278617, - 0.0681151452156869, - 0.07510718163172007, - 0.0665538674428666, - 0.08319272564029666, - 0.07618747541049102, - 0.0782203056118477, - 0.08629391483220895, - 0.09909962316813235, - 0.07163295806397692, - 0.05720592304997952, - 0.07048395358401813, - 0.07834393491746405, - 0.079002349205523, - 0.06728154010485514, - 0.06094181943555963, - 0.08524069968240154, - 0.07076797340861919, - 0.08152004580518069, - 0.07040292426563886, - 0.07846256635622219, - 0.08311639614919826, - 0.08022911252943922, - 0.0579525926336329, - 0.0762180365247149, - 0.07904374098167619, - 0.07835610189722636, - 0.06638544318744166, - 0.06928713747078505, - 0.062343025094060686, - 0.11704775807787492, - 0.07022478874948224, - 0.08086113591949155, - 0.08050948989996473, - 0.07018996381773122, - 0.07654739209249717, - 0.07919772100085028, - 0.06363706703786713, - 0.08126873720982421, - 0.07053588606593453, - 0.07498602998416962, - 0.07509064770646708, - 0.07278036394701842, - 0.07507762764002741, - 0.08298321029920912, - 0.06801493500934722, - 0.07681586616434535, - 0.061359357210672656, - 0.07110552730959234, - 0.06380648108352602, - 0.06276799732382789, - 0.08067608559571454, - 0.07758980593958667, - 0.08902125771739539, - 0.07687754050860605, - 0.0807406537361915, - 0.07824014683561155, - 0.07120580905805357, - 0.06875179405876716, - 0.09561379667034305, - 0.0808735512076536, - 0.07819754952207515, - 0.08848608690853954, - 0.08893221907778077, - 0.0876409098083666, - 0.09877149556278883, - 0.07776971873931761, - 0.07174025079495537, - 0.06923119359805532, - 0.05683995670367359, - 0.07637289202976327, - 0.07782186996894545, - 0.0632770273562883, - 0.06632792939748985, - 0.10894019172548287, - 0.06917444768607299, - 0.05467011560398911, - 0.07015289702833268, - 0.07068425429915408, - 0.05220427786422355, - 0.052929279676593576, - 0.10850586937341214, - 0.06524568869951716, - 0.08141912166902827, - 0.07675513752840503, - 0.07485736299014771, - 0.06966033487075875, - 0.09147258077927505, - 0.08652666177636602, - 0.08480146088601122, - 0.08779173459847667, - 0.06517201013898292, - 0.07064263133030917, - 0.08442546012646641, - 0.0687077640481535, - 0.055389536638178256, - 0.06429159261195157, - 0.0750379005094482, - 0.05941548144155969, - 0.07493203737599968, - 0.09315810793636514, - 0.0619307286313361, - 0.08554221252965234, - 0.10290074131647757, - 0.069090401962703, - 0.0829708179611052, - 0.06951806211916238, - 0.07278496372958729, - 0.0671710275782712, - 0.0677567521094478, - 0.0727958651435633, - 0.06861901558090398, - 0.10508207456121224, - 0.07122694092952628, - 0.07582538769797748, - 0.07068329522621769, - 0.07763326872313944, - 0.07350234850571301, - 0.09055884057107409, - 0.0871693514752039, - 0.08085241621635728, - 0.07428202151173022, - 0.08041039301144857, - 0.06600241203323697, - 0.07327396813079556, - 0.09105059183491837, - 0.10853429058466464, - 0.07817055625960613, - 0.07400397135627075, - 0.11386842707744659, - 0.06546384990842592, - 0.07186123270686143, - 0.07929947566817581, - 0.07092939449879902, - 0.08622415883238223, - 0.07333764829952368, - 0.05894082081426164, - 0.08071458530105267, - 0.062030312182954295, - 0.07495179968229554, - 0.06505395683192383, - 0.09624316971737665, - 0.06727965521834527, - 0.05944388038977168, - 0.07245139960729946, - 0.07395507656690296, - 0.08745942591892598, - 0.08459442750081156, - 0.07509409776960685, - 0.06991199322030917, - 0.05723269970971605, - 0.0682451288872506, - 0.06706331549338311, - 0.0704326227491779, - 0.08086499938651111, - 0.06965423364756017, - 0.09223198698566243, - 0.05839791402439044, - 0.08141761508801643, - 0.055947745249928224, - 0.08605899634900967, - 0.0832512490239053, - 0.06251063233491708, - 0.06910239709409721, - 0.08360581220000841, - 0.0749415311435151, - 0.09822198232149053, - 0.05687612395188465, - 0.06240026127393046, - 0.0643330767504052, - 0.08490437031620895, - 0.07135174804677914, - 0.10606055965965022, - 0.06942392057041624, - 0.0841326430034279, - 0.06825986399136615, - 0.06177467873562308, - 0.06598428253560287, - 0.06271314774690342, - 0.0923776688750654, - 0.060898898117697664, - 0.06440848622043494, - 0.07416944559148425, - 0.06883711283645114, - 0.08309856986825298, - 0.07187567706159574, - 0.07813783599743639, - 0.07325892169069013, - 0.0684065298272919, - 0.06830810233137984, - 0.07860881169877382, - 0.06492657557481461, - 0.07314727684172936, - 0.08074493227546299, - 0.05216922491239005, - 0.07178970065220566, - 0.06144368124292302, - 0.10006963156329196, - 0.06819555384837471, - 0.08246800608553513, - 0.08511555105160133, - 0.07913606620190876, - 0.09158449677848189, - 0.06688115787457807, - 0.08423152585520789, - 0.07985336966578516, - 0.07600540628174078, - 0.09919691036167715, - 0.06215026132866924, - 0.07314770460022654, - 0.06499337460131623, - 0.06949821115949516, - 0.09979560197902022, - 0.10161912269053312, - 0.07149176460586462, - 0.06915352181012697, - 0.06501643462015118, - 0.0775513624029736, - 0.06054725551364473, - 0.07332762766918569, - 0.06745994080766335, - 0.08702556301335532, - 0.06283106135064313, - 0.06392719376957566, - 0.0721536509139645, - 0.07469639041965637, - 0.08986426205757721, - 0.06890471302725616, - 0.08078194070522003, - 0.06966280021906782, - 0.05774259644804922, - 0.0928431230595762, - 0.06566812256418385, - 0.06135656532858683, - 0.060728365241512296, - 0.057185209911337395, - 0.07256890241851996, - 0.07201406208145122, - 0.0843332085206266, - 0.06400494624550404, - 0.07201072733732622, - 0.06197070498457411, - 0.07093502542682971, - 0.06888878219424832, - 0.07023965897104459, - 0.07863406766521426, - 0.056412808517478964, - 0.06603307242215528, - 0.0628849146168397, - 0.061588625846221996, - 0.060733258104356945, - 0.07015305937840123, - 0.07587165939557465, - 0.09573777950809458, - 0.05310631089837582, - 0.09188302054935059, - 0.08596305011737966, - 0.05896527798567957, - 0.08296510145893417, - 0.08182250063936544, - 0.07857256408619165, - 0.06828608804787675, - 0.06354143513421844, - 0.06418893150294602, - 0.07300979098450486, - 0.0728936125146958, - 0.1264844538669435, - 0.0655655816915131, - 0.06701326656393314, - 0.07338000668604597, - 0.06622785305874682, - 0.07703297026607002, - 0.08329669384672007, - 0.05357829780137704, - 0.0748299856329921, - 0.07258368817211061, - 0.09416240553509639, - 0.08653689142850096, - 0.06727601292275188, - 0.07279882080283205, - 0.08263577897502815, - 0.07165827952379307, - 0.07545833786750078, - 0.07293102476533031, - 0.05894329207261631, - 0.06812340982858382, - 0.1039455394832702, - 0.08508626470580441, - 0.0700668995545275, - 0.07515230681374997, - 0.09637544681233746, - 0.08253498983058648, - 0.07164473555136852, - 0.06667417431844001, - 0.057624098625038485, - 0.05998505362317375, - 0.0933119130615334, - 0.07160901754179572, - 0.07774550558419462, - 0.09446172458362874, - 0.06461445335328699, - 0.06432252011898812, - 0.06360207135560164, - 0.08030866366795371, - 0.06673476980794825, - 0.07992174056511521, - 0.0872782546705636, - 0.06298067679337817, - 0.07634069273147664, - 0.05915276120884006, - 0.09197955720033112, - 0.06254873711030504, - 0.07196448509382071, - 0.0946120697380238, - 0.07031787902006786, - 0.07201026541930369, - 0.08043691390491658, - 0.07752838027994081, - 0.07680420440171659, - 0.08209354704586179, - 0.06214887839210028, - 0.07673887720190903, - 0.060468099110596675, - 0.06948651804234747, - 0.08120054375771323, - 0.06991040944599715, - 0.06507741284507047, - 0.0847810556904879, - 0.09125780615326226, - 0.0978798713237954, - 0.05402492445142781, - 0.0692175236103094, - 0.0810768029875963, - 0.07243325080811587, - 0.06070425312093145, - 0.07270008271035228, - 0.06915087197505576, - 0.08041485072643763, - 0.06614092190716804, - 0.07752186977375276, - 0.07764806422156922, - 0.06677854185785007, - 0.07323960747892132, - 0.06480234724082828, - 0.08008732174288641, - 0.07964129465504625, - 0.06453878392565245, - 0.0682112108129381, - 0.07342238083057398, - 0.07577546928408618, - 0.06076005041903309, - 0.06783455905235122, - 0.07124391872915013, - 0.05825749746438428, - 0.06836867146757504, - 0.055603976962760496, - 0.08446904629400209, - 0.06108181011362168, - 0.08185565443169747, - 0.06262586245053811, - 0.07626668892346981, - 0.07522913894626704, - 0.07042268373526003, - 0.08449712938572604, - 0.07687384209141285, - 0.06084382601067958, - 0.07486916776306993, - 0.07526747253992529, - 0.08433676965552374, - 0.09118623600344418, - 0.055478919459214536, - 0.06532457255717503, - 0.06823752784601354, - 0.06521543298369033, - 0.08063209252187034, - 0.09152225806397758, - 0.09799041372685346, - 0.07459193273012453, - 0.0881556627111357, - 0.06931629379608725, - 0.07119877633906857, - 0.07127604106155985, - 0.10599843307891957, - 0.06461562657275999, - 0.08005804284479667, - 0.11211203414678719, - 0.09114386093364045, - 0.09345790637199083, - 0.0717613846075896, - 0.07008328682012484, - 0.05837250233913669, - 0.0734095615278174, - 0.07421916911422331, - 0.05759447274925178, - 0.07451967837143827, - 0.0666454139291945, - 0.07315641675633165, - 0.07669027807183422, - 0.06646942796894181, - 0.08014574515468015, - 0.07295794345279255, - 0.07306374446871775, - 0.08280987016883297, - 0.0771024175361094, - 0.06614607061579254, - 0.0573319261510031, - 0.07338585080608526, - 0.1121912355451822, - 0.061375328353355386, - 0.05815930698626193, - 0.06068999262586423, - 0.07000951828880064, - 0.08284860835181382, - 0.06061815697120951, - 0.060784134165450136, - 0.06132212601585849, - 0.07858511932532947, - 0.054125610310843515, - 0.07595854703824062, - 0.060592591069341104, - 0.0678993259880503, - 0.08139202360774826, - 0.06595102322539252, - 0.06903926881455871, - 0.07292603831451423, - 0.06462786989185862, - 0.06268937125351864, - 0.07391108947514063, - 0.06926277647423891, - 0.07041439265530143, - 0.07797540070408325, - 0.06514149023513204, - 0.08518250635505234, - 0.06840314832810902, - 0.07357413350420837, - 0.07328889024728283, - 0.07554288856409419, - 0.08063021253894982, - 0.0796890190636649, - 0.06338723655663123, - 0.06390027556693098, - 0.06186127995879198, - 0.052367290985502385, - 0.0657065403359164, - 0.07825090848124648, - 0.07752231945642292, - 0.06944437844992471, - 0.10043905251942987, - 0.0678723318778707, - 0.06953245440626599, - 0.0738041694240006, - 0.08895183105072284, - 0.0620380654512236, - 0.08099859696803177, - 0.12783791709052142, - 0.0730999227808102, - 0.05717650159762603, - 0.06399946744176696, - 0.06290339211829532, - 0.07549569722447586, - 0.09017913874464233, - 0.0692701001037238, - 0.06610368538170633, - 0.06972575418620262, - 0.08449358232109004, - 0.06264297716718023, - 0.06325212350343055, - 0.07779579903791392, - 0.058798163799922885, - 0.0997210676422231, - 0.08591924797913736, - 0.06954585632785863, - 0.07507880526059982, - 0.0965362366794994, - 0.07714171249675648, - 0.06214810596944981, - 0.0943971880249218, - 0.05851935575811587, - 0.06523723832641484, - 0.08128929383786584, - 0.06179956961505709, - 0.07396628300625291, - 0.07078381822688885, - 0.08081815068866015, - 0.07452584149806682, - 0.062419455313999575, - 0.06324115399598591, - 0.09096598791048743, - 0.07711414562715191, - 0.06975759479744573, - 0.07548689175866313, - 0.07098739282787583, - 0.0656913772807738, - 0.06847670983396736, - 0.06721115241541645, - 0.07344923901236074, - 0.07305609249351457, - 0.058666171843239336, - 0.06381242262035783, - 0.07329148179314014, - 0.06315421748886937, - 0.057958027927597966, - 0.07350396737815315, - 0.06410077036045234, - 0.08678916040717284, - 0.056885718969885396, - 0.08055989609809604, - 0.08046265596297143, - 0.08368458302412735, - 0.08589362590393528, - 0.0992407400985578, - 0.08467974892751136, - 0.05509781990458915, - 0.05632841920984646, - 0.06770505646145554, - 0.06912899518328343, - 0.07455151398379754, - 0.06035097823600946, - 0.07505736571192959, - 0.06727966124263261, - 0.07115011558923295, - 0.07884687124294289, - 0.06898540149053663, - 0.06413452852204243, - 0.07335338656871909, - 0.09944843259386044, - 0.07247789598556133, - 0.06904359825104116, - 0.06273854153785352, - 0.06907653036418147, - 0.0660720988912993, - 0.05849682518522654, - 0.0551185044825423, - 0.07363462931758688, - 0.0626291309732453, - 0.06905649041057774, - 0.04987396539237164, - 0.08343915158809813, - 0.11077199078580661, - 0.09459942540260126, - 0.06875031731507583, - 0.0876483275895902, - 0.059654203011215934, - 0.06473657150658603, - 0.06451006433360298, - 0.08965938024061909, - 0.066224175665067, - 0.08254354584475246, - 0.0685550381601604, - 0.06832968796814691, - 0.08154802842286302, - 0.06642005158644305, - 0.07196973472782689, - 0.08062438695342648, - 0.07517659361554377, - 0.061238704326308145, - 0.07913506278211405, - 0.08452352544103167, - 0.06137727977448388, - 0.08792939043677182, - 0.0634862187405853, - 0.0727348216394332, - 0.05858080635529689, - 0.05737399138677093, - 0.06986040815650442, - 0.06760418436292508, - 0.06028252376065395, - 0.08004902760100452, - 0.07164451691912602, - 0.07804722308253145, - 0.07546478824477398, - 0.07509349108114975, - 0.06541560170855876, - 0.09425186628664013, - 0.07064390480752568, - 0.05830672919178845, - 0.08360841210388079, - 0.06713932991183752, - 0.09783700578545522, - 0.07863592781708174, - 0.08839242864990379, - 0.05672008104647207, - 0.060582217479465385, - 0.07715391097929408, - 0.0639703338790403, - 0.10989576967224325, - 0.058144589545510605, - 0.07821869113430556, - 0.08111155725588036, - 0.06183226480106615, - 0.07656246236087094, - 0.08045378945794403, - 0.06948485114349136, - 0.06891911049106637, - 0.05773113054142943, - 0.08093331507997589, - 0.08325680995983616, - 0.079636362371285, - 0.07090342386697028, - 0.08685338719320569, - 0.07687032860103588, - 0.10969145548196574, - 0.07067750819322702, - 0.05429003490482469, - 0.06282026130780903, - 0.07270851667974172, - 0.08985286177114382, - 0.07469864751337345, - 0.0603956783997096, - 0.09316273580592652, - 0.07422565191331977, - 0.07479902724824296, - 0.06293008513354907, - 0.08222026915668382, - 0.08173268345703935, - 0.08002489904684018, - 0.08417445164791684, - 0.0557920622842285, - 0.09786577860604731, - 0.08659784863583489, - 0.058059503861107586, - 0.06563541967603649, - 0.0638451087250819, - 0.08034124343026766, - 0.061795352789416017, - 0.06341631226986638, - 0.07120713646453523, - 0.069353608849051, - 0.06608182664470215, - 0.08199838071611372, - 0.05469113910141282, - 0.07574386162330399, - 0.06116190863271764, - 0.06958456233362105, - 0.08317253155829965, - 0.05341680888257962, - 0.0785996958854131, - 0.09768573212531202, - 0.07374132503540327, - 0.0796575224354438, - 0.06603285049967662, - 0.09872036942577805, - 0.0783843855894108, - 0.08245785603451884, - 0.06114673977136192, - 0.08864401828927868, - 0.07707777307421389, - 0.07439028584013892, - 0.05936596487419851, - 0.09545152697849071, - 0.0660165634625426, - 0.07818778276791893, - 0.07974770748850081, - 0.08252604972951832, - 0.07468016378344432, - 0.07240177105798432, - 0.06730453839013366, - 0.06710114600523912, - 0.06148351648901248, - 0.06246148346448506, - 0.08933543460247619, - 0.08397252504906777, - 0.06355934751409699, - 0.059244410003550116, - 0.05912332860830723, - 0.06475091300208516, - 0.061646323739637014, - 0.06828857161412313, - 0.09270267200168708, - 0.11657876279560525, - 0.0613113821216531, - 0.06573070834080717, - 0.06713143505007288, - 0.08132823617748423, - 0.07002250824673704, - 0.06793466972449738, - 0.0807873401783637, - 0.08479357737284098, - 0.07825157094287345, - 0.062164894342038333, - 0.07259626235891878, - 0.07934094153801928, - 0.06474605533756964, - 0.08743429495946495, - 0.05797870642033911, - 0.09814083194053053, - 0.06617704733783152, - 0.08561436446891754, - 0.06446676312250246, - 0.0522442576123279, - 0.06583644475677286, - 0.07579045888419805, - 0.0932915287546366, - 0.06619444056047143, - 0.07413347649019766, - 0.07335438619711149, - 0.05614740999547971, - 0.07469614347089622, - 0.07125816270388163, - 0.10135659506577256, - 0.06489011615444612, - 0.07872785013809391, - 0.0690482670811054, - 0.06510626438506405, - 0.07741816860336681, - 0.0730364240139007, - 0.07601134479161009, - 0.08524699299946928, - 0.07633308315204237, - 0.05570142033952155, - 0.09516210001711786, - 0.0655089507880576, - 0.06828778294530992, - 0.0742784314478961, - 0.07842212823908296, - 0.07795528965548743, - 0.07738804533032023, - 0.05864805994690378, - 0.08274243714870709, - 0.07007804826818408, - 0.06752819341184829, - 0.06546518472172447, - 0.06739539568695418, - 0.07073413091012774, - 0.07522262853952853, - 0.05750562974117833, - 0.06762367985465197, - 0.05593905207109658, - 0.0636656672914108, - 0.07669116949575086, - 0.07635503183728462, - 0.08083591493477381, - 0.07810393885570578, - 0.07567520220513037, - 0.0741393380726877, - 0.05405974644018071, - 0.07957672356649619, - 0.0817605080790872, - 0.07272108660781045, - 0.058437888066181914, - 0.07067256241300743, - 0.0799506029581534, - 0.0596129062068539, - 0.07933978925745132, - 0.09084024478872697, - 0.06278830924610417, - 0.06437675710787644, - 0.07484752237253392, - 0.07729213603186609, - 0.05540060344282682, - 0.06475305863020854, - 0.06436986110334456, - 0.07110803808967132, - 0.07855484071470689, - 0.07347482226627988, - 0.08530604833079072, - 0.07219521251479519, - 0.08831440463787546, - 0.0821577154082914, - 0.08533868782601271, - 0.06610190560301427, - 0.07281196329912264, - 0.07959368307120612, - 0.06797928007552823, - 0.07311576666767156, - 0.08014381923374404, - 0.0640297627718957, - 0.06643215484706692, - 0.07300998334137283, - 0.09077205219259359, - 0.08111880657211133, - 0.08579846089252538, - 0.0807866141417956, - 0.09985156844832102, - 0.05281474238207453, - 0.07656940889356777, - 0.07438228289562432, - 0.05569961389261924, - 0.0691083622403757, - 0.062253108231063156, - 0.07980233834805853, - 0.07756133263751458, - 0.0672702960356453, - 0.06708172733000235, - 0.07326878703469686, - 0.08085967990535646, - 0.06194429495238019, - 0.06128802803889804, - 0.08284977377024662, - 0.07128598195525991, - 0.08876382706302607, - 0.07316881556693891, - 0.07440845915148074, - 0.09052539249994838, - 0.0765470982398251, - 0.053693432080988715, - 0.07374210809525512, - 0.06898338648055603, - 0.06840974710481362, - 0.06698959353191575, - 0.0649112692842206, - 0.05655472695994811, - 0.07286197198864418, - 0.08762067706935513, - 0.07148484514140277, - 0.06943344239921, - 0.0790208495780118, - 0.08084093433251328, - 0.07254637983867988, - 0.06969950794263709, - 0.05196026631020626, - 0.06712830743589894, - 0.06497360512921162, - 0.08119179717343386, - 0.07144598553757453, - 0.07085814658389136, - 0.07907312313416892, - 0.08035097825410643, - 0.1118299472448886, - 0.07430090337554751, - 0.05749948356397133, - 0.07703436282270135, - 0.07913778687942301, - 0.06167356199666897, - 0.06671244137165087, - 0.06763554264650767, - 0.08734474597812314, - 0.08947555396282757, - 0.06025176432598656, - 0.07647762184344237, - 0.06509785493938511, - 0.08208212153275722, - 0.09773718591878236, - 0.0715416229019359, - 0.09111297900803926, - 0.08705238515789619, - 0.05848145208164058, - 0.08014658910620563, - 0.0891724005313537, - 0.06849244181546892, - 0.06451211500817959, - 0.07813576250765138, - 0.08668063234937683, - 0.05500756995155951, - 0.06511445168709892, - 0.05808372091963259, - 0.08007315068344388, - 0.07272685559455347, - 0.0678839340640202, - 0.059397050498909705, - 0.06850487052994488, - 0.07180175404587409, - 0.061327110258248364, - 0.07964427190714948, - 0.08746657832068046, - 0.08985913428488473, - 0.06773249773046548, - 0.08864619240291603, - 0.07286408291900257, - 0.059509935707832314, - 0.10111092482203807, - 0.07888983118428416, - 0.07408579705891809, - 0.07428696348720519, - 0.07022104726236324, - 0.0737044679740627, - 0.06699932082022374, - 0.07792935835717334, - 0.08875913081264879, - 0.08228930340583743, - 0.08461135069849843, - 0.0555413507586925, - 0.06936884867125716, - 0.07641702736044301, - 0.08959987079861097, - 0.07089546242481237, - 0.09600960758148606, - 0.0769603331686022, - 0.06869800913098588, - 0.06943623409820492, - 0.06276002754843678, - 0.08707939723618521, - 0.05730455071062536, - 0.06450192260743214, - 0.0846356700082354, - 0.08177319845391755, - 0.0736120726005761, - 0.06594886620382898, - 0.05704217298639215, - 0.0802356108548302, - 0.07835695453663895, - 0.07530870403590248, - 0.06980605215798345, - 0.07720560773993095, - 0.062209604482712996, - 0.06924579356592434, - 0.061737991134365754, - 0.07414895280028598, - 0.08228831082120651, - 0.06391184844283276, - 0.0657613888613973, - 0.09887050098141822, - 0.08215108420689392, - 0.11272398612471426, - 0.07784536981911494, - 0.07042263772878062, - 0.07346738933103057, - 0.0793413333644018, - 0.05956287822098495, - 0.06894045010888644, - 0.06439569940739816, - 0.07671165147603888, - 0.0696017556711261, - 0.07335444317512109, - 0.06126818643452432, - 0.08702213583118572, - 0.05476260626546636, - 0.10438646921826866, - 0.08598574494189257, - 0.056114344065168235, - 0.08147861080590806, - 0.08787263122695951, - 0.06761827376075438, - 0.07663424662701854, - 0.05969689022507293, - 0.0823128356957973, - 0.0786275680532872, - 0.0854105485674773, - 0.0829230167018442, - 0.07047363343877944, - 0.07096857591479074, - 0.07274962912176372, - 0.08288592164341223, - 0.06305540656713633, - 0.061933927351683585, - 0.05480082077324753, - 0.09926726074378438, - 0.09245772898405166, - 0.06568431435250727, - 0.07289402836548108, - 0.07071205496949126, - 0.09800717450254039, - 0.06318807736065474, - 0.07230892694368815, - 0.061230310898009864, - 0.07031876455467131, - 0.060985316187772066, - 0.08790304592422657, - 0.09570773982930471, - 0.08056742319859427, - 0.07966487066034987, - 0.08025008772701786, - 0.08064329117426866, - 0.0778675174336105, - 0.07809094386577269, - 0.06131700006591002, - 0.06819392503907609, - 0.06094643587480487, - 0.07431429943325052, - 0.05543799115553915, - 0.06591911978111516, - 0.06311443615235308, - 0.06719513670956102, - 0.09981836893288484, - 0.08001893934078809, - 0.07027375771721632, - 0.08427779288362307, - 0.09168127779496774, - 0.08988726150185351, - 0.06816782348205801, - 0.06850473038053496, - 0.08126533445422854, - 0.06382100914925137, - 0.07239225395615939, - 0.06356942930492082, - 0.0650794556632024, - 0.07650688960298609, - 0.08367633754968579, - 0.09897502929257015, - 0.07052381237735607, - 0.07603763173649625, - 0.057872068379458456, - 0.09066664858102376, - 0.08612363693560549, - 0.08912159217137745, - 0.0789938636939128, - 0.06389831742769153, - 0.07530265560748411, - 0.08663105983349147, - 0.06837432273410902, - 0.07118533819951837, - 0.07389019284069005, - 0.07370221742664407, - 0.07980343396594793, - 0.0622319007475762, - 0.07326243061136511, - 0.09214369069538275, - 0.09704528368760325, - 0.0809196740502643, - 0.07102347998092236, - 0.06088425123850313, - 0.06726480077345463, - 0.05873310374967827, - 0.09670343055760953, - 0.06994020853875293, - 0.07273510667886265, - 0.06859246581290294, - 0.08616181096844729, - 0.08183607106021394, - 0.0687414224998535, - 0.05555788033936859, - 0.090928366869557, - 0.07516334429309214, - 0.07033772839858088, - 0.07349941157613415, - 0.06996587664038333, - 0.09486490291773615, - 0.0721013758731068, - 0.0774566355812315, - 0.08085385812457578, - 0.08515325826779481, - 0.09241117848547183, - 0.06362305235531275, - 0.07377251021901318, - 0.07927370952050361, - 0.07194573082336042, - 0.08074217180563809, - 0.08705035291163624, - 0.07610639327699549, - 0.06469679119604332, - 0.0772290968683315, - 0.07500946397071591, - 0.07542689049823384, - 0.08452861900509921, - 0.08037430269056739, - 0.07110516443886411, - 0.07467827659619905, - 0.08552419922165404, - 0.08393036089883513, - 0.07052612722026506, - 0.07482813189051304, - 0.06919012117110983, - 0.08351651526365829, - 0.06062579014762478, - 0.06626726198058085, - 0.08685009519744265, - 0.0810321382602507, - 0.06492037317577025, - 0.12268904922412276, - 0.07200999432340557, - 0.06002633079700691, - 0.08293950404799826, - 0.06027116871230309, - 0.07416566952151547, - 0.08119272808788092, - 0.06273527808853678, - 0.09382032738862597, - 0.0723664522665276, - 0.07143026233786215, - 0.08027477399940905, - 0.07262504485936033, - 0.06968047970848493, - 0.06886626381986553, - 0.08866271599432404, - 0.06474684518722325, - 0.08716932290813126, - 0.08318189732460599, - 0.06611599766901738, - 0.06003982409469016, - 0.06959946616722755, - 0.0812319069347073, - 0.06034941344251965, - 0.09414658223901907, - 0.07016739027934628, - 0.0684130129665474, - 0.06223230088159927, - 0.08891212525202909, - 0.09987555811440973, - 0.07219038950766346, - 0.05997530539637909, - 0.0885080538321397, - 0.07230570362903396, - 0.05963425821431159, - 0.07988150494653565, - 0.05996259608849469, - 0.06798272196030856, - 0.06333687258527006, - 0.07055387361573749, - 0.06964370339807181, - 0.11014584016483867, - 0.09481262169445534, - 0.06396573451291854, - 0.05635813131908773, - 0.07908514072512733, - 0.07962237386780568, - 0.06800037597312078, - 0.05883228500736082, - 0.05606305513109068, - 0.09972575719888244, - 0.06502835673245344, - 0.05562115461616947, - 0.07309016599878962, - 0.07132205094777491, - 0.08379878556445976, - 0.06480078370998445, - 0.07245565252032717, - 0.08516873447306854, - 0.06238940021647776, - 0.0925264175304798, - 0.055704169507183585, - 0.0736621184164045, - 0.08296472276894908, - 0.06792552764895363, - 0.08774315426060138, - 0.0648686951716728, - 0.0590645494601129, - 0.07320126818896157, - 0.07989495901305271, - 0.08031698784176955, - 0.07182492029231333, - 0.06801954992646433, - 0.059654801319743975, - 0.09066963336187206, - 0.06918770502785555, - 0.06036566667735619, - 0.09211345014027084, - 0.07523162501478001, - 0.06988068942183771, - 0.08125779016001647, - 0.06370686338566438, - 0.08382968328856863, - 0.07102397642126519, - 0.0652959036462819, - 0.07981319249373847, - 0.06416644914548487, - 0.06641501009235132, - 0.07868699770372833, - 0.07280880934204566, - 0.06435639217439985, - 0.0807341548216838, - 0.057756684238079545, - 0.06394128974350044, - 0.11998877870710634, - 0.0737928689589475, - 0.06450221936536515, - 0.07092543382372468, - 0.05706663692076465, - 0.06948648506648562, - 0.07860495076338991, - 0.08863470677592976, - 0.07463446718555453, - 0.07189068783636161, - 0.08261988336490896, - 0.08580902046249848, - 0.10228072402694356, - 0.06015466729214366, - 0.08211164212306422, - 0.06584740032444661, - 0.05852444559110542, - 0.07567358501373253, - 0.08636949574041375, - 0.08020776013091886, - 0.06099730306375821, - 0.061597309400893197, - 0.06952901943500572, - 0.0580022367792112, - 0.08838448963448767, - 0.07818537816027446, - 0.06507281036917496, - 0.09352330795074458, - 0.07932056411166147, - 0.0656310404402476, - 0.07152311931856185, - 0.07211212518479261, - 0.08035121845155412, - 0.07599205139210378, - 0.07589439999476003, - 0.0772895136107807, - 0.0615302426578369, - 0.059449498092019715, - 0.07309886215127177, - 0.07888546245908067, - 0.06778729926856304, - 0.07855383359429692, - 0.0698773763456435, - 0.062003270515134115, - 0.06690208561477441, - 0.08176015787236934, - 0.06340210440621274, - 0.06383936631558139, - 0.08764493287985153, - 0.07890896983130927, - 0.09976078458476999, - 0.07549842768633877, - 0.08232693737143416, - 0.0710448505780644, - 0.08877676914205639, - 0.09231627284862615, - 0.07983039626783783, - 0.07321272220708618, - 0.07118466820593335, - 0.06694086985958987, - 0.09125700288599434, - 0.06956776519935876, - 0.0783247097854587, - 0.09754249226166017, - 0.09911536828521544, - 0.07604462386891991, - 0.08406252976884168, - 0.09785473165303386, - 0.07186607746132095, - 0.07144094097687087, - 0.0774863136616883, - 0.08215790550458257, - 0.06643743321533592, - 0.07196380710225772, - 0.07998590488233889, - 0.09151142970557107, - 0.0629989468108545, - 0.06073409417520561, - 0.09672734215252422, - 0.06520207942448758, - 0.05948227594690597, - 0.08629877981434889, - 0.10950152214259289, - 0.06860166917395233, - 0.08561904992861644, - 0.07878053692976748, - 0.07137799852727658, - 0.08319400372527484, - 0.05929800536908187, - 0.06809200735339024, - 0.04883701009491954, - 0.06207009507065683, - 0.08670432087843201, - 0.06613789190480962, - 0.06574073769116376, - 0.06188034661726514, - 0.06558632215686683, - 0.0801481367879212, - 0.07704203929716717, - 0.07690510661580847, - 0.06366077968512215, - 0.07716862462133399, - 0.07895503876752669, - 0.061186365398010645, - 0.07316631066543694, - 0.06558353689818018, - 0.06674085846253164, - 0.05825559768345587, - 0.08014818033970557, - 0.08840164037406507, - 0.08965095141869986, - 0.0722188446037045, - 0.06881912924205577, - 0.07671358652537881, - 0.08276981269774447, - 0.06784351240125878, - 0.08097248113232537, - 0.07520433600798175, - 0.07485063795859358, - 0.08300001785517862, - 0.07696959818830001, - 0.0885420329749613, - 0.07105530187034444, - 0.06124412064951518, - 0.08637414018362423, - 0.08188027307080271, - 0.07823464688554578, - 0.08312072808231867, - 0.06825630610406022, - 0.0790854535207667, - 0.060872797883984996, - 0.0762888825015885, - 0.07132046983742898, - 0.09185062502415486, - 0.07645556704578965, - 0.06563242529661807, - 0.06286317101383318, - 0.10109250174693192, - 0.08550738675323007, - 0.07638105302734721, - 0.06157617472330384, - 0.06432372583745845, - 0.08213517401268397, - 0.05843087496927203, - 0.07801301415379545, - 0.0746829496492718, - 0.0753512121888225, - 0.09139614440218798, - 0.07330130512921826, - 0.06220838394143945, - 0.07068777816610408, - 0.05652371007209563, - 0.0824690461006763, - 0.08445236363395628, - 0.0693856239656539, - 0.08690120983757522, - 0.06788986566928205, - 0.060409451635239995, - 0.09065738750110386, - 0.07644280567784124, - 0.07504580909350432, - 0.0692717036122325, - 0.05985036390075034, - 0.06908490948961063, - 0.060220930692934604, - 0.0726187157372022, - 0.05983190988712992, - 0.09448529476986889, - 0.07046809738602253, - 0.07770829762420452, - 0.06292300919745226, - 0.0647612439278809, - 0.07335253361427053, - 0.10250033744704173, - 0.05717751689535369, - 0.09418500176042541, - 0.07234531796230037, - 0.10794808011167818, - 0.054070883879046405, - 0.06837656427895851, - 0.07984832736378909, - 0.08416868657212517, - 0.06309184566288606, - 0.05505228036135872, - 0.08137270508077883, - 0.06639450180935808, - 0.06254531425355286, - 0.07538829395606556, - 0.07296922862896096, - 0.06912364995243837, - 0.0846647800191906, - 0.06754773592520742, - 0.07045930107130491, - 0.05984764538124699, - 0.07030867229796255, - 0.05352334663493503, - 0.0921404269222627, - 0.10522886537660968, - 0.07880088650881373, - 0.09410067884402856, - 0.06763327824254489, - 0.08441346716672311, - 0.0702653383515867, - 0.06688643952014446, - 0.07077080864420585, - 0.06465381569645144, - 0.07538104252388876, - 0.0679561745525119, - 0.08298309259342879, - 0.07116489479139518, - 0.08369938241817908, - 0.08162195144572741, - 0.0676177953031478, - 0.08997143466645391, - 0.07784648844241636, - 0.06210000098966774, - 0.05932564644205332, - 0.057014139780867744, - 0.07407199575242508, - 0.06306346434118748, - 0.06096017295771515, - 0.06718495472411873, - 0.07465345084958458, - 0.06701383371891857, - 0.071144932616653, - 0.05932294502561064, - 0.08826649044486587, - 0.056356470233215196, - 0.06450501649601659, - 0.06725118807350701, - 0.06127786749846318, - 0.074202017310571, - 0.07951962949441989, - 0.08037433330610917, - 0.07223808560185122, - 0.07950123863121074, - 0.08511177005524807, - 0.08109077597546527, - 0.08460818983481817, - 0.08835844700877182, - 0.060424290279799224, - 0.09584794938747689, - 0.053087564127373414, - 0.08262045687073694, - 0.05886491827971537, - 0.06045434553660478, - 0.08147125448254168, - 0.06912994915100538, - 0.08115961297029038, - 0.06371759796029493, - 0.07276984703927758, - 0.05892212979843048, - 0.06224879918042757, - 0.06715150133188481, - 0.07144569555579698, - 0.07157298639556371, - 0.06389360277314413, - 0.07599300424704752, - 0.08185136049065611, - 0.09831079416917425, - 0.06870909842244571, - 0.0731730774867825, - 0.062158942574989516, - 0.06282164043388669, - 0.059659935585274465, - 0.07435801579955904, - 0.07255098398637244, - 0.06427158767746875, - 0.10994006042191144, - 0.08818972124284553, - 0.06259859229578241, - 0.06601998483986447, - 0.06951716540751446, - 0.05835427092639341, - 0.05750230668074557, - 0.06421783140139928, - 0.09913016723739226, - 0.101109717479966, - 0.07434005896781265, - 0.09122172416786545, - 0.08699951399004158, - 0.06989614876517232, - 0.0579571846752854, - 0.06261950773070392, - 0.0688040811800633, - 0.0951115643057192, - 0.09412898107459311, - 0.06432981565068284, - 0.07620873209749082, - 0.06545027851474056, - 0.08154966167963482, - 0.09474902548018863, - 0.07536983598221186, - 0.05854182909908292, - 0.064886854228643, - 0.06251816220587184, - 0.06085568815616378, - 0.0700215084393534, - 0.06034139842520081, - 0.07152124928449706, - 0.08033121803142773, - 0.07074815705514442, - 0.07264718471708066, - 0.07893217494929054, - 0.08691871956742872, - 0.05836930302313702, - 0.05843108638844124, - 0.0731684177832538, - 0.07071027700002491, - 0.08756180832480912, - 0.07437374163446665, - 0.07020992183458206, - 0.0592632763567754, - 0.06070626821549212, - 0.08015668548152913, - 0.07899383591635135, - 0.07294430349977118, - 0.08098622048298318, - 0.06568956807007419, - 0.0764038297029865, - 0.07154977136158477, - 0.06123748486378692, - 0.08217873222825903, - 0.0677727150599527, - 0.06851002994234309, - 0.07874009410879206, - 0.06009520611480442, - 0.06706941920692586, - 0.06789708052866998, - 0.06028498040908859, - 0.08252813231806129, - 0.06531325135808265, - 0.051655250473802775, - 0.07959533657759871, - 0.07234970622557302, - 0.04888002391372721, - 0.09838656952214084, - 0.06892045841115584, - 0.06478905059921741, - 0.05367088939714515, - 0.08692294294481594, - 0.06287051161991515, - 0.08420005488779987, - 0.08380729331398487, - 0.06321597886498426, - 0.07269826556315884, - 0.08030319269533619, - 0.07266867566891862, - 0.08997157377625145, - 0.06136225649074473, - 0.06824463441235822, - 0.08498718447321292, - 0.08772180485267386, - 0.0727487297477219, - 0.07034530955739988, - 0.0615200775523942, - 0.07119434453434265, - 0.07796172772943737, - 0.08049842209249625, - 0.07982121943223654, - 0.06269633468514353, - 0.07797015122515928, - 0.07125986670776528, - 0.0670593726481994, - 0.07080300314924756, - 0.07490185212484277, - 0.06701048884860789, - 0.074301444573631, - 0.0819012955719955, - 0.0714171636927209, - 0.07958038866360176, - 0.0788549015716602, - 0.06354064696987763, - 0.0862517518270543, - 0.06638709565826509, - 0.06816812615376205, - 0.10059864733281654, - 0.07170136604087371, - 0.05889064492437208, - 0.08591569334499584, - 0.06703648080735851, - 0.08371337477383355, - 0.090958417049203, - 0.07417092209769759, - 0.08217895836814482, - 0.06307669563343028, - 0.07501004132971074, - 0.06521678807644071, - 0.07515308764147646, - 0.062112332788285735, - 0.08415548429016503, - 0.08120644098058492, - 0.07170875827124706, - 0.09525323125522628, - 0.08298270893461182, - 0.07453800041353657, - 0.07754279208598233, - 0.06386036442118397, - 0.08154652741707294, - 0.08796520808727275, - 0.06842995902627749, - 0.06577777448841181, - 0.10933645967068571, - 0.0650209578368089, - 0.08347998050856073, - 0.09390480713133437, - 0.09159268281762309, - 0.07268973912685049, - 0.062317686946934014, - 0.05968051325769533, - 0.07321586236714314, - 0.0608781907563185, - 0.07902585064730303, - 0.05347261816969543, - 0.10471404089251188, - 0.07059411105197115, - 0.07025731462450999, - 0.06917230915505856, - 0.08561252437268543, - 0.08940025363025499, - 0.06064132596100644, - 0.07108911055960035, - 0.07980966955628761, - 0.07376495913053195, - 0.06661877206459857, - 0.0636462601982891, - 0.0925021726930641, - 0.06437649391348334, - 0.05944167996699577, - 0.06904122467588417, - 0.06687521202088764, - 0.07981683367248658, - 0.08689693185574227, - 0.0782288544723901, - 0.06165641847708651, - 0.07248971167399099, - 0.06585701395399952, - 0.07090134545868437, - 0.07262544607792741, - 0.06276640360907636, - 0.06928813909841311, - 0.05952472163777956, - 0.0869074567882769, - 0.11088980898295046, - 0.07370040108675205, - 0.0837214009863836, - 0.10391352841795028, - 0.06482475645114244, - 0.0633018827579223, - 0.0763165982729534, - 0.07238450361883673, - 0.06974423218152999, - 0.07964780623587615, - 0.08109027495360126, - 0.07167425869346951, - 0.07182167408714366, - 0.07108478541026614, - 0.07104688535447783, - 0.07753620999893936, - 0.06559417046321815, - 0.06586376382488247, - 0.07320009920187384, - 0.07270333332286077, - 0.07167483654433994, - 0.07292665974339146, - 0.07127035371621701, - 0.08669482861522824, - 0.0831932008304574, - 0.09242989989318887, - 0.06923040986788094, - 0.08019150881745854, - 0.0758254557897533, - 0.08086489552444175, - 0.07068182341946129, - 0.07465194511718604, - 0.05991702749121386, - 0.06983766999870775, - 0.06776891617090047, - 0.08827614320203017, - 0.05733526894807197, - 0.06806246724614613, - 0.06599209940231913, - 0.06688980761605477, - 0.0670687626442681, - 0.08146289882277599, - 0.06294430493801732, - 0.0712685235132589, - 0.06375558621623245, - 0.058511997914048944, - 0.058056065032854175, - 0.05736435793437427, - 0.09192264910530158, - 0.07086843052674574, - 0.05987712752519562, - 0.0648969658838535, - 0.07015853962885527, - 0.08088881203154205, - 0.08261976880549692, - 0.06207180741953146, - 0.09049125571114396, - 0.06479516856332575, - 0.09482111435823212, - 0.054029433806235753, - 0.08227434088717651, - 0.07859925138063523, - 0.07708749648709277, - 0.054928713636233, - 0.06387968234179607, - 0.06247624608435245, - 0.0722987203903327, - 0.0802157301204988, - 0.07159524809616871, - 0.0782618559927021, - 0.08966694808068978, - 0.049055621932830674, - 0.06792936227110512, - 0.06861198660241746, - 0.09228615561461624, - 0.06745823376476869, - 0.07293897913218711, - 0.07123615363042551, - 0.0626746816788977, - 0.08392630595267926, - 0.07405069730962417, - 0.06468073141944554, - 0.06742892623511948, - 0.10227583413371023, - 0.07297620023921057, - 0.06487083076653731, - 0.06171313686525482, - 0.07755826490548087, - 0.08609823760104053, - 0.07504795825113998, - 0.07010391786894965, - 0.07787955777511897, - 0.07173441869895426, - 0.05543173860811207, - 0.0654081216903774, - 0.06818528230010516, - 0.08193212343842754, - 0.0809090703504503, - 0.06434737010021191, - 0.06122073051779153, - 0.08283237514008233, - 0.07774565067977451, - 0.06668271549446186, - 0.06270567183931434, - 0.07342288320223163, - 0.0847218555607717, - 0.07367413456813596, - 0.0771477788124029, - 0.06856252768976444, - 0.06955235830540071, - 0.10914860927777834, - 0.06274681193205105, - 0.09102069817543539, - 0.06821923898888096, - 0.074388837659149, - 0.06413808151758699, - 0.07382271752074919, - 0.0824552866918114, - 0.06433370472871701, - 0.06488666816589272, - 0.073360495133724, - 0.06432545356220606, - 0.08111345395753494, - 0.0641760492721988, - 0.07221598135445143, - 0.10230518410028921, - 0.08172021123286483, - 0.07819183304825408, - 0.06242678665076015, - 0.07726239611886103, - 0.07629526786990638, - 0.0805474922164894, - 0.08035263929458768, - 0.08467600685943648, - 0.10122424135211071, - 0.0989194565410429, - 0.05586777147399341, - 0.07044794047461227, - 0.07409357071226484, - 0.07133367301986834, - 0.06044796315552183, - 0.058184974455303615, - 0.07060821228473245, - 0.07483840980718764, - 0.0729806995871105, - 0.06615899392429997, - 0.07551438020635184, - 0.0702938861469208, - 0.05920234684664344, - 0.06716131329093696, - 0.06996828518707095, - 0.06620505273878417, - 0.05788831425015755, - 0.08051431506808418, - 0.07762684474349472, - 0.09090496346789002, - 0.07367718979059805, - 0.05831096694371185, - 0.06852637990362441, - 0.06625544435155886, - 0.06597973314850503, - 0.07100764736897379, - 0.07574060788186888, - 0.06845114735833488, - 0.06966470474688125, - 0.07029312310066231, - 0.07288707272358501, - 0.0748752982323838, - 0.07796246140410112, - 0.09814711568408703, - 0.07379001956369549, - 0.06674162660219336, - 0.0630563743566139, - 0.07362827442841519, - 0.06849762802382238, - 0.09321563847687155, - 0.059856302101478215, - 0.08673875574077328, - 0.08419019178148954, - 0.0730529981624063, - 0.06350346653381235, - 0.05795365562772606, - 0.07208847112937322, - 0.07786287878686605, - 0.06393615789650887, - 0.07147007256474819, - 0.06474068301409124, - 0.09375488359019987, - 0.0702563866752581, - 0.06598668394541304, - 0.06102442495060122, - 0.07131514030127901, - 0.062469824878217256, - 0.06027134446377781, - 0.08722346750124299, - 0.06684557851829476, - 0.06327075710478164, - 0.09848150752200326, - 0.08450288033757797, - 0.07942975456216828, - 0.07538722632384094, - 0.07042949237340346, - 0.06194260581135368, - 0.059318761531608324, - 0.1013062431715959, - 0.06864387833454151, - 0.09101212138733056, - 0.07955551904096962, - 0.07136040301295721, - 0.08631965675312744, - 0.0768154192854999, - 0.08208082974938687, - 0.0926909615899021, - 0.09952566992402052, - 0.06234982754719477, - 0.07329111487371728, - 0.06284440326986819, - 0.06812744586952674, - 0.07517573584132195, - 0.06096564822233001, - 0.0694256155355208, - 0.0736632492953599, - 0.07096096625189856, - 0.07401826511940524, - 0.06369598218393802, - 0.07007559796266723, - 0.06415253544016375, - 0.06085814893505996, - 0.08408350848027646, - 0.06903281283190232, - 0.08066946750879551, - 0.08811693548538214, - 0.07203349698557396, - 0.09136695787019167, - 0.09285543844975118, - 0.07305527797083791, - 0.05456759814496417, - 0.07290974526089035, - 0.06975473004217311, - 0.07880063608548567, - 0.07268573786046387, - 0.062157681165353675, - 0.06696012935382607, - 0.068959018040582, - 0.07062469622701138, - 0.0717418643260688, - 0.07351240791198554, - 0.08567033646283684, - 0.09682052677225621, - 0.060316119556617157, - 0.07987234191313473, - 0.07099249853551327, - 0.0834877524622115, - 0.08275078726287839, - 0.08239576031958429, - 0.07156530729399983, - 0.07214067523210135, - 0.058331493086604874, - 0.08651849037283568, - 0.11100522994529594, - 0.07909473067251369, - 0.0954366907902758, - 0.06647511825747839, - 0.06426028981253622, - 0.06412164206593503, - 0.0722195516742436, - 0.06768311008698771, - 0.0642784835324526, - 0.06899004236388649, - 0.09455473926288217, - 0.06100336412137569, - 0.079787639539298, - 0.07268767937555358, - 0.08680965378826123, - 0.07109600795796348, - 0.07960127209038101, - 0.08760962257892284, - 0.058798074660723565, - 0.0777799725224412, - 0.0714424488695335, - 0.07051336689804336, - 0.06900746230522624, - 0.07710666029531545, - 0.07087644156251244, - 0.06306655681744085, - 0.07733585158065, - 0.08662015234730232, - 0.09108511682884213, - 0.09601614302338189, - 0.07540470467234425, - 0.06813686771669163, - 0.07536124514260703, - 0.08949558584902503, - 0.07926385877982309, - 0.0809076974058109, - 0.08104935683633471, - 0.07450337141183122, - 0.08349516116165587, - 0.07750539232880305, - 0.06627121200856272, - 0.09061698509388585, - 0.06630464579339666, - 0.08239505004696415, - 0.07204286973363778, - 0.07173137751498022, - 0.07280588489213888, - 0.058223360814774965, - 0.09063193557878975, - 0.08999870641241701, - 0.08422169207140186, - 0.058152756012787556, - 0.06206884240598729, - 0.08357102465688465, - 0.0620443861787115, - 0.07797192739524203, - 0.08914117849656958, - 0.08625308925484863, - 0.06529084779087717, - 0.0657841709594203, - 0.07745583098944142, - 0.0955337387674866, - 0.05515937190843741, - 0.07870144537538235, - 0.07685376972131136, - 0.07451747781895923, - 0.09064721039948236, - 0.06121160160619648, - 0.0849410054687542, - 0.07704040194951103, - 0.05956626986071276, - 0.06632382146409603, - 0.06762362657638453, - 0.09202743536762945, - 0.08579986627215622, - 0.09169608851416856, - 0.06180643497368355, - 0.07365492858590703, - 0.08495110420407852, - 0.06634634756836708, - 0.08308166675053606, - 0.09395489803399265, - 0.07725074190251059, - 0.07402422917864408, - 0.07171931573507341, - 0.068978530900704, - 0.09081499680618267, - 0.07296122417524381, - 0.06627078446529318, - 0.06394685405443593, - 0.07887696187213733, - 0.07740528929261183, - 0.1352903411875452, - 0.059092542696270914, - 0.06639358499415324, - 0.07481165020799538, - 0.0739654755376472, - 0.07860429408171074, - 0.07710896785401657, - 0.06423374550886994, - 0.07510512060334675, - 0.05969670603862651, - 0.06197258495466789, - 0.0794405027743487, - 0.07606880180003762, - 0.10979044420135915, - 0.0587300899783804, - 0.08396579915372482, - 0.1058188126111407, - 0.0743410502142215, - 0.07887440643536546, - 0.0684021628150872, - 0.07442932592610449, - 0.06865306222436858, - 0.06406366344537322, - 0.09445741232390607, - 0.06190245031301375, - 0.06816786399154942, - 0.06860527483782582, - 0.06604097404524238, - 0.06835512110231486, - 0.06698642905533649, - 0.06783959387405251, - 0.05742562769669258, - 0.11795832582897153, - 0.06345381370791371, - 0.09215002347473225, - 0.06025271248910019, - 0.10678937951110788, - 0.08843521408225043, - 0.08831433626560264, - 0.08361345288770984, - 0.07957275056326663, - 0.07683954767208367, - 0.07602860039874358, - 0.08516992891657905, - 0.06808314836156928, - 0.0729833746222185, - 0.06771972390743067, - 0.07404680006980825, - 0.06669633307974256, - 0.06435444984259249, - 0.07702335710516868, - 0.06528027450981695, - 0.07541504613055981, - 0.06056948940398482, - 0.07308926657610688, - 0.06856229084371523, - 0.10378054116943425, - 0.09758837592130727, - 0.09349224665082254, - 0.10840144202698522, - 0.0735085046049351, - 0.06208527486601024, - 0.07046638839396699, - 0.06622986724777023, - 0.07105318596489373, - 0.07121738426410155, - 0.06445058712422581, - 0.07327633767694208, - 0.08592422440864643, - 0.06545304344815078, - 0.08415237690276524, - 0.06629124193927237, - 0.08262043768091677, - 0.0651669972480375, - 0.06309797214976781, - 0.09519517030711298, - 0.10686118274964276, - 0.08075353305839449, - 0.09400943980476738, - 0.060627053649318856, - 0.06201712005403712, - 0.05627927733101667, - 0.06670602476645023, - 0.1082317054906207, - 0.0663565537207034, - 0.06317753790994778, - 0.09330757544712065, - 0.07000427576802207, - 0.0637405515374989, - 0.07620561272475862, - 0.06119851862710507, - 0.0679906289806883, - 0.0888301782759726, - 0.08151622517890383, - 0.06244274522505153, - 0.06529600668227115, - 0.0645152922766625, - 0.06251220638570101, - 0.08434701101526736, - 0.09008421419700949, - 0.06876712025210553, - 0.07286765550002525, - 0.08439931143981358, - 0.08390466431694225, - 0.10265775926044593, - 0.07228700542111795, - 0.10020613036785422, - 0.07967199677717463, - 0.073250559255553, - 0.05914538825197168, - 0.06005031937231125, - 0.07291541348646159, - 0.06296457707817747, - 0.06866572287424569, - 0.0783461340008579, - 0.05922098678600207, - 0.06301202549432378, - 0.060206419886140616, - 0.04932523091284899, - 0.06641586576286862, - 0.08464367067217288, - 0.08524580737150912, - 0.08324206554529504, - 0.09517970463741775, - 0.09703605903952842, - 0.07633187988496487, - 0.07084601834940138, - 0.08090019986567486, - 0.09761204467360317, - 0.07263147887324825, - 0.08864409724911876, - 0.08175045655045636, - 0.0642222688247007, - 0.07858035993473056, - 0.07856486684043446, - 0.06500967997271381, - 0.058425528772973, - 0.0556261391838714, - 0.08348661283955239, - 0.07125820956228915, - 0.07432161417774236, - 0.08796658459693266, - 0.07203305468083669, - 0.057542593488697405, - 0.057769243418233834, - 0.0647230513552764, - 0.07701213642274823, - 0.08144694904141095, - 0.0895487907396127, - 0.09888671164184058, - 0.07793052396149878, - 0.06798892404481846, - 0.09171833583139807, - 0.06308977550079764, - 0.061522528639187175, - 0.06365029989704625, - 0.07375444214628707, - 0.07346201949765149, - 0.07117254782895076, - 0.08903748608839876, - 0.07409477014721672, - 0.07409544667174975, - 0.061807300306841007, - 0.08170009307278833, - 0.057198714089808624, - 0.0647274493059223, - 0.08858542577891083, - 0.08105826693042573, - 0.06953521281365022, - 0.07878124484441841, - 0.07798307108052992, - 0.07448082241012656, - 0.054178730579370074, - 0.06494728312533797, - 0.07195167337301132, - 0.07739567136472528, - 0.06550449509865296, - 0.07338203950509745, - 0.0935838426611816, - 0.07592230402100256, - 0.06769633158541295, - 0.0655472062536434, - 0.07676553509647072, - 0.0666197442273677, - 0.08100538891489754, - 0.09057176033866297, - 0.06910624507115053, - 0.07665709465411513, - 0.06786654120246688, - 0.07760921227475857, - 0.07844746478991892, - 0.0937017832167918, - 0.07511809784241018, - 0.0658807453295884, - 0.05699579516543643, - 0.07298714909334333, - 0.05808162721114106, - 0.08361322851253816, - 0.07252845855402713, - 0.061493676905086406, - 0.09103738290532776, - 0.05590212743846105, - 0.08439071873253788, - 0.07393051128227084, - 0.058532921427700765, - 0.05973931513461214, - 0.06301858125526061, - 0.08768874437758163, - 0.07573634207970395, - 0.06799894924222923, - 0.06629349442798986, - 0.061421045575739186, - 0.06110688577307381, - 0.07651171660498148, - 0.08835567799073811, - 0.061319701795400576, - 0.06603510578358088, - 0.08041213071701983, - 0.07284746488261842, - 0.06616583745182371, - 0.06991347657959894, - 0.07208134140706055, - 0.08955206176884839, - 0.06472607595906762, - 0.07721281062031823, - 0.07660481788968557, - 0.060873959470232476, - 0.07467585371806267, - 0.10178596526772836, - 0.09486401942032112, - 0.06334469450482656, - 0.06893966142137994, - 0.06186096410018812, - 0.07935432125707155, - 0.07725537393830773, - 0.06337767636578474, - 0.07250893013011189, - 0.07382010573166406, - 0.0640182915979837, - 0.07774768198440493, - 0.08158739887874647, - 0.07542859597395918, - 0.05868616349899544, - 0.07880327785389087, - 0.080259307529109, - 0.0923538039447765, - 0.07084460786021791, - 0.070491815983648, - 0.08389071932393219, - 0.08472750705074018, - 0.08009214290067036, - 0.06604432552092741, - 0.06699530053741841, - 0.08914314707483637, - 0.062219744698117446, - 0.09657658012483643, - 0.07320814377739514, - 0.08438761822543722, - 0.06639168390401734, - 0.07800954806857133, - 0.08748374280893297, - 0.062087122105139274, - 0.05856125396394383, - 0.06337057950462287, - 0.06623280137958787, - 0.05854541890746111, - 0.07371541211079984, - 0.06688993672291557, - 0.07538453777458332, - 0.06479455817933077, - 0.08985473264503213, - 0.09367310260004645, - 0.06548382015003038, - 0.08677874415594831, - 0.07310192723041975, - 0.07253572124134615, - 0.054061101826915994, - 0.07651454571398006, - 0.0631290020230335, - 0.05811164640692296, - 0.07647757560758069, - 0.07082928079494255, - 0.07319848582358525, - 0.07400786915646022, - 0.08358519300180275, - 0.07912474034290669, - 0.08061433796910297, - 0.07983637502010987, - 0.07456957594919118, - 0.06863506145244613, - 0.07750146563494875, - 0.07580434132431355, - 0.1049572289345451, - 0.0835383678958208, - 0.06526577951474029, - 0.05574884460682239, - 0.07736692934242981, - 0.05905010348707701, - 0.07135496935666562, - 0.08153561618080347, - 0.06907661907445813, - 0.06831743017593152, - 0.07583054394415364, - 0.06971134609100396, - 0.07206129911661731, - 0.0794398811831709, - 0.09048017962075912, - 0.07093417072928526, - 0.06527110232713806, - 0.07719394235419373, - 0.0598569690738162, - 0.09282140027955013, - 0.0805868610943382, - 0.06641188260566219, - 0.08261712319951665, - 0.07726076968339263, - 0.06475229800940514, - 0.06310503191122953, - 0.060383932081398875, - 0.0705153867651721, - 0.08837511712880146, - 0.06373729362484218, - 0.06843235636529645, - 0.08359119121814858, - 0.05983507890357062, - 0.09187475126434963, - 0.09132449398086419, - 0.08480867937023893, - 0.06472672160468958, - 0.0805484133449856, - 0.06513441968588486, - 0.07337591159526882, - 0.08538122103346608, - 0.06260546828553207, - 0.07659905909122466, - 0.08885557678941258, - 0.06402284413732856, - 0.09065197822642822, - 0.08498311289026507, - 0.061487024384992914, - 0.06686587204542653, - 0.06168106479702608, - 0.07093186375341783, - 0.07363146240515678, - 0.06312858381989511, - 0.07762709858483989, - 0.058685470186207955, - 0.07025683961486189, - 0.07645751253386442, - 0.07975578003232335, - 0.08331291240367875, - 0.09889393019969835, - 0.05432057593463057, - 0.07497212513012176, - 0.06621837732140477, - 0.09241127758723157, - 0.0720535419328001, - 0.07902631140574373, - 0.0566853439283639, - 0.06325646233880479, - 0.08618264536700211, - 0.09101921648680443, - 0.07834582756584461, - 0.0673419757732929, - 0.061768663232661405, - 0.06812360996782958, - 0.06110074002273049, - 0.07344838141601465, - 0.07704492053909168, - 0.08646561025342264, - 0.08574487347737329, - 0.06804437147648872, - 0.07026853862217174, - 0.07780640839659947, - 0.056800595747799554, - 0.06988494014297618, - 0.06722736684185032, - 0.06583157810734845, - 0.061325360184594, - 0.05766401013410591, - 0.0686015876317917, - 0.1017703525035215, - 0.06368774640326814, - 0.06542682376144163, - 0.08039770302345883, - 0.06148069640735861, - 0.07895859946698093, - 0.06477254854030669, - 0.06857336382867663, - 0.07302377707029316, - 0.07062529586694395, - 0.07287770124207626, - 0.061937637984892914, - 0.07329890327301028, - 0.07160972558354373, - 0.06571941459283244, - 0.10585208054230137, - 0.06682443982849873, - 0.08484532882075259, - 0.06962449160707138, - 0.06787804863940416, - 0.06529842287747466, - 0.05842099037493154, - 0.051033574792860845, - 0.0877237940003015, - 0.06063074452762047, - 0.14155659333319884, - 0.07091217648224944, - 0.06556829437569663, - 0.06516297140604495, - 0.07078445805630512, - 0.0870497202902504, - 0.08784809777814231, - 0.07239848747145182, - 0.07801744948865581, - 0.05906017708920344, - 0.057224552771624956, - 0.06694848818593431, - 0.06306196952981039, - 0.09050830381764356, - 0.07180767094019277, - 0.07246970646201847, - 0.0680688677402231, - 0.06978738147174202, - 0.0662965128932929, - 0.0720783603777605, - 0.09166759015113986, - 0.0847241829386416, - 0.08414350811415171, - 0.07687118913670753, - 0.08935330787725748, - 0.07150357834926754, - 0.05114194295344411, - 0.08380180499503072, - 0.08721667428336474, - 0.07437224625528766, - 0.07337313992966717, - 0.05586296051048081, - 0.09474871182004084, - 0.08353261216909945, - 0.08232595587337196, - 0.07042738989251394, - 0.07059900221681123, - 0.07600514598854304, - 0.06533627595731177, - 0.06626050178773915, - 0.057268063379383546, - 0.07434329033064639, - 0.07963898890556567, - 0.07103908347980563, - 0.07764318998307834, - 0.059461824032123696, - 0.06848913175398391, - 0.09541574326473094, - 0.0844257238464889, - 0.08493445686084759, - 0.07093771275272509, - 0.0824177053328231, - 0.060329896587791185, - 0.07370176090807137, - 0.0659928984391831, - 0.0724193852663751, - 0.07947227968508093, - 0.07652497536874595, - 0.07019409850788418, - 0.06016515118278523, - 0.0715643833576486, - 0.08796906986571254, - 0.07837004805501983, - 0.06478351147929137, - 0.061319734136955344, - 0.07942008118814947, - 0.07195654778704183, - 0.06199496866900649, - 0.08378323412635255, - 0.08445150578728514, - 0.0800739064162513, - 0.08108834919353147, - 0.07603113519111504, - 0.06767701793975289, - 0.07633179432825903, - 0.08357901954474976, - 0.08010488016595306, - 0.07543723811325348, - 0.08264756687804983, - 0.060356843285844, - 0.06133179481692858, - 0.0679669845074023, - 0.08693012762494574, - 0.07472676161655552, - 0.06363357342243313, - 0.08381473198622573, - 0.07019597835731718, - 0.07046272155027973, - 0.06323754811325787, - 0.07431197494098143, - 0.0833535743309742, - 0.08191112721076488, - 0.05522136018525592, - 0.08513622821070048, - 0.06404468744988666, - 0.0891647528356049, - 0.07604877624504659, - 0.061649628207930775, - 0.0710119696858894, - 0.06978115603656142, - 0.06773406606856393, - 0.07592229042323625, - 0.06689679159223173, - 0.05954860893867588, - 0.06603960022814213, - 0.0653409555608525, - 0.08049496845028857, - 0.07264497253302026, - 0.1028016504613349, - 0.08922995992728695, - 0.08778352788721093, - 0.06156712774827847, - 0.08496358312861867, - 0.06800402808546736, - 0.08304079676062054, - 0.06238345920213331, - 0.09998844482384385, - 0.0668938381660758, - 0.06846614030248963, - 0.054265241467452444, - 0.06850228582934106, - 0.06347651191068769, - 0.09518804116052239, - 0.061470653751360176, - 0.06809501452827434, - 0.06649861703395353, - 0.05704057476862468, - 0.06399490415500479, - 0.07969536140956338, - 0.06844888637808674, - 0.09550655973899602, - 0.08551598700053695, - 0.085350055635368, - 0.08117487045438887, - 0.08107964118074763, - 0.07477354571415423, - 0.054177509937556496, - 0.0745208407930453, - 0.07695755211081019, - 0.0599631813537558, - 0.06796091986040385, - 0.08902352460788435, - 0.07182687175298863, - 0.0652292387057078, - 0.06948016993762836, - 0.05105462670061785, - 0.05792165969524036, - 0.06448626956306218, - 0.09958146624314333, - 0.0631144329217949, - 0.06812778249781686, - 0.054245698733529794, - 0.06765582209991522, - 0.06370135416678023, - 0.06397948081338828, - 0.07386936760333183, - 0.09292711426734056, - 0.07003815691585567, - 0.0632860833700806, - 0.0758247297094377, - 0.07854611785855399, - 0.07251126165048366, - 0.06274450662058578, - 0.06420444535114328, - 0.0634099964682681, - 0.06285698724631752, - 0.0655629122246278, - 0.08798861599078021, - 0.07676375549856226, - 0.0741018152890305, - 0.08486280939779996, - 0.09557758324859279, - 0.05595266644142326, - 0.09505097790498668, - 0.07959619792980775, - 0.06940298229090343, - 0.07385856025667442, - 0.08043027116941281, - 0.06382754370872969, - 0.08097956404094617, - 0.06936240805589021, - 0.0744172745129261, - 0.075609194420956, - 0.08540729869601148, - 0.05894033940555589, - 0.0761693375159553, - 0.07855700452165522, - 0.07916499240588346, - 0.07328843911808099, - 0.07362647709202322, - 0.06167310883100352, - 0.08317386364812261, - 0.09300422163115232, - 0.07965951003708227, - 0.06806499830196377, - 0.07751748312519968 - ] - }, - { - "legendgroup": "Beam sensor 3", - "line": { - "color": "rgb(220, 176, 242)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 3", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.07751748312519968, - 0.07712150388539996, - 0.07364128316850381, - 0.07827984398985742, - 0.07729688358174301, - 0.08266691709427205, - 0.07623450680819624, - 0.10845649434026836, - 0.07468273645466726, - 0.06532061622896575, - 0.06510786797581845, - 0.07884628805932255, - 0.07661645381995802, - 0.0687205138453863, - 0.08333638787248901, - 0.09334640861077766, - 0.07471434840108993, - 0.06478209375204685, - 0.09797489039019369, - 0.09290401126575636, - 0.07033934018634086, - 0.08495252393798193, - 0.07718031857765165, - 0.06042871823700698, - 0.0845433523908893, - 0.08277940913292851, - 0.06960840999210666, - 0.07475483092812493, - 0.07005328500828165, - 0.09844005747265676, - 0.06606311466014923, - 0.10364196300903986, - 0.06151242418481321, - 0.0655348910071044, - 0.08256844105472023, - 0.080866955549301, - 0.07635956614440455, - 0.07001824827889737, - 0.0725483285587736, - 0.09193472338605313, - 0.08466480305219959, - 0.06948299866997815, - 0.07584394870609455, - 0.07510116413217256, - 0.07657631757032336, - 0.09147961256825997, - 0.07245394018770161, - 0.07395750504502133, - 0.0633127165228168, - 0.051735799585339845, - 0.0654764345944264, - 0.08912471868520659, - 0.08193690531394685, - 0.06545209962871107, - 0.07389003144543113, - 0.07842649086101945, - 0.05735599419132806, - 0.07250037813451511, - 0.06250940031469956, - 0.06697879261473785, - 0.0687230484762069, - 0.07613743510574705, - 0.06848059525446801, - 0.07779307626825135, - 0.06000848153326667, - 0.0585928466881431, - 0.07091329603915149, - 0.0783589544733735, - 0.08390735430111358, - 0.08940745603990052, - 0.061344878083299796, - 0.06357982936164723, - 0.07185875161250053, - 0.0832253500264142, - 0.07502412169642925, - 0.05817980124412841, - 0.08378203151929917, - 0.06826323437417443, - 0.0653007713230765, - 0.07237401648815796, - 0.06324239848605978, - 0.07235843592088428, - 0.08047461948473178, - 0.07656867519791317, - 0.09143046737199105, - 0.0786348600780941, - 0.07672985251538869, - 0.06835369947994822, - 0.06482358885666208, - 0.06863673844337825, - 0.11492981478358134, - 0.07596350801810774, - 0.07366599950149992, - 0.08396433838087299, - 0.0814260238293856, - 0.0664767601915552, - 0.053989458914480454, - 0.06541788884649839, - 0.08092476515285875, - 0.08575568139757357, - 0.06648211719190954, - 0.08399000202712044, - 0.09066332409380988, - 0.07609928666664324, - 0.07597723961905767, - 0.06125380639488999, - 0.06899908004527451, - 0.07080469036015785, - 0.08700546898477374, - 0.07339627315186652, - 0.06278862690679113, - 0.06863620833640241, - 0.06076712431253277, - 0.07976652294600416, - 0.06822295274410685, - 0.09259993022244194, - 0.06801015279188838, - 0.06826098258325179, - 0.06937033049428332, - 0.0636059622371129, - 0.05905465183888291, - 0.08051784091824957, - 0.07237717533256632, - 0.07207486735843724, - 0.085158182977065, - 0.06321511695671791, - 0.07434014517094309, - 0.0806169792705208, - 0.07208821111074365, - 0.07328920226251853, - 0.0811572818326265, - 0.058837877514241035, - 0.07537139465833118, - 0.0562788294196848, - 0.07735629816906768, - 0.06630612039898265, - 0.06976768313435042, - 0.09334663017530628, - 0.07547139069570129, - 0.09963571770178432, - 0.07062945469175767, - 0.1116728368899619, - 0.06539348794174181, - 0.07266709195096753, - 0.07667563087814479, - 0.05828691656320054, - 0.08107129690055952, - 0.07569570806453277, - 0.06926910321274032, - 0.06984422075311103, - 0.09943003159053491, - 0.0657278558914745, - 0.07151824773542943, - 0.0936185552345285, - 0.0736650808016547, - 0.08972897646885097, - 0.0855259963369905, - 0.06901313063583996, - 0.0795736751587697, - 0.07482763799699182, - 0.0607758316359524, - 0.068900244047033, - 0.11092988276912369, - 0.07983069342283372, - 0.0757725633898123, - 0.07553321662696809, - 0.06516096739789703, - 0.08620511735828326, - 0.06763132869884535, - 0.0662990831566689, - 0.07962305675461315, - 0.06914948938376005, - 0.05674383492931674, - 0.09451921697436848, - 0.06973452492819807, - 0.05892249214707327, - 0.06198104130776673, - 0.06339344055423134, - 0.05392251806492533, - 0.06713119117606643, - 0.05588907824309581, - 0.06854203222077453, - 0.07825363229970901, - 0.07894496845181403, - 0.0715676516790495, - 0.06330404748716909, - 0.07600714590100005, - 0.0887466677321905, - 0.07325182843674652, - 0.08846465972900769, - 0.06552635163589121, - 0.060842154298693295, - 0.06509446466667021, - 0.069046517992402, - 0.08978472035669713, - 0.08211664355012319, - 0.0878958458852633, - 0.06361675962843817, - 0.0621228124811801, - 0.0836628290514428, - 0.07116205471180748, - 0.07221664706613774, - 0.05507260299623585, - 0.06830037250839928, - 0.08634270543928074, - 0.07525013072933091, - 0.08079990223492128, - 0.08258180587071495, - 0.08553120117732496, - 0.0793392181356681, - 0.07477790718399871, - 0.060797950023518725, - 0.07340577930934301, - 0.05856499727173589, - 0.06831541650075323, - 0.10866515486627087, - 0.06785288670501562, - 0.09078914411429084, - 0.09313986686597202, - 0.0689666126671105, - 0.07190040303018408, - 0.06977919592662077, - 0.06506988704145562, - 0.07494235177043858, - 0.07710282232624208, - 0.06437014686254763, - 0.07087234535093348, - 0.07495849845364802, - 0.06489478896179708, - 0.0785092867363462, - 0.06789561480158911, - 0.06632008526721953, - 0.07195720376741284, - 0.0795359797663766, - 0.10884423657425286, - 0.07920267035286421, - 0.06818788617979175, - 0.07863935060422014, - 0.0915453838416947, - 0.06572002159611119, - 0.05990979901836317, - 0.11989056981680787, - 0.061970432967104756, - 0.06447455281711763, - 0.060080193781604924, - 0.07319486223030372, - 0.08614305808736367, - 0.06536976926781082, - 0.0734125841091539, - 0.07487318867375233, - 0.05070068309532709, - 0.07384862027626847, - 0.08547278885871618, - 0.06234696330318384, - 0.08233841420216338, - 0.07016660702586738, - 0.07518783369210144, - 0.07757278237108832, - 0.0656870997443197, - 0.0724070558491209, - 0.060675012269673784, - 0.0657265060974613, - 0.07477299918587152, - 0.09838664448724879, - 0.06858939199908055, - 0.06332383134794904, - 0.07575578722768833, - 0.07248188634682819, - 0.08484909353298734, - 0.06370777692437483, - 0.07441536828461356, - 0.08380612010501627, - 0.07258987766811444, - 0.06782352339719448, - 0.06005127832188951, - 0.08400620893284126, - 0.06429207728963633, - 0.07283129573544374, - 0.07831122253646777, - 0.06770576662334507, - 0.08071350295145839, - 0.06982247303063702, - 0.07892134299252351, - 0.06321777768125204, - 0.08399125475165484, - 0.07911036549326014, - 0.06185545403994192, - 0.07351811432914732, - 0.047027050380923405, - 0.07485506734309046, - 0.07672048278748901, - 0.0621463647678136, - 0.0709204439052935, - 0.07532195217652489, - 0.05693603049814394, - 0.07155391932457139, - 0.0912939687378338, - 0.0642684106174854, - 0.06820326789930302, - 0.08220879097720513, - 0.06900919651201752, - 0.07756408109158056, - 0.06670067834222398, - 0.09408359211329571, - 0.05853070204085365, - 0.05784004505030784, - 0.08431879891467742, - 0.06685212414156567, - 0.07509161062746815, - 0.06986327822238671, - 0.06714643216222516, - 0.08087498620248022, - 0.08568588435451975, - 0.06269990034041467, - 0.0715389208354202, - 0.04853739388859325, - 0.06555885960765372, - 0.09546397571623161, - 0.07164471352255371, - 0.06491238603438088, - 0.09229520278982514, - 0.06348445264590673, - 0.07710608862944932, - 0.08943638560282571, - 0.08008773990344688, - 0.07371873028429571, - 0.0706505374068854, - 0.08153602019530462, - 0.05638373099578652, - 0.06274184164996664, - 0.06925865074945421, - 0.07637753002775603, - 0.08205672082157835, - 0.06274031009336854, - 0.0742203792576347, - 0.08247316533888988, - 0.061867922819227074, - 0.0664506887305667, - 0.08080487583269835, - 0.08316551545331372, - 0.08747795887342026, - 0.06648107203860473, - 0.05437932665298877, - 0.07059315136140248, - 0.06695942319478865, - 0.05546390878333743, - 0.059216562150287866, - 0.08589590854564787, - 0.08025655374494349, - 0.07656786605573934, - 0.07908646281176325, - 0.07230721697158995, - 0.09193661269933688, - 0.07955149338307338, - 0.06600885884489772, - 0.06166957582922166, - 0.058086454869406966, - 0.08134721348977614, - 0.06291696820107982, - 0.08701271535780677, - 0.1114573569365375, - 0.05661686314952422, - 0.08708784398883368, - 0.06594329172687796, - 0.1041498093518877, - 0.06142604112826365, - 0.0634110399872681, - 0.05597205544553585, - 0.0638015381659278, - 0.08284909461064817, - 0.08018082176574208, - 0.08767881259818686, - 0.07407327032838198, - 0.06994181694282028, - 0.10325304657712331, - 0.07005824356639982, - 0.0731159214209001, - 0.07601215107127081, - 0.060556209326813756, - 0.07084101402908127, - 0.07917269637919823, - 0.06044701051681098, - 0.07214248852538045, - 0.0750238009351802, - 0.07816516395898504, - 0.0762556445811063, - 0.09482038979057213, - 0.09732064026394084, - 0.06747876233276554, - 0.07522765037721002, - 0.0801179132539906, - 0.08094342639418388, - 0.0688633523826384, - 0.07504767236168977, - 0.06481697870910003, - 0.07434790581632367, - 0.09625594926838112, - 0.06640532887699657, - 0.08392153302794118, - 0.06494321674103573, - 0.0894896307132344, - 0.06601121211316373, - 0.08927470459426409, - 0.07557627125074566, - 0.07280526243372483, - 0.0673891817574763, - 0.08764706665060093, - 0.07985392190456429, - 0.08816800454360776, - 0.08484653992798079, - 0.0626740291956486, - 0.09079489718503453, - 0.0714855458589355, - 0.057597957553172416, - 0.07099186912719505, - 0.06396056190672532, - 0.07650939644322839, - 0.06928831374927008, - 0.07373311628244261, - 0.07973675010411357, - 0.09349973798906155, - 0.06513396326967426, - 0.057840196408987535, - 0.09351515955522817, - 0.08351037053302732, - 0.09486661577082141, - 0.07794085292695216, - 0.05305387930596631, - 0.07009065703116586, - 0.07393622396145273, - 0.0630987104478975, - 0.07729399950964566, - 0.07179962927026344, - 0.09175842715957595, - 0.08219238507330534, - 0.07388977332735147, - 0.058769779409765674, - 0.08181849983782338, - 0.0729723625101667, - 0.07478857461456527, - 0.06102034243875111, - 0.055135858756962634, - 0.0838770772086376, - 0.06608344967448301, - 0.06528011688663012, - 0.06707650610025956, - 0.06088691511376285, - 0.08320232186924675, - 0.08478368770495216, - 0.05538353091439425, - 0.05540254557252777, - 0.07399660740775173, - 0.07025470101618074, - 0.05563649325732891, - 0.0898957947850348, - 0.0714431251548741, - 0.06459043276658846, - 0.07566717076711792, - 0.06724102620533878, - 0.07076439979328626, - 0.12875283606529547, - 0.08670315101331069, - 0.07698326142123157, - 0.07813530318482005, - 0.07969753016675438, - 0.0665030997471986, - 0.07051029489564348, - 0.08366712481739107, - 0.07370207226888133, - 0.062124734444692735, - 0.06252746480664224, - 0.05706034318476435, - 0.07550187671197647, - 0.06827264463540622, - 0.08852922323291237, - 0.08475588265499942, - 0.07809355389492229, - 0.06660364624743938, - 0.09072975331977808, - 0.08386821648434176, - 0.06826887217548994, - 0.05929066564243312, - 0.08837509078660281, - 0.07966846114077945, - 0.09172726135521643, - 0.08193225982330204, - 0.05958784679263722, - 0.05933599611899775, - 0.07093120074272702, - 0.06577085086726209, - 0.062200703353024356, - 0.08757297899018049, - 0.05956587083628963, - 0.10267739533748474, - 0.06530354728103491, - 0.09076819605172905, - 0.0794992199794506, - 0.08516213459407666, - 0.057180298137547436, - 0.06041231149347113, - 0.07624201199424313, - 0.06125222264152034, - 0.05527824452639166, - 0.06419005504549208, - 0.08323275130440348, - 0.07151606742221148, - 0.08268872483008574, - 0.070008776853324, - 0.07516459294853425, - 0.07194760496347706, - 0.08905147980881974, - 0.06781156852036538, - 0.060115023224211854, - 0.0685598589766857, - 0.09875800046302162, - 0.10688818907761376, - 0.0724357380575677, - 0.059351872108882146, - 0.07706606629726388, - 0.09176320452598953, - 0.08491760676181052, - 0.07498760619064603, - 0.10054045264860517, - 0.07139712334629209, - 0.10114063122955502, - 0.06693794640250299, - 0.0830781487672982, - 0.06762934046998768, - 0.08341369928514328, - 0.059884770953636035, - 0.08601503429521302, - 0.07377355189390697, - 0.05436147481353541, - 0.07087009219210111, - 0.06440945087797983, - 0.07945489111609062, - 0.05929068901941506, - 0.0701456381158884, - 0.0677739329248743, - 0.06717367130492136, - 0.06542178667319377, - 0.08088370457844116, - 0.07665812536520061, - 0.07315026079818766, - 0.09672906443338902, - 0.05426725061309626, - 0.08596402710214655, - 0.08334675320344544, - 0.0779315811460325, - 0.061806718857964245, - 0.07508385443677125, - 0.0752659649204726, - 0.07165600494460578, - 0.06955813347592085, - 0.06911048106626728, - 0.06973137323327053, - 0.05854413505548394, - 0.09662495274412664, - 0.07422510093661312, - 0.07075017128998626, - 0.07947186944394265, - 0.0641570469049526, - 0.07274029136406132, - 0.08038301579391648, - 0.07451216900553548, - 0.06281926229611753, - 0.08112187759101555, - 0.07554363722712298, - 0.08401903798397953, - 0.06360545746262557, - 0.07840514749775984, - 0.08074732516912145, - 0.0660922880581058, - 0.05955755999304085, - 0.08146868599209382, - 0.07613274437536914, - 0.07204390433665055, - 0.10149463621585238, - 0.057300025415392135, - 0.08720455961375691, - 0.06315594532078958, - 0.07008205792279447, - 0.07685302344821397, - 0.07717737234733962, - 0.06086701110173684, - 0.07838689748510622, - 0.09034071580598269, - 0.07161755616063384, - 0.0738212072390588, - 0.08705552771590584, - 0.07145438130037832, - 0.09162110736854907, - 0.07111428541711468, - 0.0763380515789178, - 0.0821400707483867, - 0.07598126192492864, - 0.06754846232419563, - 0.07616392584912161, - 0.07152784161921734, - 0.08623912945539783, - 0.10185833780144085, - 0.08973046597356395, - 0.0543966599935823, - 0.07144826194765862, - 0.06543406208245617, - 0.06834622707255311, - 0.08945043748054261, - 0.08392117166144411, - 0.07015496262356924, - 0.10294328042651384, - 0.07521810952802425, - 0.08070578454886666, - 0.07531567778989558, - 0.06626853204139418, - 0.06714908130447234, - 0.08313850589646364, - 0.05708496191308836, - 0.06916324964479006, - 0.05079650398102797, - 0.06672378223997001, - 0.09135453656648049, - 0.06111866651208111, - 0.07534144697587254, - 0.0769192565023968, - 0.07811446363417889, - 0.06966684524375057, - 0.05774762107544314, - 0.07268643057895768, - 0.06960674324301068, - 0.09897077328385226, - 0.06722181451073338, - 0.0791401814285858, - 0.05842977330399473, - 0.0802119686027575, - 0.08378487134266278, - 0.06372590964065776, - 0.06464937038807395, - 0.0599826639595808, - 0.07555652941995139, - 0.06102411243970262, - 0.07358875313085063, - 0.05869037708876518, - 0.05733905577019772, - 0.08978871141170479, - 0.07492917302164433, - 0.08099104881819981, - 0.07364350474833901, - 0.05948228848363815, - 0.05844562289342319, - 0.06087722339680506, - 0.09472299960306264, - 0.06550032831691967, - 0.05574372326322796, - 0.07824639419320706, - 0.08028969095208838, - 0.06058860856866833, - 0.07718296499451385, - 0.06191740867632482, - 0.07901770589891528, - 0.07702788672493299, - 0.06142237531876738, - 0.07535826315166007, - 0.06872124437681792, - 0.06916131459528167, - 0.05856935049097606, - 0.09013272573361795, - 0.05875395852451893, - 0.07693715783879652, - 0.06473839317306349, - 0.05162061985895626, - 0.06009368964788889, - 0.0919689445095233, - 0.08259951097421135, - 0.07243777171818391, - 0.07649049506200024, - 0.1067504806762102, - 0.06898062395235244, - 0.07720773215108583, - 0.09289590340516889, - 0.07568582617839077, - 0.0687835968819942, - 0.0712921642179676, - 0.09498617406121347, - 0.06678919455059071, - 0.0775997262394987, - 0.08333359790696349, - 0.08353263203834217, - 0.10185805288821047, - 0.06697577941314975, - 0.07851224099459168, - 0.0609455987669805, - 0.09412956279105673, - 0.07358528495723321, - 0.07351773760383538, - 0.07436553970127709, - 0.07289903595605078, - 0.06407769686771699, - 0.0691237596480507, - 0.07310207925891841, - 0.07606485084818085, - 0.06957238689180674, - 0.07917786398741951, - 0.11827139676384875, - 0.07204139813686095, - 0.07161521444958548, - 0.09934047813892806, - 0.06207962402785036, - 0.0728929987444511, - 0.0796280177044725, - 0.07169328228992136, - 0.06911678230138167, - 0.07247516037451368, - 0.08187788746708867, - 0.06995485248565975, - 0.09680953604270998, - 0.06431305078030178, - 0.09219431401239261, - 0.0719122049345296, - 0.07226511465911001, - 0.0981690656709947, - 0.09426847551667515, - 0.07167837203188969, - 0.07522454361091237, - 0.07400158544830897, - 0.06004107156717573, - 0.05582745372024391, - 0.07599048874253905, - 0.0695373057034933, - 0.08897395139155605, - 0.08442506943129982, - 0.08950928127716887, - 0.09138619406642176, - 0.08894704708848696, - 0.06711314538785877, - 0.07946553220787213, - 0.08348105509175002, - 0.058720253527375914, - 0.07176018998462001, - 0.05424245211511234, - 0.06921585665392697, - 0.06905410781749591, - 0.05631239137069895, - 0.07271235242315494, - 0.05753405403054708, - 0.05419645781526727, - 0.07856557950923783, - 0.07817736832304367, - 0.0807850975561397, - 0.06784028458313465, - 0.07590171097347713, - 0.06364282188395713, - 0.08738891033975764, - 0.08591895997148982, - 0.06338141873048246, - 0.06206360836909394, - 0.052205273086411416, - 0.06611461064380185, - 0.05929949565156261, - 0.08655434333134811, - 0.06170021365511094, - 0.06562747342261338, - 0.08245571979192867, - 0.06146429672719804, - 0.06494868180066747, - 0.08801417571039157, - 0.0736500050069271, - 0.08188649197081868, - 0.08197212983034322, - 0.06720812332299547, - 0.05713383945219232, - 0.07375159601700819, - 0.06379040315040785, - 0.09789259628837221, - 0.09568646271005869, - 0.07893905926211907, - 0.08630770160805892, - 0.06893574356387515, - 0.07711484978084293, - 0.07628399622488136, - 0.06432354340027419, - 0.06657081267333378, - 0.07901646775399875, - 0.06054457052014582, - 0.0717183731978143, - 0.08177228445758548, - 0.06422930817341305, - 0.07677105237365732, - 0.09261485058606116, - 0.054367992506634516, - 0.10087216771950804, - 0.06147997314861056, - 0.08295806292596647, - 0.09515750529339657, - 0.06041825117751254, - 0.07827986122381055, - 0.07587785893557637, - 0.06656336724919472, - 0.06424562114987509, - 0.08021438028667485, - 0.06494038683164143, - 0.07210553707584115, - 0.10430608970196079, - 0.06891950927330455, - 0.06890904040797932, - 0.06919208403321153, - 0.07190233877411188, - 0.07420701187387821, - 0.0658997851458278, - 0.05825781520501414, - 0.06571724705655999, - 0.07417195325095102, - 0.10421738249948875, - 0.10153555351449127, - 0.07668756073173999, - 0.06681797477848209, - 0.07419519025237013, - 0.07177906633909108, - 0.0708425346269562, - 0.06033445033189937, - 0.08516762769195366, - 0.06168473058411087, - 0.07595515002010327, - 0.06422989993740998, - 0.06261981686930541, - 0.06735244268657262, - 0.08018126741552262, - 0.07632896604347822, - 0.07603143246547193, - 0.07404276197101638, - 0.07462731003043706, - 0.05844066774438587, - 0.07100886306125789, - 0.06253453271184273, - 0.08266397714033134, - 0.061387511365217, - 0.07023657741216752, - 0.06768407691446506, - 0.09333973773568126, - 0.08085251234848001, - 0.07448529680181828, - 0.08166167494576189, - 0.08181533913872295, - 0.05558541110011021, - 0.07208339484214536, - 0.09633974678634032, - 0.07393113411602598, - 0.09185329273685734, - 0.06531780871155343, - 0.07214941407068706, - 0.08322828517039992, - 0.06579437264058687, - 0.08842780173194721, - 0.07829859648839992, - 0.06568353910304843, - 0.06492501252997067, - 0.061022130474148124, - 0.06063221843059982, - 0.07211263384010089, - 0.062383656381370604, - 0.07058945288626835, - 0.08117290136653939, - 0.054593531833493816, - 0.08017732948705461, - 0.07561649259096803, - 0.08041737403371876, - 0.0633956431135357, - 0.07074985104851307, - 0.08230427206744527, - 0.06493996692916619, - 0.06270505644753466, - 0.06387613688090503, - 0.06830374342228039, - 0.07814734474965776, - 0.05726954188240525, - 0.08408919967001971, - 0.06656629784858283, - 0.07183446177890179, - 0.069539311883717, - 0.07018757307116884, - 0.10542759958373968, - 0.06814493085818377, - 0.0773217449597292, - 0.06383947911343935, - 0.0982038730964685, - 0.06848144593208587, - 0.08072493130778043, - 0.07925766240342122, - 0.07268756011753322, - 0.07824293498467472, - 0.07672595125697546, - 0.07986848311250194, - 0.07088005364452124, - 0.07645946367373274, - 0.05918341759594616, - 0.06764420640340246, - 0.10758741466440153, - 0.060117037914836045, - 0.09111285548673922, - 0.07498839117353533, - 0.08866168953089777, - 0.0703638421413358, - 0.07939417120013262, - 0.05611330632106518, - 0.08746368130603746, - 0.057108122127247314, - 0.07646268112215333, - 0.05285401640824758, - 0.05243058725475528, - 0.07528291680314561, - 0.06456318856487965, - 0.07205319805482677, - 0.06531187977631008, - 0.07672284030196865, - 0.07358187787041821, - 0.060834416699533767, - 0.10013838433920444, - 0.08014335769669462, - 0.101057102211556, - 0.06871745429039477, - 0.08080022478231041, - 0.06890772812916256, - 0.06583607974478632, - 0.07593050270117074, - 0.058288527101769405, - 0.09414693002231675, - 0.06873858334159708, - 0.07087407583962128, - 0.059787069737980036, - 0.06457541436571786, - 0.07775965041345759, - 0.07639579252069452, - 0.06931862230746436, - 0.07672793588667949, - 0.07312592610946328, - 0.07412999505722914, - 0.06895502806442372, - 0.07547268912794594, - 0.06289383664119137, - 0.10330242718403179, - 0.06359891507510798, - 0.09108881905486853, - 0.08006976061008707, - 0.08971586708318739, - 0.061242375036514446, - 0.06343870470403745, - 0.08104019785863137, - 0.0772800126642371, - 0.07714133406665453, - 0.06062267159504695, - 0.08966334393544585, - 0.05917185522415622, - 0.07523916751788973, - 0.06572026379392913, - 0.07502032910552003, - 0.08598323940362489, - 0.05378002118672805, - 0.09411414582263049, - 0.0634830463355262, - 0.07193331535474663, - 0.0739183491516453, - 0.07166010582310878, - 0.0660377858081187, - 0.06427111086062938, - 0.08323356612937459, - 0.08670206769414239, - 0.06106267976417933, - 0.0686493772189314, - 0.07537993869025258, - 0.07311482599784655, - 0.08876352389135844, - 0.05417884208722788, - 0.061240037958549966, - 0.06772087406686805, - 0.08303492348168655, - 0.0798916366258167, - 0.07163725526563634, - 0.0725214761311897, - 0.06590451337709859, - 0.07251311933750448, - 0.07388278539350678, - 0.06592225245646836, - 0.06620388612320822, - 0.06347824216584534, - 0.06840915759507078, - 0.06552331555508055, - 0.0778549156799945, - 0.07996171387512699, - 0.06990617495035777, - 0.06994416685461173, - 0.06414642186517798, - 0.05879147348727597, - 0.07661757803144346, - 0.0727913495426771, - 0.062410110129018155, - 0.09088616447860602, - 0.08901024328173679, - 0.08966304637759315, - 0.08176679669086609, - 0.08921079204597113, - 0.0755953703389293 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgb(195, 226, 175)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 4", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 1.07136885861707, - 0.16215029528671843, - 0.04781580037803521, - 0.03906499727297111, - 0.04661060385927132, - 0.05125442394181169, - 0.07522302493591887, - 0.05200735195174587, - 0.05931275753634268, - 0.051145859649157625, - 0.06027920052317959, - 0.03729326386183284, - 0.04522835600601863, - 0.04964745504093386, - 0.05210298655005147, - 0.0362624429146588, - 0.04773528226162187, - 0.04030612308710094, - 0.05078489842456172, - 0.059830288400634035, - 0.045139407777899695, - 0.04369822382881475, - 0.035269340025449146, - 0.049446684948408835, - 0.04823773394018877, - 0.048422655364685575, - 0.04727648177491848, - 0.05479169677732464, - 0.03872175773698081, - 0.04771512125836695, - 0.05185424495982045, - 0.038384285307810274, - 0.04474365977003831, - 0.04476802669731781, - 0.04763576513228003, - 0.053405831473654124, - 0.04418766244293986, - 0.047270588371183225, - 0.04800813930308701, - 0.03655810394878861, - 0.05163184371972455, - 0.045483162942417506, - 0.05007133432100566, - 0.04608977780618808, - 0.038508715760727105, - 0.05436632660691475, - 0.04370595015036305, - 0.049589493051994074, - 0.06753782090718473, - 0.04962541845305189, - 0.04295190136190733, - 0.042190868583167666, - 0.04831376845735267, - 0.04211648725630777, - 0.04808688510389734, - 0.043538593838727165, - 0.040580067724178874, - 0.03785926602545454, - 0.08591652198207898, - 0.04825111280651508, - 0.05476628013399067, - 0.03621562110857239, - 0.04475510418384279, - 0.038493216213497806, - 0.048343132387821876, - 0.046889009237674396, - 0.05141447983541117, - 0.0452327903848928, - 0.04363830301445305, - 0.055417475471911344, - 0.04652584657945464, - 0.04966941227488668, - 0.04213793586910197, - 0.0511079704112292, - 0.04875860300758067, - 0.06195466453405461, - 0.04598003601507097, - 0.04259368013899044, - 0.05091945773519197, - 0.05574603740747556, - 0.044045393910682226, - 0.05496554490822897, - 0.057910974204885814, - 0.04110694004416701, - 0.04427551936185398, - 0.05159740892990269, - 0.06299071278291964, - 0.04480040675009427, - 0.04103590863511122, - 0.04335079728741988, - 0.049409669591773835, - 0.041619910419284256, - 0.04672284648136979, - 0.05572822719110056, - 0.04244404607358586, - 0.04642481831465231, - 0.05247196438880488, - 0.050543873004975176, - 0.041180688010947104, - 0.047303653109170445, - 0.044066464553821544, - 0.0386775944487181, - 0.06338440464223624, - 0.037210736841829385, - 0.04079865883948939, - 0.038976363073952115, - 0.04223243348529902, - 0.04112123047194275, - 0.04816351329095097, - 0.0472197018870847, - 0.04688368498715176, - 0.043548530250602256, - 0.03447056439666812, - 0.07341461935638383, - 0.048608202366459935, - 0.07813899547930098, - 0.0786874315539067, - 0.04040372451631384, - 0.04460592071535972, - 0.040671451680386835, - 0.042957024464662784, - 0.048869289850059235, - 0.05708096060073133, - 0.043726529327148995, - 0.05031590021749706, - 0.053506127935814926, - 0.04123621452119458, - 0.04911400232650132, - 0.041684219791582475, - 0.05446049351730657, - 0.04669609223170751, - 0.048775193740827075, - 0.04909357172788483, - 0.05179313978789203, - 0.045184900137765535, - 0.048287933268842544, - 0.04017724102464825, - 0.052715340485295144, - 0.04555117837381916, - 0.05699495705578539, - 0.05586348151315418, - 0.05367949671324828, - 0.04636808152095286, - 0.046407312047679304, - 0.03826148153903793, - 0.0696519281499724, - 0.05812090497565158, - 0.04182839530346273, - 0.05912232450662095, - 0.06804411891048152, - 0.0367365495751434, - 0.057018806186482154, - 0.04340213218647835, - 0.03716718562602674, - 0.03956188885070324, - 0.04261984449766417, - 0.04917498832577447, - 0.04243490161172254, - 0.03372171904753949, - 0.04575458048772836, - 0.04167401260170441, - 0.04769462450002315, - 0.057182241889772216, - 0.05940052910230576, - 0.04510844235121188, - 0.040385995404501336, - 0.052755697826954835, - 0.059851921765633406, - 0.04280675056984417, - 0.05383442109435847, - 0.04682816247147161, - 0.055943038904316456, - 0.05445656059523424, - 0.05027289654430049, - 0.05545034535957407, - 0.0471810917148988, - 0.04487498087104186, - 0.04916673127653484, - 0.0461049983317569, - 0.04178706160699023, - 0.032084805767687505, - 0.037293568610306894, - 0.04691436507538572, - 0.05287457942291633, - 0.04640971552185341, - 0.05450381911164765, - 0.0538522529650941, - 0.03842062698381485, - 0.05431163716294959, - 0.04565825539722894, - 0.04375638065280106, - 0.04115854636660161, - 0.04640133947205714, - 0.04883238680055009, - 0.04200434421072424, - 0.041113861176298616, - 0.060481979976558374, - 0.06664146149982662, - 0.0425210624692373, - 0.053222199959759714, - 0.04415581631790745, - 0.0454347620817899, - 0.0357839823458865, - 0.04825597781355412, - 0.05135363638203477, - 0.03272902907911413, - 0.03616902489920735, - 0.03652870527913539, - 0.03959018501314598, - 0.04841746193606536, - 0.048138770410856624, - 0.04658537837415096, - 0.04380604538622664, - 0.04605588574005076, - 0.046420700446828694, - 0.044518115907289345, - 0.05350102707269899, - 0.04156527516254633, - 0.05560436976852205, - 0.061115725168806784, - 0.04574891902768442, - 0.04631885221502487, - 0.040443898712623945, - 0.053165140099597746, - 0.0519848136742911, - 0.038915127917608705, - 0.056687824693262535, - 0.049605455569707003, - 0.034396536168373425, - 0.03607748443288948, - 0.04569795652394313, - 0.052770535043131096, - 0.057825845298269445, - 0.04815771379199421, - 0.046882078067557904, - 0.03906923605752146, - 0.04974451660994255, - 0.039085489918456416, - 0.06046186809166926, - 0.047656381942513426, - 0.028680491365498415, - 0.054225568443402476, - 0.04109005701113394, - 0.04266409161354046, - 0.04323944883317749, - 0.040042198317304024, - 0.048689408848855434, - 0.04306236302539044, - 0.036185386355053015, - 0.04466994764478517, - 0.040104495979120955, - 0.04587505768158649, - 0.05251171043778723, - 0.03884941918263268, - 0.04369003568710325, - 0.040767019320270506, - 0.04246842400571565, - 0.04094217114555028, - 0.04772783337941833, - 0.05614695899227317, - 0.046537622412221216, - 0.047488396037588324, - 0.048897390655848916, - 0.04528062028481027, - 0.04722117635703292, - 0.047686948212760594, - 0.05636009543641411, - 0.056996558657199894, - 0.05795285512246503, - 0.043798046501330685, - 0.04570146283302756, - 0.05605436294584923, - 0.0525539076291988, - 0.06080265743104292, - 0.05680549123492636, - 0.061653176208519005, - 0.04744864232821079, - 0.044355650414270496, - 0.045287943429396335, - 0.04323283945477862, - 0.03880293076783906, - 0.056002605245825406, - 0.048969246699631444, - 0.045215749488491115, - 0.04859945718803275, - 0.040958260195499925, - 0.05648210572275845, - 0.043444613964106586, - 0.04068924977157242, - 0.044178202538501216, - 0.056435277637704756, - 0.042740095083000876, - 0.05433246403360874, - 0.04321948823531292, - 0.046870705207375456, - 0.04111962826566835, - 0.06023381830630128, - 0.05830561124692543, - 0.049401497064858704, - 0.05719904646301174, - 0.04864317873234095, - 0.05131348868967643, - 0.04536546178355216, - 0.04478327338239299, - 0.045758827736668395, - 0.0478688772213072, - 0.06657195925456617, - 0.04230738103616888, - 0.03905773680531692, - 0.035404196674454394, - 0.03960596290980635, - 0.03420966577684959, - 0.048339291154039656, - 0.05099134581702703, - 0.05955585737223179, - 0.03696448242791555, - 0.045362761917818975, - 0.04318721579530296, - 0.045338684781297746, - 0.041080484097394364, - 0.04346959685404912, - 0.049977926109039006, - 0.03586412244066536, - 0.05469874442866761, - 0.05207380458368625, - 0.04006609863557105, - 0.05314248533371715, - 0.03933387173620377, - 0.05645668486257704, - 0.06016456443707841, - 0.04520210589821656, - 0.045139020473930196, - 0.05434719845106097, - 0.05461428291683258, - 0.04610367046496316, - 0.04590874832237195, - 0.04925740770406193, - 0.05554892197575927, - 0.04705560629859055, - 0.05361230648488316, - 0.05250290833587349, - 0.04351225936770761, - 0.04907472564041366, - 0.04513440434832228, - 0.04768930796768678, - 0.04457158926237025, - 0.05066737484798308, - 0.05247742719171246, - 0.055106731159311376, - 0.04487240421197394, - 0.043277742399598806, - 0.06319656720848697, - 0.0430796404248105, - 0.06245935926551964, - 0.04094606070890108, - 0.0433893516441253, - 0.047259858723496535, - 0.04512959453561845, - 0.05147193750539993, - 0.05748948229045005, - 0.04868686186120547, - 0.047982379199055694, - 0.046506923060841095, - 0.04028738079348582, - 0.04090461259859882, - 0.06035048413863904, - 0.05134265261751484, - 0.04938200269947508, - 0.05368744963737175, - 0.05179369205342502, - 0.047970003862053315, - 0.051251507438869144, - 0.040385477381547845, - 0.038544521027396944, - 0.03863724408242157, - 0.04327676866815397, - 0.053044824103908976, - 0.05001969535974299, - 0.04692377434347085, - 0.06197876793370873, - 0.04575419227317757, - 0.04255359654435863, - 0.04380377427630778, - 0.04294611548290331, - 0.04591996844989144, - 0.04410787989354845, - 0.05062589489144483, - 0.04848043553180592, - 0.045245018235676816, - 0.03686114254426868, - 0.046158450781960354, - 0.036868076385671585, - 0.04369118281982312, - 0.04707853351022492, - 0.052518759273106355, - 0.04861176647741809, - 0.052139485321382684, - 0.03608960160311182, - 0.03815721873981822, - 0.048090077389536606, - 0.05621776295833748, - 0.05640961315509131, - 0.05346362169751733, - 0.053409555516309264, - 0.05769264809090569, - 0.04179747304412578, - 0.04907921728790329, - 0.053275740397077956, - 0.041553389120236234, - 0.041698789487109394, - 0.042047737912331094, - 0.05275627111700688, - 0.04961755938992219, - 0.048172406130208366, - 0.05086036652305327, - 0.05379458506364471, - 0.0407213034586161, - 0.05260180123381143, - 0.04114244668194272, - 0.0504791750484556, - 0.04772365975767298, - 0.05843564250344574, - 0.052007178957407016, - 0.03579338450358652, - 0.03636825761995947, - 0.042776754397923424, - 0.04676351647146359, - 0.039316268471754484, - 0.04422959254924059, - 0.04401073617552463, - 0.049832240865888326, - 0.05002647887434212, - 0.054809442901715626, - 0.05177600360733348, - 0.05424491217506015, - 0.06461119046880262, - 0.049454491477462434, - 0.06986145776346796, - 0.04624864167497032, - 0.04043912499399973, - 0.04296460164016381, - 0.04612000200854212, - 0.04121947957914147, - 0.057386799251917774, - 0.05804380763845617, - 0.049085675556496934, - 0.04416682254649753, - 0.047730145086366284, - 0.04680524629136765, - 0.04235640088295605, - 0.054827999209581625, - 0.03200191856723676, - 0.037155074711520734, - 0.05403148594564398, - 0.04423751625011444, - 0.05676086132194598, - 0.04837193971048617, - 0.049806705170308746, - 0.05429401883236023, - 0.040717801228185746, - 0.05001439709487214, - 0.050358116610082514, - 0.04944523676348882, - 0.04137114343987118, - 0.04663023615897387, - 0.05794303017156121, - 0.04047986625260862, - 0.04261113997089011, - 0.04699377158752337, - 0.03976732261832585, - 0.03536345469468794, - 0.05315286999728017, - 0.05989695379864667, - 0.03343809316127747, - 0.04230500769637432, - 0.04166370880393289, - 0.0496174087663133, - 0.04696866258647493, - 0.03894280247174822, - 0.05229452818960248, - 0.0509749715852536, - 0.04291583537603695, - 0.04353539413870418, - 0.038026488466498254, - 0.047076795527976445, - 0.042439903168036794, - 0.0640653323716901, - 0.05282306645644211, - 0.0402108453126765, - 0.053093838972134884, - 0.05068278241672214, - 0.04133512156961884, - 0.04608608424417634, - 0.05054832059946768, - 0.04373614805905567, - 0.05120224295610846, - 0.044789372275101366, - 0.06572625826392452, - 0.044682007573566294, - 0.04677542098279923, - 0.03980036474710969, - 0.042273465911212324, - 0.045725310887910695, - 0.04593214602444651, - 0.0424223077973425, - 0.04622530157612599, - 0.05090434263968594, - 0.03815559364373887, - 0.048637055137382264, - 0.040380213540663686, - 0.04476436126395967, - 0.04541179119355231, - 0.05220301550733602, - 0.054198631757370976, - 0.042860851229927624, - 0.04510475872831312, - 0.041247087045226546, - 0.04584426879107185, - 0.047091685783050084, - 0.04335641150642756, - 0.0557887149091317, - 0.05548003731385876, - 0.046209757089583324, - 0.0443979982425408, - 0.046676376654935924, - 0.04569575661881936, - 0.06532799895266543, - 0.040524296038531415, - 0.04679485020662013, - 0.04550479953808541, - 0.041661926577202926, - 0.04126170640520786, - 0.05734395363500261, - 0.04654575946005172, - 0.04460907815436017, - 0.05794029900288434, - 0.04999865453560105, - 0.03975257088051427, - 0.04390688393974508, - 0.050266037104545636, - 0.044180638240714734, - 0.0564815750012424, - 0.036176705660358785, - 0.04634152279011468, - 0.041182793111794146, - 0.0482271213720084, - 0.03532504892793996, - 0.036479260371434084, - 0.044175143660056385, - 0.03736631349869829, - 0.04567621798919364, - 0.05198506246090829, - 0.06190259782392689, - 0.05726039900515001, - 0.05799084921810899, - 0.042735618049451654, - 0.049930911527101336, - 0.04276718670578264, - 0.047960119248256314, - 0.04148329280476184, - 0.042999951178481724, - 0.04291186658564973, - 0.05122869403021792, - 0.04988650268783095, - 0.04395039458587133, - 0.0481758633185683, - 0.04396876859920794, - 0.03829740305505325, - 0.04240565002642912, - 0.05785852815123139, - 0.05192826062967614, - 0.05322273723485788, - 0.046375438872922906, - 0.045031070418207274, - 0.045815612875703814, - 0.04443799111836076, - 0.044864026668395764, - 0.036270921694496076, - 0.05399753352783537, - 0.057010674355269984, - 0.039395605932662385, - 0.05538941763094209, - 0.03697608417834186, - 0.04361985376731791, - 0.03442006902689799, - 0.042000220882888836, - 0.04110081225637483, - 0.05785254025515716, - 0.05778195776912729, - 0.04724833346204761, - 0.0554245715528635, - 0.05474378401715985, - 0.052040052712744964, - 0.042450793602115594, - 0.061462922737942016, - 0.05998846569389644, - 0.05042025398983899, - 0.05933302449693207, - 0.06315140628042887, - 0.04890105382758319, - 0.03483780644556456, - 0.040801597964550664, - 0.0524107918226648, - 0.03874562987544074, - 0.04572451567153369, - 0.0520574596509841, - 0.04496688733701621, - 0.04877149635951016, - 0.04263381121402328, - 0.042998839930084166, - 0.05714560695769925, - 0.04310166480346725, - 0.049696393033464244, - 0.03290698140452088, - 0.05365520457122957, - 0.0498739330452114, - 0.05191005380512699, - 0.04428698866721481, - 0.043663958571208306, - 0.03762784029713403, - 0.05775341932142223, - 0.048002452854571, - 0.041378174737000825, - 0.050724557795675536, - 0.04389334487306989, - 0.04100541113923547, - 0.04378783460067459, - 0.05202196305782533, - 0.05140880175438034, - 0.05165308485435362, - 0.0499602277887575, - 0.05147995089997032, - 0.041099942921070914, - 0.051893622683646334, - 0.04103697895442753, - 0.04269608395978861, - 0.04896380749228725, - 0.04175137260920783, - 0.05920757762878791, - 0.042203397125505644, - 0.040745449616069095, - 0.05576332889698619, - 0.04560145290780808, - 0.04250352477428123, - 0.04923754574432666, - 0.05785311255781027, - 0.052893636797572634, - 0.04959123895679792, - 0.055852423421013035, - 0.04072288977260321, - 0.034672438735676187, - 0.057205240013033225, - 0.04391483210306333, - 0.05626356832154267, - 0.0522232878527108, - 0.05626886246759492, - 0.03945409289402189, - 0.04072894109446605, - 0.05070991748871805, - 0.0471228754754204, - 0.05382386290349609, - 0.05021737477540941, - 0.043190328364198095, - 0.05660002759855584, - 0.04937349829133447, - 0.05346400471148248, - 0.04851124761310344, - 0.04061791378808734, - 0.04641360422932761, - 0.04917959231597474, - 0.04604791079459375, - 0.0453593448104207, - 0.0605536283728905, - 0.052949443525985566, - 0.05618430476328834, - 0.0427252935704812, - 0.04677666551687779, - 0.039435213318812286, - 0.04202759284605368, - 0.05075545035946685, - 0.043918064314893514, - 0.04687099519929931, - 0.044455023664453926, - 0.040311948927112644, - 0.04469523304184593, - 0.04152744635274288, - 0.05182345927963355, - 0.04926776010598158, - 0.043169011044947, - 0.05520264456112237, - 0.05102527531353785, - 0.04297837653121442, - 0.06261213462238335, - 0.036348180406330415, - 0.04084743962553693, - 0.053308746228837744, - 0.03353299144492987, - 0.04717530231826949, - 0.04411254094556778, - 0.04337743339904886, - 0.058840476232693915, - 0.054086211470849965, - 0.03637502644887204, - 0.03211001951470672, - 0.03952575256718946, - 0.0477381242391788, - 0.06011803249738842, - 0.03505611171279328, - 0.057099964111329254, - 0.041729610019150785, - 0.044430949263484815, - 0.03785216283456068, - 0.03862147506165878, - 0.043890756106627925, - 0.043569546931090136, - 0.04973273879569603, - 0.05110722365016828, - 0.0433314740430893, - 0.04207567663727405, - 0.06289119973815135, - 0.053127149046501766, - 0.053132886449126004, - 0.04397529597045265, - 0.04458073149426708, - 0.05381911169775129, - 0.05453945256221657, - 0.0505581249789816, - 0.04639388204885656, - 0.047507318014442954, - 0.05444304955998476, - 0.04849218378346987, - 0.056958706395174905, - 0.04964347461941846, - 0.05117653664379466, - 0.06202235144065751, - 0.04884043475927175, - 0.05835898349468493, - 0.04217945379386823, - 0.036091423738126564, - 0.04838987044868723, - 0.045468526836506235, - 0.048764746583706824, - 0.04491629854245013, - 0.044249884602015586, - 0.05513703928089499, - 0.05600986770389472, - 0.04844299754206656, - 0.03700439204483208, - 0.04530845095572867, - 0.04014888834995671, - 0.04248648887709207, - 0.04713937750398385, - 0.04664385516104081, - 0.05294558423540831, - 0.046906849664586865, - 0.03943713236927339, - 0.04927046827638293, - 0.05631763599235441, - 0.052532251752831056, - 0.05867998659797951, - 0.062049378562870884, - 0.0501618034946382, - 0.05984043528599731, - 0.03820420542989037, - 0.044556559691165884, - 0.044023330812217515, - 0.032573987556387095, - 0.05481704823132747, - 0.0439381113173763, - 0.05905006105482992, - 0.03808191562804516, - 0.03977499281937636, - 0.04650305624637326, - 0.04945800021820186, - 0.04492684354572989, - 0.04898059754918318, - 0.04396451665208113, - 0.0574389195951237, - 0.04587476607708532, - 0.04493182200632909, - 0.050609736598461054, - 0.06277901062998731, - 0.06577051482025975, - 0.044305881839782874, - 0.061755401800164963, - 0.04621296784854992, - 0.05973149635394631, - 0.04800767738726555, - 0.04426086026634424, - 0.035318121865415164, - 0.036185204393720805, - 0.04339740064863543, - 0.04786599644695777, - 0.06737311675263873, - 0.053928326266108474, - 0.04742947765348444, - 0.04402808666295637, - 0.055311779712387855, - 0.0429225543052026, - 0.037119382269978234, - 0.043371766244383776, - 0.05346623594050158, - 0.057400024603948344, - 0.03961542716481083, - 0.050674647779931414, - 0.06285929200674478, - 0.04660775019944077, - 0.04653540105366337, - 0.05366790651704222, - 0.04546737484904722, - 0.047394720817434156, - 0.03598621395629978, - 0.05596205280905335, - 0.06633415034356747, - 0.04176333271875293, - 0.05616107878503158, - 0.04360750050555715, - 0.04914529902074607, - 0.046591514064767595, - 0.05409252570150727, - 0.050456208260174905, - 0.05459381516059144, - 0.0494417806500943, - 0.045568833616770936, - 0.03766512790299995, - 0.047958676986229826, - 0.03464169704307011, - 0.05436555425230342, - 0.06043776118308529, - 0.05175899587027639, - 0.05150758266642091, - 0.042718876670129, - 0.038404234791156365, - 0.03923527879745506, - 0.044512748268669786, - 0.060480302528654946, - 0.03807540230504776, - 0.04760610900934421, - 0.03590984881548774, - 0.042279984093456284, - 0.04140716518258503, - 0.06572985319553676, - 0.04939430485703083, - 0.05408294880941726, - 0.04309681155109773, - 0.0487366328075304, - 0.050827737193938835, - 0.05875235491683055, - 0.05737774884690356, - 0.0679106511931804, - 0.055037541658784384, - 0.03260301115101365, - 0.05064115025168984, - 0.04370741291711643, - 0.046164760644588396, - 0.03672086667942661, - 0.05151618714882064, - 0.042070826842556926, - 0.04712800515051233, - 0.041953230305767635, - 0.04414836424833638, - 0.04843398194845319, - 0.06424038483297502, - 0.04691612223842912, - 0.043407432868670465, - 0.04498697735312419, - 0.05125246405619212, - 0.05124850434854212, - 0.04359246054175116, - 0.040859337792068205, - 0.042449182151659534, - 0.06351366532214513, - 0.04342104172213433, - 0.046574567919668707, - 0.03767019000990029, - 0.041015701712050275, - 0.03656191694174398, - 0.04444853765099248, - 0.04776375220578255, - 0.03604733083198121, - 0.043832570211163505, - 0.058693673525031895, - 0.0393472405468508, - 0.05033653550329106, - 0.05188631308868182, - 0.0510054170595725, - 0.042191582115680935, - 0.042305506473340096, - 0.04249235058632648, - 0.04499126882092429, - 0.06858167100233967, - 0.0571310022178983, - 0.05202404843433119, - 0.04770758073332324, - 0.041976565608359134, - 0.03966456948397224, - 0.05637607961618944, - 0.054777034690974453, - 0.04025053660032351, - 0.03754872390065741, - 0.04164617898722344, - 0.05826887746449647, - 0.04718873222309743, - 0.04475513783000174, - 0.04730947697053987, - 0.055319832068889116, - 0.040420474210416814, - 0.05493106229650127, - 0.04316908431329987, - 0.038030427496086525, - 0.04290647180600535, - 0.056278468381612254, - 0.03861616910370165, - 0.05287450651902311, - 0.055981836163191905, - 0.05103232472019621, - 0.0494906292193737, - 0.03627821022885768, - 0.033139515018464606, - 0.05751828075446349, - 0.058671528085037956, - 0.04289386431764102, - 0.0420046979496406, - 0.04716678547983969, - 0.03859371479912548, - 0.0330171000918728, - 0.05065053457175467, - 0.04381267770932197, - 0.047886332058793446, - 0.054226855066812456, - 0.042782371005800374, - 0.05792073126567859, - 0.042306173214258024, - 0.04520723926584967, - 0.05089278918711858, - 0.04828629186245337, - 0.03618126947802187, - 0.052396269824682935, - 0.06884792101500686, - 0.049857900114039365, - 0.03559579438150849, - 0.04420274242013429, - 0.039481989834523376, - 0.043357778153414364, - 0.04509575582692003, - 0.03678474030862691, - 0.04982041445851908, - 0.043216715277864255, - 0.05247159164685143, - 0.04855178409186416, - 0.03761421312704718, - 0.05230466747318377, - 0.06362059885592158, - 0.045376965805860515, - 0.057562785126628, - 0.034950368802925534, - 0.05476365894631881, - 0.042257600584041426, - 0.05220510623343491, - 0.05056879224962813, - 0.05625302161968986, - 0.04334562421394376, - 0.03939926711605401, - 0.035322657311447056, - 0.039055482501705936, - 0.046592454488677854, - 0.060404231220003005, - 0.06354484807829117, - 0.04687695023235121, - 0.0390404494323768, - 0.047797643634685694, - 0.03953790160686841, - 0.04336323574969402, - 0.0608377394028468, - 0.04386302376965523, - 0.053227893133682924, - 0.03283716037830664, - 0.04303256218110212, - 0.0426875079363669, - 0.048137241132102666, - 0.039716835530342665, - 0.04891519034944567, - 0.050508803464968326, - 0.056511422020163606, - 0.039985750440011694, - 0.0475117917183032, - 0.046847632346750524, - 0.040462631804637966, - 0.046959545601604494, - 0.042323902397559024, - 0.04218636641703128, - 0.04414405687338201, - 0.04524274698834125, - 0.045696815844324196, - 0.034026538791187555, - 0.05043988872935453, - 0.04425121278151739, - 0.04320960497865022, - 0.04261598438827555, - 0.04807673314814083, - 0.0427856836960044, - 0.04576060550980027, - 0.048193406858665896, - 0.06262640767835205, - 0.046369867515178805, - 0.033973532770251676, - 0.045803455325602774, - 0.03768055470487056, - 0.052232398214044795, - 0.05943908901696813, - 0.03725110934339498, - 0.05462902641311595, - 0.0415189563697244, - 0.03677277828218238, - 0.04407444577271823, - 0.0350248816686538, - 0.04184152629984229, - 0.04569613402924549, - 0.040131698586025034, - 0.04703824485031036, - 0.04111108099832736, - 0.04743604216592593, - 0.05495883365513668, - 0.0497344462693304, - 0.054813515753386846, - 0.03874291566558365, - 0.05634785835646233, - 0.0467089606181833, - 0.054881587385252104, - 0.044517386019569824, - 0.058145012464513375, - 0.0521625612998374, - 0.04746728875830948, - 0.06203425650139498, - 0.0462740093557928, - 0.04211349805084006, - 0.04230619572637933, - 0.0569769729882322, - 0.05787487167332255, - 0.043250133867501935, - 0.04972866326191947, - 0.04840274324327517, - 0.047792875948005964, - 0.03330540228750913, - 0.04859840793376147, - 0.05554621046570872, - 0.035190341954717326, - 0.04492792749321017, - 0.05521223261221484, - 0.06164908423081726, - 0.04697899094221001, - 0.0526074589906842, - 0.046380488908744494, - 0.04216359316658129, - 0.046504161221794675, - 0.046633601608882254, - 0.04125484273871232, - 0.057537171040749485, - 0.046266601762469356, - 0.05361804942973813, - 0.05519598535489729, - 0.0413464063871948, - 0.04681081817686964, - 0.06398786182073903, - 0.06605857907150756, - 0.04916005352019398, - 0.04984865594888656, - 0.03559016323907974, - 0.03831584502726281, - 0.04263045649694092, - 0.056124948188677706, - 0.04365136381986687, - 0.05904512158341727, - 0.057383145989096086, - 0.05136314526772132, - 0.04902118154220604, - 0.05218304377112596, - 0.04793651610803297, - 0.056471691607381955, - 0.03959211387531046, - 0.05379992648371163, - 0.0368933314435969, - 0.04513361476320178, - 0.052322058030247615, - 0.042924166765421316, - 0.059013155319361243, - 0.0481915439259094, - 0.04312549649070946, - 0.04715940027179505, - 0.052908478782475774, - 0.05098408318014629, - 0.04425763187503133, - 0.05863938857433213, - 0.05169526136321332, - 0.05222007644542685, - 0.036908016408564955, - 0.050754525437153336, - 0.03673296042623195, - 0.06731743867789967, - 0.0356303262901905, - 0.04461455220368291, - 0.04842632167252105, - 0.06816399627915004, - 0.05530668653207681, - 0.04906508335365652, - 0.0486409484213702, - 0.042904763081316494, - 0.05526780422531098, - 0.052258192891629605, - 0.03614453475840298, - 0.05321191623779511, - 0.058495515686600566, - 0.0490344364530544, - 0.03965678311604806, - 0.05174700631582355, - 0.04460362991885514, - 0.04864398598239692, - 0.03706217733658403, - 0.04023138824567625, - 0.04386998980170378, - 0.04992045307268201, - 0.05553611057707237, - 0.042155127544972165, - 0.06504664975407128, - 0.04785683020647604, - 0.04611281062249106, - 0.04285882988204943, - 0.05094584985009834, - 0.04484412596883621, - 0.04580422068510799, - 0.05826012172778541, - 0.055343648499562005, - 0.050254822813291515, - 0.05994998317129713, - 0.058891421555581934, - 0.044012898516968685, - 0.04923680386421548, - 0.03993156836385871, - 0.0358845300892338, - 0.06012094540507879, - 0.06290788758652525, - 0.044205233924335015, - 0.03583037420431373, - 0.04825955873129979, - 0.054180251810193356, - 0.04760499080283765, - 0.0437811766441498, - 0.044145554770392594, - 0.0555765519576011, - 0.049934897446132415, - 0.04872970242650682, - 0.03742265405573323, - 0.03474241755633976, - 0.04540414096724464, - 0.04072795862130953, - 0.04208407040178872, - 0.03794895568350401, - 0.04006447209893035, - 0.051348748243049656, - 0.03767328152022021, - 0.04746557211956246, - 0.06067445526995815, - 0.055058861509637645, - 0.05156144226348737, - 0.053109009351827066, - 0.057287352207092496, - 0.043208507062673304, - 0.03243844961505896, - 0.037906731848590655, - 0.047069389534548194, - 0.043857617255797475, - 0.04947561520459175, - 0.055249967246046555, - 0.03515229539794841, - 0.04215477425436693, - 0.06648452528841878, - 0.04265178406411677, - 0.054578913281480006, - 0.03654241173272295, - 0.048953494543584004, - 0.04742291896037469, - 0.06324650083949343, - 0.04914470693801089, - 0.04801567499907697, - 0.03988549892000551, - 0.05332357286882963, - 0.047375804018976175, - 0.05370521156922213, - 0.04578825274466908, - 0.059335351886337116, - 0.0428039540373632, - 0.040090076774157456, - 0.04368526920813591, - 0.03841780959966257, - 0.03620039127549334, - 0.0428400417632794, - 0.0546265444263923, - 0.048718745392132834, - 0.0369765246637241, - 0.03937160492994164, - 0.04426243224176914, - 0.0537701599920759, - 0.04578327121210688, - 0.0425012979807115, - 0.039695645006787274, - 0.05526186667052397, - 0.040110682294041626, - 0.04601126443777899, - 0.04256194684720701, - 0.0457970536693166, - 0.04689618065998812, - 0.04239939845881404, - 0.04513152995402943, - 0.05990613331070566, - 0.04125757566498379, - 0.05605678979189463, - 0.04959763436084829, - 0.04838954039173823, - 0.04786545564076041, - 0.04599662686479921, - 0.049455538091688976, - 0.04944573008064038, - 0.04055242907853441, - 0.04825407545091852, - 0.059515847068862544, - 0.061091976636533485, - 0.054994107592407686, - 0.0426349318552259, - 0.04329102080434317, - 0.04113478079437011, - 0.037180892540649074, - 0.035954959362192986, - 0.043899139584349746, - 0.057948941011026066, - 0.06757860835322367, - 0.04169760519111438, - 0.04448922355754548, - 0.042144018013517304, - 0.037287854148076824, - 0.04773483293993403, - 0.04775383484088414, - 0.05200598231519514, - 0.059047002002730616, - 0.052953738857446545, - 0.04622266621805177, - 0.03938612794921115, - 0.042101780084209124, - 0.06181392600239628, - 0.054291871095128515, - 0.051840253635106755, - 0.05384740039462167, - 0.053251074050185115, - 0.04006345362635703, - 0.06364793355764065, - 0.0464857491402962, - 0.047290830698043226, - 0.04631400399312913, - 0.045462391210801596, - 0.04203906496956101, - 0.04138218932175862, - 0.062425669101963316, - 0.040799750833081995, - 0.047338883885688486, - 0.04251055870054614, - 0.04698918192102758, - 0.036944048468342094, - 0.05734439357605771, - 0.05344404908088298, - 0.04109970729575912, - 0.04457816901546422, - 0.05806796234556815, - 0.04980682684802249, - 0.05408362179241901, - 0.04837992047609728, - 0.053113018381589126, - 0.04130227141865702, - 0.054255596779109835, - 0.05168473027644308, - 0.04226899920440337, - 0.051049777758840585, - 0.0389470980206883, - 0.047840999550941156, - 0.04510053656997917, - 0.04968170460064708, - 0.040425435042911774, - 0.06878661624812953, - 0.03887918152834854, - 0.04902033803765942, - 0.04843383661240512, - 0.07386380185223937, - 0.045705198992321436, - 0.05665667377655757, - 0.05082880163759385, - 0.048429087103657516, - 0.0437071065810053, - 0.04338188540898233, - 0.039734449666482555, - 0.07102822037635982, - 0.05741759723158843, - 0.03637022353706816, - 0.03814657388458158, - 0.056330964258302064, - 0.03925119414720808, - 0.04601654163077999, - 0.047671145056778774, - 0.041195335067937634, - 0.04946483445912427, - 0.05020944979623633, - 0.03571298274220292, - 0.04597099571140501, - 0.04468969073572056, - 0.035915247125565264, - 0.042811791469012046, - 0.058349797025750556, - 0.04596477815918578, - 0.052769321571505656, - 0.03730885359888619, - 0.04308650541034853, - 0.05392659712463201, - 0.03753256855924945, - 0.04499174520858641, - 0.04236816525713919, - 0.04868223037499513, - 0.04887127701201549, - 0.041864132079663906, - 0.05371205157910611, - 0.05241707965607122, - 0.05153745718312315, - 0.04566272166764794, - 0.049117252241433415, - 0.05005725782206036, - 0.05049077657757789, - 0.04048283715041154, - 0.05856264806372259, - 0.05164799134591465, - 0.04377400708114015, - 0.0399450350969828, - 0.044653278471347035, - 0.04155255549344088, - 0.0407450823212751, - 0.054110416952239476, - 0.06803377623072436, - 0.05352024874067877, - 0.05001794315777851, - 0.054043860942644226, - 0.044279343135082444, - 0.04460562862808357, - 0.04184621667879842, - 0.04328944850944636, - 0.046771285324445445, - 0.061282674962375376, - 0.04166356125602875, - 0.041734444132411896, - 0.0589513632099029, - 0.06330840638462719, - 0.043248897656031675, - 0.0453942640179068, - 0.04005590573412597, - 0.04615465334338391, - 0.04528574210384689, - 0.039603375919720935, - 0.044735059679512613, - 0.04518907729239167, - 0.04068637125179459, - 0.05972527301991484, - 0.047032540816702516, - 0.04218091004978907, - 0.05093902160902577, - 0.04041208667613572, - 0.03468330931536922, - 0.05106041666870246, - 0.04108466603940163, - 0.04754299530686069, - 0.04306386876345641, - 0.049299272512665554, - 0.05690116524305421, - 0.04148026995925036, - 0.05174534212992847, - 0.04220906064300738, - 0.0438742039560633, - 0.046142107383405837, - 0.040437993041242515, - 0.041089312593477395, - 0.04508476957042117, - 0.051229891878816436, - 0.05218491357370344, - 0.04297875624715028, - 0.047862133307392064, - 0.041892183120899436, - 0.04375903214123718, - 0.04490295268195692, - 0.04764725784698698, - 0.05767326743995693, - 0.050419090400836614, - 0.04294503112900047, - 0.060569018498760015, - 0.0510746841926402, - 0.03776776921960423, - 0.03803570892969716, - 0.0351445175102568, - 0.06437563834717686, - 0.05907050143883299, - 0.05364376202936839, - 0.03989989394753165, - 0.0470280099443995, - 0.04782088279335049, - 0.05061220067326675, - 0.05374674613254702, - 0.03797933892455538, - 0.04237457610113851, - 0.045037218758090906, - 0.05143638324484237, - 0.05010665149883496, - 0.04106282762437879, - 0.05095826909884336, - 0.0429504648726479, - 0.04656182908343431, - 0.04869726700957265, - 0.04272960468393564, - 0.04139897647447378, - 0.041337349297154, - 0.04253604729538405, - 0.04966939521181416, - 0.060469018558908724, - 0.0534671441317615, - 0.06265845353026477, - 0.0524454556797658, - 0.043019933270627676, - 0.04940303134709455, - 0.052009469601218425, - 0.042774797891204835, - 0.03861214490912722, - 0.03809715941639505, - 0.04631427804102319, - 0.054706883667517824, - 0.04241850583065179, - 0.05255607605764991, - 0.046781598429850954, - 0.04955142542832555, - 0.05176023752836593, - 0.05712634317502108, - 0.04229050987421566, - 0.0427361507552598, - 0.044281569683408774, - 0.05134523931617235, - 0.06225723028097367, - 0.0405642460378822, - 0.05195837692000081, - 0.05166091552071544, - 0.04443949575068034, - 0.04234996913660007, - 0.04534592579583411, - 0.04960549063305077, - 0.042142841283766004, - 0.042016961004775, - 0.04766259607717522, - 0.0447712070912775, - 0.05190945692274449, - 0.044454724648322064, - 0.038881835943932734, - 0.04942916078225155, - 0.055689667791574526, - 0.051749596435637105, - 0.05099689952040105, - 0.0509052217255895, - 0.04364974626015123, - 0.05447185408527654, - 0.048120005837403446, - 0.038437903731899516, - 0.071307566599044, - 0.05343964574137618, - 0.05528739081963561, - 0.060494443741161065, - 0.040257220103254214, - 0.05162858297296204, - 0.0424721578927322, - 0.042931708265973596, - 0.04958079477634969, - 0.055957598652260195, - 0.04884706101038645, - 0.054773344346059044, - 0.0530828727131479, - 0.03592268857201729, - 0.036923600981854425, - 0.044220525552746644, - 0.07252418244211564, - 0.06304989353253143, - 0.057261760413464195, - 0.042409078533132825, - 0.04583780713614388, - 0.04755484561979585, - 0.062189900926267125, - 0.04987229882041822, - 0.03614690674550928, - 0.05516923487008347, - 0.04055842173406077, - 0.0457340598457906, - 0.037676316957872054, - 0.04615935896225129, - 0.05249252331742938, - 0.045952156480937194, - 0.04438206567426491, - 0.04857174408898575, - 0.06048416454330738, - 0.042315804548374594, - 0.0631682139806002, - 0.03870604204646068, - 0.05202248103271975, - 0.03942358598316697, - 0.055503753728492464, - 0.04579782840608372, - 0.03710092013057254, - 0.039371185106384654, - 0.048862571828600085, - 0.04324471087334734, - 0.051017377643596616, - 0.05968459691938781, - 0.05236858524171953, - 0.035904636033202694, - 0.045489459020350176, - 0.04732962957302374, - 0.052434100312127446, - 0.0385589566256601, - 0.053260652840184886, - 0.03901368748387379, - 0.05806721526357061, - 0.043159463690590705, - 0.05944732043664209, - 0.05035018879725318, - 0.05992485353352012, - 0.046105914474083035, - 0.04669167780956316, - 0.04752354662175358, - 0.04513705304438322, - 0.03786922692625432, - 0.044053116623249455, - 0.04539615103218803, - 0.05877062867867689, - 0.06096582017448147, - 0.052493367988293425, - 0.05225853959379675, - 0.04360973136649633, - 0.03409651742332684, - 0.04484490443217185, - 0.04719938702993063, - 0.0502614413866207, - 0.06188801089918085, - 0.05060215547940485, - 0.05252712591936159, - 0.040734787809230066, - 0.046133056401160305, - 0.04027284006150872, - 0.036464860164599606, - 0.047947628176249875, - 0.032077891444023385, - 0.042476768520507975, - 0.046581681515286445, - 0.057830479124040386, - 0.04211444421185708, - 0.05393927085759225, - 0.04145312985445342, - 0.05151640271972396, - 0.0606992561640584, - 0.04354702225950365, - 0.04374875067103509, - 0.04530116183140185, - 0.043163014042474, - 0.0458853338505274, - 0.05180926678836645, - 0.042789313673671274, - 0.051388635523324545, - 0.0591371353730517, - 0.04486880989504099, - 0.045457984306329705, - 0.052129852685818025, - 0.04494328914011072, - 0.04794480608095702, - 0.05234175571546186, - 0.04326769550476652, - 0.04612975856431912, - 0.04568923738468719, - 0.05035150925275602, - 0.037893490523089615, - 0.04178080540917544, - 0.04579937048568951, - 0.04449520352039599, - 0.03774595311553712, - 0.04184069250017938, - 0.047013498169760484, - 0.03929292307999585, - 0.05706090758806041, - 0.06346827821681685, - 0.04151084727366958, - 0.039632117259005194, - 0.041722073631548263, - 0.04913323382626192, - 0.04400309183516552, - 0.0635210030010057, - 0.0395365202364234, - 0.04317358959222876, - 0.03609674458695301, - 0.0410452139927769, - 0.053015368125657485, - 0.054044250074795866, - 0.05841870765919327, - 0.051116645743904746, - 0.054489716114177175, - 0.053614206991542124, - 0.055111266174951455, - 0.04677091344178135, - 0.051318167057318065, - 0.03530259505557265, - 0.0636132075513976, - 0.04985663950324243, - 0.041728764120656486, - 0.050786132652658536, - 0.057442763115693435, - 0.056109438683155446, - 0.04427215854509694, - 0.06061414874630038, - 0.051473993062995146, - 0.039483698723807595, - 0.040180594038648404, - 0.047496506083670995, - 0.0443460830205602, - 0.04855366778317779, - 0.05136305250111818, - 0.046085355132538586, - 0.03576917745252533, - 0.04177003438915603, - 0.0492311734749448, - 0.04954993185594121, - 0.04151003396255189, - 0.042489562212637395, - 0.04535940887653741, - 0.049135735208989624, - 0.040002808099643725, - 0.04134955643512541, - 0.04891856405813082, - 0.04405792478803282, - 0.04243598400776126, - 0.05203354903867043, - 0.049071647830508665, - 0.037087714818666, - 0.04356346391030494, - 0.04602503826995956, - 0.05186860154831415, - 0.040121872280518694, - 0.04613052800157679, - 0.042840155629626786, - 0.04852028141220721, - 0.047469723380562184, - 0.05544929375132456, - 0.05314954885147157, - 0.06485037642369094, - 0.041445194997386886, - 0.03485398251515345, - 0.05055299330925472, - 0.04711538475528774, - 0.044682142394317066, - 0.04614262745705624, - 0.03984844668813279, - 0.038095777706007417, - 0.0523318543470598, - 0.04331607753528165, - 0.03984725105445821, - 0.06195198816015682, - 0.03767758215430729, - 0.03633065698774481, - 0.04294272527617346, - 0.04206672160076863, - 0.06083280235321385, - 0.0597565374816646, - 0.06190609838285134, - 0.0503544182595303, - 0.047233431511101674, - 0.04245508576979893, - 0.04297853767318754, - 0.04425888942435091, - 0.04533618513181651, - 0.03990787938653717, - 0.04535267545842936, - 0.05318542130562156, - 0.043242271360638566, - 0.042094046382572664, - 0.046156818362199994, - 0.04643804169466081, - 0.03959013743290822, - 0.04209410908158571, - 0.053569287448019025, - 0.038388644904548845, - 0.052209414721835996, - 0.05275523175862682, - 0.04842932246458344, - 0.04641655426086471, - 0.048392427702787455, - 0.053873010639453905, - 0.04839213459607269, - 0.049450477173900144, - 0.05734389333012098, - 0.0473927184445526, - 0.05361028901072635, - 0.048811062909346295, - 0.041885734107351406, - 0.0530754437954454, - 0.054562950402638845, - 0.03740475030304335, - 0.04874536175282303, - 0.06562623643240846, - 0.048380331496390615, - 0.05982891196804998, - 0.04337401037489754, - 0.03718184657468515, - 0.05206712481098971, - 0.03663004925865035, - 0.042823489117016215, - 0.04640865084114397, - 0.0458800366456041, - 0.04718814810753958, - 0.04320176600413606, - 0.04496392208816763, - 0.04328451530162753, - 0.040096912508597315, - 0.053369332091182345, - 0.0416931569387571, - 0.036325786853524424, - 0.03596581136761816, - 0.06511904035475395, - 0.04425187690866195, - 0.05954830613753539, - 0.04796876841166046, - 0.040597903503740956, - 0.04383696385088573, - 0.048605712961428724, - 0.0425924516578524, - 0.04485679343537951, - 0.041909542470013175, - 0.038203963017809726, - 0.04164181340199803, - 0.053809615823273135, - 0.05926243519132813, - 0.03902737531711751, - 0.0451737621539335, - 0.04299377363421573, - 0.0436813797053973, - 0.06416697881385713, - 0.05495832191950885, - 0.04554918831990486, - 0.046678714633033504, - 0.03765363994957512, - 0.052138459001740606, - 0.047101967975726196, - 0.0599404143368685, - 0.047753154177745075, - 0.040389664791917794, - 0.052914660826225146, - 0.04565511371969979, - 0.04081902425345063, - 0.05618109696320073, - 0.03964455670636187, - 0.04734944029067924, - 0.04635754477276196, - 0.051574430354380967, - 0.046181341534192635, - 0.047131203735008606, - 0.05778043955812573, - 0.047980837489451256, - 0.04376499083290692, - 0.04089874126269233, - 0.05076510758029347, - 0.04328407166896565, - 0.03986409619456367, - 0.048884296674577506, - 0.04750652131346371, - 0.04405388332371472, - 0.047938300063814665, - 0.03963076016795864, - 0.04126769967898762, - 0.053422146149702344, - 0.04087360090006835, - 0.04001816006790368, - 0.051039536317675015, - 0.04724638988818354, - 0.07872087092794017, - 0.05146782019903365, - 0.039384450486675, - 0.04175195733000211, - 0.04970599117453747, - 0.05037169293372726, - 0.043616181648144424, - 0.05592667168822124, - 0.047213860431384855, - 0.03897027080736036, - 0.05421664832713986, - 0.04180480662433703, - 0.057422216304466665, - 0.05951119369708523, - 0.045208059588263225, - 0.03633627240944095, - 0.06312784669850609, - 0.042188603173885314, - 0.056158935606527405, - 0.04224231562271555, - 0.04463254994523448, - 0.05194109170997958, - 0.05757820817694818, - 0.047637356079600186, - 0.05153797794591071, - 0.048076874469505614, - 0.04235533824219648, - 0.041014741635788256, - 0.04859901562754219, - 0.0487061441506125, - 0.0482803113403777, - 0.041692070575651316, - 0.045226311540808604, - 0.054910066412180346, - 0.05355544214815669, - 0.039681818129946526, - 0.048073775127074114, - 0.04224583716336943, - 0.0377279259903047, - 0.039539248776849, - 0.058910336384707745, - 0.04688122638322483, - 0.04426989926011692, - 0.04855904842682103, - 0.06782937694454802, - 0.04240072451903733, - 0.04238131174305265, - 0.04448546771056725, - 0.04372481730879885, - 0.043155683758980115, - 0.05026184123756179, - 0.0539530139625746, - 0.05127088356928871, - 0.03968722659163126, - 0.046197384151000165, - 0.05421008208948345, - 0.0400688132881562, - 0.03598650597117938, - 0.04603898089418024, - 0.04572008803698416, - 0.055437075307004265, - 0.05892401819529806, - 0.055908335928853393, - 0.06018571462581798, - 0.055169970707905705, - 0.0500683814299129, - 0.047380635110714116, - 0.043863127113122784, - 0.05370686962040081, - 0.039319429164372005, - 0.0377228140754641, - 0.03952405994984326, - 0.04418603706918616, - 0.042154402141707174, - 0.05283791889710271, - 0.053880602723207924, - 0.05358344884630411, - 0.048215039451487744, - 0.048529468459367314, - 0.05486094867050144, - 0.049693120809606924, - 0.05668452504275475, - 0.054789125512486964, - 0.03845444017706385, - 0.06098413312643316, - 0.051636692616400214, - 0.04496334003102778, - 0.052378659076775566, - 0.04824198003612476, - 0.05145415319636563, - 0.054017179291725684, - 0.05447708666321827, - 0.058541040924319436, - 0.048096601186132196, - 0.04266948434247068, - 0.038948444591691424, - 0.035930223560017426, - 0.046410231933622544, - 0.03899629316125748, - 0.0461141548150915, - 0.050960670534564684, - 0.045362460724497906, - 0.05158305550180053, - 0.043250241514661766, - 0.051415981209577535, - 0.050878639285108246, - 0.04109931939586153, - 0.037412807604545746, - 0.05270981889275557, - 0.05443358438975171, - 0.05065444789686431, - 0.046706848461010274, - 0.044768316211677164, - 0.058145982991822824, - 0.05606613324735765, - 0.04971232501891713, - 0.04813485601138178, - 0.04160594524996361, - 0.03815071770954348, - 0.04359140853697433, - 0.04652924403235874, - 0.0325712333074626, - 0.032862662758599434, - 0.04373077064046131, - 0.06134154096316166, - 0.04379223995496602, - 0.04332240448614413, - 0.050139190371773036, - 0.052699837977352074, - 0.04510889817034579, - 0.04265603304453653, - 0.04170673783897812, - 0.04232320849125619, - 0.055012423427822234, - 0.05768765126946847, - 0.04145229782767767, - 0.042975319907060806, - 0.03863173469245788, - 0.047639641312972866, - 0.04073139009842745, - 0.04525227598660606, - 0.045472481874754195, - 0.04080234358260814, - 0.048780412678197015, - 0.04399608277469789, - 0.05223524446768768, - 0.04353611474664202, - 0.050788737569875377, - 0.04905588011857364, - 0.047796451993849985, - 0.044064694056823214, - 0.0502835533243391, - 0.04802827675640787, - 0.043170815103076035, - 0.043419710583372115, - 0.06750223543273631, - 0.0448304740786056, - 0.04834751001795019, - 0.0446446983885732, - 0.041841729045400476, - 0.03869954577785803, - 0.05358985995604451, - 0.05114849612201566, - 0.04498253534919977, - 0.04213706892238771, - 0.05673741417529433, - 0.039684813612966344, - 0.04696330315459289, - 0.038819360080261475, - 0.052157322424820886, - 0.0385592840316499, - 0.061936025435744016, - 0.04081658311634346, - 0.05775323347283624, - 0.033863167408226494, - 0.04327102690030737, - 0.04848995838074313, - 0.04552871473763285, - 0.050905152503047855, - 0.06028276243166407, - 0.06959143179049204, - 0.06818714221188636, - 0.04593681657993174, - 0.044343236690030555, - 0.04416325438140827, - 0.04502918628894045, - 0.055878743324987136, - 0.03826397437090716, - 0.037433776484764335, - 0.04837991978905064, - 0.053679326329810574, - 0.04400068422035128, - 0.047903375310872506, - 0.05302210961596527, - 0.05158075219957251, - 0.0590032596669127, - 0.05481598497059894, - 0.050840180974237585, - 0.051206144481102736, - 0.0457612674252055, - 0.0520535116353953, - 0.060357454090476326, - 0.05232122851517069, - 0.04131326062434771, - 0.043110978784885345, - 0.04728089779747378, - 0.06050605523315937, - 0.049862160347666, - 0.05210363365224394, - 0.04529898753405146, - 0.04145537708619594, - 0.0502713322245568, - 0.06092071194711039, - 0.04593578555839125, - 0.04035370018606783, - 0.05747768141328604, - 0.039669672932793006, - 0.04748699214793891, - 0.05140791179428474, - 0.04681705964058138, - 0.04866653491108728, - 0.047176944799446036, - 0.0518531710584708, - 0.047513452753573375, - 0.04781197449671618, - 0.0463178535679858, - 0.05501333902324939, - 0.04037297173571076, - 0.04227359798945074, - 0.05068432139758612, - 0.04217234535951813, - 0.053873261304389845, - 0.03769485020034311, - 0.04571668433987295, - 0.059965571892247854, - 0.04477967896998907, - 0.05061780825137537, - 0.050865428194936474, - 0.049676823005948, - 0.03471455729980282, - 0.04881759695823563, - 0.04331804939129366, - 0.04383039360684025, - 0.04458742320290588, - 0.033349967321806194, - 0.04874238260034749, - 0.040627953474829503, - 0.05601809011388244, - 0.04145198100039625, - 0.04168607384032599, - 0.05145595474894216, - 0.04207000022569021, - 0.04432292924743476, - 0.037683815698773916, - 0.047214091418078995, - 0.049321808779799754, - 0.04004524372694192, - 0.05110818647063024, - 0.048160791287983874, - 0.051841613017516545, - 0.040905953023739006, - 0.046979197731955934, - 0.036763702395623085, - 0.05011022747242662, - 0.048919309193721644, - 0.05886873087668726, - 0.0531091064752372, - 0.05591637949231668, - 0.03793043780924444, - 0.05604501489812702, - 0.07162725466545525, - 0.04268844853772711, - 0.04536482773032176, - 0.04740415653950028, - 0.050340229036270334, - 0.045057785620576475, - 0.0818342625842103, - 0.045569223418133256, - 0.05564874976916661, - 0.03678853313838607, - 0.036245520978249846, - 0.04896679193169422, - 0.04457890551048319, - 0.04319916278093405, - 0.059720019649775115, - 0.055417844519178104, - 0.04732189441029554, - 0.04420155550435306, - 0.029096319160992236, - 0.06208854205434892, - 0.0459157984459185, - 0.042799917097746366, - 0.04406567255005114, - 0.04468881824764346, - 0.042512396180502204, - 0.041962118537991235, - 0.06491165263150006, - 0.04236343860064507, - 0.04899504026918072, - 0.044141462020243785, - 0.051624142734435385, - 0.0461123626867594, - 0.04129345357020314, - 0.05171161207474463, - 0.04308567578493991, - 0.04193404064408214, - 0.05531320674713911, - 0.055308995860212457, - 0.044767355042643404, - 0.04006534216380894, - 0.04181327163733568, - 0.044590563969308654, - 0.04897659711793416, - 0.0408296207735394, - 0.04715645718569236, - 0.03283428867428797, - 0.05155255775634146, - 0.05851603096053927, - 0.04240276758547011, - 0.04241478517677474, - 0.04739231735348431, - 0.05526905721733836, - 0.03963712456496661, - 0.044746979038767336, - 0.03171031749983691, - 0.04028846663782885, - 0.04320739148638104, - 0.03606757444766932, - 0.054998023925345516, - 0.06525680593468175, - 0.05109146451704712, - 0.049308594898971554, - 0.05222111134469815, - 0.05666833446192673, - 0.04609523655796762, - 0.03493532733209019, - 0.048037573659708975, - 0.046189360358275755, - 0.03862532391086745, - 0.04897361586071788, - 0.041975677986340776, - 0.047378272499206155, - 0.04644432493676176, - 0.04378900150378764, - 0.03964277276985909, - 0.0546597531719603, - 0.05283287716332674, - 0.04072723374031526, - 0.054143959342479835, - 0.05482946408652945, - 0.04788437712541737, - 0.04416732580808978, - 0.04138650708270988, - 0.05111558203237939, - 0.03954169694023027, - 0.047183978774738816, - 0.049469391515843106, - 0.0463372395300232, - 0.050847631750277046, - 0.05409065751016956, - 0.0586202883505748, - 0.059841164384649696, - 0.0573567350578902, - 0.04024402794128604, - 0.03653121351947569, - 0.04503340162855748, - 0.048330458152609584, - 0.041823408624071544, - 0.041249985956970756, - 0.046339056516385584, - 0.045644594206722594, - 0.04544889056700632, - 0.044642514753932855, - 0.04222547788341268, - 0.04556861133699486, - 0.050230632161562094, - 0.04671727110500054, - 0.042004964743588384, - 0.046863338681517284, - 0.0512590869418749, - 0.043912289689434926, - 0.04782460352297594, - 0.05648973005418659, - 0.05514448520406959, - 0.05424114012033207, - 0.05037449285563029, - 0.03953290405493157, - 0.05276053967283729, - 0.04867706019698571, - 0.042404063202491384, - 0.0518112202405249, - 0.07351847030958045, - 0.05795095729528178, - 0.039617050636444974, - 0.04751301001326242, - 0.0426249633863833, - 0.057730624973608806, - 0.04305479332894394, - 0.06158762778814898, - 0.05205933135975775, - 0.050011086214229825, - 0.039328698476039016, - 0.04832460281875882, - 0.03890417153161731, - 0.045187429777484495, - 0.035377067685521665, - 0.036441159255236916, - 0.033287346981566414, - 0.04857514080590033, - 0.0373860465747432, - 0.04461785675995728, - 0.06534450924910869, - 0.05817610418446175, - 0.039309468402333854, - 0.04881491048874067, - 0.0501406770819487, - 0.04366261567524742, - 0.03962438665043291, - 0.038504298592026566, - 0.036960615906021704, - 0.0440007459605272, - 0.0518126773948536, - 0.047147445007131195, - 0.0491066316428896, - 0.05457603035531981, - 0.040726888013430704, - 0.04642801445752778, - 0.04064944367235535, - 0.0537420629166828, - 0.04717481795258973, - 0.052559284533338066, - 0.037509315818192036, - 0.03594249530619331, - 0.04852144421709487, - 0.03700225457007138, - 0.0598797736042785, - 0.04768392130174006, - 0.03997623677444171, - 0.05438761425391608, - 0.05364978740800303, - 0.05455205623859592, - 0.03995065298442489, - 0.051696521960951446, - 0.042551025290139585, - 0.05578002309894003, - 0.054483788940253026, - 0.050029670705636686, - 0.04501299614460045, - 0.04964868351845168, - 0.03807416866576636, - 0.041129133858594444, - 0.05538877791640611, - 0.045659356219708284, - 0.048568688153899565, - 0.04484860177452988, - 0.04320604284370225, - 0.05279631988093379, - 0.04149142011006662, - 0.04900831816516284, - 0.05708816445098988, - 0.05207588321782017, - 0.0479033675760891, - 0.042443616957772434, - 0.04804963652575899, - 0.03784393127954197, - 0.03380718056259669, - 0.05126079385467862, - 0.047580937331351776, - 0.059264004624616645, - 0.046374445530072285, - 0.04524101008740931, - 0.04715281058820949, - 0.04231484609874291, - 0.05811946135877917, - 0.05317472612310807, - 0.045843907823822, - 0.03988400314831911, - 0.055882782226821914, - 0.05280071477006304, - 0.046621024434681774, - 0.04245347690288645, - 0.052977205270106575, - 0.03924449710844434, - 0.0393399424212724, - 0.03443626809365973, - 0.03502507695144504, - 0.043369201869287416, - 0.04307593787336844, - 0.04391113732666586, - 0.04879074694924154, - 0.05061066891778716, - 0.04632286187629093, - 0.055152491089247094, - 0.049648987253572634, - 0.054027507875860276, - 0.0419037608553205, - 0.058416473973628695, - 0.04990776398879024, - 0.04699967750296286, - 0.04782682840895093, - 0.04376948989206064, - 0.045348093986190746, - 0.053801336235871966, - 0.0449545294850091, - 0.04772235211253568, - 0.056459865528724694, - 0.05197543227896106, - 0.049780892566068186, - 0.0476005604909007, - 0.05801470181836311, - 0.041422803156368274, - 0.0464719711519654, - 0.04706433195901819, - 0.042068855224927634, - 0.04880113395701836, - 0.04546477045017904, - 0.04188038719097722, - 0.046876290444215866, - 0.06814843637891012, - 0.06308112261564873, - 0.03346957462266734, - 0.048408479634437875, - 0.051056424146225805, - 0.042776709228188145, - 0.04574643475667316, - 0.05243464504856569, - 0.04552431737054825, - 0.04617139150928987, - 0.044050345761499375, - 0.050658200631927996, - 0.045068638331492016, - 0.045191847491113754, - 0.04100824146224693, - 0.05002194746858699, - 0.03956852214905026, - 0.047983963888401385, - 0.04755684176074789, - 0.05003821801895519, - 0.04383554519788138, - 0.04271441114444213, - 0.045848392133951726, - 0.04868339791479809, - 0.05875996038338914, - 0.040027469913880794, - 0.05530115976682298, - 0.040008516992999406, - 0.04647831841517939, - 0.04284012377838727, - 0.056378422273811464, - 0.04895548435575598, - 0.05800964691980324, - 0.056458374596177106, - 0.05329150235685791, - 0.034804335878234435, - 0.03604875344640818, - 0.052324067498759966, - 0.05829067781502882, - 0.05343426022831406, - 0.054429792717840264, - 0.05185169138374399, - 0.04621895021677027, - 0.0424343320899002, - 0.04270144683646594, - 0.044811072087288344, - 0.03975414702341804, - 0.060321348871542474, - 0.062188886349407016, - 0.05316783437670303, - 0.0469324297079959, - 0.04386338043922143, - 0.0399620349857233, - 0.047727727773459225, - 0.055681489872650654, - 0.03963634369699489, - 0.035530001587605144, - 0.03977922293149328, - 0.04743587894056533, - 0.05686321143753964, - 0.0362595342916453, - 0.03226780053503073, - 0.03668507890957247, - 0.03884617880695247, - 0.0417286604471141, - 0.046782952111278205, - 0.052600585583031254, - 0.050905984680423594, - 0.04482823389170031, - 0.04416412245387271, - 0.057859881168745075, - 0.04080856806522785, - 0.041400222749495605, - 0.04276920323950075, - 0.05384840978037852, - 0.05719697723220615, - 0.050647827060583316, - 0.043648591645797305, - 0.045652288139089114, - 0.03768754959079528, - 0.038946717803849375, - 0.05207388747765155, - 0.04097055804986397, - 0.06718542076936783, - 0.06265172915963284, - 0.04257432441210321, - 0.046283957778383504, - 0.03903037889335624, - 0.038467685584645826, - 0.048592088800688965, - 0.04152239293765399, - 0.049941625078178266, - 0.04817249388092849, - 0.04755142052344951, - 0.05652114955445744, - 0.059668987597279725, - 0.04520103001034079, - 0.06316511305409578, - 0.03749841590780947, - 0.04001510822628298, - 0.040869155992942656, - 0.05282984529862982, - 0.043965078727155375, - 0.054651743608188516, - 0.0475613095483078, - 0.046548680415743005, - 0.048238953522900696, - 0.04342409377580147, - 0.05373821400305557, - 0.047649333177112126, - 0.040124434297312946, - 0.04595425753621182, - 0.0496937172572152, - 0.05026414674883173, - 0.04436712254718806, - 0.04154937052745358, - 0.05376138639857075, - 0.0514670177893585, - 0.050277284411057714, - 0.04333841420581031, - 0.0375843396521253, - 0.042023616873946526, - 0.045413749680602016, - 0.04240677669562268, - 0.048103957421182016, - 0.049110439667554504, - 0.07342188611377506, - 0.05051990894130275, - 0.041701280508987394, - 0.03912389262457773, - 0.04845235063840312, - 0.051098307603090004, - 0.04214539408954141, - 0.047603608863165184, - 0.039068560160793554, - 0.052684332187637815, - 0.06899586611579905, - 0.04307906535861538, - 0.053101335347050665, - 0.054377138717241744, - 0.0579530988574614, - 0.034621467169133203, - 0.041933446296837554, - 0.05543145350529464, - 0.048414328929844215, - 0.037800466240553436, - 0.03761081763469691, - 0.03586655224462986, - 0.04599577053661139, - 0.043269189217727565, - 0.05004842081562416, - 0.048213799059076065, - 0.044808746178518245, - 0.046508550396902146, - 0.04918275218753536, - 0.042320057123290566, - 0.0452066730850225, - 0.049077813094329445, - 0.04315724016418025, - 0.05755974011957949, - 0.04707545396923496, - 0.05619319978024808, - 0.058854512224083375, - 0.04557177560145316, - 0.05491193485961431, - 0.04186215915814989, - 0.04316845956490753, - 0.0427869177575949, - 0.05425398828702198, - 0.03993298879011338, - 0.04034165008696429, - 0.03703527236141329, - 0.04759010967358234, - 0.05087609113138712, - 0.05740887074597257, - 0.03710688521003685, - 0.036480745500301205, - 0.07143324201755649, - 0.046171753611725715, - 0.04780842519402217, - 0.04662794979383502, - 0.04383538948327119, - 0.060098296500585145, - 0.04236789355944926, - 0.04547899230952185, - 0.042056024625685896, - 0.03385617765763126, - 0.04256911195601949, - 0.05853938087820285, - 0.059334575235341566, - 0.04253679678565894, - 0.05787105447460437, - 0.04462496396715491, - 0.04916934301356381, - 0.03984752977859432, - 0.052800323686416316, - 0.06277886820238089, - 0.04749359461362632, - 0.04402830180693767, - 0.04357469403803744, - 0.05454812708805026, - 0.04536010509179694, - 0.03969700598330943, - 0.03820782838269205, - 0.04021905288626245, - 0.04612273641390754, - 0.045448548988760086, - 0.049457397695816745, - 0.04153116157428397, - 0.047970631311535596, - 0.04421847924000604, - 0.04707488371796652, - 0.05457827597504357, - 0.04246094109472895, - 0.050041787920864805, - 0.03961676193248711, - 0.044329096594963785, - 0.04748121552939527, - 0.04818987023639576, - 0.0429830984221179, - 0.05848290506648689, - 0.06324002790888911, - 0.060151781981798214, - 0.03776642110495173, - 0.045967810009579765, - 0.0417180000844133, - 0.04698645298564145, - 0.05446685875288798, - 0.050518722535617344, - 0.04709116815497512, - 0.04059668517082562, - 0.04278696807873755, - 0.038771690117863106, - 0.058408091255194236, - 0.051854321187114034, - 0.041389738278396496, - 0.0414045111539502, - 0.04602447000397456, - 0.05212196838589387, - 0.05802720926169386, - 0.055537555864391866, - 0.03957805205510344, - 0.04348653464900419, - 0.06056878138713554, - 0.03885186493288552, - 0.06659607022860403, - 0.06376065110723682, - 0.04958530562370161, - 0.03785705318586447, - 0.042629540642062355, - 0.050829291782159586, - 0.04242135667415956, - 0.035624288872137526, - 0.03486284598126877, - 0.043229691344907936, - 0.03962601688969748, - 0.046586555453616035, - 0.0431728536565235, - 0.050819096257760606, - 0.041528706043202177, - 0.04281816068252644, - 0.04345755249059736, - 0.04296303772367337, - 0.054043482716822196, - 0.05082290012318424, - 0.04990326076414976, - 0.05253909147810553, - 0.04816349834743901, - 0.05333851918016751, - 0.046173040004330805, - 0.048629683277605654, - 0.057443346291472415, - 0.045713748695272574, - 0.044531845150989374, - 0.04000796784306788, - 0.047475751767817376, - 0.040183410461153736, - 0.05201366978632944, - 0.040991723901464015, - 0.038886187512442674, - 0.0540381406698644, - 0.04696660178825372, - 0.049702636929249845, - 0.05728076323191601, - 0.043613067590398784, - 0.041791959241339646, - 0.042571907441141324, - 0.05433146304080784, - 0.045512980897605596, - 0.048098213620482534, - 0.04676730307219026, - 0.04803511409153132, - 0.04756749906128718, - 0.04822622646787255, - 0.0468759696702064, - 0.04808780287139746, - 0.04483366753760084, - 0.04068521959342137, - 0.03607307343353733, - 0.037176132939414304, - 0.03643293579956527, - 0.04317034116405468, - 0.044775685149546815, - 0.04779489942619532, - 0.034634705976283514, - 0.03961448542550822, - 0.04943386273578255, - 0.0393954493287582, - 0.05385609900008626, - 0.05781208965737658, - 0.056383609920567096, - 0.06733307953204598, - 0.04378781506430695, - 0.04162379305762964, - 0.05718436881099791, - 0.038746411116955974, - 0.04034378725217759, - 0.04172139438838637, - 0.04283392494681736, - 0.04115305325754252, - 0.0566106206457833, - 0.05276395027926207, - 0.03790231339302127, - 0.04382374130641925, - 0.04234680122978567, - 0.0427068752501911, - 0.03478031389923752, - 0.04320416706319069, - 0.04769552580388021, - 0.04020291030783999, - 0.04463330841869935, - 0.04740532685882827, - 0.06615818869745524, - 0.045033994224361426, - 0.053773978912408614, - 0.04168467673426065, - 0.04459055421481296, - 0.043947609405072266, - 0.047365595613482754, - 0.04010085005646784, - 0.052649982087447714, - 0.05650805166895837, - 0.05558348664902515, - 0.050718019904865894, - 0.0358352124776362, - 0.0691011043332214, - 0.04354643370779872, - 0.037264316211077134, - 0.05132880947784023, - 0.04984356145797763, - 0.04889705275406774, - 0.04365196656865384, - 0.04685352120100041, - 0.0381436860770351, - 0.04653699241081293, - 0.045161560709366375, - 0.046556634053860166, - 0.042428284020693506, - 0.04305232050101474, - 0.035492599974333336, - 0.05229040717735865, - 0.0609245113260605, - 0.05081353937825536, - 0.04978476596754266, - 0.052019667680699815, - 0.04593511342109403, - 0.055690575642629477, - 0.06802795792800191, - 0.04763889076060407, - 0.050221607612931235, - 0.047549963141262995, - 0.04462054302253029, - 0.04832866156663236, - 0.05006386344249957, - 0.03947327096808553, - 0.04412929223939517, - 0.03826492897981435, - 0.048708708101267345, - 0.039301711525541246, - 0.05795384238470528, - 0.04350952118462732, - 0.04313465370974251, - 0.047344341022802064, - 0.02895527945710968, - 0.05012104573916892, - 0.04064971614579036, - 0.043554980952457474, - 0.04342538616402056, - 0.06069549955220184, - 0.04101154213438987, - 0.052813433995793614, - 0.044896409563158754, - 0.04392748262203777, - 0.043381893348706596, - 0.05611391987906342, - 0.04971181023609717, - 0.047407443659053604, - 0.04496590472772061, - 0.04232022779663042, - 0.04266197253495465, - 0.043702596653372415, - 0.06195027936241185, - 0.04476072829849272, - 0.04320637483711192, - 0.04943212687989807, - 0.05045602384823132, - 0.03983742183997396, - 0.04556357082911136, - 0.03394319703400905, - 0.054466830644636054, - 0.045704859291934984, - 0.04944344941359558, - 0.06637690119609269, - 0.05631315668608422, - 0.039042217955022475, - 0.06262841899061508, - 0.04839241392896017, - 0.051438692179100826, - 0.055944404490599786, - 0.053309789640660986, - 0.057673528337859256, - 0.044236131350610323, - 0.042340284736553054, - 0.0481548006312482, - 0.04551407192254179, - 0.04311445075676378, - 0.05889096268721056, - 0.04725901207521717, - 0.03887433480535795, - 0.03745054044042264, - 0.03876010737958844, - 0.04806403286720149, - 0.04784840648567245, - 0.04398874062508023, - 0.06970801288379816, - 0.05044488201918893, - 0.046335477243356474, - 0.05070270260964318, - 0.05131652591297667, - 0.045288619669164504, - 0.03694980825772363, - 0.04822956090534344, - 0.051559633359316896, - 0.04113234129273838, - 0.03221294267044953, - 0.04913092982589938, - 0.044949943747017454, - 0.039216213585682023, - 0.053193155433592314, - 0.043936343072435796, - 0.04833187531145051, - 0.052724190717725626, - 0.05992629246639184, - 0.055019065384330906, - 0.0371054864796183, - 0.04467916461612326, - 0.0344582949373771, - 0.04555744669904816, - 0.040868027295182546, - 0.044715625659167695, - 0.047646254731025156, - 0.04584726816481912, - 0.037911949016434326, - 0.042014855339422764, - 0.046037182142312824, - 0.04837062059325295, - 0.04478533094423136, - 0.04059160051015845, - 0.048226792183349416, - 0.06094579243767329, - 0.048763657591410374, - 0.04584360913862895, - 0.04456200122113401, - 0.04443173051355753, - 0.04482393059744485, - 0.0412758809207148, - 0.038214301082371144, - 0.040868680309474575, - 0.04768208290307887, - 0.035691463023860455, - 0.05178933517897373, - 0.053535193514220876, - 0.05953774177264575, - 0.05127373830062708, - 0.0553436738366711, - 0.05292438787908326, - 0.04495984825624459, - 0.05186431483119394, - 0.04853904374178874, - 0.054017401230058576, - 0.046188772664127006, - 0.041049543496620225, - 0.045479951134974377, - 0.0491395177382786, - 0.04056629370425686, - 0.04043651292746273, - 0.038670026115684236, - 0.042635932814339694, - 0.041997044895606, - 0.03722599198593904, - 0.044892645245327774, - 0.03553963565165382, - 0.04171219416904496, - 0.05635673061483166, - 0.043055418044807746, - 0.04091308803566574, - 0.06915110255928536, - 0.033387030653460326, - 0.04074714347864019, - 0.04393940287567617, - 0.0478508620634287, - 0.05766159183436655, - 0.05896192226552196, - 0.04418669960027721, - 0.05410657658372688, - 0.04653227376138841, - 0.04244437354209651, - 0.0531816485665114, - 0.06281558833353677, - 0.05582436062132624, - 0.03845653692797773, - 0.03647300355084543, - 0.033174733301050474, - 0.043538773395463, - 0.04842961199717508, - 0.04025585093606783, - 0.04991103346363548, - 0.051390326768216525, - 0.04972124436269242, - 0.042139200426519245, - 0.04572321516802441, - 0.03365403862682921, - 0.045954873055688024, - 0.05245324990818975, - 0.04596106431919717, - 0.042629535786222306, - 0.041931821465635295, - 0.040207342758421145, - 0.0493015088077467, - 0.046921199892420995, - 0.04978546683564788, - 0.04311597703101162, - 0.04982446005749558, - 0.048381106908011964, - 0.03274505507893477, - 0.052073634008606755, - 0.044557708690810466, - 0.036034141355584755, - 0.04086606691414097, - 0.04596730416687251, - 0.04660657588578372, - 0.037589564412899325, - 0.04102258298354943, - 0.04731917774013614, - 0.04114095772863538, - 0.05030476728708237, - 0.03572251138171572, - 0.035822222359354075, - 0.05326677260249138, - 0.04320624883519869, - 0.05119563268474311, - 0.03901052206628479, - 0.052854326077795166, - 0.04048555671208205, - 0.05626478735659365, - 0.042067978698926076, - 0.04339921842041638, - 0.04761457373320175, - 0.0587325315996974, - 0.04420741540020388, - 0.04814779304305057, - 0.04311674388799978, - 0.04393137619576595, - 0.046551218307872566, - 0.051576481908451204, - 0.04174826407242035, - 0.05810478544696496, - 0.05705744135586585, - 0.04932281608612712, - 0.043954130143012374, - 0.038572250835695925, - 0.040816283663202, - 0.040764772619625536, - 0.042939085223993, - 0.049466979949851886, - 0.046811211832486675, - 0.046506732766621206, - 0.04260242630223851, - 0.042318195322226734, - 0.05567702307214208, - 0.05262298435547686, - 0.03188828206955313, - 0.03978383943778033, - 0.047582783036229925, - 0.046661071355849904, - 0.04869941914298565, - 0.043066341706746676, - 0.04755297697769721, - 0.037068720185171204, - 0.04736707026655145, - 0.03980634063508048, - 0.04063319312577597, - 0.0539668488868177, - 0.049726956171302496, - 0.04960618011452435, - 0.058577637044240904, - 0.050454549626685434, - 0.059802899840157804, - 0.04965850605169161, - 0.049055814533162254, - 0.03810699736371297, - 0.047147280537714054, - 0.06688977206355642, - 0.043738088468551005, - 0.05327470227775397, - 0.04123199296430322, - 0.04537312125312427, - 0.0375687489758537, - 0.03956139358206912, - 0.0479144306636209, - 0.04890708682366801, - 0.0474217686039473, - 0.048250249977902754, - 0.04093925788196276, - 0.039192710134508445, - 0.057232295286085436, - 0.04872182099351212, - 0.05541720547369433, - 0.0392944103586913, - 0.051248632333813715, - 0.04986250083461093, - 0.03027053208152394, - 0.05303828574823796, - 0.04331187269177876, - 0.04792756337068704, - 0.06090425287985099, - 0.0440381324857885, - 0.0577889916213746, - 0.056328937298751915, - 0.05207401761935362, - 0.05244664628255006, - 0.044106021730623814, - 0.044642202299682764, - 0.05471533611323071, - 0.04379097772503599, - 0.056734494733084395, - 0.03923056750809534, - 0.05064042598691826, - 0.03688407126939641, - 0.043984028772754216, - 0.04426330679156061, - 0.05428976618014118, - 0.054545794417901215, - 0.04205977839645941, - 0.04659984269713094, - 0.062387977919173714, - 0.04839602455069122, - 0.046214605084265656, - 0.05998242953876397, - 0.04984495859819322, - 0.05932919568255094, - 0.04576660150258616, - 0.05077695026709903, - 0.046752952810349496, - 0.04260662803045239, - 0.04415401840992807, - 0.05356302444406151, - 0.05508478889490943, - 0.05046742830832398, - 0.03977661602564156, - 0.0585747940176164, - 0.05503254927038028, - 0.061394148896225284, - 0.04027863734454064, - 0.04139624573078576, - 0.04164504964578591, - 0.05878817200851311, - 0.04889538590414371, - 0.04331206665883263, - 0.05479801554263923, - 0.048697681234648536, - 0.0414438256652622, - 0.03958289115077519, - 0.050697509055706684, - 0.04456143953450452, - 0.04490574255992236, - 0.04316791251476556, - 0.039223401413315054, - 0.05732508566094362, - 0.03705087680692901, - 0.0563909420781552, - 0.03742823492727305, - 0.04781165419738209, - 0.03801231116843623, - 0.043119699693176534, - 0.03859744967067132, - 0.04125407052982773, - 0.039716104651686346, - 0.03905167746014161, - 0.04472422749996788, - 0.05633091954423612, - 0.03669807900302923, - 0.05204179283455609, - 0.049451775517172836, - 0.04736052240531196, - 0.051496176679568406, - 0.0547210956248523, - 0.048444974884307386, - 0.042585093562136606, - 0.05487819709396173, - 0.05921453725224182, - 0.0413601763616804, - 0.044036546686150715, - 0.05485868453469848, - 0.03858985105473032, - 0.05238239683609914, - 0.05487344981792322, - 0.043652177593480154, - 0.04887710673565377, - 0.04924063065297979, - 0.040596578671411955, - 0.04735464701052198, - 0.03483056072691102, - 0.048782093052839016, - 0.03925769916887851, - 0.04569520405897204, - 0.06025513519711249, - 0.050872058901246006, - 0.06422766710358423, - 0.04085572123072581, - 0.04758158872399014, - 0.05393964759731072, - 0.039005977758929014, - 0.03711929965974829, - 0.04365923538692183, - 0.04592104633850724, - 0.06767462148821742, - 0.05055020180254446, - 0.04439649334506054, - 0.04540869981466672, - 0.05755280803186762, - 0.043688197244167476, - 0.04456276041510086, - 0.044783496784870695, - 0.0497781501618436, - 0.05975916238973553, - 0.05826226560244549, - 0.04691905910777055, - 0.04972271026835798, - 0.04209527156522912, - 0.04885730326709109, - 0.049201608018348296, - 0.04563050152372284, - 0.050443508589655905, - 0.040435822079059096, - 0.05224421771123568, - 0.04499269961526134, - 0.04988446078168221, - 0.05499401981346866, - 0.0432632444656728, - 0.04677347125338999, - 0.05322958681326635, - 0.04360052340085487, - 0.034672386274519414, - 0.04015962267487091, - 0.04360815726937813, - 0.060933577606861716, - 0.03363977543192442, - 0.03809941293145279, - 0.05724312562266459, - 0.043896956921190944, - 0.040331012977590716, - 0.04199527207350154, - 0.06483347985028419, - 0.04503718786412644, - 0.04162252924816277, - 0.058114263954144166, - 0.0535732891146476, - 0.05009861208630365, - 0.04454752922678037, - 0.05329582000756061, - 0.045591913098006275, - 0.03729931875050725, - 0.051146348733660495, - 0.0442009567559974, - 0.05087065323530865, - 0.05174772986672679, - 0.040756624034148335, - 0.058253452186189124, - 0.04594838240412977, - 0.05402850089384014, - 0.036587163871228394, - 0.040020055507853605, - 0.03865338486841971, - 0.03614936354835109, - 0.059642479682866824, - 0.0435595276688751, - 0.05031453138299479, - 0.04793624739121795, - 0.043069416531546806, - 0.04850037693710269, - 0.04273811986814702, - 0.0515650325496523, - 0.05310361292690887, - 0.05824615439296006, - 0.05448854931992405, - 0.04245419743736597, - 0.05191345151470423, - 0.04923291932006828, - 0.05310085708428014, - 0.04439610668864874, - 0.047685070158075216, - 0.034107328226699485, - 0.039153935242496454, - 0.05074936620332517, - 0.03862747505775575, - 0.05026206504123408, - 0.048822106364828005, - 0.048946016069305036, - 0.05261791893806042, - 0.04507938371070955, - 0.0355335937988135, - 0.05832988998779938, - 0.06300010036776553, - 0.057096222113396336, - 0.06004269344575779, - 0.0526065949870298, - 0.06170915286186513, - 0.07497981456980704, - 0.04511037126200552, - 0.04203364931651651, - 0.04213593530522763, - 0.053690122117704596, - 0.04595263136705191, - 0.04766372634276327, - 0.048474229745481656, - 0.040402790542550714, - 0.0489702325150935, - 0.03526740426314887, - 0.042485527326268265, - 0.044839893739992275, - 0.043748381741012414, - 0.061121124921883326, - 0.05034342717711338, - 0.049050216267844796, - 0.04265839567674951, - 0.03844956604106709, - 0.041887975194459345, - 0.044246200462339284, - 0.04421377211632237, - 0.05145988807491923, - 0.05192944151527223, - 0.05158531165467577, - 0.0427732255886368, - 0.04573732626170175, - 0.0480902900333864, - 0.04242776408411627, - 0.05259934361516752, - 0.05519306058590538, - 0.0503323081982618, - 0.0460534635092192, - 0.035527556466016484, - 0.04363386755587687, - 0.041295623409519144, - 0.049737259647214864, - 0.051790859531255604, - 0.048949726956603996, - 0.05437121842585995, - 0.0379206710443059, - 0.05283970201556443, - 0.035248687473629706, - 0.04919994564777131, - 0.05909264921291375, - 0.06062768453897698, - 0.0537378508491099, - 0.05134808222233754, - 0.04911607786260417, - 0.059004403325100666, - 0.04014054513140032, - 0.06315671488415323, - 0.05029448575868563, - 0.0419919350938549, - 0.03960010751212723, - 0.041323830157500824, - 0.03969567147674751, - 0.05636728133932119, - 0.03921230326797909, - 0.03807523661663324, - 0.04471591478465005, - 0.049716740610677435, - 0.04127262064710519, - 0.04384814577741178, - 0.047663284165328224, - 0.05440034093855412, - 0.048948717093456356, - 0.04978981902327082, - 0.06031474537642969, - 0.04408882358017441, - 0.045029059333145015, - 0.04027613317239365, - 0.051478188125033596, - 0.07088228218462596, - 0.04865071056439313, - 0.04646061041098109, - 0.041725473326580255, - 0.04704273345058019, - 0.050650568472230845, - 0.05343077625340048, - 0.047454942314675265, - 0.05109941343308269, - 0.04883892757892736, - 0.037239027717985616, - 0.04966966596017734, - 0.0483104055037849, - 0.0518527752263967, - 0.0564037165892081, - 0.046067206758654784, - 0.04815444821511803, - 0.05557594525752758, - 0.05075565919503578, - 0.04788746837844182, - 0.04646737325893179, - 0.05564686665362568, - 0.04159513792729597, - 0.048849168093530244, - 0.04350686431171286, - 0.047473158034173624, - 0.04266462771868374, - 0.03769511579848705, - 0.03847953121720809, - 0.048198585224743504, - 0.041189067285905386, - 0.04861663672003891, - 0.05317129606644254, - 0.05311544740051457, - 0.05337031985442963, - 0.03505890148033174, - 0.040145085064208594, - 0.04098119658127742, - 0.06647252099409412, - 0.03447762558674137, - 0.04877794335321492, - 0.0457156467751063, - 0.05259648918413829, - 0.05504233154881843, - 0.046912715174814934, - 0.036352925485358296, - 0.04766698941808861, - 0.051851855695787534, - 0.04910416492375133, - 0.042535959761434386, - 0.04597138786305506, - 0.0506212482100797, - 0.05920485508706618, - 0.05072223638349892, - 0.046150153086971735, - 0.05037448332991602, - 0.04241717382688233, - 0.04532922361413369, - 0.04524303849237886, - 0.05103105323849452, - 0.044290540787893684, - 0.037978830036974956, - 0.050402488615785036, - 0.050124012134993505, - 0.03527156559761014, - 0.041498235777176984, - 0.04459232285844818, - 0.05988009562991212, - 0.05294519735329011, - 0.04329302325323838, - 0.03555382740533033, - 0.05873367668632473, - 0.04745635603624988, - 0.035023360251302815, - 0.03881803104004363, - 0.05766552636527126, - 0.04193325942676023, - 0.05068244608411913, - 0.04637980899926149, - 0.0440678671056586, - 0.04020296912692546, - 0.04516655384658511, - 0.04499123972945601, - 0.04087110413492716, - 0.06220345834414035, - 0.050708977667679435, - 0.042806296039844705, - 0.04150940139316648, - 0.041619322311249464, - 0.05795720371939822, - 0.044157902745753076, - 0.04988418098615702, - 0.04432651339819181, - 0.04448472723530982, - 0.05817287922204566, - 0.03755300437917258, - 0.03997538837123693, - 0.04526047361110273, - 0.03778218210159341, - 0.04295829971093554, - 0.04382327701412891, - 0.0557148702250747, - 0.06699262969447162, - 0.0464140224625013, - 0.03818133037236179, - 0.04481773343913, - 0.051038730378229785, - 0.050119338506413334, - 0.05607186425803042, - 0.03865612820226386, - 0.04808819839193305, - 0.04173887521962136, - 0.05457673967714046, - 0.04558074670502523, - 0.04931194674105572, - 0.05552630117536558, - 0.04321899082936202, - 0.044007093273198766, - 0.042437291961612854, - 0.04566987008678403, - 0.048933355853146523, - 0.05262661864964197, - 0.035718997574090666, - 0.056497313257854086, - 0.034990845907334, - 0.04943856310047285, - 0.037699689135988805, - 0.04846066258798276, - 0.041389787346965, - 0.05604963879175087, - 0.05282550368321614, - 0.04432408053808474, - 0.044799465537107626, - 0.042970462181382646, - 0.0458755762227557, - 0.05017183892526458, - 0.04659505970656977, - 0.054316721135866, - 0.05735224844750978, - 0.03376331657267285, - 0.04797928201888653, - 0.04101307252833731, - 0.051220706564983495, - 0.04129492412510512, - 0.056390282111092795, - 0.06168195846325289, - 0.04980779039258684, - 0.04700493160498546, - 0.044130016687981735, - 0.038741279225758006, - 0.039491509097841694, - 0.0563519339913582, - 0.04460774709250817, - 0.060959247286442614, - 0.05983120297903945, - 0.07525834932213138, - 0.04464443096760423, - 0.042563048636010244, - 0.046218804467123266, - 0.04885635614333361, - 0.05817228904233934, - 0.04688802377095431, - 0.04265776155483061, - 0.04729027528532383, - 0.04574677843295876, - 0.04670608052794922, - 0.03914877871494632, - 0.05090558600836858, - 0.03739092198352462, - 0.04404490527124478, - 0.0399555823887167, - 0.0500739085936013, - 0.042758042242476944, - 0.05123609106144384, - 0.0599926980468057, - 0.049083775558022916, - 0.04329331944481419, - 0.04594805283670558, - 0.04011702859804939, - 0.0468055920129092, - 0.05342707926355799, - 0.034987451883458504, - 0.040021717938726296, - 0.03904085007335808, - 0.03963269163078775, - 0.04972429218119613, - 0.0560977043983302, - 0.05532450455892849, - 0.04445831942825302, - 0.048945834850351165, - 0.053551790223534214, - 0.052155299120660935, - 0.0476301295232535, - 0.0458846637689113, - 0.0487193432196862, - 0.04012507277396927, - 0.042135612654791654, - 0.049285663593538205, - 0.03893161952419653, - 0.04255746963764148, - 0.05306038112103938, - 0.0495157099752439, - 0.0379871067212703, - 0.03769078997092001, - 0.04697090574394993, - 0.03657497904069202, - 0.04379851970744684, - 0.04065174076772506, - 0.044332584589904994, - 0.04741797543406656, - 0.04825100815523943, - 0.05578682993352545, - 0.046955106953017994, - 0.05919350760693686, - 0.06446236555251753, - 0.04101005871007084, - 0.0364214153260923, - 0.045783404606275696, - 0.038986327860769984, - 0.04821273510024693, - 0.0665049401644081, - 0.04473229133022155, - 0.04769506480918208, - 0.051272807835879196, - 0.049171268451335806, - 0.04910107845809822, - 0.05221655513644996, - 0.048438159336817735, - 0.049615659432637606, - 0.044851612777260144, - 0.05114136336329328, - 0.04196058411205817, - 0.04935117353308599, - 0.050266925053948995, - 0.048406664310500676, - 0.04129527634326458, - 0.059702335941063986, - 0.049231977192076816, - 0.04420380406540799, - 0.05637766833064205, - 0.04452042922901568, - 0.04760860653043837, - 0.047740754326248254, - 0.043543564392434425, - 0.037241164354563185, - 0.03796894660730966, - 0.04919608658663821, - 0.046687489792148124, - 0.05629963950005221, - 0.04760872635726285, - 0.05393375694240035, - 0.06795246142127583, - 0.04587789214472285, - 0.04891568204355752, - 0.05035805792259276, - 0.04108162528992997, - 0.05416249410279156, - 0.04549212472352094, - 0.04915597137371087, - 0.05068050095466803, - 0.03909169475344427, - 0.04958928997673398, - 0.045508957002386316, - 0.04269888725903272, - 0.034592448741343595, - 0.049029290645449614, - 0.04619242855243259, - 0.05972877959021005, - 0.05158877877023629, - 0.04745441819249161, - 0.052629387048622384, - 0.053955584235328785, - 0.035763866208684165, - 0.05165835072883898, - 0.04219034356363114, - 0.047654063892014355, - 0.04277903039776959, - 0.04564342552454546, - 0.04789399356249431, - 0.04863261506407816, - 0.04433758888646261, - 0.033140005947005856, - 0.04494084212628267, - 0.049006940214136464, - 0.044328896713792774, - 0.04997916049411674, - 0.04778465901241706, - 0.042390051400565114, - 0.059299959190985956, - 0.05024293855791195, - 0.04088919973783011, - 0.04710447894343673, - 0.05895231782219661, - 0.04141737197528747, - 0.04399226277117421, - 0.04585998014792301, - 0.04585291764414784, - 0.03567479695373022, - 0.07435822444299099, - 0.05594506396524251, - 0.05677201803606342, - 0.04786755102670538, - 0.04994293874023423, - 0.04855445470427865, - 0.044149657604126126, - 0.04365129868410088, - 0.046514388641878714, - 0.045215069688049794, - 0.04294710653149264, - 0.04952942073157143, - 0.041057432340278796, - 0.04063074977923252, - 0.045530373928792896, - 0.03605622105156565, - 0.039528106783402094, - 0.04439556434506619, - 0.04371604680264114, - 0.053840151443950046, - 0.04234210240968032, - 0.06794061661471919, - 0.05071589961924185, - 0.052402876483998495, - 0.044973098593937964, - 0.044389010434716304, - 0.042774149242555244, - 0.08117217442618377, - 0.053187741569007393, - 0.04645585266031762, - 0.05248343761500466, - 0.057235934618545085, - 0.04544000743054485, - 0.06100810103164524, - 0.05135455962952646, - 0.04024659434853352, - 0.09522878944643327, - 0.04432224914979836, - 0.050642789187516184, - 0.03980375521739119, - 0.04355606865176292, - 0.04120698563456665, - 0.04020073378778556, - 0.04886134700074559, - 0.05246303082896547, - 0.046144919810970436, - 0.05674346583124776, - 0.07556606892076452, - 0.04644284081928298, - 0.04783669595921825, - 0.054424966822088236, - 0.06203850961561282, - 0.04090162411206379, - 0.051651974927715144, - 0.05734674042811596, - 0.047510723903375365, - 0.0405221113254089, - 0.04279581973166756, - 0.036831062861747824, - 0.03515690225659835, - 0.041260315569616755, - 0.05223227534813523, - 0.04174201192880038, - 0.03998633641463834, - 0.0543443176841274, - 0.041771190733921736, - 0.03773364918314464, - 0.05563517246065607, - 0.04986927905003153, - 0.04993375226744946, - 0.05830147663091506, - 0.04012913678479212, - 0.07323010557476896, - 0.048288464894251086, - 0.03711436883357052, - 0.04094042059557178, - 0.05000988917083928, - 0.03553122765549852, - 0.05082772343186319, - 0.053143873329123376, - 0.04602372069523993, - 0.048196785210763184, - 0.04903719973638053, - 0.05616099133432463, - 0.04392412964023557, - 0.04073581145463022, - 0.040362967918174925, - 0.047738512088742545, - 0.042961473345895486, - 0.04903967733245654, - 0.04453471554205769, - 0.05559557220732, - 0.056768659411617926, - 0.03477533084701114, - 0.06896170998569356, - 0.04232185245443904, - 0.03754973352410798, - 0.05426921809546742, - 0.03864646856406143, - 0.04996742167907798, - 0.05715194122325821, - 0.05013623342159715, - 0.048685821316369254, - 0.05125904871024534, - 0.05360402052650497, - 0.03980788567555581, - 0.043802491988699635, - 0.052187742744647186, - 0.04408746328815231, - 0.04105166384661282, - 0.037085398459578, - 0.030820596066812592, - 0.039684189632543665, - 0.05028928570487465, - 0.03779157309003557, - 0.039866901475581085, - 0.04412041666955202, - 0.03822191846873884, - 0.04444574844208561, - 0.04046186072209539, - 0.0424537359496411, - 0.04549012134115764, - 0.04807162956259467, - 0.04252201442029366, - 0.03897350183111652, - 0.05145779569965439, - 0.04983927112210535, - 0.057625696163826214, - 0.05771659946645689, - 0.03926773158245011, - 0.04728891551293021, - 0.05027201101160707, - 0.03864481864489964, - 0.04493368840548517, - 0.05577858171214234, - 0.04000891645169864, - 0.03966738050536439, - 0.04697037810064938, - 0.04147008093347376, - 0.04979140436985074, - 0.0437063168664506, - 0.05236993806687934, - 0.04540804563102531, - 0.04658881816853798, - 0.04914884830728072, - 0.04098910921001364, - 0.059500654481362034, - 0.03874577749096573, - 0.04931616714337102, - 0.05745809386408539, - 0.042540127734532744, - 0.04316825897275977, - 0.050192366894285544, - 0.055644045104975365, - 0.03963793263996879, - 0.047863877298283196, - 0.05006818506755515, - 0.04318424892058938, - 0.057530370934412614, - 0.05299636396076115, - 0.04848663617360541, - 0.04241223393191708, - 0.03981710221339693, - 0.03528951105452806, - 0.04197459003598015, - 0.045304772011412135, - 0.05163962657991489, - 0.03460929957661504, - 0.0771453378933496, - 0.04770640696175089, - 0.04421043723258291, - 0.04635041932942422, - 0.056772804982306954, - 0.06265653642190486, - 0.04517027182148293, - 0.04037937958472659, - 0.06852380228456274, - 0.04565594006712617, - 0.05336932339182947, - 0.050077824763847346, - 0.05828975263074213, - 0.05738238100099673, - 0.048132590201322975, - 0.048203392532243934, - 0.05038293309915503, - 0.037608962522168395, - 0.042094745443959275, - 0.0375647837054141, - 0.045194187284024995, - 0.04231872882784265, - 0.056009145641231405, - 0.0416719657700455, - 0.04899515549324212, - 0.0656616831993256, - 0.0504044460873806, - 0.05074010274877622, - 0.041191487681478026, - 0.0469873552722552, - 0.04774230898885251, - 0.047629016766313675, - 0.0476643803875807, - 0.045788652681990595, - 0.04129824966004301, - 0.039863426357985954, - 0.03533691182829438, - 0.048023526947958424, - 0.04878863217956306, - 0.048758803247881996, - 0.055746926335811325, - 0.04876724291329261, - 0.051593120248439615, - 0.04875928335128874, - 0.045932359763718233, - 0.051647857925219295, - 0.03374586195356165, - 0.04311954220659097, - 0.06116603101348535, - 0.03959041725366841, - 0.048814600044604126, - 0.06311552668207737, - 0.04396183431479492, - 0.055095695102645045, - 0.04959838430508553, - 0.0543702111631011, - 0.04115162660491115, - 0.05764268831020588, - 0.05063928211254459, - 0.04937224581572942, - 0.04761286678927019, - 0.04744641787618614, - 0.04933620044814235, - 0.039810150610717666, - 0.04497664640146913, - 0.043726269826557626, - 0.05182232389300013, - 0.04232886415307472, - 0.04889984619388448, - 0.0446914854918951, - 0.04539783666061673, - 0.054704326815185465, - 0.06337463512179768, - 0.054803814697458514, - 0.043841024826932265, - 0.046729848979661634, - 0.049128221391966105, - 0.07598833271292518, - 0.042187318103116246, - 0.0501599688652776, - 0.06024857978932492, - 0.04740476227700715, - 0.038981376954418424, - 0.04466037965133032, - 0.04307960449924451, - 0.050388368928937007, - 0.04177455222900854, - 0.0438225456490114, - 0.05289705619716445, - 0.03500902780226975, - 0.03370712578529133, - 0.04715593986694985, - 0.04133817027439744, - 0.04547221508749105, - 0.045602137055673814, - 0.040165950923618056, - 0.049723361650606854, - 0.04580391237611056, - 0.048644088895936785, - 0.042898404091355695, - 0.04567397243870198, - 0.0510138648494436, - 0.03776905855031603, - 0.04751760951377504, - 0.044905563596187574, - 0.04920343611075481, - 0.04832157924812768, - 0.053906121175315076, - 0.03826020168045327, - 0.04390202522773522, - 0.05185359263013029, - 0.04206555474998457, - 0.056641656808994946, - 0.054698518868947825, - 0.04005987130727696, - 0.047151411193056894, - 0.0507692277238884, - 0.04599852913062756, - 0.043973935434117505, - 0.043745159081391455, - 0.04504445158770224, - 0.05788807729686059, - 0.0408657032166622, - 0.042836855362291086, - 0.03485631438718388, - 0.05253148621858, - 0.058875494999321105, - 0.03142061762204922, - 0.04903696651262044, - 0.037050878310697366, - 0.04578564019674534, - 0.043189464142300474, - 0.052567153892207515, - 0.04255581627619823, - 0.03688169346941042, - 0.04851094530570567, - 0.04030569535047428, - 0.04795032952347209, - 0.049570843927724643, - 0.04637663113286078, - 0.03807328431749426, - 0.04714006949649586, - 0.044146069278356015, - 0.050959401170086245, - 0.04027508762153731, - 0.04105386932638021, - 0.03899946845521821, - 0.032877358583117605, - 0.04437852889224844, - 0.03888363280788898, - 0.04489117564778006, - 0.04308306589633016, - 0.062017036720696396, - 0.053558739625190296, - 0.04835110216870277, - 0.045136592943245776, - 0.04832574642302916, - 0.04849256288304549, - 0.042215955698643615, - 0.053612936109916895, - 0.058091452263421675, - 0.043202998652171906, - 0.03980220282050553, - 0.0713197640086863, - 0.04686685969177413, - 0.05361644003454721, - 0.03903832965719138, - 0.05332654694907814, - 0.04615959122573992, - 0.05543022517093187, - 0.046265569135249054, - 0.055177213933565214, - 0.041033975755540714, - 0.04256532158885325, - 0.05582618437971826, - 0.04590825200604387, - 0.04320540293506798, - 0.042097022954798384, - 0.03726225411041518, - 0.04702520481229699, - 0.06240990194242615, - 0.03520474886485074, - 0.044403022738275046, - 0.05419662020340987, - 0.05374026615306333, - 0.046597388103974076, - 0.05550104773192473, - 0.04177069893063553, - 0.05170009202512498, - 0.04507959444320296, - 0.041101700106038926, - 0.03982434449860425, - 0.04608754805995856, - 0.04117480964262659, - 0.04555653713328729, - 0.054063786119193345, - 0.04755226335273632, - 0.039871390407049664, - 0.05499215023525566, - 0.0363583063405609, - 0.03613672702224524, - 0.046656232644966815, - 0.05287055754842265, - 0.04389020118086414, - 0.05314645903923912, - 0.04165971519604197, - 0.04415183663258059, - 0.04169499633515324, - 0.05982347092759748, - 0.06430028591831312, - 0.062180505295742976, - 0.04911081578745753, - 0.04328722484616597, - 0.04860765897600952, - 0.06149842206346525, - 0.04688466129166527, - 0.05786742931110306, - 0.05514231175242084, - 0.043273782887226386, - 0.053305404346301016, - 0.0465010284255737, - 0.04443519346559138, - 0.03783689601257815, - 0.03660380953764393, - 0.04422823366069002, - 0.044850401426172866, - 0.04287374910700246, - 0.04267653093753846, - 0.04447956372399056, - 0.05459706108850363, - 0.03755715145667608, - 0.04026426761089571, - 0.0487764320421818, - 0.04481622781886641, - 0.049448920552557306, - 0.03710767558824472, - 0.04769643034537273, - 0.04233563303706159, - 0.04559550605616353, - 0.03080978549008558, - 0.04300462168409584, - 0.04330597747733736, - 0.05034212515919374, - 0.04617770507286425, - 0.060481841149109525, - 0.051163172783938164, - 0.0736821213550775, - 0.061861974413367105, - 0.04509574874358372, - 0.04739443133121919, - 0.055908243716021676, - 0.04002464127783951, - 0.035789842060379946, - 0.033477748411312104, - 0.04423653078698315, - 0.041639922604402385, - 0.058079214608589926, - 0.04891395682311626, - 0.03762175542563493, - 0.0422191895212404, - 0.04360553850728974, - 0.03272758380515663, - 0.0425203816288871, - 0.036921447307602086, - 0.047317422394586285, - 0.04497074093506324, - 0.035272748877440495, - 0.05211719884082743, - 0.050384878168553776, - 0.043472410213185673, - 0.044328631326211766, - 0.04380873064784555, - 0.0545635546053039, - 0.05314569115754796, - 0.05467122981636813, - 0.059663294197008006, - 0.04992190925662143, - 0.04577888855735105, - 0.0485266172730753, - 0.05053165644656523, - 0.051297193128614825, - 0.043664367162178724, - 0.04707687250907169, - 0.04743815666895022, - 0.03620086882433998, - 0.05291578173661274, - 0.038860786817152326, - 0.04758308184748482, - 0.05444089072252789, - 0.05343439270332032, - 0.04383774103734563, - 0.05270048085168217, - 0.043301062613260534, - 0.052570982620350225, - 0.04913019594530569, - 0.05031643701280422, - 0.0394192691252672, - 0.04654528529544011, - 0.045579204032025845, - 0.04802140113071556, - 0.03733128278342344, - 0.05261701488303109, - 0.050185439663418104, - 0.050717992220027965, - 0.04848549378956493, - 0.03861307024408825, - 0.04285038641560358, - 0.03837549283770486, - 0.05207984534526344, - 0.047633883997939705, - 0.0362501567724217, - 0.035172387836472675, - 0.05676994459730226, - 0.0521332876924329, - 0.04537351536665701, - 0.043892970133084463, - 0.054948508611609256, - 0.046879489273607584, - 0.04708780118815018, - 0.03833872659776776, - 0.042880157911403344, - 0.03538981234457341, - 0.04863258308687238, - 0.04720469760364967, - 0.048185597293568506, - 0.048970411412930404, - 0.04009200233410538, - 0.04832691861869694, - 0.03839311707313239, - 0.04864301850902251, - 0.047681052442701266, - 0.03807438809618849, - 0.04726419567675237 - ] - }, - { - "legendgroup": "Beam sensor 4", - "line": { - "color": "rgb(135, 197, 95)", - "width": 3 - }, - "mode": "lines", - "name": "Beam sensor 4", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.04726419567675237, - 0.036881084539466, - 0.05006043683725608, - 0.04676326791782981, - 0.04486345061486108, - 0.05387691729709245, - 0.04723076192965429, - 0.05845026715281409, - 0.04773493365772964, - 0.045265903291609295, - 0.03997149367613043, - 0.03446168720391206, - 0.057521109995882426, - 0.04364953261847467, - 0.044246919623870194, - 0.05449129110827522, - 0.04017283916357933, - 0.03580478961512732, - 0.05304929406961584, - 0.04595215248273945, - 0.059043312933029175, - 0.04050650611710223, - 0.04122163527009041, - 0.042143395357556346, - 0.03628836313451585, - 0.04429936116084708, - 0.04656875111655962, - 0.051827970242302714, - 0.04998575684614527, - 0.04857751691944672, - 0.048625650387450016, - 0.04206842651049875, - 0.04819278533757117, - 0.041776877766098085, - 0.04819317306845095, - 0.05202847328457535, - 0.044478404919738035, - 0.05269624937708751, - 0.04935495264440414, - 0.03721331534135657, - 0.04409667471266074, - 0.04860736829457256, - 0.05446975143161654, - 0.04698686807402293, - 0.049302071084657284, - 0.05000513334482508, - 0.04805644192647823, - 0.04391441521369819, - 0.05530014117873966, - 0.035744916838950105, - 0.043476769337127304, - 0.04110426826308501, - 0.05226249178571959, - 0.046214943617473046, - 0.04711209339956742, - 0.04088461314832586, - 0.05885098531820468, - 0.042808028812997306, - 0.04385609504690955, - 0.04103602733145842, - 0.04391367896376084, - 0.04221816655473826, - 0.06061781229492478, - 0.04914686693862627, - 0.038623003667583984, - 0.046503356640565756, - 0.045382763416096226, - 0.041329388587708175, - 0.040682417123276984, - 0.04725355240152864, - 0.08517249151762737, - 0.05574489436961632, - 0.050992983965553414, - 0.039340878757001416, - 0.04085912163743376, - 0.04773435278146062, - 0.04268554837605302, - 0.04618967507213679, - 0.04166147212082321, - 0.03793081161403405, - 0.05560352420551972, - 0.043024826735384325, - 0.05099531854542999, - 0.04694687843445629, - 0.04798399576928191, - 0.04540732707791155, - 0.033804511062223326, - 0.0387547350851475, - 0.042271758014562004, - 0.04306133901369432, - 0.04617158154494044, - 0.053506123950341704, - 0.050473146380069805, - 0.042304363003489186, - 0.05059328751252999, - 0.04593570312301968, - 0.05580126211846495, - 0.06001652285210805, - 0.049085049777891694, - 0.04493276258224353, - 0.04542404241739774, - 0.07071166591397858, - 0.050892107467137064, - 0.05595326627993048, - 0.05127915565127704, - 0.062155184971151294, - 0.05024844783326852, - 0.03729513509913289, - 0.04766542502862848, - 0.04316851596154454, - 0.03866259861815816, - 0.03881851699859755, - 0.03861514166358812, - 0.05830297100719988, - 0.0515847061488428, - 0.047657040662913555, - 0.045346909026451374, - 0.043511969464681666, - 0.047828204289447694, - 0.05925080086244245, - 0.04295002764135971, - 0.04913798694373626, - 0.03573655096315353, - 0.03419271030262909, - 0.036514266513848675, - 0.061826837041655945, - 0.05956379585416666, - 0.04062537481331064, - 0.04572205786022986, - 0.04646631372535122, - 0.03775155820825082, - 0.057637004559167565, - 0.05473088411041893, - 0.06924344636613343, - 0.05181642787528978, - 0.043526592834463626, - 0.03663975146831031, - 0.04360333805327612, - 0.047791254062568636, - 0.04863724644049569, - 0.04180674210783504, - 0.04704590555385097, - 0.03869689469127306, - 0.04185371902070565, - 0.040484056577267016, - 0.05167287904804543, - 0.05634015521962414, - 0.045392994383701056, - 0.03908482687034759, - 0.03415063910587608, - 0.053222603879236594, - 0.045895897083545543, - 0.060563970160806245, - 0.04036562788609559, - 0.05198653630288811, - 0.04208715331760518, - 0.04563578989607562, - 0.04583094616081591, - 0.05456637447348087, - 0.06420965489729094, - 0.03722322977475391, - 0.04690962803667721, - 0.05377041655409459, - 0.04439326019067893, - 0.0459342456295597, - 0.036016436919443486, - 0.0532264426305475, - 0.04215800641504944, - 0.05725818894842576, - 0.038624261084200216, - 0.06578679494429089, - 0.043797016216489945, - 0.04420593198444669, - 0.043992161582290454, - 0.053237483657311686, - 0.03689811481439576, - 0.046643339300974855, - 0.04967022210841504, - 0.043475076617943566, - 0.044183779114185, - 0.05854817341599629, - 0.04850610568640289, - 0.048443949498132736, - 0.041823009635212675, - 0.06806923968926255, - 0.0580243453901543, - 0.043428898495701494, - 0.044626541179303515, - 0.056525174409295956, - 0.04929971929753376, - 0.06022569606852146, - 0.04141280875402679, - 0.03892805743663089, - 0.044579143416785365, - 0.05115882157446496, - 0.04353055607809356, - 0.0462234992704664, - 0.052274547364962134, - 0.05152999164529589, - 0.0499384323271808, - 0.04728873859207578, - 0.03891120446049878, - 0.04682354642563995, - 0.03700334213091665, - 0.04850378863628435, - 0.04979415687177632, - 0.044153531045091135, - 0.03826775057215664, - 0.04861155119504171, - 0.05254063547365812, - 0.05485389559914469, - 0.0543745630670949, - 0.03511114435868681, - 0.05558321797922957, - 0.05753684985306505, - 0.05916335813420381, - 0.050615970730970274, - 0.03484195789196849, - 0.048696592275305504, - 0.044522910311806184, - 0.05805694702635457, - 0.04391144415530676, - 0.04601182397596914, - 0.04838218339274392, - 0.06153383218741187, - 0.04583488332518592, - 0.05390604201938416, - 0.04118208408066546, - 0.03548616821307029, - 0.04842680039237844, - 0.04071402065100988, - 0.04258200011995128, - 0.043891331959342125, - 0.05617815589062733, - 0.03678610649128445, - 0.05284818306791125, - 0.043304839515116704, - 0.07402001664782538, - 0.05930720956002788, - 0.04187535840682548, - 0.04157861282033558, - 0.04745097631303089, - 0.03911604169116118, - 0.05454136110597087, - 0.04352856414741783, - 0.037328465286553654, - 0.035751175147472204, - 0.04435909870122639, - 0.042821223944320974, - 0.04735975421744678, - 0.037955065951913544, - 0.04520949599122381, - 0.05024843474845122, - 0.06219496448590855, - 0.04454855576718507, - 0.05597050085872947, - 0.04284163862550577, - 0.045559621371601834, - 0.05067556186739799, - 0.0514463604288999, - 0.04466691684181914, - 0.04999146747965216, - 0.03840857618424987, - 0.059117007594607196, - 0.04821085166975681, - 0.04315497517055908, - 0.03470285330298614, - 0.046801414969928824, - 0.045312055259175484, - 0.03967225172143161, - 0.042598763615822745, - 0.04268932339701896, - 0.04043248998758503, - 0.05495647356231238, - 0.03860827680680124, - 0.04945880808178062, - 0.04247863664503816, - 0.04884625376126691, - 0.04581368023366177, - 0.0382043466910697, - 0.05898425537422299, - 0.05661041294359431, - 0.04182195323715962, - 0.03495182545729195, - 0.03654987466323467, - 0.04372267110054097, - 0.043502396624282305, - 0.0479664486625913, - 0.04119631459536699, - 0.04704225032590241, - 0.06631212125123756, - 0.05837254263475215, - 0.04445541594376637, - 0.04320892181567544, - 0.04972121093294913, - 0.041389285737761364, - 0.04887848189814837, - 0.049702061610103106, - 0.038145238122585294, - 0.07040796201083659, - 0.042488963972550475, - 0.041198669487390295, - 0.05320345559423256, - 0.051565876360182866, - 0.0387801504981783, - 0.03309480224927308, - 0.055839654389714596, - 0.0530896121881187, - 0.035073960838116355, - 0.0416500463490513, - 0.05251956808513941, - 0.055563755474847445, - 0.04769117217058053, - 0.04277810512941836, - 0.05547907266034024, - 0.054366843274146065, - 0.03894230823573471, - 0.03583881223671715, - 0.03530741222502197, - 0.05055249481946586, - 0.03685699643275534, - 0.03881165595766753, - 0.03974177361234883, - 0.05931555982662271, - 0.04466826386827102, - 0.05037291415451357, - 0.040721381119461074, - 0.04025480037058676, - 0.036279717775432374, - 0.05155029651365525, - 0.05371288543912698, - 0.05445931722518698, - 0.03419617830988778, - 0.03696317423321577, - 0.059709954331832765, - 0.05600211970120174, - 0.04941768936961892, - 0.043505942734447425, - 0.04882431794929608, - 0.061858009908334115, - 0.04415956035540477, - 0.06008116885507745, - 0.047771976775922924, - 0.04090054550152817, - 0.041283040530983243, - 0.04175205845047626, - 0.04206179976589404, - 0.04969924588059396, - 0.04965239225272223, - 0.060232389313907043, - 0.044613066988066837, - 0.05392991811765727, - 0.03815319167957941, - 0.04350836555987775, - 0.05730977902803956, - 0.04409812363233069, - 0.04518631615104171, - 0.04683812806394016, - 0.06734188637329974, - 0.052880690612833056, - 0.04165028827592077, - 0.04739892901051152, - 0.05401763501046732, - 0.051458732584300906, - 0.06923835939922274, - 0.06465939099324956, - 0.03950232108245579, - 0.048956984807563705, - 0.038958989314179335, - 0.04265019305005136, - 0.052392891960840224, - 0.06349941334219919, - 0.04263519894157518, - 0.04669617578585943, - 0.059960820858698735, - 0.051513918221107693, - 0.04293912463012529, - 0.0490814367671407, - 0.044684455462581874, - 0.047113552533142776, - 0.05030034975801812, - 0.0470027019556522, - 0.05515868543998448, - 0.03795588675822518, - 0.04003743608579264, - 0.054075967851040664, - 0.05285447429557009, - 0.047567166176896575, - 0.04041619752744611, - 0.03485518302957437, - 0.04481146535139308, - 0.04790184120752132, - 0.05822679972297641, - 0.04208056051652241, - 0.04237528076296457, - 0.05579260526603011, - 0.04781277668779262, - 0.0570005435737774, - 0.03959833360994822, - 0.04660070768295068, - 0.05353687684965777, - 0.04247478557160864, - 0.03421434094915261, - 0.0317902792495084, - 0.04255780342380079, - 0.04654696571946493, - 0.07128051842717024, - 0.04773249540605341, - 0.0594360488852119, - 0.05632890501454638, - 0.0436443681662804, - 0.046432445392098606, - 0.05344997182532704, - 0.044110124372337994, - 0.04739466355289906, - 0.04195875987321314, - 0.050485055686938674, - 0.035231825931641585, - 0.04539551770034332, - 0.042907776420540056, - 0.04420329674080075, - 0.040555749094398255, - 0.04246208140031587, - 0.03549486326546784, - 0.04567571131420674, - 0.04261240465064095, - 0.046639930725459, - 0.05886552050894066, - 0.03819499269383743, - 0.046949081637347956, - 0.04110385172110018, - 0.0493920206497451, - 0.04169535524552373, - 0.042675071626454224, - 0.054377956192601655, - 0.06005187024424992, - 0.04104381312848917, - 0.05001397920008469, - 0.042386224354063355, - 0.038674280416614686, - 0.033365117356897595, - 0.04101250862993127, - 0.04740198093852997, - 0.04589615115056592, - 0.043393858927310416, - 0.04194798941036043, - 0.03976603982615691, - 0.038997008760019415, - 0.052655781390196374, - 0.05680751105635496, - 0.053294687275519656, - 0.04809993626437237, - 0.056361174732804685, - 0.050271264222795084, - 0.048148520697213176, - 0.03707223530625267, - 0.03409431543946865, - 0.0495702220153857, - 0.03714244615211694, - 0.049273482813621046, - 0.04795085678440682, - 0.05465760804032804, - 0.04860519146338227, - 0.044487982296730504, - 0.036496951679781287, - 0.035971567888099056, - 0.05088104952427417, - 0.04207524776066554, - 0.0451085179584551, - 0.04816972951434129, - 0.0484478952244847, - 0.051293253586369915, - 0.06725874194712672, - 0.05488724194762501, - 0.039506538738459905, - 0.041245547360542326, - 0.06528744368219254, - 0.04549163806084589, - 0.04112320785864186, - 0.04390160700796667, - 0.05002996363157522, - 0.05803495231556215, - 0.05153145966361614, - 0.043802420922195724, - 0.06075717689898462, - 0.04596997717013642, - 0.04915799635503928, - 0.05657826761915739, - 0.054119029124437876, - 0.04238127027036093, - 0.06503199875911071, - 0.056483418154073824, - 0.03837232018624608, - 0.039640354545722824, - 0.051528906035925914, - 0.037749781720405474, - 0.04447171298980586, - 0.05003045748605289, - 0.05488005260733826, - 0.037952915462895497, - 0.042853082211723896, - 0.0470040448498885, - 0.04878082397399344, - 0.04319651712364393, - 0.04091896429006093, - 0.050214562611048695, - 0.04638152506881769, - 0.04502834411716665, - 0.056071524622610835, - 0.06027725440197488, - 0.06316934232318867, - 0.055672625747853345, - 0.051498891337573904, - 0.04815391728957577, - 0.04364279378310151, - 0.0460194646201614, - 0.05352561223351427, - 0.05641815232980436, - 0.04426170957003717, - 0.04759112547379766, - 0.04634785149868141, - 0.041029455637927544, - 0.035423875480321027, - 0.05428290057935631, - 0.047090871009529855, - 0.04190922597649849, - 0.040800982590468805, - 0.04740300829051505, - 0.046811130969412286, - 0.05606132817905, - 0.04455778621269648, - 0.044568449515871175, - 0.04773669881924467, - 0.03984939728165908, - 0.044803705573011755, - 0.06558974768028403, - 0.04936007172969017, - 0.04302475327543564, - 0.05237291350263196, - 0.053096689783276196, - 0.03366203626381041, - 0.04932527337928824, - 0.044336253982006774, - 0.04181643048395758, - 0.04476236167144894, - 0.05329238137090603, - 0.06645089303929944, - 0.04580389057239533, - 0.05794082804329562, - 0.04537421757187545, - 0.04699173473745366, - 0.04456932347186326, - 0.04120660667749664, - 0.0396490352928973, - 0.04177806933573599, - 0.04886742800681221, - 0.04967398000888742, - 0.044574528391662066, - 0.060042805447478934, - 0.05100644897825278, - 0.043899132057725894, - 0.045296026616227184, - 0.05567716325105472, - 0.05109527561624891, - 0.04683161381909563, - 0.057612664505783485, - 0.039249854004890825, - 0.04594175634321915, - 0.04499745982135577, - 0.046215644156405146, - 0.04461395254772627, - 0.0437143114067327, - 0.05871395491041189, - 0.05303517803135139, - 0.03764032280420411, - 0.055889973593044616, - 0.05131010652756866, - 0.04027388283378855, - 0.037602656730619945, - 0.04823290583017595, - 0.0492409967236014, - 0.05651827501547918, - 0.04586772329051945, - 0.061626969281984544, - 0.03976383088369782, - 0.0402841213609494, - 0.07362588648695993, - 0.04813808417137476, - 0.045901371626716765, - 0.04994846332431566, - 0.03847826875627223, - 0.03525189559225623, - 0.049935993065315445, - 0.04039236284490161, - 0.044966687483001026, - 0.04959017453112335, - 0.03702835656572712, - 0.06451740028921371, - 0.040010192003754094, - 0.03990289536938668, - 0.0451929930798909, - 0.04159818828487295, - 0.047080237517022505, - 0.04943502705250027, - 0.04091835974241561, - 0.04862444803456494, - 0.04976161999260027, - 0.060197297832692724, - 0.06477638344825358, - 0.04587084768006845, - 0.05251223309302971, - 0.05006090380872862, - 0.05296534605269633, - 0.05644895411298312, - 0.03932205366350276, - 0.03527957066725124, - 0.048535879638483936, - 0.04729249150097235, - 0.041680337756355344, - 0.06107774944039792, - 0.055687047048197054, - 0.036825417639116, - 0.05402300634130637, - 0.040724301241360575, - 0.04281184422156104, - 0.052196521241637935, - 0.04728996951466687, - 0.04316084888686395, - 0.04367041574469611, - 0.052816055896153166, - 0.04670438443709383, - 0.04469164081566282, - 0.04893587683982969, - 0.06095831037601088, - 0.036357813955961715, - 0.051791019354540675, - 0.03859702886009794, - 0.045343422045155186, - 0.034626802042862545, - 0.05192758337155455, - 0.04925918229081112, - 0.041658369422994855, - 0.040187027734229434, - 0.04629344449998145, - 0.0406846044732104, - 0.03666708614538329, - 0.05627942589501684, - 0.04851737402189095, - 0.04578363526693654, - 0.038216493069834406, - 0.043381304946482104, - 0.05926435331920976, - 0.05323107388498897, - 0.04027516319208008, - 0.04216746004315932, - 0.04258444786708307, - 0.04246740758386103, - 0.038502044200276836, - 0.048149296398936225, - 0.04955142820427426, - 0.04056750637314539, - 0.04067369220019334, - 0.04639780464903813, - 0.061796561753874095, - 0.03955345437946351, - 0.046215412647409006, - 0.053115161214318626, - 0.05667232253492283, - 0.05061623738471724, - 0.041949421404927974, - 0.05200488581708626, - 0.04781929491022881, - 0.047859796089902276, - 0.038952238374224055, - 0.048240080751199815, - 0.03767372346645622, - 0.03574510358316386, - 0.040064584784111096, - 0.054950567128165276, - 0.04417303561344488, - 0.06069777718260055, - 0.0518616558148186, - 0.048034793548047634, - 0.05363581877689056, - 0.04350232953413163, - 0.05201523285726535, - 0.052855709737005985, - 0.04227140926896966, - 0.05344492007951235, - 0.04126177650956686, - 0.05024571537621175, - 0.05108385116390369, - 0.05093186184555393, - 0.043793569096045926, - 0.051938186186523606, - 0.0358594615958194, - 0.042661092954800334, - 0.04337662974377576, - 0.04634125449002307, - 0.05396300405391587, - 0.05806116137142104, - 0.05576538759602171, - 0.04609170386652163, - 0.04238022704371396, - 0.06445512344488533, - 0.046772986392353576, - 0.053653748192795635, - 0.04947712713116021, - 0.044682042567988065, - 0.04347472330069597, - 0.040218928876685954, - 0.05351839716213206, - 0.03709039082849319, - 0.04965093235612237, - 0.04851783090277026, - 0.051522073639858945, - 0.059520905952047204, - 0.03938187424984419, - 0.036562299933337324, - 0.0499874106137428, - 0.045131164031521814, - 0.04586075242420621, - 0.042773051939555766, - 0.044009764835906136, - 0.04139630761542554, - 0.045567817834810835, - 0.05072803603389049, - 0.04632322887846513, - 0.05113356893930291, - 0.042256067435065846, - 0.047353467399874026, - 0.05322019221648131, - 0.05077491126959527, - 0.03703493032837879, - 0.03492120291951167, - 0.03868901935750164, - 0.05043743894194113, - 0.042676885037424596, - 0.0416133681148275, - 0.04395545478357435, - 0.043398912793776695, - 0.04020836832718098, - 0.03834360329606667, - 0.03631793286349436, - 0.05546580552852417, - 0.040168510461192956, - 0.047079107276033164, - 0.04355316557765559, - 0.05112605775097038, - 0.058189898188392694, - 0.06189786078047542, - 0.05179513519769146, - 0.04677058886898873, - 0.04926261900340616, - 0.04614507768753958, - 0.04942452391590718, - 0.04793382745665076, - 0.06205193034004292, - 0.05321839316145217, - 0.045204203219282625, - 0.045305301165795224, - 0.04861120299077978, - 0.05508096266367078, - 0.04017928741599274, - 0.04865938613555088, - 0.03700616250741056, - 0.05757325862858236, - 0.05022402486640544, - 0.045155092208282885, - 0.037697979364866116, - 0.03870427419197695, - 0.03956929374557381, - 0.0345665595064656, - 0.05213616968301539, - 0.0436239866510008, - 0.03850044477310851, - 0.05177422097412726, - 0.03793813579264624, - 0.06930261109370359, - 0.04611996359334608, - 0.03681274839867397, - 0.0446688675936881, - 0.053817504097813225, - 0.05162348447947246, - 0.04352226780570223, - 0.036748568145073573, - 0.05041573564780013, - 0.051315658861477466, - 0.056401043416253495, - 0.04338425599817405, - 0.046034459978000014, - 0.04068286517160327, - 0.04135457425934717, - 0.04929999659131981, - 0.05183486003863792, - 0.047526677993111326, - 0.04147045972101494, - 0.05050963657898871, - 0.04513592762782528, - 0.04119389364218156, - 0.05420826247238544, - 0.054176689209340566, - 0.051358241484911485, - 0.040027950229702625, - 0.04692435477133298, - 0.04063988059098274, - 0.031877842737112534, - 0.04686444056924539, - 0.048703946290398925, - 0.038284478015300855, - 0.04873360841229848, - 0.04673895071108055, - 0.05042111286506122, - 0.03975268764914096, - 0.05168087049160423, - 0.038869771537480495, - 0.04196512552356611, - 0.05217125595618196, - 0.05303082147355326, - 0.035699640146222476, - 0.03581683255794542, - 0.03958753637027233, - 0.040445978640076076, - 0.05298596437451905, - 0.04882674210311732, - 0.053898385295079294, - 0.05922089814909926, - 0.04903881034052626, - 0.048356579993235047, - 0.05564992915341666, - 0.04394963290853094, - 0.056963279700322916, - 0.03743186408749249, - 0.05215038263523201, - 0.04088072728009428, - 0.0414084392169447, - 0.046141774622944484, - 0.04497584784820814, - 0.04377702240477008, - 0.043026795918061064, - 0.04511369625577695, - 0.03174314836781477, - 0.047709478223122534, - 0.043290202520162746, - 0.03452095796553967, - 0.04611157688069397, - 0.043017807778827306, - 0.03916404242286411, - 0.04840972439180309, - 0.04013105957165617, - 0.05210992652428849, - 0.03734757957004105, - 0.059754566068910435, - 0.03785666686812961, - 0.044354116533767876, - 0.06806612906394145, - 0.048914139372935275, - 0.04629143874714043, - 0.03760816634301466, - 0.0452730101975151, - 0.045462765750321245, - 0.04625663900360399, - 0.045458529292082, - 0.05333450934436608, - 0.054142248577322645, - 0.04123548308262721, - 0.050603734327841, - 0.041695764208854125, - 0.0403286095017367, - 0.0389373923130943, - 0.052203543290839795, - 0.044043635382690516, - 0.04017368703127489, - 0.04554945169119097, - 0.03308793836321273, - 0.05022729001384214, - 0.05771911933590204, - 0.04237239399230223, - 0.05161960216635911, - 0.043638572558707886, - 0.05684750375788698, - 0.04929159489681486, - 0.059762534883306594, - 0.05498363209978828, - 0.05580578295259145, - 0.045874987779808786, - 0.041313204007262114, - 0.04865719460177967, - 0.05447135561075617, - 0.04233132204694438, - 0.06612670803240832, - 0.04976237625158495, - 0.0530410343114474, - 0.03831704698382851, - 0.0502343871374866, - 0.04688816255602874, - 0.04424648559074078, - 0.05092936641895316, - 0.054843391260857244, - 0.046246076817004864, - 0.04162078364069829, - 0.04368617030079233, - 0.0714968907045944, - 0.047967037838637, - 0.05644687348676008, - 0.04342133853818561, - 0.05196910673558007, - 0.03918264787493723, - 0.042987490967000955, - 0.04199587248455268, - 0.05101002432337444, - 0.04677066295411278, - 0.051002862239573364, - 0.042538238584811316, - 0.0459990904763458, - 0.05100154685082847, - 0.07640551682196861, - 0.040086228768863245, - 0.04053328330301778, - 0.04416660984660224, - 0.03776591474554836, - 0.054153084054510636, - 0.03967509902964108, - 0.055179545495637305, - 0.04778624991277972, - 0.05376974506731766, - 0.04035074442939918, - 0.054558741138903216, - 0.06109870529400047, - 0.046361291732874316, - 0.04813550467852171, - 0.04288282407581398, - 0.047549417028146655, - 0.04062355712785014, - 0.04078198196128162, - 0.043768002611895764, - 0.0450453788352284, - 0.03543404227313847, - 0.0371015606399151, - 0.042417422855968466, - 0.03990107043178202, - 0.04153157887632646, - 0.041774071532352006, - 0.045524174799050555, - 0.04540356983463531, - 0.044266091975788936, - 0.04585289264005529, - 0.04384157439306082, - 0.04510698670147896, - 0.05604448529817501, - 0.04037588315604102, - 0.03964925310217636, - 0.04129411906196193, - 0.05988061833601801, - 0.07419503889164523, - 0.0605218470602241, - 0.05502491016360542, - 0.052817152921631215, - 0.05236816690242299, - 0.052343192845982066, - 0.040376356909782536, - 0.04045280547054256, - 0.04638245349380063, - 0.05289149421917198, - 0.056741495540654295, - 0.03297534821382655, - 0.052657820471686746, - 0.04863016825908334, - 0.05205541203650761, - 0.03980176209417003, - 0.0488531172173745, - 0.044161822519005786, - 0.045178267828584646, - 0.04033842179772416, - 0.05552984713694569, - 0.0471280864121129, - 0.04588642496658769, - 0.05154493701781719, - 0.06275354535037024, - 0.036100769109029526, - 0.04443793058834392, - 0.046137169441240425, - 0.044230144790803554, - 0.05869837488535454, - 0.05071938586027825, - 0.04936794838858237, - 0.03865496987583472, - 0.04759419298833741, - 0.051740512589749585, - 0.05658720978560349, - 0.04420540931229654, - 0.06274850876534606, - 0.053984215488162256, - 0.05048171608927052, - 0.04648559172046201, - 0.04032668159947574, - 0.0466146178797614, - 0.049879650718794445, - 0.04897309667915346, - 0.043864134197430946 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgb(206, 220, 249)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 0", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 2.2688418818621128, - 0.20942856618647607, - 0.07193666036699466, - 0.02793478879292312, - 0.03309019302171476, - 0.034029001634891066, - 0.031623137022043266, - 0.034624198085596955, - 0.02806302056270541, - 0.031885503284855565, - 0.032136527250028114, - 0.035138776221621676, - 0.03594378944493073, - 0.027166908894777776, - 0.02837501635001386, - 0.03151542630875384, - 0.04044544708599811, - 0.034430505889793704, - 0.03167009793170546, - 0.02854793389756897, - 0.042387778378861214, - 0.030412668042728134, - 0.029843725770545882, - 0.03311856022671304, - 0.030265995837668355, - 0.03163530929733342, - 0.03786034095173464, - 0.0349125291065957, - 0.03488795831607344, - 0.03432621478462303, - 0.026917161780880487, - 0.027916595400950903, - 0.03312990501743296, - 0.03215633918816755, - 0.039902958482348816, - 0.026083468185669426, - 0.036318624960360306, - 0.030607834442702892, - 0.03464240129547442, - 0.035171079108155805, - 0.03248190626340975, - 0.029313853642905053, - 0.033428316339605454, - 0.0320908013171458, - 0.03719883359094956, - 0.02986999415513876, - 0.041165649100398036, - 0.03467753530521463, - 0.04014003736520182, - 0.041891550710587096, - 0.03817188904243747, - 0.05075135597159439, - 0.03950796851788342, - 0.022657984838060773, - 0.028334451406826167, - 0.0279036821937131, - 0.03125401767193793, - 0.028804844288407454, - 0.028388288158880108, - 0.033813616246288716, - 0.028954786550282805, - 0.038231580456041366, - 0.035310780883717065, - 0.03418743117715736, - 0.0316617322848646, - 0.036639750101028996, - 0.0409206972546628, - 0.03242400049424764, - 0.034175481295951236, - 0.04151428116473829, - 0.02977086723255998, - 0.03360139038658204, - 0.03685063846646285, - 0.03236883031120962, - 0.03222119089363838, - 0.042451544602575414, - 0.030243862110632173, - 0.049423713119666694, - 0.045779754005749386, - 0.03726124955190462, - 0.03303507611492472, - 0.028389139671846673, - 0.03086896796200758, - 0.029049950672590103, - 0.023172912034884856, - 0.03249551171315656, - 0.028322809496740056, - 0.029889043859847, - 0.029297819841011267, - 0.031152797914469187, - 0.03550828062877206, - 0.022509499226644757, - 0.03602228672905339, - 0.030544305738816245, - 0.03518067772316722, - 0.037637810742945546, - 0.02913973794045108, - 0.03150452129371562, - 0.03138750521598475, - 0.02523394420176119, - 0.033860631362682726, - 0.02757607565521247, - 0.034022290839124204, - 0.024080678140990026, - 0.03780460347181886, - 0.029090213844231494, - 0.02664653134018111, - 0.03718159567799544, - 0.0396755931804341, - 0.027658997939733313, - 0.03572504606144258, - 0.032736955812034334, - 0.028541176661321437, - 0.03538783662906179, - 0.026689417229373538, - 0.031641283485770506, - 0.03306479920030972, - 0.03132325490754045, - 0.025947947211463502, - 0.03370501610856448, - 0.04146602346717048, - 0.03748240262988657, - 0.02712747210928747, - 0.03338798196140233, - 0.032300568425813775, - 0.03234035542335887, - 0.026209051199255044, - 0.03353014922266476, - 0.030302900252364446, - 0.029767576327703226, - 0.024863851413955557, - 0.03485050684649815, - 0.028221744923075266, - 0.02996457950102885, - 0.026555133286828785, - 0.03992633434311574, - 0.03057750366768845, - 0.03442272396240244, - 0.029007145938818493, - 0.026186955195307473, - 0.027305329478329733, - 0.03010669342939232, - 0.03504565461763839, - 0.029062734493195762, - 0.029853689272590526, - 0.029121889220936517, - 0.035258053303233124, - 0.044136985416854395, - 0.023267860310332684, - 0.02926542215904182, - 0.03493752936842837, - 0.032823721558037665, - 0.03715550306501626, - 0.03125459065080018, - 0.026787771317182824, - 0.03557604418563213, - 0.03282172444092911, - 0.027200983115025102, - 0.03707059394823937, - 0.03815066785670759, - 0.03790293535011689, - 0.026662831815094698, - 0.03740271981720423, - 0.0306635869372864, - 0.034010631469610246, - 0.03149653107093526, - 0.03357642241822277, - 0.034053789111569886, - 0.03800110844417549, - 0.030272938301175792, - 0.02842230245407835, - 0.028313927252154546, - 0.028899122786035982, - 0.023354697605782827, - 0.027934034835935855, - 0.03242578232092703, - 0.03642497055844531, - 0.03159213795061318, - 0.029198728914927467, - 0.02804818299304596, - 0.03344100502261053, - 0.02862939865288714, - 0.033947755121227455, - 0.03243604592824849, - 0.029660372446246256, - 0.03572823146191366, - 0.03648118807942512, - 0.03252695513925945, - 0.03109186291005572, - 0.026333481374707264, - 0.028113477625427256, - 0.03723380716282238, - 0.027439771036923046, - 0.02886516608966294, - 0.031375746389549694, - 0.03169754875139997, - 0.025694055282501772, - 0.035268257913921096, - 0.03271014963877657, - 0.03591301951640469, - 0.026450864725508758, - 0.02909634298130788, - 0.031236720854347005, - 0.025005957832344102, - 0.03844036857773176, - 0.03496909984635985, - 0.026897805228689686, - 0.04213906993308156, - 0.0375746746867391, - 0.03789587953101983, - 0.027105382412644735, - 0.03133101641244209, - 0.031255577770718954, - 0.034127678977883845, - 0.02907942879515376, - 0.030011807958499302, - 0.039234274331280995, - 0.03435672908552569, - 0.0315148342436473, - 0.04068791982541467, - 0.02773396713084737, - 0.03458408791580978, - 0.03824562405013859, - 0.0354567227457863, - 0.034343319322559386, - 0.03100664576283332, - 0.033239677812322184, - 0.0441024250702993, - 0.03211729666377758, - 0.038684844080043614, - 0.03426959395852969, - 0.028642084754919882, - 0.02397331945888001, - 0.03319931311176355, - 0.042391256972593244, - 0.04071836917919252, - 0.03400735654254229, - 0.02985271113429017, - 0.03622497583833479, - 0.02897608544015275, - 0.03004069371497917, - 0.03351761681210801, - 0.03301125687787307, - 0.03272915343865823, - 0.03956111124899316, - 0.03673279167889204, - 0.030605712705435804, - 0.049503121849148804, - 0.04492066027501061, - 0.029637819510253828, - 0.028040090633041706, - 0.03166804588371712, - 0.02646802572664732, - 0.03453943450482804, - 0.030831910086858455, - 0.03271041278038208, - 0.03349896770540708, - 0.026522373789678554, - 0.033760155130385605, - 0.03580875427756024, - 0.030712298190607123, - 0.022920650178011738, - 0.03634589576947657, - 0.03604949363737594, - 0.030075406327524264, - 0.028203580140327728, - 0.031726462707408254, - 0.032805875005457785, - 0.03584594681146556, - 0.046738773876877075, - 0.03615973230873567, - 0.04318743771642695, - 0.03585174989479966, - 0.025355338303501916, - 0.03633747808575412, - 0.031411939513397186, - 0.03271857203329095, - 0.04962076176643007, - 0.02982431821069896, - 0.030654319531230725, - 0.03371010097190044, - 0.04057674888098054, - 0.02739762522120983, - 0.03056486921513782, - 0.03789327500231071, - 0.026480806032155395, - 0.030221521411410428, - 0.03046322026631066, - 0.03118304408165836, - 0.03331685077885848, - 0.03480906071425389, - 0.03479089980180387, - 0.02949698692481071, - 0.03169180704427651, - 0.0351295627332948, - 0.03395613577688359, - 0.03775942442447763, - 0.029272358538450748, - 0.026610328136197545, - 0.033722041788785524, - 0.03254809938061807, - 0.02961314278407347, - 0.033237098919901814, - 0.030259616277001727, - 0.0355329186244772, - 0.039846494203514805, - 0.03273124523074972, - 0.026885755867624133, - 0.03610144769032047, - 0.032492545430774566, - 0.029224615146042094, - 0.03617926563620081, - 0.029808026565396745, - 0.03752574832772226, - 0.02796687355346073, - 0.030027651803112218, - 0.03305696545881511, - 0.031373114366256685, - 0.038492637978623956, - 0.05192644381346444, - 0.033175347378107484, - 0.039566993468463846, - 0.03214461386909933, - 0.033014192918864566, - 0.03259251248405111, - 0.02640229359668249, - 0.03427970308130897, - 0.030799870399562602, - 0.03595946780808553, - 0.037001105411090786, - 0.027903599955834878, - 0.025971323345605077, - 0.03436421437486801, - 0.026938998719385772, - 0.03024804512095287, - 0.03486050797234746, - 0.02923495989691274, - 0.04224014582377041, - 0.03138629432108581, - 0.032687429026794924, - 0.02806156265726811, - 0.02902426608538399, - 0.03642475390866445, - 0.03643904255205033, - 0.03896899216448818, - 0.03932062868851294, - 0.03404704958347832, - 0.027313274519132846, - 0.031722955433245464, - 0.03272361695120961, - 0.034778534745524795, - 0.03086041397534438, - 0.02719434104117341, - 0.04252402243070987, - 0.029929513142338285, - 0.024852952045719922, - 0.028742656300320673, - 0.0437240096175914, - 0.035629583343354705, - 0.03450196032395864, - 0.0344598578078978, - 0.038653403271632386, - 0.027843005663034593, - 0.0375125628475139, - 0.028618248534598906, - 0.026736611938227576, - 0.03095017348496659, - 0.03638637571685208, - 0.031119321862695757, - 0.03239005298926282, - 0.04257064945142962, - 0.03444057531407688, - 0.02941147928403351, - 0.036210945705888536, - 0.028858071024022058, - 0.03739651680252323, - 0.03771183831365126, - 0.034091582607324276, - 0.0287694901026827, - 0.02896189078767344, - 0.03155860849635589, - 0.02662845153554702, - 0.030231993971893963, - 0.03377436028069806, - 0.02881633620606646, - 0.02941422996963138, - 0.02939146750960384, - 0.023217294864207868, - 0.04630820291286833, - 0.026667915124790803, - 0.035071426934903255, - 0.036612465941959195, - 0.0320708293233882, - 0.0370773448994279, - 0.03143318727411901, - 0.029762981446836367, - 0.02724942538857535, - 0.03303904484267776, - 0.028633163733462055, - 0.03968464905502619, - 0.036043818217698524, - 0.043484456947742736, - 0.03095118895494879, - 0.035161991381922525, - 0.03429318095993552, - 0.031397602718692276, - 0.04407809270999247, - 0.03148399540127236, - 0.03782196065349451, - 0.03909344477629556, - 0.027785328463470774, - 0.02923922201291257, - 0.025134911563785913, - 0.029754346677085975, - 0.03423560228671215, - 0.041689249154382976, - 0.036039276568095434, - 0.04004441884738741, - 0.035138882277349875, - 0.026764806309568595, - 0.032434024015961245, - 0.0352184845372592, - 0.0423327163276466, - 0.02939881226683241, - 0.022764338266817737, - 0.03384034309807925, - 0.027166617181261968, - 0.026198553693582524, - 0.031097991726263992, - 0.040522989608778565, - 0.040767326657552276, - 0.036531612943313495, - 0.03296991311622532, - 0.03618390299107675, - 0.05339327796802904, - 0.030084923074484335, - 0.03508625897601147, - 0.036110950597009216, - 0.040828760497893024, - 0.03213177952536104, - 0.03631699322008159, - 0.03184557021437032, - 0.03731740711610898, - 0.03448663699811291, - 0.0280736410637436, - 0.038550876946980964, - 0.030155815865799705, - 0.028012454756155512, - 0.031656851936133365, - 0.03502559123838594, - 0.04634735834412311, - 0.03150881328403583, - 0.028571413783275795, - 0.02965416734934776, - 0.035365113475505354, - 0.02220458221536197, - 0.0287267212551508, - 0.026585422501504138, - 0.030715706432560563, - 0.02639031142942087, - 0.03491076564162012, - 0.03358301362514954, - 0.02724885683863873, - 0.02610907006591601, - 0.029963422651147424, - 0.04372605937338352, - 0.02752173682390127, - 0.0237362037883865, - 0.033776082249032204, - 0.027855530851847606, - 0.03246775692202799, - 0.0288369155043034, - 0.030785435580811902, - 0.033549102325206914, - 0.02808600087148047, - 0.031244195646248935, - 0.033579641885604646, - 0.04705010864475634, - 0.03749589918401848, - 0.04339526453037386, - 0.033759077264494085, - 0.02714014974134812, - 0.032346313899601714, - 0.03928493889100291, - 0.03925114623188379, - 0.03359988092550815, - 0.03754240644550272, - 0.030534075709898453, - 0.03466510457982124, - 0.0323226626651891, - 0.036207432101866055, - 0.03404743843726989, - 0.026399662451797267, - 0.031676563835460074, - 0.03723265757756145, - 0.034916042907177744, - 0.03428617629200277, - 0.03162674955767201, - 0.027719929097004884, - 0.02872082635774138, - 0.0375399955257055, - 0.033789286670646186, - 0.028272655461895214, - 0.03454571074936237, - 0.03452939980360844, - 0.026351381514896622, - 0.03255883250192658, - 0.037197325966072524, - 0.03781720976610971, - 0.02814776214187721, - 0.023401325275385586, - 0.02796442694924033, - 0.028910342980007175, - 0.02770223978431602, - 0.02876795364347726, - 0.03548621854539939, - 0.045477503112145615, - 0.02668555924491541, - 0.026084011660933507, - 0.023434315551993573, - 0.036675278602322475, - 0.03469381661924835, - 0.026528650944348326, - 0.03192928008027028, - 0.03198408340249483, - 0.026429335630000526, - 0.03458698549027544, - 0.03154116474121876, - 0.030478906602118272, - 0.03381984683288009, - 0.03701940609871192, - 0.02883217131072375, - 0.03495511520525675, - 0.03515062816654829, - 0.03698549647483503, - 0.0315329292279909, - 0.036749311634936235, - 0.028507237798130993, - 0.0303782188218576, - 0.03126429519422807, - 0.03340112337460025, - 0.033988297556280855, - 0.03869961797459089, - 0.03092426024095065, - 0.03299599556048297, - 0.038981118081319786, - 0.030804185028223432, - 0.039316599189402036, - 0.031622348175709344, - 0.026773479382559178, - 0.03398323179310139, - 0.032164857861503984, - 0.026529423189682728, - 0.035960811688826345, - 0.02937204465195421, - 0.0313563779092793, - 0.030217625515594326, - 0.038665170335733114, - 0.04391373300201169, - 0.039122940783080644, - 0.03229942950585134, - 0.0339839582189528, - 0.03404659791048845, - 0.04070072757910385, - 0.028681558936656363, - 0.028433979374797597, - 0.042869199644066505, - 0.05576622251801386, - 0.02821621709313557, - 0.03295317757619741, - 0.03756929958866847, - 0.038897908785613056, - 0.03241752394276302, - 0.04204881488950069, - 0.028532082228080426, - 0.025369146527322133, - 0.034071108833285256, - 0.025584070797146998, - 0.029665531045069228, - 0.028259913116696803, - 0.029351405397484143, - 0.029125759247218195, - 0.03307555779651078, - 0.03335020977777346, - 0.025533188180288335, - 0.029982588013314767, - 0.027703718585163236, - 0.03109943571418783, - 0.022751905898435752, - 0.031128929092848402, - 0.037164670210120966, - 0.03683612216309883, - 0.03434054593494823, - 0.02912644787087519, - 0.027870340376006462, - 0.03276531911503535, - 0.03522621273059333, - 0.03639247858344851, - 0.038421497354599723, - 0.03474084190171368, - 0.039873903273150685, - 0.02808081601417897, - 0.027493699687552543, - 0.02375585600375497, - 0.041800946236895654, - 0.03023931120616721, - 0.02624559438286925, - 0.028604433525624005, - 0.032937600650744095, - 0.040940873313872896, - 0.03201622926294702, - 0.030686179892786956, - 0.027524367095918854, - 0.03724940845523558, - 0.028432625936998558, - 0.028553553300080945, - 0.038762138656045206, - 0.0445253690215742, - 0.033694726896515786, - 0.03280766352725477, - 0.033508051218406505, - 0.035975097267020514, - 0.03452233001409099, - 0.02983363279350842, - 0.03225784331936064, - 0.030489754324991014, - 0.03639095376391405, - 0.030185330642285083, - 0.03253796504207777, - 0.032453049925103464, - 0.02795079279505759, - 0.028922434327956582, - 0.0299976168169841, - 0.026891624483432765, - 0.03493227184785171, - 0.036279906573769824, - 0.03920227355682231, - 0.030840068062786562, - 0.03525719995705222, - 0.036098822611566, - 0.037125949837380545, - 0.030585581746143783, - 0.032934614801331835, - 0.029566748672625657, - 0.03284359156377429, - 0.0404847297421219, - 0.03556526884453952, - 0.0357101382153417, - 0.036095017493576076, - 0.031492934620482194, - 0.03862796677921177, - 0.028693859195386768, - 0.032314380222096525, - 0.0368199440108542, - 0.0364206056478409, - 0.03904769426973834, - 0.030258051953277576, - 0.03723933965118551, - 0.02918367682364774, - 0.0362576207319164, - 0.027634476808214077, - 0.028436221859301426, - 0.033270891605541565, - 0.02671489152048046, - 0.03198633757071894, - 0.03184858013451267, - 0.0292143760057243, - 0.029831239576184998, - 0.02941871351764566, - 0.033996670029128956, - 0.038059884872664124, - 0.03916878624612567, - 0.025059954282199533, - 0.045649833373155035, - 0.0323098807391344, - 0.03375903912376174, - 0.024651137046128757, - 0.04464476678669364, - 0.03611611206150221, - 0.034826468523024644, - 0.039384141985077004, - 0.03190922858815702, - 0.027900893035103857, - 0.026492920489979557, - 0.031552253742208915, - 0.028031010899048935, - 0.025802258558073853, - 0.026656961701449853, - 0.03982283839335208, - 0.03909628302539821, - 0.037635419501209424, - 0.031708874940680906, - 0.03180950601902787, - 0.028604384652483966, - 0.02916855081980481, - 0.025008124775223885, - 0.03642629010413244, - 0.029040276866962804, - 0.03335940552529032, - 0.030881269171844562, - 0.03411785483439003, - 0.03291370944067005, - 0.03258407465323753, - 0.030905908910093188, - 0.035974913298742965, - 0.038486706946048325, - 0.050946916552558584, - 0.040819679659526674, - 0.03414726303410229, - 0.024145179076532138, - 0.036722504920117284, - 0.02591264097337906, - 0.03283894524427492, - 0.03463790439989575, - 0.030601120798664967, - 0.06799804093825182, - 0.03296569666251481, - 0.030047644247894294, - 0.03804069693412401, - 0.046640127452035815, - 0.027497431396331404, - 0.03595845271819394, - 0.033165403072014155, - 0.0344205596632656, - 0.031146463282626227, - 0.029653798859580378, - 0.03144456092089261, - 0.03506425259089114, - 0.043601317135176496, - 0.03890762133859642, - 0.03494266699395083, - 0.034188996891270466, - 0.036230819124555176, - 0.03113009315375748, - 0.02732279631733377, - 0.028184927938031495, - 0.03414378066332184, - 0.030951686097787524, - 0.040449255417522964, - 0.02873742725876695, - 0.03721063742154015, - 0.03762810226459135, - 0.03259816516599597, - 0.03347979547084031, - 0.03272762575118372, - 0.0324059916434395, - 0.032220728851836036, - 0.03953246812660503, - 0.03490647403547386, - 0.03845931149566052, - 0.029283501923010272, - 0.03156931897396243, - 0.02846883499189473, - 0.03482277783684952, - 0.04285616029303715, - 0.03242050416325331, - 0.031845015076906645, - 0.029764280311036583, - 0.03118166302035038, - 0.054923764604792404, - 0.02985224916300063, - 0.02692390244804952, - 0.031550690282792365, - 0.03478132622664957, - 0.02916564303961586, - 0.03251085939554864, - 0.027420665722429956, - 0.029883857430229085, - 0.04189757276554109, - 0.03609945023885156, - 0.03369653405562281, - 0.03403619213936888, - 0.031937728526897594, - 0.04086120139379131, - 0.02794023886597354, - 0.033893886509920625, - 0.038180602049467716, - 0.02898707523286101, - 0.036988675905421646, - 0.0280854071657025, - 0.038240221797292195, - 0.028624260466653766, - 0.03688798288529755, - 0.037142019361743286, - 0.031915393305045614, - 0.03221458530619149, - 0.041587261694535554, - 0.03443509862639882, - 0.04289038723135788, - 0.03283290233744569, - 0.028059396095420897, - 0.029067296153047366, - 0.04202688114952976, - 0.03764748508503088, - 0.03552027218177451, - 0.03540683661769986, - 0.03722479716610307, - 0.03618094322313147, - 0.031013898287701853, - 0.03444849261366409, - 0.030908153832215707, - 0.03109456312894571, - 0.03294126280153425, - 0.032855609518220585, - 0.03290277649954692, - 0.031245309512797536, - 0.03391671194975426, - 0.03074004646243131, - 0.03175693168452985, - 0.040070389717975566, - 0.0335344526745406, - 0.030781337017633657, - 0.030415256816224194, - 0.0348460685518996, - 0.02986778183958961, - 0.04987102040728923, - 0.02943018074312033, - 0.025930080779046228, - 0.02540229440159571, - 0.03758340297657391, - 0.031044550431696814, - 0.035390419308448544, - 0.03855603794451745, - 0.028148851879928126, - 0.03386512724839303, - 0.031289169501981115, - 0.03265824691054524, - 0.026599042930687006, - 0.03698366449533294, - 0.036070043370981096, - 0.029501523659144196, - 0.04461425659232648, - 0.03583347411903439, - 0.03640216557593996, - 0.045389552818849245, - 0.035508645363426634, - 0.03434633197739508, - 0.027041184483095056, - 0.041145528087961084, - 0.03511382659365107, - 0.030544548198046622, - 0.033360532706626575, - 0.029431241083905667, - 0.030982231976140938, - 0.05306373133601579, - 0.03596980263637416, - 0.02403615236140704, - 0.02895292077446611, - 0.03113397626630894, - 0.025959209182791376, - 0.02959076099720797, - 0.03302139586713075, - 0.03428665337106584, - 0.03352037081996666, - 0.03095165745124634, - 0.03653527968988755, - 0.03391171416568989, - 0.030224138022590493, - 0.031777266197540704, - 0.041905822421303446, - 0.031005155780941734, - 0.03475170230486364, - 0.030512826415099503, - 0.041030736065761714, - 0.031403567497844086, - 0.027034335251783986, - 0.026277432687108904, - 0.03521083691558714, - 0.029266583701685854, - 0.0429223222110846, - 0.03371793709087455, - 0.027587125537762266, - 0.02727873703568143, - 0.029409914596068575, - 0.024029072170511204, - 0.03020985910345412, - 0.031830669038865105, - 0.029312089718315327, - 0.03226767975456857, - 0.027629959517071805, - 0.03771323793476669, - 0.03406839444674509, - 0.028851389043380873, - 0.03440455646841992, - 0.03300973177755624, - 0.0409390478847669, - 0.028438042353841966, - 0.02997758162635023, - 0.03480933622952508, - 0.029762840108591353, - 0.027003296447182225, - 0.03582073268243794, - 0.04087534759997696, - 0.02996493839352443, - 0.03806156757273278, - 0.03461185995637986, - 0.030313832246620088, - 0.03445374692808066, - 0.03155185552700438, - 0.02998351373396642, - 0.0292250345508225, - 0.03653018832271254, - 0.03029905589548702, - 0.023628623259591315, - 0.02925625891248556, - 0.04039642824364821, - 0.05254787346565422, - 0.03252017966118468, - 0.02505206524332029, - 0.03129293333773814, - 0.030043287832739934, - 0.03316882956982724, - 0.03651234147255843, - 0.03456469899731982, - 0.030562821951887996, - 0.0286657358466947, - 0.03214269714408539, - 0.030277777983876947, - 0.02960399582548081, - 0.03812164878867232, - 0.027925569621489784, - 0.02935873220842109, - 0.025862138995510847, - 0.030335016911170323, - 0.028515716746665906, - 0.029013526426889317, - 0.0313326104311741, - 0.03106969863875802, - 0.03511589586879334, - 0.032418208202497904, - 0.03333006152420705, - 0.03391820036606567, - 0.036740918639879674, - 0.03475884302573315, - 0.041078869403238946, - 0.02831307214160712, - 0.031899858166899886, - 0.0340519141029068, - 0.03709352132719883, - 0.02960946957293787, - 0.024885532583348177, - 0.02976882929535381, - 0.03891115811478, - 0.029771143035664818, - 0.035963504464608206, - 0.032521890171114176, - 0.04014564667563717, - 0.030593157244355827, - 0.033293132297618475, - 0.030853821495653275, - 0.03067060109446624, - 0.029910447829346383, - 0.03658868812002147, - 0.03539686122593293, - 0.02751089967939915, - 0.043727164043010115, - 0.03213987181460064, - 0.03673572203992113, - 0.030288839911113762, - 0.02986438302810189, - 0.033145081516687096, - 0.03533877299519858, - 0.026677400322840595, - 0.043442936143037084, - 0.055534354517380514, - 0.03813205806037604, - 0.026031540985690493, - 0.030463568772075466, - 0.034082538953792055, - 0.028319307291470242, - 0.03458554909978166, - 0.040990657717192285, - 0.04371134433643764, - 0.03078275882303117, - 0.02939832061359376, - 0.02817843449875086, - 0.039021537766122445, - 0.039079769633969995, - 0.0464373111493137, - 0.044974117081637094, - 0.032383985423736876, - 0.03397070688656479, - 0.038778643046306994, - 0.03116784980025077, - 0.035824025413356435, - 0.03251931078732483, - 0.030952131933077116, - 0.031666952582562774, - 0.031813176484854, - 0.033566327791460106, - 0.034433899381985204, - 0.04149494024478265, - 0.02954587155748802, - 0.03175903891761749, - 0.02475316954102397, - 0.04020890489296341, - 0.032885552625884384, - 0.02509924949389775, - 0.030443324906211343, - 0.029126863520353236, - 0.022084996866002474, - 0.03293921885012757, - 0.03848929716409081, - 0.03523652470173885, - 0.031305785187740506, - 0.026013473607351227, - 0.03361976372063753, - 0.038351289236301156, - 0.03826974404151151, - 0.0474777536206094, - 0.027595646023159674, - 0.02729404053068558, - 0.033479423785456694, - 0.038766923894762495, - 0.028268166199184246, - 0.03791177365913327, - 0.03568520300585386, - 0.0283907934963855, - 0.028167807004409306, - 0.02411006973619098, - 0.03192262503369728, - 0.02813901768922766, - 0.03367157340464131, - 0.03628475143662623, - 0.02645165889422768, - 0.03404539972508347, - 0.028099190219752032, - 0.02724218703425856, - 0.032321612991491486, - 0.024499270506161727, - 0.030375698483421955, - 0.030234261911082347, - 0.03190504709784548, - 0.02956077329063141, - 0.039307103411469126, - 0.03590682627659257, - 0.030586424340176433, - 0.03319939929686399, - 0.026373172613751713, - 0.039896740825503076, - 0.04230008838747398, - 0.03789543973694744, - 0.03451386842059597, - 0.03377316340995557, - 0.036333452823131815, - 0.03339114616306634, - 0.0295170707535449, - 0.03965440995455172, - 0.02816699830536136, - 0.027739599947886915, - 0.02922467201268944, - 0.029209012574054238, - 0.03467356555627656, - 0.029796824388144592, - 0.03131611919408124, - 0.02946251777674889, - 0.04475358731666645, - 0.03835211029262116, - 0.03211660888465781, - 0.03328549653222209, - 0.029914624797553347, - 0.026944122206858125, - 0.032697674551756414, - 0.028051395729684934, - 0.03173095650839452, - 0.03948745216704709, - 0.02568263733681386, - 0.03799982683707029, - 0.028579246314174342, - 0.02950056855064885, - 0.027589595931173414, - 0.027688038460516224, - 0.03233774710675333, - 0.03994054047785219, - 0.03495452740660009, - 0.034350170846179896, - 0.02895821789969023, - 0.030200043723135162, - 0.034996388959593554, - 0.025622486914867723, - 0.035370519460975684, - 0.032417440306108665, - 0.05322028365599983, - 0.033252291488041354, - 0.03889936795157771, - 0.028046907955014785, - 0.03666734046692952, - 0.040399115829562286, - 0.04186665898335543, - 0.03327373988722242, - 0.03248844285159633, - 0.039794401833504356, - 0.03298078554343277, - 0.02500479608671023, - 0.03693444239642203, - 0.03788876664497907, - 0.03139607166908431, - 0.02868383402259015, - 0.030150527517188764, - 0.033411929782428317, - 0.030230642228896043, - 0.03163749051429152, - 0.03319883435773759, - 0.028799022935003686, - 0.030643653707062925, - 0.034473467761971785, - 0.034299861911761056, - 0.03578470274244906, - 0.03147674513956195, - 0.029886238342183267, - 0.03651416509145945, - 0.03466310396700184, - 0.037202810821714075, - 0.03378260814977904, - 0.041026394720658894, - 0.034231872019260486, - 0.047720770846386165, - 0.04221351490775427, - 0.03863001334997792, - 0.02542551990963971, - 0.0506612311699943, - 0.03499486007534971, - 0.03460654254707504, - 0.029888310992408552, - 0.033575951838003, - 0.03418362013898446, - 0.028917533844529823, - 0.026760695704356005, - 0.03750076127798096, - 0.034937234138281044, - 0.03651467853704308, - 0.031908110685268234, - 0.03102385381527358, - 0.03204186087070638, - 0.028646300077600533, - 0.03415574714391062, - 0.044849566099531446, - 0.03694268335325384, - 0.022897602230457205, - 0.037393501131947296, - 0.030096772681475294, - 0.02679149144412852, - 0.03188476543191755, - 0.033210812540258594, - 0.03710950673207818, - 0.030824136886671783, - 0.04765579532746531, - 0.03084615450645385, - 0.03643555190280026, - 0.027362825856217254, - 0.0443867709572888, - 0.048106129556160684, - 0.028127182119563658, - 0.033205628491357504, - 0.03377192431232135, - 0.037194136527779656, - 0.04256834281590993, - 0.04738470983149801, - 0.02943302008705409, - 0.03906401404341473, - 0.03094334738270926, - 0.027814031382195632, - 0.03210948419655237, - 0.03400254073555083, - 0.03722528488443112, - 0.03012351436452513, - 0.026947815078331286, - 0.029568617804897702, - 0.04069199277160946, - 0.025845589579137327, - 0.03497875670019438, - 0.031118241481441555, - 0.03318446940748425, - 0.026949748897420123, - 0.028774802811445267, - 0.0400362054052737, - 0.034167069475705455, - 0.03053495428935639, - 0.037450928633146925, - 0.037146701313566545, - 0.033842888116113495, - 0.025533130681847573, - 0.03541040187866786, - 0.030601689782871665, - 0.030971071483152247, - 0.031204395528406977, - 0.03713595346208901, - 0.028889867252323207, - 0.030378580289351368, - 0.0261081157748381, - 0.03506959868292491, - 0.03313822376399753, - 0.03508299623571994, - 0.039359194779210835, - 0.031907661899730724, - 0.030143282089886706, - 0.03343534514219543, - 0.042961854011907025, - 0.02846197239812908, - 0.027712290765074706, - 0.02602656116150605, - 0.043954917519710535, - 0.029765613815509448, - 0.03011170030849638, - 0.03715204303719331, - 0.02774995619523754, - 0.02722541084162133, - 0.03316641767056292, - 0.03238935402731761, - 0.03185758659368827, - 0.025135116883216357, - 0.03355239831922444, - 0.030922268677568483, - 0.03058810567642576, - 0.0356179790820488, - 0.032233422874066324, - 0.036123173290149246, - 0.030624102593682836, - 0.039157802823028325, - 0.030058465412516625, - 0.02975241563903793, - 0.03781979232242278, - 0.038568995921942115, - 0.03207055765383094, - 0.03211712640234478, - 0.03501101773680286, - 0.038535590446984666, - 0.03251379225296392, - 0.034892375109715004, - 0.02985118983767663, - 0.0317992384712414, - 0.030623591621675956, - 0.026324069985169896, - 0.02946795386150532, - 0.04335829021800538, - 0.04021647829914625, - 0.03588375698442115, - 0.030074261409470726, - 0.03615383350717803, - 0.0421458827257989, - 0.035473612512642055, - 0.04398001700360119, - 0.031264094911247944, - 0.026889170269511726, - 0.03870045392717722, - 0.032252789457905405, - 0.03177678374340321, - 0.026685219142653913, - 0.026470984974485426, - 0.03162076513771908, - 0.0297218845626831, - 0.04672196246813995, - 0.03477774246453058, - 0.04021988153115837, - 0.03266824001059568, - 0.03415214669900077, - 0.03364172042286301, - 0.039802215188920693, - 0.037330296432422944, - 0.03104843901645439, - 0.031598917484953984, - 0.033629659472496506, - 0.03390328665251148, - 0.025935355305695126, - 0.026158951030329145, - 0.038943940207948356, - 0.035553260389168666, - 0.02909772087319238, - 0.038169102704475995, - 0.030918666729164598, - 0.0388241989383516, - 0.036390588864078005, - 0.027639772349205997, - 0.029310882948828446, - 0.04095132594578938, - 0.023916533096086358, - 0.03741034750224634, - 0.035872358562377644, - 0.026617700403049137, - 0.03215845880762117, - 0.02975167704880176, - 0.030098819395223166, - 0.023236542775199303, - 0.02710121315944, - 0.033629119709542986, - 0.029373311191951742, - 0.033978058107232, - 0.03323180979263005, - 0.03630466870289074, - 0.033579791338924775, - 0.04093163824363753, - 0.029010630530851966, - 0.036807059782973675, - 0.030935579345428364, - 0.03599498243782791, - 0.026121497358686987, - 0.029567326787839646, - 0.024021986225581146, - 0.029911860757005665, - 0.034878721425956084, - 0.02836074612866577, - 0.03556373667191182, - 0.04137089848918424, - 0.03495854633776864, - 0.02802744337646079, - 0.03507501928975531, - 0.040507838650865734, - 0.042223498913504756, - 0.036342787022851895, - 0.036780047078215694, - 0.033697878904759455, - 0.031246788893077946, - 0.031262018080319066, - 0.03437775765628215, - 0.047473850698993056, - 0.03799626383381789, - 0.028159503918912147, - 0.03156657724562151, - 0.02540564570736473, - 0.032113368611515106, - 0.030920588456511452, - 0.032983046359607734, - 0.037079001092236566, - 0.04001784470684331, - 0.041800172183558006, - 0.03466894921392182, - 0.032661201331652935, - 0.030959915954760834, - 0.028561026592029717, - 0.034302355990336326, - 0.03915187993406711, - 0.031346459766131096, - 0.03764103144132925, - 0.033052655208266654, - 0.037966254812679325, - 0.031717297647018645, - 0.02829818082412745, - 0.029802898704065505, - 0.0359876417833689, - 0.03569219693929439, - 0.03689911665116, - 0.026254644757166098, - 0.028882385920258078, - 0.03152452349092811, - 0.03371253595761099, - 0.030670973252950397, - 0.028127983088693673, - 0.03459280893188809, - 0.03073948428426321, - 0.036794794815579374, - 0.03801837554427667, - 0.03630874042699983, - 0.026279343306540987, - 0.028287845586851525, - 0.03826151385698696, - 0.03997790738996333, - 0.03598191433986421, - 0.027465284565475184, - 0.04087863615382034, - 0.02702755613701417, - 0.03364998374810662, - 0.03515652549787168, - 0.02633469522214897, - 0.025395513570597005, - 0.035906863489942244, - 0.030919206378223558, - 0.03177900098844425, - 0.03958702729945181, - 0.026800537074021902, - 0.03762644641975294, - 0.034414504273255216, - 0.03266034454439915, - 0.040127972112976217, - 0.02807914697934108, - 0.03062386699700377, - 0.03305728838526671, - 0.030674428577472965, - 0.03279723241348417, - 0.028677225383417906, - 0.02952067318846892, - 0.031609268804356015, - 0.03001071898627619, - 0.029151986223433592, - 0.03639886506056422, - 0.02919223477401108, - 0.03544484057631178, - 0.03578075252145855, - 0.029155358629894445, - 0.0298944553245688, - 0.03499343761294092, - 0.02940183588892775, - 0.027598201139801676, - 0.026846024406736183, - 0.03966956273671035, - 0.04621398466697546, - 0.03540806888102679, - 0.03218280708514531, - 0.033145659488647235, - 0.041100116272442526, - 0.035062894323226686, - 0.036797890519294704, - 0.04160837397970951, - 0.030895598866285064, - 0.04736119242354615, - 0.04463625816944914, - 0.027876347129272977, - 0.03405055498771791, - 0.03858294169139009, - 0.033256028983879034, - 0.036688123712648464, - 0.035732539358779354, - 0.03522354748351952, - 0.030559820009710137, - 0.03509217194533769, - 0.030540469596674353, - 0.022598931926300563, - 0.04043481267732372, - 0.033003827243578365, - 0.02942128491449992, - 0.03001003329985617, - 0.028909951316102522, - 0.03610403024729118, - 0.027234005714588304, - 0.03523869074981032, - 0.031076524978876828, - 0.033311834644171916, - 0.037963464527042176, - 0.035716951681137456, - 0.031107580588704862, - 0.038241453520874255, - 0.03357983308232454, - 0.031425763465668846, - 0.03627859053344667, - 0.033390882024364, - 0.04152341490300512, - 0.0314681725028556, - 0.03271779706884461, - 0.03475678415888243, - 0.028129724988827223, - 0.03813948048557623, - 0.03687097139068071, - 0.03504594226052613, - 0.030134831381097814, - 0.02669501408079944, - 0.02970714984591415, - 0.03404444684757365, - 0.026786701818470482, - 0.0453787270359513, - 0.0332147858831866, - 0.02995163504879962, - 0.03168883207401113, - 0.02880814052885871, - 0.03146517187595105, - 0.03413811359481216, - 0.04080277129007469, - 0.035509436599279624, - 0.0292827768149374, - 0.029423934024234436, - 0.03423074494248393, - 0.031462045201630096, - 0.027578965913690814, - 0.029058055169193943, - 0.028738552267518192, - 0.03488557784838792, - 0.035000721965477884, - 0.04678875921561054, - 0.028347183568971937, - 0.047438624573147396, - 0.036073418766424496, - 0.03308882445742523, - 0.03160827444966336, - 0.03187053687610448, - 0.03374552660791637, - 0.038587128563292473, - 0.04185717033819106, - 0.031695387045265984, - 0.028761586694168534, - 0.03687890569482791, - 0.034214596525074734, - 0.028575434624531014, - 0.02474237789914695, - 0.026504566507590362, - 0.03985620319306151, - 0.027652029706453047, - 0.027651632081555622, - 0.024043349013439883, - 0.03648873475684296, - 0.030073884102145666, - 0.0380979891406754, - 0.02828744278823142, - 0.0352874509017359, - 0.04610272743599947, - 0.04148559204202911, - 0.035957408284225445, - 0.031458815072940266, - 0.03370350799040008, - 0.027574331360744265, - 0.03097920681798446, - 0.020336569619639096, - 0.03994253408173986, - 0.03518209267576869, - 0.05348397991576337, - 0.028251955145566894, - 0.03651095174714868, - 0.02666155621239721, - 0.04157679756170269, - 0.03926430764276837, - 0.031423093788572436, - 0.038780367856903496, - 0.036528033925338384, - 0.03292759001471626, - 0.030982261944713648, - 0.03203837709651302, - 0.028509933160751982, - 0.030875474971079314, - 0.03509060149949424, - 0.035317628176525756, - 0.03729491543438763, - 0.02948011038351014, - 0.030151678931891086, - 0.032337821145127045, - 0.03970911857325217, - 0.025018720138866572, - 0.03396714541739434, - 0.03866784546363589, - 0.02262694994777095, - 0.02859032320906764, - 0.03154808861642654, - 0.030253039320667436, - 0.030326221903754277, - 0.03898113378770668, - 0.033321756734161594, - 0.03525756657343215, - 0.03640886851444647, - 0.028069566157034757, - 0.032499257538287515, - 0.0292386750534239, - 0.032726026812392395, - 0.03010814869257604, - 0.03706421768974737, - 0.03828082688797144, - 0.029824022338892475, - 0.030383056252428042, - 0.03310102745729878, - 0.0317718962452252, - 0.03915154720837189, - 0.0409018545449776, - 0.03574566206201338, - 0.03093161854420012, - 0.03224550018677131, - 0.030334519756195107, - 0.028610387405373347, - 0.02836396682209706, - 0.03334113423630485, - 0.026845609492295218, - 0.02979814034641465, - 0.027572433330866824, - 0.0375635461774091, - 0.04711538890156816, - 0.03757657351081173, - 0.029407192863674485, - 0.024839357633755974, - 0.029662856697266655, - 0.03011922854159593, - 0.0357379082515848, - 0.040643156559461505, - 0.03635448134539834, - 0.03110479527637331, - 0.028436567960164947, - 0.02848235391584457, - 0.03359745387084422, - 0.03441052159653032, - 0.02665332294350061, - 0.02793084232555274, - 0.03281783665674656, - 0.043137196337637525, - 0.03048073309187879, - 0.028961695002480296, - 0.031800535882184185, - 0.03726939765085183, - 0.031173297855293342, - 0.036399726868541454, - 0.03686677093406907, - 0.032941806597833016, - 0.03638380646184588, - 0.03292889125850548, - 0.03160856369538056, - 0.027422574061959328, - 0.042640792448954676, - 0.035196904575821905, - 0.024412935972716474, - 0.026301067593720154, - 0.03224267256520266, - 0.02800751510249755, - 0.03262719140136168, - 0.02661713460043945, - 0.03543681113615295, - 0.03210982339457509, - 0.03291295700934919, - 0.03277029164254122, - 0.032176191196664206, - 0.03084708746741219, - 0.04080662552702147, - 0.033378465441052385, - 0.043443183384658905, - 0.028533694666821516, - 0.02952507104774454, - 0.03167167530398054, - 0.05191713257451475, - 0.038329176892228645, - 0.03014474326022869, - 0.030550373611576028, - 0.03704556500784094, - 0.03325083040659916, - 0.041820608314312877, - 0.034223207106655155, - 0.036925051034243254, - 0.03216926015104071, - 0.033006150447658256, - 0.02667876833730542, - 0.027505784535903646, - 0.028551306162457064, - 0.03321955004375372, - 0.03238344165858048, - 0.04429127670346131, - 0.03974393249705454, - 0.03146626488126363, - 0.03647588769341569, - 0.02879446843099001, - 0.035007207648132505, - 0.04066021371813793, - 0.03112279206390577, - 0.039725040382656666, - 0.029420473322773106, - 0.034357886998815264, - 0.034796353583576, - 0.03871991309123764, - 0.02661598977231189, - 0.026266718407357094, - 0.03876296329159795, - 0.03415422367849315, - 0.03084172673701404, - 0.043873757415516766, - 0.036815912398655136, - 0.04080001494197607, - 0.031902943725838045, - 0.034004254884474214, - 0.028723378723729005, - 0.023404454700149784, - 0.032752926672305546, - 0.033801780918733, - 0.03155292020439637, - 0.03601192464429425, - 0.03618964322898385, - 0.03447999322073268, - 0.029843385767712807, - 0.03757167393239528, - 0.046230090700722044, - 0.030648264631283804, - 0.03841859848619402, - 0.032221621505220246, - 0.029614356583392842, - 0.034962077710653496, - 0.032975901251596176, - 0.03996613931806303, - 0.03336280182830268, - 0.036474964358278926, - 0.03361384090045543, - 0.030378758789397352, - 0.028566827822133274, - 0.0302540729293536, - 0.035163582023992626, - 0.029728018003539202, - 0.035717536447072464, - 0.027250624687969488, - 0.0416128491009336, - 0.030808022825010373, - 0.03669763388013551, - 0.028706973104603344, - 0.04047537634815319, - 0.0389476203372935, - 0.02826512393473194, - 0.029179484362824425, - 0.0385308764915732, - 0.026747967748003487, - 0.02585911555437084, - 0.03152530101694484, - 0.029879983951845643, - 0.02943363359908079, - 0.031162905546601217, - 0.03647544691330651, - 0.03178306145088272, - 0.03226078871482133, - 0.03594374329560397, - 0.03321375028531564, - 0.028929527967215072, - 0.031050472292530485, - 0.03702755225892909, - 0.027521348998464635, - 0.030031412522022446, - 0.02747652320359145, - 0.04990721379577303, - 0.03921201435758991, - 0.028088323281399073, - 0.030512893148308382, - 0.03315800284984104, - 0.02997627818940424, - 0.027349586087924996, - 0.036682085311144745, - 0.03397158273386814, - 0.03917798747957782, - 0.03428489370063356, - 0.03636252623932956, - 0.031651884827929175, - 0.0345481063179811, - 0.02776792053101581, - 0.038189411917665776, - 0.024215539032422996, - 0.03609555827085982, - 0.04231582123355716, - 0.02880355940317606, - 0.037621553096580676, - 0.02973580603042572, - 0.02800187514667057, - 0.037518799708402155, - 0.036360095580118525, - 0.02768587962447829, - 0.0333556519629998, - 0.026207651262013583, - 0.031128421107164676, - 0.029753463111974004, - 0.03352657392232248, - 0.03179310663904999, - 0.035370290099071465, - 0.032804299115986264, - 0.0323149241439213, - 0.035633760058442925, - 0.025935360304240925, - 0.03681991450282173, - 0.03321554634445964, - 0.037347294856875816, - 0.039413638036074505, - 0.0324605848431565, - 0.026574112372834854, - 0.033133954678940855, - 0.030283977150243557, - 0.03843842816500901, - 0.031229620126743088, - 0.028220453260632265, - 0.04111856676670867, - 0.0327243943063873, - 0.028556914616550057, - 0.033344763094512266, - 0.033025721162897585, - 0.037940308784869176, - 0.04168599048514481, - 0.026082792221853827, - 0.03395882784245465, - 0.03378649582197306, - 0.03188483226079376, - 0.03252419591217225, - 0.026292134557416698, - 0.040276356851796764, - 0.03780506568526853, - 0.0387801250040192, - 0.03162937604499788, - 0.03786822760896804, - 0.02714255405178557, - 0.030228127883153738, - 0.03651750349888706, - 0.04216995045108234, - 0.032892160360722074, - 0.03273227085656242, - 0.026065729876245277, - 0.025838552625536023, - 0.027099595134582412, - 0.03363554000968086, - 0.03150189974266476, - 0.028444041652781516, - 0.032675554032943185, - 0.031454898237540066, - 0.032674238617389405, - 0.029081811230328537, - 0.03096999636562099, - 0.03269666427492149, - 0.03786049959011666, - 0.03277675280931056, - 0.03392255563499216, - 0.030535095685366997, - 0.03640675365245598, - 0.032891776580423505, - 0.02973302451242729, - 0.036327285298057656, - 0.031424215837865345, - 0.03021187302132277, - 0.03470385276493886, - 0.030799231498537027, - 0.030855583533371124, - 0.024662946569514125, - 0.030788019641799644, - 0.03047627931891304, - 0.03601873003369632, - 0.028159390792511212, - 0.032506586642926084, - 0.030557459630488972, - 0.03412678667999877, - 0.031523406535380286, - 0.02997964617018945, - 0.03857509276818369, - 0.03124332678675569, - 0.027558102501319903, - 0.027096097452768503, - 0.03377730647319989, - 0.03742139051905279, - 0.033053357620646165, - 0.0377188841785723, - 0.027102118896264016, - 0.03781749297966692, - 0.02270614333593963, - 0.037353562925800124, - 0.03825565911180058, - 0.031169502551680182, - 0.034720485200725563, - 0.02852799860147799, - 0.029608199195996877, - 0.030760683509337115, - 0.02933399400664443, - 0.027932657472729095, - 0.03584307577175784, - 0.033783902165364685, - 0.03889697617395816, - 0.03742019860472688, - 0.030411953220409557, - 0.03734425751854311, - 0.028585993441687985, - 0.03935899068477171, - 0.034756753706677426, - 0.03292167182470096, - 0.03495782602027848, - 0.03220441495075715, - 0.03423506103466681, - 0.03392833206464198, - 0.04161069869492195, - 0.033330428914047534, - 0.03174951622324006, - 0.03276601998864752, - 0.034219370398803746, - 0.033489940552316966, - 0.03346864679721344, - 0.03269482706730556, - 0.030822335516611635, - 0.02491306603248826, - 0.028172162198604207, - 0.03638787819802302, - 0.035246265325307266, - 0.042025395423282604, - 0.043204085880446136, - 0.03340715694353823, - 0.03736900870574952, - 0.03560225674316866, - 0.033964703155096684, - 0.03557716907200931, - 0.0290418682000139, - 0.02882620797677157, - 0.037875768015788895, - 0.03339708049487844, - 0.0332696817803103, - 0.03129674364171644, - 0.024403343214023324, - 0.025263198779751386, - 0.030305052975994666, - 0.03145935167458676, - 0.026327366885148848, - 0.031914023395416526, - 0.032295355971905006, - 0.032093875817439624, - 0.028060326838925738, - 0.031916511072728665, - 0.031265156559689235, - 0.04391181330152455, - 0.03673580748669015, - 0.035951549349441184, - 0.023663151325193834, - 0.02708345039593644, - 0.039856145920017426, - 0.03513843848051522, - 0.027676067130188695, - 0.04494950263582765, - 0.0262185133507193, - 0.02648590478169066, - 0.029527348724928532, - 0.03356639062886779, - 0.029771828469477808, - 0.037243253741969004, - 0.03833131754212166, - 0.03467991753506127, - 0.029032968347470448, - 0.041010529987812974, - 0.03275002509808228, - 0.0529252867436218, - 0.02880417950834794, - 0.02607055684094137, - 0.03431105449298092, - 0.034037950543575064, - 0.025018884835679375, - 0.05027442076113088, - 0.04106106699960046, - 0.028493969538814216, - 0.04211667649691202, - 0.032964527490049765, - 0.03339376423542498, - 0.039290422013163594, - 0.028517363203847897, - 0.03205973441115699, - 0.03194589713545811, - 0.033283773187570864, - 0.034448135349306394, - 0.02622562075782087, - 0.025868263242687452, - 0.03829205860043405, - 0.029523849529012623, - 0.03719673149785046, - 0.03447630126258836, - 0.031430469700377744, - 0.0300742850377191, - 0.03844089826033006, - 0.02940145701818318, - 0.03571958440332314, - 0.033235677671842385, - 0.036201115653768184, - 0.03148367315756828, - 0.03588441021521131, - 0.03548278596948841, - 0.02430197688511977, - 0.03735023499355036, - 0.028608442415373997, - 0.03013294861328287, - 0.035542040827791006, - 0.0320475575767824, - 0.02930734458095906, - 0.024268795174434064, - 0.04099328210368796, - 0.040002100133335466, - 0.027767092321010774, - 0.027249988526477663, - 0.03816547202252427, - 0.03470641231148942, - 0.033854469813667534, - 0.02824357943830541, - 0.02978423218226154, - 0.03784609442143447, - 0.028787691995543183, - 0.02953041286182216, - 0.032181514945634294, - 0.029648300900283517, - 0.03507656715542532, - 0.03346435352176247, - 0.029912437837046873, - 0.02846146942697034, - 0.03254691726011464, - 0.02969514626264074, - 0.03352853528787328, - 0.03244026551649637, - 0.0317265447226658, - 0.024261545278379502, - 0.02875893073489961, - 0.029089009261292695, - 0.04716732556923585, - 0.027281999600487845, - 0.03666262983188388, - 0.026925497528247747, - 0.029117499642230118, - 0.03978506210014447, - 0.03484317553375924, - 0.04175031409787898, - 0.03395450188074399, - 0.04416827503623655, - 0.03839016319358124, - 0.027334371588205748, - 0.0369513905959551, - 0.030464513420146853, - 0.04025168440966492, - 0.03232350974871321, - 0.029420014764298758, - 0.031140900885568944, - 0.03887545706905441, - 0.03917805350497429, - 0.047474253950171644, - 0.040839588356087635, - 0.027295932915013837, - 0.03129345594760949, - 0.03336812627309065, - 0.04070989302344724, - 0.03751608295696672, - 0.04450856582115736, - 0.04215559089595419, - 0.038608222257974015, - 0.033302929885103645, - 0.032643988640517575, - 0.034373476505141345, - 0.04704629571200574, - 0.030612832301815968, - 0.037256269283342386, - 0.03149483452512715, - 0.03666235753338928, - 0.030779233084026067, - 0.03465110903668059, - 0.03938182934298942, - 0.03139754978575008, - 0.028642844435575215, - 0.03047520301190366, - 0.03869073536012478, - 0.031666952562349436, - 0.034535085991962255, - 0.028132630483880983, - 0.0354477761104487, - 0.04205588124790183, - 0.03566863903445332, - 0.03550958734312345, - 0.0375661618238648, - 0.03223650854002733, - 0.03231834196274145, - 0.02429200367221774, - 0.0316161550404614, - 0.04537513873565816, - 0.031015387869167018, - 0.02438133378771136, - 0.03385684584577862, - 0.03578689451605999, - 0.03553273807742615, - 0.02588039788547368, - 0.031517234476784076, - 0.028638046120998885, - 0.03233694543530415, - 0.027830631285916427, - 0.03479951312374129, - 0.03137861110236968, - 0.025955196674477297, - 0.028098148504583823, - 0.035468255553258665, - 0.036965160183023225, - 0.03396901786493159, - 0.04148684279405645, - 0.04938139517977914, - 0.028938926455356725, - 0.036364789555340386, - 0.03160285424392573, - 0.029526453565117756, - 0.03248166654822536, - 0.04026699652051653, - 0.027712180337608475, - 0.02720079204054212, - 0.027535190996058934, - 0.03815535431184262, - 0.03367347114526399, - 0.029269315060997662, - 0.03138555942228258, - 0.03908681701727419, - 0.034334944458568294, - 0.03430326492381355, - 0.03902658958561577, - 0.0346689574146111, - 0.034199938812112335, - 0.02857183462729625, - 0.026304436802393062, - 0.029017937523276444, - 0.03908797612976629, - 0.033202199401108204, - 0.04320176894149683, - 0.0323541400364587, - 0.03448331379824041, - 0.03466926203050258, - 0.03522527392931569, - 0.02782142279154186, - 0.055060187259100106, - 0.024933863983262288, - 0.03906660646444484, - 0.03597963281108999, - 0.0313941983439109, - 0.033651800552287205, - 0.028689350196972916, - 0.030746506305274895, - 0.03715205431362176, - 0.04127524255137386, - 0.036352921137010705, - 0.03497660047717365, - 0.03259502646996658, - 0.03647272968907414, - 0.03421941483261014, - 0.032454369124395886, - 0.03175256375433981, - 0.04011623755879988, - 0.033979059495789714, - 0.04644284195270513, - 0.035784382093588446, - 0.03828976420323953, - 0.021494607324159698, - 0.025406663776775328, - 0.03680473836996582, - 0.03695986578303219, - 0.027055637532182333, - 0.03198994642806777, - 0.03811237704016531, - 0.04312626698091542, - 0.03326104557591142, - 0.040238978861334866, - 0.029571437573992936, - 0.037336818281960935, - 0.03225692970674336, - 0.026369728415619183, - 0.029802233237170694, - 0.024836602692030026, - 0.025155109950782562, - 0.03364449264374097, - 0.02755385938911089, - 0.03837300757084947, - 0.028685408981981103, - 0.03332941531761189, - 0.030093445732421797, - 0.043622697208338175, - 0.03399748826699097, - 0.031777082648934925, - 0.04050194443143365, - 0.04229440712262454, - 0.03372276784625348, - 0.026704432508072435, - 0.03294695886500767, - 0.032079932290910704, - 0.03177356251592205, - 0.04795868000864204, - 0.0300728883983216, - 0.033750788911738834, - 0.03957052329566903, - 0.032924922665829234, - 0.03458498366434518, - 0.03230253007876703, - 0.029660002853124985, - 0.03791278195800079, - 0.03799933853501183, - 0.03380117461724212, - 0.03068695341156787, - 0.02772165845364669, - 0.029150554263669862, - 0.038695681414942396, - 0.03934043290610719, - 0.033975792705152004, - 0.02978830309151294, - 0.0326983236522522, - 0.033017119814086344, - 0.0346311270696669, - 0.03500543706470116, - 0.036433726832416906, - 0.03373556629062286, - 0.03987195255730508, - 0.030316005822748064, - 0.03833597785383034, - 0.03394432259334309, - 0.03616175222845966, - 0.027136498597625215, - 0.03596943644665458, - 0.03161048679884304, - 0.034729115315579914, - 0.029452648843341367, - 0.029664407337681484, - 0.038717205194481956, - 0.03853472502243387, - 0.03678971199417395, - 0.026885858998972452, - 0.03327709369594095, - 0.035867319522569996, - 0.030849286918695085, - 0.030831260412805928, - 0.03279662368729977, - 0.05449570905856422, - 0.033747237996622, - 0.03131438473451025, - 0.043398022886202765, - 0.03284845987769386, - 0.037577808203867885, - 0.038196514662433644, - 0.036969958919704296, - 0.0324976349218824, - 0.032237108621172454, - 0.027364025550046564, - 0.039251116563970886, - 0.03426026694686632, - 0.0346718601682415, - 0.030223531317247122, - 0.021747975540375022, - 0.03815477495993615, - 0.03689320196228173, - 0.03693483262972827, - 0.03488831124631814, - 0.035538541786127295, - 0.037848013627743385, - 0.026508267118769666, - 0.031016551502690275, - 0.031358271921380534, - 0.029788816421504237, - 0.03434248302327851, - 0.03932870976475282, - 0.04304493840524903, - 0.03396257939825275, - 0.04679671524770865, - 0.04388270285024252, - 0.03055943082922945, - 0.028459935307390095, - 0.030069417756133334, - 0.04773345128350608, - 0.029081647825737113, - 0.03640333309215476, - 0.03210264723096772, - 0.03021445912147607, - 0.029779793109480913, - 0.027391367780826324, - 0.034669789481376716, - 0.03376339862018078, - 0.030193477788098187, - 0.028140564096350944, - 0.03520131689209166, - 0.036372882439455, - 0.033983947335749415, - 0.03288824756873262, - 0.037024987861398295, - 0.02613972570381431, - 0.02838078999214924, - 0.03532262298381898, - 0.021939984683483307, - 0.029782999325249845, - 0.029813102555231265, - 0.03075048568929064, - 0.04280198606061649, - 0.031658590266766054, - 0.026377262686048134, - 0.029833501239055638, - 0.03542252549285374, - 0.029166066792769278, - 0.033557133340653564, - 0.029949598788793042, - 0.030611653900443004, - 0.026313544604030053, - 0.03461346056754369, - 0.028049852287249367, - 0.03267061740349504, - 0.029593368231446576, - 0.03269057143445263, - 0.03333657120159385, - 0.03769538697847905, - 0.03426215646827231, - 0.03506047432709584, - 0.03488058138283023, - 0.027848567194588666, - 0.038476507868717855, - 0.03011329133170039, - 0.029718308738686458, - 0.03249016690200438, - 0.0240734873964698, - 0.037859706467943316, - 0.04379007702525269, - 0.03908337849660737, - 0.027112456914499854, - 0.039239573405287435, - 0.03834759070469355, - 0.02922977236768356, - 0.039157164725482176, - 0.044046616007144754, - 0.03758259447054985, - 0.03448540805396161, - 0.026855693429961403, - 0.032786164831029155, - 0.03979147021712668, - 0.04192757940475693, - 0.029656127591205887, - 0.028842329600623585, - 0.036284868371415924, - 0.03407515139510629, - 0.03373420713407873, - 0.029323026801036454, - 0.037118755357754156, - 0.035644557408933956, - 0.024858870799044266, - 0.028675999383300923, - 0.024883459897955634, - 0.04951656529367642, - 0.035741124609117624, - 0.0313377979975398, - 0.029313226913552794, - 0.036832696755198985, - 0.048986107828456874, - 0.026096326646982484, - 0.025372671279879834, - 0.03025787287169797, - 0.036412191118509706, - 0.04031566263824227, - 0.04288720078718998, - 0.03111229735469642, - 0.030147088531618984, - 0.025452870739752245, - 0.04578387446525426, - 0.026957008363722505, - 0.03333855637152006, - 0.042295304993722395, - 0.05035963792112866, - 0.03130351305026687, - 0.0330575034689702, - 0.032717645434418144, - 0.03182013303243403, - 0.03296337679468871, - 0.0275246592230191, - 0.041758279280327, - 0.03277405949874468, - 0.03409315491697044, - 0.036718397930787655, - 0.03394099781645042, - 0.03437220290423057, - 0.040877291128161325, - 0.028912046010853357, - 0.03062695384368688, - 0.029165459009530617, - 0.02948189209670143, - 0.054418235232273966, - 0.028493775803737152, - 0.038958410679500545, - 0.0422017391130072, - 0.035263151777420815, - 0.0355589900811783, - 0.03201974913807022, - 0.04078780135624761, - 0.032992176101986945, - 0.03446182826520245, - 0.031797118619007254, - 0.039021750673966765, - 0.030426168316202085, - 0.025788951782186223, - 0.02975005261149993, - 0.03415830914634874, - 0.029868160383057188, - 0.03131054351874996, - 0.03198858934477924, - 0.04469479598187681, - 0.038410052985304706, - 0.027475015693020428, - 0.029870209307560833, - 0.02566119543403826, - 0.038270563077599865, - 0.03489048990959309, - 0.038458158034988386, - 0.031473865030264545, - 0.034178132289738185, - 0.03669756429272697, - 0.036111308178546145, - 0.0329457016666098, - 0.030209434457633744, - 0.03459230383580508, - 0.0341510677421159, - 0.03235652525964755, - 0.030503913587369442, - 0.03834299343347912, - 0.028663390843394667, - 0.032693038099353734, - 0.04218692903695388, - 0.041823965962955845, - 0.035099548849774946, - 0.026903224808240287, - 0.028991169081097976, - 0.04154599926956536, - 0.030577546873687002, - 0.030936398486180922, - 0.026230467319293665, - 0.02399712242493725, - 0.03425444627928534, - 0.029523073893887686, - 0.02342697216450579, - 0.028331683614139944, - 0.033440847290421245, - 0.034386851972441644, - 0.030611856725871914, - 0.03158028922317049, - 0.03199622856158624, - 0.040372343045057886, - 0.03640278890429679, - 0.028139670047979695, - 0.03289215497222026, - 0.034480120354913484, - 0.03198684504732662, - 0.03475217196118415, - 0.031010302281034043, - 0.02996457686214406, - 0.028959312984446133, - 0.03269384559009039, - 0.03703756102242372, - 0.02829115618654135, - 0.029808025017470784, - 0.03684581120755718, - 0.0313087405420297, - 0.03525332791417348, - 0.04627992877671054, - 0.03915954135953224, - 0.028743501794003343, - 0.03403201969300691, - 0.032425050252227104, - 0.02756116809125347, - 0.03673188413177504, - 0.04213080819706478, - 0.037860331272526554, - 0.04223372869120118, - 0.03064253070147718, - 0.030161804275109484, - 0.028342569702438945, - 0.0350393423618654, - 0.031336490240600985, - 0.02950151655397015, - 0.026141432779462025, - 0.03508618872247019, - 0.0396659610046672, - 0.02793433871382681, - 0.030160783538121284, - 0.029300239659931063, - 0.02532884748953022, - 0.03800580958200471, - 0.03205969578226413, - 0.031398069644759045, - 0.03227467541246317, - 0.037262456023374135, - 0.030402239619128066, - 0.041764869558821575, - 0.03139900328487786, - 0.03388315905871087, - 0.035234539245853354, - 0.033667633967885954, - 0.030697504889631324, - 0.03322111709581922, - 0.027440603666470987, - 0.03251349723969574, - 0.030829472709341246, - 0.031755623105607755, - 0.03549734561482856, - 0.0367114199797823, - 0.035648455985683974, - 0.03210324214786392, - 0.03316896161973269, - 0.038309068497424735, - 0.02867524205066521, - 0.04074023136204445, - 0.029540955051186004, - 0.02929063048935946, - 0.036695078770905616, - 0.02735747562594502, - 0.03986158382270227, - 0.029967607963736206, - 0.02795285241723142, - 0.02981115672331204, - 0.027971823061907285, - 0.0379308155492068, - 0.03939248270445109, - 0.034768192138756156, - 0.04159550305316351, - 0.03662975544852686, - 0.02853818698033648, - 0.028398926651959342, - 0.02972359961108861, - 0.03133205257044632, - 0.04016892185597657, - 0.041393454541644996, - 0.03899890639151739, - 0.028772219058104516, - 0.03281728908811498, - 0.03755733353682785, - 0.03214576899858941, - 0.03165558017930789, - 0.0318844884618948, - 0.029284203624184206, - 0.03609588183018436, - 0.02678320858641358, - 0.03596740161282255, - 0.030382724521358942, - 0.03233622461359109, - 0.029302383522763504, - 0.03224168467430377, - 0.029040869069817128, - 0.026896960279700798, - 0.05380954636400204, - 0.031865707393800013, - 0.030284941937560865, - 0.035490579389361725, - 0.030347824014749017, - 0.03218325164012589, - 0.027922389609164742, - 0.03359996612473061, - 0.027848703149213602, - 0.033016252326248836, - 0.03602801979291065, - 0.04985473903626365, - 0.027311507929140427, - 0.025219516858478414, - 0.03754520525244077, - 0.03028604004277943, - 0.035890936998225695, - 0.029641797766007037, - 0.027698286687805936, - 0.030675382753125875, - 0.031869498612398205, - 0.033132894424697586, - 0.030346906878299697, - 0.029248010907552285, - 0.029587237312940443, - 0.033889169673320965, - 0.0312061794013041, - 0.03199938635477265, - 0.028398052641274374, - 0.03088047318681074, - 0.032181380549619595, - 0.03125941258327313, - 0.04111247127149849, - 0.035396513940810226, - 0.029212745431276083, - 0.04485511242554535, - 0.028034438729970034, - 0.034123526277484106, - 0.034781849258384505, - 0.034966733243433364, - 0.027276619011467197, - 0.03257915815272512, - 0.03645773830950389, - 0.03171530229456841, - 0.03432503011927639, - 0.03010270497800109, - 0.03446473293025163, - 0.03923834979372454, - 0.028318903934188996, - 0.029145254457675525, - 0.029831033551664273, - 0.03222356909418951, - 0.038239338658036484, - 0.03365428583695577, - 0.03345722665353942, - 0.03616727142350957, - 0.04155552447941915, - 0.04533494626978031, - 0.03180908767442208, - 0.03368623816437063, - 0.04699457150593784, - 0.03249143459312552, - 0.03209047862770979, - 0.03265076824382834, - 0.030348502644206493, - 0.04185085571622328, - 0.037060546935603955, - 0.029562523729367796, - 0.030688015319791106, - 0.03336274317427433, - 0.026886133365129433, - 0.032154236580162435, - 0.026876617854851716, - 0.034364129761097206, - 0.04657854367291029, - 0.025672254282050055, - 0.03696814574569938, - 0.030536908439786715, - 0.03332720994598785, - 0.029646858731227334, - 0.02945688852175272, - 0.02755028643823788, - 0.03173342600392699, - 0.0300424153463172, - 0.03348276767772897, - 0.03043841561807797, - 0.032091505549907876, - 0.030929775334787406, - 0.02905785390596851, - 0.04102902044937459, - 0.03701419829610932, - 0.05875138139954512, - 0.034165807135187215, - 0.028148066997522384, - 0.02945522580884062, - 0.035118934363556245, - 0.034228362362802175, - 0.03301722205625416, - 0.029670567795595244, - 0.03372875324638613, - 0.038001416700037434, - 0.04681440379292073, - 0.029194714043569985, - 0.03309946220899506, - 0.03160410028658938, - 0.03900905746272558, - 0.03795796003051646, - 0.027598287727274722, - 0.03345828030441115, - 0.03544757550828699, - 0.04286768812601123, - 0.03655433741593951, - 0.032453251041361555, - 0.05726571289092662, - 0.0410848917950001, - 0.04051311500993462, - 0.034057932500602545, - 0.035794695238758, - 0.040678269993422556, - 0.03365493928264161, - 0.03252706651016092, - 0.03340290960206663, - 0.04349848093721535, - 0.03441208623983234, - 0.03238865772240602, - 0.028398395613165043, - 0.03405287067958169, - 0.034223289405232296, - 0.026296317661360643, - 0.04557652003764425, - 0.03338214157659361, - 0.032389830062888814, - 0.03670000620745077, - 0.032038726018492156, - 0.03417112993697537, - 0.041268815065253386, - 0.03906919155666462, - 0.03875412298621035, - 0.03678453931192891, - 0.03860101150674736, - 0.031141096692228268, - 0.03156344895358428, - 0.02612540268326362, - 0.04192190304205582, - 0.03983653763530593, - 0.03797118218220155, - 0.04363414790761778, - 0.03286970041668775, - 0.030561505397710943, - 0.03645923343189882, - 0.033915640678413427, - 0.026973449295361555, - 0.028699498239027697, - 0.03291129320607085, - 0.028889661571211686, - 0.03381139544020349, - 0.03978510430724464, - 0.03366390785841273, - 0.028611353355611994, - 0.038946463057552304, - 0.030160047197755006, - 0.03585298679434465, - 0.03455668490302648, - 0.04079923726446755, - 0.03675300867511489, - 0.03780728586530017, - 0.033532095452098364, - 0.022354944473313675, - 0.03396932997596784, - 0.03363237812399306, - 0.03521884627374686, - 0.027620108698830158, - 0.027041419175267492, - 0.031975263663224764, - 0.03619402979915111, - 0.038768593069380276, - 0.045935749414343606, - 0.0389197431639975, - 0.03262671940969188, - 0.04169036480837267, - 0.03234149728921788, - 0.03184815006696596, - 0.03174095543988812, - 0.03741678927304404, - 0.027190623744035133, - 0.03650988030940553, - 0.029956517759173115, - 0.03261068655737363, - 0.034857718786377695, - 0.026235509620031523, - 0.031163878314733783, - 0.03161235114631791, - 0.030246603021764195, - 0.029648634113586012, - 0.02951540145183428, - 0.04398810768924436, - 0.03370024228407807, - 0.03014903057337835, - 0.028130299681025737, - 0.03317790567857075, - 0.03396996410305133, - 0.024158838451394934, - 0.04262383910522245, - 0.031053920468139026, - 0.030037750748385827, - 0.024702774185194346, - 0.03749061070020613, - 0.04731683209061206, - 0.031819890601837306, - 0.045549047285799414, - 0.03788767304466914, - 0.044173635574313495, - 0.029736178361485014, - 0.03313429619853295, - 0.041547448334589565, - 0.031661091425254625, - 0.029581109947167034, - 0.03633529359222652, - 0.034593434612138776, - 0.03033232960409942, - 0.02779221715230189, - 0.03517938590453968, - 0.03701323687214828, - 0.04181896906321876, - 0.028445902930897972, - 0.028172391199854367, - 0.03330446429688259, - 0.0323924699817894, - 0.028021857617616632, - 0.032506394100790606, - 0.027136297967507935, - 0.03207788930801729, - 0.02634358430207402, - 0.031678597419657735, - 0.04195868249328695, - 0.031738404688632656, - 0.03180303117792941, - 0.026226449698596544, - 0.03535125669152849, - 0.0377685582242026, - 0.026564853811246267, - 0.03066926437056271, - 0.03648075001419344, - 0.02987514223701022, - 0.029611550282520417, - 0.031231401189763485, - 0.028345996013123057, - 0.043114207072398214, - 0.027855718617366607, - 0.028081841836611478, - 0.0345353404842747, - 0.030603596709553246, - 0.0333506845922807, - 0.04185508722407182, - 0.03590869046739237, - 0.035537697537755736, - 0.0315074165990586, - 0.02858605104348546, - 0.038001164255234095, - 0.049314897539773674, - 0.04048621050027611, - 0.04376496608838517, - 0.02831591043901795, - 0.04176046596733268, - 0.028631928629970563, - 0.035250405901274685, - 0.037332594440877706, - 0.041910002975750996, - 0.038987284779323256, - 0.03182711448661288, - 0.033473506956593686, - 0.02957801907989489, - 0.03221139109055811, - 0.030361273551080665, - 0.029831777673005884, - 0.0325032288600159, - 0.03378805083948366, - 0.03950265143087661, - 0.03730473703166401, - 0.03888042467526809, - 0.030345187078338446, - 0.040372269612289326, - 0.03982023671402305, - 0.030477875231219, - 0.02746080172006552, - 0.038916947171330166, - 0.04158861402777612, - 0.03565977508050475, - 0.03390577899647792, - 0.03276059346605746, - 0.03404982478006157, - 0.03060711955642502, - 0.03283044571590714, - 0.029110210718502918, - 0.03278376253682656, - 0.03147646080465301, - 0.0355395664169121, - 0.02738877423313774, - 0.027948566669947664, - 0.02518471267420228, - 0.03417568767673393, - 0.03227188848995419, - 0.03421158635949529, - 0.05159962260845475, - 0.025272718762207037, - 0.03039107941641118, - 0.05051681724884349, - 0.04496161544482892, - 0.03187870577355445, - 0.033214819639595314, - 0.02826422647457217, - 0.03600022456405987, - 0.03197806208049244, - 0.03413990715064192, - 0.03404139137278759, - 0.02751398859171088, - 0.02938439679629207, - 0.04524228468495067, - 0.027602473901818598, - 0.031207750873492108, - 0.030549619632981185, - 0.026927260038661752, - 0.029799849563240246, - 0.030109180842146623, - 0.03342838223119944, - 0.028941978219458236, - 0.034177338088670614, - 0.037310079169948336, - 0.03614223155646147, - 0.03959777942783176, - 0.03064310864702174, - 0.03848779982619951, - 0.027378802761018978, - 0.025395861444891588, - 0.028354314235919456, - 0.03344252091902704, - 0.03448250523445224, - 0.03178379244510555, - 0.03434092020594902, - 0.03158475482288779, - 0.03002498158592322, - 0.030022097538509828, - 0.02637809289957069, - 0.030712204427046728, - 0.04287585214849102, - 0.03672354706199393, - 0.03438595065555573, - 0.0326321227086274, - 0.02937055637545134, - 0.03753320164347667, - 0.043659583852294875, - 0.03817266462794834, - 0.03818671155035675, - 0.034993059219337264, - 0.03032367712916349, - 0.03320110933627367, - 0.03936713263361254, - 0.03406617328631184, - 0.03343214770855645, - 0.02950770621964793, - 0.0308335480186706, - 0.025554834057973774, - 0.030134223673647487, - 0.03261763270742214, - 0.033148517598718695, - 0.02999478604209805, - 0.03679477241657478, - 0.029740705883470532, - 0.027541157730986806, - 0.02797617664159746, - 0.03464847272111085, - 0.024069292540608658, - 0.04296074716531125, - 0.02862016080490909, - 0.03797351426993926, - 0.02886756903103594, - 0.03273550678461396, - 0.02793297135596961, - 0.03128622371188489, - 0.026959799853597085, - 0.037884292393999756, - 0.029441283143803183, - 0.03493698659248359, - 0.024468808427306206, - 0.03213183381289402, - 0.03475885352257175, - 0.03491008482457136, - 0.042978471292706315, - 0.02699255954677034, - 0.029085988322495586, - 0.03790424835912237, - 0.04496003836408412, - 0.028820353354450916, - 0.03323511444342246, - 0.03474086877954546, - 0.024732116280001538, - 0.032606084672030175, - 0.02848290680107407, - 0.03532753181478128, - 0.030279862019999236, - 0.028016774216415078, - 0.02956785575533138, - 0.025184785071548758, - 0.03561036880938069, - 0.03608018455942576, - 0.024718163473481738, - 0.030581357957577212, - 0.033721286105516245, - 0.02835871972478121, - 0.03503027846093714, - 0.03608273527880022, - 0.030611418485000656, - 0.03359879630081928, - 0.02723271121430372, - 0.03244114815784915, - 0.033049690929502655, - 0.027899666376628756, - 0.029269372292855325, - 0.030754781773305376, - 0.029885757351663718, - 0.03167524004454884, - 0.0377006883221025, - 0.02849442632899851, - 0.03658525110731795, - 0.03921305677966382, - 0.04454743364635035, - 0.03569319569497865, - 0.04387662827061319, - 0.0358883478671502, - 0.03396805201796177, - 0.032674141340096656, - 0.0249520903880423, - 0.03200124401206458, - 0.03852176519564215, - 0.03568203267332562, - 0.03731414287453686, - 0.0436378207481573, - 0.03340239081724035, - 0.04152739905804064, - 0.028719164592417627, - 0.032141383199164576, - 0.030489440535713192, - 0.03417553111579697, - 0.03554515739146081, - 0.03621368080087225, - 0.04851872761976362, - 0.047802600033419025, - 0.03304222039423887, - 0.0386156395647003, - 0.03068461895835247, - 0.034710784240742774, - 0.029869633732238072, - 0.029778344762470082, - 0.03373665026197353, - 0.03676777762129447, - 0.03005735544185129, - 0.034746056384042635, - 0.02826362703832613, - 0.0347118619357765, - 0.03229742961178772, - 0.025786631959898432, - 0.033593197126464414, - 0.03372797343649871, - 0.035427275354480633, - 0.03107026268726213, - 0.034998137507892046, - 0.036498356973817286, - 0.03582457285971376, - 0.02759207071641089, - 0.031595049176009825, - 0.045199347505690456, - 0.0418757844629975, - 0.03599099383903607, - 0.026857596452286633, - 0.03821325688588468, - 0.030312208620204277, - 0.025608119387390944, - 0.03108151792981014, - 0.026446367996344564, - 0.03324277831156402, - 0.03473330630196459, - 0.02643917613955973, - 0.039918558937225235, - 0.026655709794857364, - 0.030424277850763615, - 0.03477435277229442, - 0.03822880648098449, - 0.02749046713697868, - 0.0330914265397378, - 0.0381460914561179, - 0.03813832407351875, - 0.044529173756325, - 0.028419037674986967, - 0.04027704622510057, - 0.027794410838690307, - 0.03800491840179145, - 0.03201711021845152, - 0.029029852091118902, - 0.02861861533034033, - 0.033751257576037946, - 0.04826756480711573, - 0.03762018298852675, - 0.031638293916763996, - 0.036171621543294036, - 0.03598348310834136, - 0.02675870678956548, - 0.03380657736970041, - 0.03630130453559743, - 0.025640233750348705, - 0.0339675684735253, - 0.027417231985259177, - 0.030828558852775412, - 0.03024081863839232, - 0.0356946612084443, - 0.02399823467563743, - 0.024961782133574383, - 0.048302116372986335, - 0.043562604386179135, - 0.02619095152213158, - 0.026527583690718216, - 0.03335599891857329, - 0.038718725609477235, - 0.030822291726149018, - 0.03403057963022701, - 0.029819544170962387, - 0.033583124267741626, - 0.03563764683543729, - 0.031499422300808926, - 0.03995772705273236, - 0.03167682864587252, - 0.027868774837336834, - 0.029264294574708936, - 0.03173839257767163, - 0.028412599547732693, - 0.024489958982145968, - 0.03369122821123083, - 0.03823372624189525, - 0.033743923287724305, - 0.031419896678695096, - 0.03840010408189063, - 0.025628790116178798, - 0.024392768726922896, - 0.03540172475178078, - 0.024999500953624423, - 0.028974823748440064, - 0.03971275320248287, - 0.02955354165955281, - 0.03816230074705251, - 0.03666268345565227, - 0.029636119491799867, - 0.037070542827916005, - 0.030711221813778413, - 0.034056066459783096, - 0.04261901257440956, - 0.04076872546703711, - 0.029465743907402607, - 0.03753945586419572, - 0.031268890471629354, - 0.03211286859730945, - 0.027315890550156572, - 0.02932631192103541, - 0.037389267243161016, - 0.024696692133856085, - 0.036790343231418235, - 0.03528223081207752, - 0.036163075884016516, - 0.039881405021969296, - 0.03312765455551627, - 0.03173646852108735, - 0.031165447701846757, - 0.043723596046001054, - 0.030117136545552117, - 0.026631638397660654, - 0.027227595610072132, - 0.02809466782865661, - 0.03413662007933003, - 0.030903625190565973, - 0.03720639983445057, - 0.02859459719352801, - 0.03367078846469258, - 0.02871031602795891, - 0.04043858893019433, - 0.037262651987615344, - 0.040180384072596734, - 0.029718831909507887, - 0.03327910733467769, - 0.03469997891851771, - 0.03655629035196335, - 0.02664307431782701, - 0.031795891585125344, - 0.03149624739780687, - 0.02907612192753173, - 0.0318727671315644, - 0.042279436924648334, - 0.028172294522479463, - 0.029499554002309098, - 0.033901644497670726, - 0.028166668455209765, - 0.04185150946390045, - 0.03695399248837766, - 0.028134129676135575, - 0.03516691670595947, - 0.03088898684516888, - 0.029521738090543592, - 0.037241458939893134, - 0.0362618768102659, - 0.03918474331072787, - 0.02913333877354422, - 0.03370910682615867, - 0.02991588341339502, - 0.025842913872775954, - 0.03341862210709054, - 0.03309098005986062, - 0.0262907079919132, - 0.03143375843526446, - 0.03662657931586395, - 0.034199608072019674, - 0.03589760338040009, - 0.03633233529370916, - 0.029512023303167313, - 0.038076102961215705, - 0.04480658862691493, - 0.03499058180253089, - 0.028234728303463595, - 0.03268650161750042, - 0.028290777542708933, - 0.03424761213110953, - 0.03011534595843811, - 0.037095123150423966, - 0.024356882843448523, - 0.03712046576760933, - 0.028534185225396656, - 0.031464498596864655, - 0.031568220521353184, - 0.04470384562610837, - 0.03335150251171738, - 0.03447637433565451, - 0.028836883411341142, - 0.03099490725661284, - 0.03388503333296772, - 0.03965895127307429, - 0.04261793161047223, - 0.026150286587024084, - 0.030860342771685537, - 0.028280842312402018, - 0.04420507025137178, - 0.0349363998631495, - 0.03783952624028991, - 0.03692204653256084, - 0.034480370115778064, - 0.03551428718899251, - 0.029229488076410796, - 0.03325824876369409, - 0.027897030404256735, - 0.02905783286876783, - 0.03364493218152835, - 0.03166567833466508, - 0.02918547885717961, - 0.02989361873031996, - 0.039935007216429, - 0.03369368157718051, - 0.03462674729950746, - 0.03179894237821714, - 0.03673261144170152, - 0.03372296305142475, - 0.03778933756969217, - 0.03351961444334042, - 0.03368007687058764, - 0.030040397407446132, - 0.032675062285344655, - 0.029390599478941248, - 0.03247886865903181, - 0.0332053872986532, - 0.03072801218589997, - 0.03552153375171898, - 0.03310192848679424, - 0.0356842627084329, - 0.027278393164502195, - 0.032775517043265666, - 0.03561362306787779, - 0.028082784640933365, - 0.03239034775013348, - 0.030912759134211203, - 0.041251999572620886, - 0.029527186606731617, - 0.02674686141823126, - 0.03593846072317521, - 0.02708268472197445, - 0.03369654132786615, - 0.038449362806174316, - 0.02932840378161352, - 0.03649188386475874, - 0.03919939454296887, - 0.03779414131379138, - 0.029027003995190356, - 0.04219017836725925, - 0.032118653368959284, - 0.033456921579806904, - 0.027328707888363064, - 0.031120987425104482, - 0.026747351688306917, - 0.039479532347443405, - 0.03129068873236808, - 0.047591867188633806, - 0.0328984680317359, - 0.029250787623496793, - 0.030819781910599968, - 0.03169810229323656, - 0.032233440426726934, - 0.028760901111574748, - 0.030155989323453057, - 0.030460703279693396, - 0.03444550304003846, - 0.04302598057361679, - 0.041844909703815, - 0.033673042392921446, - 0.033118844487632214, - 0.040032212284132236, - 0.03224930417099802, - 0.04283333275925456, - 0.035577422718255265, - 0.030450557581585925, - 0.028758698167850292, - 0.02951685454321719, - 0.03165068032738256, - 0.026535949069979678, - 0.03442370735194391, - 0.03307357274656752, - 0.039154149904168184, - 0.02965828435381119, - 0.027272429107190313, - 0.03332040616948963, - 0.03469240116147239, - 0.029378118580813954, - 0.031058551345830767, - 0.039528087668819774, - 0.04084768693358693, - 0.032915077265460745, - 0.03548561805355121, - 0.03269181264998923, - 0.027183844411084727, - 0.03316023806586348, - 0.025710330931360627, - 0.041088521076145426, - 0.030938735247445986, - 0.027639656704358705, - 0.03226556853380528, - 0.03540580391454147, - 0.02785941222378029, - 0.03402000087874097, - 0.04303441462850389, - 0.03305739934256443, - 0.03647997190973237, - 0.029562210717336463, - 0.0337012960809359, - 0.027557135789372477, - 0.028296071448894358, - 0.036236139163835134, - 0.0310407175885815, - 0.03030636091123691, - 0.036167715197333444, - 0.03723875249892577, - 0.03105443914706742, - 0.03207217373267179, - 0.03780696680777021, - 0.03166925545789776, - 0.040481778655201875, - 0.029543605611614145, - 0.029978589643768455, - 0.03793162078696873, - 0.03195127874484762, - 0.025580690159660382, - 0.029909222332009107, - 0.03503024076885529, - 0.03144508351081107, - 0.02727257010439798, - 0.0316264249751628, - 0.024755733858980444, - 0.02815780933920758, - 0.03704511134502739, - 0.03314024814225822, - 0.04111939892094009, - 0.02668341256020519, - 0.032225011813156255, - 0.033959043751995904, - 0.03325468434997828, - 0.03389768168653367, - 0.03331738282552008, - 0.036689223323184854, - 0.039816804485871764, - 0.036409487530562376, - 0.04659136267937227, - 0.034064341005292584, - 0.026987286387796856, - 0.03134701463547919, - 0.03168849491273467, - 0.035396757747065556, - 0.032466106502714906, - 0.038414127419016904, - 0.042799550096059354, - 0.03529603003502598, - 0.03995724602498172, - 0.03298826239104658, - 0.02720194956924903, - 0.03297022811600953, - 0.03946479243770362, - 0.029297702626265486, - 0.027428778891550796, - 0.030790239220898487, - 0.03489261371211797, - 0.030649211234844494, - 0.03309023561272316, - 0.025380246200613535, - 0.03859374246798831, - 0.034601343029060205, - 0.042219111459538335, - 0.03510659416788658, - 0.03126340247983287, - 0.0273232365245475, - 0.028155158151647736, - 0.041794572309055526, - 0.04429411620516312, - 0.03753566315460498, - 0.02699520264579959, - 0.03721663971875594, - 0.028143184473192754, - 0.04051328591368661, - 0.029412619070389764, - 0.03204529408080673, - 0.03623458951152553, - 0.034669081800868, - 0.025562748418583664, - 0.03224826164432116, - 0.03911042866131359, - 0.02981422547074828, - 0.03440886849983566, - 0.0339125436819952, - 0.031258962272652645, - 0.027729341826015802, - 0.0278225550674863, - 0.0389412342558397, - 0.03985758603134403, - 0.03331557581933068, - 0.025382167761528907, - 0.02721586139761141, - 0.039680247789004953, - 0.033976672206866246, - 0.02977296509996192, - 0.040363560411576176, - 0.03083071685584164, - 0.03230557439271509, - 0.0423672766763619, - 0.03383499227760795, - 0.0463170533545028, - 0.031890570428573295, - 0.03792721180166937, - 0.03595495674824443, - 0.03703283739302694, - 0.03069679808555859, - 0.03008313324381051, - 0.032847758979384266, - 0.04627586080583674, - 0.02820338498251522, - 0.033196293471554734, - 0.03715820073385967, - 0.035845269876513756, - 0.03334169440076251, - 0.030606459043063444, - 0.0381770308140804, - 0.03442702054361603, - 0.03196797686196161, - 0.030531575157775152, - 0.037931419468000833, - 0.034528383834765794, - 0.026696837388502537, - 0.027450812519008824, - 0.024602649311156063, - 0.02851991057238543, - 0.029550631265365605, - 0.044886317506129245, - 0.030774194206177642, - 0.031306567760555126, - 0.03977041841804569, - 0.029784943589077024, - 0.03658483511667743, - 0.04053852949467885, - 0.03196584376125502, - 0.023490242212052783, - 0.03258576777269014, - 0.035703430127682234, - 0.03077879605967547, - 0.03216295962893545, - 0.03378590211909852, - 0.03089363166094497, - 0.03163233784330577, - 0.03292001786603133, - 0.034314427076523976, - 0.03175900998201693, - 0.034675346381044414, - 0.036604226671070834, - 0.032632923950123356, - 0.028717974111397038, - 0.03430332972925866, - 0.04162951498255072, - 0.04293849976335998, - 0.032895327321727535, - 0.03366873116919852, - 0.03119257686489557, - 0.03139687243782869, - 0.03606944269880349, - 0.029531516631040575, - 0.03199127968824795, - 0.031191772163636975, - 0.03296956278436445, - 0.027170949113582924, - 0.027007752424067, - 0.027060886982024104, - 0.03475607341266656, - 0.037209488254891274, - 0.04177706380226301, - 0.02773460370330114, - 0.03244558928962354, - 0.03581483378315258, - 0.026399317581517652, - 0.04398643376243689, - 0.027993826837261458, - 0.02891202029679611, - 0.033979534852170125, - 0.02758720175808346, - 0.038084735922157366, - 0.03706745247606254, - 0.027360782929932242, - 0.03362084385310836, - 0.027147037868226146, - 0.03478427988587017, - 0.029328394926874227, - 0.030949340180146643, - 0.04270195766753568, - 0.024916814910386397, - 0.034666643371621855, - 0.0311222770479039, - 0.02815922767769958, - 0.02700904178084743, - 0.03445175486391946, - 0.032801363247910754, - 0.028615816439936045, - 0.029788141015008162, - 0.030244528007407602, - 0.028309712981283448, - 0.03310358520376223, - 0.0248905820758941, - 0.027887091875046358, - 0.02863243112536242, - 0.03222415736455987, - 0.03580458434931366, - 0.034093456535472154, - 0.02589172123270419, - 0.03210017263471694, - 0.0409739443540201, - 0.029427238268627663, - 0.031243731662585483, - 0.04318453166966129, - 0.039641074253154815, - 0.03515938042014884, - 0.036602958639293595, - 0.033303981102809375, - 0.03718390122712228, - 0.027674974041282895, - 0.029358983091424862, - 0.033225081907806465, - 0.03526038346002134, - 0.028247733439604884, - 0.0404032374540224, - 0.039260777392843525, - 0.039367000234042555, - 0.03109942918690191, - 0.03414635390412976, - 0.03327847823393987, - 0.04252006414322853, - 0.03379206604832752, - 0.03218945570059194, - 0.0336569321089672, - 0.04107224611056038, - 0.04046103240962943, - 0.036488469434115905, - 0.03225497840503156, - 0.03313640817101184, - 0.03185501741695721, - 0.03576531702714129, - 0.03321968054153309, - 0.029273406570792086, - 0.0304791130348643, - 0.03626102953283056, - 0.028034238788533145, - 0.03539081653574833, - 0.041590874605279764, - 0.03548870332824913, - 0.04120619113873232, - 0.040233128360551075, - 0.04181138489102308, - 0.028888229510622417, - 0.031163830339623076, - 0.028812033866744722, - 0.02918981664953061, - 0.03201199737200248, - 0.02982882161233813, - 0.026364305058418122, - 0.04173374654080477, - 0.03693523567801821, - 0.031292169392601904, - 0.043438141329826076, - 0.03291761885705619, - 0.031976183881907594, - 0.03059039284108394, - 0.029408713589213813, - 0.027732772578917573, - 0.03586218220830253, - 0.04357822100788351, - 0.03873748019203538, - 0.029504514227249846, - 0.03348445650471, - 0.039096416967655964, - 0.036617110942101364, - 0.031163726030823076, - 0.04408824798788417, - 0.04305003841390838, - 0.03038519799228312, - 0.027343369128906038, - 0.028711063187694227, - 0.02708309171355686, - 0.03430205639297244, - 0.03336129877788491, - 0.03495780986434471, - 0.028726434539508038, - 0.028278093412062166, - 0.04223438463511463, - 0.0318454996236759, - 0.03325072163353536, - 0.02982730578199687, - 0.02436133174946316, - 0.028713846846392378, - 0.025057453305559526, - 0.03183172185293393, - 0.03827859329667247, - 0.0307031810025159, - 0.028951927903457953, - 0.0335379786113551, - 0.03991370815923501, - 0.02831798899897002, - 0.03712350530431909, - 0.034408692016405666, - 0.03253368092689374, - 0.03525119377968317, - 0.03185351015045212, - 0.04285771255488635, - 0.030508678836961817, - 0.027892436355710808, - 0.03200917826951947, - 0.03498099852779437, - 0.036007674068378445, - 0.03379828533036443, - 0.02909555279563608, - 0.03414337370064514, - 0.03131691788277823, - 0.028539975879674495, - 0.03150359155392459, - 0.029055952034868143, - 0.026356640377160904, - 0.027438407772496703, - 0.0392987403130666, - 0.03188865266783491, - 0.034518613737378204, - 0.0356961357443068, - 0.03481107455139169, - 0.030691588852342994, - 0.0360232543347337, - 0.03314257782601954, - 0.0294459022133486, - 0.031144535369379004, - 0.032051080724507144, - 0.02903837681084335, - 0.024502702811623513, - 0.03178420241352529, - 0.03522481070770721, - 0.041282036883922735, - 0.039434311606295826, - 0.029730147617476565, - 0.03381137846644535, - 0.040570557273387424, - 0.026899309205366467, - 0.030466789164171358, - 0.02914256886367872, - 0.03195601836610159, - 0.027636536759882025, - 0.03928556061349144, - 0.031806498380507905, - 0.026262620344093563, - 0.028849937227533828, - 0.02386491113612777, - 0.036808621453752986, - 0.029945213759674644, - 0.030889478477752468, - 0.03530203799849682, - 0.03836047258667014, - 0.0294332291828317, - 0.02937942374012265, - 0.03059998444743443, - 0.031246316323138606, - 0.02674146405060147, - 0.03876697737169704, - 0.032430737867171176, - 0.02355281541463384, - 0.03378778944222168, - 0.033809982376671655, - 0.03309181274736739, - 0.03270608974058181, - 0.03605471211430364, - 0.03397944572485449, - 0.027963874001190377, - 0.028248401386902624, - 0.02960843603530861, - 0.029219581443916516, - 0.027404004285917855, - 0.02529025400318383, - 0.03126413773019817, - 0.030475072717168473, - 0.027132498193413637, - 0.034882289797054676, - 0.03150121436796456, - 0.03298576201510023, - 0.035578628421479616, - 0.02456050237905695, - 0.027706564422353083, - 0.04707125881714755, - 0.03186212208344181, - 0.04402988921286128, - 0.03339875703601302, - 0.03313749037722236, - 0.03625849171474282, - 0.029239116668782577, - 0.04580827177152931, - 0.031152057118281944, - 0.0391473022831235, - 0.029312796560757807, - 0.02936568850514485, - 0.0277458220726373, - 0.02362339567690415, - 0.03153971908877316, - 0.02617849829423118, - 0.040682687085262924, - 0.03790597914863605, - 0.026163415404843505, - 0.0337885820337571, - 0.031936909097768806, - 0.029523834657926008, - 0.0350612278955846, - 0.026506675240662945, - 0.0322042367710945, - 0.03351766374069789, - 0.03308124985436845, - 0.034039731887694005, - 0.04003027824852746, - 0.03839289299656457, - 0.030520741315002906, - 0.03183831319592672, - 0.02464955590907431, - 0.030696686300434338, - 0.030797454410513236, - 0.03387629869725019, - 0.02603039448672264, - 0.025725351869632176, - 0.040086957586446446, - 0.044735300137918974, - 0.03339908348933919, - 0.03725281539366505, - 0.037070061042083484, - 0.037803107411690476, - 0.03890137610947199, - 0.030262857872221313, - 0.030104136682550253, - 0.03556697802660315, - 0.03478345298746731, - 0.03172306674379437, - 0.03768299658742885, - 0.03837946479296391, - 0.037042039062945536, - 0.036122595052380996, - 0.03453338096228661, - 0.035401428338530425, - 0.03455495545517524, - 0.04042846040396637, - 0.028124023309323606, - 0.029028499360337127, - 0.03610297870970718, - 0.03467578001521716, - 0.03380996751046348, - 0.040053898114464165, - 0.0344340588344269, - 0.03514899032237337, - 0.03380214935218205, - 0.033761801911519694, - 0.033611242131484226, - 0.042602753332024276, - 0.028714809272668444, - 0.03356888076960846, - 0.02383223034179857, - 0.029427525494490167, - 0.032720227436202495, - 0.028900607168812733, - 0.032695859526583604, - 0.031614076692092256, - 0.02314657074068737, - 0.036218770128229244, - 0.028812670358352676, - 0.03791340402233177, - 0.037854245978991306, - 0.030191128491347138, - 0.034878581276691446, - 0.036259203015914315, - 0.02425720104358158, - 0.026188551925098464, - 0.02896193279628356, - 0.04720079402411631, - 0.02566298307528826, - 0.03129743211674899, - 0.03734964414975982, - 0.034716599166801754, - 0.02855803406741944, - 0.03331004367269648, - 0.02897128248249325, - 0.030552601140600405, - 0.03778400270888542, - 0.036389096046903546, - 0.032573338254578955, - 0.026943054778219674, - 0.02904758830617623, - 0.037373431491205686, - 0.04384459720506106, - 0.03895335612356553, - 0.04416384172100577, - 0.03462918203035249, - 0.0405237670864669, - 0.029048451003401334, - 0.029608841574737085, - 0.03543148271790335, - 0.031393510056096245, - 0.03386653650281102, - 0.03750557724160782, - 0.029227911950721136, - 0.032280335043317114, - 0.033115074537857586, - 0.039560121625860825, - 0.032362858214441174, - 0.026179471282616752, - 0.03950156806605429, - 0.04016370071087443, - 0.03423765437342023, - 0.039782249801588315, - 0.032530906148741996, - 0.04495530414334928, - 0.02960698355436091, - 0.029804405228972597, - 0.03196124930544647, - 0.027835186488286864, - 0.03285776225742449, - 0.04725143417657965, - 0.025543448706775832, - 0.03765065156069959, - 0.03373785484681724, - 0.030279717738853233, - 0.026923491605227227, - 0.03964565078120336, - 0.03423222203208535, - 0.03206425359584273, - 0.030451177995470362, - 0.029911070728941835, - 0.03650029529836572, - 0.03508351062803696, - 0.03693932410404872, - 0.034005464551100296, - 0.033357513559508306, - 0.02786270699042153, - 0.029791855429878736, - 0.029546186293740746, - 0.030577768426220852, - 0.03251302585492968, - 0.03235819584305654, - 0.03403386379076707, - 0.038937316930553134, - 0.037631545006835465, - 0.027993411431710004, - 0.030798484730873522, - 0.02808463558603145, - 0.028080039479663834, - 0.037468819531334296, - 0.032960790916441364, - 0.038787118131934535, - 0.031576038204339685, - 0.03625169184573231, - 0.032377871784582034, - 0.03654556129014071, - 0.029567878989818455, - 0.03308724487040621, - 0.04230352161546482, - 0.041984685731688134, - 0.04154519776149997, - 0.03452705017992085, - 0.032828145023701565, - 0.03794731391828579, - 0.03623481976523439, - 0.027419562588825303, - 0.022895627759566425, - 0.03124939104778343, - 0.030724200909585348, - 0.027711793588810343, - 0.035479396806567004, - 0.03236657944992099, - 0.025383799125942876, - 0.03355012012123725, - 0.04094443406834956, - 0.030965503841358957, - 0.03930841352765779, - 0.027642992816166258, - 0.03584738940462405, - 0.026000594566461966, - 0.03828877128674367, - 0.03845777747091339, - 0.032877960872560064, - 0.027887155767787036, - 0.03122660019820442, - 0.034802348732782755, - 0.03612732875052638, - 0.03118842040812846, - 0.030206244119427073, - 0.031346489566685856, - 0.034756885121136435, - 0.02650071189774481, - 0.03500926720418023, - 0.038291222915240834, - 0.025594419411673733, - 0.034073361208489084, - 0.041701021911357945, - 0.0348847532950894, - 0.03363044260198857, - 0.037646063160207174, - 0.032700353712236764, - 0.03426029810917387, - 0.03303963096255399, - 0.039640267348254356, - 0.027892701347118513, - 0.038276393591163096, - 0.03134888940894367, - 0.024456488084963757, - 0.037453613481793144, - 0.033569004712199146, - 0.038397653758842146, - 0.04478582712422026, - 0.029538356441465446, - 0.034265835250280076, - 0.02986974626775311, - 0.04290270055738055, - 0.027671199996401285, - 0.035300950088075884, - 0.03904063793920634, - 0.037497671348449065, - 0.033584966219899266, - 0.04922761166960846, - 0.041027759683188246, - 0.02881076673069492, - 0.03269026158400302, - 0.028525797555870563, - 0.031531287775632265, - 0.0395914930806304, - 0.035875601976130704, - 0.032201703317957506, - 0.028512726493716285, - 0.042663441261862126, - 0.039103177325905854, - 0.02631920090475129, - 0.030910381578722994, - 0.030278939796616895, - 0.031374868212875905, - 0.029498060074887228, - 0.027253096024423374, - 0.03672238950543256, - 0.03483468396259517, - 0.04176125899432201, - 0.03079673364646896, - 0.03783175314189435, - 0.024189197092756715, - 0.038151826307792604, - 0.03892987023547012, - 0.055904482157054285, - 0.038312635981496014, - 0.033205556594096325, - 0.02517860197933624, - 0.027172343386213257, - 0.03138464517137774, - 0.026498080003073667, - 0.030092442104310883, - 0.03611023754998208, - 0.03970864823448831, - 0.05199110912613046, - 0.04933794665085209, - 0.0313166953133547, - 0.03505213174504582, - 0.03137065070832996, - 0.03703791325822058, - 0.04893582550777834, - 0.030697573280556768, - 0.02848121545919873, - 0.028094136916385272, - 0.03960561818490391, - 0.033956503251065154, - 0.03766331070475689, - 0.038554628059630364, - 0.03229682984041271, - 0.03956267966259688, - 0.033430479239069624, - 0.03109175725496817, - 0.03997999340717402, - 0.03378991343421533, - 0.035004717568969265, - 0.03710316528770227, - 0.039118542946172515, - 0.034745596159427426, - 0.04266138027190219, - 0.02949127060758573, - 0.024600469924351775, - 0.03912320764894336, - 0.033968534517677715, - 0.03874128466352929, - 0.036689445077267374, - 0.03903532177613969, - 0.03403192706255862, - 0.027632760796347054, - 0.031171937514822695, - 0.035440283974730535, - 0.036582632321265865, - 0.02954192965561725, - 0.032981052925447896, - 0.042117218254812405, - 0.02658889159084207, - 0.03564293234361485, - 0.032589694720056094, - 0.02791500592682074, - 0.028677015009089722, - 0.04256362268612128, - 0.031497797191642044, - 0.02944665416652815, - 0.02991565418864529, - 0.022148514913302386, - 0.04080546194766982, - 0.034363130238370405, - 0.03787169759499469, - 0.03460014327968104, - 0.04164096307038609, - 0.03163425761719948, - 0.0325622088798828, - 0.032469581711568316, - 0.03167693539563376, - 0.026698209118665106, - 0.033739862298966763, - 0.029260574195488314, - 0.04803529099955516, - 0.033397698214784784, - 0.027910333857111704, - 0.026044577424945956, - 0.027284194369490648, - 0.03760726725328718, - 0.03558907919972693, - 0.032422698438499264, - 0.03588733880353378, - 0.03436190064731567, - 0.03275840379605424, - 0.03288839915744669, - 0.023981526062616117, - 0.027598050623528318, - 0.03441045842961918, - 0.03485756382060149, - 0.03670619733613154, - 0.03316656020618803, - 0.03411275111689395, - 0.03838538157713476, - 0.03211636079535403, - 0.04052080988322535, - 0.03732609336188845, - 0.03914070507134503, - 0.034361141682950944, - 0.03489682996932117, - 0.03501272593923951, - 0.045410495207174266, - 0.032138667173606916, - 0.037533547555821285, - 0.04662432844712052, - 0.03077613754148349, - 0.037214312921653926, - 0.03161291372038152, - 0.025234926999283758, - 0.021883043704058393, - 0.028263120932016373, - 0.033101380928847075, - 0.027951618371099423, - 0.03527084311805966, - 0.03079284005589148, - 0.0290675285010844, - 0.041773952878188435, - 0.03643075889877551, - 0.03767774332071183, - 0.04449601014830308, - 0.031024845264631427, - 0.03375677484186619, - 0.0414303046659578, - 0.038310394395139426, - 0.03126249174808313, - 0.03991072147376599, - 0.0436905634414319, - 0.03294273943439037, - 0.026044347069611326, - 0.028730400081916043 - ] - }, - { - "legendgroup": "Point sensor 0", - "line": { - "color": "rgb(158, 185, 243)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 0", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.028730400081916043, - 0.033881943166148995, - 0.03927781277025736, - 0.038110160398209414, - 0.04589692926632319, - 0.03398042515567846, - 0.0319515114610385, - 0.036747606335503315, - 0.029101548157060734, - 0.030910122601032486, - 0.0325124324682641, - 0.027920599466407046, - 0.030620690814716977, - 0.0340465304735412, - 0.03653270430987505, - 0.028919043459090545, - 0.03319391060825912, - 0.03695261759041335, - 0.032280242583842725, - 0.043681972057122695, - 0.03241442905340647, - 0.04120418270351926, - 0.02941928066381735, - 0.03419121658985303, - 0.035466025698140335, - 0.036265734096579044, - 0.040708188415339686, - 0.04076972504018561, - 0.02708482317636651, - 0.023512972229489386, - 0.03836495873131871, - 0.044378717299332925, - 0.04446383731382336, - 0.041887502424231206, - 0.04698999672656659, - 0.0405585589265223, - 0.030458371940921984, - 0.04753948009705149, - 0.034430141133163304, - 0.028200288467305535, - 0.041128304069258846, - 0.027835063839198877, - 0.030959889905526537, - 0.0389154581895924, - 0.04493067036474671, - 0.02890290925805176, - 0.02801202052985191, - 0.03656649689953787, - 0.034363820056104354, - 0.028133997558454287, - 0.033878670159602754, - 0.03632014463169563, - 0.029078347548122222, - 0.03547783291424104, - 0.03230726201444482, - 0.04078678538858384, - 0.03481377174251607, - 0.03885574350022191, - 0.03107865939260826, - 0.03115605846273629, - 0.024804248139656745, - 0.0354709776347539, - 0.03409431660737118, - 0.027749344900649838, - 0.028427535976220424, - 0.044867736709479814, - 0.03725292405619539, - 0.030513421752671643, - 0.02944262411496978, - 0.029540417390071183, - 0.030992766454580958, - 0.026086122105049108, - 0.02769944189443073, - 0.027218036519247972, - 0.0406376202676903, - 0.028052721180565895, - 0.03903647105946929, - 0.02505713770742484, - 0.037161083651909205, - 0.03272629880104228, - 0.0378545822671327, - 0.023304722565856514, - 0.031050743952005862, - 0.04148358819226048, - 0.03576559881815987, - 0.03296211360303648, - 0.02873852732897543, - 0.03535848079571683, - 0.033745075913444986, - 0.045132337611191696, - 0.03465888408953502, - 0.04554058050761245, - 0.03531439767961805, - 0.03719078183473951, - 0.03874859578014595, - 0.03189688198690347, - 0.03433852244737945, - 0.02981212428551983, - 0.030646905427243715, - 0.03393972120035687, - 0.036731495973571164, - 0.028874951202008305, - 0.032321440975853204, - 0.030086939007068842, - 0.031217679683368128, - 0.02810011412391421, - 0.028461146619625573, - 0.036685793805615804, - 0.0409839199908198, - 0.03127989479094569, - 0.027051303498056584, - 0.03530349468776915, - 0.033509240358780154, - 0.030418725134789982, - 0.029648118270088362, - 0.03883678023299432, - 0.02816346464640427, - 0.028508822049308987, - 0.03405548638777601, - 0.0371763363663313, - 0.030363856720824402, - 0.03997147056268974, - 0.03331122363960413, - 0.033164541265160725, - 0.04272865836187379, - 0.037959765419977344, - 0.029526632620651246, - 0.03914830948728841, - 0.04067050461524373, - 0.03986210064257585, - 0.038175473802584965, - 0.03346363499881953, - 0.03487128161231673, - 0.036534281858609165, - 0.03686689076133713, - 0.03314006247087072, - 0.03217824902453845, - 0.034332150509935246, - 0.0375826474761299, - 0.03369896470310987, - 0.04075377442677322, - 0.044494118531690656, - 0.03838104523756312, - 0.03531133206954018, - 0.04157210935830309, - 0.03429492369768951, - 0.03781887065979853, - 0.04223825829115736, - 0.03599375754817871, - 0.02780109992465961, - 0.04493282822400082, - 0.027988565603909294, - 0.02732614555159464, - 0.030633372091273207, - 0.03184473803422635, - 0.03213910265672934, - 0.027708569386982077, - 0.037751835503167304, - 0.024364059648758134, - 0.030776943130883798, - 0.03439267072971196, - 0.028110166568293918, - 0.038851403214556594, - 0.028794435967891857, - 0.03476834412999139, - 0.030771840197729036, - 0.046006225533884657, - 0.03514583753634455, - 0.03159982919751817, - 0.041036236510873896, - 0.03253851174734522, - 0.035865692011508944, - 0.029410060631906678, - 0.03555112168738075, - 0.03114593070883026, - 0.04065978768051126, - 0.030238943592008675, - 0.02880228104846223, - 0.03440841659824007, - 0.031123769061913654, - 0.042742881508256954, - 0.0293672164639052, - 0.02780330860909197, - 0.03416936020653274, - 0.03062091649258579, - 0.027167081519446898, - 0.03240755853487572, - 0.03779494041789021, - 0.04546878646718969, - 0.0430953406834483, - 0.03315148355069283, - 0.03071785129446141, - 0.033654695676175246, - 0.03709619961996902, - 0.035886340075965105, - 0.04165486615530999, - 0.030052680037478796, - 0.03068319351229605, - 0.030104565428295187, - 0.02834677057493968, - 0.036405931324913675, - 0.031159906387083127, - 0.0394340262306378, - 0.05440367460850538, - 0.03595773577281381, - 0.043553893857130835, - 0.044208039382099835, - 0.03082347618340309, - 0.03677043174786094, - 0.031189211619962715, - 0.04462747141193492, - 0.03502962861518813, - 0.037841964454644605, - 0.033389015945986235, - 0.05103758198972826, - 0.026921301955037967, - 0.02628327097981201, - 0.03522261566865703, - 0.032333697762604884, - 0.03148970373589495, - 0.026598132773666627, - 0.035491879899461114, - 0.028901516173243227, - 0.02458307004952279, - 0.027397701447653022, - 0.037612289793702285, - 0.029108065617765702, - 0.041537287475881306, - 0.03508649951215046, - 0.03205225417574201, - 0.03170791603838071, - 0.027857675311701025, - 0.03802547191236282, - 0.03201208470999693, - 0.03164906399622255, - 0.04003666100009187, - 0.033449984354083556, - 0.04050362748630802, - 0.036306529841773794, - 0.026788815466452513, - 0.03749360279371684, - 0.03634683453407712, - 0.04114339878886541, - 0.037601340634670605, - 0.02964779100089721, - 0.022755921601106913, - 0.02611178791027184, - 0.028583909168130032, - 0.037003786882180006, - 0.033853856777386615, - 0.03209387727354596, - 0.02287595430544444, - 0.030167418889404534, - 0.033384154952263684, - 0.026615816191846945, - 0.047772490631428896, - 0.03409697334898064, - 0.03271840746244994, - 0.03095701964223419, - 0.03000352866599612, - 0.04503529755589143, - 0.023710280556558595, - 0.0428444703204472, - 0.032440031729846504, - 0.03294492079106382, - 0.03073206728193746, - 0.039127547715970976, - 0.03331530118154565, - 0.03896777629872029, - 0.035977413770835125, - 0.030733074534830554, - 0.028793364094033765, - 0.03345361196494266, - 0.02509386576456249, - 0.036293925134882866, - 0.030001702883718076, - 0.03575149178069005, - 0.031879406165652206, - 0.048127467660635755, - 0.03510448992615398, - 0.03054770791384083, - 0.0341501955856718, - 0.030062421878326362, - 0.03081534348134185, - 0.05012247672196684, - 0.04229185795002784, - 0.02750880011661486, - 0.027407497233885945, - 0.028363565184744786, - 0.04175895325181524, - 0.03857533060511729, - 0.028104022237563, - 0.03665993574889248, - 0.029338758006209165, - 0.03535833314863518, - 0.027379777865223894, - 0.034489805790884676, - 0.03573158506942282, - 0.03474417038083268, - 0.036254060044271036, - 0.030536000277769766, - 0.04618872828166714, - 0.049306916988358825, - 0.04318030338397824, - 0.04135173035832307, - 0.039890493126507456, - 0.032975424949020074, - 0.029966099019579473, - 0.029421470993259643, - 0.029957625180864613, - 0.03334954042909975, - 0.03275302804418062, - 0.03519667341539493, - 0.03117302254157118, - 0.04811911249973314, - 0.026761346276290333, - 0.03243861694373515, - 0.029241092039509958, - 0.03715576772010095, - 0.033699618617223114, - 0.035250729811982906, - 0.03636155459554879, - 0.0337043077503691, - 0.03637934276369842, - 0.030859739127199023, - 0.03798930075314889, - 0.04456222255000494, - 0.02575604928105649, - 0.03588814315763298, - 0.03791332037732743, - 0.035188783507917244, - 0.027726390434822754, - 0.04136502373478811, - 0.03947902286915189, - 0.02867110535046317, - 0.027799362492441422, - 0.034811259704578865, - 0.03002424705669078, - 0.044594823525015995, - 0.03555288840899756, - 0.03281179749123341, - 0.03543356295393587, - 0.038194082682701413, - 0.0335719313571137, - 0.035653189917105185, - 0.030538929840645972, - 0.04295385420106068, - 0.028005760085707904, - 0.030512495889694805, - 0.03694268423887027, - 0.028836027061230715, - 0.029677946157772216, - 0.03287093499762886, - 0.02935766756751261, - 0.03930292947216365, - 0.03227200685301598, - 0.02516326961889775, - 0.037369024323997524, - 0.03406087929901412, - 0.030423398240024675, - 0.03675685509141234, - 0.0325606740569769, - 0.0314652304726351, - 0.03150345423281339, - 0.030549230343753876, - 0.031010210513666602, - 0.039363345878078326, - 0.028699867292214475, - 0.026198769073312093, - 0.03406705507138059, - 0.03091550246372912, - 0.0492582188991395, - 0.02748342600760164, - 0.03357594025642514, - 0.025938413220919616, - 0.03578268513830564, - 0.03086037651791753, - 0.030215885463692527, - 0.026094386989562485, - 0.04020212089052995, - 0.024961975723244337, - 0.03427300547830231, - 0.03671485460597924, - 0.02979888885954624, - 0.03274732946577115, - 0.028664315949402785, - 0.03423618519936718, - 0.03380672216546809, - 0.04590000589039639, - 0.03221294749235921, - 0.030639135260273065, - 0.03976132220015528, - 0.036930644166792134, - 0.033747717748431626, - 0.03337546738516923, - 0.034308627969330714, - 0.0416158191537434, - 0.025541596098808142, - 0.028032058266435272, - 0.03910943308336302, - 0.04326222141828421, - 0.028154964765847106, - 0.03142794920553126, - 0.039310368408094, - 0.03189268540537626, - 0.0327791599342847, - 0.038204637322043475, - 0.03713228071255239, - 0.04702090253954085, - 0.03585858052638959, - 0.0433758810473987, - 0.03588592615924385, - 0.028284447153251267, - 0.04204290756694897, - 0.033221051116093185, - 0.02989135783148329, - 0.040247388629399194, - 0.03606441240259314, - 0.02291847200914733, - 0.03135790293304541, - 0.040527459304628734, - 0.02905090567133596, - 0.03449887639949741, - 0.04076897281821405, - 0.027543690005293678, - 0.036636071766337215, - 0.02419558162150175, - 0.029526661736275186, - 0.03235442496236114, - 0.03428412443078698, - 0.030984626295996087, - 0.037204001510299935, - 0.038052585241895455, - 0.03562846846856947, - 0.035456991730392254, - 0.04054329857483479, - 0.03399502939997275, - 0.03066038456720777, - 0.040679935057867725, - 0.026173493162590957, - 0.03403525391183598, - 0.030540628059658136, - 0.029261545654345043, - 0.03311111478248597, - 0.024582096067901953, - 0.026916452238908803, - 0.02574215289221617, - 0.03565234553245693, - 0.026840054282859228, - 0.03316197400782218, - 0.03794897185924013, - 0.04307062807366808, - 0.035317762113668966, - 0.02933143825366428, - 0.047668668526296185, - 0.028868997808262284, - 0.03897289806696191, - 0.032879121580647555, - 0.03469467618168949, - 0.03102663473371115, - 0.02897820347693138, - 0.026163849490415638, - 0.03292704435029004, - 0.03930400416736071, - 0.0414888890384178, - 0.025529331579859576, - 0.025472179280154703, - 0.03587075682742644, - 0.04056257201341388, - 0.035222290025887, - 0.034512506769248795, - 0.026690785903870157, - 0.027606334823235473, - 0.028904155468306218, - 0.0295083412030431, - 0.030970704090303874, - 0.03828628738162924, - 0.04018837104273258, - 0.02974198793207685, - 0.04262989244967345, - 0.02844112252097725, - 0.030300074791675995, - 0.044394489279280164, - 0.031940994280482915, - 0.03884894885597151, - 0.03357529387037988, - 0.02665861363598947, - 0.03259212814705549, - 0.03880217583799049, - 0.02756519629742931, - 0.027675941780116318, - 0.030034496627392136, - 0.03256815885599147, - 0.03258117881768999, - 0.04061977877461629, - 0.03241571728548689, - 0.031773359335959546, - 0.0328119675767194, - 0.03217625326418999, - 0.04023664739305251, - 0.029666020307358747, - 0.0359686928759145, - 0.0510038580351421, - 0.027077922922043383, - 0.04100299828745946, - 0.03604301176483936, - 0.024434346261760487, - 0.03325641111756954, - 0.04383923903444501, - 0.03440054513881078, - 0.03827286510064621, - 0.03582767809089721, - 0.030266812541992767, - 0.0272993432396432, - 0.038258080374885296, - 0.03372719400087233, - 0.0354586397732166, - 0.0367299477499498, - 0.030131220199679627, - 0.032597669722813555, - 0.034516699750622826, - 0.030743761813372995, - 0.029963220969148906, - 0.03785828930028049, - 0.02881428936338901, - 0.03345099696918411, - 0.023706345658847668, - 0.0454972853046259, - 0.03928450989043999, - 0.02796636179209917, - 0.030282384628060186, - 0.02631109362286273, - 0.03216680855501366, - 0.03819820771172872, - 0.028599101750779447, - 0.03255345415835046, - 0.04172763638956458, - 0.038747332442645506, - 0.03624998008879587, - 0.0363738996799991, - 0.031139809234845914, - 0.04376558738813405, - 0.035143614937741485, - 0.03762232166499836, - 0.04137026559611444, - 0.03070343753732814, - 0.03366039033962237, - 0.027962506438261463, - 0.043390687250217025, - 0.02732674803514689, - 0.03295582018715001, - 0.03463865679626418, - 0.03879419587607675, - 0.03382403113287381, - 0.025732995292104953, - 0.0279655853331793, - 0.031237439907963495, - 0.043797193008695355, - 0.026783773282362856, - 0.024113380107770505, - 0.039744239968405704, - 0.038505894507168834, - 0.04100948572727368, - 0.031810821241325574, - 0.03833421540488557, - 0.028554267828629618, - 0.032150975229345374, - 0.030442545273892146, - 0.03029323133657424, - 0.03370272705440659, - 0.042091434366175, - 0.02883617777626739, - 0.02891419556061109, - 0.034199398211100344, - 0.03484455099008817, - 0.041456258646293126, - 0.043866974828015035, - 0.027867543125828613, - 0.03239208656874652, - 0.035138380281738386, - 0.023880528008812622, - 0.030634814342403803, - 0.02274550182230251, - 0.03979550656493363, - 0.03629894804764317, - 0.03530359740809442, - 0.04518600539732794, - 0.03458210546420122, - 0.03566919827305155, - 0.03915707881148644, - 0.0450501402492692, - 0.031212479271530775, - 0.03782179878978385, - 0.029742170217609293, - 0.02565995501686963, - 0.047672852816897114, - 0.02808063059330969, - 0.0358423727579082, - 0.034634718327584586, - 0.033107517937279056, - 0.035322413716626214, - 0.03372143750058938, - 0.03000002507263347, - 0.028222240440089152, - 0.0320301747136645, - 0.03177760184153891, - 0.026251405169322898, - 0.026540706104969905, - 0.026705776074989303, - 0.02919977542871963, - 0.03608629419643647, - 0.033090158503782684, - 0.029437464865450284, - 0.032462588648604795, - 0.03132793796302379, - 0.03235468905335, - 0.03876587186508377, - 0.03651362989774494, - 0.02983912118064083, - 0.030888636503824042, - 0.03991413033022151, - 0.026611105960951092, - 0.03158492309729757, - 0.03180639771402822, - 0.03939447779521454, - 0.0275713454259091, - 0.023622797267416288, - 0.029637303041378574, - 0.03684203129752161, - 0.0239173311593559, - 0.032389884430280146, - 0.027928018355176554, - 0.03125212234949589, - 0.023773103900228378, - 0.03391400886698708, - 0.02962211192177599, - 0.025447021477481888, - 0.03359475932470061, - 0.029743520818615015, - 0.026190218428636163, - 0.05274490207572891, - 0.027849306196281398, - 0.030176807255885403, - 0.03240617622113872, - 0.03330789597649932, - 0.04337549193542732, - 0.042741124841750376, - 0.028360592356186265, - 0.03857014591305177, - 0.03263994685526251, - 0.029147433183258274, - 0.034176024164151456, - 0.04502269934278859, - 0.028656726921042947, - 0.03190121096117925, - 0.03772861584741284, - 0.03319160157943058, - 0.029427822729275487, - 0.02960166772681271, - 0.033485982419986446, - 0.04039726426442144, - 0.030819722600440944, - 0.03998586594284974, - 0.036753821927224595, - 0.03413612190703058, - 0.02750653557086302, - 0.03298388952700729, - 0.03704040586175771, - 0.03798906811446279, - 0.03978788919136661, - 0.03095957445207455, - 0.03780450127187508, - 0.026045863205025728, - 0.03717589342085566, - 0.0364943595053284, - 0.04004439239041462, - 0.027880703304371438, - 0.03032294292915723, - 0.031522325106640915, - 0.04379162230512463, - 0.028723009767412364, - 0.03667064978019111, - 0.029574784369723658, - 0.04196988914408797, - 0.03480041504118841, - 0.03420620292482848, - 0.032394118009922104, - 0.031034069955565537, - 0.039870190403996315, - 0.03796773175699418, - 0.03524479189847216, - 0.03125771537901207, - 0.03650980519136065, - 0.03289135230807299, - 0.029551099730856942, - 0.026795337292864797, - 0.03410038141718872, - 0.032068442973628694, - 0.027455550796513628, - 0.036449700007983386, - 0.04537921039699037, - 0.037150831070282414, - 0.035535917538921, - 0.027930915999203144, - 0.030542612763750424, - 0.03148173314576915, - 0.03577159020779112, - 0.03142865199863498, - 0.029798930185116913, - 0.03914098479966321, - 0.03514392759884803, - 0.037911108310945255, - 0.036117196984939884, - 0.03686271042424865, - 0.02645606273794196, - 0.03895810480197075, - 0.03247971681469701, - 0.03415309963657579, - 0.028428268930439666, - 0.02802536669916236, - 0.030388089737194073, - 0.04107729373935503, - 0.027103055431215342, - 0.03397184590919071, - 0.040785794737757536, - 0.03563520758593882, - 0.024569509844970472, - 0.04034341680132433, - 0.03183883231764088, - 0.039163467329564626, - 0.03286366059715728, - 0.03443350746407875, - 0.032844604903203824, - 0.04217257841478304, - 0.03985559657514195, - 0.03336608367082907, - 0.03693738120327866, - 0.029516835231539383, - 0.030681964039744596, - 0.02779905006240517, - 0.04658067050014131, - 0.04006665376006488, - 0.03861721170389151, - 0.031160022241474385, - 0.02735425632135579, - 0.02964589329140305, - 0.02509624484069129, - 0.03231493730034873, - 0.03098611857833786, - 0.03828150068939855, - 0.04103371925208667, - 0.05480981547372096, - 0.038061521920363016, - 0.0398270255306165, - 0.04440890201003855, - 0.04075139660626996, - 0.03880318299734203, - 0.03468014156118697, - 0.03201255640810878, - 0.03203325435255284, - 0.03490439499837843, - 0.029252951027141184, - 0.02748714144441909, - 0.039327844105675566, - 0.028362597344112606, - 0.033293113205393014, - 0.032646650607911505, - 0.02886118274858472, - 0.04346743039316902, - 0.03897292370004416, - 0.041415531189685086, - 0.03582937872719819, - 0.027125383463025402, - 0.029808030402829387, - 0.04622825176860373, - 0.031871139735612994, - 0.029910533047153454, - 0.028515459972342557, - 0.043223817673702904, - 0.040868381894401784, - 0.03364626760057082, - 0.03130185266379414, - 0.0475929325026086, - 0.035558125593689247, - 0.029251069369614247, - 0.026448410640128102, - 0.03472417720084887, - 0.029390041672446507, - 0.03236480364829256, - 0.03395375153751683, - 0.03533497996373493, - 0.038154921468510766, - 0.027968425417209522, - 0.029450349568009133, - 0.04081127539663292, - 0.04561245214352587, - 0.03188869751763019, - 0.035405519841377714, - 0.03594376704964941, - 0.028203634406032123, - 0.0331960456663394, - 0.03853385751759331, - 0.028858021111395588, - 0.03386928551128228, - 0.029665881443788067, - 0.034625584481223756, - 0.042881451710204264, - 0.03129324180596296, - 0.026156099132118655, - 0.03329476644598046, - 0.03759404379654716, - 0.02476139476066933, - 0.03989646804341892, - 0.04485177050368388, - 0.031015818730418573, - 0.030275057503189554, - 0.039205102973018324, - 0.033301180894371195, - 0.03285022103475917, - 0.030114657168496185, - 0.025815968688483827, - 0.036333245214047794, - 0.035874629778890214, - 0.03499539712140342, - 0.032463506492905796, - 0.046823804363988794, - 0.03430233136991898, - 0.045871807686035604, - 0.03371625048000333, - 0.035669788639321916, - 0.031966157177584796, - 0.035327249451785184, - 0.03522285914822728, - 0.03115903890584419, - 0.029717057894341443, - 0.03610713162783606, - 0.02881915116430541, - 0.03157258603707791, - 0.030416584270958943, - 0.03927458227125133, - 0.027381687755715665, - 0.02425559344464664, - 0.033754597558664175, - 0.02698446818217144, - 0.052171684115883216, - 0.034310341270177576, - 0.03717684999317471, - 0.030426480233400808, - 0.03168385514773541, - 0.029675814280360042, - 0.034811707925861475, - 0.0343784343979912, - 0.03147975748856906, - 0.03147816833909908, - 0.032220298945912385, - 0.029702490877926212, - 0.042464997138487316, - 0.02570931810797261, - 0.027116489242680744, - 0.032208404832182715, - 0.03164073483370064, - 0.027116116684954863, - 0.03760038977041418, - 0.03362702726309607, - 0.03276672911992101, - 0.04162884035694482, - 0.032472939089865455, - 0.03660607226592555, - 0.03319970342317875, - 0.0288347601653997, - 0.04731661025464657, - 0.03424512042049921, - 0.02867276769666236, - 0.033227099894658337, - 0.05164086447830833, - 0.026255542458659988, - 0.029531926985406697, - 0.02994699164356896, - 0.031194009500070664, - 0.04219635425725538, - 0.02897367870267151, - 0.035404412624129654, - 0.04353838425440516, - 0.03005746644787031, - 0.029360821226933936, - 0.04145067417342066, - 0.03353121619125658, - 0.029961196335981877, - 0.038308386124025054, - 0.038067663368815174, - 0.041218530599271816, - 0.022591425136734615, - 0.03531397043805468, - 0.038171105008284606, - 0.02750194478531059, - 0.03865048832652142, - 0.035520572008991336, - 0.0446974958817931, - 0.0373798498854274, - 0.038585187568533755, - 0.03405366054175496, - 0.03258952087539378, - 0.0415856298342921, - 0.03211092770382733, - 0.04012091312546855, - 0.03374058262403983, - 0.045382560504147615, - 0.03913120413788293, - 0.036799789805306606, - 0.0332152496635875, - 0.03129299211249186, - 0.029394261708700183, - 0.03207169419173592, - 0.041083363589904234, - 0.027213338139541136, - 0.02984038676171651, - 0.029910533794823765, - 0.03018621699039128, - 0.027880740228359242, - 0.03482444311397569, - 0.03074809324625761, - 0.03145127066201142, - 0.025336936535130777, - 0.034508347213759206, - 0.02919722073584053, - 0.05393024518481438, - 0.03002772183898221, - 0.025715043849779105, - 0.03171544336179963, - 0.037982107756229726, - 0.03091434611696633, - 0.031149567042502213, - 0.030600725009674846, - 0.041499099742282164, - 0.038413715587188764, - 0.03465639603926772, - 0.03300648171507887, - 0.03713382812428467, - 0.03586187823517403, - 0.026698263516129264, - 0.035459862566539165, - 0.03855162550014608, - 0.03262769296554796, - 0.025489109084121015, - 0.03322769491151407, - 0.02954616187096633, - 0.031084699639821547, - 0.03335711804589879, - 0.04080766746252395, - 0.030857730556546885, - 0.03390970086156695, - 0.034122545059163616, - 0.030391798211392273, - 0.03133507122522102, - 0.03495119103747878, - 0.04075216518163384, - 0.03463034825078001, - 0.033612394787972885, - 0.028259104490819833, - 0.0353127578841417, - 0.03067667096202965, - 0.030854685246250367, - 0.03598260668240897, - 0.033226320828300376, - 0.04378376457002912, - 0.030939831784511124, - 0.04400846139035187, - 0.038610066610099254, - 0.032774988130345066, - 0.029280605379089827, - 0.040563074895336865, - 0.034167152051105064, - 0.03333086489827231, - 0.034270683379884946, - 0.03488338116321936, - 0.03625151079747271, - 0.02936389000533999, - 0.03732495825332566, - 0.03417562244184149, - 0.025498868869240774, - 0.03723657906836694, - 0.03565920550073567, - 0.03245626475229878, - 0.029130562871005697, - 0.030095065772267792, - 0.03282856823303878, - 0.032950493164861, - 0.032619266675051335, - 0.02809559312656241, - 0.03850129464518264, - 0.04802446569353224, - 0.03418038784092213, - 0.03330307978932768, - 0.02911988289031628, - 0.04342150037230189, - 0.027384022256190105, - 0.03295789215689241, - 0.029234816888463452, - 0.03672123514457518, - 0.022909630901197915 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgb(254, 196, 216)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 1", - "showlegend": false, - "type": "scatter", - "x": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551, - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575, - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647, - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671, - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695, - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743, - 744, - 745, - 746, - 747, - 748, - 749, - 750, - 751, - 752, - 753, - 754, - 755, - 756, - 757, - 758, - 759, - 760, - 761, - 762, - 763, - 764, - 765, - 766, - 767, - 768, - 769, - 770, - 771, - 772, - 773, - 774, - 775, - 776, - 777, - 778, - 779, - 780, - 781, - 782, - 783, - 784, - 785, - 786, - 787, - 788, - 789, - 790, - 791, - 792, - 793, - 794, - 795, - 796, - 797, - 798, - 799, - 800, - 801, - 802, - 803, - 804, - 805, - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814, - 815, - 816, - 817, - 818, - 819, - 820, - 821, - 822, - 823, - 824, - 825, - 826, - 827, - 828, - 829, - 830, - 831, - 832, - 833, - 834, - 835, - 836, - 837, - 838, - 839, - 840, - 841, - 842, - 843, - 844, - 845, - 846, - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856, - 857, - 858, - 859, - 860, - 861, - 862, - 863, - 864, - 865, - 866, - 867, - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 875, - 876, - 877, - 878, - 879, - 880, - 881, - 882, - 883, - 884, - 885, - 886, - 887, - 888, - 889, - 890, - 891, - 892, - 893, - 894, - 895, - 896, - 897, - 898, - 899, - 900, - 901, - 902, - 903, - 904, - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919, - 920, - 921, - 922, - 923, - 924, - 925, - 926, - 927, - 928, - 929, - 930, - 931, - 932, - 933, - 934, - 935, - 936, - 937, - 938, - 939, - 940, - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948, - 949, - 950, - 951, - 952, - 953, - 954, - 955, - 956, - 957, - 958, - 959, - 960, - 961, - 962, - 963, - 964, - 965, - 966, - 967, - 968, - 969, - 970, - 971, - 972, - 973, - 974, - 975, - 976, - 977, - 978, - 979, - 980, - 981, - 982, - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 991, - 992, - 993, - 994, - 995, - 996, - 997, - 998, - 999, - 1000, - 1001, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1008, - 1009, - 1010, - 1011, - 1012, - 1013, - 1014, - 1015, - 1016, - 1017, - 1018, - 1019, - 1020, - 1021, - 1022, - 1023, - 1024, - 1025, - 1026, - 1027, - 1028, - 1029, - 1030, - 1031, - 1032, - 1033, - 1034, - 1035, - 1036, - 1037, - 1038, - 1039, - 1040, - 1041, - 1042, - 1043, - 1044, - 1045, - 1046, - 1047, - 1048, - 1049, - 1050, - 1051, - 1052, - 1053, - 1054, - 1055, - 1056, - 1057, - 1058, - 1059, - 1060, - 1061, - 1062, - 1063, - 1064, - 1065, - 1066, - 1067, - 1068, - 1069, - 1070, - 1071, - 1072, - 1073, - 1074, - 1075, - 1076, - 1077, - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1102, - 1103, - 1104, - 1105, - 1106, - 1107, - 1108, - 1109, - 1110, - 1111, - 1112, - 1113, - 1114, - 1115, - 1116, - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138, - 1139, - 1140, - 1141, - 1142, - 1143, - 1144, - 1145, - 1146, - 1147, - 1148, - 1149, - 1150, - 1151, - 1152, - 1153, - 1154, - 1155, - 1156, - 1157, - 1158, - 1159, - 1160, - 1161, - 1162, - 1163, - 1164, - 1165, - 1166, - 1167, - 1168, - 1169, - 1170, - 1171, - 1172, - 1173, - 1174, - 1175, - 1176, - 1177, - 1178, - 1179, - 1180, - 1181, - 1182, - 1183, - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200, - 1201, - 1202, - 1203, - 1204, - 1205, - 1206, - 1207, - 1208, - 1209, - 1210, - 1211, - 1212, - 1213, - 1214, - 1215, - 1216, - 1217, - 1218, - 1219, - 1220, - 1221, - 1222, - 1223, - 1224, - 1225, - 1226, - 1227, - 1228, - 1229, - 1230, - 1231, - 1232, - 1233, - 1234, - 1235, - 1236, - 1237, - 1238, - 1239, - 1240, - 1241, - 1242, - 1243, - 1244, - 1245, - 1246, - 1247, - 1248, - 1249, - 1250, - 1251, - 1252, - 1253, - 1254, - 1255, - 1256, - 1257, - 1258, - 1259, - 1260, - 1261, - 1262, - 1263, - 1264, - 1265, - 1266, - 1267, - 1268, - 1269, - 1270, - 1271, - 1272, - 1273, - 1274, - 1275, - 1276, - 1277, - 1278, - 1279, - 1280, - 1281, - 1282, - 1283, - 1284, - 1285, - 1286, - 1287, - 1288, - 1289, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1296, - 1297, - 1298, - 1299, - 1300, - 1301, - 1302, - 1303, - 1304, - 1305, - 1306, - 1307, - 1308, - 1309, - 1310, - 1311, - 1312, - 1313, - 1314, - 1315, - 1316, - 1317, - 1318, - 1319, - 1320, - 1321, - 1322, - 1323, - 1324, - 1325, - 1326, - 1327, - 1328, - 1329, - 1330, - 1331, - 1332, - 1333, - 1334, - 1335, - 1336, - 1337, - 1338, - 1339, - 1340, - 1341, - 1342, - 1343, - 1344, - 1345, - 1346, - 1347, - 1348, - 1349, - 1350, - 1351, - 1352, - 1353, - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364, - 1365, - 1366, - 1367, - 1368, - 1369, - 1370, - 1371, - 1372, - 1373, - 1374, - 1375, - 1376, - 1377, - 1378, - 1379, - 1380, - 1381, - 1382, - 1383, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1390, - 1391, - 1392, - 1393, - 1394, - 1395, - 1396, - 1397, - 1398, - 1399, - 1400, - 1401, - 1402, - 1403, - 1404, - 1405, - 1406, - 1407, - 1408, - 1409, - 1410, - 1411, - 1412, - 1413, - 1414, - 1415, - 1416, - 1417, - 1418, - 1419, - 1420, - 1421, - 1422, - 1423, - 1424, - 1425, - 1426, - 1427, - 1428, - 1429, - 1430, - 1431, - 1432, - 1433, - 1434, - 1435, - 1436, - 1437, - 1438, - 1439, - 1440, - 1441, - 1442, - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1450, - 1451, - 1452, - 1453, - 1454, - 1455, - 1456, - 1457, - 1458, - 1459, - 1460, - 1461, - 1462, - 1463, - 1464, - 1465, - 1466, - 1467, - 1468, - 1469, - 1470, - 1471, - 1472, - 1473, - 1474, - 1475, - 1476, - 1477, - 1478, - 1479, - 1480, - 1481, - 1482, - 1483, - 1484, - 1485, - 1486, - 1487, - 1488, - 1489, - 1490, - 1491, - 1492, - 1493, - 1494, - 1495, - 1496, - 1497, - 1498, - 1499, - 1500, - 1501, - 1502, - 1503, - 1504, - 1505, - 1506, - 1507, - 1508, - 1509, - 1510, - 1511, - 1512, - 1513, - 1514, - 1515, - 1516, - 1517, - 1518, - 1519, - 1520, - 1521, - 1522, - 1523, - 1524, - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532, - 1533, - 1534, - 1535, - 1536, - 1537, - 1538, - 1539, - 1540, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1547, - 1548, - 1549, - 1550, - 1551, - 1552, - 1553, - 1554, - 1555, - 1556, - 1557, - 1558, - 1559, - 1560, - 1561, - 1562, - 1563, - 1564, - 1565, - 1566, - 1567, - 1568, - 1569, - 1570, - 1571, - 1572, - 1573, - 1574, - 1575, - 1576, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583, - 1584, - 1585, - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592, - 1593, - 1594, - 1595, - 1596, - 1597, - 1598, - 1599, - 1600, - 1601, - 1602, - 1603, - 1604, - 1605, - 1606, - 1607, - 1608, - 1609, - 1610, - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621, - 1622, - 1623, - 1624, - 1625, - 1626, - 1627, - 1628, - 1629, - 1630, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652, - 1653, - 1654, - 1655, - 1656, - 1657, - 1658, - 1659, - 1660, - 1661, - 1662, - 1663, - 1664, - 1665, - 1666, - 1667, - 1668, - 1669, - 1670, - 1671, - 1672, - 1673, - 1674, - 1675, - 1676, - 1677, - 1678, - 1679, - 1680, - 1681, - 1682, - 1683, - 1684, - 1685, - 1686, - 1687, - 1688, - 1689, - 1690, - 1691, - 1692, - 1693, - 1694, - 1695, - 1696, - 1697, - 1698, - 1699, - 1700, - 1701, - 1702, - 1703, - 1704, - 1705, - 1706, - 1707, - 1708, - 1709, - 1710, - 1711, - 1712, - 1713, - 1714, - 1715, - 1716, - 1717, - 1718, - 1719, - 1720, - 1721, - 1722, - 1723, - 1724, - 1725, - 1726, - 1727, - 1728, - 1729, - 1730, - 1731, - 1732, - 1733, - 1734, - 1735, - 1736, - 1737, - 1738, - 1739, - 1740, - 1741, - 1742, - 1743, - 1744, - 1745, - 1746, - 1747, - 1748, - 1749, - 1750, - 1751, - 1752, - 1753, - 1754, - 1755, - 1756, - 1757, - 1758, - 1759, - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1780, - 1781, - 1782, - 1783, - 1784, - 1785, - 1786, - 1787, - 1788, - 1789, - 1790, - 1791, - 1792, - 1793, - 1794, - 1795, - 1796, - 1797, - 1798, - 1799, - 1800, - 1801, - 1802, - 1803, - 1804, - 1805, - 1806, - 1807, - 1808, - 1809, - 1810, - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822, - 1823, - 1824, - 1825, - 1826, - 1827, - 1828, - 1829, - 1830, - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1847, - 1848, - 1849, - 1850, - 1851, - 1852, - 1853, - 1854, - 1855, - 1856, - 1857, - 1858, - 1859, - 1860, - 1861, - 1862, - 1863, - 1864, - 1865, - 1866, - 1867, - 1868, - 1869, - 1870, - 1871, - 1872, - 1873, - 1874, - 1875, - 1876, - 1877, - 1878, - 1879, - 1880, - 1881, - 1882, - 1883, - 1884, - 1885, - 1886, - 1887, - 1888, - 1889, - 1890, - 1891, - 1892, - 1893, - 1894, - 1895, - 1896, - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1908, - 1909, - 1910, - 1911, - 1912, - 1913, - 1914, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1921, - 1922, - 1923, - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938, - 1939, - 1940, - 1941, - 1942, - 1943, - 1944, - 1945, - 1946, - 1947, - 1948, - 1949, - 1950, - 1951, - 1952, - 1953, - 1954, - 1955, - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964, - 1965, - 1966, - 1967, - 1968, - 1969, - 1970, - 1971, - 1972, - 1973, - 1974, - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983, - 1984, - 1985, - 1986, - 1987, - 1988, - 1989, - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996, - 1997, - 1998, - 1999, - 2000, - 2001, - 2002, - 2003, - 2004, - 2005, - 2006, - 2007, - 2008, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2015, - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028, - 2029, - 2030, - 2031, - 2032, - 2033, - 2034, - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041, - 2042, - 2043, - 2044, - 2045, - 2046, - 2047, - 2048, - 2049, - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056, - 2057, - 2058, - 2059, - 2060, - 2061, - 2062, - 2063, - 2064, - 2065, - 2066, - 2067, - 2068, - 2069, - 2070, - 2071, - 2072, - 2073, - 2074, - 2075, - 2076, - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083, - 2084, - 2085, - 2086, - 2087, - 2088, - 2089, - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098, - 2099, - 2100, - 2101, - 2102, - 2103, - 2104, - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111, - 2112, - 2113, - 2114, - 2115, - 2116, - 2117, - 2118, - 2119, - 2120, - 2121, - 2122, - 2123, - 2124, - 2125, - 2126, - 2127, - 2128, - 2129, - 2130, - 2131, - 2132, - 2133, - 2134, - 2135, - 2136, - 2137, - 2138, - 2139, - 2140, - 2141, - 2142, - 2143, - 2144, - 2145, - 2146, - 2147, - 2148, - 2149, - 2150, - 2151, - 2152, - 2153, - 2154, - 2155, - 2156, - 2157, - 2158, - 2159, - 2160, - 2161, - 2162, - 2163, - 2164, - 2165, - 2166, - 2167, - 2168, - 2169, - 2170, - 2171, - 2172, - 2173, - 2174, - 2175, - 2176, - 2177, - 2178, - 2179, - 2180, - 2181, - 2182, - 2183, - 2184, - 2185, - 2186, - 2187, - 2188, - 2189, - 2190, - 2191, - 2192, - 2193, - 2194, - 2195, - 2196, - 2197, - 2198, - 2199, - 2200, - 2201, - 2202, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2209, - 2210, - 2211, - 2212, - 2213, - 2214, - 2215, - 2216, - 2217, - 2218, - 2219, - 2220, - 2221, - 2222, - 2223, - 2224, - 2225, - 2226, - 2227, - 2228, - 2229, - 2230, - 2231, - 2232, - 2233, - 2234, - 2235, - 2236, - 2237, - 2238, - 2239, - 2240, - 2241, - 2242, - 2243, - 2244, - 2245, - 2246, - 2247, - 2248, - 2249, - 2250, - 2251, - 2252, - 2253, - 2254, - 2255, - 2256, - 2257, - 2258, - 2259, - 2260, - 2261, - 2262, - 2263, - 2264, - 2265, - 2266, - 2267, - 2268, - 2269, - 2270, - 2271, - 2272, - 2273, - 2274, - 2275, - 2276, - 2277, - 2278, - 2279, - 2280, - 2281, - 2282, - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2303, - 2304, - 2305, - 2306, - 2307, - 2308, - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318, - 2319, - 2320, - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335, - 2336, - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351, - 2352, - 2353, - 2354, - 2355, - 2356, - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364, - 2365, - 2366, - 2367, - 2368, - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381, - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396, - 2397, - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415, - 2416, - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466, - 2467, - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475, - 2476, - 2477, - 2478, - 2479, - 2480, - 2481, - 2482, - 2483, - 2484, - 2485, - 2486, - 2487, - 2488, - 2489, - 2490, - 2491, - 2492, - 2493, - 2494, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2504, - 2505, - 2506, - 2507, - 2508, - 2509, - 2510, - 2511, - 2512, - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519, - 2520, - 2521, - 2522, - 2523, - 2524, - 2525, - 2526, - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545, - 2546, - 2547, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2554, - 2555, - 2556, - 2557, - 2558, - 2559, - 2560, - 2561, - 2562, - 2563, - 2564, - 2565, - 2566, - 2567, - 2568, - 2569, - 2570, - 2571, - 2572, - 2573, - 2574, - 2575, - 2576, - 2577, - 2578, - 2579, - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588, - 2589, - 2590, - 2591, - 2592, - 2593, - 2594, - 2595, - 2596, - 2597, - 2598, - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605, - 2606, - 2607, - 2608, - 2609, - 2610, - 2611, - 2612, - 2613, - 2614, - 2615, - 2616, - 2617, - 2618, - 2619, - 2620, - 2621, - 2622, - 2623, - 2624, - 2625, - 2626, - 2627, - 2628, - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664, - 2665, - 2666, - 2667, - 2668, - 2669, - 2670, - 2671, - 2672, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686, - 2687, - 2688, - 2689, - 2690, - 2691, - 2692, - 2693, - 2694, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702, - 2703, - 2704, - 2705, - 2706, - 2707, - 2708, - 2709, - 2710, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2729, - 2730, - 2731, - 2732, - 2733, - 2734, - 2735, - 2736, - 2737, - 2738, - 2739, - 2740, - 2741, - 2742, - 2743, - 2744, - 2745, - 2746, - 2747, - 2748, - 2749, - 2750, - 2751, - 2752, - 2753, - 2754, - 2755, - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764, - 2765, - 2766, - 2767, - 2768, - 2769, - 2770, - 2771, - 2772, - 2773, - 2774, - 2775, - 2776, - 2777, - 2778, - 2779, - 2780, - 2781, - 2782, - 2783, - 2784, - 2785, - 2786, - 2787, - 2788, - 2789, - 2790, - 2791, - 2792, - 2793, - 2794, - 2795, - 2796, - 2797, - 2798, - 2799, - 2800, - 2801, - 2802, - 2803, - 2804, - 2805, - 2806, - 2807, - 2808, - 2809, - 2810, - 2811, - 2812, - 2813, - 2814, - 2815, - 2816, - 2817, - 2818, - 2819, - 2820, - 2821, - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2828, - 2829, - 2830, - 2831, - 2832, - 2833, - 2834, - 2835, - 2836, - 2837, - 2838, - 2839, - 2840, - 2841, - 2842, - 2843, - 2844, - 2845, - 2846, - 2847, - 2848, - 2849, - 2850, - 2851, - 2852, - 2853, - 2854, - 2855, - 2856, - 2857, - 2858, - 2859, - 2860, - 2861, - 2862, - 2863, - 2864, - 2865, - 2866, - 2867, - 2868, - 2869, - 2870, - 2871, - 2872, - 2873, - 2874, - 2875, - 2876, - 2877, - 2878, - 2879, - 2880, - 2881, - 2882, - 2883, - 2884, - 2885, - 2886, - 2887, - 2888, - 2889, - 2890, - 2891, - 2892, - 2893, - 2894, - 2895, - 2896, - 2897, - 2898, - 2899, - 2900, - 2901, - 2902, - 2903, - 2904, - 2905, - 2906, - 2907, - 2908, - 2909, - 2910, - 2911, - 2912, - 2913, - 2914, - 2915, - 2916, - 2917, - 2918, - 2919, - 2920, - 2921, - 2922, - 2923, - 2924, - 2925, - 2926, - 2927, - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938, - 2939, - 2940, - 2941, - 2942, - 2943, - 2944, - 2945, - 2946, - 2947, - 2948, - 2949, - 2950, - 2951, - 2952, - 2953, - 2954, - 2955, - 2956, - 2957, - 2958, - 2959, - 2960, - 2961, - 2962, - 2963, - 2964, - 2965, - 2966, - 2967, - 2968, - 2969, - 2970, - 2971, - 2972, - 2973, - 2974, - 2975, - 2976, - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987, - 2988, - 2989, - 2990, - 2991, - 2992, - 2993, - 2994, - 2995, - 2996, - 2997, - 2998, - 2999, - 3000, - 3001, - 3002, - 3003, - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018, - 3019, - 3020, - 3021, - 3022, - 3023, - 3024, - 3025, - 3026, - 3027, - 3028, - 3029, - 3030, - 3031, - 3032, - 3033, - 3034, - 3035, - 3036, - 3037, - 3038, - 3039, - 3040, - 3041, - 3042, - 3043, - 3044, - 3045, - 3046, - 3047, - 3048, - 3049, - 3050, - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065, - 3066, - 3067, - 3068, - 3069, - 3070, - 3071, - 3072, - 3073, - 3074, - 3075, - 3076, - 3077, - 3078, - 3079, - 3080, - 3081, - 3082, - 3083, - 3084, - 3085, - 3086, - 3087, - 3088, - 3089, - 3090, - 3091, - 3092, - 3093, - 3094, - 3095, - 3096, - 3097, - 3098, - 3099, - 3100, - 3101, - 3102, - 3103, - 3104, - 3105, - 3106, - 3107, - 3108, - 3109, - 3110, - 3111, - 3112, - 3113, - 3114, - 3115, - 3116, - 3117, - 3118, - 3119, - 3120, - 3121, - 3122, - 3123, - 3124, - 3125, - 3126, - 3127, - 3128, - 3129, - 3130, - 3131, - 3132, - 3133, - 3134, - 3135, - 3136, - 3137, - 3138, - 3139, - 3140, - 3141, - 3142, - 3143, - 3144, - 3145, - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153, - 3154, - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164, - 3165, - 3166, - 3167, - 3168, - 3169, - 3170, - 3171, - 3172, - 3173, - 3174, - 3175, - 3176, - 3177, - 3178, - 3179, - 3180, - 3181, - 3182, - 3183, - 3184, - 3185, - 3186, - 3187, - 3188, - 3189, - 3190, - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199, - 3200, - 3201, - 3202, - 3203, - 3204, - 3205, - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3222, - 3223, - 3224, - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234, - 3235, - 3236, - 3237, - 3238, - 3239, - 3240, - 3241, - 3242, - 3243, - 3244, - 3245, - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263, - 3264, - 3265, - 3266, - 3267, - 3268, - 3269, - 3270, - 3271, - 3272, - 3273, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3281, - 3282, - 3283, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290, - 3291, - 3292, - 3293, - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301, - 3302, - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3310, - 3311, - 3312, - 3313, - 3314, - 3315, - 3316, - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3324, - 3325, - 3326, - 3327, - 3328, - 3329, - 3330, - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338, - 3339, - 3340, - 3341, - 3342, - 3343, - 3344, - 3345, - 3346, - 3347, - 3348, - 3349, - 3350, - 3351, - 3352, - 3353, - 3354, - 3355, - 3356, - 3357, - 3358, - 3359, - 3360, - 3361, - 3362, - 3363, - 3364, - 3365, - 3366, - 3367, - 3368, - 3369, - 3370, - 3371, - 3372, - 3373, - 3374, - 3375, - 3376, - 3377, - 3378, - 3379, - 3380, - 3381, - 3382, - 3383, - 3384, - 3385, - 3386, - 3387, - 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398, - 3399, - 3400, - 3401, - 3402, - 3403, - 3404, - 3405, - 3406, - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424, - 3425, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435, - 3436, - 3437, - 3438, - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451, - 3452, - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3464, - 3465, - 3466, - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478, - 3479, - 3480, - 3481, - 3482, - 3483, - 3484, - 3485, - 3486, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, - 3498, - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3505, - 3506, - 3507, - 3508, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536, - 3537, - 3538, - 3539, - 3540, - 3541, - 3542, - 3543, - 3544, - 3545, - 3546, - 3547, - 3548, - 3549, - 3550, - 3551, - 3552, - 3553, - 3554, - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561, - 3562, - 3563, - 3564, - 3565, - 3566, - 3567, - 3568, - 3569, - 3570, - 3571, - 3572, - 3573, - 3574, - 3575, - 3576, - 3577, - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3586, - 3587, - 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3595, - 3596, - 3597, - 3598, - 3599, - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618, - 3619, - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641, - 3642, - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654, - 3655, - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662, - 3663, - 3664, - 3665, - 3666, - 3667, - 3668, - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730, - 3731, - 3732, - 3733, - 3734, - 3735, - 3736, - 3737, - 3738, - 3739, - 3740, - 3741, - 3742, - 3743, - 3744, - 3745, - 3746, - 3747, - 3748, - 3749, - 3750, - 3751, - 3752, - 3753, - 3754, - 3755, - 3756, - 3757, - 3758, - 3759, - 3760, - 3761, - 3762, - 3763, - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772, - 3773, - 3774, - 3775, - 3776, - 3777, - 3778, - 3779, - 3780, - 3781, - 3782, - 3783, - 3784, - 3785, - 3786, - 3787, - 3788, - 3789, - 3790, - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805, - 3806, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837, - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3864, - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894, - 3895, - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906, - 3907, - 3908, - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928, - 3929, - 3930, - 3931, - 3932, - 3933, - 3934, - 3935, - 3936, - 3937, - 3938, - 3939, - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946, - 3947, - 3948, - 3949, - 3950, - 3951, - 3952, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 3962, - 3963, - 3964, - 3965, - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991, - 3992, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998, - 3999, - 4000 - ], - "y": [ - 1.581277455801921, - 0.12700273461015482, - 0.04710186031403801, - 0.038998545956579866, - 0.033427371085331885, - 0.03535147200210741, - 0.029567191139033687, - 0.037385627866012947, - 0.04131736036330367, - 0.038204397259001155, - 0.048884135644636735, - 0.04731954822477499, - 0.030467338882717594, - 0.03343113150633135, - 0.0380027365301865, - 0.03166815192386568, - 0.033951527276174114, - 0.038776217722774155, - 0.026944123572508687, - 0.028218449896799173, - 0.030716662101100273, - 0.0320824044931607, - 0.036426713823845734, - 0.0379713845126345, - 0.02951437197488532, - 0.03146189005059042, - 0.04417861818025303, - 0.03722043294075036, - 0.0326221539333388, - 0.03534414563498246, - 0.031156247728475292, - 0.038067491506960226, - 0.04058684699160448, - 0.045787047950919965, - 0.03294249065761985, - 0.03882491782616562, - 0.041602942296748636, - 0.053733284321157856, - 0.037938520768387544, - 0.0408680003689611, - 0.04188090298625116, - 0.05052212565826496, - 0.03510022876521931, - 0.03515333161288164, - 0.042989604128556826, - 0.027628664825139766, - 0.03615066606705082, - 0.043329041330320325, - 0.029563782205266155, - 0.04727427977638931, - 0.03467007109445758, - 0.03251475929112239, - 0.034055441530663935, - 0.03139707126869468, - 0.04517459546688249, - 0.036227315519115615, - 0.03256128440778432, - 0.03804411088440626, - 0.0362960206468915, - 0.04159149942311131, - 0.037058889777678516, - 0.05417065902976562, - 0.0416164424152433, - 0.04553040750880754, - 0.04082217864711336, - 0.04139995747816667, - 0.03171626490979059, - 0.041169046150449515, - 0.04380380352721196, - 0.038106774587327204, - 0.03840521873043983, - 0.044335013547934295, - 0.05198081095807101, - 0.04144690053817834, - 0.0339663739316879, - 0.03761735100101799, - 0.03896025936456003, - 0.0417476979082497, - 0.051651246594042015, - 0.03470965767067388, - 0.030734508917598827, - 0.04113471955962526, - 0.03697199752480122, - 0.03589247415098079, - 0.04716762780618855, - 0.04265698917285769, - 0.02749600214982052, - 0.03317622161218468, - 0.029316174010619936, - 0.028089888825276202, - 0.03187088106468358, - 0.03731699952009769, - 0.03799688766041318, - 0.03615494006061818, - 0.040319699655698225, - 0.028890297443711393, - 0.031464429819954044, - 0.04014961566995972, - 0.03788681260418577, - 0.04282757467216083, - 0.04534595728049699, - 0.037627046006497425, - 0.03539150966044863, - 0.03294639517437959, - 0.028587511527689045, - 0.04293281690312515, - 0.032309593836598094, - 0.04348424880230768, - 0.0400659531129849, - 0.04433874100374896, - 0.04367992247586476, - 0.04247424368325626, - 0.041830870513668475, - 0.03849077366218677, - 0.027790100423251876, - 0.03528426218898095, - 0.041782698225258, - 0.03399360345720823, - 0.0362752455907403, - 0.03555971522843304, - 0.03278993528782892, - 0.0470295340060423, - 0.04447960419662385, - 0.03643210298972812, - 0.04913141447468023, - 0.04671226152115099, - 0.050931502568823964, - 0.03948071466440026, - 0.035742804877986645, - 0.04723218806400217, - 0.03542104488919047, - 0.03740059916728993, - 0.030964781910542406, - 0.04261740771032021, - 0.04872187573628349, - 0.043568155368915305, - 0.04231867152632198, - 0.033408162858790634, - 0.04676332492818388, - 0.03885768670417737, - 0.03530197544473374, - 0.04028706626446523, - 0.04089057365481847, - 0.038664791043402286, - 0.0419764801273032, - 0.04096875046772173, - 0.035323609394989804, - 0.04395575487846361, - 0.039213785630474805, - 0.04446511444529224, - 0.050586874182762816, - 0.04948012534924672, - 0.03631713260939786, - 0.030942154273737244, - 0.03740075878735994, - 0.041507254593221576, - 0.025442082253442307, - 0.04757305212671339, - 0.042380769184475316, - 0.028620077452227343, - 0.03272120734872326, - 0.038488179454454444, - 0.04391827558256907, - 0.035802809479, - 0.041329610296225755, - 0.0321169407240189, - 0.03390439768581611, - 0.040135118698962885, - 0.04525229586296277, - 0.029070853254175067, - 0.03401873149879277, - 0.0333032541050049, - 0.04121685798773042, - 0.050188457040080174, - 0.03731304664740405, - 0.03524102542606316, - 0.036954250665722874, - 0.03942340847132637, - 0.037732687725599595, - 0.03466910307310696, - 0.03797001694105115, - 0.03829216466320407, - 0.04340084238043517, - 0.036279242558638486, - 0.03370185027251844, - 0.03589650465476562, - 0.03267029371920958, - 0.037675652912809304, - 0.03551582433210439, - 0.03337940891937295, - 0.03268358539689685, - 0.03929896705735384, - 0.0496172655113639, - 0.05187405182918113, - 0.037518275090379444, - 0.03409752658413768, - 0.041864467450755116, - 0.04450621266658975, - 0.043068625463943175, - 0.036309887764352775, - 0.03649728867548626, - 0.031091648051977103, - 0.029411379512432535, - 0.037471598369616346, - 0.037538066811407575, - 0.03291199599232393, - 0.029865474323766576, - 0.03561896829311152, - 0.03455094679539933, - 0.02753653203856944, - 0.03119986960129854, - 0.0343777464890316, - 0.038036935078511976, - 0.03384747151382617, - 0.03684794602519339, - 0.034978692304416074, - 0.0359189101611546, - 0.03933630168545796, - 0.031145020176793586, - 0.03251513849470771, - 0.03236525702374982, - 0.03881080515649577, - 0.03540321285722886, - 0.04199743266853468, - 0.05817135305378439, - 0.0386999847520157, - 0.03529931776780135, - 0.041695765500173974, - 0.039051901558779495, - 0.038380187170977347, - 0.031547867393200056, - 0.04160507191373311, - 0.045116351449659746, - 0.0402042781421527, - 0.035815979236021166, - 0.036822252154482496, - 0.03677831694127342, - 0.038510354738761, - 0.03863153591138115, - 0.03722790937475675, - 0.04510813386839312, - 0.04070315182888251, - 0.030178619183342116, - 0.03874344026462151, - 0.04048851358970843, - 0.02895385821800578, - 0.03796612163621647, - 0.04216335260368839, - 0.035290304442533456, - 0.04789515909853949, - 0.03837616049665466, - 0.032529610870680445, - 0.030394047737444897, - 0.0606558207294386, - 0.0412346644833984, - 0.04206953272890169, - 0.03157001671725836, - 0.0560674253956749, - 0.0389413263560819, - 0.026463491467651912, - 0.03767190224952935, - 0.03713287785677839, - 0.03358890632010677, - 0.036607522794138744, - 0.030990152967712452, - 0.04520973414047695, - 0.04120975682005383, - 0.03232996224690584, - 0.03244168198475095, - 0.029276537954227386, - 0.0418584608099889, - 0.03715460623523218, - 0.049616751749868106, - 0.037856963140640666, - 0.042428539265426994, - 0.03586656781246628, - 0.03734163872642563, - 0.051093786629318357, - 0.034130985006251016, - 0.04805165205939049, - 0.0344644642673015, - 0.040007451002337296, - 0.04356654579863297, - 0.036583647043085435, - 0.03443028999707206, - 0.03580522065599097, - 0.04187634051646448, - 0.03581413141169665, - 0.053645733938344216, - 0.038536027941983034, - 0.04863274959740526, - 0.0391112279163792, - 0.033942051544663385, - 0.04008225447760795, - 0.03778887491320538, - 0.03179985408608441, - 0.0358664027062693, - 0.04289945311668503, - 0.0478924570705754, - 0.0488134055163466, - 0.03265002055839852, - 0.035690862059677135, - 0.03839412272021177, - 0.03507203379567779, - 0.03942184829424147, - 0.035158237518850555, - 0.03402783780083263, - 0.03718789280498505, - 0.02565082090862794, - 0.03759310234304173, - 0.0492877411284244, - 0.052963541239533174, - 0.03236210270419146, - 0.03338583888293231, - 0.04225772529667564, - 0.03224992795856371, - 0.0411652822052471, - 0.03903949093157484, - 0.03911857057512924, - 0.04055567621900839, - 0.04184918869115156, - 0.031381340707281324, - 0.03753594983838301, - 0.037117460056693065, - 0.03487912502018755, - 0.0441679094620054, - 0.051829668720777225, - 0.030460407395451763, - 0.02155076202509232, - 0.036187903345373716, - 0.04215618639546307, - 0.04724766139939974, - 0.049550503027877696, - 0.04252259900524768, - 0.033658233454266114, - 0.040845221646787944, - 0.042080297268609484, - 0.0393279764979168, - 0.031914400082500974, - 0.0366954505441639, - 0.03462883383437704, - 0.04326170961464949, - 0.03606035716742495, - 0.033430627739502214, - 0.03210609811250086, - 0.045516906253458, - 0.03582922209808705, - 0.03257471016540504, - 0.043301882222114646, - 0.036442719947687253, - 0.042136545501177076, - 0.03230668755682138, - 0.03722281875804362, - 0.03896415874518482, - 0.03636285257474587, - 0.039254382133046474, - 0.03725625585953277, - 0.035184018035112175, - 0.03220386046954381, - 0.02998069511599135, - 0.03514781397344991, - 0.0484802114577093, - 0.05250581946859195, - 0.037059232969811916, - 0.037953721693894424, - 0.030125448743310305, - 0.046176568563294246, - 0.03881268032812843, - 0.03541466013447616, - 0.038130249100862205, - 0.05405308292077606, - 0.0325930697273412, - 0.033306096607695686, - 0.048641067145454644, - 0.036356727980120976, - 0.0346428182539655, - 0.040355484906766506, - 0.04327691285833762, - 0.04097218608503698, - 0.030417744317467056, - 0.033356798683368924, - 0.04482947805747711, - 0.031456902122008155, - 0.03179472547119078, - 0.04055126609850947, - 0.03668326313102506, - 0.028638452631131444, - 0.03308058661082733, - 0.027405429584185192, - 0.0322072539365032, - 0.03209016722086368, - 0.032869238139826305, - 0.034297906365705504, - 0.03256564906895776, - 0.031156217302361573, - 0.03855239208342205, - 0.04053101443027847, - 0.04820260883881936, - 0.034271481342463654, - 0.03764996315879879, - 0.040044347498718096, - 0.045362319593407203, - 0.038151289854831766, - 0.03221791662566957, - 0.032408798316271664, - 0.0467485628430087, - 0.03513717339496827, - 0.036508870019898686, - 0.03282598524946691, - 0.038757796434452776, - 0.04393037308159302, - 0.03799822005279208, - 0.03681634499420908, - 0.041442235302814684, - 0.036342207539188265, - 0.04017317608981218, - 0.04189660196914247, - 0.037795683739386014, - 0.03906598891518533, - 0.04404974371270311, - 0.031154018041237217, - 0.034092035680890656, - 0.04527747564609819, - 0.04587819194442791, - 0.035126137549054276, - 0.03965814649221823, - 0.04878476060194566, - 0.03273539118020731, - 0.03876021283366891, - 0.04055884096792801, - 0.05717494653806499, - 0.037491961466026354, - 0.037782337697326016, - 0.03518451141131569, - 0.03280053135906172, - 0.025305915197273446, - 0.0352888473385826, - 0.03722367435468896, - 0.04550188997280108, - 0.05162473203600905, - 0.045796006996654, - 0.03791114984992891, - 0.03932913787750046, - 0.03523322458124299, - 0.03840821928787822, - 0.040069737314649245, - 0.04383748143522394, - 0.030437982113089523, - 0.04620599436608903, - 0.04070024306140935, - 0.04399707920677944, - 0.039619021833856974, - 0.06032833179430316, - 0.03194883859046701, - 0.03260498333672874, - 0.028288729509782323, - 0.041066070123984874, - 0.04513117394114307, - 0.03994127448207189, - 0.048399219558186234, - 0.044711934692354224, - 0.048634599664654866, - 0.039038801572312314, - 0.03450050778161641, - 0.042460241907268506, - 0.04135408304325241, - 0.03183434378162972, - 0.03118894898219322, - 0.031930928677990515, - 0.03985786367919216, - 0.026492421110324384, - 0.036375423011596485, - 0.03467867456907669, - 0.03507083836032981, - 0.04461333124711267, - 0.041300172591470424, - 0.044681668314408694, - 0.02923959110318084, - 0.03268246364978473, - 0.028813196873804924, - 0.03463579729788065, - 0.06179948595430274, - 0.04480086220766801, - 0.038347459041574654, - 0.03828885756572077, - 0.038845315678578594, - 0.04304982107717726, - 0.03308008995107921, - 0.03141126757035867, - 0.04189753682358986, - 0.0326818300861742, - 0.03912888796974919, - 0.03347746159467164, - 0.03257795730091629, - 0.039470466914441005, - 0.04099954022950838, - 0.040177728687272866, - 0.03408436097516942, - 0.03662293028521257, - 0.03177425336210059, - 0.03883424391085473, - 0.035638922967605534, - 0.029534310343341235, - 0.038722959056415304, - 0.041573117399488574, - 0.03203684285061941, - 0.04092537034800062, - 0.03680844086067583, - 0.03819910605802573, - 0.041216366379487425, - 0.035958104976825334, - 0.05837740835072503, - 0.029485460674617565, - 0.042211275761028656, - 0.0349349066250466, - 0.039381029747925976, - 0.03749060984004438, - 0.037757223761867964, - 0.04532148942880449, - 0.03703630720405316, - 0.04440165115229632, - 0.04462223084160822, - 0.055378337151755, - 0.04894509479920913, - 0.038501499020714085, - 0.03803536385956569, - 0.03350997180360992, - 0.036021338513353124, - 0.02566798604579175, - 0.0628121056762817, - 0.032876231543067964, - 0.037286316629497746, - 0.04193606404358432, - 0.031335768478397204, - 0.04648756028896649, - 0.038739127296960135, - 0.035479578157283385, - 0.039200501631605, - 0.035061851638848264, - 0.03990567300847769, - 0.03848088525485344, - 0.03545029600027571, - 0.03381986740463821, - 0.04257740733896325, - 0.036479033856195546, - 0.029616294852762043, - 0.03371778018570797, - 0.031276407579633216, - 0.044108027229915005, - 0.03130466556530164, - 0.042241454915990094, - 0.0375417781889998, - 0.03347548055263642, - 0.03833380423147872, - 0.03334222838493669, - 0.0362365201503131, - 0.033880779640078115, - 0.03878691898499391, - 0.03870933065997218, - 0.03645756294721795, - 0.032772713063953955, - 0.030360917093587764, - 0.04222614183818972, - 0.03742769566296507, - 0.04100545260365771, - 0.03412443688199449, - 0.030408026481248497, - 0.040808813742927254, - 0.039334570818000666, - 0.029088469551611172, - 0.03389641497919197, - 0.03556256396148737, - 0.0360999730874963, - 0.03727121734587552, - 0.03870961363334247, - 0.04231710523249816, - 0.03211107477438818, - 0.03515183673660855, - 0.03101675618478967, - 0.035117120203061965, - 0.055117616785150134, - 0.03873407454601205, - 0.044418729073849944, - 0.035649735039089955, - 0.0360892610474733, - 0.03302732929835469, - 0.025284553185550306, - 0.028543482133306933, - 0.03782532067136541, - 0.04391878130754183, - 0.03604605633816491, - 0.03683701513857162, - 0.03360091094666982, - 0.037632995000390336, - 0.039898824899179924, - 0.056294557458124304, - 0.03719501792174542, - 0.04271143111680336, - 0.04888639662204374, - 0.04152760599030946, - 0.03339662153316153, - 0.05066224866850087, - 0.02987851371580156, - 0.034183936842167396, - 0.035942214125817024, - 0.04314694875049751, - 0.04032277825324064, - 0.0369506808431129, - 0.05912357149859463, - 0.04152915825049288, - 0.03709396600825788, - 0.03465197427223811, - 0.041637427432548536, - 0.036314826746155514, - 0.04382060761313606, - 0.04048881888046135, - 0.03629957952030831, - 0.0410594538516789, - 0.03243959181758666, - 0.039282526582155364, - 0.04765987692103735, - 0.03881041439254465, - 0.035172762603396766, - 0.03644235631365431, - 0.03599870052228187, - 0.03326862354139855, - 0.038983473609496326, - 0.04642471652858388, - 0.03912912745945573, - 0.03900433318611941, - 0.03845773365359498, - 0.04095132847915137, - 0.05303690046918632, - 0.02657210213476048, - 0.03248315567951603, - 0.035129543925277854, - 0.034950361015344635, - 0.034255449258577084, - 0.02871501275185041, - 0.0344096532871424, - 0.0408332577943851, - 0.043429009951406396, - 0.033349516131193635, - 0.039709774569530835, - 0.04494016932382601, - 0.040644409413954544, - 0.052569094439610324, - 0.032257760292214534, - 0.03097080679058449, - 0.032541291220506995, - 0.04153226639709364, - 0.03646331276736681, - 0.0437495504166005, - 0.03265380546133098, - 0.04187934290899469, - 0.029106404486755756, - 0.033174575416237244, - 0.04799629892811189, - 0.040175095632666406, - 0.02774010766582023, - 0.03225400417204107, - 0.03929121364688299, - 0.04311184017962331, - 0.048056226918875955, - 0.036761827572135704, - 0.038124646289402646, - 0.029374098907570655, - 0.05202870076381608, - 0.036066608646181046, - 0.033834360029135056, - 0.045474496643878266, - 0.03553725545793999, - 0.0425087995824914, - 0.04270678983252742, - 0.03809348475069448, - 0.03928519452342062, - 0.03143956079257654, - 0.045436029351521474, - 0.03330375715667446, - 0.03469962334741888, - 0.06355644215785486, - 0.03619222078806887, - 0.04776264343869035, - 0.05216359896678989, - 0.03980584579358102, - 0.049656615258692444, - 0.038113191328994635, - 0.042515212702202314, - 0.03828773233361059, - 0.042613075311009774, - 0.03479104038206183, - 0.03989543937449671, - 0.03594767940849543, - 0.0329995965173125, - 0.03419394405902317, - 0.033797082708767516, - 0.043896979265312656, - 0.05612870785429354, - 0.03685538717722944, - 0.04000055594106844, - 0.03567228641220083, - 0.0455467099894051, - 0.044997784037128515, - 0.03885826911813979, - 0.04968538805108753, - 0.033347002952580015, - 0.03279834669405074, - 0.0422725912734704, - 0.037149362878440034, - 0.028021603613524126, - 0.04778420806044118, - 0.0325394014866154, - 0.041902251457657386, - 0.04060084544273204, - 0.04572680254253995, - 0.040594203266866254, - 0.0351447307374076, - 0.038752131877146316, - 0.03013709301124568, - 0.026858625470785373, - 0.03022013243628599, - 0.050335813375673846, - 0.04301492953616297, - 0.03146050243882392, - 0.04336058393629862, - 0.03677490685216452, - 0.03617806674386186, - 0.03225749866086935, - 0.043417877863548844, - 0.03156002759361214, - 0.03713195798950028, - 0.03169666555437313, - 0.042174687887937906, - 0.029513835201888026, - 0.040848917074244144, - 0.043362251100753306, - 0.041971445525446995, - 0.05229334226323134, - 0.03482696991971158, - 0.03598239201779041, - 0.03507975358989872, - 0.030533388083666572, - 0.03447968054836837, - 0.03217359565639317, - 0.03555940220089958, - 0.03568144427284126, - 0.03159684731074676, - 0.03549787071673319, - 0.03742795745488562, - 0.03144634200799996, - 0.03665930290288758, - 0.035231411413589465, - 0.037333001516526604, - 0.04291293553439266, - 0.03410232305368855, - 0.039037391334548664, - 0.04403464524306229, - 0.030327269780418047, - 0.04287802020714844, - 0.034428213239655336, - 0.03766010435882981, - 0.037485877534963276, - 0.030105366405502678, - 0.03441025542726528, - 0.04952650671672137, - 0.048136966843990256, - 0.0340468596954693, - 0.029652550382819384, - 0.025949929041892493, - 0.03839321213547541, - 0.03409811700955361, - 0.041467140997128865, - 0.027620943088890994, - 0.031205609490998643, - 0.04065611813965931, - 0.04603723755151243, - 0.04433042293578781, - 0.03910036690435638, - 0.03817550107837481, - 0.034276199787648745, - 0.0394980548810042, - 0.042697071347718996, - 0.035309747222604625, - 0.03728386951170216, - 0.03157048754027776, - 0.03701886462248119, - 0.03044409468719883, - 0.04465985179866221, - 0.04989369769940316, - 0.05232102731830441, - 0.03935764555144705, - 0.039850804727459305, - 0.040626695225116076, - 0.03334946208362011, - 0.03724065163587368, - 0.03318584535380687, - 0.041164359184824514, - 0.039291602653131905, - 0.027883875701770273, - 0.044228922415825815, - 0.039167656007124, - 0.04051284807701519, - 0.033488583181712724, - 0.034986545370119415, - 0.037379163328218064, - 0.04311566371541782, - 0.03744043953505179, - 0.0338598693464447, - 0.03179455182214961, - 0.03505669034318722, - 0.029692728290729595, - 0.04030564453403063, - 0.033324932877473415, - 0.0371801871214437, - 0.04149482465970226, - 0.036156838426703655, - 0.03404192517039589, - 0.027954139245159593, - 0.037189531284084115, - 0.03429962279379551, - 0.04596588006681696, - 0.03703610630963954, - 0.04092712662991181, - 0.034496631644955304, - 0.04471183132117512, - 0.04150827564654394, - 0.04514183194279482, - 0.033007291793695846, - 0.043045219968560644, - 0.0288849618231419, - 0.028527634869966977, - 0.04009374604128328, - 0.038389356164919196, - 0.03397158435811565, - 0.03450068886462015, - 0.041832705260042784, - 0.04122884343028141, - 0.03755262629305604, - 0.04450657864505035, - 0.032834338921183905, - 0.037693399135038344, - 0.029127346262963455, - 0.038986740698461, - 0.04023742712401802, - 0.038897872218566346, - 0.041141805415206706, - 0.04362715760398449, - 0.03813349301200313, - 0.03389543801125619, - 0.042364932396354346, - 0.03604022427331807, - 0.04261257778485486, - 0.040154389322878584, - 0.038386575874660274, - 0.0419540581135927, - 0.030601876070718067, - 0.04273414121040798, - 0.03929562738701891, - 0.04152982365595457, - 0.04651561596110046, - 0.039076969836731076, - 0.03380122689373815, - 0.06031044135655634, - 0.05452478488750508, - 0.03253256725377324, - 0.03867827142273428, - 0.031791663822829594, - 0.03285956491335298, - 0.03614750114237779, - 0.03316224619009911, - 0.03489571710579404, - 0.03867780687048813, - 0.03903296892523893, - 0.04051056353598949, - 0.03285582382376544, - 0.04123244328193473, - 0.03237274026002101, - 0.03202163367414858, - 0.04294921665816635, - 0.03327237747203029, - 0.030380006414350996, - 0.032647290734979406, - 0.03522189187720608, - 0.03338075263484692, - 0.04067350927243548, - 0.02999045017785844, - 0.047991275395132954, - 0.04310891934888517, - 0.04026042360382156, - 0.03131841808369181, - 0.03699516282212176, - 0.04238435551434544, - 0.03668600767421343, - 0.04279192871304432, - 0.03342568136433286, - 0.03344343514727905, - 0.044036217771399565, - 0.035459298480217435, - 0.04666116607586417, - 0.05825086705659441, - 0.04352434189591443, - 0.04367162483048532, - 0.038120145704118535, - 0.041420637565735045, - 0.034077422517627624, - 0.03666323044752288, - 0.043203459824302244, - 0.03559600210437441, - 0.03925203174353401, - 0.04703148162771184, - 0.04235853592627204, - 0.03157157128511138, - 0.03706992451676888, - 0.03488668001343222, - 0.04225876386064665, - 0.03865584659590887, - 0.029704329352032065, - 0.033903160381739, - 0.0326017242963732, - 0.036320452528710516, - 0.03191320315328622, - 0.043468778908798016, - 0.04001944188736791, - 0.03612493300712121, - 0.032298942002791486, - 0.034388726385798894, - 0.03545676835224924, - 0.03977369320341879, - 0.03699843054792448, - 0.05204439636911979, - 0.04044705005740115, - 0.03641364191838041, - 0.03754072538737767, - 0.0393501380031294, - 0.029871822010984348, - 0.032082055812534094, - 0.03316234245778316, - 0.0382902205092892, - 0.04483350258432626, - 0.03729593507350601, - 0.034182790521274535, - 0.04235477566239983, - 0.039867702865184367, - 0.03231020858709507, - 0.030722367761855142, - 0.030772561976315803, - 0.04213007338838225, - 0.034312532059609616, - 0.04633164480701841, - 0.04687247943135694, - 0.029844385496448862, - 0.031718685662161995, - 0.03513432076499287, - 0.03269108023795563, - 0.03570343363631205, - 0.03646200311265533, - 0.037330942149814, - 0.03320502937384482, - 0.04744315365478913, - 0.03985491446248411, - 0.03841099707263899, - 0.05239398031349966, - 0.04238702401196432, - 0.03425986820531529, - 0.028465836265388123, - 0.0429618057443372, - 0.041578647046059285, - 0.032668911221983676, - 0.0482275212004318, - 0.02975479253782807, - 0.04160989831678624, - 0.03255908471780279, - 0.03926680751957993, - 0.0415828794069062, - 0.03750313118285126, - 0.045027895429263366, - 0.039014964137454894, - 0.029271734089164687, - 0.04128946885740718, - 0.04167198344095262, - 0.03891704384243064, - 0.02861194928534362, - 0.04794352681294507, - 0.03674168117607825, - 0.036941989863010706, - 0.031014332684352997, - 0.04542553085739012, - 0.037916293703324666, - 0.040594985447534114, - 0.033707244615725, - 0.03685035771500938, - 0.04242601599376558, - 0.04150907929763758, - 0.05165302467795345, - 0.033694098655403744, - 0.04432280632470766, - 0.02987822476591257, - 0.038942871441673646, - 0.03872895275043884, - 0.04753510347452996, - 0.04115505259947897, - 0.03797416570484949, - 0.028423610325670038, - 0.03830493295702435, - 0.036937303581946135, - 0.033893416994071265, - 0.03444008517411777, - 0.02680209356720611, - 0.026449499041841372, - 0.027215320796325475, - 0.03819583345274679, - 0.03914681783047322, - 0.04367792745369505, - 0.0509729448014971, - 0.03367721445911842, - 0.0383090355272803, - 0.03857987468893091, - 0.03488871238463409, - 0.03908905260261561, - 0.03624836566674989, - 0.043365827798935885, - 0.05887595048011418, - 0.05346930127687389, - 0.03709850388678435, - 0.035797050463565495, - 0.036487152392992106, - 0.03778987953280477, - 0.04337525241347923, - 0.03738922387349082, - 0.03714404259981197, - 0.03480722429897769, - 0.04163320045569133, - 0.04261641275065868, - 0.03156927622064835, - 0.033288240811353384, - 0.03757192620470279, - 0.031942893635469295, - 0.03439084812977176, - 0.0374389249109086, - 0.035511976367270645, - 0.04223540310349009, - 0.032496871086461536, - 0.03263059052556003, - 0.030570483646247634, - 0.04806591149486607, - 0.04932951955126466, - 0.03546087685029298, - 0.04116019081208337, - 0.04139010760535002, - 0.04393992058629227, - 0.030389028646636226, - 0.039419554761369394, - 0.0380486637459267, - 0.04512801915437295, - 0.04390640937237894, - 0.03354216138681314, - 0.04854139078872998, - 0.037540450192023324, - 0.03465683343273216, - 0.035456111514811754, - 0.034494014362562476, - 0.039395124437482984, - 0.03449288750770364, - 0.03499730974905695, - 0.03994208261671468, - 0.03959259231522157, - 0.04316247739498343, - 0.05130118746485339, - 0.03194908544881737, - 0.04010556262686501, - 0.03720459833187079, - 0.03693766645992674, - 0.03251538921147126, - 0.03579139198425048, - 0.03629773854754329, - 0.0428961664881656, - 0.029380832969869826, - 0.03739767056402054, - 0.031859829816940036, - 0.037817862257961396, - 0.04001293808488179, - 0.04542950281653732, - 0.050314692739077384, - 0.04927741061705793, - 0.03278856981722406, - 0.03451473035579789, - 0.03734220994357877, - 0.036341655507450735, - 0.03181752845426773, - 0.03087335549518577, - 0.03119894503185392, - 0.03946407955112093, - 0.03390873698218186, - 0.03961848059722057, - 0.04066229002212603, - 0.02930902496415129, - 0.038237206430423755, - 0.04173872644834194, - 0.03660449235652578, - 0.03597259228572446, - 0.03430801977403305, - 0.03254438659000358, - 0.03751361664215424, - 0.0468374484145797, - 0.04216165966817799, - 0.0369836883532991, - 0.03371516944928572, - 0.03419548567133597, - 0.03501313556919373, - 0.03794833684280722, - 0.03784191781765438, - 0.041488628316922245, - 0.035618624618047996, - 0.041528975514849915, - 0.035769004692768766, - 0.03758956434396649, - 0.040769257601588144, - 0.04412239955296907, - 0.03914716323943476, - 0.04771066834412094, - 0.03792790625190391, - 0.033370898985653236, - 0.041582515524505155, - 0.04230758124781995, - 0.03552164847315969, - 0.03741608543484721, - 0.036034259909921415, - 0.04574534736522267, - 0.03756732442302996, - 0.036798285853285, - 0.038896880341682656, - 0.034747870028345486, - 0.040027562773806445, - 0.03450918678494754, - 0.029293557489304883, - 0.03068830690476302, - 0.03742237871962264, - 0.035446159042553764, - 0.037460894400508774, - 0.0299415033799825, - 0.042145622199267034, - 0.03928240939133698, - 0.04289354717373595, - 0.040970122852830186, - 0.04490744677784468, - 0.038959629468265186, - 0.04215414097282943, - 0.046829628431063114, - 0.0522005771947704, - 0.033283708013988916, - 0.029247611848417635, - 0.034533600160312324, - 0.034782485873983776, - 0.044151506257134064, - 0.03574793675734195, - 0.031650572838448465, - 0.046614862609328345, - 0.04118062971898214, - 0.03317051073868584, - 0.03819996501366347, - 0.036380956781883765, - 0.04250685872548699, - 0.03181126864349238, - 0.03765874737536713, - 0.036206307229892196, - 0.03363141089396577, - 0.032324950067487236, - 0.03479339908824459, - 0.029059146795708698, - 0.061582766046010894, - 0.036886921420197206, - 0.034994171843120495, - 0.031201239430591405, - 0.051317561656683754, - 0.03453026782538782, - 0.04531140988508776, - 0.041083223930923764, - 0.044069457506214924, - 0.03708462846232127, - 0.039626549491545315, - 0.033789837077602955, - 0.03584802682262527, - 0.0354277253843542, - 0.036540922726760294, - 0.048294642520647524, - 0.03538733243663898, - 0.03759337946383291, - 0.03218271936979915, - 0.04537227369471458, - 0.03357849571136781, - 0.03525137436577401, - 0.03073203537207663, - 0.0348019034983876, - 0.04572430978411828, - 0.037979399098773764, - 0.02786908385368369, - 0.034535556234250496, - 0.03879408452703541, - 0.037770581767999155, - 0.04025659002526189, - 0.033781608456544716, - 0.0467664799908445, - 0.03393644450764091, - 0.031214191029648654, - 0.04399081670240459, - 0.04592243146512697, - 0.0398120533535018, - 0.051252405043782735, - 0.035011443942315576, - 0.0375832663902667, - 0.03759642803921876, - 0.035033101611582775, - 0.0415178402783202, - 0.025941129982720877, - 0.03072258640295376, - 0.02680432499357894, - 0.029480219883983784, - 0.046125175473552646, - 0.02840212695959794, - 0.04378006890339967, - 0.03494802338107504, - 0.04031546594236992, - 0.03473625976052326, - 0.032885894981441316, - 0.03262724214586497, - 0.041698041682954934, - 0.049105745270786004, - 0.03437362383572474, - 0.03580839166395477, - 0.030095349684196804, - 0.03367248266282069, - 0.03623535715374934, - 0.035869484156891784, - 0.032050659516227396, - 0.04132134312428582, - 0.03962650896777434, - 0.03250134064113538, - 0.03690781067459747, - 0.03487995890583924, - 0.04491292205634892, - 0.037453711646765905, - 0.03402280605528038, - 0.05233935744840549, - 0.040132391052552806, - 0.03013745513201554, - 0.03468044020237286, - 0.03049941684448601, - 0.03717736492893643, - 0.03902828076464133, - 0.038944784411082276, - 0.03372629344392984, - 0.0366020424265968, - 0.03166767164177297, - 0.034496557855966135, - 0.0320121570525209, - 0.033718937468918596, - 0.03852946592559406, - 0.039871450588765754, - 0.03662410993120432, - 0.032481723789326254, - 0.0320359484346764, - 0.039252250505384514, - 0.03388224857968079, - 0.03457572783126695, - 0.030518491818818248, - 0.042247415909789275, - 0.04450851761453402, - 0.03867932497134077, - 0.03595767271619559, - 0.03767174629451745, - 0.02696245014457545, - 0.031305391092255684, - 0.0404386204506173, - 0.04481803779693773, - 0.05448302500231662, - 0.05175585310267124, - 0.029760258851283167, - 0.042552133186889884, - 0.038848067660984927, - 0.041373331987852764, - 0.0393381432423561, - 0.0428102766803982, - 0.041613488790361225, - 0.03457765087544584, - 0.033024280522562316, - 0.03429663233627866, - 0.04658631770986053, - 0.04133334714842527, - 0.04028996152155439, - 0.028556937709201608, - 0.037584163200961584, - 0.034788983539899156, - 0.0481975582715074, - 0.034212782546912325, - 0.03386603420577681, - 0.029044791531377633, - 0.03135971051209369, - 0.03713583208443278, - 0.031640098634018544, - 0.046166091454798115, - 0.03938108371233467, - 0.040007222022870645, - 0.048876608203120245, - 0.02779051176837832, - 0.04306422314761205, - 0.03730684128937917, - 0.036669714876414385, - 0.03336894276573055, - 0.04483331060977211, - 0.033647290485634765, - 0.03598058391514402, - 0.0446927447040898, - 0.05316172163892913, - 0.03026733018525069, - 0.04767638772565632, - 0.046474526115870725, - 0.044220805955442255, - 0.033891864703835844, - 0.03237600137062467, - 0.03429466583503035, - 0.033098084171077354, - 0.03646705227245967, - 0.03899297895665306, - 0.030716457744490524, - 0.05345977451772545, - 0.03210764511590468, - 0.03287310319601677, - 0.03182578449957918, - 0.038156456826389594, - 0.0497384226272989, - 0.028967991450945748, - 0.03713426963769345, - 0.034426216516556724, - 0.03426262468543851, - 0.03407205515447832, - 0.04051093157973783, - 0.03620972856559124, - 0.034281242755917936, - 0.04046477175292338, - 0.038355671499711495, - 0.037835746657208805, - 0.04079665807922219, - 0.038982029868510355, - 0.03576522330318836, - 0.039981209465311106, - 0.046871303654465374, - 0.029955584502438962, - 0.027491677032063636, - 0.03261918994766015, - 0.03521149023830207, - 0.04320269043695181, - 0.03857782222149291, - 0.036613735610206116, - 0.037509197739103634, - 0.041044712311750144, - 0.02915884830542582, - 0.042683338534924356, - 0.047998477429377545, - 0.046997447479661454, - 0.047770267684378746, - 0.038951421235786765, - 0.0348722609131113, - 0.04069645556890749, - 0.037518048562603115, - 0.04582747120480095, - 0.04606003848911166, - 0.03624025513478198, - 0.030695278329427762, - 0.033459035808667305, - 0.033936346590212066, - 0.03629199104779628, - 0.048161520779280514, - 0.03722202537732676, - 0.04436672073368892, - 0.028176572088327294, - 0.032241153253998754, - 0.029772304616975026, - 0.03402506845115651, - 0.03082682163338694, - 0.02958380851729856, - 0.04136132276508895, - 0.025788337688255884, - 0.04240729264868598, - 0.03473665497903076, - 0.03860754758902393, - 0.04382998620820808, - 0.045682824213371574, - 0.03643932270619859, - 0.03167755225865418, - 0.0380241005458205, - 0.041864912813305864, - 0.046862195417900265, - 0.028851735617815285, - 0.03815039072581936, - 0.03655787933643913, - 0.03423066469352982, - 0.03675204358637212, - 0.0510295311349569, - 0.04333710095875464, - 0.043807810906723206, - 0.03247532127913733, - 0.0513994687154182, - 0.038199029598344224, - 0.038254352030187726, - 0.041736026944808206, - 0.03554393390301706, - 0.03533868157329081, - 0.028050358241001067, - 0.043248637539723855, - 0.03679189117905057, - 0.038898988619418554, - 0.040561247542839705, - 0.04335784183396833, - 0.03182431248372871, - 0.03147277028658221, - 0.0330981791049923, - 0.03181393731034065, - 0.04522717868197601, - 0.04190393882477098, - 0.03392707734026654, - 0.034901433225951774, - 0.03599431570427591, - 0.04023572832122188, - 0.04839922807893964, - 0.041424904832525, - 0.03752049137214786, - 0.05132743797014142, - 0.042021146036357454, - 0.04660227672483781, - 0.037146728257579, - 0.03736667539165662, - 0.03645581092963543, - 0.031723880648844176, - 0.032368134002895295, - 0.036854528643904774, - 0.04457883999423227, - 0.03773186988450143, - 0.04812829043937841, - 0.04789584498642479, - 0.0358189592766491, - 0.04214165125777676, - 0.035679499173269985, - 0.04513729059924817, - 0.04626643393936225, - 0.050304817693504325, - 0.045904476597993196, - 0.03507873655165272, - 0.04010261757537269, - 0.03221552053612622, - 0.04103852679435744, - 0.03042173584784105, - 0.03409229289210993, - 0.03490620427332156, - 0.04378445009610814, - 0.03259603399070243, - 0.032894139692471014, - 0.03843328963321508, - 0.038721386869314554, - 0.03714263334036894, - 0.03199740116310489, - 0.053947423599582274, - 0.038478529819970436, - 0.034077493560069776, - 0.05882808039307977, - 0.035900768420021524, - 0.03555148808344159, - 0.03288779404362087, - 0.035037045888962046, - 0.03765032510110572, - 0.0350980955948427, - 0.028169555919310044, - 0.030312294976129694, - 0.035619749239302556, - 0.029428865121240613, - 0.03337408647562996, - 0.03477741472278651, - 0.0376760090970343, - 0.02956419840663125, - 0.0377230493680857, - 0.03162768568722953, - 0.0377798552534022, - 0.04466505310872451, - 0.03622464655621755, - 0.027166643067548173, - 0.03527719139275261, - 0.042049461315899116, - 0.03562002172932087, - 0.03110364613299399, - 0.0432106092802845, - 0.04070124679887575, - 0.032667005659306816, - 0.03479877821561074, - 0.03315955513704198, - 0.04024804422878356, - 0.04846305931648342, - 0.0396596823505116, - 0.03569285905749512, - 0.03657107865933106, - 0.034330775102754764, - 0.039173235855916984, - 0.035473201973261474, - 0.037739996520452464, - 0.044692450631824386, - 0.05023359966506592, - 0.0338885661903688, - 0.038153782138665354, - 0.04293964549816173, - 0.03868228567850416, - 0.03174996629508084, - 0.03258796421775382, - 0.0356605109122075, - 0.0323122494666547, - 0.03256433299618673, - 0.03455850549959172, - 0.04550802044795971, - 0.03766224239546776, - 0.03528555705140601, - 0.03496592463311676, - 0.030620189520881778, - 0.031279466088786095, - 0.033423184143554205, - 0.03509864995091853, - 0.04097918484734969, - 0.035621313091096216, - 0.03293548636978542, - 0.03953395848404278, - 0.03609288583846013, - 0.034041584707703056, - 0.02790950207106528, - 0.03426570614727602, - 0.036359491767811065, - 0.03786941971967176, - 0.03443095964251611, - 0.03764657656504087, - 0.040693104737753526, - 0.03543662019329792, - 0.03812725175030594, - 0.038149905971661846, - 0.037874145903308606, - 0.03223346676050869, - 0.037670552992040786, - 0.03460712881787693, - 0.044164585645278504, - 0.040978639385832995, - 0.03354058470714203, - 0.045686595102165314, - 0.03272736021636072, - 0.034663540855317795, - 0.043975744890179566, - 0.03974677967709064, - 0.041664690758835526, - 0.039616562132377804, - 0.034231002529943384, - 0.03273005719098603, - 0.044223972136833295, - 0.04662245951827107, - 0.044969387217910335, - 0.0379462144734378, - 0.04806050578436584, - 0.04003967023346988, - 0.035981148094435395, - 0.042688302516885816, - 0.03725916882650892, - 0.041545933164647574, - 0.03403851437319955, - 0.03513994226594421, - 0.035383411939573, - 0.029782970101743206, - 0.044677103802849005, - 0.037282665515293766, - 0.04004245826666551, - 0.0328748135083184, - 0.04016933809066636, - 0.038326420757466215, - 0.03305611278414405, - 0.03553685437419733, - 0.0358975904922617, - 0.03642460236388035, - 0.03875142939828771, - 0.030776443253981576, - 0.034851461098445065, - 0.03061169271251483, - 0.03516551351097187, - 0.03946691520142311, - 0.04313199110019091, - 0.04525929390999682, - 0.03567680243900411, - 0.03723871761987498, - 0.044134332694105785, - 0.03902188604503352, - 0.036005811153561364, - 0.04791504395054445, - 0.03973760164715005, - 0.036385306656790725, - 0.04010433020834564, - 0.031900329676814505, - 0.046473693105637655, - 0.03782924610532211, - 0.03830039448627647, - 0.03288027153265882, - 0.04034049318308939, - 0.032147669379033295, - 0.03562415232486146, - 0.03537076830926647, - 0.03655205421388857, - 0.04464159184146019, - 0.03722834057593325, - 0.04442002548372992, - 0.0331274992408286, - 0.036377393092031404, - 0.0394805442803767, - 0.044329186429292206, - 0.04152887508861695, - 0.03651705045721386, - 0.033967323402246334, - 0.0368453307857785, - 0.04731225147720925, - 0.03689721727050806, - 0.03617351477440037, - 0.03526476117837635, - 0.03951416817172771, - 0.04428004426802626, - 0.04046148599573445, - 0.04292568396395663, - 0.04299436313696256, - 0.04173650483491133, - 0.03316211831503446, - 0.031167071587153018, - 0.04271806948954808, - 0.02723340890287857, - 0.03079088591278609, - 0.037830026812309604, - 0.03761406971433001, - 0.030282479976140513, - 0.03392296752108124, - 0.039755834326357785, - 0.039959131314082734, - 0.035020668665812396, - 0.04121631962942306, - 0.030099662450371635, - 0.03971080056783713, - 0.0375790541156226, - 0.044617807693563584, - 0.03787809067286768, - 0.037160088659908524, - 0.03510670862471708, - 0.03095533955819923, - 0.038654782654605695, - 0.03583687238206181, - 0.040463886712150295, - 0.04051921353285827, - 0.03634625619851319, - 0.039189032908136065, - 0.03465508176043218, - 0.051064934057343137, - 0.04602665824410806, - 0.0399057939871624, - 0.047389610040877134, - 0.023793292736350516, - 0.03762596140794217, - 0.042143133155167795, - 0.03625944073883522, - 0.042754171036574716, - 0.037079599042260415, - 0.038168501152020626, - 0.050416848356539215, - 0.028947068559595026, - 0.03249756821272378, - 0.02964120700534995, - 0.034976410073251224, - 0.03294256211039765, - 0.03956800961258261, - 0.048911086898561745, - 0.03126360153110066, - 0.043392954999971825, - 0.04243246161493766, - 0.03406477612064944, - 0.03985310528447771, - 0.04126806775902926, - 0.04005813107871697, - 0.03362802387864221, - 0.039427324310282424, - 0.037464203108001914, - 0.04011989894364404, - 0.0321601843737673, - 0.04625695829316778, - 0.029320215131115, - 0.035461176090442414, - 0.03765859245105918, - 0.036742649022667995, - 0.03353172951274416, - 0.03040352118885054, - 0.045246117850272695, - 0.038771762766127905, - 0.03756978952615716, - 0.03523067186390819, - 0.0393593945023011, - 0.03742646707417227, - 0.04159145694360628, - 0.036149779114329664, - 0.03394431482420412, - 0.03679020935543944, - 0.036131159692175244, - 0.034101168302989086, - 0.05092879451320453, - 0.04230725263661998, - 0.05106455756499651, - 0.04938737025138997, - 0.03773588281480675, - 0.037523301270277025, - 0.03165580848247228, - 0.03685372518641378, - 0.03183114752990533, - 0.04151288223405479, - 0.04086968513867101, - 0.03661914970148462, - 0.03682095651211631, - 0.03280900134605572, - 0.03604500343615591, - 0.04240053994600447, - 0.04995210665077759, - 0.03832326836774685, - 0.03952001976843773, - 0.03378629097626188, - 0.036897432388648434, - 0.04134647833490218, - 0.03910703403495143, - 0.033482039239645135, - 0.04107778136384346, - 0.03827714244980862, - 0.03283828633309353, - 0.03821009080936676, - 0.044212591641539206, - 0.038488271818700535, - 0.03804929742392869, - 0.038550034774980924, - 0.05300738593471013, - 0.03734761590381995, - 0.03402633330780401, - 0.03382562589922711, - 0.03278673108780589, - 0.02491720599897599, - 0.03540638423097255, - 0.04571505155730847, - 0.03674747626493971, - 0.03149034733778225, - 0.045040621735223794, - 0.042580052261366484, - 0.03378553901511552, - 0.035544264119735665, - 0.040857935576207816, - 0.06345537545461008, - 0.040623137714703654, - 0.03418786131068777, - 0.041174622411589826, - 0.04064196387200534, - 0.030009929094120393, - 0.03745539987841659, - 0.04256468306505475, - 0.04745760001620861, - 0.04119704734918861, - 0.03567574171559508, - 0.04477120350081422, - 0.033521552743791025, - 0.02488216255280122, - 0.051909544856465366, - 0.050271538044844355, - 0.03049086831539034, - 0.03881349299756609, - 0.04302300373130533, - 0.046009497852181246, - 0.034627471349294225, - 0.03945808886201246, - 0.0385421090279734, - 0.05501804160360829, - 0.03895707450999172, - 0.03944012084136429, - 0.04040239040391946, - 0.033036593669546546, - 0.03151195951350756, - 0.03287954507278829, - 0.0350701179962582, - 0.03558287875388176, - 0.03131822172368955, - 0.03579430077352352, - 0.041211188597513625, - 0.03904692123454709, - 0.03884704886855262, - 0.045751190289001875, - 0.04507742951480327, - 0.03522039259098047, - 0.03453963003922568, - 0.057915878933723935, - 0.03865755312804003, - 0.04164359886547433, - 0.033333204836131974, - 0.03291271640612426, - 0.03650056901952035, - 0.03521323753427339, - 0.03450200815901689, - 0.04477427154647318, - 0.055049848026560544, - 0.03868395204294556, - 0.04257065390056778, - 0.04157785053132249, - 0.03297203126048999, - 0.04127884309760898, - 0.03808490492849832, - 0.03877942665798496, - 0.034975722843222194, - 0.03434560890904744, - 0.03260154411843139, - 0.030084565047511683, - 0.03336686368640292, - 0.03912271864938473, - 0.0479851280480055, - 0.03491254511468129, - 0.03747478055072677, - 0.040176669463289544, - 0.03611909824340007, - 0.03675470227054595, - 0.03721090792380749, - 0.03779107016289678, - 0.02972726589950557, - 0.04251328906628961, - 0.0378052601279181, - 0.03666393077799371, - 0.041233374831150686, - 0.033102996339209594, - 0.03658284756113166, - 0.0375101180848333, - 0.03315819955819413, - 0.03788380134913919, - 0.037857408137521184, - 0.026998969199058847, - 0.036611219136302144, - 0.036941811344034695, - 0.04263859009707549, - 0.03370824023076114, - 0.044458417260839427, - 0.040588020997638544, - 0.03605802518342622, - 0.04837491084199531, - 0.03394859912021672, - 0.04866501600229998, - 0.04174259170325907, - 0.032586876906528214, - 0.03394143953337053, - 0.037100364221848973, - 0.04174558019865474, - 0.029950557890461908, - 0.03292349145136799, - 0.03689964986131607, - 0.040324085351794034, - 0.03493130933339046, - 0.03835524666131528, - 0.03450746211351595, - 0.05226842096544274, - 0.04571076895230794, - 0.039176852097801015, - 0.03767852316539451, - 0.03265970100712298, - 0.03893612921881852, - 0.055701132892534144, - 0.041449782310548834, - 0.036045324606291555, - 0.03699822217312444, - 0.03684469755103634, - 0.030554389056481758, - 0.04447334433290726, - 0.03928701719570724, - 0.04786176434051127, - 0.04292532440522577, - 0.03681069165298122, - 0.03826211687081304, - 0.04683739268127328, - 0.04115828439085948, - 0.04505533320361892, - 0.037090970329130654, - 0.0431258208447209, - 0.032400723603120116, - 0.035177998135099954, - 0.040634396914269136, - 0.03846208749536018, - 0.037839077246866915, - 0.03329849857855705, - 0.03301943103512051, - 0.035878947458221094, - 0.03840116040785011, - 0.03611837042752126, - 0.03279399848736184, - 0.04766148097241935, - 0.04049191845046847, - 0.036015466856276324, - 0.03204043880655566, - 0.04423496155337465, - 0.03431897906786185, - 0.040902905461562125, - 0.04385035339012361, - 0.04294501186490252, - 0.035334355965999126, - 0.046035208866973515, - 0.0424550895030381, - 0.049795575165790716, - 0.03275006081533543, - 0.03928536503796407, - 0.03223223777162193, - 0.05267638974776701, - 0.038242106692554165, - 0.042813483131607544, - 0.030905614991993097, - 0.03468659300791756, - 0.0444468399667282, - 0.04209113189534117, - 0.031205615962652703, - 0.030211298735377035, - 0.03806866451790621, - 0.037522742105001554, - 0.043161698659160544, - 0.030474831051886104, - 0.03537490528329947, - 0.03724723831582522, - 0.04423599485711086, - 0.02944901204860744, - 0.03499984839186625, - 0.027582463930558118, - 0.029136984316316502, - 0.0335101914020829, - 0.03320265585718903, - 0.04076012000322418, - 0.04077624688815652, - 0.032333681004033624, - 0.029877861635724444, - 0.03274270557655471, - 0.03147488877950752, - 0.04302846716880189, - 0.03420430585163703, - 0.037358661460062545, - 0.03592607693147557, - 0.03387892317795855, - 0.04586363730308792, - 0.03523776912091873, - 0.0329826715389646, - 0.040977410647328114, - 0.04177694149873966, - 0.06000259199423032, - 0.03538415321142059, - 0.041888112479785515, - 0.036250685943240574, - 0.028135823685109685, - 0.04034803700461254, - 0.03902737172187578, - 0.038902367045769104, - 0.04513750519145869, - 0.03203040466433365, - 0.03406650298118708, - 0.03529277041672731, - 0.03612372360391128, - 0.03868863673477394, - 0.03656656679527455, - 0.04558613203846001, - 0.03808111556168656, - 0.037380714109046614, - 0.03510741673991037, - 0.03398373591258697, - 0.034377462968837674, - 0.050666708226840114, - 0.03564707145165222, - 0.03843634186067142, - 0.04429454549638561, - 0.04198209652350043, - 0.05251076475566079, - 0.037937697130549175, - 0.03927632358351784, - 0.029717890344585135, - 0.036791434622193656, - 0.05282001284045679, - 0.033410125675349914, - 0.047262286020820506, - 0.0338601847944416, - 0.04673483910890712, - 0.03417202903459783, - 0.03774516110057865, - 0.04210500920280691, - 0.04247337163187165, - 0.029390197743098482, - 0.03769605622432724, - 0.03747831612802234, - 0.042006410468024676, - 0.0359182313440113, - 0.040255045379667384, - 0.043910181646185126, - 0.03438495293040074, - 0.04052263663333126, - 0.03859381869211196, - 0.038160223731722724, - 0.03242132273243482, - 0.03731410390199732, - 0.04356591326392716, - 0.03449338307222522, - 0.04075024850656522, - 0.047096855798078915, - 0.04800608687863236, - 0.03201795848675891, - 0.04520421464125126, - 0.03686578870394606, - 0.034853095300864556, - 0.03355559339451194, - 0.05096628177202378, - 0.03104822443659556, - 0.03519482413191264, - 0.04226061095811082, - 0.038272483012414184, - 0.03675366508452365, - 0.04192959773237945, - 0.0316010038532898, - 0.045985887065034356, - 0.04267820914879013, - 0.034882479418999635, - 0.02612341394582705, - 0.03930149029820511, - 0.04207809562372462, - 0.026420635180852556, - 0.03757850383073749, - 0.05266422343732089, - 0.03612741822843645, - 0.04097618781111528, - 0.03663102798739764, - 0.028822282207028642, - 0.039638572704706915, - 0.037945197493143526, - 0.0379837840534401, - 0.03586759517338613, - 0.038782431384189485, - 0.03150641791272288, - 0.031100729361259738, - 0.036831247717082204, - 0.03605521671263444, - 0.03522941994743339, - 0.03245346740299239, - 0.03624737065607451, - 0.053728542285274045, - 0.03920335181989783, - 0.03357679560293461, - 0.041229016345388815, - 0.03551060206867482, - 0.036868832215873296, - 0.037067646716904504, - 0.032113081556772324, - 0.043687518954048515, - 0.04926301414761264, - 0.039777095679548284, - 0.044304470301478605, - 0.029750380843150542, - 0.04605271477697073, - 0.03765955279987305, - 0.033745965313463994, - 0.038223705909656534, - 0.036541863915086334, - 0.038796433071211577, - 0.033788442381128485, - 0.042404184141307526, - 0.039984168455548565, - 0.034046580637227056, - 0.050381624714575184, - 0.03178308514852434, - 0.043029162197209224, - 0.029414178473621776, - 0.03755625956713292, - 0.046647136503305466, - 0.042676909888642076, - 0.037048758346480526, - 0.03822607470444414, - 0.03365140927718977, - 0.03253445905654212, - 0.03380853506603969, - 0.03373330191541571, - 0.03740695482436005, - 0.03553035337920122, - 0.04070973221106141, - 0.03734742154726675, - 0.03846266740452059, - 0.0342328402370747, - 0.039094285280920946, - 0.03823079767658947, - 0.03356320065620914, - 0.030887662187047568, - 0.02957065627313977, - 0.03379625722380191, - 0.04816740318824613, - 0.03850555136965895, - 0.03446802298762347, - 0.035341957833072535, - 0.04426826574866336, - 0.03373443118250234, - 0.032948336632962996, - 0.05625007372168408, - 0.031213739687595752, - 0.04469724849345676, - 0.040327156522331965, - 0.0330989554010271, - 0.03436869210181443, - 0.04136522992663844, - 0.04181542133137288, - 0.03822527322654278, - 0.04010084891354938, - 0.03979085414763936, - 0.036175812527398044, - 0.034597227585234994, - 0.041704726037376405, - 0.035903873372037494, - 0.038824054063638494, - 0.02897629182779753, - 0.03680405275428033, - 0.04613042349845506, - 0.03433620201789554, - 0.029866600876458, - 0.036397898061730806, - 0.037775009497126005, - 0.0431732333499799, - 0.028179256743461386, - 0.04066403377763962, - 0.043334255140473996, - 0.03446832282749706, - 0.03936412900014699, - 0.043636023560119266, - 0.039865521816060165, - 0.04163917129296337, - 0.03675746738507009, - 0.03658982931650411, - 0.039331240206290204, - 0.035748092454435984, - 0.047383667693372794, - 0.02888761767702959, - 0.037654922089758056, - 0.0343150265263848, - 0.04561119582836845, - 0.041927388862184396, - 0.043067569833731736, - 0.03784607948196748, - 0.035942803080715874, - 0.03863671671114515, - 0.037494059719763224, - 0.03749443079241103, - 0.02823710359818581, - 0.04993165323335047, - 0.05014446974493773, - 0.031797340909381626, - 0.035409360025992556, - 0.03271672361421208, - 0.043333588843982855, - 0.03386849839334887, - 0.0378332125123609, - 0.03286815854657673, - 0.0334279421671833, - 0.031010108177271102, - 0.039160416567532004, - 0.030781794705072654, - 0.03837728152399801, - 0.029201784057270037, - 0.03387303601318097, - 0.035111353395468024, - 0.04540605266723682, - 0.03705740308036125, - 0.039369324303396305, - 0.04052764592085936, - 0.030301045784513415, - 0.03657815867924591, - 0.03769972588711498, - 0.0413179192413256, - 0.03373706574418359, - 0.03800185365235206, - 0.041752109616754386, - 0.03943390012847529, - 0.04613024356131916, - 0.04316732746941992, - 0.03494090374097892, - 0.035654812743851676, - 0.032683242330117754, - 0.043003085263539596, - 0.03617686389891173, - 0.04273840390486193, - 0.03355385442445831, - 0.03130762526199547, - 0.040089112523470305, - 0.03352006447630211, - 0.041889035367078935, - 0.028405771620288643, - 0.03483071798904068, - 0.03893141609121072, - 0.030470796751127686, - 0.03644594388921953, - 0.04488952542086894, - 0.029444245784938806, - 0.04054300549654817, - 0.031822530918388, - 0.03889249792420921, - 0.037426020214415254, - 0.036697111495703344, - 0.03599352503819768, - 0.03746322257333365, - 0.04080163634871384, - 0.0252894269661263, - 0.03693158961775255, - 0.03696740192292438, - 0.037346530951347885, - 0.03917597606168916, - 0.0310146862552043, - 0.04224291350748478, - 0.03757217671918882, - 0.040057583077902865, - 0.03654879845312566, - 0.03672291200594053, - 0.03310761331087965, - 0.03920593104982247, - 0.0372758722028228, - 0.0306699810842429, - 0.03738092909561817, - 0.05489562244069448, - 0.049625300934400235, - 0.057821073121948244, - 0.04581080969632234, - 0.05142851363333584, - 0.03590713166843623, - 0.036493226337111044, - 0.03448005611573408, - 0.042245455540686316, - 0.05436901146982032, - 0.03685641817855004, - 0.03729509345675912, - 0.03295948747209554, - 0.041931385516165834, - 0.04045333235253638, - 0.044945586638211125, - 0.03210970538453184, - 0.031440439453243436, - 0.03216208883619346, - 0.039430229368989, - 0.04148481809770222, - 0.032854434637260094, - 0.035256661682874356, - 0.03261959299697482, - 0.03056457448952855, - 0.04179417660660691, - 0.03709401470600037, - 0.03578428579447551, - 0.039423737127332804, - 0.03531468238532583, - 0.03495881675269886, - 0.038528308420816386, - 0.046244410972050315, - 0.03413751251970405, - 0.03330393679532004, - 0.030724440330388948, - 0.04459829952542516, - 0.04191739490657201, - 0.04650870395159464, - 0.03650734250143852, - 0.03433096396094397, - 0.058489176326931194, - 0.040344906901672105, - 0.036797038804848914, - 0.036666662280695254, - 0.03979460596260251, - 0.036085462251656195, - 0.041668545965131476, - 0.04228517862945034, - 0.039806057710654486, - 0.03447457589048687, - 0.0418644798129817, - 0.036877903446083084, - 0.035547317516434244, - 0.03750819432989533, - 0.05159554886644939, - 0.04847138521175479, - 0.037607850752789024, - 0.03234542064336271, - 0.03198029477313237, - 0.03651516565770312, - 0.04874857194914011, - 0.03794312056754906, - 0.028327657387046026, - 0.034024494447155905, - 0.0348876162849785, - 0.048393532440383774, - 0.04345193245910985, - 0.03763757453683894, - 0.03802032285209421, - 0.03950539950794461, - 0.03879454600662846, - 0.03078304324083367, - 0.04326609453978843, - 0.05583523654865908, - 0.03590051133707303, - 0.03548119051813968, - 0.032099334090740735, - 0.0391097271491389, - 0.028065159391229246, - 0.043041522857267936, - 0.03626112547896431, - 0.03797472522958369, - 0.03369121228927952, - 0.03871107855516133, - 0.03355911954749667, - 0.04124017967622655, - 0.02749548688758009, - 0.03649774864745004, - 0.04118511001515938, - 0.03968061759992798, - 0.03352382004292821, - 0.02947153981048823, - 0.04164914215092803, - 0.039701933716187826, - 0.04406147058704961, - 0.04289192242903226, - 0.03488618839404213, - 0.037682058161934956, - 0.04576151877112229, - 0.04410973714420413, - 0.04880080271046833, - 0.03187439599413252, - 0.03857512934625828, - 0.0363103766574457, - 0.050751024863482805, - 0.03546107736358303, - 0.04644388759819551, - 0.0356076691369949, - 0.0329405053577576, - 0.04304564028600423, - 0.04428031698688281, - 0.03473384037803335, - 0.029398562096769536, - 0.03788003561627837, - 0.038764942020093195, - 0.0356698758632289, - 0.04317452603895459, - 0.044061562752372024, - 0.045153912187813526, - 0.05123824402779467, - 0.03568369681751024, - 0.036877604682840674, - 0.042872148547504096, - 0.034102406781173815, - 0.031135346477498483, - 0.03558922265328357, - 0.030278131662132737, - 0.03565220883480501, - 0.03599535177211106, - 0.03364793675553874, - 0.03589281217774354, - 0.04433754571798969, - 0.04011715714499732, - 0.04066774527551027, - 0.03155404801852664, - 0.041255891095263036, - 0.05348063356238884, - 0.03639920013965043, - 0.028526849739237088, - 0.03859572631072595, - 0.04639821690807304, - 0.026607300909979942, - 0.03141054550992005, - 0.034109357061644814, - 0.035211446452835304, - 0.0360526268089765, - 0.03695443067224974, - 0.026355056499127612, - 0.042095706484548696, - 0.03999025292736321, - 0.04661312521566986, - 0.03334395277931645, - 0.04838618380042627, - 0.03618400221225293, - 0.031058282503616537, - 0.03449665674107076, - 0.034419920447823105, - 0.04381629325263008, - 0.034794690319583536, - 0.0404385036833057, - 0.033490525988809, - 0.044887016288155945, - 0.04136539372175497, - 0.03264176670814282, - 0.042707798288784224, - 0.03675637412168553, - 0.03137579495661615, - 0.03908158791319398, - 0.038411295843929015, - 0.04205711946548875, - 0.04404606913057349, - 0.03426138841160384, - 0.036337242940283926, - 0.038409521859343584, - 0.03430400974593417, - 0.03909577692534775, - 0.0477113866636097, - 0.049894475444503546, - 0.04153237017607649, - 0.03564128638745765, - 0.03752839301776889, - 0.046692065936493374, - 0.04287394146152392, - 0.03703185323447618, - 0.04323811113015047, - 0.03922285317650408, - 0.03860694483275475, - 0.03897659797907883, - 0.03612464136316155, - 0.04400453942240355, - 0.030460969965930867, - 0.037366895430838605, - 0.037826960481806164, - 0.030468427817631143, - 0.03999582046787915, - 0.03904875740402337, - 0.036537150328187766, - 0.036109468701536925, - 0.03485382492159212, - 0.03780984624297852, - 0.049725276665145215, - 0.033117439344460056, - 0.03130761102071812, - 0.038306344768218176, - 0.04009277152573155, - 0.035360182512943754, - 0.04157482425797406, - 0.03520492403548326, - 0.029037883939198803, - 0.03248176630102093, - 0.037489537609792234, - 0.03129847860894193, - 0.040677277321063604, - 0.04179502909916472, - 0.04625417006563384, - 0.048349208678738535, - 0.03294759612063325, - 0.03536517297668565, - 0.03253838048469217, - 0.031409960759988975, - 0.03603276257337654, - 0.0340489213057232, - 0.033757319630465, - 0.05125638708531886, - 0.053305634595419975, - 0.05060853947844076, - 0.043960073907879336, - 0.04857252322987233, - 0.038463666899929694, - 0.032000085548812784, - 0.03290603543022343, - 0.03197086477513631, - 0.041452663902632594, - 0.04083296045280335, - 0.03823715000369677, - 0.037541094846173344, - 0.04501781663789503, - 0.03801421197145585, - 0.03772554127350011, - 0.03508599575381345, - 0.045986868466082555, - 0.03457283126336039, - 0.039670929765858974, - 0.03510986785051245, - 0.03434391628032128, - 0.047386179853384294, - 0.031195200843116024, - 0.036102826245529025, - 0.03942010670452565, - 0.03960023979661279, - 0.03915754857158154, - 0.036479003652566414, - 0.03848196702643057, - 0.03631791188127995, - 0.045955219888905524, - 0.04541539587758977, - 0.044371718752753954, - 0.03984476443138564, - 0.03716077289145779, - 0.0362489461314083, - 0.04052701430957249, - 0.038563422122578205, - 0.02914178333358486, - 0.04642047802414613, - 0.03300307302710542, - 0.03938564064106378, - 0.036598770188974325, - 0.034463373974119214, - 0.03451742266995016, - 0.03179490756117757, - 0.03802252711892285, - 0.03883119044965658, - 0.026195867588346546, - 0.03920212981704531, - 0.03727806494846881, - 0.02694380805859417, - 0.041146231916330565, - 0.047614605514756304, - 0.04731844558302646, - 0.046504308098501444, - 0.038249777217866945, - 0.03891265745021732, - 0.036387279816501264, - 0.039374333809730995, - 0.040277917917483065, - 0.036261697878588045, - 0.02805872469741966, - 0.04650276903722949, - 0.039260527143991225, - 0.03704458014076304, - 0.03139378816129422, - 0.041763309269907165, - 0.03593755711651214, - 0.03246271642703323, - 0.04031160510537772, - 0.0328849089631058, - 0.04186301717006903, - 0.03411244059152924, - 0.037204309745456375, - 0.03606827807965834, - 0.037888751955669785, - 0.06300385660539802, - 0.033002414137241795, - 0.05938535154891804, - 0.028860834186203742, - 0.04074569546079103, - 0.04114472041118275, - 0.040062515291175986, - 0.036262936132934194, - 0.03596335955847404, - 0.02811883497595696, - 0.036586239418948494, - 0.03899010116280318, - 0.034275706105782115, - 0.041256937073694856, - 0.03225680511990526, - 0.0394422035864565, - 0.03971195663205127, - 0.03757082388395263, - 0.03970263960270182, - 0.03937526495427845, - 0.03269621007972789, - 0.04849832453506361, - 0.03879651050579021, - 0.037272700451417076, - 0.04001091884016028, - 0.03882070275063705, - 0.03303577506554687, - 0.036389425156164994, - 0.03705863938805122, - 0.04757340925838273, - 0.03646391883701263, - 0.03945918473958251, - 0.035644487629029754, - 0.034353473368676196, - 0.03198645744492398, - 0.040770186314223, - 0.040647255525251995, - 0.041959646211727514, - 0.03731608275867864, - 0.030979457734497284, - 0.026458390007189834, - 0.032276748524072946, - 0.039778450749843916, - 0.03586908026999323, - 0.039708353418399504, - 0.03797249045899612, - 0.04517295792695398, - 0.03485983871020574, - 0.02891134602054303, - 0.0316484995053171, - 0.035862447773872, - 0.04383426568628599, - 0.044808466632958774, - 0.03719418426118373, - 0.03879523221420462, - 0.03875775138803448, - 0.03730997439518184, - 0.03674004159231535, - 0.039030614021835025, - 0.0426199530194233, - 0.04045643114367988, - 0.04973426653867739, - 0.03896435665243588, - 0.037607951771450696, - 0.036609842429208374, - 0.03219676851994107, - 0.039214591240387016, - 0.045677419325921134, - 0.041042617402002636, - 0.05001303222973164, - 0.049783322760212544, - 0.03870315327799955, - 0.03642055101292874, - 0.041075195673355415, - 0.04377341174890593, - 0.030691214116285094, - 0.038510486906423745, - 0.0421066365361497, - 0.043071580955392846, - 0.03718660459421223, - 0.04435767697621762, - 0.03459132375283311, - 0.037222189020527374, - 0.03612201178664184, - 0.03974053003547916, - 0.036963018560733946, - 0.04475658911293778, - 0.040371917663043155, - 0.04211464724251622, - 0.03386445950436824, - 0.04581457881351425, - 0.03885653496562005, - 0.03404675793947748, - 0.03701223495304096, - 0.03509745244311457, - 0.03438854449934538, - 0.04541673817232952, - 0.03275420992085902, - 0.041677470780586263, - 0.03809346693131574, - 0.04224242145235368, - 0.02739562931530803, - 0.03386836243268593, - 0.03667020383025866, - 0.03608760101009877, - 0.039334545169555486, - 0.05108486516384959, - 0.0432987620304001, - 0.04102555918832196, - 0.030080532662607417, - 0.034768728292878075, - 0.03524842516506357, - 0.040732423476013205, - 0.04422815515531903, - 0.039755031140586324, - 0.03535630644564935, - 0.03665034077078201, - 0.039110673311455325, - 0.034680706352664806, - 0.041363203288227096, - 0.03282375501100119, - 0.035795260582077375, - 0.04505286530089689, - 0.03626417278467906, - 0.04078555964107367, - 0.04585047244212783, - 0.04677636410995654, - 0.03559755623357333, - 0.045999176081371454, - 0.04294565233222781, - 0.039717296747021125, - 0.04247514756979296, - 0.048259960295623974, - 0.03230748354803328, - 0.03826235331165317, - 0.043633493453930555, - 0.04109144104426518, - 0.04845431339239015, - 0.04012336145536388, - 0.03323203685620526, - 0.0377888240048068, - 0.03703059851710544, - 0.04726679045685201, - 0.0360221917169703, - 0.0448784332360391, - 0.041614867964821764, - 0.04166756740724433, - 0.03553722156730118, - 0.03597342838075964, - 0.03805219074225193, - 0.034068279345022844, - 0.04421658957271774, - 0.026823218438385938, - 0.03256924356419975, - 0.03559894014329965, - 0.03497693884843499, - 0.03288660319255535, - 0.03355562461884545, - 0.03837088126792684, - 0.03825582119705466, - 0.045148802731797985, - 0.04261009499637181, - 0.03351132035932259, - 0.0324495417817184, - 0.03582450262225449, - 0.027597997799760663, - 0.03804115168884226, - 0.03771376331009423, - 0.039701887470521, - 0.03959930490984308, - 0.03176017929779832, - 0.028793308038790894, - 0.03888875301909826, - 0.03476163392692776, - 0.03045982654164056, - 0.03893164327423019, - 0.04654975016875314, - 0.03423800022236661, - 0.03657184578955376, - 0.03787624306441848, - 0.030012849266046446, - 0.03407788292305741, - 0.04573287710173157, - 0.03529369736655664, - 0.03414188639576161, - 0.045797564707329354, - 0.03786417956885243, - 0.040532368121773174, - 0.036617129236564426, - 0.04064299391406673, - 0.03931825491492424, - 0.040756181636031355, - 0.04244440012094541, - 0.038785149356597264, - 0.0419698173456448, - 0.02594234548932423, - 0.042305280118158775, - 0.03993888343015612, - 0.040060337367817, - 0.04227315304950632, - 0.03211109348738938, - 0.03572088642159684, - 0.036481142491289545, - 0.035644635508093866, - 0.035120318587717685, - 0.02993862972648881, - 0.037937061690772864, - 0.04622851400518608, - 0.04423398353146879, - 0.04423206888515707, - 0.03670177268417874, - 0.043292487818347845, - 0.0406485459049249, - 0.030734442245204545, - 0.04133226439805542, - 0.035848172117938726, - 0.03487903143660557, - 0.0386800530711506, - 0.046947006973196724, - 0.040537893577387664, - 0.0555192851881057, - 0.04539113895980469, - 0.032779004302320724, - 0.03483017709863845, - 0.03018821865272444, - 0.03452465870089393, - 0.0353568920368715, - 0.03561794835140444, - 0.0372417698721024, - 0.033266984144368274, - 0.04098325329954274, - 0.04766145525320224, - 0.03756277074957312, - 0.03022595133307966, - 0.03349070891160892, - 0.043618676323936366, - 0.033423297091354096, - 0.03420291811166465, - 0.03571296222333342, - 0.041938780872698554, - 0.04048377263153359, - 0.0465192457515819, - 0.04282765191202603, - 0.037934013627503094, - 0.04853257140901137, - 0.03826688939635513, - 0.03696846368302356, - 0.03917346026434738, - 0.038611684259770206, - 0.027654659234946775, - 0.035871762723323555, - 0.04152767467326234, - 0.03512576286556703, - 0.03653058905955738, - 0.033321479851307644, - 0.039464077826930156, - 0.03651442861900093, - 0.03542021250127906, - 0.04295908506824189, - 0.0383380235750045, - 0.03830327182848354, - 0.05359731628092138, - 0.04056628641032372, - 0.03463750160940569, - 0.03763829314977869, - 0.02767927136569306, - 0.05138894549758217, - 0.0371928402963474, - 0.046782707880482645, - 0.05478170106735346, - 0.04265554904376973, - 0.04009944400081174, - 0.0358115633558903, - 0.03573980011236075, - 0.03652980843935089, - 0.030290204178749534, - 0.0301469497953118, - 0.03443018141898485, - 0.04075252002529938, - 0.047946546902138815, - 0.03771928427425473, - 0.03538293086925018, - 0.030074470097305246, - 0.03374260903072833, - 0.03560160876509828, - 0.0407123967903499, - 0.03992484449239414, - 0.05152551002221296, - 0.0403217695611085, - 0.03841918287248264, - 0.04209292857080473, - 0.03786221428767942, - 0.04282374959749436, - 0.0415986445205774, - 0.03434325258619837, - 0.04139930884483423, - 0.034101269051908634, - 0.03844119078797623, - 0.04539914466266611, - 0.04225727455741682, - 0.030530889552896186, - 0.026534492161453347, - 0.031733389584510066, - 0.03264114777134815, - 0.03937488056970683, - 0.03474890076032538, - 0.03956085794505028, - 0.0408590563897902, - 0.02791639298470124, - 0.03373004473197729, - 0.031435029822905386, - 0.04042917748182468, - 0.040024978850099244, - 0.037166708888992414, - 0.04077138122362353, - 0.028789988806098423, - 0.028125864735494412, - 0.033476593439224836, - 0.031232083993403072, - 0.03606011839593796, - 0.025579696390505967, - 0.0325486705736813, - 0.037597017457769236, - 0.03586306665722785, - 0.033340263520880535, - 0.03385395039772095, - 0.041841541988983946, - 0.03980862006419679, - 0.03529926723845802, - 0.03625634121755422, - 0.04777363075624528, - 0.044155630522049995, - 0.03438020215326825, - 0.030439661238158274, - 0.04375675464240478, - 0.03473670520780883, - 0.04148506039005488, - 0.03529050536502679, - 0.033387608257534944, - 0.04176709120525497, - 0.044409251491239816, - 0.03796537615428876, - 0.03161447443519717, - 0.037201335270488044, - 0.04262503578161883, - 0.047894755642108294, - 0.033214290366631746, - 0.039625918201965184, - 0.04854512656434281, - 0.03851336220018066, - 0.03176769444116056, - 0.03695821603389723, - 0.04537336083753161, - 0.03784463204332615, - 0.0397685846570915, - 0.03370108075621064, - 0.04674701774428475, - 0.029712658094023243, - 0.034534715110412076, - 0.039863966791761705, - 0.03546992609798873, - 0.030582527152050783, - 0.030194061590729616, - 0.046368111461789104, - 0.045066178578035236, - 0.041802878332685346, - 0.048703141014272165, - 0.04236508136497845, - 0.039954028481569426, - 0.0401896878141823, - 0.03576655788962206, - 0.03644404799278942, - 0.03845879543983342, - 0.03468618324772333, - 0.0430549522476433, - 0.047178747539449624, - 0.034850157939107805, - 0.03632578045034045, - 0.0327335303411314, - 0.027884607646870493, - 0.0578587663776538, - 0.03878904020885957, - 0.042505952362124455, - 0.0365978395111226, - 0.03296742430840966, - 0.03403206414175872, - 0.036068562378296906, - 0.05077625176674408, - 0.04734523642984188, - 0.04044126624802654, - 0.040368118691235653, - 0.0379433083599955, - 0.037176879182779274, - 0.04136662222976418, - 0.0336193140604262, - 0.045492291271021765, - 0.05175525549238502, - 0.032908339353776885, - 0.03641164048569073, - 0.03896466330795308, - 0.03888489246749726, - 0.03482546819036154, - 0.04677020888795283, - 0.042754597851819336, - 0.04847517823363793, - 0.039564102778536864, - 0.03642492049820584, - 0.03383258718003012, - 0.03809146503500441, - 0.03563206590846081, - 0.044019061041222676, - 0.03506534473829988, - 0.036285448957259936, - 0.03403807529818133, - 0.039288054952842794, - 0.0392015838110896, - 0.02812963536261783, - 0.04376539084961521, - 0.03425343128966303, - 0.04388995103099727, - 0.03413124839996007, - 0.03876723299508876, - 0.032399925111421424, - 0.03265150027235655, - 0.040222323136200916, - 0.03059120179670867, - 0.03165929047993339, - 0.04058962711642511, - 0.05127821322877519, - 0.031192347068186268, - 0.03086592803724161, - 0.03930535351956921, - 0.030224081069505318, - 0.03193504873214577, - 0.03978446754766906, - 0.030734624583166417, - 0.03959417282832945, - 0.046206362673673194, - 0.03737666639267602, - 0.03467731225418088, - 0.04199645060516796, - 0.03328934692764233, - 0.04096885825709842, - 0.04191654816087265, - 0.031139574811984164, - 0.0440232261707063, - 0.03154705652280483, - 0.04645735101575443, - 0.03731977326246917, - 0.03551947839123403, - 0.03195375721975527, - 0.05164569253254286, - 0.03830410546083866, - 0.04238887414614551, - 0.03696912371930118, - 0.03608355702112441, - 0.03467543034746934, - 0.031186643380685147, - 0.03212275724513679, - 0.029330115457946632, - 0.0325948500215025, - 0.0273272075335513, - 0.04254940735015603, - 0.04011419714550276, - 0.0325294031722201, - 0.038047288208748385, - 0.034981818489803744, - 0.0389890452568053, - 0.04303943316255147, - 0.033195116211952556, - 0.028823848420485732, - 0.03713718841147862, - 0.054625188428644555, - 0.03853131233890473, - 0.03682934926140472, - 0.031443887182522993, - 0.030974303806605923, - 0.031480598185282656, - 0.03987652193292877, - 0.0503310888646156, - 0.04378064042817136, - 0.031121918852355778, - 0.035220351264451485, - 0.030508330662866175, - 0.0325046334949135, - 0.03877551093617575, - 0.05051618605645818, - 0.042379657821887184, - 0.042525502206169956, - 0.033867908046696225, - 0.041324749928709055, - 0.032395765005249995, - 0.029643754473340295, - 0.036676487495765756, - 0.03335962343873325, - 0.04134558544115029, - 0.04638656246672928, - 0.04478782933619689, - 0.0315583549885158, - 0.03281853467751645, - 0.046439680702811806, - 0.034688838723108975, - 0.03489597346404826, - 0.041946826701771064, - 0.03525040596399905, - 0.040099035557020324, - 0.029006030597203757, - 0.03740591156526392, - 0.03579798119319211, - 0.05150988348716196, - 0.03196377232326482, - 0.050466662786610765, - 0.029192677415271005, - 0.032975394251398185, - 0.03138465799440208, - 0.037212415098600495, - 0.02867874664127045, - 0.03976703710505436, - 0.03584899559583418, - 0.03089107925169109, - 0.040005735005084926, - 0.038539646049049595, - 0.03741710966526561, - 0.03671124969777983, - 0.036880722782489925, - 0.041528866492096674, - 0.039561352647886766, - 0.03859234666346937, - 0.03975715859930455, - 0.03960041186515756, - 0.03629199641424028, - 0.04291364293272526, - 0.03292406662328685, - 0.034563772300305245, - 0.03278947008287785, - 0.03706137008338007, - 0.05280586334515661, - 0.04240408941802733, - 0.0404639344748649, - 0.03212583487655501, - 0.038819172990251095, - 0.03988283988063712, - 0.034061594595523055, - 0.039036194048501206, - 0.029006176007674658, - 0.04075898336142102, - 0.03624516975677751, - 0.03745115850890294, - 0.037700571252799235, - 0.027828041102798098, - 0.03286304398554533, - 0.03788646442325755, - 0.03273533941516796, - 0.03641660548382138, - 0.03494835870945491, - 0.038807113065084144, - 0.03895847133766878, - 0.03746334948247322, - 0.03973628303572923, - 0.033126346739306256, - 0.04648763451811578, - 0.039525353373604674, - 0.03976139850862751, - 0.03706485043810678, - 0.043338112563255406, - 0.04401365461359401, - 0.03640331901906539, - 0.03369919644905924, - 0.040065793944149816, - 0.03679699237009474, - 0.02966502967816615, - 0.039366526510170204, - 0.04182050195226599, - 0.045977005561724474, - 0.04033652454125148, - 0.03499842285619715, - 0.041185021097434535, - 0.044651743447766054, - 0.03950734919709825, - 0.0332392100777702, - 0.040005421416832714, - 0.03674337183049748, - 0.048068956547690556, - 0.03722539592972299, - 0.03389377362769705, - 0.050162599401859326, - 0.038652070078794606, - 0.03468883142544549, - 0.03356486017154953, - 0.032598719728642346, - 0.04740095552849379, - 0.030418740144178735, - 0.04022088250610991, - 0.03168475500122883, - 0.029920533852511172, - 0.033124960954169044, - 0.0375075150451124, - 0.04498870324802989, - 0.03872809099965537, - 0.03443496717014261, - 0.04332021950177796, - 0.03775895344743116, - 0.03054737418546442, - 0.05560970213582159, - 0.03313356958155297, - 0.04698703176624632, - 0.026691172468399398, - 0.03272864793385165, - 0.030812918239275264, - 0.029980791421756903, - 0.03161101946646935, - 0.04800866599166739, - 0.03364498981814394, - 0.038684191792513346, - 0.036369464967865625, - 0.03632491943815282, - 0.044198621112718724, - 0.04039567885977744, - 0.036407857669133015, - 0.04147495771088878, - 0.04752453616435627, - 0.04520240220890625, - 0.03173921238897873, - 0.033033902022680445, - 0.03503473069181417, - 0.03433016362913627, - 0.03962645235710991, - 0.03781965995463683, - 0.03291257303380632, - 0.03599438012015732, - 0.044153066303537956, - 0.036698213902426634, - 0.045301272813350515, - 0.02703556160193841, - 0.02786690512994834, - 0.03721327498812104, - 0.0327270898200866, - 0.03513012528155598, - 0.03789102152435197, - 0.03998335180531263, - 0.03345325223734339, - 0.04149612766016956, - 0.03462147374319388, - 0.04249073459933732, - 0.03749510838443123, - 0.039185800713927944, - 0.03921537744686756, - 0.03880163875720252, - 0.031206063332542944, - 0.03824317014693018, - 0.04039737100660724, - 0.04583973208680168, - 0.02826982068531921, - 0.03720591035051415, - 0.04129987215346998, - 0.0378619910272634, - 0.0397815072711776, - 0.041674192944826584, - 0.037828237392790585, - 0.03514826907169474, - 0.037421410031209884, - 0.0413642712870934, - 0.04278357080355724, - 0.032878919612945964, - 0.03525910087574295, - 0.0341641931771348, - 0.035430282075740595, - 0.03887144007717604, - 0.04074177018579362, - 0.04054636793767495, - 0.03285840893680503, - 0.030235654809456503, - 0.04120714155097761, - 0.037506249186950454, - 0.03082906658548179, - 0.03434544714125384, - 0.030299740654801607, - 0.03191850492687375, - 0.03161831823018429, - 0.05545072158035697, - 0.03397254372466689, - 0.03234054448572166, - 0.03846184601583398, - 0.03730777158786427, - 0.04102307482931448, - 0.033423705639390774, - 0.05303354486536487, - 0.0316998969826635, - 0.034363999811006275, - 0.04811133643879667, - 0.029301091082114133, - 0.053716024469511, - 0.038350550545422364, - 0.028729153288714875, - 0.03179590114412559, - 0.053809947510251754, - 0.035608727158570115, - 0.040072539200390396, - 0.039959193665733854, - 0.04292630561174946, - 0.03562605870778277, - 0.03774918545529193, - 0.04147645522225622, - 0.03297732351886803, - 0.029562418447585684, - 0.044520602923490575, - 0.040172368089213754, - 0.036710515523086774, - 0.036268561081304634, - 0.04018722780570881, - 0.03962593353886856, - 0.029852995001192806, - 0.037091374007387067, - 0.042113637665141, - 0.0331753861419103, - 0.03861445848983125, - 0.04061127161864722, - 0.039669441729607575, - 0.04437711027250108, - 0.033392605139875575, - 0.034591499776234366, - 0.04235565942446136, - 0.040356062257395936, - 0.04035408387376776, - 0.041445818376598643, - 0.040077656002463775, - 0.03893000443034479, - 0.029085274863995546, - 0.03589313730801562, - 0.04038934124204986, - 0.05170712058798448, - 0.0378117605721082, - 0.03571841962836294, - 0.03555473396659697, - 0.032362661650701716, - 0.040495404971812525, - 0.03420939134973378, - 0.035239758984546246, - 0.0359632198978877, - 0.0441702353536253, - 0.04495845443492943, - 0.03636230458890936, - 0.034710976282289925, - 0.030114035354134365, - 0.02742004592932947, - 0.03666006546837657, - 0.04098692771456942, - 0.030039075392241387, - 0.030819784618041073, - 0.03036666347469495, - 0.04698924028526388, - 0.04311509824260262, - 0.03507413261747865, - 0.03532468336480439, - 0.04824090130457213, - 0.036328501553065946, - 0.042452381700214155, - 0.04473121114206074, - 0.0342124633475163, - 0.03637155022509749, - 0.04245718280043546, - 0.05667738213383521, - 0.047995038884750055, - 0.04375412760254694, - 0.03470169496187423, - 0.03665788121444561, - 0.04159735826065351, - 0.035184068254843104, - 0.04389564283821098, - 0.039202092948214376, - 0.03701473136069894, - 0.03518915902411732, - 0.038563306237783035, - 0.04030653250110052, - 0.05189707835945433, - 0.033005212592098356, - 0.042084396439270734, - 0.03507242528708949, - 0.029787825623691717, - 0.033942293027434386, - 0.028997029948112107, - 0.03570084410642428, - 0.0370363002585503, - 0.03227830044488221, - 0.03507546706750197, - 0.04322804271546265, - 0.039155570514575196, - 0.04042208547015864, - 0.03839015982448484, - 0.04119668467952639, - 0.04017615730845641, - 0.03816223606831141, - 0.0450968300946815, - 0.033728743215243016, - 0.035279563091997757, - 0.03955767592469025, - 0.030232149630509533, - 0.0387140745928998, - 0.043344230470794186, - 0.03706536590970532, - 0.04155131474496801, - 0.03708719964656509, - 0.04258593837113183, - 0.03829545678850154, - 0.04293969227904615, - 0.03928246780534043, - 0.04080961322903482, - 0.030718145264291702, - 0.03187970265514363, - 0.03697295419754663, - 0.03648552374744623, - 0.04046948157077591, - 0.03382088968478925, - 0.03567975775214078, - 0.03298548423197548, - 0.03964167063034438, - 0.029509849306381734, - 0.03817426363856078, - 0.03614846810275349, - 0.035450088131644575, - 0.038665184904707356, - 0.03760099995528058, - 0.038330537744134384, - 0.03623233835581044, - 0.02930372758525974, - 0.0393197431833723, - 0.03274271480317688, - 0.038304084190598796, - 0.033041046705687506, - 0.03398291917072617, - 0.0376986744433659, - 0.04493817201841957, - 0.030336696621380135, - 0.03471623276848968, - 0.03540795811448671, - 0.04075097538367962, - 0.03744146919019874, - 0.031910429902881246, - 0.03694527944483542, - 0.051989030347880945, - 0.03816260772521264, - 0.037264774614540336, - 0.040501898940912995, - 0.041759975358181704, - 0.04455066622655594, - 0.04116871305189455, - 0.02680595156723464, - 0.039196239954993724, - 0.031927988747097596, - 0.0376349002630319, - 0.035617442015118614, - 0.04308995454032352, - 0.03662692473656292, - 0.03963428079945681, - 0.033200303342366684, - 0.04813860739508704, - 0.03457730386394215, - 0.035437958357011703, - 0.03756897282746878, - 0.037196873022344215, - 0.0379741468593404, - 0.0404663992475331, - 0.03610886760412616, - 0.04212222816866408, - 0.059463694679098796, - 0.030563514596926872, - 0.049233575473153504, - 0.044473300599293226, - 0.02886839860737074, - 0.04280621006101886, - 0.04182927407374252, - 0.03756598637466515, - 0.03677269179958993, - 0.038878397228281625, - 0.03982100701856605, - 0.035363842727167194, - 0.03970550752452224, - 0.03612222803456659, - 0.048988070847453165, - 0.03824224322799264, - 0.029049865506138677, - 0.04592552457281386, - 0.04240308479477439, - 0.043228901952507656, - 0.04178184057695403, - 0.03184395367966487, - 0.03647842017341695, - 0.044815013376980975, - 0.04111724542938811, - 0.0416209391023639, - 0.03322074610230066, - 0.030177007923423906, - 0.031391170198909406, - 0.04683008897685906, - 0.032212127929755564, - 0.03296219642888084, - 0.04451187923063733, - 0.029266043882103653, - 0.03823457965743061, - 0.03107373366775396, - 0.027286619989959297, - 0.030669843676704264, - 0.03346828047705823, - 0.040507981327774216, - 0.047555906686132125, - 0.03547939159587159, - 0.04551371816955784, - 0.05081563437327712, - 0.037586395978136, - 0.033857545917574124, - 0.03536723221670793, - 0.03211285895747011, - 0.04467335764044503, - 0.034830653496786025, - 0.04272281352296771, - 0.034227743188548855, - 0.042024657191820435, - 0.038492889665055686, - 0.0257408248465315, - 0.03046415393729944, - 0.03701250432559174, - 0.038501882219141144, - 0.038256395788046765, - 0.04249379690266858, - 0.03962546219725655, - 0.04848719917050603, - 0.06178880469379045, - 0.037122114942976146, - 0.037114853173859035, - 0.03998459980681079, - 0.037598254512632885, - 0.040334118479930965, - 0.04904991258771356, - 0.058611798383038836, - 0.033285277909673616, - 0.05500666624346419, - 0.03969277454203648, - 0.04696678843334453, - 0.040852385619596476, - 0.03136378502109843, - 0.03381349770792284, - 0.03870897238292611, - 0.044332855154494887, - 0.030797517815686497, - 0.030155600781182113, - 0.033085866744879906, - 0.04292420817571582, - 0.03316312554527629, - 0.04616339206875481, - 0.0325267241158884, - 0.03741564722929676, - 0.0320778619226157, - 0.03777907885365127, - 0.04242717104116764, - 0.04361777464551593, - 0.03306987760226433, - 0.03483971813490817, - 0.05198184066697535, - 0.04105810748631619, - 0.042879095142482684, - 0.04930814532775295, - 0.06222379250249577, - 0.03803867528512012, - 0.04212137154000915, - 0.041243421357356556, - 0.039237113705923365, - 0.0382177399974455, - 0.03625093986817147, - 0.04401688063935958, - 0.04004408783428864, - 0.03201287460519873, - 0.03194910923799392, - 0.03420029395206843, - 0.03964060751468967, - 0.04719406273458578, - 0.031702468711620906, - 0.03180855274550107, - 0.0352199035487388, - 0.03526423060662745, - 0.03217798388796318, - 0.03371868482874383, - 0.03476472084788737, - 0.0433429880743104, - 0.03966082711743377, - 0.039837572002957886, - 0.03415673568881988, - 0.0407571843958969, - 0.037611970896867596, - 0.038179244915951996, - 0.04087027802479683, - 0.046162963780384404, - 0.040653914075691334, - 0.04100464339558358, - 0.03570970196213084, - 0.030329787909026105, - 0.042312164449059296, - 0.03883935464823839, - 0.04536205748669334, - 0.034387385057653014, - 0.039964320410345616, - 0.03019450370574278, - 0.04765411070356976, - 0.0354268382614629, - 0.03796248459531224, - 0.03617979053048983, - 0.04091137711856621, - 0.03593549096003496, - 0.03794460901244099, - 0.03420838269552546, - 0.05589288379554928, - 0.03333194333218058, - 0.0351647075101268, - 0.03530267680718606, - 0.04344735018441803, - 0.03127306634633836, - 0.04018621462920448, - 0.028211609679146196, - 0.04768931334381315, - 0.041872506230779996, - 0.041937266811121664, - 0.032065385441500685, - 0.03786935386047424, - 0.03970867638845647, - 0.031072903073322066, - 0.03625150878207925, - 0.03623685933786087, - 0.035390154856987, - 0.04277397803876428, - 0.03804216553410402, - 0.03530556167028744, - 0.03678192055757784, - 0.031554942250534235, - 0.03671721516058086, - 0.03783335770316872, - 0.0345488222894794, - 0.04571473701068462, - 0.049689221442986334, - 0.03843638433805722, - 0.03779766930338645, - 0.03866828330956812, - 0.028182728132820488, - 0.03145236194693818, - 0.03364932854723567, - 0.04581846873291885, - 0.03915482133954139, - 0.033122877019934334, - 0.0332775942795484, - 0.03429540293940871, - 0.03511363088449439, - 0.04037462429583326, - 0.028221979143052685, - 0.03357798319980743, - 0.042645171712265006, - 0.033874332899945826, - 0.031697006917317534, - 0.03817926425786388, - 0.042590281852597785, - 0.03895003234984152, - 0.03905027730966538, - 0.03773173825990478, - 0.0358120820624173, - 0.03790176623294227, - 0.0324567200358686, - 0.03975909059753843, - 0.03631498510320277, - 0.0363299000039583, - 0.03475291637501638, - 0.0364829363627053, - 0.03924475285679167, - 0.03186732796633698, - 0.03345558754080759, - 0.039290292758581376, - 0.03904599987584206, - 0.03023249138631032, - 0.03449569443704359, - 0.03568848710324834, - 0.03524793370545074, - 0.034178231267514216, - 0.03973669857376932, - 0.046211226549650465, - 0.03691890053144402, - 0.03617848644030715, - 0.03139850854025818, - 0.04328952265397583, - 0.03788419581401779, - 0.03418734414498445, - 0.04772053378843195, - 0.042525644195537046, - 0.03802811027773053, - 0.037521000064963124, - 0.038945244167158215, - 0.03241646533394563, - 0.036444956011444964, - 0.03462121919633149, - 0.031685783268502035, - 0.03419888981943526, - 0.043399151185171056, - 0.03272587894608283, - 0.041618484972572964, - 0.03489870754509646, - 0.04758089504129023, - 0.04022986277447502, - 0.03807964883739686, - 0.04207634542437489, - 0.043326275965384686, - 0.033428192422483134, - 0.036970975684735986, - 0.03498061116712514, - 0.038393837421679226, - 0.036017422194808225, - 0.040089692264329346, - 0.03720230623747404, - 0.043904377683058424, - 0.04270489393926661, - 0.04008017109600741, - 0.03482266240011928, - 0.036718734388454355, - 0.03516397503911976, - 0.03766589046032642, - 0.03668050325325741, - 0.034734309831811146, - 0.04848744004547515, - 0.04690375272039114, - 0.04404833804909085, - 0.04918586865265526, - 0.03780746028634243, - 0.03745206390877652, - 0.02485560685477521, - 0.04094809067454313, - 0.03372425225122898, - 0.03411403742117722, - 0.029423614912237703, - 0.04152486089062552, - 0.032784559466531506, - 0.036550141798129085, - 0.04248816866564145, - 0.03532520344399691, - 0.03732900756501462, - 0.036476090749024366, - 0.0414624468052248, - 0.03869676186870584, - 0.04385506148521779, - 0.03790083425603543, - 0.031284403115978424, - 0.040913630294152806, - 0.03526737710854296, - 0.04359128819049591, - 0.03537428341618406, - 0.043538444438717024, - 0.04429447050258712, - 0.035095355719373035, - 0.037558253589517455, - 0.039020925710726705, - 0.03457837465911665, - 0.03689757898277826, - 0.03637565596460668, - 0.040940110129094515, - 0.04223533890233734, - 0.04296016736297861, - 0.041938696966262255, - 0.04177739720299804, - 0.03831798705086549, - 0.03918372304636442, - 0.04049623381009079, - 0.05917845722834494, - 0.03734289601721545, - 0.03221169539712051, - 0.03053879868592337, - 0.03735328856335252, - 0.036538243727598896, - 0.049584303382114815, - 0.0328488230497436, - 0.02713795222538995, - 0.03527094956211837, - 0.03942136915643273, - 0.04625867162074992, - 0.03207601748413194, - 0.0335330362999187, - 0.03306293737516894, - 0.0362326292843774, - 0.03436665750794069, - 0.04915702685354906, - 0.03805909275929596, - 0.034202566969114494, - 0.03596176893133917, - 0.037470722959681034, - 0.03609065302947966, - 0.03292533544771909, - 0.041701757223260284, - 0.03499348539550743, - 0.026745133337576207, - 0.028622082423523217, - 0.03946322875505933, - 0.03592129448781039, - 0.041990877770119284, - 0.03381492144455297, - 0.040530103565831185, - 0.03875738452285676, - 0.03151662086855348, - 0.06288497208139543, - 0.03475459095891754, - 0.03779941150618489, - 0.041999887517070573, - 0.039580734575597167, - 0.02994407129367219, - 0.028806008574528093, - 0.03789930929334238, - 0.03693284674333461, - 0.03299069008766131, - 0.030288984434690015, - 0.04042531343682504, - 0.04726801549444752, - 0.043339484452035414, - 0.04130937933559244, - 0.033516152067605234, - 0.03744444925596031, - 0.04490701626601682, - 0.034991000497649374, - 0.02773991000599564, - 0.032232617467096485, - 0.03990962402625602, - 0.045901367513090985, - 0.037560794077516904, - 0.05271446331965637, - 0.044572406098960654, - 0.051025213947252304, - 0.05601161576102489, - 0.03520590789952799, - 0.045728913863686056, - 0.031236164648777813, - 0.04054230154149802, - 0.032683763943849746, - 0.05337480187695021, - 0.032260525310580754, - 0.04271541432422098, - 0.04003709916554024, - 0.040580781533166556, - 0.0350567142168301, - 0.03690434037759839, - 0.03531132016785513, - 0.025441036226225292, - 0.030085276666492165, - 0.04602419158659578, - 0.03245236700060042, - 0.03652070000521866, - 0.03617646650607863, - 0.029859737100936732, - 0.03964331790140039, - 0.03198158433069089, - 0.033231827103801605, - 0.04160460626665193, - 0.03280484293500388, - 0.03917473193690962, - 0.03265697285825095, - 0.04007450079149981, - 0.04313803306077936, - 0.03873086390895461, - 0.05216059905148663, - 0.030379276091337525, - 0.03885483066047741, - 0.035318920121002635, - 0.040797596313347784, - 0.0372864456548352, - 0.0307029942505641, - 0.031485553502109735, - 0.037024993881763335, - 0.039228514639463294, - 0.04008222840918488, - 0.04245084057532345, - 0.03684856081736765, - 0.0347260219189657, - 0.04094984650766821, - 0.03563701885810593, - 0.047474507894942196, - 0.034047243019732, - 0.03687184488184907, - 0.04084131037025515, - 0.030357743453289374, - 0.03924976614290063, - 0.04126185607322306, - 0.05357438559076044, - 0.036709660764053645, - 0.03783768053060672, - 0.03652794456680193, - 0.0340163195412132, - 0.034508217938296545, - 0.034357545594838904, - 0.04464598381184962, - 0.04347823199238968, - 0.03406129251503273, - 0.032925420761244745, - 0.038769758844555975, - 0.03481614536495153, - 0.038145928959829, - 0.039076998188782255, - 0.034935155933828003, - 0.0323584401400707, - 0.03355866097983072, - 0.03379736425028232, - 0.0420497590687918, - 0.04218446718429989, - 0.0373449638880406, - 0.03912315009123173, - 0.043732218646066405, - 0.03833551158082583, - 0.0358393397233389, - 0.03687779446586722, - 0.034707298370130715, - 0.0301248374049759, - 0.038106238997749974, - 0.033290099248123185, - 0.03368641400352329, - 0.04380982384170855, - 0.047476751219564316, - 0.040692456133345545, - 0.03977965230372609, - 0.043486769306281106, - 0.04789673961781321, - 0.03211141673561179, - 0.04364532666411711, - 0.036281329357670596, - 0.03764043009930749, - 0.0452595757855366, - 0.029570861881873117, - 0.0271235314386781, - 0.047594832560546155, - 0.03651821337967487, - 0.03109964036323049, - 0.03766698155914985, - 0.036018246253291045, - 0.03650269090948626, - 0.05024518345704019, - 0.03734135910888349, - 0.0399551758306048, - 0.03844708503893577, - 0.03504125296767992, - 0.03941517911581123, - 0.041097294994177504, - 0.04043454329680051, - 0.03793389920599827, - 0.03344303973219889, - 0.03450596530758061, - 0.037206230008469975, - 0.033442724704682854, - 0.03649824474790818, - 0.040934800832836384, - 0.03790076875866542, - 0.033620866853846396, - 0.03839895550599855, - 0.031806771144640075, - 0.033435735041845015, - 0.040377820784456564, - 0.03928179389683009, - 0.04093444846549985, - 0.040213798588380714, - 0.034881509865314526, - 0.03537361697384941, - 0.03364637914657036, - 0.03920138801300205, - 0.030891723009536794, - 0.044454049742423826, - 0.03893268677338932, - 0.03386981276116218, - 0.03477186485134049, - 0.040370245711487784, - 0.030197770289211747, - 0.03379795544623499, - 0.03460314764849868, - 0.03924361851045999, - 0.03442620626438172, - 0.04342517823747293, - 0.03781998255382228, - 0.029523801001037478, - 0.036743784464931116, - 0.03273909372130658, - 0.035260355708303444, - 0.046407332375733266, - 0.03591172149918704, - 0.03524506256600065, - 0.03516796191531107, - 0.03926354006035652, - 0.038912400099689916, - 0.030590298965018244, - 0.039779386054826525, - 0.03813965844682067, - 0.04121654977573976, - 0.037137225284534475, - 0.03866806834733404, - 0.034261525378014177, - 0.03907064082966197, - 0.03966568800005335, - 0.042964478702124886, - 0.038511218122521236, - 0.028025472767946792, - 0.03013767357199368, - 0.040727895397669356, - 0.035306641406878427, - 0.035577861776609154, - 0.03914358991736032, - 0.029282422306916665, - 0.03482109129704017, - 0.035928283169390035, - 0.03607566550454262, - 0.035122887904014424, - 0.04028707651980281, - 0.045849384628693444, - 0.03867765000261824, - 0.038610402008035664, - 0.0424307716427854, - 0.03690096602478939, - 0.03806331254862636, - 0.041814360893866566, - 0.03795598479067518, - 0.03750461000909161, - 0.027889092987401422, - 0.04606506451050962, - 0.036414365911684995, - 0.03370369939327802, - 0.040036969777508605, - 0.04226893419264957, - 0.03004154193237257, - 0.04210604814345006, - 0.03259282917829774, - 0.04389778486164481, - 0.046183793829019444, - 0.03760878957822801, - 0.041178082436039425, - 0.04095449285629425, - 0.039147053572142244, - 0.03715972301956547, - 0.04054966166321472, - 0.037812827680890566, - 0.033935547358180884, - 0.033906804103052766, - 0.04273227634663727, - 0.041925792594792365, - 0.02870724924110818, - 0.03311142608921862, - 0.03691331925413761, - 0.030147295884668628, - 0.035272598854024215, - 0.036853843376527654, - 0.03691689155273759, - 0.032910254337393564, - 0.04144091052676178, - 0.033057439807353886, - 0.043227622762412835, - 0.03889521712001157, - 0.03276880380515506, - 0.05047692556688867, - 0.04556494429265314, - 0.05149443451864557, - 0.04489747204653238, - 0.0477809075429913, - 0.03769530913610332, - 0.0454785653025024, - 0.04192798649417593, - 0.03601675144218745, - 0.04346851504425563, - 0.030996818016610722, - 0.0319188966543128, - 0.03839747496451723, - 0.03478024178790671, - 0.026028921232316003, - 0.028608115827282895, - 0.0345391388133415, - 0.04068717573046576, - 0.036310357103823465, - 0.044244162853968046, - 0.03926047963778783, - 0.036671833689864285, - 0.031489976524275376, - 0.042760088116988386, - 0.037750067374746926, - 0.03455974972443658, - 0.03427784067658883, - 0.03373601382255973, - 0.039074061722354246, - 0.035485138579225174, - 0.03726811279469122, - 0.036715758805018886 - ] - }, - { - "legendgroup": "Point sensor 1", - "line": { - "color": "rgb(254, 136, 177)", - "width": 3 - }, - "mode": "lines", - "name": "Point sensor 1", - "showlegend": true, - "type": "scatter", - "x": [ - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4019, - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039, - 4040, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046, - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4055, - 4056, - 4057, - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4067, - 4068, - 4069, - 4070, - 4071, - 4072, - 4073, - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081, - 4082, - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091, - 4092, - 4093, - 4094, - 4095, - 4096, - 4097, - 4098, - 4099, - 4100, - 4101, - 4102, - 4103, - 4104, - 4105, - 4106, - 4107, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122, - 4123, - 4124, - 4125, - 4126, - 4127, - 4128, - 4129, - 4130, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148, - 4149, - 4150, - 4151, - 4152, - 4153, - 4154, - 4155, - 4156, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169, - 4170, - 4171, - 4172, - 4173, - 4174, - 4175, - 4176, - 4177, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186, - 4187, - 4188, - 4189, - 4190, - 4191, - 4192, - 4193, - 4194, - 4195, - 4196, - 4197, - 4198, - 4199, - 4200, - 4201, - 4202, - 4203, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211, - 4212, - 4213, - 4214, - 4215, - 4216, - 4217, - 4218, - 4219, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231, - 4232, - 4233, - 4234, - 4235, - 4236, - 4237, - 4238, - 4239, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249, - 4250, - 4251, - 4252, - 4253, - 4254, - 4255, - 4256, - 4257, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275, - 4276, - 4277, - 4278, - 4279, - 4280, - 4281, - 4282, - 4283, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292, - 4293, - 4294, - 4295, - 4296, - 4297, - 4298, - 4299, - 4300, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308, - 4309, - 4310, - 4311, - 4312, - 4313, - 4314, - 4315, - 4316, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324, - 4325, - 4326, - 4327, - 4328, - 4329, - 4330, - 4331, - 4332, - 4333, - 4334, - 4335, - 4336, - 4337, - 4338, - 4339, - 4340, - 4341, - 4342, - 4343, - 4344, - 4345, - 4346, - 4347, - 4348, - 4349, - 4350, - 4351, - 4352, - 4353, - 4354, - 4355, - 4356, - 4357, - 4358, - 4359, - 4360, - 4361, - 4362, - 4363, - 4364, - 4365, - 4366, - 4367, - 4368, - 4369, - 4370, - 4371, - 4372, - 4373, - 4374, - 4375, - 4376, - 4377, - 4378, - 4379, - 4380, - 4381, - 4382, - 4383, - 4384, - 4385, - 4386, - 4387, - 4388, - 4389, - 4390, - 4391, - 4392, - 4393, - 4394, - 4395, - 4396, - 4397, - 4398, - 4399, - 4400, - 4401, - 4402, - 4403, - 4404, - 4405, - 4406, - 4407, - 4408, - 4409, - 4410, - 4411, - 4412, - 4413, - 4414, - 4415, - 4416, - 4417, - 4418, - 4419, - 4420, - 4421, - 4422, - 4423, - 4424, - 4425, - 4426, - 4427, - 4428, - 4429, - 4430, - 4431, - 4432, - 4433, - 4434, - 4435, - 4436, - 4437, - 4438, - 4439, - 4440, - 4441, - 4442, - 4443, - 4444, - 4445, - 4446, - 4447, - 4448, - 4449, - 4450, - 4451, - 4452, - 4453, - 4454, - 4455, - 4456, - 4457, - 4458, - 4459, - 4460, - 4461, - 4462, - 4463, - 4464, - 4465, - 4466, - 4467, - 4468, - 4469, - 4470, - 4471, - 4472, - 4473, - 4474, - 4475, - 4476, - 4477, - 4478, - 4479, - 4480, - 4481, - 4482, - 4483, - 4484, - 4485, - 4486, - 4487, - 4488, - 4489, - 4490, - 4491, - 4492, - 4493, - 4494, - 4495, - 4496, - 4497, - 4498, - 4499, - 4500, - 4501, - 4502, - 4503, - 4504, - 4505, - 4506, - 4507, - 4508, - 4509, - 4510, - 4511, - 4512, - 4513, - 4514, - 4515, - 4516, - 4517, - 4518, - 4519, - 4520, - 4521, - 4522, - 4523, - 4524, - 4525, - 4526, - 4527, - 4528, - 4529, - 4530, - 4531, - 4532, - 4533, - 4534, - 4535, - 4536, - 4537, - 4538, - 4539, - 4540, - 4541, - 4542, - 4543, - 4544, - 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4551, - 4552, - 4553, - 4554, - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561, - 4562, - 4563, - 4564, - 4565, - 4566, - 4567, - 4568, - 4569, - 4570, - 4571, - 4572, - 4573, - 4574, - 4575, - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593, - 4594, - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604, - 4605, - 4606, - 4607, - 4608, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614, - 4615, - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627, - 4628, - 4629, - 4630, - 4631, - 4632, - 4633, - 4634, - 4635, - 4636, - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647, - 4648, - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657, - 4658, - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, - 4678, - 4679, - 4680, - 4681, - 4682, - 4683, - 4684, - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699, - 4700, - 4701, - 4702, - 4703, - 4704, - 4705, - 4706, - 4707, - 4708, - 4709, - 4710, - 4711, - 4712, - 4713, - 4714, - 4715, - 4716, - 4717, - 4718, - 4719, - 4720, - 4721, - 4722, - 4723, - 4724, - 4725, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732, - 4733, - 4734, - 4735, - 4736, - 4737, - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744, - 4745, - 4746, - 4747, - 4748, - 4749, - 4750, - 4751, - 4752, - 4753, - 4754, - 4755, - 4756, - 4757, - 4758, - 4759, - 4760, - 4761, - 4762, - 4763, - 4764, - 4765, - 4766, - 4767, - 4768, - 4769, - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, - 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4800, - 4801, - 4802, - 4803, - 4804, - 4805, - 4806, - 4807, - 4808, - 4809, - 4810, - 4811, - 4812, - 4813, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4823, - 4824, - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831, - 4832, - 4833, - 4834, - 4835, - 4836, - 4837, - 4838, - 4839, - 4840, - 4841, - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848, - 4849, - 4850, - 4851, - 4852, - 4853, - 4854, - 4855, - 4856, - 4857, - 4858, - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866, - 4867, - 4868, - 4869, - 4870, - 4871, - 4872, - 4873, - 4874, - 4875, - 4876, - 4877, - 4878, - 4879, - 4880, - 4881, - 4882, - 4883, - 4884, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902, - 4903, - 4904, - 4905, - 4906, - 4907, - 4908, - 4909, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931, - 4932, - 4933, - 4934, - 4935, - 4936, - 4937, - 4938, - 4939, - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951, - 4952, - 4953, - 4954, - 4955, - 4956, - 4957, - 4958, - 4959, - 4960, - 4961, - 4962, - 4963, - 4964, - 4965, - 4966, - 4967, - 4968, - 4969, - 4970, - 4971, - 4972, - 4973, - 4974, - 4975, - 4976, - 4977, - 4978, - 4979, - 4980, - 4981, - 4982, - 4983, - 4984, - 4985, - 4986, - 4987, - 4988, - 4989, - 4990, - 4991, - 4992, - 4993, - 4994, - 4995, - 4996, - 4997, - 4998, - 4999 - ], - "y": [ - 0.036715758805018886, - 0.03761371111404099, - 0.04456597690680631, - 0.03718887422326402, - 0.033132472617124625, - 0.037657413931649786, - 0.04234875422909278, - 0.037238221554076995, - 0.045919221257021275, - 0.038321924181496686, - 0.031434053949908176, - 0.032726549090277994, - 0.04354179279219842, - 0.03246368672870783, - 0.049934067167416364, - 0.03839509398449641, - 0.036437367912440864, - 0.04701340444953794, - 0.035251506790326494, - 0.03412915861997621, - 0.05383112514876364, - 0.03429827310248325, - 0.04579368773891595, - 0.03615130466899878, - 0.038116872844928804, - 0.035231914798963676, - 0.038604399840541426, - 0.0382909882182403, - 0.04711148250855792, - 0.042736553114686965, - 0.03782049370205443, - 0.03413348562076277, - 0.04637648287308303, - 0.03206601057951527, - 0.04008568278783138, - 0.042893355437984025, - 0.025818142280357167, - 0.041603632819273484, - 0.03011363592143891, - 0.04138800581439414, - 0.04500984724975833, - 0.03310081102795008, - 0.04109290584897363, - 0.03884816299251912, - 0.036760629587739596, - 0.03118914761049454, - 0.041873178769359955, - 0.04926448726557633, - 0.04060190413004521, - 0.02783967608311954, - 0.03411554053733904, - 0.031395532752002096, - 0.03145514615149224, - 0.039197807095975645, - 0.0457954521944346, - 0.03169889525012153, - 0.031532530129754384, - 0.03574930514781961, - 0.038559171135237706, - 0.04037204254937333, - 0.042746669319890136, - 0.03212961299476064, - 0.03245902049955026, - 0.03714212407403122, - 0.03972198063953546, - 0.04261377921742891, - 0.03977461520070003, - 0.03700482605779567, - 0.03488917583644346, - 0.03713005849986378, - 0.03994963511627558, - 0.041265011778509726, - 0.031147639813542825, - 0.03552359640915921, - 0.03686222189026885, - 0.03191640435709627, - 0.035510666793420236, - 0.042461754462181325, - 0.04426469317235396, - 0.038212985721771404, - 0.029464987635476482, - 0.035941865312509626, - 0.039668587835598734, - 0.035802967253612754, - 0.04103882697664019, - 0.04349635089186975, - 0.03270921346719475, - 0.04656388943147724, - 0.04877705044131105, - 0.03268038335037063, - 0.046536225003309284, - 0.04086372265798133, - 0.04012348983648039, - 0.036121005111605445, - 0.04994769543625967, - 0.04090634448047167, - 0.040808508720138484, - 0.03387584006346526, - 0.038420676687771924, - 0.03381287436189031, - 0.0350115621353388, - 0.03422804090175431, - 0.028652465315277823, - 0.05032389452312852, - 0.035919103168372345, - 0.03974854254822322, - 0.03823071792091161, - 0.03942585534893113, - 0.038379276561192485, - 0.045855066456581536, - 0.03595089258946792, - 0.039590156848364186, - 0.03531986591258068, - 0.037446281311663485, - 0.03345940093749702, - 0.0342064672287236, - 0.03824269990604003, - 0.036052412210443884, - 0.0341504861868828, - 0.03553971624291649, - 0.03839504896027137, - 0.03876100322649816, - 0.030307696075307825, - 0.04472182442027818, - 0.03296284998211795, - 0.032875910093475395, - 0.03093743819354595, - 0.028767392962930585, - 0.03379512477720949, - 0.041691419585193346, - 0.04833500831868932, - 0.032425216454222285, - 0.04501390283480769, - 0.04507443633997496, - 0.0371955493364154, - 0.04781971205787785, - 0.038110730590611035, - 0.032396046051616674, - 0.025498066971874307, - 0.04084221583481411, - 0.041070706484451554, - 0.03486562539395797, - 0.04123603683460369, - 0.03574369407470367, - 0.03529551267489222, - 0.034805717293250306, - 0.0345674469031942, - 0.03506302980313492, - 0.04129198261086204, - 0.030233889527466105, - 0.029956577667988846, - 0.038676934838223404, - 0.037827285357187206, - 0.043605037935895444, - 0.03861726362801062, - 0.053455527359566296, - 0.04276312261256083, - 0.031230972325134162, - 0.034031310507457994, - 0.038511916693395334, - 0.03752132996725646, - 0.036477466230067083, - 0.03827411168894807, - 0.04458429469512739, - 0.04028289803786684, - 0.03481671330111602, - 0.04137311759601927, - 0.047753126625883914, - 0.05374250225761889, - 0.03647807564876881, - 0.04211232450063844, - 0.0453396086023153, - 0.03307908850393018, - 0.03811203326989287, - 0.049116505676995395, - 0.037621427494362376, - 0.03839892675231242, - 0.03656940580745141, - 0.03453755380197039, - 0.037552059123979874, - 0.03922348219327412, - 0.03229997775640834, - 0.03327999085518921, - 0.04549728891678381, - 0.03984453344888643, - 0.030510942993538643, - 0.03904547561040457, - 0.03208002531368396, - 0.027409414990058185, - 0.03528593226615993, - 0.03611918827485112, - 0.04656962506420212, - 0.03048303457917555, - 0.044334889634226236, - 0.038323637382725054, - 0.03172328750653148, - 0.03556667053121626, - 0.03166788709905574, - 0.03787374944796257, - 0.03249448127491312, - 0.036784004885176566, - 0.03265570792722773, - 0.03682818941106086, - 0.034765505102137266, - 0.05240118727218184, - 0.03083048923546675, - 0.03731579847248726, - 0.0327838678261412, - 0.03870031954389056, - 0.032945173924617904, - 0.028630993109236783, - 0.03698382209053213, - 0.035855363148220826, - 0.03431194629389971, - 0.03413802712023519, - 0.037849382044431924, - 0.04071454053629859, - 0.02820144456080722, - 0.04795429088694991, - 0.03377623445294014, - 0.03652885854229156, - 0.03642219155140446, - 0.033124976313715276, - 0.03540159224560339, - 0.032387490121606625, - 0.034759827601520465, - 0.03502919694122812, - 0.04073007449141678, - 0.033126622206818675, - 0.03168311392296023, - 0.03257260437372503, - 0.027973061429932583, - 0.03963787369566249, - 0.037670992184334035, - 0.03924445913839103, - 0.04122290902023144, - 0.038303528342821754, - 0.0528733736784215, - 0.04859971810540912, - 0.03560087902874911, - 0.03709536999624559, - 0.03243680667606082, - 0.035994150977498515, - 0.03933153163254163, - 0.03463418373235728, - 0.047575757719931076, - 0.03913106643152115, - 0.034275373131912215, - 0.038478496608045, - 0.04192593600496307, - 0.03780683252228998, - 0.040012373002774916, - 0.030068832402393973, - 0.040765838550652814, - 0.04071041656768251, - 0.03491264157673311, - 0.034616488981418246, - 0.037729888200561924, - 0.039326857615045105, - 0.0403561351234101, - 0.03342701507189249, - 0.035853776378555954, - 0.04115443073458149, - 0.035273981091055145, - 0.03503677464026672, - 0.038807740044502916, - 0.03617434498934482, - 0.029481249226995083, - 0.033959281382261335, - 0.042242805608274626, - 0.03267122648161732, - 0.0486245034217485, - 0.032120120134161496, - 0.03855285233300243, - 0.040420702265604666, - 0.032461548197925724, - 0.036501404180481825, - 0.03215728002069525, - 0.03699564344558575, - 0.03819538083950608, - 0.03954884705152558, - 0.03302452199893271, - 0.042581151332845145, - 0.04912720225706742, - 0.034872434803216286, - 0.03390827340594482, - 0.03065128825040589, - 0.034963237200559036, - 0.03909741264909873, - 0.036386376270845254, - 0.03841659402878601, - 0.03163563934812633, - 0.034922148213328674, - 0.04608944466655259, - 0.03800802944687497, - 0.03651597950613402, - 0.03631512309197612, - 0.04099829222019171, - 0.03168102963358898, - 0.04262810984998972, - 0.0481117156733257, - 0.03792402145916822, - 0.036862856985281744, - 0.033714579433573026, - 0.03591687613205214, - 0.027777602978446867, - 0.03948379417629511, - 0.04319372891274068, - 0.04178066938033448, - 0.04939616479649805, - 0.04051935875858258, - 0.04351556074216845, - 0.03405263863167781, - 0.039270052995746825, - 0.03550127543783229, - 0.04021746324120415, - 0.03316882929301414, - 0.03389962184983024, - 0.0450845856860652, - 0.03574600057991202, - 0.0356267972270591, - 0.030413294581296067, - 0.028715018587594055, - 0.035275566138418465, - 0.036871269445998806, - 0.034040031980973974, - 0.03805484076374, - 0.034593480045221725, - 0.042121585492652984, - 0.03625583481001632, - 0.03979905218183054, - 0.04556974776576977, - 0.04423392265115496, - 0.050105632039687965, - 0.053591114957901816, - 0.0364930556297462, - 0.04460061656844819, - 0.044082620578703616, - 0.0313912300325533, - 0.03771466378309827, - 0.037445416581557006, - 0.03952914365267955, - 0.04156333053878333, - 0.052146521440500256, - 0.05006224063592753, - 0.03896355303421334, - 0.03204176943263184, - 0.032322547074799125, - 0.03636980657987255, - 0.03605124256024008, - 0.03150404211988156, - 0.03833507626727329, - 0.0463236734941982, - 0.03640437679183998, - 0.03665731286515921, - 0.030847995614580327, - 0.03557375131272736, - 0.029525449133674737, - 0.03339337266621251, - 0.03806893657070767, - 0.04099317534439092, - 0.02718029775391553, - 0.04285619230014603, - 0.04325726673663316, - 0.03314613135051852, - 0.035310038733344255, - 0.06217408779892531, - 0.04327919637549718, - 0.04157601647938288, - 0.029980832709806605, - 0.03967373473194308, - 0.03913776200370407, - 0.031132911077561623, - 0.048267672246126284, - 0.04073232817516046, - 0.038553132035627186, - 0.03355393230385968, - 0.03514366144251663, - 0.04562009777490662, - 0.031405364903795634, - 0.04354602084761362, - 0.03281288182522867, - 0.05397977844053224, - 0.033182670541921824, - 0.038324368996281874, - 0.047334601372317514, - 0.04022055149191233, - 0.04434032231968132, - 0.025494672813232654, - 0.04205373626125983, - 0.036852248776034054, - 0.034428004358127165, - 0.03328427277397614, - 0.04659191762217323, - 0.033524968334039736, - 0.040599082382452516, - 0.04448002864194957, - 0.04641790503075131, - 0.04211785295979987, - 0.039832703082206315, - 0.03617076797226818, - 0.031753287810065214, - 0.03719040880606877, - 0.029288885283735227, - 0.043121357925815514, - 0.035890700247404414, - 0.03520193380510459, - 0.04493682708698273, - 0.0466023363391465, - 0.03379706900596952, - 0.058493841431780734, - 0.04215221999902843, - 0.03536337355906207, - 0.04031609269222653, - 0.04081382476808683, - 0.041661630952518215, - 0.05728950184369718, - 0.032652825240454306, - 0.03956073314051078, - 0.033285257517793425, - 0.03812875877441297, - 0.04248569116899837, - 0.03503979073940796, - 0.033444681140956764, - 0.037920939305003905, - 0.034016385574238646, - 0.04240077522783257, - 0.030919825360622977, - 0.03227200144823134, - 0.0346883068545051, - 0.03135239271376074, - 0.03339742069283562, - 0.045554527366074585, - 0.04349902071317852, - 0.04003642633358658, - 0.03511976938431598, - 0.04743637995159247, - 0.028820246702059057, - 0.04207449140224095, - 0.03082458851664636, - 0.037825004009256195, - 0.03446887437671457, - 0.032691174189143295, - 0.045925240869170665, - 0.045928670947635614, - 0.03585278521514025, - 0.042025404606922376, - 0.03572623715952867, - 0.03267433757833829, - 0.03428696755041483, - 0.040639043684093025, - 0.03107035545919085, - 0.03769137784310412, - 0.05119760514161173, - 0.035255356543607654, - 0.0367692234256108, - 0.044334140481637745, - 0.04148454402119714, - 0.042096936352653526, - 0.031023538314860592, - 0.03911579398772624, - 0.03361444498547066, - 0.030948608165972388, - 0.03180923841136716, - 0.03726770061243345, - 0.03412941375542722, - 0.0370676385803837, - 0.035413153236857134, - 0.03318173550653759, - 0.0304331241644281, - 0.04116806140436625, - 0.04059554333290755, - 0.04367390778702419, - 0.043259165276442656, - 0.03087978404179307, - 0.035237517026634115, - 0.03407840583224009, - 0.03291522081223747, - 0.03989796369154243, - 0.04180631806741871, - 0.02867514275255773, - 0.04550072158426954, - 0.04236889888461575, - 0.041960017372774897, - 0.04203140961165115, - 0.04568547888395555, - 0.03177198831219585, - 0.03277854905223265, - 0.03193896476445684, - 0.03552755023832265, - 0.034901580493108784, - 0.03944203739915901, - 0.034568907713423094, - 0.035721357930727456, - 0.0420236706420898, - 0.034069390568612135, - 0.03649372236840224, - 0.04102000105412112, - 0.03882396251730577, - 0.032024371110323704, - 0.03694798626048489, - 0.04312620218039104, - 0.02940280655957277, - 0.02943009362255559, - 0.030557612857763594, - 0.03650381114732613, - 0.046064805996793, - 0.043258041128460815, - 0.03854306475247794, - 0.03841673962699952, - 0.030598370462560243, - 0.03815858320935913, - 0.04128284109222594, - 0.03598947194437622, - 0.0406147252608411, - 0.03315449658131274, - 0.04123964834380255, - 0.02753420661999809, - 0.03270271587171278, - 0.03497745976085453, - 0.03095616609342909, - 0.027250050929667338, - 0.03970312623064339, - 0.03226590806941381, - 0.038503561814189825, - 0.036997049510136645, - 0.03600907442680853, - 0.03726837922999698, - 0.03794910187266225, - 0.03488012584264187, - 0.039759145362038076, - 0.035806505575580745, - 0.03716548291311412, - 0.050622835209477426, - 0.03522375429637303, - 0.033502821790153556, - 0.04096306305732284, - 0.045146597656104334, - 0.0478256034550368, - 0.0311548931919735, - 0.037032767752720616, - 0.03593509229308459, - 0.04398794972952077, - 0.042869846221773346, - 0.033990000805269385, - 0.03871713116807088, - 0.04366248405677596, - 0.040471703681991454, - 0.033802680210603606, - 0.035309863572722186, - 0.04389355334425488, - 0.0420250764315575, - 0.04398168210529612, - 0.042392431188078714, - 0.033361226369466916, - 0.038628040215847134, - 0.04714707864359085, - 0.04954018189723753, - 0.032650644125130315, - 0.03470353934224197, - 0.03696029199949361, - 0.0447254401708197, - 0.03537698094940832, - 0.05656921863476538, - 0.03812487267864114, - 0.0369095164104582, - 0.030181036369957743, - 0.03449813484304725, - 0.03832787534634266, - 0.029076206640076176, - 0.03813431321259202, - 0.0490460055902869, - 0.040993423563871145, - 0.03323540341506663, - 0.03048815905620584, - 0.03539833020433229, - 0.03303933739290288, - 0.03660638205986224, - 0.034270350749987015, - 0.033290549461506766, - 0.04481449127872367, - 0.03477832303885998, - 0.03260268258900209, - 0.03534148773317315, - 0.03814070205231663, - 0.030064552444546547, - 0.03200865841771246, - 0.03550647567857795, - 0.031814521606439404, - 0.04764201935977072, - 0.03724071880043243, - 0.02856081813599978, - 0.03657225814376211, - 0.03700841072160198, - 0.03940971268771039, - 0.03994592328231754, - 0.04677841675705772, - 0.037649978783837405, - 0.04185578848778017, - 0.04067608674680462, - 0.0358439363000699, - 0.04519684131741998, - 0.03127379334522184, - 0.03964079824395828, - 0.03855251904484925, - 0.024547150881771614, - 0.03476442479423285, - 0.034705583444607356, - 0.0300893727512181, - 0.040023965400510356, - 0.03373566823005311, - 0.03772742071448869, - 0.037356209236610906, - 0.03570458813813139, - 0.038873572666241606, - 0.032355132220645816, - 0.0358740213455162, - 0.03619017383443481, - 0.03896303412197466, - 0.045856338394925776, - 0.05278302287900306, - 0.03522155291484008, - 0.03002378819186469, - 0.026608937862630334, - 0.02772280411391115, - 0.04044651394279887, - 0.038216593967417924, - 0.03794481369998554, - 0.05091749337662563, - 0.034958314547877706, - 0.03533281178708115, - 0.034694421164319145, - 0.03228025223837834, - 0.038849612937189026, - 0.034820626945238235, - 0.03001934617176302, - 0.03343319880973928, - 0.028230293463656676, - 0.037861884761831506, - 0.033711836527189995, - 0.05112813548880267, - 0.03264600113872191, - 0.029302118986939144, - 0.03571406435478474, - 0.03047135760575729, - 0.03691681379191519, - 0.035212450889755095, - 0.040728034366704156, - 0.04585443602349566, - 0.03916837250158608, - 0.03504363325813114, - 0.033303499985894616, - 0.0417600959811885, - 0.030891552581508597, - 0.035924357797211086, - 0.04266986199305422, - 0.03398206118061026, - 0.041023279515027905, - 0.03944370348494714, - 0.03705031100351998, - 0.041066025029738315, - 0.04041253197160983, - 0.039959395679422825, - 0.02989221788628325, - 0.030411178044856928, - 0.035293462113850975, - 0.038282172159236995, - 0.03566464785437826, - 0.029195642959499966, - 0.041546342493078786, - 0.0289685173754357, - 0.04172586078641956, - 0.03876980141561623, - 0.0478283970006955, - 0.0327671267705137, - 0.03583056189793245, - 0.04198295986520934, - 0.04346603097918601, - 0.039908833118398206, - 0.049473725186255, - 0.03683157643841259, - 0.03926910968681111, - 0.047289199640616245, - 0.03372380494027929, - 0.032182989635634165, - 0.030368862426789083, - 0.04751010780115772, - 0.03557728152634131, - 0.047954247331647396, - 0.038420288842531666, - 0.02939233949735182, - 0.03277433183893398, - 0.0390984508891777, - 0.03636729077962587, - 0.03448643707764093, - 0.03268864297639987, - 0.040108119135399634, - 0.049798708661981946, - 0.03678390539114291, - 0.039998438433724574, - 0.03854263818466514, - 0.04776961776767226, - 0.033998173209268776, - 0.03377968496390118, - 0.028275543150118376, - 0.043467296595756245, - 0.03951336339245892, - 0.048176958143833284, - 0.030721763320730434, - 0.03310746387678, - 0.03230820620755947, - 0.039217724684260075, - 0.03502446341316087, - 0.03504059948746193, - 0.038757632580718925, - 0.03460469519924199, - 0.03611405437825071, - 0.03332343730273547, - 0.03952122980839566, - 0.03227004547172884, - 0.03910132598827834, - 0.03514184378283162, - 0.02453250543849377, - 0.044832907297114914, - 0.04509653911330959, - 0.03531850948703844, - 0.0305621977132097, - 0.03212741615703472, - 0.037142314690957225, - 0.03781102330381647, - 0.03701432874465733, - 0.03364984857686847, - 0.0395164187691393, - 0.043321895680821135, - 0.04305840678022903, - 0.03500959355326003, - 0.03469545700730703, - 0.03236512096115993, - 0.036600836768203464, - 0.03422782617721934, - 0.037938134311551776, - 0.032912880882121937, - 0.05310622503702585, - 0.050227399100962154, - 0.03904336489836897, - 0.03280365395872515, - 0.03132847850985798, - 0.03302644561539792, - 0.046946972738591185, - 0.0552530309424089, - 0.029239208030320235, - 0.03599066301762308, - 0.03846009106959797, - 0.03758982173708299, - 0.047720199347417225, - 0.03715244936913667, - 0.04927709982452329, - 0.03852735189821503, - 0.03198450383016956, - 0.02993026437456573, - 0.04108490763054484, - 0.032593767043800966, - 0.03480391243583194, - 0.04385632503528801, - 0.03409195075013542, - 0.03582887653968277, - 0.038229415819002036, - 0.031938948424721246, - 0.03136718621038808, - 0.03861404630074924, - 0.035017736836875306, - 0.03730197207010379, - 0.041079546124591665, - 0.03985152756424145, - 0.04000635400549778, - 0.03451246141151545, - 0.03167445660532408, - 0.0313621086042509, - 0.039756581672345616, - 0.04627707375963826, - 0.046897010240020055, - 0.03961169881736599, - 0.04120894396248618, - 0.040769225545362144, - 0.04337137273934242, - 0.04265367216893077, - 0.04057927079653007, - 0.03640286399835433, - 0.03524816852888787, - 0.03578299016885683, - 0.041738724553370174, - 0.03227292025451312, - 0.041550151177184504, - 0.03354870527602881, - 0.04207292164416621, - 0.035144328422441036, - 0.035218007755802055, - 0.04076482860750487, - 0.03034152330758941, - 0.03534968717759012, - 0.03339723094411533, - 0.03761584553265372, - 0.03811440155482926, - 0.03850504215706432, - 0.034569235490956564, - 0.04117038380915522, - 0.03998332555018564, - 0.048963212186058404, - 0.04068930318740775, - 0.051230348980074766, - 0.043167179471734665, - 0.030981606852595767, - 0.04766139749351286, - 0.03609709722979946, - 0.03663655142415297, - 0.04079106742130546, - 0.045027943720183275, - 0.037448201669320016, - 0.03749659895082117, - 0.034285064215763265, - 0.04711966942810368, - 0.03345548890160075, - 0.035747687616916504, - 0.03287567952181188, - 0.037991964098357624, - 0.05084295879844406, - 0.04115232652713058, - 0.03916642007267858, - 0.0355355252044281, - 0.037685657968598255, - 0.03929881169371623, - 0.047096820547840264, - 0.03630783847680934, - 0.03776251239951641, - 0.04069621400708909, - 0.0345158862693513, - 0.038983185799087494, - 0.04078520766773981, - 0.02724651134845857, - 0.038152194830535044, - 0.037448089803971914, - 0.04295717774464004, - 0.03663809018976437, - 0.03151298551319034, - 0.038263571380799784, - 0.032413406139652844, - 0.036886272810248116, - 0.02507324984329856, - 0.03531971027664307, - 0.05148950949818906, - 0.03487848442976768, - 0.03778527549067953, - 0.05188220653370576, - 0.030039764199134095, - 0.031551246095689954, - 0.03182281326234237, - 0.03543592554033476, - 0.036163484477228884, - 0.02782924796415899, - 0.04474076102053988, - 0.041284999622458726, - 0.042380186090729334, - 0.0353159285744934, - 0.03996116974606357, - 0.04801605913664819, - 0.026261989107443876, - 0.034740708171773785, - 0.03153324200525825, - 0.03511526614440834, - 0.03779528408806364, - 0.039374836089906905, - 0.046213736549700776, - 0.027265216516405705, - 0.037513401327044865, - 0.04756384734973701, - 0.047908365471021494, - 0.03361972731001055, - 0.04221718252928745, - 0.037356522206077485, - 0.03280983592694139, - 0.04516690736834899, - 0.03978378005505906, - 0.04620767901090783, - 0.03725988040543196, - 0.035162291993136675, - 0.03448428958736897, - 0.03959091980111926, - 0.028931684831879332, - 0.03895922856546835, - 0.028298971128085215, - 0.03490782755804173, - 0.03511732029514529, - 0.050244121939968245, - 0.031820879260899076, - 0.030195418800929883, - 0.041589514269203195, - 0.03779480562900424, - 0.04239894617502984, - 0.033624017570215665, - 0.037107073094897136, - 0.05310804491524878, - 0.043325045868050686, - 0.036281319004022594, - 0.03958125679965071, - 0.042405238314352625, - 0.038962790723302304, - 0.03598139619718316, - 0.03616571768582562, - 0.04070052067185569, - 0.04279307477397425, - 0.03955767194747536, - 0.036701075821195285, - 0.034794453735439206, - 0.04126197939185707, - 0.04378288167451097, - 0.03483505066652167, - 0.03377253134595925, - 0.0383370562880236, - 0.039034252351142835, - 0.03501180242307437, - 0.039743479890648546, - 0.029433364749011752, - 0.05522630347174714, - 0.03352342598036267, - 0.03343097884244875, - 0.041155678631908846, - 0.052767316098641756, - 0.034484016963980076, - 0.0414499259366305, - 0.0405256587499812, - 0.03647764598499793, - 0.04046164078210102, - 0.04400240008169536, - 0.04305056557175917, - 0.029241393452320026, - 0.03855658152568071, - 0.04090935151877452, - 0.02928285000296055, - 0.031338560988288806, - 0.03524990531718819, - 0.037701292009701806, - 0.049114403463130445, - 0.03523723449883331, - 0.036202010876162566, - 0.02991708576317777, - 0.030357279528354777, - 0.032405301751366536, - 0.03476870735833102, - 0.04057174517876091, - 0.03620989454277899, - 0.034868536610309746, - 0.03595569114068582, - 0.037224999809258405, - 0.05198272218944813, - 0.03645978280758643, - 0.043478504958563764, - 0.04202260968968424, - 0.041662028649610196, - 0.04068757190303886, - 0.03627856173879898, - 0.031943608913016494, - 0.034557061453707814, - 0.03329827307538936, - 0.0350466831086224, - 0.03325581350954688, - 0.03323239121430699, - 0.037167471350784756, - 0.0480015768847278, - 0.032796826992872036, - 0.03564636112651177, - 0.03397719595598885, - 0.0373680463390271, - 0.036857949087254815, - 0.03244421652526183, - 0.05392982774259806, - 0.04096459364259667, - 0.03613612546424471, - 0.03802777264978094, - 0.040698071806505864, - 0.03496244423426635, - 0.03574761231453372, - 0.04612934103162972, - 0.04095733848162617, - 0.03110888428389563, - 0.03460125471663463, - 0.04090131956205121, - 0.03336182758512927, - 0.03440894677688133, - 0.035557770673273995, - 0.03634887432219722, - 0.03679454227779686, - 0.03541922043809757, - 0.028474730241103238, - 0.041066577985584295, - 0.03895993329907872, - 0.03481090691759697, - 0.041868514951671425, - 0.038819822772288994, - 0.03503792693588444, - 0.04783627732122744 - ] - } - ], - "layout": { - "annotations": [ - { - "showarrow": false, - "text": "\tBurn in: 4000", - "x": 4000, - "xanchor": "left", - "xref": "x", - "y": 1, - "yanchor": "top", - "yref": "y domain" - } - ], - "autosize": true, - "shapes": [ - { - "line": { - "color": "black", - "dash": "dash", - "width": 3 - }, - "type": "line", - "x0": 4000, - "x1": 4000, - "xref": "x", - "y0": 0, - "y1": 1, - "yref": "y domain" - } - ], - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Estimated Error Model Values" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0, - 4999 - ], - "title": { - "standoff": 20, - "text": "MCMC Iteration Number" - }, - "type": "linear" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - -0.1045803921716095, - 2.3937588436533614 - ], - "title": { - "standoff": 20, - "text": "Estimated Error Model
Standard Deviation (ppm)" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQu4VdP6/99qd6+9SzdKuXQjt1DKJfeT6BCn+nVcQiq3HHQVXUSiVCIRooMUjkoXkTqS013uVLqRLihFKkqS//Md5z/2mWvtudaaa75j773WXt/xPB6195xjjvkZc63W+Kx3vG+xP//8809hIwESIAESIAESIAESIAESIAESIAESIAES8CVQjPKETwYJkAAJkAAJkAAJkAAJkAAJkAAJkAAJxCZAecKngwRIgARIgARIgARIgARIgARIgARIgATiEKA84eNBAiRAAiRAAiRAAiRAAiRAAiRAAiRAApQnfAZIgARIgARIgARIgARIgARIgARIgARIIBwBRp6E48azSIAESIAESIAESIAESIAESIAESIAEMoQA5UmGTDRvkwRIgARIgARIgARIgARIgARIgARIIBwBypNw3HgWCZAACZAACZAACZAACZAACZAACZBAhhCgPMmQieZtkgAJkAAJkAAJkAAJkAAJkAAJkAAJhCNAeRKOG88iARIgARIgARIgARIgARIgARIgARLIEAKUJxky0bxNEiABEiABEiABEiABEiABEiABEiCBcAQoT8Jx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIZQoDyJEMmmrdJAiRAAiRAAiRAAiRAAiRAAiRAAiQQjgDlSThuPIsESIAESIAESIAESIAESIAESIAESCBDCFCeZMhE8zZJgARIgARIgARIgARIgARIgARIgATCEaA8CceNZ5EACZAACZAACZAACZAACZAACZAACWQIAcqTDJlo3iYJkAAJkAAJkAAJkAAJkAAJkAAJkEA4ApQn4bjxLBIgARIgARIgARIgARIgARIgARIggQwhQHmSIRPN2yQBEiABEiABEiABEiABEiABEiABEghHgPIkHDeeRQIkQAIkQAIkQAIkQAIkQAIkQAIkkCEEKE8yZKJ5myRAAiRAAiRAAiRAAiRAAiRAAiRAAuEIUJ6E48azSIAESIAESIAESIAESIAESIAESIAEMoQA5UmGTDRvkwRIgARIgARIgARIgARIgARIgARIIBwBypNw3HgWCZAACZAACZAACZAACZAACZAACZBAhhCgPMmQieZtkgAJkAAJkAAJkAAJkAAJkAAJkAAJhCNAeRKOG88iARIgARIgARIgARIgARIgARIgARLIEAKUJxky0bxNEiABEiABEiABEiABEiABEiABEiCBcAQoT8Jx41kkQAIkQAIkQAIkQAIkQAIkQAIkQAIZQoDyJEMmmrdJAiRAAiRAAiRAAiRAAiRAAiRAAiQQjgDlSThuPIsESIAESCAggX379skTTzwhixYtkptvvllatmwZ8MzMOuzAgQPyySefyMsvvyxHHHGE3H777ZkFgHcbk0B+PBt4XS5ZssQ8bxdffLFcccUVaTMD6Tz2tIHMgZIACZAACeQhQHnCh4IESIAE0pzA66+/Lk8++WSouzjttNNkwIABUqZMmVDnBzlp/fr10qdPH9m1a5cUxPWCjCmVjvn9999l8uTJ8tprr8nu3bvN0P7617/KHXfckXCYP/30k/Ts2VM2bdqU8Fi/Ax566CFp0qRJqHNT/aSPP/5Y/vOf/8j7778v27ZtM8MtXry4ed7POuuspIa/f/9+AauFCxdGnFe7dm0ZOXKkVK5cOan+gh6seTZiXQPiYcKECfLWW2/lPm+33nprIHnywQcfyN133x1z+PGe21jvU0GfdVxUM/agzHkcCZAACZAACcQiQHnCZ4MESIAEigCBgwcPyqeffirDhg2THTt2SHZ2tjz88MNSt27dPHf3559/ytatW+W5556TX3/9Nd/lCRaeTz31lMyfP5+RJz7PGuYD/0EuYWG6bt26wPLEdgfp8uyzz8qbb76ZUL5gQY4ooMcff9xcr6jKE8sG4qRfv36yYcMG8yOIE9x3qVKlAr/yP/vsM7nnnnvkt99+M+c0a9ZMevfuLTk5OYH7CHOgi2cj1nW///57I97AJ6g8QV87d+6UV199VaZOnSp430Fr3LixdO/eXQ499FAjqPwajt28ebOMGTNGILaqVKlioqsgVLOyspLCE3bsSV2EB5MACZAACZBAFAHKEz4SJEACJFBECOBb2SFDhsjSpUvjyhPvonLixIlyyy23qCNPsACbO3euXH311UWEpsgvv/xiokH+/ve/q/kEgYL5Gzx4sImUSObbeNs3FqR9+/Y1C9og57/yyitSr169Ii9P/vjjDxMdgucTrWTJkvLggw+aBX+QhvMfffRRmT17du7hBR2xo302/O4TzzeicD7//POk5An6ghCFnH3vvfdM19iO17Zt2yA45d133zXz0b9/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xjfffGO+1YbYSJRg0rt9Jtm5x/E2usS75cdvru644w7z46DHRfeBcUIeQLThuYIMwkIY3+BD0Hm3PIW9RvQ1470uoiNH8KxisYzIgapVq+Z25a0E5McXsi66RDBeD5AnkydPNhFKWMhDDEE8Qs7FKyeseTZshSy8Dr/99lsjBSAjsZj3lhj3RmrFm+swz5M9B+8fEAd4bqxQ9esP44RkQZQJ5Mall15qnn28dpBsecyYMea9B8IJ8iGZscd77WNeESWEHDCYl2gJhrEiAgZbeyBJIVG9r1Pv84pnG2IZDe8pSA5ttyxBtEDKstKO5mniuSRAAiSQOgQoT1JnLjgSEiABEiABEiABEiABEiABEiABEiCBFCRAeZKCk8IhkQAJkAAJkAAJkAAJkAAJkAAJkAAJpA4BypPUmQuOhARIgARIgARIgARIgARIgARIgARIIAUJUJ6k4KRwSCRAAiRAAiRAAiRAAiRAAiRAAiRAAqlDgPIkdeaCIyEBEiABEiABEiABEiABEiABEiABEkhBApQnKTgpHBIJkAAJkAAJkAAJkAAJkAAJkAAJkEDqEKA8SZ254EhIgARIgARIgARIgARIgARIgARIgARSkADlSQpOCodEAiRAAiRAAiRAAiRAAiRAAiRAAiSQOgQoT1JnLjgSEiABEiABEiABEiABEiABEiABEiCBFCRAeZKCk8IhkQAJkAAJkAAJkAAJkAAJkAAJkAAJpA4BypPUmQuOhARIgARIgARIgARIgARIgARIgARIIAUJUJ6k4KRwSCRAAiRAAiRAAiRAAiRAAiRAAiRAAqlDgPIkdeaCIyEBEiABEiABEiABEiABEiABEiABEkhBAmknT/7880/Zs2ePHDhwwODMysqSChUqSLFixVIQL4dEAiRAAiRAAiRAAiRAAiRAAiRAAiSQ7gTSQp7s27dPli1bJjNnzpQvv/xSfvvttwjuJUqUkEaNGkmbNm2kWbNmUqZMmXSfF46fBEiABEiABEiABEiABEiABEiABEggRQiktDzZv3+/vPnmm/L888/LL7/8EghZ+fLl5frrr5dLLrlESpUqFegcHkQCJEACJEACJEACJEACJEACJEACJEACsQikrDzZtm2bDB06VNasWSONGzeWJk2aSP369aVmzZpGikCSoGH7Drbx7Nq1S9auXSsffvihLF68WA477DDp37+/1KpVi7NPAiRAAiRAAiRAAiRAAiRAAiRAAiRAAqEJpKQ8+frrr2X48OFy4YUXmgiSZLfhQKhAoLz88svSq1cvqVu3bmhAPJEESIAESIAESIAESIAESIAESIAESCCzCaScPNmxY4eMHTtWOnXqpI4aQUTKhAkTpF27dlKtWrXMnmnePQmQAAmQAAmQAAmQAAmQAAnKrsZNAAAgAElEQVSQAAmQQCgCKSVPUEln1qxZZovOoYceGuqGok/64YcfZPny5XLxxRezIo8TouyEBEiABEiABEiABEiABEiABEiABDKLQErJk4MHD5pKOmXLlg01C0gwi7wnyI3iTRaLPkuWLCnFixcP1S9PIgESIAESIAESIAESIAESIAESIAESyFwCKSVPtNOwceNGGTVqlAwcOFAqV66s7Y7nkwAJkAAJkAAJkAAJkAAJkAAJkAAJkICkjTxBVMrHH38s77zzjqxatcp36pDjpGLFijJy5EjKEz7cJEACJEACJEACJEACJEACJEACJEACTgikhTxBLpTp06ebRLKQKPFa7dq1KU+cPBrshARIgARIgARIgARIgARIgARIgARIAATSQp7s3r1b+vbtK7/++qvcfPPN0qBBA9/ZW7Zsmbz++usydOhQRp7w+SYBEiABEiABEiABEiABEiABEiABEnBCIC3kyc6dO6V3797SqlUradu2bcwb/+mnn2TEiBHSq1cvyhMnjwc7IQESIAESIAESIAESIAESIAESIAESSAt58scff8ijjz4qRx55ZFx5wukkARIgARIgARIgARIgARIgARIgARIgAdcEnMsT5CT55ZdfpHz58k5LA//www/y0ksvSZcuXUxSWL/GyBPXjwf7IwESIAESIAESIAESIAESIAESIAEScC5PduzYYbbO9OnTx/nWmfXr18vixYvlkksuySNmIG3efvttU40H12epYj7cJEACJEACJEACJEACJEACJEACJEACLgjkkSf79++XFStWyL59+5Lu//fff5c5c+bIt99+67zizddffy0PPfSQ4P/xGqvtJD1tPIEESIAESIAESIAESIAESIAESIAESCAOAV95AkmxcOHC0OBcCwwIHTumKlWqyIknniiVKlWKGB/Ezfvvvy+lS5d2Lm5Cg+CJJEACJEACJEACJEACJEACJEACJEACaU/Ad9vOW2+9JZMmTZJmzZolnbdkw4YNsn37dqcCA7lMevbsKY0bN5Zbb71VsrKyfMF///335rr33HMPt+2k/aPJGyABEiABEiABEiABEiABEiABEiCB1CDgK0+2bdsmX3zxhZx//vlJjzI/cp5gC9HgwYOldevWcsYZZ8QcEyJU1q5dK/Xr15dSpUolPXaeQAIkQAIkQAIkQAIkQAIkQAIkQAIkQALRBHzlyZ9//im//fablClTJmWILV26VFatWiXXX3+9FCtWzHdclCcpM10cCAmQAAmQAAmQAAmQAAmQAAmQAAkUGQKhq+14SxJDZhw4cEBKliyZb2AgdN5991058sgj5eijj/a9zsaNG2XUqFEycOBAbtvJt5lgxyRAAiRAAiRAAiRAAiRAAiRAAiSQWQSSlieopDNu3DhZsmSJ1KxZ0+QYqVixorzxxhuCUsKIDEFSV5ft559/NgljkdPkl19+kQoVKvh2v2fPHjMWjImlil3OAPsiARIgARIgARIgARIgARIgARIggcwlkJQ8WbdunfTv31+Q1wQtuqoOEs1Onz7d5CepVq2aM6p//PGHPProozJ79uyEfbqu9JPwgjyABEiABEiABEiABEiABEiABEiABEigSBMILE+swFiwYIG0b99eGjZsKJMnT5a77rorN8pj69at0qtXL2nRooV07do1Zm6SMESXL19utu107NjRNxcLthEhGmbmzJkydOhQRp6EgcxzSIAESIAESIAESIAESIAESIAESIAE8hAILE9QLrhv375y3XXXmYo3+PuIESOMLLFbZGxJ4bJlyxqBgS00rtrOnTvl008/lXPOOSdml9jegy1FEDc5OTmuLs1+SIAESIAESIAESIAESIAESIAESIAEMphAUvLEK0v85AlynvTp08eIC+YdyeCnirdOAiRAAiRAAiRAAiRAAiRAAiRAAkWIQGB58vvvv8tjjz0ml112mTRo0CBP5Am29SDqY8qUKXLaaafJgAEDnJc6RiniefPmmeS0yL+Cax566KEmEgbjqlWrVhGaGt4KCZAACZAACZAACZAACZAACZAACZBAKhAILE8wWOQdgRy58847pXTp0rnbdsqXLy/Tpk2T8ePHC0oK33PPPXG314S5cSSpHTJkiHz++ee+p2M83bp1k1atWjnNtRJmrDyHBEiABEiABEiABEiABEiABEiABEig6BBISp5AjCAh61NPPSXZ2dmye/duOeSQQ0wUym+//SbFixeXTp06Sbt27SQrK8sZJUSY4JoQNBA1bdq0MZKkTJky5hrIdYLfzZ8/X/r16ydNmzZ1dm12RAIkQAIkQAIkQAIkQAIkQAIkQAIkkNkEkpInFtWWLVtkxowZ8uGHH8r27duNSDnxxBON1KhXr57zyA8ki+3du7eRNQ888IC5RnSD2EGZ5C+++MJUACpZsmRmzyzvngRIgARIgARIgARIgARIgARIgARIwAmBUPIk3pWRG8W1uLDypFGjRmbLULFixXyHgK09SGqLpLW2ApATSuyEBEiABEiABEiABEiABEiABEiABEggYwk4lydI6HrKKadIpUqVnEFFVAnyqezatSuuPNm6das8+uijJvLEXh9JZteuXSv169eXUqVKORsTOyIBEiABEiABEiABEiABEiABEiABEsgMAnnkCWTDihUrZN++fUkROHjwoKxZs8bkHenataucddZZSZ2f6OBffvlFnnnmGbn00kvjbtv56quv5I477pASJUqYLiFUUDb57rvvZjRKIsj8PQmQAAmQAAmQAAmQAAmQAAmQAAmQQB4CvvLkoYcekoULF4bGBXECWeEq0gPiZOrUqSa/yvr16+WYY44xyWm97ccff5SlS5dK8+bNTRJb2zZs2GDOg0DhVp7QU8oTSYAESIAESIAESIAESIAESIAESCBjCfhu24E4eeyxx+S8886T448/PjeHCaI6Jk2aZLbAoNpNTk5OBDhUvVm5cqUpU3zCCSc4kyeIhtEIndq1a1OeZOwjzhsnARIgARIgARIgARIgARIgARIgAR0BX3kCCTJ37lxp27ZtbnJWJIJFMlZUusHPoyM/7DBwXsWKFU0EiMsGoTNlyhS54oorAiekxVYiRKNA6GDsjDxxOSPsiwRIgARIgARIgARIgARIgARIgAQyg0DMhLHIeVK6dOlcefLTTz+Z6I+ePXtKjRo1YtLBtppXX31VevToIWXKlHFGEdtyIEGSzaWSKRV4/vKXvxjWkFds4QlAEuLZhwBkC0cACZ4hYF0mjQ43kvQ+CwzxHMYS1el9dwUzemz5RPU3V1tIC2bUqXWV3377Tf744w8pV65cag0sjUYDfngWs7Oz02jUqTdUfA7ll2C6eUHhBbyWs7KydB1l8Nm//vqryauINRIbCZBA5hEIXG0H5YKHDRtmqt3Ekyfvvvuu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ZRJwKp48+OCDuPHGG1VmHRYGhZ07dy4OHTpUQ6pVq1aYOHFiLXcdBo1lMCUG6ouJifEIVYo5M2bMwO2334727durczJ1cffu3TF69Gj1b1rIvPXWW0ro0dl/PHJxOYkQEAJCQAgIASEgBISAEBACQkAICAEh0KIJOBVPnnvuOdx11121BBDGHWHMEf3biSeeCD8/v1oAs7Ky1O/33HOPR8UT+/Ywev0333yD2267rcYqZv78+diwYYP6W0BAQIseWOm8EBACQkAICAEhIASEgBAQAkJACAgBIeAZAg0ST3hJiiPPPvss7r77bsTFxdVpBa1EHAkv7jSXbjtPP/00xo4dCy3YMHXxM888g1NOOQUjRoxQsVBmzpyJFStWeNRlyJ12y7FCQAgIASEgBISAEBACQkAICAEhIASEgO8TaLB44koccfV7Y5ExIO2TTz6pRJLBgwfjoYcews6dO/HII4+of2dmZmLz5s3o2rWrchli1h0pQkAICAEhIASEgBAQAkJACAgBISAEhIAQcJeAz4gnFE2YceeDDz5Av379VEDb4OBgzJkzB6+99poKUst/U1QZNmyYu1zkeCEgBISAEBACQkAICAEhIASEgBAQAkJACCgCPiOeOBsvxmHJyMhAWloaOnfujLCwMBlaISAEhIAQEAJCQAgIASEgBISAEBACQkAIeIyAU/GEMUauv/56REVF1bpYbm6usvRgJh7731iRrjMff/wxHn/8cY8FjGV8k+3bt6Nbt25OUyYzVXF+fj569OhRJ4itx2jJiYSAEBACQkAICAEhIASEgBAQAkJACAiBFkfAqXhCt5h9+/Y1Cki7du08GrTVTBwVWqB88sknYPrk0047rVHt9tWDGFCXff/uu+9Uyuazzz4b//jHPxASEuKrXfJouxkPh6m3d+3aVXPekSNH4v77768R4zh/li5dqoIOMx13//79VdampKSkWm0xW8+jHWjik9FFjmLlO++8gwsuuACDBg1y2IJNmzaptOSsS6uvm2++GX369KlT19P1mhhHoy/HeTd79mx1T1Jsdla+/vprJUjrEhgYqOI7DRgwoOZvOTk5Kj37woUL1Zy9/PLLccYZZ8BisdQ6rdl6je5UEx3IObhgwQK8//77SE9PV/fhtGnTVNBwf3//RvXZLBuz9ZoIRaMvw2fV2rVr1T2akpKiArxzbeB/nEP2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y4OBAo1+/qzLAHe0TKHPNmMzMOidFCEgBISAEBACQkAICAEhIASEgBAQAkJACHiCgFeKJ+wYg6ox0NjKlStVPwcPHqyySxiDKTLoIi1SGMxNl4iICEydOrVFZ5nxxMSQcwgBISAEhIAQEAJCQAgIASEgBISAEBAC1QS8VjyRARICQkAICAEhIASEgBAQAkJACAgBISAEhIA3EBDxxBtGQdogBISAEBACQkAICAEhIASEgBAQAkJACHgtARFPvHZopGFCQAgIASEgBISAEBACQkAICAEhIASEgDcQEPHEG0ZB2iAEhIAQEAJCQAgIASEgBISAEBACQkAIeC0BEU+8dmikYUJACAgBISAEhIAQEAJCQAgIASEgBISANxAQ8cQbRkHaIASEgBAQAkJACAgBISAEhIAQEAJCQAh4LQERT7x2aKRhQkAICAEhIASEgBAQAkJACAgBISAEhIA3EBDxxBtGQdogBISAEBACQkAICAEhIASEgBAQAkJACHgtARFPvHZopGFCQAgIASEgBISAEBACQkAICAEhIASEgDcQEPHEG0ZB2iAEhIAQEAJCQAgIASEgBISAEBACQkAIeC0BEU+8dmikYUJACAgBISAEhIAQEAJCQAgIASEgBISANxAQ8cQbRkHaIASEgBAQAkJACAgBISAEhIAQEAJCQAh4LQERT7x2aKRhQkAICAEhIASEgBAQAkJACAgBISAEhIA3EBDxxBtGQdogBISAEBACQkAICAEhIASEgBAQAkJACHgtARFPvHZopGFCQAgIASEgBISAEBACQkAICAEhIASEgDcQEPHEG0ZB2iAEhIAQEAJCQAgIASEgBISAEBACQkAIeC0BEU+8dmikYUJACAgBISAEhIAQEAJCQAgIASEgBISANxAQ8cQbRkHaIASEgBAQAkJACAgBISAEhIAQEAJCQAh4LQERT7x2aKRhQkAICAEhIAR8h8D333+P119/HTfccAMmTZrkOw33wpaWl5dj7dq1mDVrFkaNGoWzzjrLC1spTRICQkAICAEh0LIIiHjSssZbeisEhIAQcJtARUUFNm3ahMWLF2Pu3LkoLS1F165d8dRTTyE6Otrl+dPT03HPPffgwIEDNXW52b711ltrHVtVVYUdO3bg22+/xcqVK5GVlQV/f38kJibi5GHFDU4AABLPSURBVJNPVhv0w4cPY9euXRg3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IzeULNwUc1Ovi/4SzkChFDG0RQM3efxqTvGC8TVoMUKBJDQ0tFYLKUDw3Axgyswx/LrOr+mMxcH0wRRYKNwwsCzdLXShGMF0uUzNytgrxvgk2mKDdfmbTlHLfxvTv/bu3VtlqmnVqlWtNlGYoOsJY2Vwo3/JJZeodLd09aisrFRf/xlolUFxJ0+erDau9RWyoBDA2CK0uKH1B0UDI8e3335biSHkNGDAABQXFyuhiv189dVXVVpi+0JedJVh/9iun376SYkebBc32507d645hP1mXbad8WA4XtpqhumQ+W+maCaT448/Hs7ao+PKsD3M9sIUx9qqRwtPf/75Jyg8MTUu28a4M6+//roSZ9hmFraXlkSMv9KnTx888sgjiI2NVb+xrZxnnBMPPPAATjzxxHqtkuqbC/bMUlJS1LmHDx9eS7AxZpDi+DDN8IYNG5Qb0urVqxUrcqFQwUxS27dvV9ZAnO9MzcwUxyw8D+clhSIjH+P9wHrGYyj26XGkSxX7S86zZ89WjGbMmFET7JjHcg7xeLbPvhizCnGsWY/iC+8rzmNJT3wUHpBySiEgBISAEGh2BEQ8aXZDKh0SAkJACBxdAkZrCeOV7IOCcpNHwUNbhdSXJcb+iz/Py+ssXbpUbRa5uS0tLVWbUp6TG/1TTz21luiiLUeMbTJmneHfaZFCixYer69BQYEbe/viKMgpN/fcIDO97rp165SlBwtjtHADTdHETEBZsyy4IabVCd1buOm+6qqraiw3uCH/5ZdflLjCmBdM3Uu3DKaJpnWHs3GyZ824JIwvw2tRCOBGPTg4uEbUueuuu9Tf9Qbdvj0UNewzvdhzt28rz08xgq5Zbdu2rXcsmLaahdYWxuJozujfzcwF+/GmKEZBRF9P/04u5MPfOM7kQzGJ4h4FMgoQdANjymdmKrJvI9tpzycyMlJZZLG+/THGNN1kS5Fw8eLFaq7pMaaAZi848rq0EGJ9iitsN13U2L7TTjtNtVW7YxnbqNuis04d3aeHnF0ICAEhIASEgO8SEPHEd8dOWi4EhIAQEAJCQAgIASEgBISAEBACQkAINAEBEU+aALJcQggIASEgBISAEBACQkAICAEhIASEgBDwXQIinvju2EnLhYAQEAJCQAgIASEgBISAEBACQkAICIEmICDiSRNAlksIASEgBISAEBACQkAICAEhIASEgBAQAr5LQMQT3x07abkQEAJCQAgIASEgBISAEBACQkAICAEh0AQERDxpAshyCSEgBISAEBACQkAICAEhIASEgBAQAkLAdwmIeOK7YyctFwJCQAgIASEgBISAEBACQkAICAEhIASagICIJ00AWS4hBISAEBACQkAICAEhIASEgBAQAkJACPguARFPfHfspOVCQAgIASEgBISAEBACQkAICAEhIASEQBMQEPGkCSDLJYSAEBACQkAICAEhIASEgBAQAkJACAgB3yUg4onvjp20XAgIASEgBISAEBACQkAICAEhIASEgBBoAgIinjQBZLmEEBACQkAICAEhIASEgBAQAkJACAgBIeC7BEQ88d2xk5YLASEgBISAEBACQkAICAEhIASEgBAQAk1A4P8BeRmVCv++KvUAAAAASUVORK5CYII=", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "plotlyServerURL": "https://plot.ly" - }, - "data": [ - { - "legendgroup": "Beam sensor 0", - "marker": { - "color": "rgb(102, 197, 204)" - }, - "name": "Beam sensor 0", - "type": "box", - "y": [ - 0.11447393137470015, - 0.08601614895685247, - 0.06665487649605299, - 0.07900619625585142, - 0.08284809324354658, - 0.06766256994709624, - 0.07283503536073105, - 0.056383171130916565, - 0.08362744074898475, - 0.06310333034545965, - 0.06891743810923376, - 0.07204182122329209, - 0.07901032954941116, - 0.08015226278244958, - 0.09849577310595324, - 0.06643702058412013, - 0.08388336435169948, - 0.09195416515097264, - 0.06571232075597214, - 0.06366720541852532, - 0.07601258935078131, - 0.06174661682523948, - 0.11453871898297897, - 0.07216592178061938, - 0.07850172534551393, - 0.06928483349020712, - 0.0662306337073297, - 0.05576482093165577, - 0.07850550362653552, - 0.07508363450803489, - 0.06588816315463375, - 0.07150108913795072, - 0.08323637756877912, - 0.08635889960071731, - 0.07190620802350206, - 0.08081925565440579, - 0.08294420015650246, - 0.09010474033751692, - 0.06624102171159858, - 0.07810152473869944, - 0.09720358288204446, - 0.07021406369217482, - 0.07969129308531542, - 0.07045152747662785, - 0.0567101162583161, - 0.08952745252162675, - 0.10011724342410384, - 0.07497196385020213, - 0.06653933352604612, - 0.08381570771682363, - 0.0806621213098584, - 0.09531897627413467, - 0.08716055193365968, - 0.08522642992171058, - 0.08591298624446728, - 0.08084153844657367, - 0.06710515773469462, - 0.09430968387215924, - 0.06213257160620119, - 0.07688724986741426, - 0.07680752341347079, - 0.09296246093855981, - 0.08338380216169772, - 0.08115978038325393, - 0.09860024214831854, - 0.08711590147405494, - 0.08845193645713344, - 0.09986358937144846, - 0.10563751596473349, - 0.07986983800198987, - 0.09391370362043723, - 0.08328974314939976, - 0.06353034157919227, - 0.07173178889986198, - 0.06849774847479977, - 0.07395607369830753, - 0.0899784792554148, - 0.09558160705730065, - 0.0967903058121914, - 0.10879279381495442, - 0.0682780996018918, - 0.07023014676153012, - 0.07018472785233362, - 0.06794393303628263, - 0.07562253557652206, - 0.06737320609619915, - 0.06848584920278386, - 0.0719714866727068, - 0.09756345975818605, - 0.1246429443943433, - 0.07406953743291533, - 0.08630599452183056, - 0.061661644771578976, - 0.06828385809904046, - 0.10371403253541417, - 0.06382958285422846, - 0.05369008327523345, - 0.08599365226432865, - 0.0745252382355847, - 0.07098760285632623, - 0.06463176830412305, - 0.07097667049873826, - 0.06504201344633444, - 0.06635464271615078, - 0.07758729315139626, - 0.05776850849516609, - 0.08172460729556434, - 0.06622546915366254, - 0.08525049481954332, - 0.0878261742918285, - 0.07191757196548773, - 0.09690315067140136, - 0.08469713162476505, - 0.07280513026204247, - 0.05219197412294474, - 0.08351782331758498, - 0.07765153524314236, - 0.07051857396758014, - 0.09232309483569463, - 0.08786743900710114, - 0.07820448129649782, - 0.060213464478592604, - 0.07473467506308742, - 0.07833026884176429, - 0.0753715611322922, - 0.11712548142544514, - 0.062240875393909954, - 0.07925836891165816, - 0.0639642676329946, - 0.07776827020914273, - 0.07320208366440101, - 0.08287252901224765, - 0.0693492513890538, - 0.06587756207197815, - 0.06889103831709388, - 0.08843957860273215, - 0.1147944133669514, - 0.08133669674561181, - 0.07233657294045802, - 0.07798271220810435, - 0.0704920336218388, - 0.07705099797161008, - 0.08082979933795469, - 0.07230878134889929, - 0.10413933008540757, - 0.07792174097248634, - 0.07124174850521534, - 0.07793745216511355, - 0.058643435962110614, - 0.08622033030661595, - 0.07156069377236193, - 0.07521353094024891, - 0.09229350589957379, - 0.08922789957414853, - 0.059135394096358825, - 0.05797250854127129, - 0.08524890840051923, - 0.0682904822501719, - 0.08720699072814479, - 0.07987896134319052, - 0.08929144422730077, - 0.11219561306376101, - 0.07070377893486857, - 0.0672730915974678, - 0.09052392785861217, - 0.08218400625863294, - 0.0859103692629877, - 0.07912291386186082, - 0.06065266175719179, - 0.11295059181101481, - 0.07150019003194455, - 0.06875576806024644, - 0.06865172146223689, - 0.07966190293593337, - 0.07062075078253649, - 0.09178642952435778, - 0.07574782853699077, - 0.0935408217113296, - 0.06941602715655137, - 0.073046580884459, - 0.07963468913751347, - 0.10811603423678806, - 0.0730489843540421, - 0.0824320189622287, - 0.07821764726375303, - 0.07467417772469509, - 0.07561984537215373, - 0.06709681809902288, - 0.07951766010987153, - 0.07700524521284692, - 0.07529040120521723, - 0.07588360010570327, - 0.08075634562189682, - 0.09292122056187516, - 0.07201501792327474, - 0.07726142297965469, - 0.07190995598210029, - 0.10740457314330389, - 0.07707765475776454, - 0.08308775111648858, - 0.0733341996284551, - 0.08218039952042501, - 0.08014820735041306, - 0.09184628819786854, - 0.09086204543777972, - 0.0594843267585398, - 0.0629393144881159, - 0.09973705005283119, - 0.06976007185371458, - 0.08900181852600147, - 0.08025511544154748, - 0.09414012999894134, - 0.09120961664666606, - 0.07586750366643918, - 0.06307735963578387, - 0.07224386759238362, - 0.07346095466023034, - 0.07867588053009907, - 0.10310429652641746, - 0.060885859241399956, - 0.07675324381930491, - 0.06170394454164737, - 0.08512477440705574, - 0.0693402390874714, - 0.0697757604164985, - 0.11257663552882656, - 0.09169784869552476, - 0.06958787157114349, - 0.07416659824491252, - 0.06444468281228989, - 0.06323603547393016, - 0.09301047966145883, - 0.06089544351712666, - 0.07403302433929651, - 0.07150895565040416, - 0.07542964915271207, - 0.08510155377972826, - 0.0668345018401326, - 0.0926086898829572, - 0.09459582238712758, - 0.06829926700002749, - 0.08587308870738519, - 0.07559059613276593, - 0.07746544187665194, - 0.08030051585849717, - 0.059565236003503955, - 0.0874879613080152, - 0.09736435879588756, - 0.08213059041495015, - 0.0628717247343395, - 0.06731267094026634, - 0.08495653987676126, - 0.08586918199263968, - 0.09716665004285123, - 0.09127035755722866, - 0.06863936314895139, - 0.07668759801435006, - 0.05730454667551294, - 0.06459838408276403, - 0.09488969683702864, - 0.07356632638838113, - 0.08019248179521675, - 0.08533161343709834, - 0.07153673709273767, - 0.07544520422922632, - 0.09027450092461765, - 0.08779950633587545, - 0.08468257946065447, - 0.08785310802818082, - 0.09086207368946451, - 0.06542922416139665, - 0.072054645248716, - 0.07919802241310896, - 0.07507777553528971, - 0.08739496127033293, - 0.09690622530594047, - 0.07649473136049137, - 0.08088855610130878, - 0.07642213854839092, - 0.05913650796853856, - 0.07235120888240842, - 0.08975737062982718, - 0.08284476547471378, - 0.07138504055646687, - 0.06868791135237501, - 0.07517389255496716, - 0.07487525017876437, - 0.0824518137718452, - 0.06541432040371564, - 0.08199742451963471, - 0.059677726285325715, - 0.061339255557373705, - 0.08821244841980427, - 0.06351048555016134, - 0.0749407818223644, - 0.06254964496931252, - 0.08759247218034395, - 0.07379040201410064, - 0.07374204945567125, - 0.08342308942516187, - 0.06645701923270002, - 0.08755258632757869, - 0.06364151288908773, - 0.0920935008564492, - 0.1034087463340564, - 0.07454200663215498, - 0.0840504874272234, - 0.085595872682885, - 0.08210687247690875, - 0.05758975767591459, - 0.06833889028188614, - 0.060229230511689116, - 0.06368948747301151, - 0.07858333300302617, - 0.07500399858424571, - 0.09130854990133823, - 0.06876439565539427, - 0.06462127284197064, - 0.06792900187506273, - 0.06471406948261195, - 0.06937689884793208, - 0.05836638652826638, - 0.07088304373697007, - 0.08218259503506525, - 0.08297492116580503, - 0.08192840281516625, - 0.06210135775145932, - 0.09895090109317446, - 0.059825330277706625, - 0.1088935017515979, - 0.06563885467592853, - 0.07100286050769015, - 0.062344359179982156, - 0.10754054814009084, - 0.09429598631970175, - 0.06398221957720256, - 0.08213712468506511, - 0.08311285528647334, - 0.07721276628203463, - 0.0989056805793633, - 0.06147362035991655, - 0.08464931616308984, - 0.06348942023659682, - 0.08608968394170419, - 0.08140617483921567, - 0.06663531787432986, - 0.08479624353271892, - 0.09839892382328318, - 0.07453713857251745, - 0.06595762568491742, - 0.07375357851668816, - 0.08688506196674173, - 0.0833982611407247, - 0.07188403460878663, - 0.07430628600624421, - 0.06950346831012712, - 0.06598581427334622, - 0.08233123697069712, - 0.07912029398442523, - 0.09025420812832731, - 0.0757882749484664, - 0.07039967085092443, - 0.06334076317411697, - 0.06355757077677757, - 0.081051876100448, - 0.08785195483697462, - 0.07430980413428202, - 0.092997699968936, - 0.0733893310258755, - 0.08593281023862148, - 0.08972985429583416, - 0.08464811564953974, - 0.07160956979277308, - 0.07673016670499298, - 0.06031805482144385, - 0.07066680623811901, - 0.06761318267366623, - 0.0919447440745381, - 0.07461783492694214, - 0.08731004924979122, - 0.08080187511702797, - 0.08636122191926213, - 0.07484464529981237, - 0.0831084453887049, - 0.07409663055884935, - 0.06978551003756014, - 0.09419378665107161, - 0.10120992440060388, - 0.07852187808316935, - 0.07924511552560778, - 0.07910156535230264, - 0.06521786222557038, - 0.09052096765845304, - 0.08725447569999004, - 0.07864269725286316, - 0.07820361963673553, - 0.0907825688570589, - 0.07167375282335747, - 0.08071671512511618, - 0.0600605440310957, - 0.06256682578534761, - 0.08230280441135988, - 0.08757903072022766, - 0.09985412136842108, - 0.10340029038748502, - 0.08366499596534649, - 0.07655182982214884, - 0.07804651814436636, - 0.06482309533221399, - 0.07621621254268832, - 0.06236540036951853, - 0.08655035595975202, - 0.07450759326144077, - 0.08190482200002261, - 0.09681142853970195, - 0.06689443159389098, - 0.0744818380807826, - 0.07766686887936203, - 0.06689357944940864, - 0.08268362279354818, - 0.07957043742327832, - 0.07077574214902072, - 0.10066386992082715, - 0.07580249290117458, - 0.07534422124230128, - 0.06633349220711687, - 0.07705430890787414, - 0.07399349098036588, - 0.10873876414806177, - 0.11493951871872578, - 0.06885554489770147, - 0.07446866539049761, - 0.08059709027268736, - 0.06464325303734707, - 0.09360681709083189, - 0.0635263696197495, - 0.06995200897101328, - 0.07853874383290806, - 0.08159604136656692, - 0.09335610107894479, - 0.06703972221744038, - 0.0664240062005633, - 0.0924058754706442, - 0.06877143485916433, - 0.07811733903449461, - 0.07092291515044927, - 0.0679459810236854, - 0.07243995250634673, - 0.06860377362234367, - 0.07782687080210457, - 0.08267951518149258, - 0.07889687485488826, - 0.06363766842866425, - 0.06943480531479039, - 0.07743774834327395, - 0.11139193723843882, - 0.07703505326921749, - 0.0763394692365271, - 0.06761434831868827, - 0.07864047204175284, - 0.08398811624769813, - 0.09727189236255904, - 0.07340890982522623, - 0.0728979548118425, - 0.05548912159305028, - 0.0815216389176959, - 0.07344488247895707, - 0.0808551189403844, - 0.08048921636825573, - 0.07399257476753199, - 0.07913338031534904, - 0.07227049819802908, - 0.08551010896871292, - 0.09973176445942342, - 0.09279861930581898, - 0.0909153768627144, - 0.07251391649541185, - 0.09029198956112401, - 0.0796746572029755, - 0.08777367579293233, - 0.07501857785486714, - 0.082749745764031, - 0.07069218916563735, - 0.07797181110399633, - 0.08684767959088519, - 0.06815072837230976, - 0.09423284149688939, - 0.07242168779791947, - 0.08331829088719833, - 0.07485093602060462, - 0.07422936837645037, - 0.07838987714497178, - 0.10268784085054962, - 0.08156503288962434, - 0.08187316977339415, - 0.09270132904789756, - 0.07709220214077123, - 0.07685217633005756, - 0.06743487622556507, - 0.08665612027502535, - 0.09038462711745501, - 0.07278571446373841, - 0.07709784836865462, - 0.07097927421705418, - 0.08316695429050924, - 0.07130913350878548, - 0.07041045945216523, - 0.1053279525424274, - 0.09667527980137407, - 0.09753151071263146, - 0.06422971412288866, - 0.07703872122803548, - 0.09026639243705369, - 0.06457615160649462, - 0.09709716351616014, - 0.10663420914431225, - 0.061413871620174094, - 0.07564589404465283, - 0.07939400120505889, - 0.08003878877340238, - 0.07114124816937828, - 0.07753341919389253, - 0.0672765415863962, - 0.06962421911263848, - 0.08231126206263532, - 0.0783275664000965, - 0.09219502419318681, - 0.1088989093726032, - 0.07269035761693707, - 0.07472475656001436, - 0.08051289631190264, - 0.06366546320747778, - 0.07584729148493694, - 0.07932550807309925, - 0.09115098885760453, - 0.08839727713481789, - 0.08442820124211299, - 0.07709478445498069, - 0.0697798571612283, - 0.0742680429018309, - 0.0692433003839258, - 0.06324926207409469, - 0.055892978207178624, - 0.08174436834888262, - 0.07354693737441079, - 0.0814271375801284, - 0.09697191310614828, - 0.09862185015310362, - 0.10141878028483443, - 0.07260538758612257, - 0.09502894519967052, - 0.07821361014444592, - 0.06345519831486886, - 0.10627357999205878, - 0.0699365774615762, - 0.08081431901806348, - 0.07802780671986118, - 0.08325261703048314, - 0.07541518106709426, - 0.0819484798134012, - 0.07477924712484917, - 0.08165948274224681, - 0.07242673443192532, - 0.0977868486538132, - 0.0975254028591405, - 0.08999047119264812, - 0.08408004771942672, - 0.07607789466917851, - 0.07108595495851153, - 0.06406545057304955, - 0.06550299003260779, - 0.06732619256351961, - 0.06326970111085622, - 0.06050936180233658, - 0.06659216882414835, - 0.06551169605559176, - 0.07976519850067997, - 0.10199847029605952, - 0.09072559610427942, - 0.06950626102673155, - 0.06658827828591671, - 0.08891072789358756, - 0.08649675477132222, - 0.09493030408086815, - 0.09196798963641586, - 0.07630312899712725, - 0.07105652603805117, - 0.08160726437273194, - 0.07104947092679662, - 0.062389768992805496, - 0.0962445383077257, - 0.07180748492985603, - 0.07144139285634933, - 0.06881331576659823, - 0.08027080722548703, - 0.06397047069767009, - 0.06897230648516414, - 0.07857594060916642, - 0.06149358342512446, - 0.07450362863565209, - 0.09164654130875557, - 0.10934822057754111, - 0.07663091171414961, - 0.06864543161706481, - 0.07923526541539076, - 0.08414389039823938, - 0.08768940222163268, - 0.07981382114329867, - 0.06915002382421889, - 0.07988132951930701, - 0.07532476283955065, - 0.07829139061231181, - 0.07900891354664555, - 0.0883784779852678, - 0.06251354102239244, - 0.06841070877182777, - 0.09391841302772613, - 0.09590776563359762, - 0.08748440878573031, - 0.09925090255041578, - 0.0707051376001382, - 0.08002583836443009, - 0.06810939620784656, - 0.0626670751356061, - 0.06743918371846946, - 0.06975887881777547, - 0.08674005776518602, - 0.08007641697699676, - 0.07724007229379931, - 0.09112328251370098, - 0.08238171364639738, - 0.08275357027035064, - 0.07397336309767939, - 0.07330035086559279, - 0.09324575755050295, - 0.08243261851147833, - 0.07833315935159679, - 0.09030266869928101, - 0.07439736088050897, - 0.07326087216689876, - 0.08563691727967472, - 0.09462599969941721, - 0.07555388824623706, - 0.0844027659988426, - 0.10013791633050079, - 0.08093822567316493, - 0.07888126134673129, - 0.07850733828985991, - 0.0856892424066913, - 0.08043677343745301, - 0.08551387729867703, - 0.10190385890324473, - 0.07219084505287436, - 0.061759591582873155, - 0.09423377909927393, - 0.0791538582338517, - 0.08030247854101046, - 0.06767058390814908, - 0.07403365023508893, - 0.084509244878108, - 0.07899168644869359, - 0.068488118343969, - 0.07781566014136189, - 0.07847642592263286, - 0.08021834147749672, - 0.06362072948132237, - 0.09819213161232802, - 0.08028890532712506, - 0.05769805223262799, - 0.07400161857253458, - 0.08645287829373509, - 0.0801534899275563, - 0.07858910258787029, - 0.0707522588339861, - 0.07634870564674279, - 0.0707625676284981, - 0.06264902859961077, - 0.08144983013058536, - 0.07702749867204192, - 0.053162437068084, - 0.08654196440316807, - 0.08394689388780556, - 0.06290453901517627, - 0.08287680013523602, - 0.0753953063778686, - 0.08148191017512382, - 0.06933400624396832, - 0.08320864641646993, - 0.0890457446529895, - 0.059819530839693824, - 0.07751816396331218, - 0.07261928420982501, - 0.0786483853879108, - 0.07576596639954253, - 0.13421542857219287, - 0.06526605973360274, - 0.08110966822805879, - 0.08199109589816726, - 0.06365996071936286, - 0.07157588486746556, - 0.08943871571378152, - 0.07534018588064255, - 0.10346783057392332, - 0.0689949696178118, - 0.06578687733834684, - 0.07193306105093497, - 0.08837689907333929, - 0.0696354045371941, - 0.08415868465551433, - 0.061647921693896206, - 0.05862747211863791, - 0.07938288096434062, - 0.08564294284456848, - 0.08577955247808648, - 0.0897321062177783, - 0.06091342951381326, - 0.08380608358553028, - 0.09438993546845928, - 0.1203745244119162, - 0.0665662926405263, - 0.07248789681285851, - 0.08579254840556264, - 0.0785043603366159, - 0.07518537683030256, - 0.08152672660502874, - 0.09283965806765329, - 0.08687168090475948, - 0.09807924527425933, - 0.06670279457205058, - 0.07678228858455857, - 0.0871915767749327, - 0.09769441649149695, - 0.06544498055889295, - 0.07007028028195667, - 0.0660685146491283, - 0.06804144134387073, - 0.09188800395129014, - 0.10234341498317125, - 0.08479138968351028, - 0.08814888668774401, - 0.06804048737176265, - 0.07663143864009149, - 0.0836647511384597, - 0.1000097675050749, - 0.0920569407414, - 0.09237681655029388, - 0.07714710324445687, - 0.07824614337129342, - 0.07245133067758038, - 0.07825120089165155, - 0.06707422530915268, - 0.08805199090421657, - 0.07533243595828444, - 0.07604885465323771, - 0.11006980096405396, - 0.07383927139768007, - 0.07298825669457584, - 0.08838722046718424, - 0.07897568149138616, - 0.08341766698119388, - 0.0816341216124362, - 0.08628150822536863, - 0.09508355005547653, - 0.09401446433656753, - 0.07728530890457957, - 0.0751444030845301, - 0.08037957076841962, - 0.08497792110118813, - 0.09947432827731859, - 0.08110390440121795, - 0.07855812514249297, - 0.05919818833816716, - 0.07951884460796821, - 0.06477729651009158, - 0.0848358081483786, - 0.08615401664813888, - 0.08963810471213604, - 0.07461094516889337, - 0.061439469869498164, - 0.07744570752387536, - 0.07231432141595996, - 0.07359513935542203, - 0.0647442090729554, - 0.08645332065079217, - 0.06394630975892063, - 0.06182743687182061, - 0.07650702277494591, - 0.06869532799429699, - 0.06422578437568077, - 0.0890497685824673, - 0.10329191777387858, - 0.08098887071831556, - 0.07533795842286253, - 0.05833746954564304, - 0.0793838266479648, - 0.08688829242588601, - 0.0969706752810349, - 0.06453608929155702, - 0.07297444980965605, - 0.07467752213179886, - 0.06876161570612399, - 0.07737673191642887, - 0.07838728287990261, - 0.08356511404006661, - 0.07290127649060264, - 0.08114133758574685, - 0.0796516604342582, - 0.067622429892809, - 0.07446163535553668, - 0.07289720003425901, - 0.0903222101997463, - 0.08272388237263524, - 0.08531223122140903, - 0.061193798274984536, - 0.08182488467946049, - 0.0820280370731087, - 0.06573273911534669, - 0.10120988399948398, - 0.0804424770835976, - 0.07475690678800091, - 0.08363843704525938, - 0.07845734835755658, - 0.06893150934263158, - 0.08576380062218485, - 0.07730658483399498, - 0.07245542708444594, - 0.07330341413751926, - 0.07837437900124619, - 0.07951751717546991, - 0.0786678346976338, - 0.0633068445147492, - 0.08169736738600025, - 0.07653293208144003, - 0.08372371911526678, - 0.06817741799678986, - 0.08432671606563762, - 0.09419212693872227, - 0.0831429437233733, - 0.08142037251611617, - 0.10029838952178911, - 0.09189345058439734, - 0.07541131355260408, - 0.07236379756330982, - 0.06810675194164915, - 0.0940301184716702, - 0.09424033393249086, - 0.09420329831842561, - 0.08317913394081702, - 0.07956338398723889, - 0.08156951380532042, - 0.08031953213543201, - 0.09156717163939819, - 0.08019588849434414, - 0.07753584099462962, - 0.08453675272209861, - 0.11221634662860783, - 0.08811731371688142, - 0.07050906480078005, - 0.06732239156753116, - 0.0831622417179293, - 0.08326635212175806, - 0.08413875949547102, - 0.06706035268600259, - 0.08016814378669615, - 0.07581720877662065, - 0.08172403356841433, - 0.0831355972034597, - 0.08295453515550456, - 0.08871426266570234, - 0.08991615484086382, - 0.07618318814376257, - 0.08661834372787659, - 0.07041064026856686, - 0.0763652599125074, - 0.07706717903790694, - 0.06277518382487368, - 0.06772605578915633, - 0.09265987417842167, - 0.09930767731995911, - 0.07896587031872104, - 0.09498405145071426, - 0.07604767260615722, - 0.08438004666840661, - 0.09973429340100062, - 0.07737318780822884, - 0.07623251948320432, - 0.1002335746661189, - 0.10433143124779991, - 0.07590271574760737, - 0.07069262021487972, - 0.11741544638328735, - 0.06219133325636609, - 0.07169848462834177, - 0.07417535888352386, - 0.11260165223536875, - 0.10458768483096251, - 0.09828348593448337, - 0.08094852404977748, - 0.07338175658299496, - 0.07707301425949417, - 0.08427138336723218, - 0.08800303984720717, - 0.07048669573022696, - 0.10660067700013416, - 0.0655543080429642, - 0.052951082288301435, - 0.10213533740264712, - 0.07322801244447821, - 0.07482664303844551, - 0.0700989220163211, - 0.07333156675978773, - 0.07912128986346825, - 0.07012903311117588, - 0.08354663236912274, - 0.07342204013095494, - 0.05331569704090838, - 0.059273297380302174, - 0.07029444595193762, - 0.06307826953951325, - 0.06707401873856327, - 0.08467367401128474, - 0.07811259959907389, - 0.11409007078425387, - 0.07772941958128636, - 0.0786831002493629, - 0.08940227882703722, - 0.06375568566710431, - 0.06379401764960706, - 0.06123700743527384, - 0.0822439476854724, - 0.08266148456584206, - 0.10433291175137652, - 0.06572363063217587, - 0.07792456764670826, - 0.07821626396344405, - 0.07917001958994486, - 0.07728314667448764, - 0.07344106933705206, - 0.07534207782364019, - 0.07769623665969218, - 0.09280331199470805, - 0.1212362434838904, - 0.08918609860957626, - 0.0909178705030026, - 0.08952330693914252, - 0.09521561513238638, - 0.07799538439027424, - 0.06139720126769126, - 0.06414508350173974, - 0.08616124985818925, - 0.06471911436335241, - 0.09498642936149468, - 0.1169926468309486, - 0.07397540973550461, - 0.08912299083527261, - 0.07136177931536666, - 0.08942434059058722, - 0.07174302683120001, - 0.08496579617763982, - 0.06864388553363603, - 0.06996467174737145, - 0.07732846609693753, - 0.09325325895950567, - 0.09637574016168761, - 0.06271894242253954, - 0.09386001880826082, - 0.10032360014989201, - 0.08811850635763523, - 0.05994741915130772, - 0.09450167893499903, - 0.056574338228903065, - 0.09358439883113141, - 0.08966865671780895, - 0.08022630127152297, - 0.08466313365320323, - 0.07532375348434528, - 0.08590099790538774, - 0.06726430269213406, - 0.07518550306274628, - 0.08780277176608353, - 0.0844508796904951, - 0.08687506416230602, - 0.06710087335006704, - 0.08823954134943467, - 0.09920812521133987, - 0.06167983072478759, - 0.07246085004271793, - 0.10021280437106875, - 0.07773424520847833, - 0.09841615067880097, - 0.07672058604425903, - 0.050384329770070416, - 0.0951351666117986, - 0.0784738220777513, - 0.0733181151277326, - 0.07623963528401924, - 0.07343776312297662, - 0.0829034070426589, - 0.08419862239673058, - 0.08487907802718957 - ] - }, - { - "legendgroup": "Beam sensor 1", - "marker": { - "color": "rgb(246, 207, 113)" - }, - "name": "Beam sensor 1", - "type": "box", - "y": [ - 0.10771430103585063, - 0.08990973028579999, - 0.11695742720535282, - 0.11105833175272199, - 0.12664420128037782, - 0.10335751517981265, - 0.10504220775498894, - 0.12176854301321387, - 0.12481392408876776, - 0.11642136115411145, - 0.10771959370757665, - 0.10725691587415652, - 0.10783493311616198, - 0.08475531432856401, - 0.13949672830895912, - 0.1062098159580759, - 0.1280556015076833, - 0.09891773780327211, - 0.0928792028509366, - 0.09527766510060356, - 0.11999934132294318, - 0.11622746644021381, - 0.1039216553105697, - 0.11672327644994596, - 0.13405987206257833, - 0.10255998672860285, - 0.10729458426368658, - 0.12270490741137571, - 0.11092376419111487, - 0.11212052018312402, - 0.1586870059755137, - 0.12837612620051314, - 0.1109070564618603, - 0.11172349297083364, - 0.11419294262211158, - 0.07693619380923722, - 0.12289779449456167, - 0.11246400964942979, - 0.1163518053409757, - 0.09786533118671592, - 0.0976878793152625, - 0.1198955307784465, - 0.1195350414712064, - 0.09765962967602107, - 0.1271618239959155, - 0.09844410330970288, - 0.10372192877486214, - 0.10839836633435244, - 0.12491379724909688, - 0.10119597438585423, - 0.0892383740988926, - 0.08919992917042122, - 0.11125781485048898, - 0.10302400319122176, - 0.1157686773575767, - 0.14362635385058048, - 0.10662584971818019, - 0.14432573087989378, - 0.17491249707932513, - 0.1095915087897665, - 0.10181869220788059, - 0.10003117734525126, - 0.09267909106143855, - 0.10094111418242184, - 0.08567444116286968, - 0.13805139624428286, - 0.10483398570080711, - 0.09030754512219034, - 0.10904280298519005, - 0.15133940283380504, - 0.10488625716288215, - 0.11049242328921231, - 0.09611868078716311, - 0.1540523975452653, - 0.1152287208977254, - 0.135221493160919, - 0.12789502175598694, - 0.11736368225401986, - 0.09571775908517875, - 0.12139351888573696, - 0.1120501275878941, - 0.08397355983550372, - 0.1197059532124798, - 0.11872773479030095, - 0.09094669048453352, - 0.10650032117107808, - 0.14847735529224146, - 0.12621629509593113, - 0.11072725526182609, - 0.10816476578555145, - 0.11145096804107184, - 0.09322326231522028, - 0.10208024313197224, - 0.10447011078552122, - 0.11407444180142216, - 0.1111898338871953, - 0.09904901684214043, - 0.12889625585512002, - 0.12250465055398209, - 0.11227438943859035, - 0.08882775984885023, - 0.1349722924273407, - 0.13351962025832143, - 0.08320615399352085, - 0.10164312789623633, - 0.11203503076081113, - 0.1157109536090055, - 0.09764567813572039, - 0.11195639027749359, - 0.11571939921050832, - 0.11252075499593744, - 0.09815142004913893, - 0.20570101742227576, - 0.12878678316267725, - 0.14501166106121852, - 0.12870955177387208, - 0.11580957996640007, - 0.11531137360419315, - 0.10531180171761043, - 0.10171800853753292, - 0.10740244384501177, - 0.08727831987381797, - 0.11516692026287534, - 0.11196129369943682, - 0.11257091041797256, - 0.11776925826098403, - 0.11268998406989451, - 0.127675191532098, - 0.131335862912479, - 0.09194597663852203, - 0.130138426003643, - 0.1256309088431144, - 0.10089172549712731, - 0.09177654145774791, - 0.09798381096044916, - 0.1280489879597341, - 0.12371142884032198, - 0.10173075455909772, - 0.10761720721543909, - 0.1107899954569726, - 0.10129085806806674, - 0.11868101133930267, - 0.12365160696189699, - 0.14900242068577374, - 0.10423980691917488, - 0.14883781543660254, - 0.13853633743859825, - 0.10360777755888585, - 0.10230141641096423, - 0.10857589466796996, - 0.13716224158952936, - 0.10356652362193568, - 0.11591953188750875, - 0.10328136669926807, - 0.1037719873547672, - 0.09901556475819794, - 0.12713950668024276, - 0.12788966975733532, - 0.10902290737201488, - 0.10924888750128751, - 0.09277447166664123, - 0.09936967497189103, - 0.12791760405234978, - 0.08921051464691233, - 0.0907888672819167, - 0.10555913957525842, - 0.11687428319630942, - 0.11519053523055718, - 0.1397328945708891, - 0.12768706174060218, - 0.1295614482918309, - 0.10612375190524029, - 0.11785255908715841, - 0.14887068667580933, - 0.11368036434993038, - 0.12559901459960546, - 0.1030336525478611, - 0.10613166238615113, - 0.12499958421638774, - 0.10640767615124459, - 0.10474416222731414, - 0.10963930144526453, - 0.12645054111893445, - 0.12797523481682824, - 0.09497375627247666, - 0.11737739599929516, - 0.11400867818587702, - 0.09942398190160759, - 0.11228959203286795, - 0.11533243841855946, - 0.12274912069334867, - 0.11656004576900497, - 0.13072644988342583, - 0.09332063339298931, - 0.1400184317228359, - 0.0934588157022023, - 0.14429199061867015, - 0.12809387191311042, - 0.12208952499410049, - 0.13070579282064362, - 0.11206248816666253, - 0.10993609259451116, - 0.11697585313934969, - 0.1160936383932534, - 0.11648710015054028, - 0.11127770233532537, - 0.10904411997471784, - 0.10262668869631524, - 0.13836554256977285, - 0.09297685106991325, - 0.10620896799649765, - 0.09102617797616527, - 0.1347967727892822, - 0.13595609770296577, - 0.12255698755725823, - 0.1322133133135231, - 0.11985636026591497, - 0.109135732263824, - 0.09902185468619282, - 0.10817079057560483, - 0.10975015056938617, - 0.12891623043806005, - 0.08684859233366948, - 0.11728241620140142, - 0.08766300705431224, - 0.11328069058381601, - 0.1204922005660577, - 0.11463670158244063, - 0.10737577031775615, - 0.14258798240946788, - 0.09277904014044716, - 0.12156143955966477, - 0.10137382317203977, - 0.11184265266182898, - 0.13211075847107706, - 0.10152746627183512, - 0.12499771931612154, - 0.1426811720660384, - 0.09144475103247841, - 0.09578324298826281, - 0.1205074225154566, - 0.1305219914254538, - 0.07924039706055054, - 0.1113640737361384, - 0.10252762678644317, - 0.07393272244990358, - 0.10171386950161143, - 0.0919451701688354, - 0.10491685590272358, - 0.09462516703553725, - 0.15987543939340065, - 0.0926099094426389, - 0.10935986373502936, - 0.1418493019066413, - 0.1397190150206972, - 0.11824175343691376, - 0.12758948851172125, - 0.1158794393555612, - 0.12913551587250868, - 0.10041862125671086, - 0.0921125574145067, - 0.12614025749211794, - 0.09696745043646979, - 0.10577351092491068, - 0.11476679063608848, - 0.11805327958700047, - 0.1523665913842855, - 0.11537960451863839, - 0.12015852277044747, - 0.10253226402774251, - 0.10340417422738922, - 0.12970379013690403, - 0.14741476586777863, - 0.08320768436883356, - 0.09957555791720045, - 0.10700459947432685, - 0.10350716363854785, - 0.13006799231866176, - 0.10487010389872024, - 0.09985172838837858, - 0.09576891066366022, - 0.10470797599256972, - 0.136243010346231, - 0.07744160887394132, - 0.12304790508718896, - 0.13134619098515446, - 0.10494365138391336, - 0.09154222811715726, - 0.0998998821342874, - 0.06987896672954388, - 0.10311695494812652, - 0.08764738064248415, - 0.10686672267273888, - 0.11463525423318165, - 0.12340250502430061, - 0.1126033395499685, - 0.0992032445482963, - 0.13277214814779004, - 0.11701477419545968, - 0.10946509029200835, - 0.11236160356018872, - 0.11344979052417391, - 0.08217870506010495, - 0.12474860610651897, - 0.1067636609414208, - 0.1006793832510782, - 0.13000257706011603, - 0.10654673358471627, - 0.09576042089275509, - 0.08866156357463678, - 0.12098051191986116, - 0.10908307646506551, - 0.09432353902807411, - 0.09326617152532228, - 0.1076962713793914, - 0.09939183482602378, - 0.09439736064430715, - 0.13024227602403285, - 0.09922746384285218, - 0.09889993101712286, - 0.10409334512957588, - 0.09373040240475132, - 0.13152452724233252, - 0.134702118391588, - 0.1386310281356789, - 0.10786524827209365, - 0.09745147871574754, - 0.11124889814761678, - 0.1166388663001898, - 0.14084581599595433, - 0.149257869483863, - 0.12270950203950724, - 0.09842596370846027, - 0.11199640306618115, - 0.10765640060447504, - 0.08915872386148607, - 0.08983249809619885, - 0.10298454365224212, - 0.09813056769520666, - 0.10950263009091897, - 0.11995056877686708, - 0.111347610228836, - 0.11025119045304112, - 0.11836939185202255, - 0.15537991391858866, - 0.12641501828243717, - 0.11518701647868985, - 0.14151192500667592, - 0.0986921845329426, - 0.11235333797563074, - 0.1169571720025397, - 0.09971325323899075, - 0.11729932168954192, - 0.12437222793696871, - 0.1154339384319266, - 0.13144392906096403, - 0.08369401554736539, - 0.10083554810487902, - 0.13588328792630988, - 0.1174001023025675, - 0.11227347073539938, - 0.13624954348813928, - 0.10969440824544671, - 0.10921322899066739, - 0.10824024255329998, - 0.1287608446202014, - 0.12353090336444722, - 0.13195940164927084, - 0.13594748994763972, - 0.11041213901055436, - 0.11328653150587986, - 0.10798120500255719, - 0.1288884466294989, - 0.1324207030482782, - 0.1076596294746599, - 0.12085817507326424, - 0.10847727487074464, - 0.12676724981137588, - 0.1525156164559577, - 0.1331366207457066, - 0.12528416214668273, - 0.10954909332750101, - 0.10173380634524054, - 0.10952814565129654, - 0.11579060227414889, - 0.11074106389839235, - 0.11432857212116249, - 0.1031724612788839, - 0.10273351286483155, - 0.12273275521629966, - 0.12443239118145336, - 0.12045961887998988, - 0.11727219645898479, - 0.12427962488432369, - 0.1058621749688009, - 0.14131569224721385, - 0.10162712872142204, - 0.123574362617241, - 0.12013407644020715, - 0.10694777640641377, - 0.1454004119304638, - 0.12405561066699868, - 0.10218058646948873, - 0.10603182124723565, - 0.10207566522720847, - 0.09063988236936919, - 0.10926946206657356, - 0.10733313824796384, - 0.08899763138826862, - 0.10962718644021394, - 0.11612322415859735, - 0.11699617603508308, - 0.08970179910761265, - 0.09131488504863608, - 0.10766129307384793, - 0.11450874350497502, - 0.12222137559955383, - 0.11055566606456965, - 0.12166082175066593, - 0.11456034736603375, - 0.11260409159310228, - 0.10955691401191012, - 0.12023173396128783, - 0.13750837650675812, - 0.14346382456656415, - 0.11832543858524085, - 0.10538705781832641, - 0.18184268196842152, - 0.11081950127601756, - 0.0752239115394271, - 0.12923058298488385, - 0.10486821197185114, - 0.10478543135263019, - 0.12416916339015548, - 0.11128094245904684, - 0.11869269872255254, - 0.11199056172212116, - 0.13705460316162843, - 0.11158119374376216, - 0.129022464855887, - 0.10546711525583595, - 0.11437927512587588, - 0.13395361287529053, - 0.11156913510109107, - 0.11271139822294533, - 0.11859480380029741, - 0.10654624593031148, - 0.08901715237122948, - 0.08576377379676864, - 0.08906119288349365, - 0.10889055710345952, - 0.11661231193613047, - 0.11099925781172004, - 0.12021476501607724, - 0.1032705754075785, - 0.11670890416913177, - 0.10058420328154347, - 0.09522043505802445, - 0.07948804174804257, - 0.13079194055000423, - 0.08523688957784123, - 0.10469591714787807, - 0.1021784927348976, - 0.13071395866546054, - 0.11305883177698985, - 0.13965403958642625, - 0.15235339592903757, - 0.1528531465180056, - 0.10636200385221765, - 0.11288552439636426, - 0.13209393977957093, - 0.12532562231235292, - 0.1017711793185907, - 0.11197448036094396, - 0.1377876633972704, - 0.11501548279040877, - 0.11556646086518312, - 0.12384929690572467, - 0.12016790659931659, - 0.13110584368756664, - 0.10076256448461846, - 0.11427016421939364, - 0.10602456008634285, - 0.10808466074433709, - 0.123101010499332, - 0.11297166819249627, - 0.14660036591826572, - 0.13166702219751314, - 0.10774115129831639, - 0.08766500499531168, - 0.1271688849425189, - 0.11033228095818162, - 0.12001535861540628, - 0.15254783300407632, - 0.15726118419011703, - 0.12850374544894058, - 0.12704111844276036, - 0.1451784881122515, - 0.10931152949830715, - 0.09492560582809974, - 0.11061507729669816, - 0.11438223589979335, - 0.10310835188635854, - 0.11040012619186447, - 0.11889063744987022, - 0.12017262607289655, - 0.09887869549342905, - 0.10500721739275089, - 0.09412538524704893, - 0.10743389568347346, - 0.1091080587152491, - 0.10633748660625358, - 0.10822393613006642, - 0.08506791472271115, - 0.12275160057215781, - 0.12660362306816547, - 0.10793275060068581, - 0.10036946814713292, - 0.09065823243529365, - 0.1099235025682142, - 0.13704476310249017, - 0.1053078407992593, - 0.1268643000124632, - 0.11287477032945746, - 0.11462911131959432, - 0.11100279482261222, - 0.12365017340902013, - 0.1135188136177103, - 0.09927362314553413, - 0.07063149082095684, - 0.11063419178391166, - 0.10702215769867837, - 0.10187027087886373, - 0.09702269303750259, - 0.1235720287695932, - 0.11050002041678493, - 0.14492660100552746, - 0.09835772931825579, - 0.12969210113376897, - 0.08042916251289828, - 0.09933018293890056, - 0.13312591406978577, - 0.13391049515273892, - 0.10527615993835464, - 0.12137238295937836, - 0.09513568147483653, - 0.11216283427044753, - 0.10411367894098637, - 0.1412950637229987, - 0.12580651137628318, - 0.1252311049084829, - 0.09773744333735096, - 0.10352734760344057, - 0.128957770455591, - 0.11230999745422122, - 0.1097261666897043, - 0.13006503069888045, - 0.12542584712595153, - 0.0858527251597736, - 0.11566143404702914, - 0.12665635141691065, - 0.07970385996733295, - 0.08335509091574975, - 0.11466154575279826, - 0.13395484790724135, - 0.11677292913751848, - 0.1112525328691467, - 0.09442771630556737, - 0.1404571351411344, - 0.10973625267618786, - 0.11663686030490371, - 0.11150722044046475, - 0.1258894438770745, - 0.10070207287189141, - 0.10408337023784678, - 0.11762183735943563, - 0.10108447660438485, - 0.09933187238942202, - 0.09627481729489115, - 0.09626695697586689, - 0.09388234578476515, - 0.10684812459648901, - 0.0975062813544299, - 0.09225658578732898, - 0.12548318395513558, - 0.0844269822965979, - 0.09823036965564799, - 0.09239042882862707, - 0.0981251534977741, - 0.0886676936446787, - 0.11654497671967573, - 0.09099663913788628, - 0.11277222005611585, - 0.10775528253834488, - 0.10409898759986545, - 0.09015430307786873, - 0.09801813562563205, - 0.11392279305576318, - 0.07571352168475123, - 0.09996237224244511, - 0.11499990092950149, - 0.11132679724227, - 0.11818137300919218, - 0.11696766798257048, - 0.0981827299643267, - 0.11001296839506491, - 0.10182928682908242, - 0.09216632837713307, - 0.10557919970444328, - 0.09698831235983585, - 0.14276141794692232, - 0.12212317695502656, - 0.10900744871412148, - 0.1051513977977385, - 0.12663615973540854, - 0.10350995084678041, - 0.09144637804926874, - 0.13177392922328893, - 0.12658110410730666, - 0.10779276350614533, - 0.09797885492547968, - 0.12630756903545384, - 0.11757537262817565, - 0.11688867179707739, - 0.10979932790529734, - 0.11336188374846409, - 0.1320442333765749, - 0.12416340357541635, - 0.13337241725077414, - 0.10634742630936204, - 0.10939674856751501, - 0.1021514007940311, - 0.10092743360269135, - 0.13256200589285638, - 0.11955108802132025, - 0.13731836681222373, - 0.10005294504644739, - 0.12233663352384917, - 0.09585094794854557, - 0.10383189899457679, - 0.1171546126575045, - 0.09317199059025147, - 0.11722078005756285, - 0.13199824539779703, - 0.15605532292542268, - 0.12966467063223258, - 0.11362950331300864, - 0.11730809803235366, - 0.10781132028478835, - 0.08890492472182013, - 0.13372930401005204, - 0.11423067510864504, - 0.07704271750521621, - 0.1221283208734647, - 0.11981139780680063, - 0.12436904747770255, - 0.09759683262196667, - 0.09535419999786361, - 0.11237363793193599, - 0.08208840076530786, - 0.13344886702512032, - 0.11624174630455422, - 0.1010587377260286, - 0.12105181073000018, - 0.13918372731716908, - 0.10948044246629127, - 0.11857425371318395, - 0.11414499226379614, - 0.09672535474035812, - 0.1008287285842857, - 0.12088143321050873, - 0.11865610827129386, - 0.09158911503886603, - 0.10053826843326065, - 0.11159121065336879, - 0.08700714599190387, - 0.11228704727964318, - 0.13511869744020963, - 0.111152884359621, - 0.10542317516945536, - 0.13300819895670435, - 0.12844827135231196, - 0.08402929476609552, - 0.08614602662318574, - 0.12348262671568529, - 0.08696003277126667, - 0.12614543548177146, - 0.0942274947115354, - 0.10796982469065475, - 0.12613272829435504, - 0.10753620557093113, - 0.14603106539564437, - 0.1430371655724716, - 0.11104172966415161, - 0.11132046736328892, - 0.11144461308155504, - 0.11220562175780716, - 0.0925118318950714, - 0.11528195451352427, - 0.13096842455282914, - 0.1158758698241022, - 0.12913839141930783, - 0.13179726765521127, - 0.09913254980755075, - 0.10447088325647341, - 0.11861655395769925, - 0.13102265669664345, - 0.08675969091855538, - 0.12349648060221907, - 0.11266475559190474, - 0.11187657295982477, - 0.11256295081126352, - 0.096596589182752, - 0.15874579209137676, - 0.08819103401372748, - 0.11820177678058938, - 0.10267782905704811, - 0.18090788653056314, - 0.1531885052620999, - 0.13823605350205195, - 0.18754370722451302, - 0.10170704265098815, - 0.12602511184227516, - 0.09900548641031985, - 0.11456006434501585, - 0.13064942543887045, - 0.11787309966704443, - 0.09104813985444464, - 0.0938590507643756, - 0.11878020227751651, - 0.10612952678273567, - 0.1338921614592092, - 0.1406872586335142, - 0.11726016286023747, - 0.1097044935504469, - 0.08551921449571252, - 0.10511068935880113, - 0.09740850085197852, - 0.10301761124900281, - 0.11678398252321141, - 0.10271787754953933, - 0.11968830573985621, - 0.11836271375014842, - 0.09717922548542814, - 0.12153609964741122, - 0.10166719422247342, - 0.12229524788992559, - 0.1204251614510416, - 0.1095751353714955, - 0.13462092941593481, - 0.12379996626504058, - 0.10485777498031354, - 0.10707230046896792, - 0.11533492393439203, - 0.10286446913511486, - 0.12566229236998272, - 0.1266419436050498, - 0.11990990038313692, - 0.09887998282885394, - 0.09494530076331761, - 0.13650173312222694, - 0.1628585630020621, - 0.09613203685765902, - 0.07619236575480498, - 0.10217116758288157, - 0.1249821011868058, - 0.1013642007569843, - 0.12605129895251974, - 0.11404258681754591, - 0.11472096550004932, - 0.13261385411296558, - 0.10516310974018675, - 0.09145978222295102, - 0.11643909434893504, - 0.08948850854636617, - 0.13836439617539403, - 0.10110831774990195, - 0.13207671603798948, - 0.1242800831682992, - 0.129259794880564, - 0.10923694870987989, - 0.0931006207398667, - 0.12099463503672253, - 0.09449891998449136, - 0.13922979043485664, - 0.09855587099566533, - 0.1025499634054648, - 0.12775205906555617, - 0.13074088735357567, - 0.11284952909928314, - 0.1196054421918368, - 0.1167205067042091, - 0.09075196799914816, - 0.13202695093347253, - 0.11828359758722574, - 0.09564475527811205, - 0.1241310325614398, - 0.12824314909522636, - 0.10108251777559862, - 0.1251553390258921, - 0.09896104231900656, - 0.11758586395539565, - 0.09936259438054046, - 0.0997872645694563, - 0.12007381315559772, - 0.12004272416709179, - 0.10508548481644561, - 0.10882652941514828, - 0.10661327075212357, - 0.10697775196689241, - 0.10525108591791174, - 0.10048013783826426, - 0.11886603961558215, - 0.0887340455489744, - 0.12259577361654461, - 0.09010374345926585, - 0.08493020221668142, - 0.1071576177480745, - 0.10544801360755399, - 0.12058190055010816, - 0.10646357590516019, - 0.11236835076516864, - 0.1020830568955498, - 0.11170206507985375, - 0.08415739561014554, - 0.09632144537706248, - 0.10229093440378989, - 0.13367321534384152, - 0.12597648731350314, - 0.15776694901799698, - 0.10938355257451081, - 0.10894308292008151, - 0.08868856868751851, - 0.08264501410456056, - 0.1030297261211778, - 0.14371941170671185, - 0.11616777708202985, - 0.15536679864502384, - 0.10874372062609525, - 0.11309439124267162, - 0.1452649491553114, - 0.08258506217263928, - 0.11025376225120687, - 0.08318910232768041, - 0.11851938710151334, - 0.1257188867752418, - 0.11376852590983011, - 0.12390364926140342, - 0.14732927726497796, - 0.1248276883585917, - 0.11830923181042875, - 0.1524167747061945, - 0.0930556477069722, - 0.09872506615404839, - 0.08511857248290247, - 0.10960185681086819, - 0.10909660059572267, - 0.09634662603548386, - 0.1273787676433076, - 0.11699729599729805, - 0.0949631212139996, - 0.08217076096703585, - 0.11998271723031781, - 0.1261922014121578, - 0.13952655723719593, - 0.1234106429859545, - 0.10692216935778581, - 0.13049443007578546, - 0.10638644723011301, - 0.09997514878668384, - 0.09410257019475199, - 0.13224288383853372, - 0.11632405273969934, - 0.10233150422419067, - 0.13514912777482332, - 0.09597047335864148, - 0.10351814995257622, - 0.10762123364418733, - 0.09380390567045409, - 0.10236207105798834, - 0.11202602499523676, - 0.11488080059823792, - 0.11170552447882932, - 0.14731157614136323, - 0.10389687771909864, - 0.11605524702314775, - 0.15502836203749037, - 0.13580406064364964, - 0.1085429472255151, - 0.10004621764037101, - 0.1115904554672671, - 0.12489571563339937, - 0.10435101157717562, - 0.11598710548883004, - 0.10321114869245342, - 0.12100806755791273, - 0.10411249651102308, - 0.11504347771738045, - 0.13310544967536714, - 0.12298434538283701, - 0.11287992600004323, - 0.09545351562853571, - 0.11164050033974281, - 0.11770587737059114, - 0.11843321331175463, - 0.09196806227802685, - 0.11044582886382714, - 0.10689265188344751, - 0.08623285624624753, - 0.12213708071760154, - 0.10217911249585714, - 0.1133323207388037, - 0.106780788470121, - 0.11198755625714736, - 0.08779864595697541, - 0.12791246080405644, - 0.11039687601602972, - 0.12419274720444007, - 0.08708130333962112, - 0.12819256048974575, - 0.10628842763628663, - 0.13802018855460782, - 0.11526242362311968, - 0.14255026882412114, - 0.12480052378335037, - 0.10827620797491148, - 0.12812846174790157, - 0.1020851019432721, - 0.11583140239727978, - 0.1070571076068475, - 0.154878692464917, - 0.12436464005401261, - 0.11291071507422427, - 0.09684415625138677, - 0.1061398555320227, - 0.11098829381404106, - 0.13689340449197174, - 0.10493112086161331, - 0.1144256231174106, - 0.1347460004243068, - 0.11752109173953708, - 0.09711540409139637, - 0.13321483022632674, - 0.1070424793645134, - 0.11679811021625285, - 0.10007824798765286, - 0.13237982394913703, - 0.13461897049277918, - 0.11344732733777282, - 0.09384913719153247, - 0.07331861448009572, - 0.11229407318928317, - 0.13328896314258054, - 0.13075111284312885, - 0.13172978173826927, - 0.10351434050666336, - 0.08791603205909887, - 0.10477054628360066, - 0.14876179522979885, - 0.109235000074231, - 0.12236921251362759, - 0.11173945329323634, - 0.10319337774593977, - 0.1217077997208145, - 0.09871482095349038, - 0.08893911506551702, - 0.0991152776168469, - 0.11849890448043927, - 0.10625068727229538, - 0.10875512454324743, - 0.13759004329741573, - 0.1240477468492056, - 0.08713650665523058, - 0.14070924072290827, - 0.10585778786557669, - 0.12402633099562754, - 0.12642452371039078, - 0.11704224597957331, - 0.12338812952601433, - 0.09946940576236343, - 0.10639514989064262, - 0.10290426069323558, - 0.11606322789161734, - 0.11314059631917793, - 0.1214628169166096, - 0.11919477399856429, - 0.1021984630283632, - 0.11599199029451555, - 0.08874337721540027, - 0.10338222801187419, - 0.10700392239558713, - 0.11912444613394828, - 0.10680917701658253, - 0.10119388456808757, - 0.11517881381639049, - 0.09648115908085401, - 0.100788530879617, - 0.11904454209885694, - 0.11631151274151659, - 0.1310956296950034 - ] - }, - { - "legendgroup": "Beam sensor 2", - "marker": { - "color": "rgb(248, 156, 116)" - }, - "name": "Beam sensor 2", - "type": "box", - "y": [ - 0.11313492952085046, - 0.11763287200147528, - 0.11353139253646201, - 0.08038215292012159, - 0.10001272102144257, - 0.09441508932786528, - 0.0774220267581756, - 0.11460683355311105, - 0.08799568630790144, - 0.07587828381054813, - 0.08529581667003563, - 0.11869668631862515, - 0.0800745517513744, - 0.08055188211420548, - 0.09619397450279307, - 0.09553568492553156, - 0.1054332553937093, - 0.09401937430408834, - 0.10135239667254309, - 0.09296269209832243, - 0.10945109852777234, - 0.08415760062862823, - 0.08996570782474046, - 0.12173797827747858, - 0.11383112902976161, - 0.11322840742922229, - 0.09575698512791599, - 0.09147280625839822, - 0.07795612681065198, - 0.10184924313801204, - 0.08741308347314347, - 0.09755469566159862, - 0.08514441570881666, - 0.09419395639371744, - 0.0826333410228614, - 0.09308500411575255, - 0.09744077864272793, - 0.09728624693158866, - 0.10668197146971842, - 0.076865678797211, - 0.06881408071588067, - 0.09260571006911528, - 0.08909876311892985, - 0.12380474450794575, - 0.09457988083083368, - 0.10966725311627494, - 0.0979249406336613, - 0.09201356844159862, - 0.09322261897743418, - 0.08026643532788427, - 0.08679084106917509, - 0.0699260107146297, - 0.09358327108642289, - 0.08838239785224755, - 0.09041579473379127, - 0.15474056954119922, - 0.10022466172566048, - 0.09960524024150628, - 0.10303164133548373, - 0.10876131659321016, - 0.10352738663028754, - 0.08845432490099825, - 0.08362514383818419, - 0.08448149723423101, - 0.09074335672056932, - 0.07754222345705923, - 0.1210035808136213, - 0.09476280531989795, - 0.10126303971759607, - 0.06847757100164711, - 0.09423942452175194, - 0.10071684369535848, - 0.10515106457165763, - 0.08931949517234007, - 0.09681234599719421, - 0.0975769244752376, - 0.07953622417018927, - 0.08918257341970359, - 0.08103965280177022, - 0.08764661601498006, - 0.09311765400202501, - 0.09277728872505264, - 0.07202908807955391, - 0.08959648345008785, - 0.09609123642926723, - 0.11787872800382096, - 0.09999796558481708, - 0.09678235254155138, - 0.08552295486999605, - 0.09558476139771192, - 0.09227771106076262, - 0.12014243029631844, - 0.12053415583854432, - 0.08299908248417778, - 0.12617381298616465, - 0.08713580384704817, - 0.10768920707150513, - 0.08362824415822129, - 0.07868887126203787, - 0.08096619569657991, - 0.08440899066001491, - 0.10369569341611913, - 0.08764353086900202, - 0.07127750946657063, - 0.08146150538583656, - 0.08124724984884392, - 0.10359707918775818, - 0.0890901777830174, - 0.06895712367907737, - 0.11037379858148706, - 0.08706128450744878, - 0.08692185788933234, - 0.07778359394421727, - 0.09030568028994063, - 0.10492806749852397, - 0.0882981880469197, - 0.09599759928309759, - 0.08623690279334476, - 0.10003786000900897, - 0.09586603519698869, - 0.08413771926644371, - 0.09777846774536036, - 0.06830303610452702, - 0.08447570434326217, - 0.08463886007471012, - 0.09817954559897715, - 0.08348062862177782, - 0.0878371538682367, - 0.13013071799666212, - 0.09816420626861994, - 0.08148179002867639, - 0.08438117036610782, - 0.10361999153295187, - 0.07522875780806901, - 0.07798275152868155, - 0.09521878847881997, - 0.09870464432710764, - 0.08263125319861828, - 0.0966039659179742, - 0.08630464979892558, - 0.10711295715429643, - 0.08181583919329465, - 0.08019064946309959, - 0.07283386496173545, - 0.0900739299856676, - 0.08692779789412773, - 0.09303131212742927, - 0.10310464880678938, - 0.0990985186379144, - 0.07715594717174426, - 0.10112419504784853, - 0.111481807046568, - 0.09073528916703183, - 0.09083872926714227, - 0.10621153216948223, - 0.07410760085335212, - 0.07454364626184845, - 0.09457113965981244, - 0.09911922638534282, - 0.09463214999251841, - 0.08281471124077354, - 0.1097029530341799, - 0.09839370503288754, - 0.11994987351614958, - 0.08318306255109453, - 0.10031399008577858, - 0.10819462100515397, - 0.09682258669842025, - 0.09498126775447137, - 0.1147239938556925, - 0.10743924207590907, - 0.08755161104153579, - 0.11665274977602486, - 0.10246563785545584, - 0.10378084870586606, - 0.0827780458893676, - 0.0755974167108254, - 0.11823149471376744, - 0.08655922043238895, - 0.08939389399909635, - 0.1179598657784296, - 0.09848782490786276, - 0.08704590450635925, - 0.10409348006614673, - 0.09900382119667422, - 0.12348290051703521, - 0.13063192746401758, - 0.13954271789438355, - 0.11365999653023129, - 0.11050640845498988, - 0.09621145943961146, - 0.09943689412160166, - 0.10933899633633336, - 0.10979920575328579, - 0.08526545150674435, - 0.11057774186260866, - 0.09516317564673647, - 0.10946336810882717, - 0.07632976477318744, - 0.0947535727302625, - 0.07624429376846495, - 0.06783094416124494, - 0.08249160356605775, - 0.0844694919725723, - 0.07336869855874727, - 0.09418980575120804, - 0.09312857218591936, - 0.07446128003693848, - 0.06734569249911598, - 0.07760228989074623, - 0.08583730126474814, - 0.10086927985553976, - 0.08932942618006036, - 0.06871571152021355, - 0.09360942481177476, - 0.07529910838138636, - 0.07717332151057275, - 0.10271295072298257, - 0.09140401577784622, - 0.08536722349866599, - 0.10750813868903453, - 0.10255906608016403, - 0.10632259979687705, - 0.08830752507144699, - 0.09381608780180178, - 0.07782546591234012, - 0.10985654166510299, - 0.07892329420903987, - 0.07848386707539107, - 0.12844483506053603, - 0.09731661971730667, - 0.084607024347371, - 0.09106868535319551, - 0.07537687565628003, - 0.09314711131159475, - 0.09035329690733705, - 0.13216855681729045, - 0.08425903381826447, - 0.07066936411352603, - 0.1095738931665996, - 0.07297309246505411, - 0.0918145278362487, - 0.08930713962811122, - 0.0899260632432089, - 0.09113566716251145, - 0.08717029781301008, - 0.08109800896920664, - 0.08749268465252584, - 0.12762099585380818, - 0.09256338847127678, - 0.0933946389744907, - 0.09723847088129052, - 0.09350482374078364, - 0.09555138034686828, - 0.11353128359389743, - 0.10216009493515464, - 0.11701087434690106, - 0.09342052991660765, - 0.07993906790483914, - 0.10384188785505678, - 0.0977334271561995, - 0.09024871630063877, - 0.09225199281430736, - 0.07870514096689854, - 0.10235525643473105, - 0.09520128012287321, - 0.11981252994070464, - 0.09850045855353685, - 0.08901494082139175, - 0.10174375584400486, - 0.08520002174458378, - 0.08121662121835424, - 0.12111849297335643, - 0.11758444434602516, - 0.10135790577634737, - 0.12679709692831273, - 0.08426986597202206, - 0.10294546808597885, - 0.10332799782369295, - 0.08840773498110414, - 0.10445380925981902, - 0.09202808355363723, - 0.08186052276049306, - 0.0867714928490498, - 0.08560907784928211, - 0.08663443228900483, - 0.08961414222000105, - 0.08184335773682015, - 0.10386054767794145, - 0.14800633786999226, - 0.100349745381839, - 0.07489230257067259, - 0.07618689744499595, - 0.08889415610741674, - 0.08345775664101385, - 0.10627469431169159, - 0.08868756539803958, - 0.07188428550809339, - 0.09398862032551025, - 0.10213786467635752, - 0.09970440066709263, - 0.075913251596586, - 0.07534020638808195, - 0.11700504364593983, - 0.08473866646000369, - 0.09125339296850055, - 0.11467989221444208, - 0.08034607702736388, - 0.10062520516389084, - 0.11288859252088611, - 0.07540737367479845, - 0.09574371087039413, - 0.1030119109561306, - 0.09841498382665345, - 0.09607484353924309, - 0.07409644364671866, - 0.10452663761178331, - 0.10666764803593681, - 0.11483957223684078, - 0.08961756138162746, - 0.08570919739535827, - 0.08819191392712265, - 0.11152339788298846, - 0.08873438544039111, - 0.09356875137749811, - 0.11015690470737848, - 0.1129869052038898, - 0.11560484893884797, - 0.09904297800109318, - 0.07509273052499281, - 0.1019754854632922, - 0.09702528380591054, - 0.12244397994993753, - 0.14114849610309924, - 0.08272374610965415, - 0.1204577055295511, - 0.08579560995554086, - 0.10491928662757433, - 0.09632924900949788, - 0.11242779036685946, - 0.10125594516648552, - 0.09098498458481778, - 0.09636952523702867, - 0.11050025077058999, - 0.08290425063807506, - 0.09337066882572749, - 0.11071535355385716, - 0.09702550856235004, - 0.08010643667556913, - 0.10000483850183749, - 0.10505998878537776, - 0.07847722856453808, - 0.12208117870123111, - 0.11091237742753779, - 0.08863769865943738, - 0.08509612373743475, - 0.08023602410835275, - 0.11259166132561187, - 0.10326542162195361, - 0.1048911788804514, - 0.0879381822807276, - 0.10217731651075262, - 0.13802922679055699, - 0.1064564296583161, - 0.0891218500160671, - 0.10123271754896603, - 0.08702780056163165, - 0.08941590562122814, - 0.09369997188773034, - 0.09380297390877831, - 0.10108426153294582, - 0.0816430804654138, - 0.08442651512823535, - 0.10627504126041595, - 0.07349802578832396, - 0.12746336108145423, - 0.07511466956182314, - 0.09745046098364687, - 0.08199405459246167, - 0.08008569649202962, - 0.09214165191345354, - 0.08587039923235748, - 0.08384571612457312, - 0.09498037273726663, - 0.1161463282650976, - 0.09510524943722824, - 0.12325939526095787, - 0.09917804699017696, - 0.07876856185428256, - 0.10491230290432267, - 0.09173704865487238, - 0.08363906420195347, - 0.10743218149297609, - 0.09455105778828099, - 0.09556665115201264, - 0.09112918223941305, - 0.08967282807253722, - 0.09189161150519172, - 0.11036117354007895, - 0.08913733825707693, - 0.09474164606837848, - 0.0766172519666671, - 0.08355890445445094, - 0.07817601825089504, - 0.08069951246338912, - 0.06948710578921832, - 0.07954598650244914, - 0.09046833010051636, - 0.09418413622750564, - 0.1357989475306721, - 0.0845411997505631, - 0.13712691671571456, - 0.077967481823479, - 0.08401105537481246, - 0.1162287035881292, - 0.08760705470968509, - 0.101337191053409, - 0.06809620195733196, - 0.11946278058530138, - 0.10875238463687943, - 0.09314004394322835, - 0.09657351449359344, - 0.09879812008257674, - 0.09069880352707756, - 0.08861502484988298, - 0.11138421662236643, - 0.09706118412461397, - 0.1248222366733231, - 0.12232621117691965, - 0.08554020145950988, - 0.07996361700142238, - 0.1004594275736309, - 0.1086127671948134, - 0.10392402573787728, - 0.11363210591849952, - 0.08670081953812749, - 0.07655899263466337, - 0.07588990548701705, - 0.09915725159899276, - 0.10241702276797023, - 0.08392217872137604, - 0.09642714306351288, - 0.11354525865556371, - 0.1428699691235424, - 0.08913563565032243, - 0.08920147745750906, - 0.09839367160611429, - 0.11495006914374846, - 0.0905185100343622, - 0.10228352888546426, - 0.07565305613881095, - 0.10364092271643723, - 0.10447750483670068, - 0.09617827548789941, - 0.09346454790069132, - 0.0807137364699321, - 0.1316181711858851, - 0.09983866067197136, - 0.10131072552611414, - 0.11006296443858439, - 0.10351338721570036, - 0.07504292512255953, - 0.081033440143574, - 0.09112372804956662, - 0.100097909342732, - 0.09426156663234676, - 0.089715912844174, - 0.12618334232310174, - 0.11434313501233186, - 0.12847301256163196, - 0.11347165030450093, - 0.10298758142237774, - 0.09367589171383316, - 0.09351230452669751, - 0.10867867569751154, - 0.09216799466157445, - 0.0722106634709455, - 0.09910970377341154, - 0.08910663370559116, - 0.08539902373048842, - 0.10879680246756517, - 0.09890681838268066, - 0.10652772097282151, - 0.0922688310165412, - 0.09996482701162461, - 0.0748345265055876, - 0.12076545183064, - 0.08777578489816776, - 0.09533813226142158, - 0.08438797090886795, - 0.10697278551614586, - 0.0996028400140008, - 0.0976072751878204, - 0.09362329269096155, - 0.08303433373458015, - 0.0942677008452181, - 0.10311574484955575, - 0.0932662671520798, - 0.08264038202330114, - 0.08596442991801292, - 0.08540395022831129, - 0.093426971627438, - 0.09901715464174939, - 0.11424313003500455, - 0.11210869207965365, - 0.10701200472160467, - 0.09443347553051909, - 0.07916876868365562, - 0.08992549421158125, - 0.0883559189646452, - 0.0730825600508379, - 0.08952159348143388, - 0.09930585731757502, - 0.09333845173133913, - 0.09340426324179436, - 0.10258428390652216, - 0.09162119560633243, - 0.10696943664525098, - 0.08030953736878127, - 0.08147850251829593, - 0.09732224874966092, - 0.09906566867598375, - 0.11361584998113633, - 0.10554587925608234, - 0.10280611751191453, - 0.07769079329915929, - 0.0853940191459267, - 0.08871546107240698, - 0.08927009206678704, - 0.0777547205707745, - 0.0855372696118034, - 0.10968079998385158, - 0.08303310909557915, - 0.0920553992298292, - 0.09105317429159575, - 0.08576182403933975, - 0.08920273464354579, - 0.11399680472443806, - 0.08839315669369018, - 0.10752959737839067, - 0.10271890938827721, - 0.09251956116359693, - 0.08141488971519516, - 0.1116989051717665, - 0.08761028601177102, - 0.10239367484992304, - 0.0863716243163143, - 0.0860722445550319, - 0.09414361276595618, - 0.08404732669755993, - 0.06925067706126595, - 0.0975812394721035, - 0.10533833599631638, - 0.09882188342491385, - 0.08803166773080644, - 0.1356876877477311, - 0.07398039837194431, - 0.08864365937300198, - 0.1135060705796887, - 0.09344485134956441, - 0.13568197269088647, - 0.08868493200882854, - 0.10493266829291695, - 0.12130362453140034, - 0.09669775363590358, - 0.10689047207733941, - 0.10737452029317411, - 0.08813932989814709, - 0.10576313023151425, - 0.08435352259944484, - 0.08022700507026087, - 0.08811591225558162, - 0.08343314077076013, - 0.09164181112582437, - 0.08953710123067483, - 0.10766485995416127, - 0.07947590393220968, - 0.08105920266050173, - 0.10866088663430652, - 0.08224288220066091, - 0.09400163315448093, - 0.08050303075051152, - 0.07078945558959687, - 0.08676356383696585, - 0.1118197595045804, - 0.11627228855709307, - 0.10469517278004065, - 0.10621169932433483, - 0.09104289949138848, - 0.0823185660091954, - 0.08447447367137796, - 0.09976293461316822, - 0.07673574695460866, - 0.09036648026955563, - 0.08712040538304999, - 0.09988044836190794, - 0.08615985661885199, - 0.09032464118421522, - 0.12766543897615856, - 0.07595141793608824, - 0.10626686769929589, - 0.09167468673358725, - 0.07582454221336953, - 0.09729988417327538, - 0.09384645991689587, - 0.10352170315140799, - 0.10279098080099569, - 0.07976323239015982, - 0.08926094285465096, - 0.10770678430277073, - 0.09505785438529188, - 0.08353712209889849, - 0.10296063074310714, - 0.10611806721693252, - 0.09499796687946692, - 0.13475127716795626, - 0.09815578631769734, - 0.08228358114410984, - 0.10418838801778064, - 0.1246450443181331, - 0.07923679412050855, - 0.09737682978314549, - 0.08923455495561344, - 0.07675937112570373, - 0.08734734827496543, - 0.09120593625197312, - 0.10763663737446218, - 0.11505756847988843, - 0.1016500881602618, - 0.08957697551501197, - 0.09148900871360578, - 0.08654549501932396, - 0.07526132230143871, - 0.10371210764302156, - 0.10408368507206492, - 0.08004743502936948, - 0.0967311764735147, - 0.09174235677909397, - 0.0794955384422656, - 0.1188065342545166, - 0.09519951138754681, - 0.09381314763774758, - 0.09686321650520678, - 0.08975368421943015, - 0.1070346431562038, - 0.12631842634484797, - 0.07113415162263159, - 0.13437248213223335, - 0.09608169019199501, - 0.09200801462709707, - 0.1034045344805861, - 0.0803474459557351, - 0.10398048241678715, - 0.07761821339254814, - 0.07961247547052859, - 0.0718436558993242, - 0.1011353121169446, - 0.09150496238046539, - 0.10029002868810653, - 0.06677310962068264, - 0.07859582094823073, - 0.11298589856893786, - 0.08598746711235648, - 0.0853633969018837, - 0.09542589082995849, - 0.0873857562737276, - 0.07929156028641952, - 0.08938721891786294, - 0.08802151331997479, - 0.1097236044523611, - 0.113056512444095, - 0.11199425675740117, - 0.09136758854112578, - 0.08590197282871656, - 0.09301371296995058, - 0.12221168376971016, - 0.09384539341196002, - 0.09861810306890888, - 0.10998409958676027, - 0.09013428380861636, - 0.11108387339301899, - 0.09356896338351091, - 0.12184083693029397, - 0.11920990481739505, - 0.0799933323995011, - 0.09125905822529867, - 0.10078359958174703, - 0.11176615080787189, - 0.07674821063682155, - 0.08684192678936702, - 0.07459517319517327, - 0.08851128365726436, - 0.07785298098495447, - 0.0770998785626849, - 0.07482211565430004, - 0.09855476352696349, - 0.07953305488632498, - 0.07293747123544561, - 0.08308532157715313, - 0.09817568952787768, - 0.11174372810954457, - 0.0739119888663454, - 0.07720816356115895, - 0.09773707556263848, - 0.08619517924729608, - 0.09119895642326221, - 0.09371375911200404, - 0.0876050964106606, - 0.08116479615963618, - 0.09007177417657675, - 0.08811189273422074, - 0.07597247657975284, - 0.13108452629688794, - 0.10864782619743986, - 0.09873985024034848, - 0.12465503626002451, - 0.10054891157909983, - 0.11409765882475881, - 0.09007710637984602, - 0.09891606223580147, - 0.0973789511235792, - 0.09262829870433778, - 0.09477112031937576, - 0.08223985575748897, - 0.1183783661330145, - 0.09570049816765194, - 0.09530303962592916, - 0.1015794507148158, - 0.07802368695128131, - 0.11773158021323601, - 0.11460775919591888, - 0.10506852994117416, - 0.10821849079872564, - 0.11258881970138535, - 0.08842413700792777, - 0.08840785878693597, - 0.10127985483930135, - 0.08997953340548319, - 0.08524982653448505, - 0.08640583043651681, - 0.08975745345095855, - 0.09390499705972005, - 0.09190497144746756, - 0.07062644949381114, - 0.06775411657598307, - 0.08770176599024838, - 0.08441986982633604, - 0.10762662857686363, - 0.07831733275463149, - 0.10155291762829338, - 0.10140691155109498, - 0.11245179269693714, - 0.09050697759252312, - 0.11144335189703646, - 0.0795327935695177, - 0.10434629565666553, - 0.10754337259915968, - 0.09308418125580858, - 0.11494528573387787, - 0.1173024410194487, - 0.0969607837677206, - 0.08933199530720855, - 0.09886468095026178, - 0.1102258051122236, - 0.09813722710255925, - 0.08531305813196866, - 0.08078773374528692, - 0.09928123048559394, - 0.11690923779396475, - 0.10511215981821433, - 0.08629168740508936, - 0.06718476251281194, - 0.06805794244979113, - 0.09049863078673094, - 0.09557834021146543, - 0.0994160140332266, - 0.10200456775221124, - 0.08107577615201567, - 0.09016402485380448, - 0.0940712318257249, - 0.0823324529725704, - 0.13860784003756343, - 0.07802006921180268, - 0.09082553176688163, - 0.0832461408967769, - 0.0796526264727093, - 0.09270570462898378, - 0.09178719353250225, - 0.10135492363790656, - 0.08274090878087777, - 0.11640039443305303, - 0.13384046153532014, - 0.08136528892283379, - 0.1085930473177809, - 0.11694506892781895, - 0.14495338586534565, - 0.07054600608208937, - 0.0803436142904836, - 0.09174054286628956, - 0.08778426207686517, - 0.08221194763439178, - 0.09325623527560975, - 0.0884848459443211, - 0.09946394096671422, - 0.08896404938118924, - 0.11897220444331465, - 0.08609038183625498, - 0.0687988834714255, - 0.08381681285347939, - 0.08292337459939195, - 0.09545033283931467, - 0.10582530418354127, - 0.10386582431380541, - 0.08886922436442475, - 0.10857212582039226, - 0.09869599497447622, - 0.08290537082314768, - 0.10433206163281274, - 0.08191055042093279, - 0.10182498431565433, - 0.09353451094997602, - 0.10516753942332825, - 0.06855081051330512, - 0.1272821988694099, - 0.10837676379982342, - 0.08411132058082518, - 0.0867243411514824, - 0.10123779992263368, - 0.0888479029362535, - 0.094425364272302, - 0.09471323271702496, - 0.09569730303034416, - 0.11683203856178474, - 0.09466439891373671, - 0.0977427217950273, - 0.11159359893821488, - 0.09145069235091813, - 0.09986265153725643, - 0.10907684514060144, - 0.08257428333207906, - 0.08062967109942944, - 0.07400438987186798, - 0.0745246389491492, - 0.09002442214515226, - 0.10146301481983735, - 0.10519157320317217, - 0.09035828331470237, - 0.1319452421768658, - 0.0863152830498207, - 0.0820836343478534, - 0.1190809198799753, - 0.08815462305769418, - 0.1060881198331129, - 0.09421525140996144, - 0.06739961682922818, - 0.10135566670962103, - 0.06870616653052139, - 0.08294951417717021, - 0.1183043848511017, - 0.10972204596822206, - 0.11687043707666185, - 0.08737193843425897, - 0.0874914505888494, - 0.11965938184879495, - 0.10911716209003905, - 0.11440653556648547, - 0.08643464004459388, - 0.07369082492711242, - 0.08650682213701079, - 0.08217449447283333, - 0.11679875417858936, - 0.10953424083801326, - 0.08363473995613593, - 0.09651634706575657, - 0.10045788009877354, - 0.08914751442504268, - 0.11420311581318675, - 0.09098059184655913, - 0.0845312860186022, - 0.07357952863050819, - 0.09977051726182753, - 0.10396203992615138, - 0.10304851322687796, - 0.10247490873167928, - 0.10880634584681886, - 0.10610480707947127, - 0.09235443142402215, - 0.08283063164295988, - 0.10370587535521181, - 0.08997457081542437, - 0.10313059646973004, - 0.08405334977063474, - 0.12266002405050568, - 0.07835496424246843, - 0.08111116503915013, - 0.09106275833314849, - 0.098170654052819, - 0.10142612478146959, - 0.11872596147652408, - 0.0920405771533404, - 0.09381404425609052, - 0.09008381916007174, - 0.1026417072900822, - 0.08640782570494089, - 0.08302648802389594, - 0.10617418232427885, - 0.09683960513627304, - 0.10388031183346329, - 0.09312281339005725, - 0.08586524182901605, - 0.10268423315649494, - 0.07916788273072961, - 0.10596946097149043, - 0.10249300617253983, - 0.09213989810214392, - 0.08412045866290276, - 0.11300592461230945, - 0.10193866375709272, - 0.07574496563363058, - 0.08040548737162194, - 0.09498802867169344, - 0.09050893170373217, - 0.09914341315879378, - 0.08833647859531231, - 0.12049176831449834, - 0.07333703803308927, - 0.142073977526147, - 0.08592641966436533, - 0.07492971480129423, - 0.07043625087661592, - 0.09087940401550838, - 0.11195583304389997, - 0.1041059847755295, - 0.10111187598970756, - 0.08539326925038536, - 0.07654634045073157, - 0.0858408060243488, - 0.08346266192702008, - 0.0781278191717651, - 0.12117742770433866, - 0.12589701980358342, - 0.08470806672268695, - 0.10770898119917476, - 0.07853284542241962, - 0.09003155038387484, - 0.10542338970927793, - 0.07918049103853664, - 0.09681408885425483, - 0.08054881255920514, - 0.09721789874855802, - 0.08858405297987279, - 0.09194560346201655, - 0.1027480718928353, - 0.0779266565377115, - 0.0725031880099607, - 0.08602388925502757, - 0.1354292002887289, - 0.0960718181760608, - 0.10392253529675126, - 0.10127033843360096, - 0.11567675457695735, - 0.0786475223811559, - 0.10048590086016412, - 0.11832081161531435, - 0.09546274559764568, - 0.07983127564640694, - 0.10996151938271397, - 0.10682834138308493, - 0.12564121413647333, - 0.10977648595546448, - 0.11616424464000538, - 0.07863029810053541, - 0.12448713246800183, - 0.09391997018554976, - 0.08021362219063795, - 0.08364530316266669, - 0.1239621253100239, - 0.08069414683570802, - 0.09624774437593552, - 0.09676283166141328, - 0.10518616402138595, - 0.12000690904777717, - 0.09166491651906071, - 0.10471628178559915, - 0.10546958913791613, - 0.07866562455453796, - 0.0945954378492341, - 0.15711253009392367, - 0.08384357045683619, - 0.09688943122887714, - 0.11617904303217592, - 0.09942518010430633, - 0.11827591429424213, - 0.07391775897666676, - 0.08838660884334615, - 0.10581186141954532, - 0.09715388033619728, - 0.07659443496801809, - 0.08065171104973315, - 0.07626448075533362 - ] - }, - { - "legendgroup": "Beam sensor 3", - "marker": { - "color": "rgb(220, 176, 242)" - }, - "name": "Beam sensor 3", - "type": "box", - "y": [ - 0.07751748312519968, - 0.07712150388539996, - 0.07364128316850381, - 0.07827984398985742, - 0.07729688358174301, - 0.08266691709427205, - 0.07623450680819624, - 0.10845649434026836, - 0.07468273645466726, - 0.06532061622896575, - 0.06510786797581845, - 0.07884628805932255, - 0.07661645381995802, - 0.0687205138453863, - 0.08333638787248901, - 0.09334640861077766, - 0.07471434840108993, - 0.06478209375204685, - 0.09797489039019369, - 0.09290401126575636, - 0.07033934018634086, - 0.08495252393798193, - 0.07718031857765165, - 0.06042871823700698, - 0.0845433523908893, - 0.08277940913292851, - 0.06960840999210666, - 0.07475483092812493, - 0.07005328500828165, - 0.09844005747265676, - 0.06606311466014923, - 0.10364196300903986, - 0.06151242418481321, - 0.0655348910071044, - 0.08256844105472023, - 0.080866955549301, - 0.07635956614440455, - 0.07001824827889737, - 0.0725483285587736, - 0.09193472338605313, - 0.08466480305219959, - 0.06948299866997815, - 0.07584394870609455, - 0.07510116413217256, - 0.07657631757032336, - 0.09147961256825997, - 0.07245394018770161, - 0.07395750504502133, - 0.0633127165228168, - 0.051735799585339845, - 0.0654764345944264, - 0.08912471868520659, - 0.08193690531394685, - 0.06545209962871107, - 0.07389003144543113, - 0.07842649086101945, - 0.05735599419132806, - 0.07250037813451511, - 0.06250940031469956, - 0.06697879261473785, - 0.0687230484762069, - 0.07613743510574705, - 0.06848059525446801, - 0.07779307626825135, - 0.06000848153326667, - 0.0585928466881431, - 0.07091329603915149, - 0.0783589544733735, - 0.08390735430111358, - 0.08940745603990052, - 0.061344878083299796, - 0.06357982936164723, - 0.07185875161250053, - 0.0832253500264142, - 0.07502412169642925, - 0.05817980124412841, - 0.08378203151929917, - 0.06826323437417443, - 0.0653007713230765, - 0.07237401648815796, - 0.06324239848605978, - 0.07235843592088428, - 0.08047461948473178, - 0.07656867519791317, - 0.09143046737199105, - 0.0786348600780941, - 0.07672985251538869, - 0.06835369947994822, - 0.06482358885666208, - 0.06863673844337825, - 0.11492981478358134, - 0.07596350801810774, - 0.07366599950149992, - 0.08396433838087299, - 0.0814260238293856, - 0.0664767601915552, - 0.053989458914480454, - 0.06541788884649839, - 0.08092476515285875, - 0.08575568139757357, - 0.06648211719190954, - 0.08399000202712044, - 0.09066332409380988, - 0.07609928666664324, - 0.07597723961905767, - 0.06125380639488999, - 0.06899908004527451, - 0.07080469036015785, - 0.08700546898477374, - 0.07339627315186652, - 0.06278862690679113, - 0.06863620833640241, - 0.06076712431253277, - 0.07976652294600416, - 0.06822295274410685, - 0.09259993022244194, - 0.06801015279188838, - 0.06826098258325179, - 0.06937033049428332, - 0.0636059622371129, - 0.05905465183888291, - 0.08051784091824957, - 0.07237717533256632, - 0.07207486735843724, - 0.085158182977065, - 0.06321511695671791, - 0.07434014517094309, - 0.0806169792705208, - 0.07208821111074365, - 0.07328920226251853, - 0.0811572818326265, - 0.058837877514241035, - 0.07537139465833118, - 0.0562788294196848, - 0.07735629816906768, - 0.06630612039898265, - 0.06976768313435042, - 0.09334663017530628, - 0.07547139069570129, - 0.09963571770178432, - 0.07062945469175767, - 0.1116728368899619, - 0.06539348794174181, - 0.07266709195096753, - 0.07667563087814479, - 0.05828691656320054, - 0.08107129690055952, - 0.07569570806453277, - 0.06926910321274032, - 0.06984422075311103, - 0.09943003159053491, - 0.0657278558914745, - 0.07151824773542943, - 0.0936185552345285, - 0.0736650808016547, - 0.08972897646885097, - 0.0855259963369905, - 0.06901313063583996, - 0.0795736751587697, - 0.07482763799699182, - 0.0607758316359524, - 0.068900244047033, - 0.11092988276912369, - 0.07983069342283372, - 0.0757725633898123, - 0.07553321662696809, - 0.06516096739789703, - 0.08620511735828326, - 0.06763132869884535, - 0.0662990831566689, - 0.07962305675461315, - 0.06914948938376005, - 0.05674383492931674, - 0.09451921697436848, - 0.06973452492819807, - 0.05892249214707327, - 0.06198104130776673, - 0.06339344055423134, - 0.05392251806492533, - 0.06713119117606643, - 0.05588907824309581, - 0.06854203222077453, - 0.07825363229970901, - 0.07894496845181403, - 0.0715676516790495, - 0.06330404748716909, - 0.07600714590100005, - 0.0887466677321905, - 0.07325182843674652, - 0.08846465972900769, - 0.06552635163589121, - 0.060842154298693295, - 0.06509446466667021, - 0.069046517992402, - 0.08978472035669713, - 0.08211664355012319, - 0.0878958458852633, - 0.06361675962843817, - 0.0621228124811801, - 0.0836628290514428, - 0.07116205471180748, - 0.07221664706613774, - 0.05507260299623585, - 0.06830037250839928, - 0.08634270543928074, - 0.07525013072933091, - 0.08079990223492128, - 0.08258180587071495, - 0.08553120117732496, - 0.0793392181356681, - 0.07477790718399871, - 0.060797950023518725, - 0.07340577930934301, - 0.05856499727173589, - 0.06831541650075323, - 0.10866515486627087, - 0.06785288670501562, - 0.09078914411429084, - 0.09313986686597202, - 0.0689666126671105, - 0.07190040303018408, - 0.06977919592662077, - 0.06506988704145562, - 0.07494235177043858, - 0.07710282232624208, - 0.06437014686254763, - 0.07087234535093348, - 0.07495849845364802, - 0.06489478896179708, - 0.0785092867363462, - 0.06789561480158911, - 0.06632008526721953, - 0.07195720376741284, - 0.0795359797663766, - 0.10884423657425286, - 0.07920267035286421, - 0.06818788617979175, - 0.07863935060422014, - 0.0915453838416947, - 0.06572002159611119, - 0.05990979901836317, - 0.11989056981680787, - 0.061970432967104756, - 0.06447455281711763, - 0.060080193781604924, - 0.07319486223030372, - 0.08614305808736367, - 0.06536976926781082, - 0.0734125841091539, - 0.07487318867375233, - 0.05070068309532709, - 0.07384862027626847, - 0.08547278885871618, - 0.06234696330318384, - 0.08233841420216338, - 0.07016660702586738, - 0.07518783369210144, - 0.07757278237108832, - 0.0656870997443197, - 0.0724070558491209, - 0.060675012269673784, - 0.0657265060974613, - 0.07477299918587152, - 0.09838664448724879, - 0.06858939199908055, - 0.06332383134794904, - 0.07575578722768833, - 0.07248188634682819, - 0.08484909353298734, - 0.06370777692437483, - 0.07441536828461356, - 0.08380612010501627, - 0.07258987766811444, - 0.06782352339719448, - 0.06005127832188951, - 0.08400620893284126, - 0.06429207728963633, - 0.07283129573544374, - 0.07831122253646777, - 0.06770576662334507, - 0.08071350295145839, - 0.06982247303063702, - 0.07892134299252351, - 0.06321777768125204, - 0.08399125475165484, - 0.07911036549326014, - 0.06185545403994192, - 0.07351811432914732, - 0.047027050380923405, - 0.07485506734309046, - 0.07672048278748901, - 0.0621463647678136, - 0.0709204439052935, - 0.07532195217652489, - 0.05693603049814394, - 0.07155391932457139, - 0.0912939687378338, - 0.0642684106174854, - 0.06820326789930302, - 0.08220879097720513, - 0.06900919651201752, - 0.07756408109158056, - 0.06670067834222398, - 0.09408359211329571, - 0.05853070204085365, - 0.05784004505030784, - 0.08431879891467742, - 0.06685212414156567, - 0.07509161062746815, - 0.06986327822238671, - 0.06714643216222516, - 0.08087498620248022, - 0.08568588435451975, - 0.06269990034041467, - 0.0715389208354202, - 0.04853739388859325, - 0.06555885960765372, - 0.09546397571623161, - 0.07164471352255371, - 0.06491238603438088, - 0.09229520278982514, - 0.06348445264590673, - 0.07710608862944932, - 0.08943638560282571, - 0.08008773990344688, - 0.07371873028429571, - 0.0706505374068854, - 0.08153602019530462, - 0.05638373099578652, - 0.06274184164996664, - 0.06925865074945421, - 0.07637753002775603, - 0.08205672082157835, - 0.06274031009336854, - 0.0742203792576347, - 0.08247316533888988, - 0.061867922819227074, - 0.0664506887305667, - 0.08080487583269835, - 0.08316551545331372, - 0.08747795887342026, - 0.06648107203860473, - 0.05437932665298877, - 0.07059315136140248, - 0.06695942319478865, - 0.05546390878333743, - 0.059216562150287866, - 0.08589590854564787, - 0.08025655374494349, - 0.07656786605573934, - 0.07908646281176325, - 0.07230721697158995, - 0.09193661269933688, - 0.07955149338307338, - 0.06600885884489772, - 0.06166957582922166, - 0.058086454869406966, - 0.08134721348977614, - 0.06291696820107982, - 0.08701271535780677, - 0.1114573569365375, - 0.05661686314952422, - 0.08708784398883368, - 0.06594329172687796, - 0.1041498093518877, - 0.06142604112826365, - 0.0634110399872681, - 0.05597205544553585, - 0.0638015381659278, - 0.08284909461064817, - 0.08018082176574208, - 0.08767881259818686, - 0.07407327032838198, - 0.06994181694282028, - 0.10325304657712331, - 0.07005824356639982, - 0.0731159214209001, - 0.07601215107127081, - 0.060556209326813756, - 0.07084101402908127, - 0.07917269637919823, - 0.06044701051681098, - 0.07214248852538045, - 0.0750238009351802, - 0.07816516395898504, - 0.0762556445811063, - 0.09482038979057213, - 0.09732064026394084, - 0.06747876233276554, - 0.07522765037721002, - 0.0801179132539906, - 0.08094342639418388, - 0.0688633523826384, - 0.07504767236168977, - 0.06481697870910003, - 0.07434790581632367, - 0.09625594926838112, - 0.06640532887699657, - 0.08392153302794118, - 0.06494321674103573, - 0.0894896307132344, - 0.06601121211316373, - 0.08927470459426409, - 0.07557627125074566, - 0.07280526243372483, - 0.0673891817574763, - 0.08764706665060093, - 0.07985392190456429, - 0.08816800454360776, - 0.08484653992798079, - 0.0626740291956486, - 0.09079489718503453, - 0.0714855458589355, - 0.057597957553172416, - 0.07099186912719505, - 0.06396056190672532, - 0.07650939644322839, - 0.06928831374927008, - 0.07373311628244261, - 0.07973675010411357, - 0.09349973798906155, - 0.06513396326967426, - 0.057840196408987535, - 0.09351515955522817, - 0.08351037053302732, - 0.09486661577082141, - 0.07794085292695216, - 0.05305387930596631, - 0.07009065703116586, - 0.07393622396145273, - 0.0630987104478975, - 0.07729399950964566, - 0.07179962927026344, - 0.09175842715957595, - 0.08219238507330534, - 0.07388977332735147, - 0.058769779409765674, - 0.08181849983782338, - 0.0729723625101667, - 0.07478857461456527, - 0.06102034243875111, - 0.055135858756962634, - 0.0838770772086376, - 0.06608344967448301, - 0.06528011688663012, - 0.06707650610025956, - 0.06088691511376285, - 0.08320232186924675, - 0.08478368770495216, - 0.05538353091439425, - 0.05540254557252777, - 0.07399660740775173, - 0.07025470101618074, - 0.05563649325732891, - 0.0898957947850348, - 0.0714431251548741, - 0.06459043276658846, - 0.07566717076711792, - 0.06724102620533878, - 0.07076439979328626, - 0.12875283606529547, - 0.08670315101331069, - 0.07698326142123157, - 0.07813530318482005, - 0.07969753016675438, - 0.0665030997471986, - 0.07051029489564348, - 0.08366712481739107, - 0.07370207226888133, - 0.062124734444692735, - 0.06252746480664224, - 0.05706034318476435, - 0.07550187671197647, - 0.06827264463540622, - 0.08852922323291237, - 0.08475588265499942, - 0.07809355389492229, - 0.06660364624743938, - 0.09072975331977808, - 0.08386821648434176, - 0.06826887217548994, - 0.05929066564243312, - 0.08837509078660281, - 0.07966846114077945, - 0.09172726135521643, - 0.08193225982330204, - 0.05958784679263722, - 0.05933599611899775, - 0.07093120074272702, - 0.06577085086726209, - 0.062200703353024356, - 0.08757297899018049, - 0.05956587083628963, - 0.10267739533748474, - 0.06530354728103491, - 0.09076819605172905, - 0.0794992199794506, - 0.08516213459407666, - 0.057180298137547436, - 0.06041231149347113, - 0.07624201199424313, - 0.06125222264152034, - 0.05527824452639166, - 0.06419005504549208, - 0.08323275130440348, - 0.07151606742221148, - 0.08268872483008574, - 0.070008776853324, - 0.07516459294853425, - 0.07194760496347706, - 0.08905147980881974, - 0.06781156852036538, - 0.060115023224211854, - 0.0685598589766857, - 0.09875800046302162, - 0.10688818907761376, - 0.0724357380575677, - 0.059351872108882146, - 0.07706606629726388, - 0.09176320452598953, - 0.08491760676181052, - 0.07498760619064603, - 0.10054045264860517, - 0.07139712334629209, - 0.10114063122955502, - 0.06693794640250299, - 0.0830781487672982, - 0.06762934046998768, - 0.08341369928514328, - 0.059884770953636035, - 0.08601503429521302, - 0.07377355189390697, - 0.05436147481353541, - 0.07087009219210111, - 0.06440945087797983, - 0.07945489111609062, - 0.05929068901941506, - 0.0701456381158884, - 0.0677739329248743, - 0.06717367130492136, - 0.06542178667319377, - 0.08088370457844116, - 0.07665812536520061, - 0.07315026079818766, - 0.09672906443338902, - 0.05426725061309626, - 0.08596402710214655, - 0.08334675320344544, - 0.0779315811460325, - 0.061806718857964245, - 0.07508385443677125, - 0.0752659649204726, - 0.07165600494460578, - 0.06955813347592085, - 0.06911048106626728, - 0.06973137323327053, - 0.05854413505548394, - 0.09662495274412664, - 0.07422510093661312, - 0.07075017128998626, - 0.07947186944394265, - 0.0641570469049526, - 0.07274029136406132, - 0.08038301579391648, - 0.07451216900553548, - 0.06281926229611753, - 0.08112187759101555, - 0.07554363722712298, - 0.08401903798397953, - 0.06360545746262557, - 0.07840514749775984, - 0.08074732516912145, - 0.0660922880581058, - 0.05955755999304085, - 0.08146868599209382, - 0.07613274437536914, - 0.07204390433665055, - 0.10149463621585238, - 0.057300025415392135, - 0.08720455961375691, - 0.06315594532078958, - 0.07008205792279447, - 0.07685302344821397, - 0.07717737234733962, - 0.06086701110173684, - 0.07838689748510622, - 0.09034071580598269, - 0.07161755616063384, - 0.0738212072390588, - 0.08705552771590584, - 0.07145438130037832, - 0.09162110736854907, - 0.07111428541711468, - 0.0763380515789178, - 0.0821400707483867, - 0.07598126192492864, - 0.06754846232419563, - 0.07616392584912161, - 0.07152784161921734, - 0.08623912945539783, - 0.10185833780144085, - 0.08973046597356395, - 0.0543966599935823, - 0.07144826194765862, - 0.06543406208245617, - 0.06834622707255311, - 0.08945043748054261, - 0.08392117166144411, - 0.07015496262356924, - 0.10294328042651384, - 0.07521810952802425, - 0.08070578454886666, - 0.07531567778989558, - 0.06626853204139418, - 0.06714908130447234, - 0.08313850589646364, - 0.05708496191308836, - 0.06916324964479006, - 0.05079650398102797, - 0.06672378223997001, - 0.09135453656648049, - 0.06111866651208111, - 0.07534144697587254, - 0.0769192565023968, - 0.07811446363417889, - 0.06966684524375057, - 0.05774762107544314, - 0.07268643057895768, - 0.06960674324301068, - 0.09897077328385226, - 0.06722181451073338, - 0.0791401814285858, - 0.05842977330399473, - 0.0802119686027575, - 0.08378487134266278, - 0.06372590964065776, - 0.06464937038807395, - 0.0599826639595808, - 0.07555652941995139, - 0.06102411243970262, - 0.07358875313085063, - 0.05869037708876518, - 0.05733905577019772, - 0.08978871141170479, - 0.07492917302164433, - 0.08099104881819981, - 0.07364350474833901, - 0.05948228848363815, - 0.05844562289342319, - 0.06087722339680506, - 0.09472299960306264, - 0.06550032831691967, - 0.05574372326322796, - 0.07824639419320706, - 0.08028969095208838, - 0.06058860856866833, - 0.07718296499451385, - 0.06191740867632482, - 0.07901770589891528, - 0.07702788672493299, - 0.06142237531876738, - 0.07535826315166007, - 0.06872124437681792, - 0.06916131459528167, - 0.05856935049097606, - 0.09013272573361795, - 0.05875395852451893, - 0.07693715783879652, - 0.06473839317306349, - 0.05162061985895626, - 0.06009368964788889, - 0.0919689445095233, - 0.08259951097421135, - 0.07243777171818391, - 0.07649049506200024, - 0.1067504806762102, - 0.06898062395235244, - 0.07720773215108583, - 0.09289590340516889, - 0.07568582617839077, - 0.0687835968819942, - 0.0712921642179676, - 0.09498617406121347, - 0.06678919455059071, - 0.0775997262394987, - 0.08333359790696349, - 0.08353263203834217, - 0.10185805288821047, - 0.06697577941314975, - 0.07851224099459168, - 0.0609455987669805, - 0.09412956279105673, - 0.07358528495723321, - 0.07351773760383538, - 0.07436553970127709, - 0.07289903595605078, - 0.06407769686771699, - 0.0691237596480507, - 0.07310207925891841, - 0.07606485084818085, - 0.06957238689180674, - 0.07917786398741951, - 0.11827139676384875, - 0.07204139813686095, - 0.07161521444958548, - 0.09934047813892806, - 0.06207962402785036, - 0.0728929987444511, - 0.0796280177044725, - 0.07169328228992136, - 0.06911678230138167, - 0.07247516037451368, - 0.08187788746708867, - 0.06995485248565975, - 0.09680953604270998, - 0.06431305078030178, - 0.09219431401239261, - 0.0719122049345296, - 0.07226511465911001, - 0.0981690656709947, - 0.09426847551667515, - 0.07167837203188969, - 0.07522454361091237, - 0.07400158544830897, - 0.06004107156717573, - 0.05582745372024391, - 0.07599048874253905, - 0.0695373057034933, - 0.08897395139155605, - 0.08442506943129982, - 0.08950928127716887, - 0.09138619406642176, - 0.08894704708848696, - 0.06711314538785877, - 0.07946553220787213, - 0.08348105509175002, - 0.058720253527375914, - 0.07176018998462001, - 0.05424245211511234, - 0.06921585665392697, - 0.06905410781749591, - 0.05631239137069895, - 0.07271235242315494, - 0.05753405403054708, - 0.05419645781526727, - 0.07856557950923783, - 0.07817736832304367, - 0.0807850975561397, - 0.06784028458313465, - 0.07590171097347713, - 0.06364282188395713, - 0.08738891033975764, - 0.08591895997148982, - 0.06338141873048246, - 0.06206360836909394, - 0.052205273086411416, - 0.06611461064380185, - 0.05929949565156261, - 0.08655434333134811, - 0.06170021365511094, - 0.06562747342261338, - 0.08245571979192867, - 0.06146429672719804, - 0.06494868180066747, - 0.08801417571039157, - 0.0736500050069271, - 0.08188649197081868, - 0.08197212983034322, - 0.06720812332299547, - 0.05713383945219232, - 0.07375159601700819, - 0.06379040315040785, - 0.09789259628837221, - 0.09568646271005869, - 0.07893905926211907, - 0.08630770160805892, - 0.06893574356387515, - 0.07711484978084293, - 0.07628399622488136, - 0.06432354340027419, - 0.06657081267333378, - 0.07901646775399875, - 0.06054457052014582, - 0.0717183731978143, - 0.08177228445758548, - 0.06422930817341305, - 0.07677105237365732, - 0.09261485058606116, - 0.054367992506634516, - 0.10087216771950804, - 0.06147997314861056, - 0.08295806292596647, - 0.09515750529339657, - 0.06041825117751254, - 0.07827986122381055, - 0.07587785893557637, - 0.06656336724919472, - 0.06424562114987509, - 0.08021438028667485, - 0.06494038683164143, - 0.07210553707584115, - 0.10430608970196079, - 0.06891950927330455, - 0.06890904040797932, - 0.06919208403321153, - 0.07190233877411188, - 0.07420701187387821, - 0.0658997851458278, - 0.05825781520501414, - 0.06571724705655999, - 0.07417195325095102, - 0.10421738249948875, - 0.10153555351449127, - 0.07668756073173999, - 0.06681797477848209, - 0.07419519025237013, - 0.07177906633909108, - 0.0708425346269562, - 0.06033445033189937, - 0.08516762769195366, - 0.06168473058411087, - 0.07595515002010327, - 0.06422989993740998, - 0.06261981686930541, - 0.06735244268657262, - 0.08018126741552262, - 0.07632896604347822, - 0.07603143246547193, - 0.07404276197101638, - 0.07462731003043706, - 0.05844066774438587, - 0.07100886306125789, - 0.06253453271184273, - 0.08266397714033134, - 0.061387511365217, - 0.07023657741216752, - 0.06768407691446506, - 0.09333973773568126, - 0.08085251234848001, - 0.07448529680181828, - 0.08166167494576189, - 0.08181533913872295, - 0.05558541110011021, - 0.07208339484214536, - 0.09633974678634032, - 0.07393113411602598, - 0.09185329273685734, - 0.06531780871155343, - 0.07214941407068706, - 0.08322828517039992, - 0.06579437264058687, - 0.08842780173194721, - 0.07829859648839992, - 0.06568353910304843, - 0.06492501252997067, - 0.061022130474148124, - 0.06063221843059982, - 0.07211263384010089, - 0.062383656381370604, - 0.07058945288626835, - 0.08117290136653939, - 0.054593531833493816, - 0.08017732948705461, - 0.07561649259096803, - 0.08041737403371876, - 0.0633956431135357, - 0.07074985104851307, - 0.08230427206744527, - 0.06493996692916619, - 0.06270505644753466, - 0.06387613688090503, - 0.06830374342228039, - 0.07814734474965776, - 0.05726954188240525, - 0.08408919967001971, - 0.06656629784858283, - 0.07183446177890179, - 0.069539311883717, - 0.07018757307116884, - 0.10542759958373968, - 0.06814493085818377, - 0.0773217449597292, - 0.06383947911343935, - 0.0982038730964685, - 0.06848144593208587, - 0.08072493130778043, - 0.07925766240342122, - 0.07268756011753322, - 0.07824293498467472, - 0.07672595125697546, - 0.07986848311250194, - 0.07088005364452124, - 0.07645946367373274, - 0.05918341759594616, - 0.06764420640340246, - 0.10758741466440153, - 0.060117037914836045, - 0.09111285548673922, - 0.07498839117353533, - 0.08866168953089777, - 0.0703638421413358, - 0.07939417120013262, - 0.05611330632106518, - 0.08746368130603746, - 0.057108122127247314, - 0.07646268112215333, - 0.05285401640824758, - 0.05243058725475528, - 0.07528291680314561, - 0.06456318856487965, - 0.07205319805482677, - 0.06531187977631008, - 0.07672284030196865, - 0.07358187787041821, - 0.060834416699533767, - 0.10013838433920444, - 0.08014335769669462, - 0.101057102211556, - 0.06871745429039477, - 0.08080022478231041, - 0.06890772812916256, - 0.06583607974478632, - 0.07593050270117074, - 0.058288527101769405, - 0.09414693002231675, - 0.06873858334159708, - 0.07087407583962128, - 0.059787069737980036, - 0.06457541436571786, - 0.07775965041345759, - 0.07639579252069452, - 0.06931862230746436, - 0.07672793588667949, - 0.07312592610946328, - 0.07412999505722914, - 0.06895502806442372, - 0.07547268912794594, - 0.06289383664119137, - 0.10330242718403179, - 0.06359891507510798, - 0.09108881905486853, - 0.08006976061008707, - 0.08971586708318739, - 0.061242375036514446, - 0.06343870470403745, - 0.08104019785863137, - 0.0772800126642371, - 0.07714133406665453, - 0.06062267159504695, - 0.08966334393544585, - 0.05917185522415622, - 0.07523916751788973, - 0.06572026379392913, - 0.07502032910552003, - 0.08598323940362489, - 0.05378002118672805, - 0.09411414582263049, - 0.0634830463355262, - 0.07193331535474663, - 0.0739183491516453, - 0.07166010582310878, - 0.0660377858081187, - 0.06427111086062938, - 0.08323356612937459, - 0.08670206769414239, - 0.06106267976417933, - 0.0686493772189314, - 0.07537993869025258, - 0.07311482599784655, - 0.08876352389135844, - 0.05417884208722788, - 0.061240037958549966, - 0.06772087406686805, - 0.08303492348168655, - 0.0798916366258167, - 0.07163725526563634, - 0.0725214761311897, - 0.06590451337709859, - 0.07251311933750448, - 0.07388278539350678, - 0.06592225245646836, - 0.06620388612320822, - 0.06347824216584534, - 0.06840915759507078, - 0.06552331555508055, - 0.0778549156799945, - 0.07996171387512699, - 0.06990617495035777, - 0.06994416685461173, - 0.06414642186517798, - 0.05879147348727597, - 0.07661757803144346, - 0.0727913495426771, - 0.062410110129018155, - 0.09088616447860602, - 0.08901024328173679, - 0.08966304637759315, - 0.08176679669086609, - 0.08921079204597113, - 0.0755953703389293 - ] - }, - { - "legendgroup": "Beam sensor 4", - "marker": { - "color": "rgb(135, 197, 95)" - }, - "name": "Beam sensor 4", - "type": "box", - "y": [ - 0.04726419567675237, - 0.036881084539466, - 0.05006043683725608, - 0.04676326791782981, - 0.04486345061486108, - 0.05387691729709245, - 0.04723076192965429, - 0.05845026715281409, - 0.04773493365772964, - 0.045265903291609295, - 0.03997149367613043, - 0.03446168720391206, - 0.057521109995882426, - 0.04364953261847467, - 0.044246919623870194, - 0.05449129110827522, - 0.04017283916357933, - 0.03580478961512732, - 0.05304929406961584, - 0.04595215248273945, - 0.059043312933029175, - 0.04050650611710223, - 0.04122163527009041, - 0.042143395357556346, - 0.03628836313451585, - 0.04429936116084708, - 0.04656875111655962, - 0.051827970242302714, - 0.04998575684614527, - 0.04857751691944672, - 0.048625650387450016, - 0.04206842651049875, - 0.04819278533757117, - 0.041776877766098085, - 0.04819317306845095, - 0.05202847328457535, - 0.044478404919738035, - 0.05269624937708751, - 0.04935495264440414, - 0.03721331534135657, - 0.04409667471266074, - 0.04860736829457256, - 0.05446975143161654, - 0.04698686807402293, - 0.049302071084657284, - 0.05000513334482508, - 0.04805644192647823, - 0.04391441521369819, - 0.05530014117873966, - 0.035744916838950105, - 0.043476769337127304, - 0.04110426826308501, - 0.05226249178571959, - 0.046214943617473046, - 0.04711209339956742, - 0.04088461314832586, - 0.05885098531820468, - 0.042808028812997306, - 0.04385609504690955, - 0.04103602733145842, - 0.04391367896376084, - 0.04221816655473826, - 0.06061781229492478, - 0.04914686693862627, - 0.038623003667583984, - 0.046503356640565756, - 0.045382763416096226, - 0.041329388587708175, - 0.040682417123276984, - 0.04725355240152864, - 0.08517249151762737, - 0.05574489436961632, - 0.050992983965553414, - 0.039340878757001416, - 0.04085912163743376, - 0.04773435278146062, - 0.04268554837605302, - 0.04618967507213679, - 0.04166147212082321, - 0.03793081161403405, - 0.05560352420551972, - 0.043024826735384325, - 0.05099531854542999, - 0.04694687843445629, - 0.04798399576928191, - 0.04540732707791155, - 0.033804511062223326, - 0.0387547350851475, - 0.042271758014562004, - 0.04306133901369432, - 0.04617158154494044, - 0.053506123950341704, - 0.050473146380069805, - 0.042304363003489186, - 0.05059328751252999, - 0.04593570312301968, - 0.05580126211846495, - 0.06001652285210805, - 0.049085049777891694, - 0.04493276258224353, - 0.04542404241739774, - 0.07071166591397858, - 0.050892107467137064, - 0.05595326627993048, - 0.05127915565127704, - 0.062155184971151294, - 0.05024844783326852, - 0.03729513509913289, - 0.04766542502862848, - 0.04316851596154454, - 0.03866259861815816, - 0.03881851699859755, - 0.03861514166358812, - 0.05830297100719988, - 0.0515847061488428, - 0.047657040662913555, - 0.045346909026451374, - 0.043511969464681666, - 0.047828204289447694, - 0.05925080086244245, - 0.04295002764135971, - 0.04913798694373626, - 0.03573655096315353, - 0.03419271030262909, - 0.036514266513848675, - 0.061826837041655945, - 0.05956379585416666, - 0.04062537481331064, - 0.04572205786022986, - 0.04646631372535122, - 0.03775155820825082, - 0.057637004559167565, - 0.05473088411041893, - 0.06924344636613343, - 0.05181642787528978, - 0.043526592834463626, - 0.03663975146831031, - 0.04360333805327612, - 0.047791254062568636, - 0.04863724644049569, - 0.04180674210783504, - 0.04704590555385097, - 0.03869689469127306, - 0.04185371902070565, - 0.040484056577267016, - 0.05167287904804543, - 0.05634015521962414, - 0.045392994383701056, - 0.03908482687034759, - 0.03415063910587608, - 0.053222603879236594, - 0.045895897083545543, - 0.060563970160806245, - 0.04036562788609559, - 0.05198653630288811, - 0.04208715331760518, - 0.04563578989607562, - 0.04583094616081591, - 0.05456637447348087, - 0.06420965489729094, - 0.03722322977475391, - 0.04690962803667721, - 0.05377041655409459, - 0.04439326019067893, - 0.0459342456295597, - 0.036016436919443486, - 0.0532264426305475, - 0.04215800641504944, - 0.05725818894842576, - 0.038624261084200216, - 0.06578679494429089, - 0.043797016216489945, - 0.04420593198444669, - 0.043992161582290454, - 0.053237483657311686, - 0.03689811481439576, - 0.046643339300974855, - 0.04967022210841504, - 0.043475076617943566, - 0.044183779114185, - 0.05854817341599629, - 0.04850610568640289, - 0.048443949498132736, - 0.041823009635212675, - 0.06806923968926255, - 0.0580243453901543, - 0.043428898495701494, - 0.044626541179303515, - 0.056525174409295956, - 0.04929971929753376, - 0.06022569606852146, - 0.04141280875402679, - 0.03892805743663089, - 0.044579143416785365, - 0.05115882157446496, - 0.04353055607809356, - 0.0462234992704664, - 0.052274547364962134, - 0.05152999164529589, - 0.0499384323271808, - 0.04728873859207578, - 0.03891120446049878, - 0.04682354642563995, - 0.03700334213091665, - 0.04850378863628435, - 0.04979415687177632, - 0.044153531045091135, - 0.03826775057215664, - 0.04861155119504171, - 0.05254063547365812, - 0.05485389559914469, - 0.0543745630670949, - 0.03511114435868681, - 0.05558321797922957, - 0.05753684985306505, - 0.05916335813420381, - 0.050615970730970274, - 0.03484195789196849, - 0.048696592275305504, - 0.044522910311806184, - 0.05805694702635457, - 0.04391144415530676, - 0.04601182397596914, - 0.04838218339274392, - 0.06153383218741187, - 0.04583488332518592, - 0.05390604201938416, - 0.04118208408066546, - 0.03548616821307029, - 0.04842680039237844, - 0.04071402065100988, - 0.04258200011995128, - 0.043891331959342125, - 0.05617815589062733, - 0.03678610649128445, - 0.05284818306791125, - 0.043304839515116704, - 0.07402001664782538, - 0.05930720956002788, - 0.04187535840682548, - 0.04157861282033558, - 0.04745097631303089, - 0.03911604169116118, - 0.05454136110597087, - 0.04352856414741783, - 0.037328465286553654, - 0.035751175147472204, - 0.04435909870122639, - 0.042821223944320974, - 0.04735975421744678, - 0.037955065951913544, - 0.04520949599122381, - 0.05024843474845122, - 0.06219496448590855, - 0.04454855576718507, - 0.05597050085872947, - 0.04284163862550577, - 0.045559621371601834, - 0.05067556186739799, - 0.0514463604288999, - 0.04466691684181914, - 0.04999146747965216, - 0.03840857618424987, - 0.059117007594607196, - 0.04821085166975681, - 0.04315497517055908, - 0.03470285330298614, - 0.046801414969928824, - 0.045312055259175484, - 0.03967225172143161, - 0.042598763615822745, - 0.04268932339701896, - 0.04043248998758503, - 0.05495647356231238, - 0.03860827680680124, - 0.04945880808178062, - 0.04247863664503816, - 0.04884625376126691, - 0.04581368023366177, - 0.0382043466910697, - 0.05898425537422299, - 0.05661041294359431, - 0.04182195323715962, - 0.03495182545729195, - 0.03654987466323467, - 0.04372267110054097, - 0.043502396624282305, - 0.0479664486625913, - 0.04119631459536699, - 0.04704225032590241, - 0.06631212125123756, - 0.05837254263475215, - 0.04445541594376637, - 0.04320892181567544, - 0.04972121093294913, - 0.041389285737761364, - 0.04887848189814837, - 0.049702061610103106, - 0.038145238122585294, - 0.07040796201083659, - 0.042488963972550475, - 0.041198669487390295, - 0.05320345559423256, - 0.051565876360182866, - 0.0387801504981783, - 0.03309480224927308, - 0.055839654389714596, - 0.0530896121881187, - 0.035073960838116355, - 0.0416500463490513, - 0.05251956808513941, - 0.055563755474847445, - 0.04769117217058053, - 0.04277810512941836, - 0.05547907266034024, - 0.054366843274146065, - 0.03894230823573471, - 0.03583881223671715, - 0.03530741222502197, - 0.05055249481946586, - 0.03685699643275534, - 0.03881165595766753, - 0.03974177361234883, - 0.05931555982662271, - 0.04466826386827102, - 0.05037291415451357, - 0.040721381119461074, - 0.04025480037058676, - 0.036279717775432374, - 0.05155029651365525, - 0.05371288543912698, - 0.05445931722518698, - 0.03419617830988778, - 0.03696317423321577, - 0.059709954331832765, - 0.05600211970120174, - 0.04941768936961892, - 0.043505942734447425, - 0.04882431794929608, - 0.061858009908334115, - 0.04415956035540477, - 0.06008116885507745, - 0.047771976775922924, - 0.04090054550152817, - 0.041283040530983243, - 0.04175205845047626, - 0.04206179976589404, - 0.04969924588059396, - 0.04965239225272223, - 0.060232389313907043, - 0.044613066988066837, - 0.05392991811765727, - 0.03815319167957941, - 0.04350836555987775, - 0.05730977902803956, - 0.04409812363233069, - 0.04518631615104171, - 0.04683812806394016, - 0.06734188637329974, - 0.052880690612833056, - 0.04165028827592077, - 0.04739892901051152, - 0.05401763501046732, - 0.051458732584300906, - 0.06923835939922274, - 0.06465939099324956, - 0.03950232108245579, - 0.048956984807563705, - 0.038958989314179335, - 0.04265019305005136, - 0.052392891960840224, - 0.06349941334219919, - 0.04263519894157518, - 0.04669617578585943, - 0.059960820858698735, - 0.051513918221107693, - 0.04293912463012529, - 0.0490814367671407, - 0.044684455462581874, - 0.047113552533142776, - 0.05030034975801812, - 0.0470027019556522, - 0.05515868543998448, - 0.03795588675822518, - 0.04003743608579264, - 0.054075967851040664, - 0.05285447429557009, - 0.047567166176896575, - 0.04041619752744611, - 0.03485518302957437, - 0.04481146535139308, - 0.04790184120752132, - 0.05822679972297641, - 0.04208056051652241, - 0.04237528076296457, - 0.05579260526603011, - 0.04781277668779262, - 0.0570005435737774, - 0.03959833360994822, - 0.04660070768295068, - 0.05353687684965777, - 0.04247478557160864, - 0.03421434094915261, - 0.0317902792495084, - 0.04255780342380079, - 0.04654696571946493, - 0.07128051842717024, - 0.04773249540605341, - 0.0594360488852119, - 0.05632890501454638, - 0.0436443681662804, - 0.046432445392098606, - 0.05344997182532704, - 0.044110124372337994, - 0.04739466355289906, - 0.04195875987321314, - 0.050485055686938674, - 0.035231825931641585, - 0.04539551770034332, - 0.042907776420540056, - 0.04420329674080075, - 0.040555749094398255, - 0.04246208140031587, - 0.03549486326546784, - 0.04567571131420674, - 0.04261240465064095, - 0.046639930725459, - 0.05886552050894066, - 0.03819499269383743, - 0.046949081637347956, - 0.04110385172110018, - 0.0493920206497451, - 0.04169535524552373, - 0.042675071626454224, - 0.054377956192601655, - 0.06005187024424992, - 0.04104381312848917, - 0.05001397920008469, - 0.042386224354063355, - 0.038674280416614686, - 0.033365117356897595, - 0.04101250862993127, - 0.04740198093852997, - 0.04589615115056592, - 0.043393858927310416, - 0.04194798941036043, - 0.03976603982615691, - 0.038997008760019415, - 0.052655781390196374, - 0.05680751105635496, - 0.053294687275519656, - 0.04809993626437237, - 0.056361174732804685, - 0.050271264222795084, - 0.048148520697213176, - 0.03707223530625267, - 0.03409431543946865, - 0.0495702220153857, - 0.03714244615211694, - 0.049273482813621046, - 0.04795085678440682, - 0.05465760804032804, - 0.04860519146338227, - 0.044487982296730504, - 0.036496951679781287, - 0.035971567888099056, - 0.05088104952427417, - 0.04207524776066554, - 0.0451085179584551, - 0.04816972951434129, - 0.0484478952244847, - 0.051293253586369915, - 0.06725874194712672, - 0.05488724194762501, - 0.039506538738459905, - 0.041245547360542326, - 0.06528744368219254, - 0.04549163806084589, - 0.04112320785864186, - 0.04390160700796667, - 0.05002996363157522, - 0.05803495231556215, - 0.05153145966361614, - 0.043802420922195724, - 0.06075717689898462, - 0.04596997717013642, - 0.04915799635503928, - 0.05657826761915739, - 0.054119029124437876, - 0.04238127027036093, - 0.06503199875911071, - 0.056483418154073824, - 0.03837232018624608, - 0.039640354545722824, - 0.051528906035925914, - 0.037749781720405474, - 0.04447171298980586, - 0.05003045748605289, - 0.05488005260733826, - 0.037952915462895497, - 0.042853082211723896, - 0.0470040448498885, - 0.04878082397399344, - 0.04319651712364393, - 0.04091896429006093, - 0.050214562611048695, - 0.04638152506881769, - 0.04502834411716665, - 0.056071524622610835, - 0.06027725440197488, - 0.06316934232318867, - 0.055672625747853345, - 0.051498891337573904, - 0.04815391728957577, - 0.04364279378310151, - 0.0460194646201614, - 0.05352561223351427, - 0.05641815232980436, - 0.04426170957003717, - 0.04759112547379766, - 0.04634785149868141, - 0.041029455637927544, - 0.035423875480321027, - 0.05428290057935631, - 0.047090871009529855, - 0.04190922597649849, - 0.040800982590468805, - 0.04740300829051505, - 0.046811130969412286, - 0.05606132817905, - 0.04455778621269648, - 0.044568449515871175, - 0.04773669881924467, - 0.03984939728165908, - 0.044803705573011755, - 0.06558974768028403, - 0.04936007172969017, - 0.04302475327543564, - 0.05237291350263196, - 0.053096689783276196, - 0.03366203626381041, - 0.04932527337928824, - 0.044336253982006774, - 0.04181643048395758, - 0.04476236167144894, - 0.05329238137090603, - 0.06645089303929944, - 0.04580389057239533, - 0.05794082804329562, - 0.04537421757187545, - 0.04699173473745366, - 0.04456932347186326, - 0.04120660667749664, - 0.0396490352928973, - 0.04177806933573599, - 0.04886742800681221, - 0.04967398000888742, - 0.044574528391662066, - 0.060042805447478934, - 0.05100644897825278, - 0.043899132057725894, - 0.045296026616227184, - 0.05567716325105472, - 0.05109527561624891, - 0.04683161381909563, - 0.057612664505783485, - 0.039249854004890825, - 0.04594175634321915, - 0.04499745982135577, - 0.046215644156405146, - 0.04461395254772627, - 0.0437143114067327, - 0.05871395491041189, - 0.05303517803135139, - 0.03764032280420411, - 0.055889973593044616, - 0.05131010652756866, - 0.04027388283378855, - 0.037602656730619945, - 0.04823290583017595, - 0.0492409967236014, - 0.05651827501547918, - 0.04586772329051945, - 0.061626969281984544, - 0.03976383088369782, - 0.0402841213609494, - 0.07362588648695993, - 0.04813808417137476, - 0.045901371626716765, - 0.04994846332431566, - 0.03847826875627223, - 0.03525189559225623, - 0.049935993065315445, - 0.04039236284490161, - 0.044966687483001026, - 0.04959017453112335, - 0.03702835656572712, - 0.06451740028921371, - 0.040010192003754094, - 0.03990289536938668, - 0.0451929930798909, - 0.04159818828487295, - 0.047080237517022505, - 0.04943502705250027, - 0.04091835974241561, - 0.04862444803456494, - 0.04976161999260027, - 0.060197297832692724, - 0.06477638344825358, - 0.04587084768006845, - 0.05251223309302971, - 0.05006090380872862, - 0.05296534605269633, - 0.05644895411298312, - 0.03932205366350276, - 0.03527957066725124, - 0.048535879638483936, - 0.04729249150097235, - 0.041680337756355344, - 0.06107774944039792, - 0.055687047048197054, - 0.036825417639116, - 0.05402300634130637, - 0.040724301241360575, - 0.04281184422156104, - 0.052196521241637935, - 0.04728996951466687, - 0.04316084888686395, - 0.04367041574469611, - 0.052816055896153166, - 0.04670438443709383, - 0.04469164081566282, - 0.04893587683982969, - 0.06095831037601088, - 0.036357813955961715, - 0.051791019354540675, - 0.03859702886009794, - 0.045343422045155186, - 0.034626802042862545, - 0.05192758337155455, - 0.04925918229081112, - 0.041658369422994855, - 0.040187027734229434, - 0.04629344449998145, - 0.0406846044732104, - 0.03666708614538329, - 0.05627942589501684, - 0.04851737402189095, - 0.04578363526693654, - 0.038216493069834406, - 0.043381304946482104, - 0.05926435331920976, - 0.05323107388498897, - 0.04027516319208008, - 0.04216746004315932, - 0.04258444786708307, - 0.04246740758386103, - 0.038502044200276836, - 0.048149296398936225, - 0.04955142820427426, - 0.04056750637314539, - 0.04067369220019334, - 0.04639780464903813, - 0.061796561753874095, - 0.03955345437946351, - 0.046215412647409006, - 0.053115161214318626, - 0.05667232253492283, - 0.05061623738471724, - 0.041949421404927974, - 0.05200488581708626, - 0.04781929491022881, - 0.047859796089902276, - 0.038952238374224055, - 0.048240080751199815, - 0.03767372346645622, - 0.03574510358316386, - 0.040064584784111096, - 0.054950567128165276, - 0.04417303561344488, - 0.06069777718260055, - 0.0518616558148186, - 0.048034793548047634, - 0.05363581877689056, - 0.04350232953413163, - 0.05201523285726535, - 0.052855709737005985, - 0.04227140926896966, - 0.05344492007951235, - 0.04126177650956686, - 0.05024571537621175, - 0.05108385116390369, - 0.05093186184555393, - 0.043793569096045926, - 0.051938186186523606, - 0.0358594615958194, - 0.042661092954800334, - 0.04337662974377576, - 0.04634125449002307, - 0.05396300405391587, - 0.05806116137142104, - 0.05576538759602171, - 0.04609170386652163, - 0.04238022704371396, - 0.06445512344488533, - 0.046772986392353576, - 0.053653748192795635, - 0.04947712713116021, - 0.044682042567988065, - 0.04347472330069597, - 0.040218928876685954, - 0.05351839716213206, - 0.03709039082849319, - 0.04965093235612237, - 0.04851783090277026, - 0.051522073639858945, - 0.059520905952047204, - 0.03938187424984419, - 0.036562299933337324, - 0.0499874106137428, - 0.045131164031521814, - 0.04586075242420621, - 0.042773051939555766, - 0.044009764835906136, - 0.04139630761542554, - 0.045567817834810835, - 0.05072803603389049, - 0.04632322887846513, - 0.05113356893930291, - 0.042256067435065846, - 0.047353467399874026, - 0.05322019221648131, - 0.05077491126959527, - 0.03703493032837879, - 0.03492120291951167, - 0.03868901935750164, - 0.05043743894194113, - 0.042676885037424596, - 0.0416133681148275, - 0.04395545478357435, - 0.043398912793776695, - 0.04020836832718098, - 0.03834360329606667, - 0.03631793286349436, - 0.05546580552852417, - 0.040168510461192956, - 0.047079107276033164, - 0.04355316557765559, - 0.05112605775097038, - 0.058189898188392694, - 0.06189786078047542, - 0.05179513519769146, - 0.04677058886898873, - 0.04926261900340616, - 0.04614507768753958, - 0.04942452391590718, - 0.04793382745665076, - 0.06205193034004292, - 0.05321839316145217, - 0.045204203219282625, - 0.045305301165795224, - 0.04861120299077978, - 0.05508096266367078, - 0.04017928741599274, - 0.04865938613555088, - 0.03700616250741056, - 0.05757325862858236, - 0.05022402486640544, - 0.045155092208282885, - 0.037697979364866116, - 0.03870427419197695, - 0.03956929374557381, - 0.0345665595064656, - 0.05213616968301539, - 0.0436239866510008, - 0.03850044477310851, - 0.05177422097412726, - 0.03793813579264624, - 0.06930261109370359, - 0.04611996359334608, - 0.03681274839867397, - 0.0446688675936881, - 0.053817504097813225, - 0.05162348447947246, - 0.04352226780570223, - 0.036748568145073573, - 0.05041573564780013, - 0.051315658861477466, - 0.056401043416253495, - 0.04338425599817405, - 0.046034459978000014, - 0.04068286517160327, - 0.04135457425934717, - 0.04929999659131981, - 0.05183486003863792, - 0.047526677993111326, - 0.04147045972101494, - 0.05050963657898871, - 0.04513592762782528, - 0.04119389364218156, - 0.05420826247238544, - 0.054176689209340566, - 0.051358241484911485, - 0.040027950229702625, - 0.04692435477133298, - 0.04063988059098274, - 0.031877842737112534, - 0.04686444056924539, - 0.048703946290398925, - 0.038284478015300855, - 0.04873360841229848, - 0.04673895071108055, - 0.05042111286506122, - 0.03975268764914096, - 0.05168087049160423, - 0.038869771537480495, - 0.04196512552356611, - 0.05217125595618196, - 0.05303082147355326, - 0.035699640146222476, - 0.03581683255794542, - 0.03958753637027233, - 0.040445978640076076, - 0.05298596437451905, - 0.04882674210311732, - 0.053898385295079294, - 0.05922089814909926, - 0.04903881034052626, - 0.048356579993235047, - 0.05564992915341666, - 0.04394963290853094, - 0.056963279700322916, - 0.03743186408749249, - 0.05215038263523201, - 0.04088072728009428, - 0.0414084392169447, - 0.046141774622944484, - 0.04497584784820814, - 0.04377702240477008, - 0.043026795918061064, - 0.04511369625577695, - 0.03174314836781477, - 0.047709478223122534, - 0.043290202520162746, - 0.03452095796553967, - 0.04611157688069397, - 0.043017807778827306, - 0.03916404242286411, - 0.04840972439180309, - 0.04013105957165617, - 0.05210992652428849, - 0.03734757957004105, - 0.059754566068910435, - 0.03785666686812961, - 0.044354116533767876, - 0.06806612906394145, - 0.048914139372935275, - 0.04629143874714043, - 0.03760816634301466, - 0.0452730101975151, - 0.045462765750321245, - 0.04625663900360399, - 0.045458529292082, - 0.05333450934436608, - 0.054142248577322645, - 0.04123548308262721, - 0.050603734327841, - 0.041695764208854125, - 0.0403286095017367, - 0.0389373923130943, - 0.052203543290839795, - 0.044043635382690516, - 0.04017368703127489, - 0.04554945169119097, - 0.03308793836321273, - 0.05022729001384214, - 0.05771911933590204, - 0.04237239399230223, - 0.05161960216635911, - 0.043638572558707886, - 0.05684750375788698, - 0.04929159489681486, - 0.059762534883306594, - 0.05498363209978828, - 0.05580578295259145, - 0.045874987779808786, - 0.041313204007262114, - 0.04865719460177967, - 0.05447135561075617, - 0.04233132204694438, - 0.06612670803240832, - 0.04976237625158495, - 0.0530410343114474, - 0.03831704698382851, - 0.0502343871374866, - 0.04688816255602874, - 0.04424648559074078, - 0.05092936641895316, - 0.054843391260857244, - 0.046246076817004864, - 0.04162078364069829, - 0.04368617030079233, - 0.0714968907045944, - 0.047967037838637, - 0.05644687348676008, - 0.04342133853818561, - 0.05196910673558007, - 0.03918264787493723, - 0.042987490967000955, - 0.04199587248455268, - 0.05101002432337444, - 0.04677066295411278, - 0.051002862239573364, - 0.042538238584811316, - 0.0459990904763458, - 0.05100154685082847, - 0.07640551682196861, - 0.040086228768863245, - 0.04053328330301778, - 0.04416660984660224, - 0.03776591474554836, - 0.054153084054510636, - 0.03967509902964108, - 0.055179545495637305, - 0.04778624991277972, - 0.05376974506731766, - 0.04035074442939918, - 0.054558741138903216, - 0.06109870529400047, - 0.046361291732874316, - 0.04813550467852171, - 0.04288282407581398, - 0.047549417028146655, - 0.04062355712785014, - 0.04078198196128162, - 0.043768002611895764, - 0.0450453788352284, - 0.03543404227313847, - 0.0371015606399151, - 0.042417422855968466, - 0.03990107043178202, - 0.04153157887632646, - 0.041774071532352006, - 0.045524174799050555, - 0.04540356983463531, - 0.044266091975788936, - 0.04585289264005529, - 0.04384157439306082, - 0.04510698670147896, - 0.05604448529817501, - 0.04037588315604102, - 0.03964925310217636, - 0.04129411906196193, - 0.05988061833601801, - 0.07419503889164523, - 0.0605218470602241, - 0.05502491016360542, - 0.052817152921631215, - 0.05236816690242299, - 0.052343192845982066, - 0.040376356909782536, - 0.04045280547054256, - 0.04638245349380063, - 0.05289149421917198, - 0.056741495540654295, - 0.03297534821382655, - 0.052657820471686746, - 0.04863016825908334, - 0.05205541203650761, - 0.03980176209417003, - 0.0488531172173745, - 0.044161822519005786, - 0.045178267828584646, - 0.04033842179772416, - 0.05552984713694569, - 0.0471280864121129, - 0.04588642496658769, - 0.05154493701781719, - 0.06275354535037024, - 0.036100769109029526, - 0.04443793058834392, - 0.046137169441240425, - 0.044230144790803554, - 0.05869837488535454, - 0.05071938586027825, - 0.04936794838858237, - 0.03865496987583472, - 0.04759419298833741, - 0.051740512589749585, - 0.05658720978560349, - 0.04420540931229654, - 0.06274850876534606, - 0.053984215488162256, - 0.05048171608927052, - 0.04648559172046201, - 0.04032668159947574, - 0.0466146178797614, - 0.049879650718794445, - 0.04897309667915346, - 0.043864134197430946 - ] - }, - { - "legendgroup": "Point sensor 0", - "marker": { - "color": "rgb(158, 185, 243)" - }, - "name": "Point sensor 0", - "type": "box", - "y": [ - 0.028730400081916043, - 0.033881943166148995, - 0.03927781277025736, - 0.038110160398209414, - 0.04589692926632319, - 0.03398042515567846, - 0.0319515114610385, - 0.036747606335503315, - 0.029101548157060734, - 0.030910122601032486, - 0.0325124324682641, - 0.027920599466407046, - 0.030620690814716977, - 0.0340465304735412, - 0.03653270430987505, - 0.028919043459090545, - 0.03319391060825912, - 0.03695261759041335, - 0.032280242583842725, - 0.043681972057122695, - 0.03241442905340647, - 0.04120418270351926, - 0.02941928066381735, - 0.03419121658985303, - 0.035466025698140335, - 0.036265734096579044, - 0.040708188415339686, - 0.04076972504018561, - 0.02708482317636651, - 0.023512972229489386, - 0.03836495873131871, - 0.044378717299332925, - 0.04446383731382336, - 0.041887502424231206, - 0.04698999672656659, - 0.0405585589265223, - 0.030458371940921984, - 0.04753948009705149, - 0.034430141133163304, - 0.028200288467305535, - 0.041128304069258846, - 0.027835063839198877, - 0.030959889905526537, - 0.0389154581895924, - 0.04493067036474671, - 0.02890290925805176, - 0.02801202052985191, - 0.03656649689953787, - 0.034363820056104354, - 0.028133997558454287, - 0.033878670159602754, - 0.03632014463169563, - 0.029078347548122222, - 0.03547783291424104, - 0.03230726201444482, - 0.04078678538858384, - 0.03481377174251607, - 0.03885574350022191, - 0.03107865939260826, - 0.03115605846273629, - 0.024804248139656745, - 0.0354709776347539, - 0.03409431660737118, - 0.027749344900649838, - 0.028427535976220424, - 0.044867736709479814, - 0.03725292405619539, - 0.030513421752671643, - 0.02944262411496978, - 0.029540417390071183, - 0.030992766454580958, - 0.026086122105049108, - 0.02769944189443073, - 0.027218036519247972, - 0.0406376202676903, - 0.028052721180565895, - 0.03903647105946929, - 0.02505713770742484, - 0.037161083651909205, - 0.03272629880104228, - 0.0378545822671327, - 0.023304722565856514, - 0.031050743952005862, - 0.04148358819226048, - 0.03576559881815987, - 0.03296211360303648, - 0.02873852732897543, - 0.03535848079571683, - 0.033745075913444986, - 0.045132337611191696, - 0.03465888408953502, - 0.04554058050761245, - 0.03531439767961805, - 0.03719078183473951, - 0.03874859578014595, - 0.03189688198690347, - 0.03433852244737945, - 0.02981212428551983, - 0.030646905427243715, - 0.03393972120035687, - 0.036731495973571164, - 0.028874951202008305, - 0.032321440975853204, - 0.030086939007068842, - 0.031217679683368128, - 0.02810011412391421, - 0.028461146619625573, - 0.036685793805615804, - 0.0409839199908198, - 0.03127989479094569, - 0.027051303498056584, - 0.03530349468776915, - 0.033509240358780154, - 0.030418725134789982, - 0.029648118270088362, - 0.03883678023299432, - 0.02816346464640427, - 0.028508822049308987, - 0.03405548638777601, - 0.0371763363663313, - 0.030363856720824402, - 0.03997147056268974, - 0.03331122363960413, - 0.033164541265160725, - 0.04272865836187379, - 0.037959765419977344, - 0.029526632620651246, - 0.03914830948728841, - 0.04067050461524373, - 0.03986210064257585, - 0.038175473802584965, - 0.03346363499881953, - 0.03487128161231673, - 0.036534281858609165, - 0.03686689076133713, - 0.03314006247087072, - 0.03217824902453845, - 0.034332150509935246, - 0.0375826474761299, - 0.03369896470310987, - 0.04075377442677322, - 0.044494118531690656, - 0.03838104523756312, - 0.03531133206954018, - 0.04157210935830309, - 0.03429492369768951, - 0.03781887065979853, - 0.04223825829115736, - 0.03599375754817871, - 0.02780109992465961, - 0.04493282822400082, - 0.027988565603909294, - 0.02732614555159464, - 0.030633372091273207, - 0.03184473803422635, - 0.03213910265672934, - 0.027708569386982077, - 0.037751835503167304, - 0.024364059648758134, - 0.030776943130883798, - 0.03439267072971196, - 0.028110166568293918, - 0.038851403214556594, - 0.028794435967891857, - 0.03476834412999139, - 0.030771840197729036, - 0.046006225533884657, - 0.03514583753634455, - 0.03159982919751817, - 0.041036236510873896, - 0.03253851174734522, - 0.035865692011508944, - 0.029410060631906678, - 0.03555112168738075, - 0.03114593070883026, - 0.04065978768051126, - 0.030238943592008675, - 0.02880228104846223, - 0.03440841659824007, - 0.031123769061913654, - 0.042742881508256954, - 0.0293672164639052, - 0.02780330860909197, - 0.03416936020653274, - 0.03062091649258579, - 0.027167081519446898, - 0.03240755853487572, - 0.03779494041789021, - 0.04546878646718969, - 0.0430953406834483, - 0.03315148355069283, - 0.03071785129446141, - 0.033654695676175246, - 0.03709619961996902, - 0.035886340075965105, - 0.04165486615530999, - 0.030052680037478796, - 0.03068319351229605, - 0.030104565428295187, - 0.02834677057493968, - 0.036405931324913675, - 0.031159906387083127, - 0.0394340262306378, - 0.05440367460850538, - 0.03595773577281381, - 0.043553893857130835, - 0.044208039382099835, - 0.03082347618340309, - 0.03677043174786094, - 0.031189211619962715, - 0.04462747141193492, - 0.03502962861518813, - 0.037841964454644605, - 0.033389015945986235, - 0.05103758198972826, - 0.026921301955037967, - 0.02628327097981201, - 0.03522261566865703, - 0.032333697762604884, - 0.03148970373589495, - 0.026598132773666627, - 0.035491879899461114, - 0.028901516173243227, - 0.02458307004952279, - 0.027397701447653022, - 0.037612289793702285, - 0.029108065617765702, - 0.041537287475881306, - 0.03508649951215046, - 0.03205225417574201, - 0.03170791603838071, - 0.027857675311701025, - 0.03802547191236282, - 0.03201208470999693, - 0.03164906399622255, - 0.04003666100009187, - 0.033449984354083556, - 0.04050362748630802, - 0.036306529841773794, - 0.026788815466452513, - 0.03749360279371684, - 0.03634683453407712, - 0.04114339878886541, - 0.037601340634670605, - 0.02964779100089721, - 0.022755921601106913, - 0.02611178791027184, - 0.028583909168130032, - 0.037003786882180006, - 0.033853856777386615, - 0.03209387727354596, - 0.02287595430544444, - 0.030167418889404534, - 0.033384154952263684, - 0.026615816191846945, - 0.047772490631428896, - 0.03409697334898064, - 0.03271840746244994, - 0.03095701964223419, - 0.03000352866599612, - 0.04503529755589143, - 0.023710280556558595, - 0.0428444703204472, - 0.032440031729846504, - 0.03294492079106382, - 0.03073206728193746, - 0.039127547715970976, - 0.03331530118154565, - 0.03896777629872029, - 0.035977413770835125, - 0.030733074534830554, - 0.028793364094033765, - 0.03345361196494266, - 0.02509386576456249, - 0.036293925134882866, - 0.030001702883718076, - 0.03575149178069005, - 0.031879406165652206, - 0.048127467660635755, - 0.03510448992615398, - 0.03054770791384083, - 0.0341501955856718, - 0.030062421878326362, - 0.03081534348134185, - 0.05012247672196684, - 0.04229185795002784, - 0.02750880011661486, - 0.027407497233885945, - 0.028363565184744786, - 0.04175895325181524, - 0.03857533060511729, - 0.028104022237563, - 0.03665993574889248, - 0.029338758006209165, - 0.03535833314863518, - 0.027379777865223894, - 0.034489805790884676, - 0.03573158506942282, - 0.03474417038083268, - 0.036254060044271036, - 0.030536000277769766, - 0.04618872828166714, - 0.049306916988358825, - 0.04318030338397824, - 0.04135173035832307, - 0.039890493126507456, - 0.032975424949020074, - 0.029966099019579473, - 0.029421470993259643, - 0.029957625180864613, - 0.03334954042909975, - 0.03275302804418062, - 0.03519667341539493, - 0.03117302254157118, - 0.04811911249973314, - 0.026761346276290333, - 0.03243861694373515, - 0.029241092039509958, - 0.03715576772010095, - 0.033699618617223114, - 0.035250729811982906, - 0.03636155459554879, - 0.0337043077503691, - 0.03637934276369842, - 0.030859739127199023, - 0.03798930075314889, - 0.04456222255000494, - 0.02575604928105649, - 0.03588814315763298, - 0.03791332037732743, - 0.035188783507917244, - 0.027726390434822754, - 0.04136502373478811, - 0.03947902286915189, - 0.02867110535046317, - 0.027799362492441422, - 0.034811259704578865, - 0.03002424705669078, - 0.044594823525015995, - 0.03555288840899756, - 0.03281179749123341, - 0.03543356295393587, - 0.038194082682701413, - 0.0335719313571137, - 0.035653189917105185, - 0.030538929840645972, - 0.04295385420106068, - 0.028005760085707904, - 0.030512495889694805, - 0.03694268423887027, - 0.028836027061230715, - 0.029677946157772216, - 0.03287093499762886, - 0.02935766756751261, - 0.03930292947216365, - 0.03227200685301598, - 0.02516326961889775, - 0.037369024323997524, - 0.03406087929901412, - 0.030423398240024675, - 0.03675685509141234, - 0.0325606740569769, - 0.0314652304726351, - 0.03150345423281339, - 0.030549230343753876, - 0.031010210513666602, - 0.039363345878078326, - 0.028699867292214475, - 0.026198769073312093, - 0.03406705507138059, - 0.03091550246372912, - 0.0492582188991395, - 0.02748342600760164, - 0.03357594025642514, - 0.025938413220919616, - 0.03578268513830564, - 0.03086037651791753, - 0.030215885463692527, - 0.026094386989562485, - 0.04020212089052995, - 0.024961975723244337, - 0.03427300547830231, - 0.03671485460597924, - 0.02979888885954624, - 0.03274732946577115, - 0.028664315949402785, - 0.03423618519936718, - 0.03380672216546809, - 0.04590000589039639, - 0.03221294749235921, - 0.030639135260273065, - 0.03976132220015528, - 0.036930644166792134, - 0.033747717748431626, - 0.03337546738516923, - 0.034308627969330714, - 0.0416158191537434, - 0.025541596098808142, - 0.028032058266435272, - 0.03910943308336302, - 0.04326222141828421, - 0.028154964765847106, - 0.03142794920553126, - 0.039310368408094, - 0.03189268540537626, - 0.0327791599342847, - 0.038204637322043475, - 0.03713228071255239, - 0.04702090253954085, - 0.03585858052638959, - 0.0433758810473987, - 0.03588592615924385, - 0.028284447153251267, - 0.04204290756694897, - 0.033221051116093185, - 0.02989135783148329, - 0.040247388629399194, - 0.03606441240259314, - 0.02291847200914733, - 0.03135790293304541, - 0.040527459304628734, - 0.02905090567133596, - 0.03449887639949741, - 0.04076897281821405, - 0.027543690005293678, - 0.036636071766337215, - 0.02419558162150175, - 0.029526661736275186, - 0.03235442496236114, - 0.03428412443078698, - 0.030984626295996087, - 0.037204001510299935, - 0.038052585241895455, - 0.03562846846856947, - 0.035456991730392254, - 0.04054329857483479, - 0.03399502939997275, - 0.03066038456720777, - 0.040679935057867725, - 0.026173493162590957, - 0.03403525391183598, - 0.030540628059658136, - 0.029261545654345043, - 0.03311111478248597, - 0.024582096067901953, - 0.026916452238908803, - 0.02574215289221617, - 0.03565234553245693, - 0.026840054282859228, - 0.03316197400782218, - 0.03794897185924013, - 0.04307062807366808, - 0.035317762113668966, - 0.02933143825366428, - 0.047668668526296185, - 0.028868997808262284, - 0.03897289806696191, - 0.032879121580647555, - 0.03469467618168949, - 0.03102663473371115, - 0.02897820347693138, - 0.026163849490415638, - 0.03292704435029004, - 0.03930400416736071, - 0.0414888890384178, - 0.025529331579859576, - 0.025472179280154703, - 0.03587075682742644, - 0.04056257201341388, - 0.035222290025887, - 0.034512506769248795, - 0.026690785903870157, - 0.027606334823235473, - 0.028904155468306218, - 0.0295083412030431, - 0.030970704090303874, - 0.03828628738162924, - 0.04018837104273258, - 0.02974198793207685, - 0.04262989244967345, - 0.02844112252097725, - 0.030300074791675995, - 0.044394489279280164, - 0.031940994280482915, - 0.03884894885597151, - 0.03357529387037988, - 0.02665861363598947, - 0.03259212814705549, - 0.03880217583799049, - 0.02756519629742931, - 0.027675941780116318, - 0.030034496627392136, - 0.03256815885599147, - 0.03258117881768999, - 0.04061977877461629, - 0.03241571728548689, - 0.031773359335959546, - 0.0328119675767194, - 0.03217625326418999, - 0.04023664739305251, - 0.029666020307358747, - 0.0359686928759145, - 0.0510038580351421, - 0.027077922922043383, - 0.04100299828745946, - 0.03604301176483936, - 0.024434346261760487, - 0.03325641111756954, - 0.04383923903444501, - 0.03440054513881078, - 0.03827286510064621, - 0.03582767809089721, - 0.030266812541992767, - 0.0272993432396432, - 0.038258080374885296, - 0.03372719400087233, - 0.0354586397732166, - 0.0367299477499498, - 0.030131220199679627, - 0.032597669722813555, - 0.034516699750622826, - 0.030743761813372995, - 0.029963220969148906, - 0.03785828930028049, - 0.02881428936338901, - 0.03345099696918411, - 0.023706345658847668, - 0.0454972853046259, - 0.03928450989043999, - 0.02796636179209917, - 0.030282384628060186, - 0.02631109362286273, - 0.03216680855501366, - 0.03819820771172872, - 0.028599101750779447, - 0.03255345415835046, - 0.04172763638956458, - 0.038747332442645506, - 0.03624998008879587, - 0.0363738996799991, - 0.031139809234845914, - 0.04376558738813405, - 0.035143614937741485, - 0.03762232166499836, - 0.04137026559611444, - 0.03070343753732814, - 0.03366039033962237, - 0.027962506438261463, - 0.043390687250217025, - 0.02732674803514689, - 0.03295582018715001, - 0.03463865679626418, - 0.03879419587607675, - 0.03382403113287381, - 0.025732995292104953, - 0.0279655853331793, - 0.031237439907963495, - 0.043797193008695355, - 0.026783773282362856, - 0.024113380107770505, - 0.039744239968405704, - 0.038505894507168834, - 0.04100948572727368, - 0.031810821241325574, - 0.03833421540488557, - 0.028554267828629618, - 0.032150975229345374, - 0.030442545273892146, - 0.03029323133657424, - 0.03370272705440659, - 0.042091434366175, - 0.02883617777626739, - 0.02891419556061109, - 0.034199398211100344, - 0.03484455099008817, - 0.041456258646293126, - 0.043866974828015035, - 0.027867543125828613, - 0.03239208656874652, - 0.035138380281738386, - 0.023880528008812622, - 0.030634814342403803, - 0.02274550182230251, - 0.03979550656493363, - 0.03629894804764317, - 0.03530359740809442, - 0.04518600539732794, - 0.03458210546420122, - 0.03566919827305155, - 0.03915707881148644, - 0.0450501402492692, - 0.031212479271530775, - 0.03782179878978385, - 0.029742170217609293, - 0.02565995501686963, - 0.047672852816897114, - 0.02808063059330969, - 0.0358423727579082, - 0.034634718327584586, - 0.033107517937279056, - 0.035322413716626214, - 0.03372143750058938, - 0.03000002507263347, - 0.028222240440089152, - 0.0320301747136645, - 0.03177760184153891, - 0.026251405169322898, - 0.026540706104969905, - 0.026705776074989303, - 0.02919977542871963, - 0.03608629419643647, - 0.033090158503782684, - 0.029437464865450284, - 0.032462588648604795, - 0.03132793796302379, - 0.03235468905335, - 0.03876587186508377, - 0.03651362989774494, - 0.02983912118064083, - 0.030888636503824042, - 0.03991413033022151, - 0.026611105960951092, - 0.03158492309729757, - 0.03180639771402822, - 0.03939447779521454, - 0.0275713454259091, - 0.023622797267416288, - 0.029637303041378574, - 0.03684203129752161, - 0.0239173311593559, - 0.032389884430280146, - 0.027928018355176554, - 0.03125212234949589, - 0.023773103900228378, - 0.03391400886698708, - 0.02962211192177599, - 0.025447021477481888, - 0.03359475932470061, - 0.029743520818615015, - 0.026190218428636163, - 0.05274490207572891, - 0.027849306196281398, - 0.030176807255885403, - 0.03240617622113872, - 0.03330789597649932, - 0.04337549193542732, - 0.042741124841750376, - 0.028360592356186265, - 0.03857014591305177, - 0.03263994685526251, - 0.029147433183258274, - 0.034176024164151456, - 0.04502269934278859, - 0.028656726921042947, - 0.03190121096117925, - 0.03772861584741284, - 0.03319160157943058, - 0.029427822729275487, - 0.02960166772681271, - 0.033485982419986446, - 0.04039726426442144, - 0.030819722600440944, - 0.03998586594284974, - 0.036753821927224595, - 0.03413612190703058, - 0.02750653557086302, - 0.03298388952700729, - 0.03704040586175771, - 0.03798906811446279, - 0.03978788919136661, - 0.03095957445207455, - 0.03780450127187508, - 0.026045863205025728, - 0.03717589342085566, - 0.0364943595053284, - 0.04004439239041462, - 0.027880703304371438, - 0.03032294292915723, - 0.031522325106640915, - 0.04379162230512463, - 0.028723009767412364, - 0.03667064978019111, - 0.029574784369723658, - 0.04196988914408797, - 0.03480041504118841, - 0.03420620292482848, - 0.032394118009922104, - 0.031034069955565537, - 0.039870190403996315, - 0.03796773175699418, - 0.03524479189847216, - 0.03125771537901207, - 0.03650980519136065, - 0.03289135230807299, - 0.029551099730856942, - 0.026795337292864797, - 0.03410038141718872, - 0.032068442973628694, - 0.027455550796513628, - 0.036449700007983386, - 0.04537921039699037, - 0.037150831070282414, - 0.035535917538921, - 0.027930915999203144, - 0.030542612763750424, - 0.03148173314576915, - 0.03577159020779112, - 0.03142865199863498, - 0.029798930185116913, - 0.03914098479966321, - 0.03514392759884803, - 0.037911108310945255, - 0.036117196984939884, - 0.03686271042424865, - 0.02645606273794196, - 0.03895810480197075, - 0.03247971681469701, - 0.03415309963657579, - 0.028428268930439666, - 0.02802536669916236, - 0.030388089737194073, - 0.04107729373935503, - 0.027103055431215342, - 0.03397184590919071, - 0.040785794737757536, - 0.03563520758593882, - 0.024569509844970472, - 0.04034341680132433, - 0.03183883231764088, - 0.039163467329564626, - 0.03286366059715728, - 0.03443350746407875, - 0.032844604903203824, - 0.04217257841478304, - 0.03985559657514195, - 0.03336608367082907, - 0.03693738120327866, - 0.029516835231539383, - 0.030681964039744596, - 0.02779905006240517, - 0.04658067050014131, - 0.04006665376006488, - 0.03861721170389151, - 0.031160022241474385, - 0.02735425632135579, - 0.02964589329140305, - 0.02509624484069129, - 0.03231493730034873, - 0.03098611857833786, - 0.03828150068939855, - 0.04103371925208667, - 0.05480981547372096, - 0.038061521920363016, - 0.0398270255306165, - 0.04440890201003855, - 0.04075139660626996, - 0.03880318299734203, - 0.03468014156118697, - 0.03201255640810878, - 0.03203325435255284, - 0.03490439499837843, - 0.029252951027141184, - 0.02748714144441909, - 0.039327844105675566, - 0.028362597344112606, - 0.033293113205393014, - 0.032646650607911505, - 0.02886118274858472, - 0.04346743039316902, - 0.03897292370004416, - 0.041415531189685086, - 0.03582937872719819, - 0.027125383463025402, - 0.029808030402829387, - 0.04622825176860373, - 0.031871139735612994, - 0.029910533047153454, - 0.028515459972342557, - 0.043223817673702904, - 0.040868381894401784, - 0.03364626760057082, - 0.03130185266379414, - 0.0475929325026086, - 0.035558125593689247, - 0.029251069369614247, - 0.026448410640128102, - 0.03472417720084887, - 0.029390041672446507, - 0.03236480364829256, - 0.03395375153751683, - 0.03533497996373493, - 0.038154921468510766, - 0.027968425417209522, - 0.029450349568009133, - 0.04081127539663292, - 0.04561245214352587, - 0.03188869751763019, - 0.035405519841377714, - 0.03594376704964941, - 0.028203634406032123, - 0.0331960456663394, - 0.03853385751759331, - 0.028858021111395588, - 0.03386928551128228, - 0.029665881443788067, - 0.034625584481223756, - 0.042881451710204264, - 0.03129324180596296, - 0.026156099132118655, - 0.03329476644598046, - 0.03759404379654716, - 0.02476139476066933, - 0.03989646804341892, - 0.04485177050368388, - 0.031015818730418573, - 0.030275057503189554, - 0.039205102973018324, - 0.033301180894371195, - 0.03285022103475917, - 0.030114657168496185, - 0.025815968688483827, - 0.036333245214047794, - 0.035874629778890214, - 0.03499539712140342, - 0.032463506492905796, - 0.046823804363988794, - 0.03430233136991898, - 0.045871807686035604, - 0.03371625048000333, - 0.035669788639321916, - 0.031966157177584796, - 0.035327249451785184, - 0.03522285914822728, - 0.03115903890584419, - 0.029717057894341443, - 0.03610713162783606, - 0.02881915116430541, - 0.03157258603707791, - 0.030416584270958943, - 0.03927458227125133, - 0.027381687755715665, - 0.02425559344464664, - 0.033754597558664175, - 0.02698446818217144, - 0.052171684115883216, - 0.034310341270177576, - 0.03717684999317471, - 0.030426480233400808, - 0.03168385514773541, - 0.029675814280360042, - 0.034811707925861475, - 0.0343784343979912, - 0.03147975748856906, - 0.03147816833909908, - 0.032220298945912385, - 0.029702490877926212, - 0.042464997138487316, - 0.02570931810797261, - 0.027116489242680744, - 0.032208404832182715, - 0.03164073483370064, - 0.027116116684954863, - 0.03760038977041418, - 0.03362702726309607, - 0.03276672911992101, - 0.04162884035694482, - 0.032472939089865455, - 0.03660607226592555, - 0.03319970342317875, - 0.0288347601653997, - 0.04731661025464657, - 0.03424512042049921, - 0.02867276769666236, - 0.033227099894658337, - 0.05164086447830833, - 0.026255542458659988, - 0.029531926985406697, - 0.02994699164356896, - 0.031194009500070664, - 0.04219635425725538, - 0.02897367870267151, - 0.035404412624129654, - 0.04353838425440516, - 0.03005746644787031, - 0.029360821226933936, - 0.04145067417342066, - 0.03353121619125658, - 0.029961196335981877, - 0.038308386124025054, - 0.038067663368815174, - 0.041218530599271816, - 0.022591425136734615, - 0.03531397043805468, - 0.038171105008284606, - 0.02750194478531059, - 0.03865048832652142, - 0.035520572008991336, - 0.0446974958817931, - 0.0373798498854274, - 0.038585187568533755, - 0.03405366054175496, - 0.03258952087539378, - 0.0415856298342921, - 0.03211092770382733, - 0.04012091312546855, - 0.03374058262403983, - 0.045382560504147615, - 0.03913120413788293, - 0.036799789805306606, - 0.0332152496635875, - 0.03129299211249186, - 0.029394261708700183, - 0.03207169419173592, - 0.041083363589904234, - 0.027213338139541136, - 0.02984038676171651, - 0.029910533794823765, - 0.03018621699039128, - 0.027880740228359242, - 0.03482444311397569, - 0.03074809324625761, - 0.03145127066201142, - 0.025336936535130777, - 0.034508347213759206, - 0.02919722073584053, - 0.05393024518481438, - 0.03002772183898221, - 0.025715043849779105, - 0.03171544336179963, - 0.037982107756229726, - 0.03091434611696633, - 0.031149567042502213, - 0.030600725009674846, - 0.041499099742282164, - 0.038413715587188764, - 0.03465639603926772, - 0.03300648171507887, - 0.03713382812428467, - 0.03586187823517403, - 0.026698263516129264, - 0.035459862566539165, - 0.03855162550014608, - 0.03262769296554796, - 0.025489109084121015, - 0.03322769491151407, - 0.02954616187096633, - 0.031084699639821547, - 0.03335711804589879, - 0.04080766746252395, - 0.030857730556546885, - 0.03390970086156695, - 0.034122545059163616, - 0.030391798211392273, - 0.03133507122522102, - 0.03495119103747878, - 0.04075216518163384, - 0.03463034825078001, - 0.033612394787972885, - 0.028259104490819833, - 0.0353127578841417, - 0.03067667096202965, - 0.030854685246250367, - 0.03598260668240897, - 0.033226320828300376, - 0.04378376457002912, - 0.030939831784511124, - 0.04400846139035187, - 0.038610066610099254, - 0.032774988130345066, - 0.029280605379089827, - 0.040563074895336865, - 0.034167152051105064, - 0.03333086489827231, - 0.034270683379884946, - 0.03488338116321936, - 0.03625151079747271, - 0.02936389000533999, - 0.03732495825332566, - 0.03417562244184149, - 0.025498868869240774, - 0.03723657906836694, - 0.03565920550073567, - 0.03245626475229878, - 0.029130562871005697, - 0.030095065772267792, - 0.03282856823303878, - 0.032950493164861, - 0.032619266675051335, - 0.02809559312656241, - 0.03850129464518264, - 0.04802446569353224, - 0.03418038784092213, - 0.03330307978932768, - 0.02911988289031628, - 0.04342150037230189, - 0.027384022256190105, - 0.03295789215689241, - 0.029234816888463452, - 0.03672123514457518, - 0.022909630901197915 - ] - }, - { - "legendgroup": "Point sensor 1", - "marker": { - "color": "rgb(254, 136, 177)" - }, - "name": "Point sensor 1", - "type": "box", - "y": [ - 0.036715758805018886, - 0.03761371111404099, - 0.04456597690680631, - 0.03718887422326402, - 0.033132472617124625, - 0.037657413931649786, - 0.04234875422909278, - 0.037238221554076995, - 0.045919221257021275, - 0.038321924181496686, - 0.031434053949908176, - 0.032726549090277994, - 0.04354179279219842, - 0.03246368672870783, - 0.049934067167416364, - 0.03839509398449641, - 0.036437367912440864, - 0.04701340444953794, - 0.035251506790326494, - 0.03412915861997621, - 0.05383112514876364, - 0.03429827310248325, - 0.04579368773891595, - 0.03615130466899878, - 0.038116872844928804, - 0.035231914798963676, - 0.038604399840541426, - 0.0382909882182403, - 0.04711148250855792, - 0.042736553114686965, - 0.03782049370205443, - 0.03413348562076277, - 0.04637648287308303, - 0.03206601057951527, - 0.04008568278783138, - 0.042893355437984025, - 0.025818142280357167, - 0.041603632819273484, - 0.03011363592143891, - 0.04138800581439414, - 0.04500984724975833, - 0.03310081102795008, - 0.04109290584897363, - 0.03884816299251912, - 0.036760629587739596, - 0.03118914761049454, - 0.041873178769359955, - 0.04926448726557633, - 0.04060190413004521, - 0.02783967608311954, - 0.03411554053733904, - 0.031395532752002096, - 0.03145514615149224, - 0.039197807095975645, - 0.0457954521944346, - 0.03169889525012153, - 0.031532530129754384, - 0.03574930514781961, - 0.038559171135237706, - 0.04037204254937333, - 0.042746669319890136, - 0.03212961299476064, - 0.03245902049955026, - 0.03714212407403122, - 0.03972198063953546, - 0.04261377921742891, - 0.03977461520070003, - 0.03700482605779567, - 0.03488917583644346, - 0.03713005849986378, - 0.03994963511627558, - 0.041265011778509726, - 0.031147639813542825, - 0.03552359640915921, - 0.03686222189026885, - 0.03191640435709627, - 0.035510666793420236, - 0.042461754462181325, - 0.04426469317235396, - 0.038212985721771404, - 0.029464987635476482, - 0.035941865312509626, - 0.039668587835598734, - 0.035802967253612754, - 0.04103882697664019, - 0.04349635089186975, - 0.03270921346719475, - 0.04656388943147724, - 0.04877705044131105, - 0.03268038335037063, - 0.046536225003309284, - 0.04086372265798133, - 0.04012348983648039, - 0.036121005111605445, - 0.04994769543625967, - 0.04090634448047167, - 0.040808508720138484, - 0.03387584006346526, - 0.038420676687771924, - 0.03381287436189031, - 0.0350115621353388, - 0.03422804090175431, - 0.028652465315277823, - 0.05032389452312852, - 0.035919103168372345, - 0.03974854254822322, - 0.03823071792091161, - 0.03942585534893113, - 0.038379276561192485, - 0.045855066456581536, - 0.03595089258946792, - 0.039590156848364186, - 0.03531986591258068, - 0.037446281311663485, - 0.03345940093749702, - 0.0342064672287236, - 0.03824269990604003, - 0.036052412210443884, - 0.0341504861868828, - 0.03553971624291649, - 0.03839504896027137, - 0.03876100322649816, - 0.030307696075307825, - 0.04472182442027818, - 0.03296284998211795, - 0.032875910093475395, - 0.03093743819354595, - 0.028767392962930585, - 0.03379512477720949, - 0.041691419585193346, - 0.04833500831868932, - 0.032425216454222285, - 0.04501390283480769, - 0.04507443633997496, - 0.0371955493364154, - 0.04781971205787785, - 0.038110730590611035, - 0.032396046051616674, - 0.025498066971874307, - 0.04084221583481411, - 0.041070706484451554, - 0.03486562539395797, - 0.04123603683460369, - 0.03574369407470367, - 0.03529551267489222, - 0.034805717293250306, - 0.0345674469031942, - 0.03506302980313492, - 0.04129198261086204, - 0.030233889527466105, - 0.029956577667988846, - 0.038676934838223404, - 0.037827285357187206, - 0.043605037935895444, - 0.03861726362801062, - 0.053455527359566296, - 0.04276312261256083, - 0.031230972325134162, - 0.034031310507457994, - 0.038511916693395334, - 0.03752132996725646, - 0.036477466230067083, - 0.03827411168894807, - 0.04458429469512739, - 0.04028289803786684, - 0.03481671330111602, - 0.04137311759601927, - 0.047753126625883914, - 0.05374250225761889, - 0.03647807564876881, - 0.04211232450063844, - 0.0453396086023153, - 0.03307908850393018, - 0.03811203326989287, - 0.049116505676995395, - 0.037621427494362376, - 0.03839892675231242, - 0.03656940580745141, - 0.03453755380197039, - 0.037552059123979874, - 0.03922348219327412, - 0.03229997775640834, - 0.03327999085518921, - 0.04549728891678381, - 0.03984453344888643, - 0.030510942993538643, - 0.03904547561040457, - 0.03208002531368396, - 0.027409414990058185, - 0.03528593226615993, - 0.03611918827485112, - 0.04656962506420212, - 0.03048303457917555, - 0.044334889634226236, - 0.038323637382725054, - 0.03172328750653148, - 0.03556667053121626, - 0.03166788709905574, - 0.03787374944796257, - 0.03249448127491312, - 0.036784004885176566, - 0.03265570792722773, - 0.03682818941106086, - 0.034765505102137266, - 0.05240118727218184, - 0.03083048923546675, - 0.03731579847248726, - 0.0327838678261412, - 0.03870031954389056, - 0.032945173924617904, - 0.028630993109236783, - 0.03698382209053213, - 0.035855363148220826, - 0.03431194629389971, - 0.03413802712023519, - 0.037849382044431924, - 0.04071454053629859, - 0.02820144456080722, - 0.04795429088694991, - 0.03377623445294014, - 0.03652885854229156, - 0.03642219155140446, - 0.033124976313715276, - 0.03540159224560339, - 0.032387490121606625, - 0.034759827601520465, - 0.03502919694122812, - 0.04073007449141678, - 0.033126622206818675, - 0.03168311392296023, - 0.03257260437372503, - 0.027973061429932583, - 0.03963787369566249, - 0.037670992184334035, - 0.03924445913839103, - 0.04122290902023144, - 0.038303528342821754, - 0.0528733736784215, - 0.04859971810540912, - 0.03560087902874911, - 0.03709536999624559, - 0.03243680667606082, - 0.035994150977498515, - 0.03933153163254163, - 0.03463418373235728, - 0.047575757719931076, - 0.03913106643152115, - 0.034275373131912215, - 0.038478496608045, - 0.04192593600496307, - 0.03780683252228998, - 0.040012373002774916, - 0.030068832402393973, - 0.040765838550652814, - 0.04071041656768251, - 0.03491264157673311, - 0.034616488981418246, - 0.037729888200561924, - 0.039326857615045105, - 0.0403561351234101, - 0.03342701507189249, - 0.035853776378555954, - 0.04115443073458149, - 0.035273981091055145, - 0.03503677464026672, - 0.038807740044502916, - 0.03617434498934482, - 0.029481249226995083, - 0.033959281382261335, - 0.042242805608274626, - 0.03267122648161732, - 0.0486245034217485, - 0.032120120134161496, - 0.03855285233300243, - 0.040420702265604666, - 0.032461548197925724, - 0.036501404180481825, - 0.03215728002069525, - 0.03699564344558575, - 0.03819538083950608, - 0.03954884705152558, - 0.03302452199893271, - 0.042581151332845145, - 0.04912720225706742, - 0.034872434803216286, - 0.03390827340594482, - 0.03065128825040589, - 0.034963237200559036, - 0.03909741264909873, - 0.036386376270845254, - 0.03841659402878601, - 0.03163563934812633, - 0.034922148213328674, - 0.04608944466655259, - 0.03800802944687497, - 0.03651597950613402, - 0.03631512309197612, - 0.04099829222019171, - 0.03168102963358898, - 0.04262810984998972, - 0.0481117156733257, - 0.03792402145916822, - 0.036862856985281744, - 0.033714579433573026, - 0.03591687613205214, - 0.027777602978446867, - 0.03948379417629511, - 0.04319372891274068, - 0.04178066938033448, - 0.04939616479649805, - 0.04051935875858258, - 0.04351556074216845, - 0.03405263863167781, - 0.039270052995746825, - 0.03550127543783229, - 0.04021746324120415, - 0.03316882929301414, - 0.03389962184983024, - 0.0450845856860652, - 0.03574600057991202, - 0.0356267972270591, - 0.030413294581296067, - 0.028715018587594055, - 0.035275566138418465, - 0.036871269445998806, - 0.034040031980973974, - 0.03805484076374, - 0.034593480045221725, - 0.042121585492652984, - 0.03625583481001632, - 0.03979905218183054, - 0.04556974776576977, - 0.04423392265115496, - 0.050105632039687965, - 0.053591114957901816, - 0.0364930556297462, - 0.04460061656844819, - 0.044082620578703616, - 0.0313912300325533, - 0.03771466378309827, - 0.037445416581557006, - 0.03952914365267955, - 0.04156333053878333, - 0.052146521440500256, - 0.05006224063592753, - 0.03896355303421334, - 0.03204176943263184, - 0.032322547074799125, - 0.03636980657987255, - 0.03605124256024008, - 0.03150404211988156, - 0.03833507626727329, - 0.0463236734941982, - 0.03640437679183998, - 0.03665731286515921, - 0.030847995614580327, - 0.03557375131272736, - 0.029525449133674737, - 0.03339337266621251, - 0.03806893657070767, - 0.04099317534439092, - 0.02718029775391553, - 0.04285619230014603, - 0.04325726673663316, - 0.03314613135051852, - 0.035310038733344255, - 0.06217408779892531, - 0.04327919637549718, - 0.04157601647938288, - 0.029980832709806605, - 0.03967373473194308, - 0.03913776200370407, - 0.031132911077561623, - 0.048267672246126284, - 0.04073232817516046, - 0.038553132035627186, - 0.03355393230385968, - 0.03514366144251663, - 0.04562009777490662, - 0.031405364903795634, - 0.04354602084761362, - 0.03281288182522867, - 0.05397977844053224, - 0.033182670541921824, - 0.038324368996281874, - 0.047334601372317514, - 0.04022055149191233, - 0.04434032231968132, - 0.025494672813232654, - 0.04205373626125983, - 0.036852248776034054, - 0.034428004358127165, - 0.03328427277397614, - 0.04659191762217323, - 0.033524968334039736, - 0.040599082382452516, - 0.04448002864194957, - 0.04641790503075131, - 0.04211785295979987, - 0.039832703082206315, - 0.03617076797226818, - 0.031753287810065214, - 0.03719040880606877, - 0.029288885283735227, - 0.043121357925815514, - 0.035890700247404414, - 0.03520193380510459, - 0.04493682708698273, - 0.0466023363391465, - 0.03379706900596952, - 0.058493841431780734, - 0.04215221999902843, - 0.03536337355906207, - 0.04031609269222653, - 0.04081382476808683, - 0.041661630952518215, - 0.05728950184369718, - 0.032652825240454306, - 0.03956073314051078, - 0.033285257517793425, - 0.03812875877441297, - 0.04248569116899837, - 0.03503979073940796, - 0.033444681140956764, - 0.037920939305003905, - 0.034016385574238646, - 0.04240077522783257, - 0.030919825360622977, - 0.03227200144823134, - 0.0346883068545051, - 0.03135239271376074, - 0.03339742069283562, - 0.045554527366074585, - 0.04349902071317852, - 0.04003642633358658, - 0.03511976938431598, - 0.04743637995159247, - 0.028820246702059057, - 0.04207449140224095, - 0.03082458851664636, - 0.037825004009256195, - 0.03446887437671457, - 0.032691174189143295, - 0.045925240869170665, - 0.045928670947635614, - 0.03585278521514025, - 0.042025404606922376, - 0.03572623715952867, - 0.03267433757833829, - 0.03428696755041483, - 0.040639043684093025, - 0.03107035545919085, - 0.03769137784310412, - 0.05119760514161173, - 0.035255356543607654, - 0.0367692234256108, - 0.044334140481637745, - 0.04148454402119714, - 0.042096936352653526, - 0.031023538314860592, - 0.03911579398772624, - 0.03361444498547066, - 0.030948608165972388, - 0.03180923841136716, - 0.03726770061243345, - 0.03412941375542722, - 0.0370676385803837, - 0.035413153236857134, - 0.03318173550653759, - 0.0304331241644281, - 0.04116806140436625, - 0.04059554333290755, - 0.04367390778702419, - 0.043259165276442656, - 0.03087978404179307, - 0.035237517026634115, - 0.03407840583224009, - 0.03291522081223747, - 0.03989796369154243, - 0.04180631806741871, - 0.02867514275255773, - 0.04550072158426954, - 0.04236889888461575, - 0.041960017372774897, - 0.04203140961165115, - 0.04568547888395555, - 0.03177198831219585, - 0.03277854905223265, - 0.03193896476445684, - 0.03552755023832265, - 0.034901580493108784, - 0.03944203739915901, - 0.034568907713423094, - 0.035721357930727456, - 0.0420236706420898, - 0.034069390568612135, - 0.03649372236840224, - 0.04102000105412112, - 0.03882396251730577, - 0.032024371110323704, - 0.03694798626048489, - 0.04312620218039104, - 0.02940280655957277, - 0.02943009362255559, - 0.030557612857763594, - 0.03650381114732613, - 0.046064805996793, - 0.043258041128460815, - 0.03854306475247794, - 0.03841673962699952, - 0.030598370462560243, - 0.03815858320935913, - 0.04128284109222594, - 0.03598947194437622, - 0.0406147252608411, - 0.03315449658131274, - 0.04123964834380255, - 0.02753420661999809, - 0.03270271587171278, - 0.03497745976085453, - 0.03095616609342909, - 0.027250050929667338, - 0.03970312623064339, - 0.03226590806941381, - 0.038503561814189825, - 0.036997049510136645, - 0.03600907442680853, - 0.03726837922999698, - 0.03794910187266225, - 0.03488012584264187, - 0.039759145362038076, - 0.035806505575580745, - 0.03716548291311412, - 0.050622835209477426, - 0.03522375429637303, - 0.033502821790153556, - 0.04096306305732284, - 0.045146597656104334, - 0.0478256034550368, - 0.0311548931919735, - 0.037032767752720616, - 0.03593509229308459, - 0.04398794972952077, - 0.042869846221773346, - 0.033990000805269385, - 0.03871713116807088, - 0.04366248405677596, - 0.040471703681991454, - 0.033802680210603606, - 0.035309863572722186, - 0.04389355334425488, - 0.0420250764315575, - 0.04398168210529612, - 0.042392431188078714, - 0.033361226369466916, - 0.038628040215847134, - 0.04714707864359085, - 0.04954018189723753, - 0.032650644125130315, - 0.03470353934224197, - 0.03696029199949361, - 0.0447254401708197, - 0.03537698094940832, - 0.05656921863476538, - 0.03812487267864114, - 0.0369095164104582, - 0.030181036369957743, - 0.03449813484304725, - 0.03832787534634266, - 0.029076206640076176, - 0.03813431321259202, - 0.0490460055902869, - 0.040993423563871145, - 0.03323540341506663, - 0.03048815905620584, - 0.03539833020433229, - 0.03303933739290288, - 0.03660638205986224, - 0.034270350749987015, - 0.033290549461506766, - 0.04481449127872367, - 0.03477832303885998, - 0.03260268258900209, - 0.03534148773317315, - 0.03814070205231663, - 0.030064552444546547, - 0.03200865841771246, - 0.03550647567857795, - 0.031814521606439404, - 0.04764201935977072, - 0.03724071880043243, - 0.02856081813599978, - 0.03657225814376211, - 0.03700841072160198, - 0.03940971268771039, - 0.03994592328231754, - 0.04677841675705772, - 0.037649978783837405, - 0.04185578848778017, - 0.04067608674680462, - 0.0358439363000699, - 0.04519684131741998, - 0.03127379334522184, - 0.03964079824395828, - 0.03855251904484925, - 0.024547150881771614, - 0.03476442479423285, - 0.034705583444607356, - 0.0300893727512181, - 0.040023965400510356, - 0.03373566823005311, - 0.03772742071448869, - 0.037356209236610906, - 0.03570458813813139, - 0.038873572666241606, - 0.032355132220645816, - 0.0358740213455162, - 0.03619017383443481, - 0.03896303412197466, - 0.045856338394925776, - 0.05278302287900306, - 0.03522155291484008, - 0.03002378819186469, - 0.026608937862630334, - 0.02772280411391115, - 0.04044651394279887, - 0.038216593967417924, - 0.03794481369998554, - 0.05091749337662563, - 0.034958314547877706, - 0.03533281178708115, - 0.034694421164319145, - 0.03228025223837834, - 0.038849612937189026, - 0.034820626945238235, - 0.03001934617176302, - 0.03343319880973928, - 0.028230293463656676, - 0.037861884761831506, - 0.033711836527189995, - 0.05112813548880267, - 0.03264600113872191, - 0.029302118986939144, - 0.03571406435478474, - 0.03047135760575729, - 0.03691681379191519, - 0.035212450889755095, - 0.040728034366704156, - 0.04585443602349566, - 0.03916837250158608, - 0.03504363325813114, - 0.033303499985894616, - 0.0417600959811885, - 0.030891552581508597, - 0.035924357797211086, - 0.04266986199305422, - 0.03398206118061026, - 0.041023279515027905, - 0.03944370348494714, - 0.03705031100351998, - 0.041066025029738315, - 0.04041253197160983, - 0.039959395679422825, - 0.02989221788628325, - 0.030411178044856928, - 0.035293462113850975, - 0.038282172159236995, - 0.03566464785437826, - 0.029195642959499966, - 0.041546342493078786, - 0.0289685173754357, - 0.04172586078641956, - 0.03876980141561623, - 0.0478283970006955, - 0.0327671267705137, - 0.03583056189793245, - 0.04198295986520934, - 0.04346603097918601, - 0.039908833118398206, - 0.049473725186255, - 0.03683157643841259, - 0.03926910968681111, - 0.047289199640616245, - 0.03372380494027929, - 0.032182989635634165, - 0.030368862426789083, - 0.04751010780115772, - 0.03557728152634131, - 0.047954247331647396, - 0.038420288842531666, - 0.02939233949735182, - 0.03277433183893398, - 0.0390984508891777, - 0.03636729077962587, - 0.03448643707764093, - 0.03268864297639987, - 0.040108119135399634, - 0.049798708661981946, - 0.03678390539114291, - 0.039998438433724574, - 0.03854263818466514, - 0.04776961776767226, - 0.033998173209268776, - 0.03377968496390118, - 0.028275543150118376, - 0.043467296595756245, - 0.03951336339245892, - 0.048176958143833284, - 0.030721763320730434, - 0.03310746387678, - 0.03230820620755947, - 0.039217724684260075, - 0.03502446341316087, - 0.03504059948746193, - 0.038757632580718925, - 0.03460469519924199, - 0.03611405437825071, - 0.03332343730273547, - 0.03952122980839566, - 0.03227004547172884, - 0.03910132598827834, - 0.03514184378283162, - 0.02453250543849377, - 0.044832907297114914, - 0.04509653911330959, - 0.03531850948703844, - 0.0305621977132097, - 0.03212741615703472, - 0.037142314690957225, - 0.03781102330381647, - 0.03701432874465733, - 0.03364984857686847, - 0.0395164187691393, - 0.043321895680821135, - 0.04305840678022903, - 0.03500959355326003, - 0.03469545700730703, - 0.03236512096115993, - 0.036600836768203464, - 0.03422782617721934, - 0.037938134311551776, - 0.032912880882121937, - 0.05310622503702585, - 0.050227399100962154, - 0.03904336489836897, - 0.03280365395872515, - 0.03132847850985798, - 0.03302644561539792, - 0.046946972738591185, - 0.0552530309424089, - 0.029239208030320235, - 0.03599066301762308, - 0.03846009106959797, - 0.03758982173708299, - 0.047720199347417225, - 0.03715244936913667, - 0.04927709982452329, - 0.03852735189821503, - 0.03198450383016956, - 0.02993026437456573, - 0.04108490763054484, - 0.032593767043800966, - 0.03480391243583194, - 0.04385632503528801, - 0.03409195075013542, - 0.03582887653968277, - 0.038229415819002036, - 0.031938948424721246, - 0.03136718621038808, - 0.03861404630074924, - 0.035017736836875306, - 0.03730197207010379, - 0.041079546124591665, - 0.03985152756424145, - 0.04000635400549778, - 0.03451246141151545, - 0.03167445660532408, - 0.0313621086042509, - 0.039756581672345616, - 0.04627707375963826, - 0.046897010240020055, - 0.03961169881736599, - 0.04120894396248618, - 0.040769225545362144, - 0.04337137273934242, - 0.04265367216893077, - 0.04057927079653007, - 0.03640286399835433, - 0.03524816852888787, - 0.03578299016885683, - 0.041738724553370174, - 0.03227292025451312, - 0.041550151177184504, - 0.03354870527602881, - 0.04207292164416621, - 0.035144328422441036, - 0.035218007755802055, - 0.04076482860750487, - 0.03034152330758941, - 0.03534968717759012, - 0.03339723094411533, - 0.03761584553265372, - 0.03811440155482926, - 0.03850504215706432, - 0.034569235490956564, - 0.04117038380915522, - 0.03998332555018564, - 0.048963212186058404, - 0.04068930318740775, - 0.051230348980074766, - 0.043167179471734665, - 0.030981606852595767, - 0.04766139749351286, - 0.03609709722979946, - 0.03663655142415297, - 0.04079106742130546, - 0.045027943720183275, - 0.037448201669320016, - 0.03749659895082117, - 0.034285064215763265, - 0.04711966942810368, - 0.03345548890160075, - 0.035747687616916504, - 0.03287567952181188, - 0.037991964098357624, - 0.05084295879844406, - 0.04115232652713058, - 0.03916642007267858, - 0.0355355252044281, - 0.037685657968598255, - 0.03929881169371623, - 0.047096820547840264, - 0.03630783847680934, - 0.03776251239951641, - 0.04069621400708909, - 0.0345158862693513, - 0.038983185799087494, - 0.04078520766773981, - 0.02724651134845857, - 0.038152194830535044, - 0.037448089803971914, - 0.04295717774464004, - 0.03663809018976437, - 0.03151298551319034, - 0.038263571380799784, - 0.032413406139652844, - 0.036886272810248116, - 0.02507324984329856, - 0.03531971027664307, - 0.05148950949818906, - 0.03487848442976768, - 0.03778527549067953, - 0.05188220653370576, - 0.030039764199134095, - 0.031551246095689954, - 0.03182281326234237, - 0.03543592554033476, - 0.036163484477228884, - 0.02782924796415899, - 0.04474076102053988, - 0.041284999622458726, - 0.042380186090729334, - 0.0353159285744934, - 0.03996116974606357, - 0.04801605913664819, - 0.026261989107443876, - 0.034740708171773785, - 0.03153324200525825, - 0.03511526614440834, - 0.03779528408806364, - 0.039374836089906905, - 0.046213736549700776, - 0.027265216516405705, - 0.037513401327044865, - 0.04756384734973701, - 0.047908365471021494, - 0.03361972731001055, - 0.04221718252928745, - 0.037356522206077485, - 0.03280983592694139, - 0.04516690736834899, - 0.03978378005505906, - 0.04620767901090783, - 0.03725988040543196, - 0.035162291993136675, - 0.03448428958736897, - 0.03959091980111926, - 0.028931684831879332, - 0.03895922856546835, - 0.028298971128085215, - 0.03490782755804173, - 0.03511732029514529, - 0.050244121939968245, - 0.031820879260899076, - 0.030195418800929883, - 0.041589514269203195, - 0.03779480562900424, - 0.04239894617502984, - 0.033624017570215665, - 0.037107073094897136, - 0.05310804491524878, - 0.043325045868050686, - 0.036281319004022594, - 0.03958125679965071, - 0.042405238314352625, - 0.038962790723302304, - 0.03598139619718316, - 0.03616571768582562, - 0.04070052067185569, - 0.04279307477397425, - 0.03955767194747536, - 0.036701075821195285, - 0.034794453735439206, - 0.04126197939185707, - 0.04378288167451097, - 0.03483505066652167, - 0.03377253134595925, - 0.0383370562880236, - 0.039034252351142835, - 0.03501180242307437, - 0.039743479890648546, - 0.029433364749011752, - 0.05522630347174714, - 0.03352342598036267, - 0.03343097884244875, - 0.041155678631908846, - 0.052767316098641756, - 0.034484016963980076, - 0.0414499259366305, - 0.0405256587499812, - 0.03647764598499793, - 0.04046164078210102, - 0.04400240008169536, - 0.04305056557175917, - 0.029241393452320026, - 0.03855658152568071, - 0.04090935151877452, - 0.02928285000296055, - 0.031338560988288806, - 0.03524990531718819, - 0.037701292009701806, - 0.049114403463130445, - 0.03523723449883331, - 0.036202010876162566, - 0.02991708576317777, - 0.030357279528354777, - 0.032405301751366536, - 0.03476870735833102, - 0.04057174517876091, - 0.03620989454277899, - 0.034868536610309746, - 0.03595569114068582, - 0.037224999809258405, - 0.05198272218944813, - 0.03645978280758643, - 0.043478504958563764, - 0.04202260968968424, - 0.041662028649610196, - 0.04068757190303886, - 0.03627856173879898, - 0.031943608913016494, - 0.034557061453707814, - 0.03329827307538936, - 0.0350466831086224, - 0.03325581350954688, - 0.03323239121430699, - 0.037167471350784756, - 0.0480015768847278, - 0.032796826992872036, - 0.03564636112651177, - 0.03397719595598885, - 0.0373680463390271, - 0.036857949087254815, - 0.03244421652526183, - 0.05392982774259806, - 0.04096459364259667, - 0.03613612546424471, - 0.03802777264978094, - 0.040698071806505864, - 0.03496244423426635, - 0.03574761231453372, - 0.04612934103162972, - 0.04095733848162617, - 0.03110888428389563, - 0.03460125471663463, - 0.04090131956205121, - 0.03336182758512927, - 0.03440894677688133, - 0.035557770673273995, - 0.03634887432219722, - 0.03679454227779686, - 0.03541922043809757, - 0.028474730241103238, - 0.041066577985584295, - 0.03895993329907872, - 0.03481090691759697, - 0.041868514951671425, - 0.038819822772288994, - 0.03503792693588444, - 0.04783627732122744 - ] - } - ], - "layout": { - "autosize": true, - "template": { - "data": { - "bar": [ - { - "error_x": { - "color": "#2a3f5f" - }, - "error_y": { - "color": "#2a3f5f" - }, - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "bar" - } - ], - "barpolar": [ - { - "marker": { - "line": { - "color": "#E5ECF6", - "width": 0.5 - }, - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "barpolar" - } - ], - "carpet": [ - { - "aaxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "baxis": { - "endlinecolor": "#2a3f5f", - "gridcolor": "white", - "linecolor": "white", - "minorgridcolor": "white", - "startlinecolor": "#2a3f5f" - }, - "type": "carpet" - } - ], - "choropleth": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "choropleth" - } - ], - "contour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "contour" - } - ], - "contourcarpet": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "contourcarpet" - } - ], - "heatmap": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmap" - } - ], - "heatmapgl": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "heatmapgl" - } - ], - "histogram": [ - { - "marker": { - "pattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - } - }, - "type": "histogram" - } - ], - "histogram2d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2d" - } - ], - "histogram2dcontour": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "histogram2dcontour" - } - ], - "mesh3d": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "type": "mesh3d" - } - ], - "parcoords": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "parcoords" - } - ], - "pie": [ - { - "automargin": true, - "type": "pie" - } - ], - "scatter": [ - { - "fillpattern": { - "fillmode": "overlay", - "size": 10, - "solidity": 0.2 - }, - "type": "scatter" - } - ], - "scatter3d": [ - { - "line": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatter3d" - } - ], - "scattercarpet": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattercarpet" - } - ], - "scattergeo": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergeo" - } - ], - "scattergl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattergl" - } - ], - "scattermapbox": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scattermapbox" - } - ], - "scatterpolar": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolar" - } - ], - "scatterpolargl": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterpolargl" - } - ], - "scatterternary": [ - { - "marker": { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - } - }, - "type": "scatterternary" - } - ], - "surface": [ - { - "colorbar": { - "outlinewidth": 0, - "ticks": "" - }, - "colorscale": [ - [ - 0, - "#0d0887" - ], - [ - 0.1111111111111111, - "#46039f" - ], - [ - 0.2222222222222222, - "#7201a8" - ], - [ - 0.3333333333333333, - "#9c179e" - ], - [ - 0.4444444444444444, - "#bd3786" - ], - [ - 0.5555555555555556, - "#d8576b" - ], - [ - 0.6666666666666666, - "#ed7953" - ], - [ - 0.7777777777777778, - "#fb9f3a" - ], - [ - 0.8888888888888888, - "#fdca26" - ], - [ - 1, - "#f0f921" - ] - ], - "type": "surface" - } - ], - "table": [ - { - "cells": { - "fill": { - "color": "#EBF0F8" - }, - "line": { - "color": "white" - } - }, - "header": { - "fill": { - "color": "#C8D4E3" - }, - "line": { - "color": "white" - } - }, - "type": "table" - } - ] - }, - "layout": { - "font": { - "family": "Futura", - "size": 20 - }, - "legend": { - "font": { - "color": "black", - "size": 14 - }, - "orientation": "v", - "x": 1.2, - "xanchor": "right", - "y": 0.5, - "yanchor": "middle" - }, - "title": { - "font": { - "size": 30 - }, - "x": 0.5 - }, - "xaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - }, - "yaxis": { - "linewidth": 2, - "showline": true, - "ticks": "outside" - } - } - }, - "title": { - "text": "Distributions of Estimated Error Model Values After Burn-In" - }, - "xaxis": { - "automargin": true, - "autorange": true, - "range": [ - -0.5, - 6.5 - ], - "title": { - "standoff": 20, - "text": "Sensor" - }, - "type": "category" - }, - "yaxis": { - "automargin": true, - "autorange": true, - "range": [ - 0.012418670009760107, - 0.21587377254925028 - ], - "title": { - "standoff": 20, - "text": "Estimated Error Model
Standard Deviation (ppm)" - }, - "type": "linear" - } - } - }, - "image/png": "iVBORw0KGgoAAAANSUhEUgAABE8AAAFoCAYAAACmM9U+AAAAAXNSR0IArs4c6QAAIABJREFUeF7snQeUFUXahr/J5CAIAoJkRHFxBf9lUcAVJYgJFUXAdUUR14RKUDCBIEZETMgCJhBzDouy4gqKAUQUEUkiWRAkCkz+z1tYszU93be77+0b561zPOrc7qrqp6q7q97+QlpxcXGxsJAACZAACZAACZAACZAACZAACZAACZAACdgSSKN4wplBAiRAAiRAAiRAAiRAAiRAAiRAAiRAAs4EKJ5wdpAACZAACZAACZAACZAACZAACZAACZBACAIUTzg9SIAESIAESIAESIAESIAESIAESIAESIDiCecACZAACZAACZAACZAACZAACZAACZAACYRHgJYn4XHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAuWEAMWTcjLQvEwSIAESIAESIAESIAESIAESIAESIIHwCFA8CY8bzyIBEiABEiABEiABEiABEiABEiABEignBCielJOB5mWSAAmQAAmQAAmQAAmQAAmQAAmQAAmER4DiSXjceBYJkAAJkAAJkAAJkAAJkAAJkAAJkEA5IUDxpJwMNC+TBEiABEiABEiABEiABEiABEiABEggPAIUT8LjxrNIgARIgARIgARIgARIgARIgARIgATKCQGKJ+VkoHmZJEACJEACJEACJEACJEACJEACJEAC4RGgeBIeN55FAiRAAiRAAiRAAiRAAiRAAiRAAiRQTghQPCknA83LJAESIAESIAESIAESIAESIAESIAESCI8AxZPwuPEsEiABEiABEiABEiABEiABEiABEiCBckKA4kk5GWheJgmQAAmQAAmQAAmQAAmQAAmQAAmQQHgEKJ6Ex41nkQAJkAAJkAAJkAAJkAAJkAAJkAAJlBMCFE/KyUDzMkmABEiABEiABEiABEiABEiABEiABMIjQPEkPG48iwRIgARIgARIgARIgARIgARIgARIoJwQoHhSTgaal0kCJEACJEACJEACJEACJEACJEACJBAeAYon4XHjWSRAAiRAAiRAAiRAAiRAAiRAAiRAAuWEAMWTcjLQvEwSIAESIAESIAESIAESIAESIAESIIHwCFA8CY8bzyIBEiABEiABEiABEiABEiABEiABEignBCielJOB5mWSAAmQAAmQAAmQAAmQAAmQAAmQAAmE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b56KudKjR48yde/bt08Fsz3xxBPl7LPPLuk7XHkee+wxGTdunMDth4UESIAESIAESIAESIAESIAESIAESIAE/BCwtTxBSuLp06ertMSIZ4J/o+Tl5cn27dulqKhIatWqJRUrVizVFn7HP7A6gQBTtWpVP31xPHbXrl0yfPhwFRQ2nNKwYUOZMGECxZNw4PEcEiABEiABEiABEiABEiABEiABEijnBGzFk/Xr18s777wjgwcPlszMTIUIlh9wyVm0aJGMGDFCjjjiiDLoEEQWWXi6dOkSaKpitA3Xm1deeSWs4aJ4EhY2nkQCJEACJEACJEACJEACJEACJEACJCAituIJxIply5ZJq1atSjLowJ1nzJgxcuWVV4aMZwI3mY8++kj++c9/llisBEEabkSLFy+WCy+8UNLT0z1VietYunSpTJkyhW47nojxIBIgARIgARIgARIgARIgARIgARIgASsBzwFjvWay+e6772Ty5Mlyzz33qPTFQRVk3Fm7dq20adPGV5UMGOsLFw8mARIgARIgARIgARIgARIgARIgARKwEPAsnhw8eFAJIt27d5eOHTvagoTbzsSJE1Ww2QceeCBQ8UQ3CGsSxEBBZp38/HyVvrhevXol7kUcYRIgARIgARIgARIgARIgARIgARIgARIIkoBn8QSNfvDBBzJt2jS5/vrr5aSTTirlPgO3nqeeekref/996datm9xwww2Buu2gfbgSTZo0SVmgmCUnJ0d69+4t/fv3lwoVKgTJh3WRAAmQAAmQAAmQAAmQAAmQAAmQAAmUcwK+xBNYlkA8eeONN1SmHZ3615qFBxYqTZo0CRTtwoULVcyV3NxcJdrUrl1bsrOzVRsHDhyQHTt2SIcOHVSWn8qVKwfaNisjARIgARIgARIgARIgARIgARIgARIovwR8iSfAhDTFCxYsUHFNtm3bVorc0UcfrcSLBg0aBEoULkNjx46Vr776Sk455RQZNGiQSqGsC1x5kMZ4/Pjx0rVrV+nbt2+g7bMyEiABEiABEiABEiABEiABEiABEiCB8kvAt3iiUUFEgXiCtMYojRs3VumJ09LSAqeJYLVDhw5Vli6jR4+WqlWr2raBTD8zZ86UUaNG0fok8FFghSRAAiRAAiRAAiRAAiRAAiRAAiRQPgmELZ7EEhcy7UA0QXDYIUOGODbtNSNQLPvOtkiABEiABEiABEiABEiABEiABEiABJKbQFjiycaNG+WZZ56RRYsWqXgjEDVOP/106dWrl6NVSKSYvvjiC5k7d64MGzasJNaJtU5k4Hn22Wfl5ptvLrE8YariSMnzfBIgARIgARIgARIgARIgARIgARIo3wR8iSeILTJ79mx5/PHHVeBWa6lWrZpymWnXrl3gVNH2vHnzZP/+/dKjR48y7kH79u2T++67T0488UQ5++yzS9qHK89jjz0m48aNKwlwG3jnWCEJkAAJkAAJkAAJkAAJkAAJkAAJkEDKEvAlnnz33XdKHEGBpUnnzp2lUaNGKvsNst18/PHHSuC48847pXnz5oFB27VrlwwfPlwFhQ2nNGzYUCZMmEDxJBx4PIcESIAESIAESIAESIAESIAESIAEyjkBz+JJYWGhEiB++eUXlVHHzHZjMvzkk0/k66+/VrFJMjIyAsELq5OpU6fKK6+8ElZ9FE/CwsaTSIAESIAESIAESIAESIAESIAESIAERMSzeALrD1iUXHXVVdK6dWtHeLBAgZvMTTfdFGj8k5UrV8rixYvlwgsvVJYuXgpEl6VLl8qUKVPotuMFGI8hARIgARIgARIgARIgARIgARIgARIoQ8CzeOI1k82mTZvkoYcekttuuy1QNxlk3Fm7dq20adPG1zAyYKwvXDyYBEiABEiABEiABEiABEiABEiABEjAQsCzeHLw4EF54IEH5KKLLpKWLVvagiwoKJB//etfsnr1ahk7dmxJxhuv1BGE9ocffpDjjz++TEBYr3VYj4P1yY8//ihNmzaVnJyccKvheSRAAiRAAiRAAiRAAiRAAiRAAiRAAuWUgGfxBHw++OADlW1n6NChKj2xLkVFRbJu3TrlroOgspdffrn07ds3LKQLFixQsVL+8pe/hHW+eRKEk4ULFyo3n/bt20dcHysgARIgARIgARIgARIgARIgARIgARIofwR8iSdwnUGa4jlz5kitWrWkYsWKAoFi+/btJamLO3TooALKVq5cOSyasF559tlnpUmTJnLKKad4jm9ibSwvL0/effddlQXosssuk8zMzLD6w5NIgARIgARIgARIgARIgARIgARIgATKNwFf4glQQZR4//335bnnnpO9e/eW0IO1yAUXXCADBgyQChUqREQVLkKTJ08WBInt37+/shrxWicEnq+++kpmzpypzoMVTHZ2dkT94ckkQAIkQAIkQAIkQAIkQAIkQAIkQALll4Bv8USjgoXIli1bZOPGjVKtWjVp1qyZZ4HDC27UD8uRZ555Rg4cOCC1a9eWY489Vlm8NG/eXCpVqqSq2bp1q2zevFn1ZdWqVcrSBFYvV155pfTo0SNsyxUvfeQxJEACJEACJEACJEACJEACJEACJEACqU/AVjxBDBNYcECE8JoWWKOK5Fw73BBDXnjhBRVrBQFlQxUEhIVgcvHFFyuRhYUESIAESIAESIAESIAESIAESIAESIAEIiVgK554TUts13gk54a6mPz8fFm2bJlyycG/9+zZow6H1Quy87Rr105at24tWVlZkTLh+SRAAiRAAiRAAiRAAiRAAiRAAiRAAiRQQsBRPEHQ1379+kmnTp08W5/A6mT+/Pkya9Ysuffee6VmzZpETQIkQAIkQAIkQAIkQAIkQAIkQAIkQAJJTcBRPEE64g0bNoR1cQ0bNpQJEyZQPAmLHk8iARIgARIgARIgARIgARIgARIgARJIJAIUTxJpNNgXEiABEiABEiABEiABEiABEiABEiCBhCNgK54g082cOXNUul8EYb3iiiukVatWru47SF381ltvyZIlS+TBBx+k5UnCDTc7RAIkQAIkQAIkQAIkQAIkQAIkQAIk4JdAyFTFEFG+/PJLefbZZ1W9l156qfzlL3+RzMxMx3aQHQfCyYgRIyie+B0NHk8CJEACJEACJEACJEACJEACJEACJJBwBEKKJ7q3CAS7atUqmT59umzZskX69u0rXbt2lQoVKpS5IKQ4htXK6aefrlIds5AACZAACZAACZAACZAACZAACZAACZBAMhPwJJ6YF7hp0yZ55ZVXZN68eXLWWWfJueeeSwuTZJ4B7DsJkAAJkAAJkAAJkAAJkAAJkAAJkEBIAr7FE10b4pu8/vrrKsZJ586dpU+fPtKgQYO44qbLUFzxs3ESIAESIAESIAESIAESIAESIAESSEkCYYsnmsbBgwflo48+khdffFHq1asngwYNkubNm0taWlrgwOAStHr1atm/f3+ZuvPz81U/Nm7cyGC1IcjDnQoFrlUsJEACJEACJEACJEACJEACJEACJEAC7gQiFk+2b9+uLFDefvttyc3NVS0iqOzIkSMDjXmCwLX33HOPQEAJVRo2bCgTJkygK5EDJIon7jcFjyABEiABEiABEiABEiABEiABEiABk0BY4klxcbEg9smMGTPkk08+kcLCQlVnnTp1ZODAgXLSSSfZBpMNFz0Ek9GjR8vSpUvl5JNPlvbt20v16tVLVUfLE290KZ5448SjSIAESIAESIAESIAESIAESIAESEAT8CWemFl3vv32W8H/o8BN57LLLpMTTjghZBrjcLHv3LlThg4dqjL89O/f37GaZIh5AjenWbNmKUsdpILu3bu3uia7zEXmhUKwWrJkiUyePFnWrl0rtWrVUufin+zsbM9oKZ54RsUD406gSAq2fiQFvy2S4vzdkl6poWTV6ynplZvGvWfsAAmQAAmQAAmQAAmQAAmQQPki4Ek8wSZ/8eLF8vTTT6uYIyjp6enSoUMHGTBgQNRinOihgGXLww8/LMcdd5x069bNcYQg5sBKBSmS0b9EK3l5efLQQw/J7t27ZdiwYZKTkyP33nuvig9zyy23hHRzWrhwoUoVffbZZ6vz3nnnHVm2bJkST6688krPohXFk0SbFeyPE4HCnYskb92s0j9nVpaKx9wuku5dMCRhEiABEiABEiABEiABEiABEoiUQEjxBFYSn332mTz11FOybds21VZGRob06NHDMbsOBIJVq1ZJixYtfFlEuF0IRBsEOUVA2szMTNvDIUpMnTpVHWN163GrPxa/w8Vp4sSJMm7cOGnTpo1qcuXKlUo4GTx4sHTv3t22G9pa5YILLpBq1aqpYyASQXiBBdB9990nrVu39nQJFE88YeJBCUAgb/0LUvjbwjI9yWk5RNIrHZUAPWQXSIAESIAESIAESIAESIAEygsBW/EEAsi7774rM2fOFKQkRoE1B6wczjvvPKlataojH7jYPPjgg8qyombNmoFy/P7772XLli1y2mmnlcnmA+uYzz//XJ5//nkVWDbotiO9EAggY8eOlV27dinRQzM8cOCAjBkzRsWNQVwXcLYWxJf59ddf5fjjjy/107x581SduF7EgfFSKJ54ocRjEoEAxZNEGAX2gQRIgARIgARIgARIgARIAARsxRMdY2TDhg0qCGy/fv1UvBG3uBywhpg/f7688cYbSiAISsCAgAPrDFhpuJVEzbYDAWT48OHSrFkzufXWW0tYIpYJXJLglvPAAw9IgwYN3C6x5PdFixYp4eT+++9X9XopFE+8UOIxiUCAbjuJMArsAwmQAAmQAAmQAAmQAAmQgCfxJBxM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iqZW8/HHH29bbbWVvfTSS9atW7dyoQLPD3KVtGnTxtVTTqVSjr9CxJPLL7/cZsyYkdZFxwo6aZ0kwgdJPImwcXVpIiACIhASge9f/dP1tMWRa4fUo7rJNIEf/vjKBn3zgC1bsdh5njQo3dA6trrG1qq9bqa70vlEQASSITBhhpUNHbv6J/faykr23iqZM+gzIiACWSaQtHiCqEElndNPP91at25t8fKLeOGDMsZ33HFHWhVvguJJzZo1rVGjRsbPyhrCDslr+SnxpPI7RuJJlp8onV4EREAEioCAxJNoGHnektnW54tutm6dRtZ5pzujcVG6ChEoVAKjv7ey9/+biyh4Da2aWUn7HQr1qjRuEYgUgZTEk7vvvtt5lhASE088IefJVVddZeuss06FcJ5UiHmRBs+VXXbZJZVDXQnlAQMGOOEm7LCdJUuW2HPPPWevvfaaS5579NFHW8eOHa1OnTpVXkMqx3766ad244032vLly8vPe9lll9mhhx5aZT98QOJJUpj0IREQAREQgUoISDyJxu0h8SQadlyyrMxGf7vMfp2/wurWqWH/bF7bmoYcUhcNkjm+infGW9nYH1YfROMGVnLq3jkenLoXARGAQNLiCYv1++67z4444gj7xz/+sZp4gtcHiWQHDRpku+22m11//fVJCQexZqhOxZzqHFud22HZsmV277332h9//OHEpdLSUifgELaEtw4ViRK1VI79888/7cEHH3QePTVq/B2nzH8fddRRSXv5SDypjqV1rAiIgAiIAAQknkTjPpB4Uvh2JN/v0+/+ZStX+cw1f1/TPq3WtC02DjcnUeHTzPEVPDnCymb/8fcgys1ZZrZmqZVcckiOB6fuRUAEUhJP+PBnn33mxJGuXbs6gcB7oiAODB482Pr162dlZWV2zTXX2L777psW4VWrVpkvgewFgmRPVJ1jk+0j3udGjBhhvXr1sltuucW2224795HJkyc74eS8886zdu3aJTx9Kse+++67RkgUYVPpNokn6ZLTcSIgAiIgAp6AxJNo3AsSTwrfjt/PWmEjJ6xeNr60VomdvF/izbvCv/IIXsHdQ6wsJlmsF1JKrj4ighesSxKBwiOQtOeJE0HLyuz111+3Rx991OrXr294QjRo0MB5oSxdutR5Q5x55pl23HHH2RprrFF4NNIYMSE3VBeaP39+hTwvixcvduE1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zkRABERABERABERABERABERABERABPKOQNLiCSOfM2eO8/YgbKd27dpxL+aPP/5w4TPnnHOOrbPOOhm74BEjRthtt93mRBKywl933XX2/fffW48ePdzf586da+xQUwWIXRQljM0Yep1IBERABERABERABERABERABERABIqaQNLiCaIFeU9mzJjhErciWMRrlKEcOHCgEzAy6f1B/1TcGTBggPN+ufzyy620tNRef/11V8YUzxj+jqiyxx57FLVRdfEiIAIiIAIiIAIiIAIiIAIiIAIiIAKZI5C0eOITxpJrpKqW6Wo7lfVH+WQ8YmbPnm3Nmze3evXqVTU8/bsIiIAIiIAIiIAIiIAIiIAIiIAIiIAIJE0gafGEM+JR0r9/f2vYsGHcsB2EDMJnGjVqlJO8I6NGjbKdd945YUhR0lT0QREQAREQAREQAREQAREQAREQAREQARH4L4GUxBO8TvjToUOHhACnT59uvXr1crlIMhm2U5nFEG2orvL888+7BLKUMFYTAREQAREQAREQAREQAREQAREQAREQgUwQSEk8ocINOU+22GKLhH3zmSlTptiWW26ZsgdIKqFBiQZw/PHHu2S1VORREwEREAEREAEREAEREAEREAEREAEREIHqEkhJPEmms+qIJ5yf0KAnnnjCatas6cJ/+EnjvIQEkTh2/fXXtzXXXLPCcPh3/uB1cvXVV6vaTjLG0mdEQAREQAREQAREQAREQAREQAREQASqJJBx8WTatGl2//33px22Q9gPFXTOO+88W2ONNdwFEJZDSM7nn39uV111lW200UarXdiKFStcGeV9993XNthggyovXB8QAREQAREQAREQAREQAREQAREQAREQgWQIrCaeLFmyxG6//XZ3bPfu3a1OnTruvwmpofzwzJkzE56XcsG//vqrNW7cOO2EsQglX331lW211VZWq1at8r5vvPFGO/fccyvNZzJp0iR799137fzzzy/3WEkGgj4jAiIgAiIgAiIgAiIgAiIgAiIgAiIgAokIrCae+LwjHIBYsvbaa7tjEUZ69+5tb731VpU0M12qeN68eXb33XfbFVdcUWkS2vHjx9sjjzzixJ911123ynHqAyIgAiIgAiIgAiIgAiIgAiIgAiIgAiJQFYG4YTt//PGHO26dddapcPy4ceNszJgxdvTRR1v9+vXLw2r8h5YvX27/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IiACIiACIiACIiACIlB4BCSeFJ7NNGIREAEREAEREAEREAEREAEREAEREIEQCUg8CRG2uhIBERABERABERABERABERABERABESg8AhJPCs9mGrEIiIAIiIAIiIAIiIAIiIAIiIAIiECIBCSehAhbXYmACIiACIiACIiACIiACIiACIiACBQeAYknhWczjVgEREAEREAEREAEREAEREAEREAERCBEAhJPQoStrkRABERABERABERABERABERABERABAqPgMSTwrOZRiwCIiACIiACIiACIiACIiACIiACIhAiAYknIcJWVyIgAiIgAiIgAiIgAiIgAiIgAiIgAoVHQOJJ4dlMIxYBERABERABERABERABERABERABEQiRgMSTEGGrKxEQAREQAREQAREQAREQAREQAREQgcIjIPGk8GymEYuACIiACIiACIiACIiACIiACIiACIRIQOJJiLDVlQiIgAiIgAhkmsBvv/1mAwcOtGHDhtlff/1l6667rrVt29aOP/54+/XXX23VqlX2z3/+M9Pd6nwiIAIiIAIiIAIiUFQEJJ4Ulbl1sSIgAiIgAlEi8N1339l1111nrVq1snPOOccaNWrkBJRPPvnE+vTpY/PmzbPbb7/ddtlllyhdtq5FBERABERABERABEInIPEkdOTqUAREQAREQASqTwCR5IYbbnCeJfxce+21K5z0l19+seuvv97OO+88iSfVx60ziIAIiIAIiIAIFDkBiSdFfgPo8kVABERABAqTwA8//GBXXnmltW7d2rp27WolJSWrXcibb75pG2ywgcSTwjSxRi0CIiACIiACIpBHBCSe5JExNBQREAEREAERSJaAF09q1qxpt9xyi7Vo0WK1Q7///ntbvHixbbfddsmeVp8TAREQAREQAREQARGIQ0DiiW4LERABERABEShAAkuWLLGbb77ZRo8ebfXr13feJ3vttZfVqFGjyqtZtmyZDR061AYNGmSE9xDyc/TRR7sks3Xq1HHHz507195++2378MMPnYfL+uuvb48//rh98MEHVrt2bRcOdPDBB1fwePnqq6/skUcesSlTptiaa67pcrFwbvKxrLfeeuXjItSIvCxPPfWUTZs2zZ2DpLZnnHGGtWzZsvycK1asMM45ePBga9CggXXq1Mmd/7333rNjjz3WfR7xSE0EREAEREAEREAEsk1A4km2Cev8IiACIiACIpAlAniW9OjRw1XVoSFAXHzxxdasWbO4YTx8hlwpPXv2tE033dQ6duzojnv22WftxRdftP32288uu+wymzFjhn322Wf2f//3f+7fO3fubJ9++qkL/0F4GTBggK1cudLuvPNO+8c//uE+wzGM5ayzznKhRPSD2DJhwgS75557ysUTjkcAQTS59NJLbZNNNnHH9urVy7755hu74IIL7PDDDzfEoffff9/GjBljI0eOtHbt2rmEuJMnT3Zjw9PmjjvuWC3XS5ZQ67QiIAIiIAIiIAJFTkDiSZHfALp8ERABERCBwiZAqeLevXs7Tw4anif77LOP88po0qRJhYsrKyuzfv362U8//WTdu3d3HiReUCG5LF4e/Nx7771t+fLlTpz4+OOPnSCCZ8oaa6xRLrY8+eSTTujg97TXX3/dhg8f7kKIfPLaP//80x599FE7++yzy8WT1157zTj21ltvdV4mvuEBc9VVV9nvv/9ut912W3l55UmTJlm3bt1cCWYS426++eb2448/Og+ZjTbaqLCNp9GLgAiIgAiIgAgUDAGJJwVjKg1UBERABERABOITIAwGD42+ffs6jw4a4SyxogfCBCE4Rx11lPPuCLb77rvPhgwZ4v6tS5cu7p/4HV4feJhsscUW5R///PPPnfiCRwrhM7R33nnHiTh4kxxwwAHl4UOE/ZBzhbCd+fPnu+MI6SHkqF69euXnRNhh/Hi7HHLIIS4MiWvAuwZRBUEnUWJc3RciIAIiIAIiIAIikG0CEk+yTVjnFwEREAEREIGQCBAS89FHHzlvj3nz5rleETfIORIUIhYsWJBwRLvttpvzPsGzoyrxpEOHDnbJJZe4c+EBc+ONNxqeIttuu62deuqptuOOO1bIweK9SMiF4vsIDsSLMptttpndddddztvEiyd40/i+QsKpbkRABERABERABESgnIDEE90MIiACIiACIhAxAgsXLrQHH3zQ3n33XZdM1nuOeHEC4QIxoqqWinjCuchTQvgOOVTIeUKIDTlYEFNICuv7Dwo0wTF4oWSdddYpz5Mi8aQqK+nfRUAEREAEREAEwiAg8SQMyupDBERABERABDJMAM8SKu2QSDVe8yEy3333nd1+++0u2StCBGE7hMXgjYKgUVlLVTzx51q0aJELAXruueeMijnXXXed7bHHHjZ27Fi7+uqrbeONN3biCBV84oknW265pf373/924T0STzJ84+h0IiACIiACIiACaRGQeJIWNh0kAiIgAiIgArklgHjyxBNP2Pnnn18hd0hwVIgflCQm8SshNFTlIX8IHiIkdqViTbDhLUIZ4MMOO8yF26QinlAZZ5tttrENN9yw/JQTJ050wsnOO+/sRBPGTP+Mg6SwO+ywQ4X+x48f7z532mmn2Yknnuj+TeJJbu8z9S4CIiACIiACIvA3AYknuhNEQAREQAREoAAJIERcccUVLvHrkUceuZoXifc84dIQSvDy8NV2Bg4c6BK4khiWssJU0Zk9e7b179/f2rRp45Kz8lkSwJJDJVHC2GDOk1deecUWL15sJ510UvlYqLaDeNKwYUMnitDP888/7/qhX5LHklvFN8ZF2A9iDyWMg+LJ7rvvbpdffrnL3aImAiIgAiIgAiIgAmETkHgSNnH1JwIiIAIiIAIZIIB4gpjw888/u/wlJGht2rSpEy4QQh566CH7+uuv7ZprrnGeH76R2JUywRMmTFhtFJQdPvfcc53IMXfuXCd8eM8PX0GHyj6E4wwYMMCdl8+stdZahnjSp08fO/PMMw1RhZAbvFEefvhhFypE2A4N7xbEEUKO2rdvb506dXKeM5REfuSRR1yOFP9Z+nrrrbecBwwCDBV6mjdvngF6OoUIiIAIiIAIiIAIpEZA4klqvPRpERABERABEcgLAogno0aNcmWBCXchxwjlipcuXeqq1LRt29aFvsTmFWHw5CQZNGiQvfHGG65KTuPGjd1nDzroICec+MSuwQvFEwShBC+WGTNmlP+TT0j71Vdf2UsvvWRU/OGchP2Qu4Ryxj5hrD+IzwwfPtxeeOEFmzlzppWWlhqeJQgvCEA0QosQSxBZgi3o7ZIXhtAgREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAQkCqQjAAABOUlEQVREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0CEk/SJafjREAEREAEREAEREAEREAEREAEREAEioKAxJOiMLMuUgREQAREQAREQAREQAREQAREQAREIF0C/w+n/4kq9iL85gAAAABJRU5ErkJggg==", - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "plotter = elq_model.components[\"error_model\"].plot_iterations(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", "plotter = elq_model.components[\"error_model\"].plot_distributions(plot=plotter, sensor_object=elq_model.sensor_object,burn_in_value=burn_in)\n", @@ -620048,32 +597,10 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": null, "id": "5e288724-d16d-4cd7-8bd4-c529f5b02772", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['count_map',\n", - " 'median_map',\n", - " 'iqr_map',\n", - " 'fitted_values',\n", - " 'log_posterior_plot',\n", - " 'estimated_values_plot',\n", - " 'number_of_sources_plot',\n", - " 'log_estimated_values_plot',\n", - " 'offset_iterations',\n", - " 'offset_distributions',\n", - " 'error_model_iterations',\n", - " 'error_model_distributions']" - ] - }, - "execution_count": 29, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "list(plotter.figure_dict.keys())" ] From 8dab18d5606c86a3c3a9509b623894983e251686 Mon Sep 17 00:00:00 2001 From: bvandekerkhof Date: Mon, 27 May 2024 15:22:10 +0200 Subject: [PATCH 6/6] Updates to the documentation Signed-off-by: bvandekerkhof --- README.md | 17 +++++++++++++++-- docs/index.md | 18 +++++++++++++++--- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a66046f..7efa6d1 100644 --- a/README.md +++ b/README.md @@ -52,10 +52,23 @@ Use cases where the pyELQ code has been applied are described in the following p * Weidmann, D., Hirst, B. et al. "Locating and Quantifying Methane Emissions by Inverse Analysis of Path-Integrated Concentration Data Using a Markov-Chain Monte Carlo Approach." ACS Earth and Space Chemistry 2022 6 (9), 2190-2198 (https://doi.org/10.1021/acsearthspacechem.2c00093) ## Deployment design -The pyELQ code needs high-quality methane concentration and wind data to be able to provide reliable estimates of methane emission location and quantification. This requires that methane sensors of sufficiently high precision are used in a layout that allows the detection of relevant methane emissions. The optimal sensor layout typically depends on the prevailing meteorological conditions at the site of interest: sensors need to be placed in locations where plumes from methane emission sources are likely to occur. +The pyELQ code needs high-quality methane concentration and wind data to be able to provide reliable output on location +and quantification of methane emission sources. This requires methane concentration sensors of sufficiently high +precision in a layout that allows the detection of relevant methane emission sources, in combination with wind +measurements of high enough frequency and accuracy. The optimal sensor layout typically depends on the prevailing +meteorological conditions at the site of interest and requires multiple concentration sensors to cover the site under +different wind directions. ## pyELQ data interpretation -The estimates from pyELQ come with uncertainty ranges that are representative of probability density functions sampled by a Markov Chain Monte Carlo method. One should take these uncertainty ranges into account when interpreting the pyELQ output data. Remember that absence of evidence for methane emissions does not always imply evidence for absence of methane emissions; for instance, when meteorological conditions are such that there is no sensor downwind of a methane source, then it will be impossible to detect this particular source. Also, there are limitations to the forward dispersion model which is used in the analysis. For example, the performance of the Gaussian plume dispersion model will degrade at lower windspeeds. Therefore, careful interpretation of the data is always required. +The results from pyELQ come with uncertainty ranges that are representative of probability density functions sampled +by a Markov Chain Monte Carlo method. One should take these uncertainty ranges into account when interpreting the pyELQ +output data. Remember that absence of evidence for methane emissions does not always imply evidence for absence of +methane emissions; for instance, when meteorological conditions are such that there is no sensor downwind of a methane +source during the selected monitoring period, then it will be impossible to detect, localize and quantify +this particular source. +Also, there are limitations to the forward dispersion model which is used in the analysis. +For example, the performance of the Gaussian plume dispersion model will degrade at lower wind speeds. +Therefore, careful interpretation of the data is always required. *** # Installing pyELQ as a package diff --git a/docs/index.md b/docs/index.md index 61b652b..4165485 100644 --- a/docs/index.md +++ b/docs/index.md @@ -35,11 +35,23 @@ Use cases where the pyELQ code has been applied are described in the following p * Weidmann, D., Hirst, B. et al. "Locating and Quantifying Methane Emissions by Inverse Analysis of Path-Integrated Concentration Data Using a Markov-Chain Monte Carlo Approach." ACS Earth and Space Chemistry 2022 6 (9), 2190-2198 (https://doi.org/10.1021/acsearthspacechem.2c00093) ## Deployment design -The pyELQ code needs high-quality methane concentration and wind data to be able to provide reliable estimates of methane emission location and quantification. This requires that methane sensors of sufficiently high precision are used in a layout that allows the detection of relevant methane emissions. The optimal sensor layout typically depends on the prevailing meteorological conditions at the site of interest: sensors need to be placed in locations where plumes from methane emission sources are likely to occur. +The pyELQ code needs high-quality methane concentration and wind data to be able to provide reliable output on location +and quantification of methane emission sources. This requires methane concentration sensors of sufficiently high +precision in a layout that allows the detection of relevant methane emission sources, in combination with wind +measurements of high enough frequency and accuracy. The optimal sensor layout typically depends on the prevailing +meteorological conditions at the site of interest and requires multiple concentration sensors to cover the site under +different wind directions. ## pyELQ data interpretation -The estimates from pyELQ come with uncertainty ranges that are representative of probability density functions sampled by a Markov Chain Monte Carlo method. One should take these uncertainty ranges into account when interpreting the pyELQ output data. Remember that absence of evidence for methane emissions does not always imply evidence for absence of methane emissions; for instance, when meteorological conditions are such that there is no sensor downwind of a methane source, then it will be impossible to detect this particular source. Also, there are limitations to the forward dispersion model which is used in the analysis. For example, the performance of the Gaussian plume dispersion model will degrade at lower windspeeds. Therefore, careful interpretation of the data is always required. - +The results from pyELQ come with uncertainty ranges that are representative of probability density functions sampled +by a Markov Chain Monte Carlo method. One should take these uncertainty ranges into account when interpreting the pyELQ +output data. Remember that absence of evidence for methane emissions does not always imply evidence for absence of +methane emissions; for instance, when meteorological conditions are such that there is no sensor downwind of a methane +source during the selected monitoring period, then it will be impossible to detect, localize and quantify +this particular source. +Also, there are limitations to the forward dispersion model which is used in the analysis. +For example, the performance of the Gaussian plume dispersion model will degrade at lower wind speeds. +Therefore, careful interpretation of the data is always required. *** # Installing pyELQ as a package Suppose you want to use this pyELQ package in a different project.